diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2021-09-25 19:15:16 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2021-09-25 19:15:16 +0800 |
commit | 582a7126cbf9c1462251a11b7c3ec420b3390784 (patch) | |
tree | a3aca0a5ee2e9611111469278a722b4e4a718608 /guix | |
parent | f1f683499933d170d5e35352588ecada2421a10a (diff) | |
download | copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar.gz copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar.bz2 copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar.lz copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar.xz copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.tar.zst copr-rpm-spec-582a7126cbf9c1462251a11b7c3ec420b3390784.zip |
guix: Workaround brp-strip failures on Fedora 35
https://github.com/rpm-software-management/rpm/issues/1765
Diffstat (limited to 'guix')
-rw-r--r-- | guix/emacs-guix/emacs-guix.spec | 14 | ||||
-rw-r--r-- | guix/guile-bytestructures/guile-bytestructures.spec | 14 | ||||
-rw-r--r-- | guix/guile-gcrypt/guile-gcrypt.spec | 11 | ||||
-rw-r--r-- | guix/guile-json/guile-json.spec | 11 | ||||
-rw-r--r-- | guix/guile-lib/guile-lib.spec | 11 | ||||
-rw-r--r-- | guix/guile-lzlib/guile-lzlib.spec | 11 | ||||
-rw-r--r-- | guix/guile-semver/guile-semver.spec | 11 | ||||
-rw-r--r-- | guix/guile-sqlite3/guile-sqlite3.spec | 11 | ||||
-rw-r--r-- | guix/guile-zlib/guile-zlib.spec | 11 | ||||
-rw-r--r-- | guix/guile-zstd/guile-zstd.spec | 11 |
10 files changed, 104 insertions, 12 deletions
diff --git a/guix/emacs-guix/emacs-guix.spec b/guix/emacs-guix/emacs-guix.spec index 35f341d..c710463 100644 --- a/guix/emacs-guix/emacs-guix.spec +++ b/guix/emacs-guix/emacs-guix.spec @@ -1,9 +1,17 @@ +%global debug_package %{nil} + +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + %global pkg guix %global pkgname Guix Name: emacs-%{pkg} Version: 0.5.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Emacs-Guix is an Emacs interface for GNU Guix package manager License: GPLv3+ @@ -16,7 +24,6 @@ Patch0: emacs-guix-0.5.2-guix-api-change.patch Patch1: emacs-guix-0.5.2-emacs-27.patch Patch2: emacs-guix-0.5.2-geiser-0.12.patch -%global debug_package %{nil} %global guile_source_dir %{_datadir}/guile/site/2.2 %global guile_ccache_dir %{_libdir}/guile/2.2/site-ccache @@ -107,6 +114,9 @@ fi %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.5.2-7 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Mon Jun 14 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.5.2-6 - Drop dependency on emacs-magit because it only needs emacs-magit-popup - Update dependency for Geiser 0.13 package split diff --git a/guix/guile-bytestructures/guile-bytestructures.spec b/guix/guile-bytestructures/guile-bytestructures.spec index 2039438..714b24a 100644 --- a/guix/guile-bytestructures/guile-bytestructures.spec +++ b/guix/guile-bytestructures/guile-bytestructures.spec @@ -1,13 +1,20 @@ +%global debug_package %{nil} + +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-bytestructures Version: 1.0.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Structured access library to bytevector contents for Guile License: GPLv3+ URL: https://github.com/TaylanUB/scheme-bytestructures Source0: https://github.com/TaylanUB/scheme-bytestructures/releases/download/v%{version}/bytestructures-%{version}.tar.gz -%global debug_package %{nil} %global guile_source_dir %{_datadir}/guile/site/2.2 %global guile_ccache_dir %{_libdir}/guile/2.2/site-ccache @@ -56,6 +63,9 @@ first-class status. %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 1.0.10-2 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Mon Mar 15 2021 Ting-Wei Lan <lantw44@gmail.com> - 1.0.10-1 - Update to 1.0.10 diff --git a/guix/guile-gcrypt/guile-gcrypt.spec b/guix/guile-gcrypt/guile-gcrypt.spec index f6dcbe7..9deeaa9 100644 --- a/guix/guile-gcrypt/guile-gcrypt.spec +++ b/guix/guile-gcrypt/guile-gcrypt.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-gcrypt Version: 0.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Guile bindings to Libgcrypt License: GPLv3+ @@ -67,6 +73,9 @@ fi %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.3.0-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.3.0-2 - Rebuilt for Fedora 34 and 35 diff --git a/guix/guile-json/guile-json.spec b/guix/guile-json/guile-json.spec index a4987ed..8b0c1a1 100644 --- a/guix/guile-json/guile-json.spec +++ b/guix/guile-json/guile-json.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-json Version: 4.5.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: JSON module for Guile License: GPLv3+ @@ -60,6 +66,9 @@ features: %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 4.5.2-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 4.5.2-2 - Rebuilt for Fedora 34 and 35 diff --git a/guix/guile-lib/guile-lib.spec b/guix/guile-lib/guile-lib.spec index ae0dcb5..efbe557 100644 --- a/guix/guile-lib/guile-lib.spec +++ b/guix/guile-lib/guile-lib.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-lib Version: 0.2.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Guile-Lib is a repository of useful code written in Guile Scheme License: GPLv3+ @@ -134,5 +140,8 @@ fi %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.2.7-2 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Mon Jun 14 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.2.7-1 - Initial packaging diff --git a/guix/guile-lzlib/guile-lzlib.spec b/guix/guile-lzlib/guile-lzlib.spec index 94dcea6..29d250d 100644 --- a/guix/guile-lzlib/guile-lzlib.spec +++ b/guix/guile-lzlib/guile-lzlib.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-lzlib Version: 0.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Guile bindings for lzlib License: GPLv3+ @@ -52,6 +58,9 @@ autoreconf -fiv %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.0.2-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.0.2-2 - Rebuilt for Fedora 34 and 35 diff --git a/guix/guile-semver/guile-semver.spec b/guix/guile-semver/guile-semver.spec index ed24fad..4fe9e79 100644 --- a/guix/guile-semver/guile-semver.spec +++ b/guix/guile-semver/guile-semver.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-semver Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Guile library for Semantic Versioning License: GPLv3+ @@ -57,6 +63,9 @@ ranges. It supports: %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.1-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.1-2 - Rebuilt for Fedora 34 and 35 diff --git a/guix/guile-sqlite3/guile-sqlite3.spec b/guix/guile-sqlite3/guile-sqlite3.spec index fd41ba9..4672d54 100644 --- a/guix/guile-sqlite3/guile-sqlite3.spec +++ b/guix/guile-sqlite3/guile-sqlite3.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-sqlite3 Version: 0.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Guile bindings for the SQLite3 database engine License: LGPLv3+ @@ -46,6 +52,9 @@ autoreconf -fiv %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-2 - Rebuilt for Fedora 34 and 35 diff --git a/guix/guile-zlib/guile-zlib.spec b/guix/guile-zlib/guile-zlib.spec index c22279b..b9113cc 100644 --- a/guix/guile-zlib/guile-zlib.spec +++ b/guix/guile-zlib/guile-zlib.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-zlib Version: 0.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Guile bindings for zlib License: GPLv3+ @@ -51,6 +57,9 @@ autoreconf -fiv %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-2 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Mon Jun 14 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-1 - Update to 0.1.0 diff --git a/guix/guile-zstd/guile-zstd.spec b/guix/guile-zstd/guile-zstd.spec index 1218c47..e2f1697 100644 --- a/guix/guile-zstd/guile-zstd.spec +++ b/guix/guile-zstd/guile-zstd.spec @@ -1,8 +1,14 @@ %global debug_package %{nil} +# Workaround brp-strip failures on Fedora 35. +# https://github.com/rpm-software-management/rpm/issues/1765 +%if 0%{?fedora} >= 35 +%global __brp_strip %{nil} +%endif + Name: guile-zstd Version: 0.1.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: GNU Guile bindings to the zstd compression library License: GPLv3+ @@ -50,6 +56,9 @@ autoreconf -fiv %changelog +* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.1-3 +- Disable brp-strip on Fedora 35 and later because it fails on Guile objects + * Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.1-2 - Rebuilt for Fedora 34 and 35 |