Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/qbittorrent/
Date: Wed, 31 Oct 2018 14:24:13
Message-Id: 1540995825.41e948b96503d64f5f69e72ca5004bb72d26181e.zlogene@gentoo
1 commit: 41e948b96503d64f5f69e72ca5004bb72d26181e
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Wed Oct 31 14:23:45 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 31 14:23:45 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41e948b9
7
8 net-p2p/qbittorrent: remove buggy CMake version
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.11
12
13 net-p2p/qbittorrent/Manifest | 1 -
14 net-p2p/qbittorrent/qbittorrent-4.1.1.ebuild | 65 ----------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
18 index 60e8bf24feb..0980f875f21 100644
19 --- a/net-p2p/qbittorrent/Manifest
20 +++ b/net-p2p/qbittorrent/Manifest
21 @@ -1,3 +1,2 @@
22 -DIST qbittorrent-4.1.1.tar.gz 7464014 BLAKE2B be005fbecd1d2c9ee977fbdc6782bbad9708e3c2c6d46deb5831ae4e7457954cb95ae87850b759e81e87e345ca682acfcd23684b7704c437c4261ebb5bb46f5d SHA512 700c084b97556ba85276b42e46f77d5f7896052ce02ba052cd4b3e6967c8a848c27bcf63a289bf8276b38841bb9a80b9ec16335c3feb30dce0851170f54d101e
23 DIST qbittorrent-4.1.2.tar.gz 7697135 BLAKE2B 13e9456fd43395d597156519bdd665db898d462761dc5fe5f92e40994e8d0e214b0a1f9d8d327d44f8deb287c646c7013c17099bca193d85d1a3b2d851ada976 SHA512 25293378693cec875d1b52ea5aca8087a0d31021e6fbb4bd31f05c6979e36a5dc03983f2007a067942e1e119878b94a9e2b9622f324c7592f6630dcfe008b757
24 DIST qbittorrent-4.1.3.tar.gz 7268632 BLAKE2B 72388d1198dd9bdf4844c1769c7a7c8fe2fcf8213bc0442dc1900ec4b0968a5aa291b0fb35e3e89b7fa7395cc336c44a447ae6d4360504393a68343e5f10efff SHA512 ffacd3755c8f4487d13c339ff40f6e52765fad2e68f6ea2892ea58c9e702f591fd6aafda48ec4fc8b5fecfa81fd34e3a1d5b96676f76ae657b3420d080323c09
25
26 diff --git a/net-p2p/qbittorrent/qbittorrent-4.1.1.ebuild b/net-p2p/qbittorrent/qbittorrent-4.1.1.ebuild
27 deleted file mode 100644
28 index 23e5a799473..00000000000
29 --- a/net-p2p/qbittorrent/qbittorrent-4.1.1.ebuild
30 +++ /dev/null
31 @@ -1,65 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -
37 -inherit cmake-utils gnome2-utils xdg-utils
38 -
39 -DESCRIPTION="BitTorrent client in C++ and Qt"
40 -HOMEPAGE="https://www.qbittorrent.org
41 - https://github.com/qbittorrent"
42 -
43 -if [[ ${PV} == *9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git"
46 -else
47 - SRC_URI="https://github.com/qbittorrent/qBittorrent/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
48 - KEYWORDS="amd64 ~arm ~ppc64 x86"
49 - S="${WORKDIR}/qBittorrent-release-${PV}"
50 -fi
51 -
52 -LICENSE="GPL-2"
53 -SLOT="0"
54 -IUSE="+dbus debug webui +X"
55 -REQUIRED_USE="dbus? ( X )"
56 -
57 -RDEPEND="
58 - >=dev-libs/boost-1.62.0-r1:=
59 - dev-qt/qtcore:5
60 - dev-qt/qtnetwork:5[ssl]
61 - >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5(+),X?]
62 - dev-qt/qtxml:5
63 - >=net-libs/libtorrent-rasterbar-1.0.6:0=
64 - dev-libs/geoip
65 - sys-libs/zlib
66 - dbus? ( dev-qt/qtdbus:5 )
67 - X? (
68 - dev-qt/qtgui:5
69 - dev-qt/qtsvg:5
70 - dev-qt/qtwidgets:5
71 - )"
72 -DEPEND="${RDEPEND}
73 - dev-qt/linguist-tools:5
74 - virtual/pkgconfig"
75 -
76 -DOCS=( AUTHORS Changelog CONTRIBUTING.md README.md TODO )
77 -
78 -src_configure() {
79 - local mycmakeargs=(
80 - -DSYSTEM_QTSINGLEAPPLICATION=ON
81 - -DDBUS=$(usex dbus)
82 - -DGUI=$(usex X)
83 - -DWEBUI=$(usex webui)
84 - )
85 - cmake-utils_src_configure
86 -}
87 -
88 -pkg_postinst() {
89 - gnome2_icon_cache_update
90 - xdg_desktop_database_update
91 -}
92 -
93 -pkg_postrm() {
94 - gnome2_icon_cache_update
95 - xdg_desktop_database_update
96 -}