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-p2p/bitflu/
Date: Thu, 21 May 2020 08:14:19
Message-Id: 1590048795.620e76feb65643d0035955bf95823b4b52175a87.asturm@gentoo
1 commit: 620e76feb65643d0035955bf95823b4b52175a87
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 21 08:12:21 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 08:13:15 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620e76fe
7
8 net-p2p/bitflu: Drop 1.50 and 1.51
9
10 Package-Manager: Portage-2.3.99, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 net-p2p/bitflu/Manifest | 2 --
14 net-p2p/bitflu/bitflu-1.50.ebuild | 74 ---------------------------------------
15 net-p2p/bitflu/bitflu-1.51.ebuild | 74 ---------------------------------------
16 3 files changed, 150 deletions(-)
17
18 diff --git a/net-p2p/bitflu/Manifest b/net-p2p/bitflu/Manifest
19 index 25cc721c2b3..deca48f6449 100644
20 --- a/net-p2p/bitflu/Manifest
21 +++ b/net-p2p/bitflu/Manifest
22 @@ -1,3 +1 @@
23 -DIST bitflu-1.50.tgz 161614 BLAKE2B c89c80e239d433b63d176b562919e89b58ae6e330ad23f4f1b7353660c0712fa66f54385e986e8844e4edc295ce51ebdf900082f2396d5e6c49ea41acac13b30 SHA512 58b79b5b0b2c83ec1526b6edbfdc36d46a932634c28a14ed0520f45a4aaac3a6f5d355bb83b996a4e97b6f985ee59fa2169eb2bff5fa4cf8a5b8403a68ad49bb
24 -DIST bitflu-1.51.tgz 161963 BLAKE2B 13158c5f947a3845c9a3bcd34e61d44bcd3654df48ec531d4a165d673954d96253e40f0ab86b1e8792c447b90949ab7a4051a87a0879c03e7aab013f42ecce81 SHA512 60520a1017ca9acf38c74da6daf693258335dbb717dc647d2da0319b025ed216df33e79ec3934579b2b931a66cae2db31e6039e035ea8a529a0773df37d19afe
25 DIST bitflu-1.52.tgz 162308 BLAKE2B 0f9e0c7121b9d36d8a071b6e6a88f1649202bddcd50935433f75bc077cd43df780d250405495b6da107575b56db81cb2f2a8acc13b674021e59e01596523d93f SHA512 fff6d253b57e43a2e5a917e508a864304c19d5c12e965abb74905bee1ecea10f79a3f3b7d7d0c8112bedabe2d42288171397bd03136a1f37c439039971659ebe
26
27 diff --git a/net-p2p/bitflu/bitflu-1.50.ebuild b/net-p2p/bitflu/bitflu-1.50.ebuild
28 deleted file mode 100644
29 index a5530f55b62..00000000000
30 --- a/net-p2p/bitflu/bitflu-1.50.ebuild
31 +++ /dev/null
32 @@ -1,74 +0,0 @@
33 -# Copyright 1999-2015 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=4
37 -
38 -inherit user
39 -
40 -DESCRIPTION="BitTorrent client, written in Perl and is designed to run as a daemon"
41 -HOMEPAGE="http://bitflu.workaround.ch"
42 -SRC_URI="http://bitflu.workaround.ch/bitflu/${P}.tgz"
43 -
44 -LICENSE="Artistic-2 GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE=""
48 -
49 -DEPEND="
50 - dev-perl/Danga-Socket
51 - dev-perl/Sys-Syscall"
52 -RDEPEND="${DEPEND}"
53 -
54 -pkg_setup() {
55 - enewgroup bitflu
56 - enewuser bitflu -1 -1 /var/lib/bitflu bitflu
57 -}
58 -
59 -src_compile() { :; }
60 -
61 -PLUGINS="/usr/lib/bitflu"
62 -HOMEDIR="/var/lib/bitflu"
63 -CONFDIR="/etc/bitflu"
64 -LOGDIR="/var/log/bitflu"
65 -
66 -src_install() {
67 - # executable daemon
68 - dosbin bitflu.pl
69 -
70 - # plugins
71 - insinto "${PLUGINS}"
72 - doins -r plugins
73 -
74 - # working dir
75 - dodir "${HOMEDIR}"
76 - fowners bitflu:bitflu "${HOMEDIR}"
77 - fperms 775 "${HOMEDIR}"
78 -
79 - # config file
80 - insinto "${CONFDIR}"
81 - fowners bitflu:bitflu "${CONFDIR}"
82 - fperms 775 "${CONFDIR}"
83 - doins "${FILESDIR}"/bitflu.config
84 - fowners bitflu:bitflu "${CONFDIR}"/bitflu.config
85 - fperms 664 "${CONFDIR}"/bitflu.config
86 -
87 - # log file
88 - dodir "${LOGDIR}"
89 - fowners bitflu:bitflu "${LOGDIR}"
90 - fperms 775 "${LOGDIR}"
91 -
92 - # docs
93 - dodoc bitflu.config.example ChangeLog.txt CONTRIBUTING README_IPv6.txt \
94 - README.txt Documentation/bitflu-internals.txt
95 -
96 - newinitd "${FILESDIR}"/bitflu.initd bitflu
97 -}
98 -
99 -pkg_postinst() {
100 - ewarn "Note: At startup, or at the user's request, ${PN} (re)reads its"
101 - ewarn "configuration file and overwrites it with its own sanitized"
102 - ewarn "version. A backup is created in the configuration directory,"
103 - ewarn "/etc/${PN}, but that file will subseqently be overwritten if"
104 - ewarn "a further backup is made. You may want to keep your own backup."
105 - ewarn "A prestine example with comments may be found in /usr/share/doc/${P}."
106 -}
107
108 diff --git a/net-p2p/bitflu/bitflu-1.51.ebuild b/net-p2p/bitflu/bitflu-1.51.ebuild
109 deleted file mode 100644
110 index 2fa8182e044..00000000000
111 --- a/net-p2p/bitflu/bitflu-1.51.ebuild
112 +++ /dev/null
113 @@ -1,74 +0,0 @@
114 -# Copyright 1999-2015 Gentoo Foundation
115 -# Distributed under the terms of the GNU General Public License v2
116 -
117 -EAPI=5
118 -
119 -inherit user
120 -
121 -DESCRIPTION="BitTorrent client, written in Perl and is designed to run as a daemon"
122 -HOMEPAGE="http://bitflu.workaround.ch"
123 -SRC_URI="http://bitflu.workaround.ch/bitflu/${P}.tgz"
124 -
125 -LICENSE="Artistic-2 GPL-2"
126 -SLOT="0"
127 -KEYWORDS="~amd64 ~x86"
128 -IUSE=""
129 -
130 -DEPEND="
131 - dev-perl/Danga-Socket
132 - dev-perl/Sys-Syscall"
133 -RDEPEND="${DEPEND}"
134 -
135 -pkg_setup() {
136 - enewgroup bitflu
137 - enewuser bitflu -1 -1 /var/lib/bitflu bitflu
138 -}
139 -
140 -src_compile() { :; }
141 -
142 -PLUGINS="/usr/lib/bitflu"
143 -HOMEDIR="/var/lib/bitflu"
144 -CONFDIR="/etc/bitflu"
145 -LOGDIR="/var/log/bitflu"
146 -
147 -src_install() {
148 - # executable daemon
149 - dosbin bitflu.pl
150 -
151 - # plugins
152 - insinto "${PLUGINS}"
153 - doins -r plugins
154 -
155 - # working dir
156 - dodir "${HOMEDIR}"
157 - fowners bitflu:bitflu "${HOMEDIR}"
158 - fperms 775 "${HOMEDIR}"
159 -
160 - # config file
161 - insinto "${CONFDIR}"
162 - fowners bitflu:bitflu "${CONFDIR}"
163 - fperms 775 "${CONFDIR}"
164 - doins "${FILESDIR}"/bitflu.config
165 - fowners bitflu:bitflu "${CONFDIR}"/bitflu.config
166 - fperms 664 "${CONFDIR}"/bitflu.config
167 -
168 - # log file
169 - dodir "${LOGDIR}"
170 - fowners bitflu:bitflu "${LOGDIR}"
171 - fperms 775 "${LOGDIR}"
172 -
173 - # docs
174 - dodoc bitflu.config.example ChangeLog.txt CONTRIBUTING README_IPv6.txt \
175 - README.txt Documentation/bitflu-internals.txt
176 -
177 - newinitd "${FILESDIR}"/bitflu.initd bitflu
178 -}
179 -
180 -pkg_postinst() {
181 - ewarn "Note: At startup, or at the user's request, ${PN} (re)reads its"
182 - ewarn "configuration file and overwrites it with its own sanitized"
183 - ewarn "version. A backup is created in the configuration directory,"
184 - ewarn "/etc/${PN}, but that file will subseqently be overwritten if"
185 - ewarn "a further backup is made. You may want to keep your own backup."
186 - ewarn "A prestine example with comments may be found in /usr/share/doc/${P}."
187 -}