diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-21 10:12:21 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-05-21 10:13:15 +0200 |
commit | 620e76feb65643d0035955bf95823b4b52175a87 (patch) | |
tree | 0cd09facaae2dad96c2436b184e55a58e932af05 /net-p2p | |
parent | sci-chemistry/mustang: Drop 3.2.1 (diff) | |
download | gentoo-620e76feb65643d0035955bf95823b4b52175a87.tar.gz gentoo-620e76feb65643d0035955bf95823b4b52175a87.tar.bz2 gentoo-620e76feb65643d0035955bf95823b4b52175a87.zip |
net-p2p/bitflu: Drop 1.50 and 1.51
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/bitflu/Manifest | 2 | ||||
-rw-r--r-- | net-p2p/bitflu/bitflu-1.50.ebuild | 74 | ||||
-rw-r--r-- | net-p2p/bitflu/bitflu-1.51.ebuild | 74 |
3 files changed, 0 insertions, 150 deletions
diff --git a/net-p2p/bitflu/Manifest b/net-p2p/bitflu/Manifest index 25cc721c2b35..deca48f64499 100644 --- a/net-p2p/bitflu/Manifest +++ b/net-p2p/bitflu/Manifest @@ -1,3 +1 @@ -DIST bitflu-1.50.tgz 161614 BLAKE2B c89c80e239d433b63d176b562919e89b58ae6e330ad23f4f1b7353660c0712fa66f54385e986e8844e4edc295ce51ebdf900082f2396d5e6c49ea41acac13b30 SHA512 58b79b5b0b2c83ec1526b6edbfdc36d46a932634c28a14ed0520f45a4aaac3a6f5d355bb83b996a4e97b6f985ee59fa2169eb2bff5fa4cf8a5b8403a68ad49bb -DIST bitflu-1.51.tgz 161963 BLAKE2B 13158c5f947a3845c9a3bcd34e61d44bcd3654df48ec531d4a165d673954d96253e40f0ab86b1e8792c447b90949ab7a4051a87a0879c03e7aab013f42ecce81 SHA512 60520a1017ca9acf38c74da6daf693258335dbb717dc647d2da0319b025ed216df33e79ec3934579b2b931a66cae2db31e6039e035ea8a529a0773df37d19afe DIST bitflu-1.52.tgz 162308 BLAKE2B 0f9e0c7121b9d36d8a071b6e6a88f1649202bddcd50935433f75bc077cd43df780d250405495b6da107575b56db81cb2f2a8acc13b674021e59e01596523d93f SHA512 fff6d253b57e43a2e5a917e508a864304c19d5c12e965abb74905bee1ecea10f79a3f3b7d7d0c8112bedabe2d42288171397bd03136a1f37c439039971659ebe diff --git a/net-p2p/bitflu/bitflu-1.50.ebuild b/net-p2p/bitflu/bitflu-1.50.ebuild deleted file mode 100644 index a5530f55b62b..000000000000 --- a/net-p2p/bitflu/bitflu-1.50.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit user - -DESCRIPTION="BitTorrent client, written in Perl and is designed to run as a daemon" -HOMEPAGE="http://bitflu.workaround.ch" -SRC_URI="http://bitflu.workaround.ch/bitflu/${P}.tgz" - -LICENSE="Artistic-2 GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -DEPEND=" - dev-perl/Danga-Socket - dev-perl/Sys-Syscall" -RDEPEND="${DEPEND}" - -pkg_setup() { - enewgroup bitflu - enewuser bitflu -1 -1 /var/lib/bitflu bitflu -} - -src_compile() { :; } - -PLUGINS="/usr/lib/bitflu" -HOMEDIR="/var/lib/bitflu" -CONFDIR="/etc/bitflu" -LOGDIR="/var/log/bitflu" - -src_install() { - # executable daemon - dosbin bitflu.pl - - # plugins - insinto "${PLUGINS}" - doins -r plugins - - # working dir - dodir "${HOMEDIR}" - fowners bitflu:bitflu "${HOMEDIR}" - fperms 775 "${HOMEDIR}" - - # config file - insinto "${CONFDIR}" - fowners bitflu:bitflu "${CONFDIR}" - fperms 775 "${CONFDIR}" - doins "${FILESDIR}"/bitflu.config - fowners bitflu:bitflu "${CONFDIR}"/bitflu.config - fperms 664 "${CONFDIR}"/bitflu.config - - # log file - dodir "${LOGDIR}" - fowners bitflu:bitflu "${LOGDIR}" - fperms 775 "${LOGDIR}" - - # docs - dodoc bitflu.config.example ChangeLog.txt CONTRIBUTING README_IPv6.txt \ - README.txt Documentation/bitflu-internals.txt - - newinitd "${FILESDIR}"/bitflu.initd bitflu -} - -pkg_postinst() { - ewarn "Note: At startup, or at the user's request, ${PN} (re)reads its" - ewarn "configuration file and overwrites it with its own sanitized" - ewarn "version. A backup is created in the configuration directory," - ewarn "/etc/${PN}, but that file will subseqently be overwritten if" - ewarn "a further backup is made. You may want to keep your own backup." - ewarn "A prestine example with comments may be found in /usr/share/doc/${P}." -} diff --git a/net-p2p/bitflu/bitflu-1.51.ebuild b/net-p2p/bitflu/bitflu-1.51.ebuild deleted file mode 100644 index 2fa8182e044b..000000000000 --- a/net-p2p/bitflu/bitflu-1.51.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit user - -DESCRIPTION="BitTorrent client, written in Perl and is designed to run as a daemon" -HOMEPAGE="http://bitflu.workaround.ch" -SRC_URI="http://bitflu.workaround.ch/bitflu/${P}.tgz" - -LICENSE="Artistic-2 GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND=" - dev-perl/Danga-Socket - dev-perl/Sys-Syscall" -RDEPEND="${DEPEND}" - -pkg_setup() { - enewgroup bitflu - enewuser bitflu -1 -1 /var/lib/bitflu bitflu -} - -src_compile() { :; } - -PLUGINS="/usr/lib/bitflu" -HOMEDIR="/var/lib/bitflu" -CONFDIR="/etc/bitflu" -LOGDIR="/var/log/bitflu" - -src_install() { - # executable daemon - dosbin bitflu.pl - - # plugins - insinto "${PLUGINS}" - doins -r plugins - - # working dir - dodir "${HOMEDIR}" - fowners bitflu:bitflu "${HOMEDIR}" - fperms 775 "${HOMEDIR}" - - # config file - insinto "${CONFDIR}" - fowners bitflu:bitflu "${CONFDIR}" - fperms 775 "${CONFDIR}" - doins "${FILESDIR}"/bitflu.config - fowners bitflu:bitflu "${CONFDIR}"/bitflu.config - fperms 664 "${CONFDIR}"/bitflu.config - - # log file - dodir "${LOGDIR}" - fowners bitflu:bitflu "${LOGDIR}" - fperms 775 "${LOGDIR}" - - # docs - dodoc bitflu.config.example ChangeLog.txt CONTRIBUTING README_IPv6.txt \ - README.txt Documentation/bitflu-internals.txt - - newinitd "${FILESDIR}"/bitflu.initd bitflu -} - -pkg_postinst() { - ewarn "Note: At startup, or at the user's request, ${PN} (re)reads its" - ewarn "configuration file and overwrites it with its own sanitized" - ewarn "version. A backup is created in the configuration directory," - ewarn "/etc/${PN}, but that file will subseqently be overwritten if" - ewarn "a further backup is made. You may want to keep your own backup." - ewarn "A prestine example with comments may be found in /usr/share/doc/${P}." -} |