Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
211561349e | ||
|
|
b199a6c876 | ||
|
|
a0a2a1885f | ||
|
|
ac8b832a0f | ||
|
|
13e509526c | ||
|
|
6e755e014c | ||
|
|
a5f197bb4f | ||
|
|
e00fea47fd | ||
|
|
c1e85e9b38 | ||
|
|
3302dd9135 |
2 changed files with 36 additions and 45 deletions
|
|
@ -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-* \
|
||||
45
xar.spec
45
xar.spec
|
|
@ -2,9 +2,10 @@
|
|||
|
||||
Name: xar
|
||||
Version: 1.8.0.%{subversion}
|
||||
Release: 11%{?dist}
|
||||
Release: 20%{?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
|
||||
|
|
@ -25,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
|
||||
|
|
@ -50,12 +50,11 @@ 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
|
||||
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
|
||||
|
|
@ -63,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}
|
||||
|
|
@ -91,6 +91,33 @@ popd
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sat Jun 13 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1.8.0.417.1-19
|
||||
- Rebuilt for openssl 4.0
|
||||
|
||||
* Wed Feb 04 2026 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> - 1.8.0.417.1-18
|
||||
- update gnu-config files to make it build on riscv64
|
||||
|
||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
||||
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 1.8.0.417.1-14
|
||||
- convert license to SPDX
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-13
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.0.417.1-11
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue