Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/mktorrent/
Date: Sun, 29 Nov 2020 09:56:28
Message-Id: 1606643709.1319284073a274c6e5614043dab5cf31b95738da.soap@gentoo
1 commit: 1319284073a274c6e5614043dab5cf31b95738da
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 09:55:09 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 09:55:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13192840
7
8 net-p2p/mktorrent: Remove old
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-p2p/mktorrent/Manifest | 1 -
14 net-p2p/mktorrent/mktorrent-1.0-r1.ebuild | 33 -------------------------------
15 2 files changed, 34 deletions(-)
16
17 diff --git a/net-p2p/mktorrent/Manifest b/net-p2p/mktorrent/Manifest
18 index 56cc216f115..6751181ee26 100644
19 --- a/net-p2p/mktorrent/Manifest
20 +++ b/net-p2p/mktorrent/Manifest
21 @@ -1,2 +1 @@
22 -DIST mktorrent-1.0.tar.gz 23089 BLAKE2B debfdbf2691fd1baa9f1647ef1cd64a4e5d8cbcabd77fb7c8a4b7ec5c1abbf4fa56ae54ea51afc58b0807cde8d525c4ac7106d38576e52a71e2776ba0bfcacda SHA512 f103c8860c008796c2dc604fcabce7374264fd7814237fcad5f9dab0fe10e927b0e2d9b58e7462dd198265a7d83fe30fd68313c7dce4029d8c331a6f2d4622de
23 DIST mktorrent-4c221a05d949a3767a2671de139c6014909daf6b.tar.gz 24574 BLAKE2B e7dcc17aca52c8d1f9d816ce3e89bea5c2b1d7759dba6a00578960b253652506b7e61855d769440056aaa6b0719e6856108ca5b80977152746a648862c71e97b SHA512 49ba2697373a1b40829d50d66faaaeb57fa3893e97283ec2844b447b8e4cf2713d7c0e76e49d3893475f5ce298c3215249751defe0f952d2c52df1bf68f7706c
24
25 diff --git a/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild b/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild
26 deleted file mode 100644
27 index d132d68b2e1..00000000000
28 --- a/net-p2p/mktorrent/mktorrent-1.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -inherit toolchain-funcs
36 -
37 -DESCRIPTION="Simple command line utility to create BitTorrent metainfo files"
38 -HOMEPAGE="http://mktorrent.sourceforge.net"
39 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-2+"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86"
44 -IUSE="threads +ssl debug"
45 -
46 -RDEPEND="ssl? ( dev-libs/openssl:0 )"
47 -DEPEND="${RDEPEND}"
48 -
49 -src_compile() {
50 - tc-export CC
51 - MAKEPARAM="USE_LONG_OPTIONS=1"
52 - MAKEPARAM="${MAKEPARAM} USE_LARGE_FILES=1"
53 - use debug && MAKEPARAM="${MAKEPARAM} DEBUG=1"
54 - use ssl && MAKEPARAM="${MAKEPARAM} USE_OPENSSL=1"
55 - use threads && MAKEPARAM="${MAKEPARAM} USE_PTHREADS=1"
56 -
57 - emake ${MAKEPARAM}
58 -}
59 -
60 -src_install() {
61 - dobin ${PN}
62 - dodoc README
63 -}