public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/gzip/
Date: Mon,  8 Jan 2018 08:33:03 +0000 (UTC)	[thread overview]
Message-ID: <1515400379.3c307a16b1cc9fe90c3804eb7cb1bf22f594b9fe.polynomial-c@gentoo> (raw)

commit:     3c307a16b1cc9fe90c3804eb7cb1bf22f594b9fe
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  8 08:31:31 2018 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan  8 08:32:59 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c307a16

app-arch/gzip: Removed old.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 app-arch/gzip/Manifest        |  2 --
 app-arch/gzip/gzip-1.6.ebuild | 40 ---------------------------------------
 app-arch/gzip/gzip-1.7.ebuild | 44 -------------------------------------------
 3 files changed, 86 deletions(-)

diff --git a/app-arch/gzip/Manifest b/app-arch/gzip/Manifest
index 3233d4dd97c..dfdaf24aa98 100644
--- a/app-arch/gzip/Manifest
+++ b/app-arch/gzip/Manifest
@@ -1,4 +1,2 @@
-DIST gzip-1.6.tar.xz 725084 BLAKE2B 3f4e6ac2e3186de403a1be58041f4b8f86074d8659cb360a64cd1bab023c0f46a1521aadf1a8669636ec1202cca96a1b73a77c208a7eb99b0eb6b14657231a4f SHA512 06da599fc38b459d7e9a3f43fdd06d1a0d7b29ad14cb7b6552176bab584a1135bb47ba37a4eb377e6c42c4934d557079ace1e289a252ae192ee154079a62ed01
-DIST gzip-1.7.tar.xz 764056 BLAKE2B baa5a6b95cf89dffbff05d2b91c3a619dcb67e8692bdff24385b8867259a4191612e8586ebbc96c334d5bd224bf0364ffbf3c0b1384f7632a46ebe09686452c2 SHA512 e28f23738f0d2936773d9b50ea9e46c59945e227a90ca7d8e953fb5a774b8692a3341b744320e924da2d5825117dab730affce506f6fc8e65f0af372f3082539
 DIST gzip-1.8.tar.xz 728116 BLAKE2B 34b707bd403791aca8620de3520637c460dbd9167a4fb693c78438115862781350ef5e256ad0accce75b25515b82fcd3e405cc310d6ea36f2d2609b0a270c4db SHA512 efd3e2439476054badeb127d9156e24e9252129111219f13fd939596c057b2a96291630b2717181984b391abf249ac8699488bbd01ceeb8a70b121c500b10c55
 DIST gzip-1.9.tar.xz 762516 BLAKE2B 4001fc7a770634916d52b026dab1b621fc96275bfb61ec2df2d0e7d7ec1c81414270d3c866034e6ef758870f38e9d4396a25832abe558915a7ded1f1511eb4b0 SHA512 c0852e7f7662141e79d14bc36e50f1940dba3e804feff3b0b8fa084ffec720ac245352282d2f1db117fadc95758424dd418d192b94621dac4367834ccf101fad

diff --git a/app-arch/gzip/gzip-1.6.ebuild b/app-arch/gzip/gzip-1.6.ebuild
deleted file mode 100644
index f843d530c86..00000000000
--- a/app-arch/gzip/gzip-1.6.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="Standard GNU compressor"
-HOMEPAGE="https://www.gnu.org/software/gzip/"
-SRC_URI="mirror://gnu-alpha/gzip/${P}.tar.xz
-	mirror://gnu/gzip/${P}.tar.xz
-	mirror://gentoo/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="pic static"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${PN}-1.3.8-install-symlinks.patch
-	epatch "${FILESDIR}"/${PN}-1.4-asmv.patch
-}
-
-src_configure() {
-	use static && append-flags -static
-	# avoid text relocation in gzip
-	use pic && export DEFS="NO_ASM"
-	econf
-}
-
-src_install() {
-	default
-	docinto txt
-	dodoc algorithm.doc gzip.doc
-
-	# keep most things in /usr, just the fun stuff in /
-	dodir /bin
-	mv "${ED}"/usr/bin/{gunzip,gzip,uncompress,zcat} "${ED}"/bin/ || die
-	sed -e "s:${EPREFIX}/usr:${EPREFIX}:" -i "${ED}"/bin/gunzip || die
-}

diff --git a/app-arch/gzip/gzip-1.7.ebuild b/app-arch/gzip/gzip-1.7.ebuild
deleted file mode 100644
index 910bb04b7de..00000000000
--- a/app-arch/gzip/gzip-1.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="Standard GNU compressor"
-HOMEPAGE="https://www.gnu.org/software/gzip/"
-SRC_URI="mirror://gnu-alpha/gzip/${P}.tar.xz
-	mirror://gnu/gzip/${P}.tar.xz
-	mirror://gentoo/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="pic static"
-
-PATCHES=(
-	"${FILESDIR}/${PN}-1.3.8-install-symlinks.patch"
-	"${FILESDIR}/${PN}-1.4-asmv.patch"
-)
-
-src_prepare() {
-	epatch "${PATCHES[@]}"
-}
-
-src_configure() {
-	use static && append-flags -static
-	# avoid text relocation in gzip
-	use pic && export DEFS="NO_ASM"
-	econf
-}
-
-src_install() {
-	default
-	docinto txt
-	dodoc algorithm.doc gzip.doc
-
-	# keep most things in /usr, just the fun stuff in /
-	dodir /bin
-	mv "${ED}"/usr/bin/{gunzip,gzip,uncompress,zcat} "${ED}"/bin/ || die
-	sed -e "s:${EPREFIX}/usr:${EPREFIX}:" -i "${ED}"/bin/gunzip || die
-}


             reply	other threads:[~2018-01-08  8:33 UTC|newest]

Thread overview: 84+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-08  8:33 Lars Wendler [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-10  6:47 [gentoo-commits] repo/gentoo:master commit in: app-arch/gzip/ Sam James
2025-04-06  2:02 Sam James
2024-07-09  3:08 Eli Schwartz
2024-04-15  5:48 Sam James
2024-03-04 10:24 Sam James
2024-01-19 23:08 Ionen Wolkens
2024-01-16  5:46 Viorel Munteanu
2024-01-15  3:32 Ionen Wolkens
2023-12-24 15:11 Sam James
2023-09-22 20:52 Sam James
2023-09-22 20:25 Sam James
2023-09-22 20:25 Sam James
2023-09-22 18:58 Arthur Zamarin
2023-02-24 18:36 Sam James
2023-01-14 17:10 Sam James
2022-12-28 22:47 Sam James
2022-12-28  0:33 Sam James
2022-12-27 19:53 Sam James
2022-12-27 19:45 Sam James
2022-12-27 13:40 Sam James
2022-12-27 11:31 Sam James
2022-12-01 19:38 Sam James
2022-09-19  3:28 Sam James
2022-09-06  0:55 Mike Gilbert
2022-09-06  0:55 Mike Gilbert
2022-09-05 22:34 Mike Gilbert
2022-09-05 21:32 Mike Gilbert
2022-04-17 17:15 Sam James
2022-04-14  8:11 Agostino Sarubbo
2022-04-10 17:38 Arthur Zamarin
2022-04-10 17:38 Arthur Zamarin
2022-04-09 19:56 Arthur Zamarin
2022-04-09 18:21 Arthur Zamarin
2022-04-09 17:57 Agostino Sarubbo
2022-04-08  7:06 Agostino Sarubbo
2022-04-07 18:11 Sam James
2022-04-06 23:58 Sam James
2022-01-16 12:20 Fabian Groffen
2021-12-07 20:23 Sam James
2021-12-06  1:16 Sam James
2021-12-05 18:39 Sam James
2021-12-05 18:31 Sam James
2021-12-05 18:21 Arthur Zamarin
2021-12-05  3:45 Sam James
2021-10-16 12:15 Fabian Groffen
2021-09-03 21:37 Lars Wendler
2021-03-23  8:03 Lars Wendler
2021-01-06 12:52 Fabian Groffen
2020-12-27 13:34 Fabian Groffen
2020-09-18  8:11 Agostino Sarubbo
2020-09-06  7:49 Sergei Trofimovich
2020-08-26 22:04 Sergei Trofimovich
2020-08-22  5:50 Agostino Sarubbo
2020-08-18 11:16 Agostino Sarubbo
2020-08-17 14:52 Agostino Sarubbo
2020-08-17  9:21 Sam James
2020-08-17  7:35 Sam James
2019-05-03 23:17 Andreas K. Hüttel
2019-01-22 11:05 Mikle Kolyada
2019-01-22 11:05 Mikle Kolyada
2019-01-22 11:05 Mikle Kolyada
2019-01-22  7:16 Matt Turner
2019-01-08  9:35 Mart Raudsepp
2019-01-03 18:58 Mikle Kolyada
2019-01-01 14:49 Lars Wendler
2019-01-01 12:50 Sergei Trofimovich
2019-01-01 12:17 Sergei Trofimovich
2019-01-01 12:17 Sergei Trofimovich
2019-01-01 12:05 Sergei Trofimovich
2018-12-31 16:43 Thomas Deutschmann
2018-12-31 10:59 Sergei Trofimovich
2018-12-30 16:25 Lars Wendler
2018-10-14 10:20 Sergei Trofimovich
2016-12-08  6:37 Mike Frysinger
2016-09-01 13:07 Agostino Sarubbo
2016-09-01 13:06 Agostino Sarubbo
2016-07-08 14:47 Markus Meier
2016-07-03 10:53 Jeroen Roovers
2016-06-30 16:15 Tobias Klausmann
2016-05-04 20:53 Mike Gilbert
2016-04-27  5:23 Lars Wendler
2016-03-28  7:38 Lars Wendler
2016-03-28  7:38 Lars Wendler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1515400379.3c307a16b1cc9fe90c3804eb7cb1bf22f594b9fe.polynomial-c@gentoo \
    --to=polynomial-c@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox