Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8861d1314d | ||
|
|
9cb99b652d |
6 changed files with 294 additions and 158 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1 +1 @@
|
|||
afpfs-ng-0.8.1.tar.bz2
|
||||
afpfs-ng-*.tar.bz2
|
||||
|
|
|
|||
109
afpfs-ng-0.8.1-pointer2.patch
Normal file
109
afpfs-ng-0.8.1-pointer2.patch
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
diff -ru afpfs-ng-0.8.1.orig/lib/loop.c afpfs-ng-0.8.1.new/lib/loop.c
|
||||
--- afpfs-ng-0.8.1.orig/lib/loop.c 2025-02-06 15:18:29.028488247 +0100
|
||||
+++ afpfs-ng-0.8.1.new/lib/loop.c 2025-02-06 15:02:08.261418298 +0100
|
||||
@@ -87,7 +87,7 @@
|
||||
static int ending=0;
|
||||
void * just_end_it_now(void * ignore)
|
||||
{
|
||||
- if (ending) return;
|
||||
+ if (ending) return(NULL);
|
||||
ending=1;
|
||||
if (libafpclient->forced_ending_hook)
|
||||
libafpclient->forced_ending_hook();
|
||||
diff -ru afpfs-ng-0.8.1.orig/lib/proto_directory.c afpfs-ng-0.8.1.new/lib/proto_directory.c
|
||||
--- afpfs-ng-0.8.1.orig/lib/proto_directory.c 2025-02-06 15:18:29.030488258 +0100
|
||||
+++ afpfs-ng-0.8.1.new/lib/proto_directory.c 2025-02-06 15:17:58.862309936 +0100
|
||||
@@ -16,6 +16,19 @@
|
||||
#include "dsi_protocol.h"
|
||||
#include "afp_replies.h"
|
||||
|
||||
+typedef struct reply_entry {
|
||||
+ uint8_t size;
|
||||
+ uint8_t isdir;
|
||||
+};
|
||||
+
|
||||
+typedef struct ext2_reply_entry {
|
||||
+ uint16_t size;
|
||||
+ uint8_t isdir;
|
||||
+ uint8_t pad;
|
||||
+};
|
||||
+
|
||||
+
|
||||
+
|
||||
int afp_moveandrename(struct afp_volume *volume,
|
||||
unsigned int src_did,
|
||||
unsigned int dst_did,
|
||||
@@ -200,10 +213,7 @@
|
||||
uint16_t reqcount;
|
||||
} __attribute__((__packed__)) * reply = (void *) buf;
|
||||
|
||||
- struct {
|
||||
- uint8_t size;
|
||||
- uint8_t isdir;
|
||||
- } __attribute__((__packed__)) * entry;
|
||||
+ struct reply_entry __attribute__((__packed__)) * entry;
|
||||
char * p = buf + sizeof(*reply);
|
||||
int i;
|
||||
char *max=buf+size;
|
||||
@@ -219,7 +229,7 @@
|
||||
}
|
||||
|
||||
for (i=0;i<ntohs(reply->reqcount);i++) {
|
||||
- entry = (void *) p;
|
||||
+ entry = ( struct reply_entry *) p;
|
||||
|
||||
if (p>max) {
|
||||
return -1;
|
||||
@@ -259,11 +269,7 @@
|
||||
uint16_t reqcount;
|
||||
} __attribute__((__packed__)) * reply = (void *) buf;
|
||||
|
||||
- struct {
|
||||
- uint16_t size;
|
||||
- uint8_t isdir;
|
||||
- uint8_t pad;
|
||||
- } __attribute__((__packed__)) * entry;
|
||||
+ struct ext2_reply_entry __attribute__((__packed__)) * entry;
|
||||
char * p = buf + sizeof(*reply);
|
||||
int i;
|
||||
char *max=buf+size;
|
||||
@@ -293,7 +299,7 @@
|
||||
filecur=new_file;
|
||||
}
|
||||
|
||||
- entry = p;
|
||||
+ entry = ( struct ext2_reply_entry *) p;
|
||||
|
||||
parse_reply_block(server,p+sizeof(*entry),
|
||||
ntohs(entry->size),entry->isdir,
|
||||
diff -ru afpfs-ng-0.8.1.orig/lib/uams.c afpfs-ng-0.8.1.new/lib/uams.c
|
||||
--- afpfs-ng-0.8.1.orig/lib/uams.c 2025-02-06 15:18:29.030488258 +0100
|
||||
+++ afpfs-ng-0.8.1.new/lib/uams.c 2025-02-06 15:00:32.383809018 +0100
|
||||
@@ -36,7 +36,7 @@
|
||||
static int cleartxt_login(struct afp_server *server, char *username,
|
||||
char *passwd);
|
||||
static int cleartxt_passwd(struct afp_server *server, char *username,
|
||||
- char *passwd);
|
||||
+ char *passwd, char *newpasswd);
|
||||
#ifdef HAVE_LIBGCRYPT
|
||||
static int randnum_login(struct afp_server *server, char *username,
|
||||
char *passwd);
|
||||
@@ -49,8 +49,7 @@
|
||||
static struct afp_uam uam_noauth =
|
||||
{UAM_NOUSERAUTHENT,"No User Authent",&noauth_login,NULL,NULL};
|
||||
static struct afp_uam uam_cleartxt =
|
||||
- {UAM_CLEARTXTPASSWRD,"Cleartxt Passwrd",&cleartxt_login,
|
||||
- &cleartxt_passwd,NULL};
|
||||
+ {UAM_CLEARTXTPASSWRD,"Cleartxt Passwrd",&cleartxt_login,&cleartxt_passwd,NULL};
|
||||
#ifdef HAVE_LIBGCRYPT
|
||||
static struct afp_uam uam_randnum =
|
||||
{UAM_RANDNUMEXCHANGE, "Randnum Exchange", &randnum_login,NULL,NULL};
|
||||
@@ -219,7 +218,7 @@
|
||||
* +------------------+
|
||||
*/
|
||||
static int cleartxt_passwd(struct afp_server *server,
|
||||
- char *username, char *passwd) {
|
||||
+ char *username, char *passwd, char *newpasswd) {
|
||||
|
||||
char *p, *ai = NULL;
|
||||
int len, ret;
|
||||
30
afpfs-ng-0.8.1-tests.patch
Normal file
30
afpfs-ng-0.8.1-tests.patch
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
diff -ru afpfs-ng-0.8.1.old/cmdline/cmdline_testafp.c afpfs-ng-0.8.1.new/cmdline/cmdline_testafp.c
|
||||
--- afpfs-ng-0.8.1.old/cmdline/cmdline_testafp.c 2025-02-06 15:22:10.187795481 +0100
|
||||
+++ afpfs-ng-0.8.1.new/cmdline/cmdline_testafp.c 2025-02-06 15:30:13.226751326 +0100
|
||||
@@ -31,7 +31,7 @@
|
||||
snprintf(valid_url.path,sizeof(valid_url.path),"%s",path);
|
||||
snprintf(valid_url.username,sizeof(valid_url.username),"%s",username);
|
||||
snprintf(valid_url.password,sizeof(valid_url.password),"%s",password);
|
||||
- snprintf(valid_url.uamname,(valid_url.uamname),"%s",uamname);
|
||||
+ snprintf(valid_url.uamname,sizeof(valid_url.uamname),"%s",uamname);
|
||||
valid_url.port=port;
|
||||
|
||||
if (afp_url_validate(url_string,&valid_url))
|
||||
@@ -42,7 +42,7 @@
|
||||
return 0;
|
||||
}
|
||||
|
||||
-int test_urls(void)
|
||||
+int test_urls(char * arg)
|
||||
{
|
||||
|
||||
printf("Testing URL parsing\n");
|
||||
diff -ru afpfs-ng-0.8.1.old/cmdline/cmdline_testafp.h afpfs-ng-0.8.1.new/cmdline/cmdline_testafp.h
|
||||
--- afpfs-ng-0.8.1.old/cmdline/cmdline_testafp.h 2008-01-05 06:00:57.000000000 +0100
|
||||
+++ afpfs-ng-0.8.1.new/cmdline/cmdline_testafp.h 2025-02-06 15:30:51.577987329 +0100
|
||||
@@ -1,4 +1,4 @@
|
||||
#ifndef __CMDLINE_TESTAFP_H_
|
||||
-int test_urls(void);
|
||||
+int test_urls(char * arg);
|
||||
#endif
|
||||
|
||||
164
afpfs-ng.spec
164
afpfs-ng.spec
|
|
@ -1,6 +1,6 @@
|
|||
Name: afpfs-ng
|
||||
Version: 0.8.1
|
||||
Release: 47%{?dist}
|
||||
Release: %autorelease
|
||||
Summary: Apple Filing Protocol client
|
||||
|
||||
|
||||
|
|
@ -9,7 +9,7 @@ Summary: Apple Filing Protocol client
|
|||
%bcond_without fuse
|
||||
|
||||
|
||||
License: GPL-1.0-or-later
|
||||
License: GPL-2.0-or-later
|
||||
URL: http://alexthepuffin.googlepages.com/home
|
||||
Source0: http://downloads.sourceforge.net/afpfs-ng/%{name}-%{version}.tar.bz2
|
||||
Patch0: afpfs-ng-0.8.1-overflows.patch
|
||||
|
|
@ -17,7 +17,9 @@ Patch1: afpfs-ng-0.8.1-pointer.patch
|
|||
# Sent by e-mail to Alex deVries <alexthepuffin@gmail.com>
|
||||
Patch2: afpfs-ng-0.8.1-formatsec.patch
|
||||
Patch3: afpfs-ng-0.8.1-longoptions.patch
|
||||
Patch4: afpfs-ng-c99.patch
|
||||
Patch4: afpfs-ng-0.8.1-c99.patch
|
||||
Patch5: afpfs-ng-0.8.1-pointer2.patch
|
||||
Patch6: afpfs-ng-0.8.1-tests.patch
|
||||
|
||||
%{?with_fuse:BuildRequires: fuse-devel}
|
||||
BuildRequires: gcc
|
||||
|
|
@ -63,7 +65,7 @@ autoreconf
|
|||
# Prerequisite `configure.ac' is newer than target `aclocal.m4'.
|
||||
touch --reference aclocal.m4 configure.ac Makefile.in
|
||||
|
||||
export CFLAGS="${RPM_OPT_FLAGS} -fcommon"
|
||||
export CFLAGS="${RPM_OPT_FLAGS} -fcommon -D NeedFunctionPrototypes"
|
||||
%configure %{?!with_fuse:--disable-fuse} --disable-static
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
|
@ -109,156 +111,4 @@ cp -p include/* %{buildroot}%{_includedir}/afpfs-ng
|
|||
%{_libdir}/*.so
|
||||
|
||||
%changelog
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-47
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Mon Jun 17 2024 Miroslav Suchý <msuchy@redhat.com> - 0.8.1-46
|
||||
- convert license to SPDX
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-45
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-43
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-42
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Dec 21 2022 Florian Weimer <fweimer@redhat.com> - 0.8.1-41
|
||||
- Port to C99
|
||||
|
||||
* Tue Oct 25 2022 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-40
|
||||
- remove the libafpclient.la libtool file
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-39
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-38
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Nov 17 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-37
|
||||
- update embedded libtool (ltmain.sh)
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Apr 26 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-35
|
||||
- modernize spec, push the bugfix to active branches
|
||||
|
||||
* Fri Mar 12 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-34
|
||||
- fix issue 1507944
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-33
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-32
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Apr 22 2020 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-30
|
||||
- fix FTBFS - multiple definition of - build legacy code with -fcommon
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.1-27
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-26
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Tue Nov 25 2014 <hguemar@fedoraproject.org> - 0.8.1-18
|
||||
- Fix mount_afp crash (RHBZ #1165296)
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Apr 22 2014 Tomáš Mráz <tmraz@redhat.com> - 0.8.1-15
|
||||
- Rebuild for new libgcrypt
|
||||
|
||||
* Wed Dec 04 2013 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-14
|
||||
- Fix build with -Werror=format-security
|
||||
|
||||
* Thu Oct 24 2013 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-13.3
|
||||
- Bulk sad and useless attempt at consistent SPEC file formatting
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-12.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-11.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-10.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-9.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Oct 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.8.1-8.3
|
||||
- rebuild with new gmp without compat lib
|
||||
|
||||
* Mon Oct 10 2011 Peter Schiffer <pschiffe@redhat.com> - 0.8.1-8.2
|
||||
- rebuild with new gmp
|
||||
|
||||
* Mon Sep 26 2011 Peter Schiffer <pschiffe@redhat.com> - 0.8.1-8.1
|
||||
- rebuild with new gmp
|
||||
|
||||
* Mon Jul 4 2011 Jan F. Chadima <jchadima@redhat.com> - 0.8.1-8
|
||||
- Repair ponter arithmetic
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2009 Peter Lemenkov <lemenkov@gmail.com> - 0.8.1-6
|
||||
- Rebuild with new fuse
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Fri Jul 17 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-4
|
||||
- Don't refer to AppleTalk in Summary
|
||||
|
||||
* Tue Jul 14 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-3
|
||||
- Fix up license tag
|
||||
|
||||
* Thu Mar 19 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-2
|
||||
- Add more include files (Jan F. Chadima)
|
||||
- Don't needlessly build static library (Stefan Kasal)
|
||||
- Fix fuse-afp summary (Stefan Kasal)
|
||||
- Remove redundant license file from -devel (Stefan Kasal)
|
||||
|
||||
* Mon Oct 6 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-1
|
||||
- Initial packaging attempt
|
||||
%autochangelog
|
||||
|
|
|
|||
147
changelog
Normal file
147
changelog
Normal file
|
|
@ -0,0 +1,147 @@
|
|||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-45
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-44
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-43
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-42
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Dec 21 2022 Florian Weimer <fweimer@redhat.com> - 0.8.1-41
|
||||
- Port to C99
|
||||
|
||||
* Tue Oct 25 2022 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-40
|
||||
- remove the libafpclient.la libtool file
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-39
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-38
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Nov 17 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-37
|
||||
- update embedded libtool (ltmain.sh)
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-36
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Mon Apr 26 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-35
|
||||
- modernize spec, push the bugfix to active branches
|
||||
|
||||
* Fri Mar 12 2021 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-34
|
||||
- fix issue 1507944
|
||||
|
||||
* Mon Jan 25 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-33
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Fri Jul 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-32
|
||||
- Second attempt - Rebuilt for
|
||||
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-31
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Wed Apr 22 2020 Michal Ambroz <rebus _AT seznam.cz> - 0.8.1-30
|
||||
- fix FTBFS - multiple definition of - build legacy code with -fcommon
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-29
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-28
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 17 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.8.1-27
|
||||
- Rebuild for readline 8.0
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-26
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-25
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-23
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-22
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.1-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Tue Nov 25 2014 <hguemar@fedoraproject.org> - 0.8.1-18
|
||||
- Fix mount_afp crash (RHBZ #1165296)
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Tue Apr 22 2014 Tomáš Mráz <tmraz@redhat.com> - 0.8.1-15
|
||||
- Rebuild for new libgcrypt
|
||||
|
||||
* Wed Dec 04 2013 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-14
|
||||
- Fix build with -Werror=format-security
|
||||
|
||||
* Thu Oct 24 2013 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-13.3
|
||||
- Bulk sad and useless attempt at consistent SPEC file formatting
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-12.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-11.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-10.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-9.3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Thu Oct 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.8.1-8.3
|
||||
- rebuild with new gmp without compat lib
|
||||
|
||||
* Mon Oct 10 2011 Peter Schiffer <pschiffe@redhat.com> - 0.8.1-8.2
|
||||
- rebuild with new gmp
|
||||
|
||||
* Mon Sep 26 2011 Peter Schiffer <pschiffe@redhat.com> - 0.8.1-8.1
|
||||
- rebuild with new gmp
|
||||
|
||||
* Mon Jul 4 2011 Jan F. Chadima <jchadima@redhat.com> - 0.8.1-8
|
||||
- Repair ponter arithmetic
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2009 Peter Lemenkov <lemenkov@gmail.com> - 0.8.1-6
|
||||
- Rebuild with new fuse
|
||||
|
||||
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.8.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Fri Jul 17 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-4
|
||||
- Don't refer to AppleTalk in Summary
|
||||
|
||||
* Tue Jul 14 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-3
|
||||
- Fix up license tag
|
||||
|
||||
* Thu Mar 19 2009 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-2
|
||||
- Add more include files (Jan F. Chadima)
|
||||
- Don't needlessly build static library (Stefan Kasal)
|
||||
- Fix fuse-afp summary (Stefan Kasal)
|
||||
- Remove redundant license file from -devel (Stefan Kasal)
|
||||
|
||||
* Mon Oct 6 2008 Lubomir Rintel <lkundrak@v3.sk> - 0.8.1-1
|
||||
- Initial packaging attempt
|
||||
Loading…
Add table
Add a link
Reference in a new issue