From 2149094a2ce0076f3ddc99d504e87565a6f6c44a Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Wed, 1 Jan 2020 23:37:54 +0300 Subject: [PATCH 01/27] UPDATE TO 1.6.1 --- .gitignore | 1 + sources | 2 +- xar-1.5-norpath.patch | 24 ----------------- xar-1.5.2-CVE-2010-0055.patch | 49 ----------------------------------- 4 files changed, 2 insertions(+), 74 deletions(-) delete mode 100644 xar-1.5-norpath.patch delete mode 100644 xar-1.5.2-CVE-2010-0055.patch diff --git a/.gitignore b/.gitignore index 88d4009..a518e2b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ xar-1.5.2.tar.gz +/xar-xar-1.6.1.tar.gz diff --git a/sources b/sources index dddc32a..5f601a7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8eabb055d3387b8edc30ecfb08d2e80d xar-1.5.2.tar.gz +SHA512 (xar-xar-1.6.1.tar.gz) = 3e3e82fa562152f72e27c9bdd4233e744884ed19af3bdf0c7d23cf5a3735f49baa2e9ba1d952f603f96ff201eae15b5a2663c65133702cf55916f84b963cd8ea diff --git a/xar-1.5-norpath.patch b/xar-1.5-norpath.patch deleted file mode 100644 index 855440d..0000000 --- a/xar-1.5-norpath.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naupr xar-1.5.orig/configure xar-1.5/configure ---- xar-1.5.orig/configure 2007-05-13 18:09:50.000000000 +0200 -+++ xar-1.5/configure 2007-05-30 14:40:04.000000000 +0200 -@@ -2800,7 +2800,7 @@ case "${host}" in - CFLAGS="$CFLAGS" - abi="elf" - CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" -- RPATH="-Wl,-rpath," -+ RPATH="" - ;; - *-*-netbsd*) - echo "$as_me:$LINENO: checking ABI" >&5 -diff -Naupr xar-1.5.orig/configure.ac xar-1.5/configure.ac ---- xar-1.5.orig/configure.ac 2007-05-11 04:51:25.000000000 +0200 -+++ xar-1.5/configure.ac 2007-05-30 14:40:13.000000000 +0200 -@@ -109,7 +109,7 @@ case "${host}" in - abi="elf" - dnl Linux needs this for things like asprintf() and poll() flags. - CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" -- RPATH="-Wl,-rpath," -+ RPATH="" - ;; - *-*-netbsd*) - AC_MSG_CHECKING([ABI]) diff --git a/xar-1.5.2-CVE-2010-0055.patch b/xar-1.5.2-CVE-2010-0055.patch deleted file mode 100644 index 8be4389..0000000 --- a/xar-1.5.2-CVE-2010-0055.patch +++ /dev/null @@ -1,49 +0,0 @@ -Index: xar/lib/archive.c -=================================================================== ---- xar/lib/archive.c (revision 224) -+++ xar/lib/archive.c (revision 225) -@@ -330,6 +330,44 @@ - - EVP_DigestFinal(&XAR(ret)->toc_ctx, toccksum, &tlen); - -+ const char *value; -+ uint64_t offset = 0; -+ uint64_t length = tlen; -+ if( xar_prop_get( XAR_FILE(ret) , "checksum/offset", &value) == 0 ) { -+ errno = 0; -+ offset = strtoull( value, (char **)NULL, 10); -+ if( errno != 0 ) { -+ xar_close(ret); -+ return NULL; -+ } -+ } else if( xar_signature_first(ret) != NULL ) { -+ // All archives that have a signature also specify the location -+ // of the checksum. If the location isn't specified, error out. -+ xar_close(ret); -+ return NULL; -+ } -+ -+ XAR(ret)->heap_offset = xar_get_heap_offset(ret) + offset; -+ if( lseek(XAR(ret)->fd, XAR(ret)->heap_offset, SEEK_SET) == -1 ) { -+ xar_close(ret); -+ return NULL; -+ } -+ if( xar_prop_get( XAR_FILE(ret) , "checksum/size", &value) == 0 ) { -+ errno = 0; -+ length = strtoull( value, (char **)NULL, 10); -+ if( errno != 0 ) { -+ xar_close(ret); -+ return NULL; -+ } -+ } else if( xar_signature_first(ret) != NULL ) { -+ xar_close(ret); -+ return NULL; -+ } -+ if( length != tlen ) { -+ xar_close(ret); -+ return NULL; -+ } -+ - xar_read_fd(XAR(ret)->fd, cval, tlen); - XAR(ret)->heap_offset += tlen; - if( memcmp(cval, toccksum, tlen) != 0 ) { From 4f5dde0b6571a4aefba218800427a55e128ea4dc Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Wed, 1 Jan 2020 23:40:01 +0300 Subject: [PATCH 02/27] UPDATE TO 1.6.1 #2 --- xar.spec | 51 ++++++++++++++++++++++++++++++++------------------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/xar.spec b/xar.spec index 3d45b46..8efcf66 100644 --- a/xar.spec +++ b/xar.spec @@ -1,18 +1,21 @@ -Summary: The eXtensible ARchiver Name: xar -Version: 1.5.2 -Release: 21%{?dist} +Version: 1.6.1 + +%global owner mackyle +%global project %{name} +%global gittag %{name}-%{version} + +Release: 1%{?dist} +Summary: The eXtensible ARchiver License: BSD -URL: http://code.google.com/p/xar/ -Source: http://xar.googlecode.com/files/xar-%{version}.tar.gz -Patch0: xar-1.5-norpath.patch -Patch1: xar-1.5.2-CVE-2010-0055.patch +URL: http://mackyle.github.io/xar/ +Source: https://github.com/%{owner}/%{project}/archive/%{gittag}/%{name}-%{gittag}.tar.gz BuildRequires: gcc BuildRequires: libxml2-devel BuildRequires: openssl-devel BuildRequires: zlib-devel BuildRequires: bzip2-devel -BuildRequires: /usr/bin/awk +BuildRequires: gawk %description The XAR project aims to provide an easily extensible archive format. Important @@ -34,28 +37,30 @@ Development files for the eXtensible ARchiver. %prep -%setup -q -%patch0 -p1 -b .norpath -%patch1 -p1 -b .CVE-2010-0055 +%autosetup -n %{project}-%{gittag} +sed 's:-Wl,-rpath,::g' -i xar/configure.ac #No rpath +sed 's:OpenSSL_add_all_ciphers:OPENSSL_init_crypto:g' -i xar/configure.ac #No rpath %build +pushd xar +env NOCONFIGURE=1 ./autogen.sh %configure --disable-static -%{__make} %{?_smp_mflags} +make %{?_smp_mflags} +popd %install -%{__rm} -rf %{buildroot} -%{__make} install DESTDIR=%{buildroot} -%{__rm} -f %{buildroot}%{_libdir}/libxar.la - - +pushd xar +make install DESTDIR=%{buildroot} +rm -f %{buildroot}%{_libdir}/libxar.la #Not needed +popd %ldconfig_scriptlets %files -%doc LICENSE TODO +%doc xar/xar_README.txt xar/NEWS xar/ChangeLog xar/LICENSE %{_bindir}/xar %{_libdir}/libxar.so.* %{_mandir}/man1/xar.1* @@ -66,6 +71,15 @@ Development files for the eXtensible ARchiver. %changelog +* Wed Jan 1 2020 Mosaab Alzoubi - 1.6.1-1 +- Update to 1.6.1 +- Change upstream +- Exclude CVE-2010-0055 patch, includes in upstream +- Exclude norpath patch, using sed +- Pass FTBFS state #1676224 +- General clean of the spec +- Use Fedora guide lines in Source URL + * Sun Feb 03 2019 Fedora Release Engineering - 1.5.2-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild @@ -154,4 +168,3 @@ Development files for the eXtensible ARchiver. * Sun Feb 25 2007 Matthias Saou 1.4-1 - Initial RPM release. - From 78bcc84d9fef5ec6ba9e0bc6ae0a3da1cc4c6131 Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Wed, 1 Jan 2020 23:44:49 +0300 Subject: [PATCH 03/27] UPDATE TO 1.6.1 #3 --- xar.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xar.spec b/xar.spec index 8efcf66..0a40b7f 100644 --- a/xar.spec +++ b/xar.spec @@ -16,6 +16,7 @@ BuildRequires: openssl-devel BuildRequires: zlib-devel BuildRequires: bzip2-devel BuildRequires: gawk +BuildRequires: autoconf %description The XAR project aims to provide an easily extensible archive format. Important From d1a0e714b13113fa797c657281987dea7ee88319 Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Wed, 1 Jan 2020 23:57:59 +0300 Subject: [PATCH 04/27] UPDATE TO 1.6.1 #4 --- xar.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xar.spec b/xar.spec index 0a40b7f..e48aaec 100644 --- a/xar.spec +++ b/xar.spec @@ -17,6 +17,8 @@ BuildRequires: zlib-devel BuildRequires: bzip2-devel BuildRequires: gawk BuildRequires: autoconf +ExcludeArch: aarch64 +ExcludeArch: ppc64le %description The XAR project aims to provide an easily extensible archive format. Important From 7ea34f8a6353e9d367a06af24c986fa593a69f79 Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Sat, 25 Jan 2020 05:30:10 +0300 Subject: [PATCH 05/27] Prepair for merge --- xar.spec | 173 ------------------------------------------------------- 1 file changed, 173 deletions(-) diff --git a/xar.spec b/xar.spec index e48aaec..e69de29 100644 --- a/xar.spec +++ b/xar.spec @@ -1,173 +0,0 @@ -Name: xar -Version: 1.6.1 - -%global owner mackyle -%global project %{name} -%global gittag %{name}-%{version} - -Release: 1%{?dist} -Summary: The eXtensible ARchiver -License: BSD -URL: http://mackyle.github.io/xar/ -Source: https://github.com/%{owner}/%{project}/archive/%{gittag}/%{name}-%{gittag}.tar.gz -BuildRequires: gcc -BuildRequires: libxml2-devel -BuildRequires: openssl-devel -BuildRequires: zlib-devel -BuildRequires: bzip2-devel -BuildRequires: gawk -BuildRequires: autoconf -ExcludeArch: aarch64 -ExcludeArch: ppc64le - -%description -The XAR project aims to provide an easily extensible archive format. Important -design decisions include an easily extensible XML table of contents for random -access to archived files, storing the toc at the beginning of the archive to -allow for efficient handling of streamed archives, the ability to handle files -of arbitrarily large sizes, the ability to choose independent encodings for -individual files in the archive, the ability to store checksums for individual -files in both compressed and uncompressed form, and the ability to query the -table of content's rich meta-data. - - -%package devel -Summary: Development files for the eXtensible ARchiver -Requires: %{name} = %{version}-%{release} - -%description devel -Development files for the eXtensible ARchiver. - - -%prep -%autosetup -n %{project}-%{gittag} -sed 's:-Wl,-rpath,::g' -i xar/configure.ac #No rpath -sed 's:OpenSSL_add_all_ciphers:OPENSSL_init_crypto:g' -i xar/configure.ac #No rpath - - -%build -pushd xar -env NOCONFIGURE=1 ./autogen.sh -%configure --disable-static -make %{?_smp_mflags} -popd - - -%install -pushd xar -make install DESTDIR=%{buildroot} -rm -f %{buildroot}%{_libdir}/libxar.la #Not needed -popd - -%ldconfig_scriptlets - - -%files -%doc xar/xar_README.txt xar/NEWS xar/ChangeLog xar/LICENSE -%{_bindir}/xar -%{_libdir}/libxar.so.* -%{_mandir}/man1/xar.1* - -%files devel -%{_includedir}/xar/ -%{_libdir}/libxar.so - - -%changelog -* Wed Jan 1 2020 Mosaab Alzoubi - 1.6.1-1 -- Update to 1.6.1 -- Change upstream -- Exclude CVE-2010-0055 patch, includes in upstream -- Exclude norpath patch, using sed -- Pass FTBFS state #1676224 -- General clean of the spec -- Use Fedora guide lines in Source URL - -* Sun Feb 03 2019 Fedora Release Engineering - 1.5.2-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Jul 14 2018 Fedora Release Engineering - 1.5.2-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 1.5.2-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 1.5.2-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 1.5.2-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 1.5.2-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Feb 05 2016 Fedora Release Engineering - 1.5.2-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 1.5.2-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Aug 18 2014 Fedora Release Engineering - 1.5.2-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 1.5.2-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 1.5.2-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 1.5.2-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 1.5.2-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 1.5.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 1.5.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Apr 28 2010 Matthias Saou 1.5.2-6 -- Include patch to fix CVE-2010-0055 (#570678). - -* Fri Aug 21 2009 Tomas Mraz - 1.5.2-5 -- rebuilt with new openssl - -* Mon Jul 27 2009 Fedora Release Engineering - 1.5.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Feb 25 2009 Fedora Release Engineering - 1.5.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sun Jan 18 2009 Tomas Mraz 1.5.2-2 -- rebuild with new openssl - -* Tue Dec 23 2008 Matthias Saou 1.5.2-1 -- Update to 1.5.2. -- Remove no longer needed install and memset patches. -- Disable newly built-by-default static lib and remove useless .la file. - -* Tue Feb 19 2008 Fedora Release Engineering -- Autorebuild for GCC 4.3 - -* Fri Dec 07 2007 Release Engineering -- Rebuild for deps - -* Thu Aug 23 2007 Matthias Saou 1.5.1-4 -- Rebuild for new BuildID feature. -- Add /usr/bin/awk build requirement, needed for the libxml configure check. - -* Wed Aug 8 2007 Matthias Saou 1.5.1-2 -- Patch memset call with swapped arguments (Dave Jones). - -* Wed Jul 11 2007 Matthias Saou 1.5.1-1 -- Update to 1.5.1. - -* Wed May 30 2007 Matthias Saou 1.5-1 -- Update to 1.5. -- Include patch to remove rpath. -- Include patch to fix file modes, and get the lib properly stripped. - -* Sun Feb 25 2007 Matthias Saou 1.4-1 -- Initial RPM release. From c3237ed1ebf384622028b8190fc231569e3e9af6 Mon Sep 17 00:00:00 2001 From: Mosaab Alzoubi Date: Sat, 25 Jan 2020 05:36:23 +0300 Subject: [PATCH 06/27] New upstream #2 --- sources | 4 ---- xar.spec | 1 - 2 files changed, 5 deletions(-) diff --git a/sources b/sources index bc96491..712a6eb 100644 --- a/sources +++ b/sources @@ -1,5 +1 @@ -<<<<<<< HEAD -SHA512 (xar-xar-1.6.1.tar.gz) = 3e3e82fa562152f72e27c9bdd4233e744884ed19af3bdf0c7d23cf5a3735f49baa2e9ba1d952f603f96ff201eae15b5a2663c65133702cf55916f84b963cd8ea -======= SHA512 (xar-417.1.tar.gz) = 4c3c61f5289d0b2e380cbde772b383da369ca8ad046f5d779e02f59300288c90c5e31d105a2c01ac17dc719b8b46b55d8d36a8b3b20360f315766fce92dec762 ->>>>>>> master diff --git a/xar.spec b/xar.spec index 53c05a8..1ecd823 100644 --- a/xar.spec +++ b/xar.spec @@ -198,4 +198,3 @@ popd * Sun Feb 25 2007 Matthias Saou 1.4-1 - Initial RPM release. ->>>>>>> master From bc9745104e3ce90c77335f59da62344b9d4f1c0c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:05:02 +0000 Subject: [PATCH 07/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 1ecd823..08d11f4 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 1%{?dist} +Release: 2%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -90,6 +90,9 @@ popd %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 1.8.0.417.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jan 25 2020 Mosaab Alzoubi - 1.8.0.417.1-1 - Use Apple upstream instead of non-fresh Github one - New upstream in 1.8 dev branch with 417.1 subversion From 4c1f23f9c5060f381ad3e5d95b0bef7482e078ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:26:38 +0000 Subject: [PATCH 08/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 08d11f4..6cbc24d 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 2%{?dist} +Release: 3%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -90,6 +90,9 @@ popd %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 1.8.0.417.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 1.8.0.417.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 22d50779dc9853e2d60b64c3a43b561b1a8b6e7d Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:06:53 +0000 Subject: [PATCH 09/27] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xar.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xar.spec b/xar.spec index 6cbc24d..322a643 100644 --- a/xar.spec +++ b/xar.spec @@ -7,6 +7,7 @@ Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar Source: https://opensource.apple.com/tarballs/xar/xar-%{subversion}.tar.gz +BuildRequires: make BuildRequires: gcc BuildRequires: libxml2-devel BuildRequires: openssl-devel From 8d4d3053159eebb48317c14fd31a500835d18956 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:47:00 +0000 Subject: [PATCH 10/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 322a643..55aac03 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 3%{?dist} +Release: 4%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 1.8.0.417.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 1.8.0.417.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From ae3c69ec3ac389781449e7ce0480cc358d0fc110 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:16:13 +0000 Subject: [PATCH 11/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 55aac03..b3e8de0 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 4%{?dist} +Release: 5%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 1.8.0.417.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 1.8.0.417.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 994eb5ad7b192d04ce4745328cc15ae8fce2c446 Mon Sep 17 00:00:00 2001 From: Sahana Prasad Date: Tue, 14 Sep 2021 19:17:56 +0200 Subject: [PATCH 12/27] Rebuilt with OpenSSL 3.0.0 --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index b3e8de0..931af5b 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 5%{?dist} +Release: 6%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Tue Sep 14 2021 Sahana Prasad - 1.8.0.417.1-6 +- Rebuilt with OpenSSL 3.0.0 + * Fri Jul 23 2021 Fedora Release Engineering - 1.8.0.417.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 80314422d63db9869c76976c5b386c4dc02e971a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 04:47:50 +0000 Subject: [PATCH 13/27] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 931af5b..335de6f 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 6%{?dist} +Release: 7%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 1.8.0.417.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Tue Sep 14 2021 Sahana Prasad - 1.8.0.417.1-6 - Rebuilt with OpenSSL 3.0.0 From dd70ed98068303638c7d867954e030ad3686bcbd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 12:46:30 +0000 Subject: [PATCH 14/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 335de6f..1a1ed4f 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 7%{?dist} +Release: 8%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 1.8.0.417.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 1.8.0.417.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From a441a3e84b4666eb170262b637c4422604adb8c7 Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Sun, 4 Jul 2021 19:50:58 -0400 Subject: [PATCH 15/27] Enable build on aarch64, ppc64le --- xar-1.8-gnuconfig.patch | 36 ++++++++++++++++++++++++++++++++++++ xar.spec | 9 ++++++--- 2 files changed, 42 insertions(+), 3 deletions(-) create mode 100644 xar-1.8-gnuconfig.patch diff --git a/xar-1.8-gnuconfig.patch b/xar-1.8-gnuconfig.patch new file mode 100644 index 0000000..9e4649d --- /dev/null +++ b/xar-1.8-gnuconfig.patch @@ -0,0 +1,36 @@ +--- a/config.guess 2006-04-19 16:46:22.000000000 -0400 ++++ b/config.guess 2021-07-04 19:33:12.857566034 -0400 +@@ -882,6 +882,15 @@ + ppc64:Linux:*:*) + echo powerpc64-unknown-linux-gnu + exit ;; ++ ppc64le:Linux:*:*) ++ echo powerpc64le-unknown-linux-gnu ++ exit ;; ++ aarch64:Linux:*:*) ++ echo aarch64-unknown-linux-gnu ++ exit ;; ++ aarch64_be:Linux:*:*) ++ echo aarch64_be-unknown-linux-gnu ++ exit ;; + alpha:Linux:*:*) + case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in + EV5) UNAME_MACHINE=alphaev5 ;; +--- a/config.sub 2006-04-19 16:46:22.000000000 -0400 ++++ b/config.sub 2021-07-04 19:34:44.072681790 -0400 +@@ -228,6 +228,7 @@ + # Some are omitted here because they have special meanings below. + 1750a | 580 \ + | a29k \ ++ | aarch64 | aarch64_be \ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ +@@ -301,6 +302,7 @@ + # Recognize the basic CPU types with company name. + 580-* \ + | a29k-* \ ++ | aarch64-* | aarch64_be-* \ + | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ diff --git a/xar.spec b/xar.spec index 1a1ed4f..4d9e544 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 8%{?dist} +Release: 9%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -15,8 +15,6 @@ BuildRequires: zlib-devel BuildRequires: bzip2-devel BuildRequires: gawk BuildRequires: autoconf -ExcludeArch: aarch64 -ExcludeArch: ppc64le #First 4 patches taken from Gentoo Xar package. To make Xar more suitable for Linux systems @@ -27,6 +25,7 @@ Patch2: xar-1.8-arm-ppc.patch Patch3: xar-1.8-openssl-1.1.patch Patch4: xar-1.8-Add-OpenSSL-To-Configuration.patch +Patch5: xar-1.8-gnuconfig.patch %description @@ -56,6 +55,7 @@ pushd xar %patch2 -p1 %patch3 -p1 %patch4 -p1 +%patch5 -p1 sed 's:-Wl,-rpath,::g' -i configure.ac #No rpath sed 's:filetree.h:../lib/filetree.h:g' -i src/xar.c #Fix path sed 's:util.h:../lib/util.h:g' -i src/xar.c #Fix path @@ -91,6 +91,9 @@ popd %changelog +* Mon Jan 16 2023 Yaakov Selkowitz - 1.8.0.417.1-9 +- Enable build on aarch64, ppc64le + * Sat Jul 23 2022 Fedora Release Engineering - 1.8.0.417.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 07a12d7033513fa210a12de0b3bb3d2489f44c9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:08:17 +0000 Subject: [PATCH 16/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 4d9e544..3b6abea 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 9%{?dist} +Release: 10%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 1.8.0.417.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Mon Jan 16 2023 Yaakov Selkowitz - 1.8.0.417.1-9 - Enable build on aarch64, ppc64le From 921f2b138b81f7a81a7697415508a8aabf8f5e39 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:30:36 +0000 Subject: [PATCH 17/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 3b6abea..c4801b1 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 10%{?dist} +Release: 11%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 1.8.0.417.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 1.8.0.417.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From 3302dd913596da29162e4b7e8862f24c8a0e34c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:19:06 +0000 Subject: [PATCH 18/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index c4801b1..5d3db68 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 11%{?dist} +Release: 12%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 1.8.0.417.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 1.8.0.417.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From c1e85e9b38bb2f77ded1ea6cde04fb424b1f3efb Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:50 +0200 Subject: [PATCH 19/27] Eliminate use of obsolete %patchN syntax (#2283636) --- xar.spec | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xar.spec b/xar.spec index 5d3db68..a4d8204 100644 --- a/xar.spec +++ b/xar.spec @@ -50,12 +50,12 @@ Development files for the eXtensible ARchiver. %prep %setup -n xar-%{subversion} pushd xar -%patch0 -p1 -%patch1 -p1 -%patch2 -p1 -%patch3 -p1 -%patch4 -p1 -%patch5 -p1 +%patch -P0 -p1 +%patch -P1 -p1 +%patch -P2 -p1 +%patch -P3 -p1 +%patch -P4 -p1 +%patch -P5 -p1 sed 's:-Wl,-rpath,::g' -i configure.ac #No rpath sed 's:filetree.h:../lib/filetree.h:g' -i src/xar.c #Fix path sed 's:util.h:../lib/util.h:g' -i src/xar.c #Fix path From e00fea47fd1607474709608cca4df923512c5b6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:42:00 +0000 Subject: [PATCH 20/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index a4d8204..6087cb9 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 12%{?dist} +Release: 13%{?dist} Summary: The eXtensible ARchiver License: BSD URL: https://opensource.apple.com/source/xar @@ -91,6 +91,9 @@ popd %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 1.8.0.417.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 1.8.0.417.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From a5f197bb4ff5f42eedd92b187478e8ac24a0f5e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 4 Sep 2024 22:49:26 +0200 Subject: [PATCH 21/27] convert license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- xar.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/xar.spec b/xar.spec index 6087cb9..2c91635 100644 --- a/xar.spec +++ b/xar.spec @@ -2,9 +2,10 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 13%{?dist} +Release: 14%{?dist} Summary: The eXtensible ARchiver -License: BSD +# Automatically converted from old format: BSD - review is highly recommended. +License: LicenseRef-Callaway-BSD URL: https://opensource.apple.com/source/xar Source: https://opensource.apple.com/tarballs/xar/xar-%{subversion}.tar.gz BuildRequires: make @@ -91,6 +92,9 @@ popd %changelog +* Wed Sep 04 2024 Miroslav Suchý - 1.8.0.417.1-14 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 1.8.0.417.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 6e755e014cef732b7da29232ad2dee0582c68946 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:24:51 +0000 Subject: [PATCH 22/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 2c91635..f028a6d 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 14%{?dist} +Release: 15%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -92,6 +92,9 @@ popd %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 1.8.0.417.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Wed Sep 04 2024 Miroslav Suchý - 1.8.0.417.1-14 - convert license to SPDX From 13e509526ccff3469a21a1ed8db94e46450fe978 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:37:19 +0000 Subject: [PATCH 23/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index f028a6d..66326e6 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 15%{?dist} +Release: 16%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -92,6 +92,9 @@ popd %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 1.8.0.417.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 1.8.0.417.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From ac8b832a0fde3175f77c46bfa020b55dd4a669fa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:27:08 +0000 Subject: [PATCH 24/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index 66326e6..d8d44dc 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 16%{?dist} +Release: 17%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -92,6 +92,9 @@ popd %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 1.8.0.417.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 1.8.0.417.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From a0a2a1885fee91080ba58e1b92ba31a25153b506 Mon Sep 17 00:00:00 2001 From: Marcin Juszkiewicz Date: Wed, 4 Feb 2026 10:29:44 +0100 Subject: [PATCH 25/27] update gnu-config files to make it build on riscv64 --- xar-1.8-gnuconfig.patch | 36 ------------------------------------ xar.spec | 8 +++++--- 2 files changed, 5 insertions(+), 39 deletions(-) delete mode 100644 xar-1.8-gnuconfig.patch diff --git a/xar-1.8-gnuconfig.patch b/xar-1.8-gnuconfig.patch deleted file mode 100644 index 9e4649d..0000000 --- a/xar-1.8-gnuconfig.patch +++ /dev/null @@ -1,36 +0,0 @@ ---- a/config.guess 2006-04-19 16:46:22.000000000 -0400 -+++ b/config.guess 2021-07-04 19:33:12.857566034 -0400 -@@ -882,6 +882,15 @@ - ppc64:Linux:*:*) - echo powerpc64-unknown-linux-gnu - exit ;; -+ ppc64le:Linux:*:*) -+ echo powerpc64le-unknown-linux-gnu -+ exit ;; -+ aarch64:Linux:*:*) -+ echo aarch64-unknown-linux-gnu -+ exit ;; -+ aarch64_be:Linux:*:*) -+ echo aarch64_be-unknown-linux-gnu -+ exit ;; - alpha:Linux:*:*) - case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in - EV5) UNAME_MACHINE=alphaev5 ;; ---- a/config.sub 2006-04-19 16:46:22.000000000 -0400 -+++ b/config.sub 2021-07-04 19:34:44.072681790 -0400 -@@ -228,6 +228,7 @@ - # Some are omitted here because they have special meanings below. - 1750a | 580 \ - | a29k \ -+ | aarch64 | aarch64_be \ - | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ - | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ - | am33_2.0 \ -@@ -301,6 +302,7 @@ - # Recognize the basic CPU types with company name. - 580-* \ - | a29k-* \ -+ | aarch64-* | aarch64_be-* \ - | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ - | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ - | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ diff --git a/xar.spec b/xar.spec index d8d44dc..b7d70f2 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 17%{?dist} +Release: 18%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -26,7 +26,6 @@ Patch2: xar-1.8-arm-ppc.patch Patch3: xar-1.8-openssl-1.1.patch Patch4: xar-1.8-Add-OpenSSL-To-Configuration.patch -Patch5: xar-1.8-gnuconfig.patch %description @@ -56,7 +55,6 @@ pushd xar %patch -P2 -p1 %patch -P3 -p1 %patch -P4 -p1 -%patch -P5 -p1 sed 's:-Wl,-rpath,::g' -i configure.ac #No rpath sed 's:filetree.h:../lib/filetree.h:g' -i src/xar.c #Fix path sed 's:util.h:../lib/util.h:g' -i src/xar.c #Fix path @@ -64,6 +62,7 @@ popd %build pushd xar +cp /usr/lib/rpm/redhat/config.{guess,sub} . env NOCONFIGURE=1 ./autogen.sh %configure --disable-static make %{?_smp_mflags} @@ -92,6 +91,9 @@ popd %changelog +* Wed Feb 04 2026 Marcin Juszkiewicz - 1.8.0.417.1-18 +- update gnu-config files to make it build on riscv64 + * Sat Jan 17 2026 Fedora Release Engineering - 1.8.0.417.1-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From b199a6c876d7ac73aa88b6cd452e7b75ce62692d Mon Sep 17 00:00:00 2001 From: Yaakov Selkowitz Date: Fri, 12 Jun 2026 20:07:16 -0400 Subject: [PATCH 26/27] Rebuilt for openssl 4.0 --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index b7d70f2..dd42c4b 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 18%{?dist} +Release: 19%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -91,6 +91,9 @@ popd %changelog +* Sat Jun 13 2026 Yaakov Selkowitz - 1.8.0.417.1-19 +- Rebuilt for openssl 4.0 + * Wed Feb 04 2026 Marcin Juszkiewicz - 1.8.0.417.1-18 - update gnu-config files to make it build on riscv64 From 211561349e8db8f9cc13dbfb781be5ab459d6e0e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:00:33 +0000 Subject: [PATCH 27/27] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- xar.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xar.spec b/xar.spec index dd42c4b..d206546 100644 --- a/xar.spec +++ b/xar.spec @@ -2,7 +2,7 @@ Name: xar Version: 1.8.0.%{subversion} -Release: 19%{?dist} +Release: 20%{?dist} Summary: The eXtensible ARchiver # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD @@ -91,6 +91,9 @@ popd %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 1.8.0.417.1-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jun 13 2026 Yaakov Selkowitz - 1.8.0.417.1-19 - Rebuilt for openssl 4.0