commit: 3ab8c746378996641738ca3efb7399db5f188c36
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 3 11:21:25 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Sun Jul 3 11:28:46 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ab8c746
app-arch/torrentzip: Clean up old.
Package-Manager: portage-2.2.28
app-arch/torrentzip/Manifest | 1 -
.../files/torrentzip-0.2-fix-perms.patch | 11 --------
app-arch/torrentzip/torrentzip-0.2-r4.ebuild | 33 ----------------------
3 files changed, 45 deletions(-)
diff --git a/app-arch/torrentzip/Manifest b/app-arch/torrentzip/Manifest
index 91c231b..f787b39 100644
--- a/app-arch/torrentzip/Manifest
+++ b/app-arch/torrentzip/Manifest
@@ -1,2 +1 @@
DIST torrentzip-0.9.tar.gz 59007 SHA256
89059002613e3e9f06861ae90047e3d4ea6cc1b2cc4ef21bd75cb51cecb2bff6 SHA512
691cd25f501de3de16b5b15b2afadfc34b833c3e93208c2c3497674936580ad2c3532a02e02531b89974302eee7b36f7579a412718914b1b38044b78a39a4d4d
WHIRLPOOL
0e172c0797d2577afd632d9d53d09a2cb25d05e78037984963996999a719aaf7295dc264554794f0b1f2eba8bb162c2ecc9d584a058c241b6f84849c0ab47e7b
-DIST trrntzip_v02_src.tar.gz 46971 SHA256
9e55f378ef5c75c452b3f52728a7503ca76e147e0ab2395b8c41de8c20995efd SHA512
802dd1bf55e0a31df75d8195c9d2d5610be8cb7f14d14278eba72b580aff3ad415711999db05a5425303380ebfc82a68896e276319e0ead5635d0a07615ba700
WHIRLPOOL
79c96f51a0b547b2651625a3b3aee6b7a769955e10b092654086a1d91a494d08f8dd732eee45b432ca97f4f6314af0f76907fa81b422ef94676e6d729994a61d
diff --git a/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch
b/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch
deleted file mode 100644
index 79df2ef..0000000
--- a/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/trrntzip.c
-+++ b/src/trrntzip.c
-@@ -782,7 +782,7 @@
-
- if (strstr (szTmpBuf, ".zip\0") && !(istat.st_mode & S_IWUSR))
- {
-- chmod (direntp->d_name, S_IWUSR);
-+ chmod (direntp->d_name, S_IWUSR | S_IRUSR);
- mig.cEncounteredZips++;
-
- if (!mig.fProcessLog)
diff --git a/app-arch/torrentzip/torrentzip-0.2-r4.ebuild
b/app-arch/torrentzip/torrentzip-0.2-r4.ebuild
deleted file mode 100644
index 376bb43..0000000
--- a/app-arch/torrentzip/torrentzip-0.2-r4.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="6"
-
-inherit eutils autotools
-
-DESCRIPTION="Create identical zip archives over multiple systems"
-HOMEPAGE="https://sourceforge.net/projects/trrntzip"
-
-MY_PN="trrntzip"
-MY_P="${MY_PN}_v${PV/.}"
-
-SRC_URI="mirror://sourceforge/trrntzip/${MY_P}_src.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND="sys-libs/zlib"
-RDEPEND="$DEPEND"
-
-S="${WORKDIR}/${MY_PN}"
-DOCS=(README AUTHORS)
-PATCHES=("${FILESDIR}/${P}-fix-perms.patch")
-
-src_prepare() {
- default
-
- export CPPFLAGS+=" -DOF\\(args\\)=args"
-
- eautoreconf
-}