public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-01 19:38 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-01 19:38 UTC (permalink / raw
  To: gentoo-commits

commit:     7dbd9efce69d73d24db421189e4d2beccbcd6da2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Dec  1 16:11:04 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Dec  1 19:38:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7dbd9efc

app-alternatives/gzip: Add a package for gzip symlinks

Closes: https://bugs.gentoo.org/868648
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 45 +++++++++++++++++++++++++++++++++++++
 app-alternatives/gzip/metadata.xml  | 20 +++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
new file mode 100644
index 000000000000..29e0808da453
--- /dev/null
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="gzip symlinks"
+HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Base/Alternatives"
+SRC_URI=""
+S=${WORKDIR}
+
+LICENSE="CC0-1.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="pigz +reference split-usr"
+REQUIRED_USE="^^ ( pigz reference )"
+
+RDEPEND="
+	pigz? ( app-arch/pigz[-symlink(-)] )
+	reference? ( >=app-arch/gzip-1.12-r3 )
+	!<app-arch/gzip-1.12-r3
+	!app-arch/pigz[symlink(-)]
+"
+
+src_install() {
+	local usr_prefix=
+	use split-usr && usr_prefix=../usr/bin/
+
+	if use pigz; then
+		dosym "${usr_prefix}pigz" /bin/gzip
+		dosym gzip /bin/gunzip
+		dosym gzip /bin/zcat
+		newman - gzip.1 <<<".so pigz.1"
+	elif use reference; then
+		dosym gzip-reference /bin/gzip
+		# gzip uses shell wrappers rather than argv[0]
+		dosym gunzip-reference /bin/gunzip
+		dosym zcat-reference /bin/zcat
+		newman - gzip.1 <<<".so gzip-reference.1"
+	else
+		die "Invalid USE flag combination (broken REQUIRED_USE?)"
+	fi
+
+	newman - gunzip.1 <<<".so gzip.1"
+	newman - zcat.1 <<<".so gzip.1"
+}

diff --git a/app-alternatives/gzip/metadata.xml b/app-alternatives/gzip/metadata.xml
new file mode 100644
index 000000000000..6a439f199cb1
--- /dev/null
+++ b/app-alternatives/gzip/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>base-system@gentoo.org</email>
+		<name>Gentoo Base System</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>mgorny@gentoo.org</email>
+		<name>Michał Górny</name>
+	</maintainer>
+	<use>
+		<flag name="pigz">
+			Symlink to <pkg>app-arch/pigz</pkg>.
+		</flag>
+		<flag name="reference">
+			Symlink to <pkg>app-arch/gzip</pkg>.
+		</flag>
+	</use>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-06 14:47 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2022-12-06 14:47 UTC (permalink / raw
  To: gentoo-commits

commit:     0553e130788c33c3e297548725773ca21d603d19
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  5 19:50:55 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec  6 14:46:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0553e130

app-alternatives/gzip: Use app-alternatives.eclass

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 47 ++++++++++++++++++-------------------
 1 file changed, 23 insertions(+), 24 deletions(-)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
index 29e0808da453..77090242607d 100644
--- a/app-alternatives/gzip/gzip-0.ebuild
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -3,20 +3,18 @@
 
 EAPI=8
 
-DESCRIPTION="gzip symlinks"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Base/Alternatives"
-SRC_URI=""
-S=${WORKDIR}
+ALTERNATIVES=(
+	"reference:>=app-arch/gzip-1.12-r3"
+	"pigz:app-arch/pigz[-symlink(-)]"
+)
+
+inherit app-alternatives
 
-LICENSE="CC0-1.0"
-SLOT="0"
+DESCRIPTION="gzip symlinks"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="pigz +reference split-usr"
-REQUIRED_USE="^^ ( pigz reference )"
+IUSE="split-usr"
 
 RDEPEND="
-	pigz? ( app-arch/pigz[-symlink(-)] )
-	reference? ( >=app-arch/gzip-1.12-r3 )
 	!<app-arch/gzip-1.12-r3
 	!app-arch/pigz[symlink(-)]
 "
@@ -25,20 +23,21 @@ src_install() {
 	local usr_prefix=
 	use split-usr && usr_prefix=../usr/bin/
 
-	if use pigz; then
-		dosym "${usr_prefix}pigz" /bin/gzip
-		dosym gzip /bin/gunzip
-		dosym gzip /bin/zcat
-		newman - gzip.1 <<<".so pigz.1"
-	elif use reference; then
-		dosym gzip-reference /bin/gzip
-		# gzip uses shell wrappers rather than argv[0]
-		dosym gunzip-reference /bin/gunzip
-		dosym zcat-reference /bin/zcat
-		newman - gzip.1 <<<".so gzip-reference.1"
-	else
-		die "Invalid USE flag combination (broken REQUIRED_USE?)"
-	fi
+	case $(get_alternative) in
+		pigz)
+			dosym "${usr_prefix}pigz" /bin/gzip
+			dosym gzip /bin/gunzip
+			dosym gzip /bin/zcat
+			newman - gzip.1 <<<".so pigz.1"
+			;;
+		reference)
+			dosym gzip-reference /bin/gzip
+			# gzip uses shell wrappers rather than argv[0]
+			dosym gunzip-reference /bin/gunzip
+			dosym zcat-reference /bin/zcat
+			newman - gzip.1 <<<".so gzip-reference.1"
+			;;
+	esac
 
 	newman - gunzip.1 <<<".so gzip.1"
 	newman - zcat.1 <<<".so gzip.1"


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-27 11:31 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-27 11:31 UTC (permalink / raw
  To: gentoo-commits

commit:     94ca768249166eb8afb7a159b3d7a3b3280829e5
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 11:31:09 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 11:31:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94ca7682

app-alternatives/gzip: Stabilize 0 amd64, #886017

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
index 77090242607d..269f0fb934a1 100644
--- a/app-alternatives/gzip/gzip-0.ebuild
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-27 13:40 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-27 13:40 UTC (permalink / raw
  To: gentoo-commits

commit:     3bfa51cbb4b8b24763877fa1b4cc8494a997832f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 13:39:35 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 13:39:35 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bfa51cb

app-alternatives/gzip: Stabilize 0 arm64, #886017

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
index 398a0e5dcc73..9140ff3fb3b5 100644
--- a/app-alternatives/gzip/gzip-0.ebuild
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-27 19:45 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-27 19:45 UTC (permalink / raw
  To: gentoo-commits

commit:     7a23ac1a87d9f1617fbbb45bd0b11ca1fabd22f3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 19:37:00 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 19:45:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a23ac1a

app-alternatives/gzip: Stabilize 0 hppa, #886017

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
index 45c493e87307..952fd91c7e25 100644
--- a/app-alternatives/gzip/gzip-0.ebuild
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2022-12-27 19:53 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2022-12-27 19:53 UTC (permalink / raw
  To: gentoo-commits

commit:     d06f9f0d0d1ddb309e4a028a8f0f44a5247d85e9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 27 19:47:09 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Dec 27 19:53:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d06f9f0d

app-alternatives/gzip: Stabilize 0 ppc64, #886017

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-0.ebuild b/app-alternatives/gzip/gzip-0.ebuild
index 1e1dee844442..4d19fb28ba7c 100644
--- a/app-alternatives/gzip/gzip-0.ebuild
+++ b/app-alternatives/gzip/gzip-0.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2023-10-09  3:51 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-10-09  3:51 UTC (permalink / raw
  To: gentoo-commits

commit:     33b88a8e44606ea675432dfb7b1cebb2037959d4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct  9 03:50:02 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct  9 03:50:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33b88a8e

app-alternatives/gzip: add 1 with tighter pigz dep

This is needed for zlib-1.3 compat. This should help to get the upgrade
order right w/ zlib-1.3 and pigz.

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-1.ebuild | 44 +++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/app-alternatives/gzip/gzip-1.ebuild b/app-alternatives/gzip/gzip-1.ebuild
new file mode 100644
index 000000000000..8a083740abc5
--- /dev/null
+++ b/app-alternatives/gzip/gzip-1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ALTERNATIVES=(
+	"reference:>=app-arch/gzip-1.12-r3"
+	"pigz:>=app-arch/pigz-2.8[-symlink(-)]"
+)
+
+inherit app-alternatives
+
+DESCRIPTION="gzip symlinks"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="split-usr"
+
+RDEPEND="
+	!<app-arch/gzip-1.12-r3
+	!app-arch/pigz[symlink(-)]
+"
+
+src_install() {
+	local usr_prefix=
+	use split-usr && usr_prefix=../usr/bin/
+
+	case $(get_alternative) in
+		pigz)
+			dosym "${usr_prefix}pigz" /bin/gzip
+			dosym gzip /bin/gunzip
+			dosym gzip /bin/zcat
+			newman - gzip.1 <<<".so pigz.1"
+			;;
+		reference)
+			dosym gzip-reference /bin/gzip
+			# gzip uses shell wrappers rather than argv[0]
+			dosym gunzip-reference /bin/gunzip
+			dosym zcat-reference /bin/zcat
+			newman - gzip.1 <<<".so gzip-reference.1"
+			;;
+	esac
+
+	newman - gunzip.1 <<<".so gzip.1"
+	newman - zcat.1 <<<".so gzip.1"
+}


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2023-11-11 20:02 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-11-11 20:02 UTC (permalink / raw
  To: gentoo-commits

commit:     b3185a95b9e16f023deaae248ef5735f6f565eeb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 20:01:59 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 20:01:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3185a95

app-alternatives/gzip: Stabilize 1 x86, #917173

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-1.ebuild b/app-alternatives/gzip/gzip-1.ebuild
index 7ef9624dcaa7..844021db6c8e 100644
--- a/app-alternatives/gzip/gzip-1.ebuild
+++ b/app-alternatives/gzip/gzip-1.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2023-11-11 20:58 Arthur Zamarin
  0 siblings, 0 replies; 10+ messages in thread
From: Arthur Zamarin @ 2023-11-11 20:58 UTC (permalink / raw
  To: gentoo-commits

commit:     b772a09bebb67c32a8e7802a4aab966e8078d751
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 11 20:58:18 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Nov 11 20:58:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b772a09b

app-alternatives/gzip: Stabilize 1 ppc64, #917173

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-alternatives/gzip/gzip-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-1.ebuild b/app-alternatives/gzip/gzip-1.ebuild
index d92ea03a137a..8b00bacca0f3 100644
--- a/app-alternatives/gzip/gzip-1.ebuild
+++ b/app-alternatives/gzip/gzip-1.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/
@ 2023-11-16 16:22 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-11-16 16:22 UTC (permalink / raw
  To: gentoo-commits

commit:     49e5a6834a2171fae91de0a5a6e54bff492dd7fe
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 16 16:21:34 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 16 16:21:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e5a683

app-alternatives/gzip: Stabilize 1 hppa, #917173

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-alternatives/gzip/gzip-1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-alternatives/gzip/gzip-1.ebuild b/app-alternatives/gzip/gzip-1.ebuild
index 8b00bacca0f3..e4bd6b71a0d6 100644
--- a/app-alternatives/gzip/gzip-1.ebuild
+++ b/app-alternatives/gzip/gzip-1.ebuild
@@ -11,7 +11,7 @@ ALTERNATIVES=(
 inherit app-alternatives
 
 DESCRIPTION="gzip symlinks"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="split-usr"
 
 RDEPEND="


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2023-11-16 16:22 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-27 13:40 [gentoo-commits] repo/gentoo:master commit in: app-alternatives/gzip/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-11-16 16:22 Sam James
2023-11-11 20:58 Arthur Zamarin
2023-11-11 20:02 Sam James
2023-10-09  3:51 Sam James
2022-12-27 19:53 Sam James
2022-12-27 19:45 Sam James
2022-12-27 11:31 Sam James
2022-12-06 14:47 Michał Górny
2022-12-01 19:38 Sam James

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox