public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/unzip/
Date: Fri, 28 Aug 2015 00:30:45 +0000 (UTC)	[thread overview]
Message-ID: <1440721829.9316a916d4f1478b26b8b9b9f2e82940b8b54bf2.mrueg@gentoo> (raw)

commit:     9316a916d4f1478b26b8b9b9f2e82940b8b54bf2
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 28 00:30:29 2015 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Aug 28 00:30:29 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9316a916

app-arch/unzip: Remove old

Package-Manager: portage-2.2.20.1

 app-arch/unzip/unzip-6.0-r1.ebuild | 70 -------------------------------------
 app-arch/unzip/unzip-6.0-r2.ebuild | 71 --------------------------------------
 2 files changed, 141 deletions(-)

diff --git a/app-arch/unzip/unzip-6.0-r1.ebuild b/app-arch/unzip/unzip-6.0-r1.ebuild
deleted file mode 100644
index cdb7572..0000000
--- a/app-arch/unzip/unzip-6.0-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit eutils toolchain-funcs flag-o-matic
-
-MY_P="${PN}${PV/.}"
-
-DESCRIPTION="unzipper for pkzip-compressed files"
-HOMEPAGE="http://www.info-zip.org/"
-SRC_URI="mirror://sourceforge/infozip/${MY_P}.tar.gz"
-
-LICENSE="Info-ZIP"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 m68k ppc ppc64 s390 sh ~sparc x86"
-IUSE="bzip2 unicode"
-
-DEPEND="bzip2? ( app-arch/bzip2 )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
-	epatch "${FILESDIR}"/${P}-no-exec-stack.patch
-	sed -i \
-		-e '/^CFLAGS/d' \
-		-e '/CFLAGS/s:-O[0-9]\?:$(CFLAGS) $(CPPFLAGS):' \
-		-e '/^STRIP/s:=.*:=true:' \
-		-e "s:\<CC=gcc\>:CC=\"$(tc-getCC)\":" \
-		-e "s:\<LD=gcc\>:LD=\"$(tc-getCC)\":" \
-		-e "s:\<AS=gcc\>:AS=\"$(tc-getCC)\":" \
-		-e 's:LF2 = -s:LF2 = :' \
-		-e 's:LF = :LF = $(LDFLAGS) :' \
-		-e 's:SL = :SL = $(LDFLAGS) :' \
-		-e 's:FL = :FL = $(LDFLAGS) :' \
-		-e "/^#L_BZ2/s:^$(use bzip2 && echo .)::" \
-		unix/Makefile \
-		|| die "sed unix/Makefile failed"
-}
-
-src_compile() {
-	local TARGET
-	case ${CHOST} in
-		i?86*-*linux*)       TARGET=linux_asm ;;
-		*linux*)             TARGET=linux_noasm ;;
-		i?86*-*bsd* | \
-		i?86*-dragonfly*)    TARGET=freebsd ;; # mislabelled bsd with x86 asm
-		*bsd* | *dragonfly*) TARGET=bsd ;;
-		*-darwin*)           TARGET=macosx ;;
-		*) die "Unknown target, you suck" ;;
-	esac
-
-	[[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
-	use bzip2 && append-cppflags -DUSE_BZIP2
-	use unicode && append-cppflags -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE
-	append-cppflags -DLARGE_FILE_SUPPORT #281473
-
-	emake \
-		-f unix/Makefile \
-		${TARGET} || die "emake failed"
-}
-
-src_install() {
-	dobin unzip funzip unzipsfx unix/zipgrep || die "dobin failed"
-	dosym unzip /usr/bin/zipinfo || die
-	doman man/*.1
-	dodoc BUGS History* README ToDo WHERE
-}

diff --git a/app-arch/unzip/unzip-6.0-r2.ebuild b/app-arch/unzip/unzip-6.0-r2.ebuild
deleted file mode 100644
index 1d350a1..0000000
--- a/app-arch/unzip/unzip-6.0-r2.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-inherit eutils toolchain-funcs flag-o-matic
-
-MY_P="${PN}${PV/.}"
-
-DESCRIPTION="unzipper for pkzip-compressed files"
-HOMEPAGE="http://www.info-zip.org/"
-SRC_URI="mirror://sourceforge/infozip/${MY_P}.tar.gz"
-
-LICENSE="Info-ZIP"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE="bzip2 natspec unicode"
-
-DEPEND="bzip2? ( app-arch/bzip2 )
-	natspec? ( dev-libs/libnatspec )"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-no-exec-stack.patch
-	use natspec && epatch "${FILESDIR}/${PN}-6.0-natspec.patch" #275244
-	sed -i \
-		-e '/^CFLAGS/d' \
-		-e '/CFLAGS/s:-O[0-9]\?:$(CFLAGS) $(CPPFLAGS):' \
-		-e '/^STRIP/s:=.*:=true:' \
-		-e "s:\<CC=gcc\>:CC=\"$(tc-getCC)\":" \
-		-e "s:\<LD=gcc\>:LD=\"$(tc-getCC)\":" \
-		-e "s:\<AS=gcc\>:AS=\"$(tc-getCC)\":" \
-		-e 's:LF2 = -s:LF2 = :' \
-		-e 's:LF = :LF = $(LDFLAGS) :' \
-		-e 's:SL = :SL = $(LDFLAGS) :' \
-		-e 's:FL = :FL = $(LDFLAGS) :' \
-		-e "/^#L_BZ2/s:^$(use bzip2 && echo .)::" \
-		unix/Makefile \
-		|| die "sed unix/Makefile failed"
-}
-
-src_compile() {
-	local TARGET
-	case ${CHOST} in
-		i?86*-*linux*)       TARGET=linux_asm ;;
-		*linux*)             TARGET=linux_noasm ;;
-		i?86*-*bsd* | \
-		i?86*-dragonfly*)    TARGET=freebsd ;; # mislabelled bsd with x86 asm
-		*bsd* | *dragonfly*) TARGET=bsd ;;
-		*-darwin*)           TARGET=macosx ;;
-		*) die "Unknown target, you suck" ;;
-	esac
-
-	[[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
-	use bzip2 && append-cppflags -DUSE_BZIP2
-	use unicode && append-cppflags -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE
-	append-cppflags -DLARGE_FILE_SUPPORT #281473
-
-	emake \
-		-f unix/Makefile \
-		${TARGET} || die "emake failed"
-}
-
-src_install() {
-	dobin unzip funzip unzipsfx unix/zipgrep || die "dobin failed"
-	dosym unzip /usr/bin/zipinfo || die
-	doman man/*.1
-	dodoc BUGS History* README ToDo WHERE
-}


             reply	other threads:[~2015-08-28  0:30 UTC|newest]

Thread overview: 75+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-28  0:30 Manuel Rüger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-02-28 19:16 [gentoo-commits] repo/gentoo:master commit in: app-arch/unzip/ Mike Frysinger
2016-04-02 23:15 Mike Frysinger
2016-04-04  2:46 Jeroen Roovers
2016-04-06 12:26 Agostino Sarubbo
2016-04-11 10:39 Agostino Sarubbo
2016-04-19 15:32 Markus Meier
2016-05-02  4:02 Matt Turner
2016-07-07 21:37 Sergei Trofimovich
2016-07-08  7:53 Agostino Sarubbo
2016-07-08 10:02 Agostino Sarubbo
2016-07-08 12:02 Agostino Sarubbo
2017-01-22  6:17 Mike Frysinger
2017-11-21 13:52 Jeroen Roovers
2017-11-26  1:05 Thomas Deutschmann
2018-01-01 22:14 Sergei Trofimovich
2018-01-02 19:54 Sergei Trofimovich
2018-01-02 23:38 Mikle Kolyada
2018-01-10  6:19 Markus Meier
2018-03-03 13:12 Tobias Klausmann
2018-04-21 14:50 Mart Raudsepp
2018-05-20 10:37 Mikle Kolyada
2018-06-03 13:55 Mike Frysinger
2019-05-03 23:17 Andreas K. Hüttel
2019-08-10 14:52 Aaron Bauman
2019-08-10 17:12 Thomas Deutschmann
2019-08-10 17:12 Thomas Deutschmann
2019-10-28  7:41 Agostino Sarubbo
2019-11-01 10:14 Mikle Kolyada
2019-11-06 23:30 Aaron Bauman
2019-11-08  8:35 Mikle Kolyada
2019-11-09 22:55 Matt Turner
2019-11-10 21:56 Sergei Trofimovich
2019-11-11 19:58 Sergei Trofimovich
2019-12-01 14:01 Sergei Trofimovich
2020-01-18 10:54 Sergei Trofimovich
2020-02-08 11:27 Sergei Trofimovich
2020-03-26 18:25 Thomas Deutschmann
2020-03-26 18:25 Thomas Deutschmann
2020-12-26 19:50 Sam James
2020-12-26 19:53 Sam James
2020-12-27  9:12 Fabian Groffen
2021-01-06 12:52 Fabian Groffen
2021-03-27  2:59 Sam James
2021-03-27 16:14 Thomas Deutschmann
2021-05-08 18:41 Sam James
2021-05-08 18:44 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:49 Sam James
2021-05-08 18:55 Sam James
2021-05-08 18:55 Sam James
2021-05-08 18:58 Sam James
2021-05-11 15:45 Sergei Trofimovich
2021-05-13 10:59 David Seifert
2021-09-21  8:10 Michał Górny
2021-09-21  8:10 Michał Górny
2022-08-25  2:20 Sam James
2022-08-29 22:08 Sam James
2022-08-29 22:08 Sam James
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-08-30  4:35 Arthur Zamarin
2022-11-04  2:24 Sam James
2022-11-18  3:19 Sam James
2022-11-18  3:19 Sam James
2022-11-18  7:23 Arthur Zamarin
2024-07-25  7:12 Fabian Groffen
2025-05-01  5:59 Sam James
2025-05-01  5:59 Sam James
2025-05-01  5:59 Sam James
2025-05-01  6:07 Sam James
2025-05-01  6:10 Sam James
2025-05-01  7:34 Arthur Zamarin

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=1440721829.9316a916d4f1478b26b8b9b9f2e82940b8b54bf2.mrueg@gentoo \
    --to=mrueg@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