Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/torrentzip/, app-arch/torrentzip/files/
Date: Sun, 03 Jul 2016 11:57:16
Message-Id: 1467545326.3ab8c746378996641738ca3efb7399db5f188c36.monsieurp@gentoo
1 commit: 3ab8c746378996641738ca3efb7399db5f188c36
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 11:21:25 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 11:28:46 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ab8c746
7
8 app-arch/torrentzip: Clean up old.
9
10 Package-Manager: portage-2.2.28
11
12 app-arch/torrentzip/Manifest | 1 -
13 .../files/torrentzip-0.2-fix-perms.patch | 11 --------
14 app-arch/torrentzip/torrentzip-0.2-r4.ebuild | 33 ----------------------
15 3 files changed, 45 deletions(-)
16
17 diff --git a/app-arch/torrentzip/Manifest b/app-arch/torrentzip/Manifest
18 index 91c231b..f787b39 100644
19 --- a/app-arch/torrentzip/Manifest
20 +++ b/app-arch/torrentzip/Manifest
21 @@ -1,2 +1 @@
22 DIST torrentzip-0.9.tar.gz 59007 SHA256 89059002613e3e9f06861ae90047e3d4ea6cc1b2cc4ef21bd75cb51cecb2bff6 SHA512 691cd25f501de3de16b5b15b2afadfc34b833c3e93208c2c3497674936580ad2c3532a02e02531b89974302eee7b36f7579a412718914b1b38044b78a39a4d4d WHIRLPOOL 0e172c0797d2577afd632d9d53d09a2cb25d05e78037984963996999a719aaf7295dc264554794f0b1f2eba8bb162c2ecc9d584a058c241b6f84849c0ab47e7b
23 -DIST trrntzip_v02_src.tar.gz 46971 SHA256 9e55f378ef5c75c452b3f52728a7503ca76e147e0ab2395b8c41de8c20995efd SHA512 802dd1bf55e0a31df75d8195c9d2d5610be8cb7f14d14278eba72b580aff3ad415711999db05a5425303380ebfc82a68896e276319e0ead5635d0a07615ba700 WHIRLPOOL 79c96f51a0b547b2651625a3b3aee6b7a769955e10b092654086a1d91a494d08f8dd732eee45b432ca97f4f6314af0f76907fa81b422ef94676e6d729994a61d
24
25 diff --git a/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch b/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch
26 deleted file mode 100644
27 index 79df2ef..0000000
28 --- a/app-arch/torrentzip/files/torrentzip-0.2-fix-perms.patch
29 +++ /dev/null
30 @@ -1,11 +0,0 @@
31 ---- a/src/trrntzip.c
32 -+++ b/src/trrntzip.c
33 -@@ -782,7 +782,7 @@
34 -
35 - if (strstr (szTmpBuf, ".zip\0") && !(istat.st_mode & S_IWUSR))
36 - {
37 -- chmod (direntp->d_name, S_IWUSR);
38 -+ chmod (direntp->d_name, S_IWUSR | S_IRUSR);
39 - mig.cEncounteredZips++;
40 -
41 - if (!mig.fProcessLog)
42
43 diff --git a/app-arch/torrentzip/torrentzip-0.2-r4.ebuild b/app-arch/torrentzip/torrentzip-0.2-r4.ebuild
44 deleted file mode 100644
45 index 376bb43..0000000
46 --- a/app-arch/torrentzip/torrentzip-0.2-r4.ebuild
47 +++ /dev/null
48 @@ -1,33 +0,0 @@
49 -# Copyright 1999-2016 Gentoo Foundation
50 -# Distributed under the terms of the GNU General Public License v2
51 -# $Id$
52 -
53 -EAPI="6"
54 -
55 -inherit eutils autotools
56 -
57 -DESCRIPTION="Create identical zip archives over multiple systems"
58 -HOMEPAGE="https://sourceforge.net/projects/trrntzip"
59 -
60 -MY_PN="trrntzip"
61 -MY_P="${MY_PN}_v${PV/.}"
62 -
63 -SRC_URI="mirror://sourceforge/trrntzip/${MY_P}_src.tar.gz"
64 -LICENSE="GPL-2"
65 -SLOT="0"
66 -KEYWORDS="~amd64 ~x86"
67 -IUSE=""
68 -DEPEND="sys-libs/zlib"
69 -RDEPEND="$DEPEND"
70 -
71 -S="${WORKDIR}/${MY_PN}"
72 -DOCS=(README AUTHORS)
73 -PATCHES=("${FILESDIR}/${P}-fix-perms.patch")
74 -
75 -src_prepare() {
76 - default
77 -
78 - export CPPFLAGS+=" -DOF\\(args\\)=args"
79 -
80 - eautoreconf
81 -}