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/
Date: Mon, 07 Mar 2016 13:53:54
Message-Id: 1457358023.56986c80f4626161909d8ae3bd03ac47e9f00e7c.monsieurp@gentoo
1 commit: 56986c80f4626161909d8ae3bd03ac47e9f00e7c
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Mar 7 13:39:10 2016 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 7 13:40:23 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56986c80
7
8 app-arch/torrentzip: Fix invalid SRC_URI.
9
10 Gentoo-Bug: https://bugs.gentoo.org/575338
11 Reporter: Alexander Miller <alex.miller <AT> gmx.de>
12 Acked-by: Patrice Clement <monsieurp <AT> gentoo.org>
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14 Package-Manager: portage-2.2.26
15
16 app-arch/torrentzip/Manifest | 1 +
17 app-arch/torrentzip/torrentzip-0.2-r3.ebuild | 32 ++++++++++++++++++++++++++++
18 2 files changed, 33 insertions(+)
19
20 diff --git a/app-arch/torrentzip/Manifest b/app-arch/torrentzip/Manifest
21 index 0918300..e167253 100644
22 --- a/app-arch/torrentzip/Manifest
23 +++ b/app-arch/torrentzip/Manifest
24 @@ -1 +1,2 @@
25 +DIST torrentzip-0.2.tar.gz 46971 SHA256 9e55f378ef5c75c452b3f52728a7503ca76e147e0ab2395b8c41de8c20995efd SHA512 802dd1bf55e0a31df75d8195c9d2d5610be8cb7f14d14278eba72b580aff3ad415711999db05a5425303380ebfc82a68896e276319e0ead5635d0a07615ba700 WHIRLPOOL 79c96f51a0b547b2651625a3b3aee6b7a769955e10b092654086a1d91a494d08f8dd732eee45b432ca97f4f6314af0f76907fa81b422ef94676e6d729994a61d
26 DIST torrentzip-0.2.zip 69200 SHA256 3aa58e839743eebd97071e36585bb14cab0bddd22db646eb0765e1ae3ef2c749 SHA512 a6d6452940ab9070b96d598c7db306657afa34c3630160943260e6687e65985aa5aa8ad0b1319ee6470912207d6ef369fdb1168d5d528e8efd7405dc7722b1b8 WHIRLPOOL 0cad9f83e2d27795014be51b912d34350a59ad9c824f66237e1f15641daad812c92a7d5c6357e8d6a2517f08a381705f4eb057dc855700b007b99f3210046a1c
27
28 diff --git a/app-arch/torrentzip/torrentzip-0.2-r3.ebuild b/app-arch/torrentzip/torrentzip-0.2-r3.ebuild
29 new file mode 100644
30 index 0000000..a921e91
31 --- /dev/null
32 +++ b/app-arch/torrentzip/torrentzip-0.2-r3.ebuild
33 @@ -0,0 +1,32 @@
34 +# Copyright 1999-2016 Gentoo Foundation
35 +# Distributed under the terms of the GNU General Public License v2
36 +# $Id$
37 +
38 +EAPI="5"
39 +
40 +inherit eutils autotools
41 +
42 +DESCRIPTION="Create identical zip archives over multiple systems"
43 +HOMEPAGE="https://sourceforge.net/projects/trrntzip"
44 +
45 +MY_PN="trrntzip"
46 +MY_P="${MY_PN}_v${PV/.}"
47 +
48 +SRC_URI="mirror://sourceforge/trrntzip/${MY_P}_src.tar.gz -> ${P}.tar.gz"
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~x86"
52 +IUSE=""
53 +DEPEND="sys-libs/zlib"
54 +RDEPEND="$DEPEND"
55 +
56 +S="${WORKDIR}/${MY_PN}"
57 +DOCS=(README AUTHORS)
58 +
59 +src_prepare() {
60 + export CPPFLAGS+=" -DOF\\(args\\)=args"
61 +
62 + epatch_user
63 +
64 + eautoreconf
65 +}