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: Sat, 25 Apr 2020 09:33:52
Message-Id: 1587807223.89fad952b98b32ca05dccfbceaf11c40893b469f.zlogene@gentoo
1 commit: 89fad952b98b32ca05dccfbceaf11c40893b469f
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 25 09:33:00 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 25 09:33:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89fad952
7
8 net-p2p/qbittorrent: Version bump (v4.2.5)
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 net-p2p/qbittorrent/Manifest | 1 +
14 net-p2p/qbittorrent/qbittorrent-4.2.5.ebuild | 69 ++++++++++++++++++++++++++++
15 2 files changed, 70 insertions(+)
16
17 diff --git a/net-p2p/qbittorrent/Manifest b/net-p2p/qbittorrent/Manifest
18 index 916c46379ba..3ea5c701569 100644
19 --- a/net-p2p/qbittorrent/Manifest
20 +++ b/net-p2p/qbittorrent/Manifest
21 @@ -1,3 +1,4 @@
22 DIST qbittorrent-4.2.1.tar.gz 7824636 BLAKE2B 06aa493b4e59f8e064955c604846cd4e4d404988819aa4f0b7a555cd3d8c74f42d4b40b581bc5c2360e5b75f0ce33f77882051360453176a9540d03d4d5de82d SHA512 345c702a49d284fe28b45e52719a79195a784ba07339ea49c340d10d387482d3ba59335b2e41616de97e3813531e808c41239e597ef4b710fcebceb0c837483c
23 DIST qbittorrent-4.2.3.tar.gz 7932722 BLAKE2B d16aa81ce683578eea5186a505a5f33da457ef672261520f0fe3af11008d516d7fce8de31e31190c380c9cc3e24d7acce053dbff952f7bb937a610416f23129e SHA512 766cff294b5e2aae99073e9894c683b68af6e7abdd1eae660e444593664f65918132b9fbd7b40843143f2559b4124145e2d08478c2b87b0b6df1ef574e17f763
24 DIST qbittorrent-4.2.4.tar.gz 7965424 BLAKE2B 7d1f058e3aaa66a857721c4cc915057735bfcf2d24a2076e814c8801fcb7b107d33211f2916654c17dceed0b4c53869cb8b992853a676a55069db615ae5a4663 SHA512 0c6a6226c2503edfc79d077bafd006eab02b0d42cea815cd420044857f3e13157ae068b52c7d67299e5b0a6c0da4bf5ffa702c3bd69fb84b8b734ac17441d0f7
25 +DIST qbittorrent-4.2.5.tar.gz 7961612 BLAKE2B 61d2f2154a291a6d1ddab7d4775d4ac4d19f471dceb783cb7933015ed9159afdca4075f429891dbbd7249f09d910ef643d27da4c4b7307adbf29354222265027 SHA512 8808029bdb3a1638fcf792e92c36bd39889dbc2ceb26c8d45ff17b086bd076f0b3a8ed78dd6a1e3debd32e5b0ce212eea194ec601210ae29093cfb567eb4ca0f
26
27 diff --git a/net-p2p/qbittorrent/qbittorrent-4.2.5.ebuild b/net-p2p/qbittorrent/qbittorrent-4.2.5.ebuild
28 new file mode 100644
29 index 00000000000..3244261dacc
30 --- /dev/null
31 +++ b/net-p2p/qbittorrent/qbittorrent-4.2.5.ebuild
32 @@ -0,0 +1,69 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +inherit xdg-utils
39 +
40 +DESCRIPTION="BitTorrent client in C++ and Qt"
41 +HOMEPAGE="https://www.qbittorrent.org
42 + https://github.com/qbittorrent"
43 +
44 +if [[ ${PV} == *9999 ]]; then
45 + inherit git-r3
46 + EGIT_REPO_URI="https://github.com/${PN}/qBittorrent.git"
47 +else
48 + SRC_URI="https://github.com/qbittorrent/qBittorrent/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
49 + KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
50 + S="${WORKDIR}/qBittorrent-release-${PV}"
51 +fi
52 +
53 +LICENSE="GPL-2"
54 +SLOT="0"
55 +IUSE="+dbus debug webui +X"
56 +REQUIRED_USE="dbus? ( X )"
57 +
58 +RDEPEND="
59 + >=dev-libs/boost-1.62.0-r1:=
60 + dev-qt/qtcore:5
61 + dev-qt/qtnetwork:5[ssl]
62 + >=dev-qt/qtsingleapplication-2.6.1_p20130904-r1[qt5(+),X?]
63 + dev-qt/qtxml:5
64 + >=net-libs/libtorrent-rasterbar-1.2.0:0=
65 + sys-libs/zlib
66 + dbus? ( dev-qt/qtdbus:5 )
67 + X? (
68 + dev-libs/geoip
69 + dev-qt/qtgui:5
70 + dev-qt/qtsvg:5
71 + dev-qt/qtwidgets:5
72 + )"
73 +DEPEND="${RDEPEND}
74 + dev-qt/linguist-tools:5"
75 +
76 +BDEPEND="virtual/pkgconfig"
77 +
78 +DOCS=( AUTHORS Changelog CONTRIBUTING.md README.md TODO )
79 +
80 +src_configure() {
81 + econf \
82 + $(use_enable dbus qt-dbus) \
83 + $(use_enable debug) \
84 + $(use_enable webui) \
85 + $(use_enable X gui)
86 +}
87 +
88 +src_install() {
89 + emake STRIP="/bin/false" INSTALL_ROOT="${D}" install
90 + einstalldocs
91 +}
92 +
93 +pkg_postinst() {
94 + xdg_icon_cache_update
95 + xdg_desktop_database_update
96 +}
97 +
98 +pkg_postrm() {
99 + xdg_icon_cache_update
100 + xdg_desktop_database_update
101 +}