Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/fatrat/
Date: Mon, 02 Oct 2017 11:09:56
Message-Id: 1506942564.b8adb09f6e8d4efb5740a1dfefbf58f3bcbba8b9.asturm@gentoo
1 commit: b8adb09f6e8d4efb5740a1dfefbf58f3bcbba8b9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 2 10:18:45 2017 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 2 11:09:24 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8adb09f
7
8 net-misc/fatrat: Drop old
9
10 Gentoo-bug: 620730
11 Package-Manager: Portage-2.3.8, Repoman-2.3.1
12
13 net-misc/fatrat/Manifest | 1 -
14 .../fatrat/fatrat-1.2.0_beta2_p20150803.ebuild | 61 ----------------------
15 2 files changed, 62 deletions(-)
16
17 diff --git a/net-misc/fatrat/Manifest b/net-misc/fatrat/Manifest
18 index 9a8bafbe3d8..15f8abf35d2 100644
19 --- a/net-misc/fatrat/Manifest
20 +++ b/net-misc/fatrat/Manifest
21 @@ -1,2 +1 @@
22 -DIST fatrat-1.2.0_beta2_p20150803.tar.gz 4308365 SHA256 e4df2cedc68b0c03848b3b9a5766032de7e845824120079c6916dae8a33164fb SHA512 a872c4351fd079530d18c3335cc6dc7fd95d1402c39ee6f1a65660b8c271644af5d1e8f48890d75e603f646689936f385404d05631b53b2e655c5357a02eb94a WHIRLPOOL ec4d6783397e796aca9ec7e252919a116b96cdbb8f7ca9f5040971e229cd2070d624e4421bf22a2c51f75ec2077d4df179e1e729f3e4d4a7c682f3e9f4b59bd2
23 DIST fatrat-1.2.0_beta2_p20161204.tar.gz 4988560 SHA256 be1202e4fd6b16fb3d9074be104fea76d6b03ef858eb438ff6aba23cb69d41b6 SHA512 d3a9816cc53fd93ef2ccd3fb5896dde5846382d40e30dc687a14379e6048f8ffc27b40c2b5c3977c6bccc912dcb054426c84c016c319174e2c2a440f9a588063 WHIRLPOOL d2b7a80415ce99f920b97508a1cabd43699ae02f8257d4a619b3f0b7036c9320bb95587bbe043211406af8ebdfc141571dd0f0a056a7f82bc94db4a8482d9430
24
25 diff --git a/net-misc/fatrat/fatrat-1.2.0_beta2_p20150803.ebuild b/net-misc/fatrat/fatrat-1.2.0_beta2_p20150803.ebuild
26 deleted file mode 100644
27 index 67809dc3beb..00000000000
28 --- a/net-misc/fatrat/fatrat-1.2.0_beta2_p20150803.ebuild
29 +++ /dev/null
30 @@ -1,61 +0,0 @@
31 -# Copyright 1999-2016 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -SNAPSHOT="b5be2b17ee291f6253484ec749037bc2c9200ccc"
37 -
38 -inherit cmake-utils
39 -
40 -DESCRIPTION="Qt4-based download/upload manager"
41 -HOMEPAGE="http://fatrat.dolezel.info/"
42 -if [[ -n "${SNAPSHOT}" ]] ; then
43 - SRC_URI="https://github.com/LubosD/fatrat/tarball/${SNAPSHOT} -> ${P}.tar.gz"
44 - S="${WORKDIR}/LubosD-${PN}-${SNAPSHOT:0:7}"
45 -else
46 - SRC_URI="http://www.dolezel.info/download/data/${PN}/${P}.tar.xz"
47 -fi
48 -
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -KEYWORDS="~amd64 ~x86"
52 -IUSE="bittorrent +curl doc xmpp nls webinterface"
53 -
54 -RDEPEND="dev-qt/qtdbus:4
55 - dev-qt/qtgui:4
56 - dev-qt/qtsvg:4
57 - bittorrent? (
58 - >=net-libs/libtorrent-rasterbar-0.14.5
59 - >=dev-cpp/asio-1.1.0
60 - dev-qt/qtwebkit:4
61 - )
62 - curl? ( >=net-misc/curl-7.18.2 )
63 - doc? ( dev-qt/qthelp:4 )
64 - xmpp? ( net-libs/gloox )
65 - webinterface? ( dev-qt/qtscript:4 )"
66 -DEPEND="${RDEPEND}
67 - virtual/pkgconfig
68 - nls? ( sys-devel/gettext )"
69 -
70 -PATCHES=(
71 - "${FILESDIR}/${P}-build.patch"
72 -)
73 -
74 -src_configure() {
75 - local mycmakeargs=(
76 - -DWITH_BITTORRENT="$(usex bittorrent ON OFF)"
77 - -DWITH_CURL="$(usex curl ON OFF)"
78 - -DWITH_DOCUMENTATION="$(usex doc ON OFF)"
79 - -DWITH_JABBER="$(usex xmpp ON OFF)"
80 - -DWITH_NLS="$(usex nls ON OFF)"
81 - -DWITH_WEBINTERFACE="$(usex webinterface ON OFF)"
82 - )
83 - cmake-utils_src_configure
84 -}
85 -
86 -pkg_postinst() {
87 - # this is a completely optional and NOT automagic dep
88 - if ! has_version dev-libs/geoip; then
89 - elog "If you want GeoIP support, emerge dev-libs/geoip."
90 - fi
91 -}