Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/airdcpp-webclient/
Date: Thu, 03 Nov 2022 01:55:06
Message-Id: 1667440438.50b9756b476fcd25fadec413b570a398e1f67c14.sbraz@gentoo
1 commit: 50b9756b476fcd25fadec413b570a398e1f67c14
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 3 01:52:54 2022 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 3 01:53:58 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50b9756b
7
8 net-p2p/airdcpp-webclient: drop 2.11.0-r1, 2.11.1
9
10 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
11
12 net-p2p/airdcpp-webclient/Manifest | 2 -
13 .../airdcpp-webclient-2.11.0-r1.ebuild | 61 ----------------------
14 .../airdcpp-webclient-2.11.1.ebuild | 61 ----------------------
15 3 files changed, 124 deletions(-)
16
17 diff --git a/net-p2p/airdcpp-webclient/Manifest b/net-p2p/airdcpp-webclient/Manifest
18 index 2ac81f5df4f8..83e81d7f5062 100644
19 --- a/net-p2p/airdcpp-webclient/Manifest
20 +++ b/net-p2p/airdcpp-webclient/Manifest
21 @@ -1,3 +1 @@
22 -DIST airdcpp-webclient-2.11.0.tar.gz 967326 BLAKE2B 47d257e47c332b4fd5351a680f0585360cb7329cd1bcf3c478d0a7847adbee68c024af7136eeb3b551188d3af7c4a6db2257eefaca7f82ee4670667a4a6e3e63 SHA512 926457e76b6bd29e0124c519b67d9e0f3cee48192c1b56e073b84d65f0171d53a7a4dbaf55e100f0685e01116935f4e4e2c193dab0ef0bed08d8101e12c33b82
23 -DIST airdcpp-webclient-2.11.1.tar.gz 967966 BLAKE2B d95760f3ae945255a396f20504995a2ea8843071ab19574a6faac919fb411a0a4e44ebcb005afce0056d960729d6b8bdd9df4ca457cea91931eedb1d329c7a12 SHA512 03f6ce82467f824d1b4e10075bf9e28b45282fb977b3feb67fc948044ed592672a83182d4716d0c10591c0b7568417997b335e25827d8e78fbd3735605cd052e
24 DIST airdcpp-webclient-2.11.2.tar.gz 978294 BLAKE2B cb15e02dc5381cc5f0ecb1b4d65cdd1c4a3d007f3ea1e78a159b8a62af03831318b8f6d8c0692c5a9145dda616627ea97f4bd3eeb1270a7452c7d78bf01d147f SHA512 281d4a9da88f23a4c02eef7f09c4fc2c91c44ac93d932ea4bfe097029b45dbd12a8d04d4ef8b493d261f5dade15b62ed4d564197fbfb2d9d98b9dfcc9a9e6379
25
26 diff --git a/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.0-r1.ebuild b/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.0-r1.ebuild
27 deleted file mode 100644
28 index 9771504e496c..000000000000
29 --- a/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.0-r1.ebuild
30 +++ /dev/null
31 @@ -1,61 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( pypy3 python3_{7..9} )
38 -
39 -inherit cmake python-any-r1 systemd
40 -
41 -DESCRIPTION="Cross-platform Direct Connect client"
42 -HOMEPAGE="https://airdcpp-web.github.io/"
43 -SRC_URI="https://github.com/airdcpp-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -KEYWORDS="amd64 x86"
46 -LICENSE="GPL-2+"
47 -SLOT="0"
48 -IUSE="debug nat-pmp +tbb +webui"
49 -
50 -RDEPEND="
51 - acct-user/airdcppd
52 - acct-group/airdcppd
53 - app-arch/bzip2
54 - dev-cpp/websocketpp
55 - dev-libs/boost:=
56 - dev-libs/leveldb:=
57 - dev-libs/libmaxminddb:=
58 - dev-libs/openssl:0=[-bindist(-)]
59 - net-libs/miniupnpc:=
60 - sys-libs/zlib
61 - virtual/libiconv
62 - nat-pmp? ( net-libs/libnatpmp:= )
63 - tbb? ( dev-cpp/tbb:= )
64 -"
65 -DEPEND="${RDEPEND}"
66 -BDEPEND="
67 - virtual/pkgconfig
68 - ${PYTHON_DEPS}
69 -"
70 -PDEPEND="webui? ( www-apps/airdcpp-webui )"
71 -
72 -src_configure() {
73 - local mycmakeargs=(
74 - -DENABLE_NATPMP=$(usex nat-pmp)
75 - -DENABLE_TBB=$(usex tbb)
76 - -DINSTALL_WEB_UI=OFF
77 - )
78 - CMAKE_BUILD_TYPE=$(usex debug Debug Gentoo) cmake_src_configure
79 -}
80 -
81 -src_install() {
82 - cmake_src_install
83 - newconfd "${FILESDIR}/airdcppd.confd" airdcppd
84 - newinitd "${FILESDIR}/airdcppd.initd" airdcppd
85 - systemd_dounit "${FILESDIR}/airdcppd.service"
86 -}
87 -
88 -pkg_postinst() {
89 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
90 - elog "Run 'airdcppd --configure' to set up ports and authentication"
91 - fi
92 -}
93
94 diff --git a/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.1.ebuild b/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.1.ebuild
95 deleted file mode 100644
96 index cc018d24b40d..000000000000
97 --- a/net-p2p/airdcpp-webclient/airdcpp-webclient-2.11.1.ebuild
98 +++ /dev/null
99 @@ -1,61 +0,0 @@
100 -# Copyright 1999-2021 Gentoo Authors
101 -# Distributed under the terms of the GNU General Public License v2
102 -
103 -EAPI=7
104 -
105 -PYTHON_COMPAT=( pypy3 python3_{7..10} )
106 -
107 -inherit cmake python-any-r1 systemd
108 -
109 -DESCRIPTION="Cross-platform Direct Connect client"
110 -HOMEPAGE="https://airdcpp-web.github.io/"
111 -SRC_URI="https://github.com/airdcpp-web/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
112 -
113 -KEYWORDS="~amd64 ~x86"
114 -LICENSE="GPL-2+"
115 -SLOT="0"
116 -IUSE="debug nat-pmp +tbb +webui"
117 -
118 -RDEPEND="
119 - acct-user/airdcppd
120 - acct-group/airdcppd
121 - app-arch/bzip2
122 - dev-cpp/websocketpp
123 - dev-libs/boost:=
124 - dev-libs/leveldb:=
125 - dev-libs/libmaxminddb:=
126 - dev-libs/openssl:0=[-bindist(-)]
127 - net-libs/miniupnpc:=
128 - sys-libs/zlib
129 - virtual/libiconv
130 - nat-pmp? ( net-libs/libnatpmp:= )
131 - tbb? ( dev-cpp/tbb:= )
132 -"
133 -DEPEND="${RDEPEND}"
134 -BDEPEND="
135 - virtual/pkgconfig
136 - ${PYTHON_DEPS}
137 -"
138 -PDEPEND="webui? ( www-apps/airdcpp-webui )"
139 -
140 -src_configure() {
141 - local mycmakeargs=(
142 - -DENABLE_NATPMP=$(usex nat-pmp)
143 - -DENABLE_TBB=$(usex tbb)
144 - -DINSTALL_WEB_UI=OFF
145 - )
146 - CMAKE_BUILD_TYPE=$(usex debug Debug Gentoo) cmake_src_configure
147 -}
148 -
149 -src_install() {
150 - cmake_src_install
151 - newconfd "${FILESDIR}/airdcppd.confd" airdcppd
152 - newinitd "${FILESDIR}/airdcppd.initd" airdcppd
153 - systemd_dounit "${FILESDIR}/airdcppd.service"
154 -}
155 -
156 -pkg_postinst() {
157 - if [[ -z "${REPLACING_VERSIONS}" ]]; then
158 - elog "Run 'airdcppd --configure' to set up ports and authentication"
159 - fi
160 -}