diff options
author | Joonas Niilola <juippis@gentoo.org> | 2022-09-09 08:55:25 +0300 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2022-09-09 09:20:48 +0300 |
commit | 2f9a19fb628217924c487d6408e83203ba7406fa (patch) | |
tree | 12a779a8ae3823a892cb2f7f6d12df7deb017dc5 /net-p2p/automatic | |
parent | net-p2p/automatic: version bump to 0.9.0, musl+lto fixes (diff) | |
download | gentoo-2f9a19fb628217924c487d6408e83203ba7406fa.tar.gz gentoo-2f9a19fb628217924c487d6408e83203ba7406fa.tar.bz2 gentoo-2f9a19fb628217924c487d6408e83203ba7406fa.zip |
net-p2p/automatic: drop 0.8.3-r1
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-p2p/automatic')
-rw-r--r-- | net-p2p/automatic/Manifest | 1 | ||||
-rw-r--r-- | net-p2p/automatic/automatic-0.8.3-r1.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-p2p/automatic/Manifest b/net-p2p/automatic/Manifest index 8136198c4257..2a09629ebad4 100644 --- a/net-p2p/automatic/Manifest +++ b/net-p2p/automatic/Manifest @@ -1,2 +1 @@ -DIST automatic-0.8.3.tar.gz 102181 BLAKE2B cdba7706f16eb552d2da960ae03206acce45149d6e8d8f32654c05b6dc3293368afe3c44a7c0d254fd895c7f5fe30fe541139375793a143c4a3d605d27486824 SHA512 34061065d53ab362c9bfab9b66aebf7090b7079e5988b1984398410ab07ca2bdfdf3c65dd90bb076b6189120877784294484803d4ce5fa813d3bc13207aeebdd DIST automatic-0.9.0.gh.tar.gz 104087 BLAKE2B d904771dce8b1f4077908389141708dd8f5dd91cab38aaae5adee37f870d42bc5da15838a5a56fd3ff429e095bf30d9e6ecbf5907428e3fe22a089fe8fb7c400 SHA512 9f26688ce67e7ab258b43159352e9615bfe72a8bc9c7a0a4129d156213196002d0809e360b5df751be7fb6cbc1a4b466e6c58edad655abba46b70642496445dc diff --git a/net-p2p/automatic/automatic-0.8.3-r1.ebuild b/net-p2p/automatic/automatic-0.8.3-r1.ebuild deleted file mode 100644 index 1edc2fdd4e89..000000000000 --- a/net-p2p/automatic/automatic-0.8.3-r1.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools readme.gentoo-r1 systemd - -DESCRIPTION="RSS downloader for Tranmission" -HOMEPAGE="https://github.com/1100101/Automatic" -SRC_URI="https://github.com/1100101/Automatic/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="acct-user/automatic - dev-libs/libxml2:2 - dev-libs/libpcre:3 - net-misc/curl" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${P^}" - -DOC_CONTENTS="To run automatic you should move /etc/automatic.conf-sample -to /etc/automatic.conf and config it.\\n -If things go wrong, increase verbose level in /etc/conf.d/automatic -and check log file in /var/log/automatic/\\n" - -src_prepare() { - default - - # https://bugs.gentoo.org/426262 - mv configure.{in,ac} || die "rename failed" - - # Remove CFLAGS and CXXFLAGS defined by upstream - sed -i -e 's/CFLAGS="-Wdeclaration-after-statement -O3 -funroll-loops"/CFLAGS+=""/' \ - -e 's/CXXFLAGS="-O3 -funroll-loops"/CXXFLAGS+=""/' \ - configure.ac || die "sed for CXXFLAGS and CFLAGS failed" - - # tests fail with network-sandbox - sed -i -e '/check_PROGRAMS /s/http_test //' \ - -e '/check_PROGRAMS /s/prowl_test //' src/tests/Makefile.am \ - || die "sed failed for Makefile.am" - - eautoreconf -} - -src_install() { - default - - newinitd "${FILESDIR}"/automatic.initd automatic - newconfd "${FILESDIR}"/automatic.confd automatic - systemd_dounit "${FILESDIR}"/automatic.service - - insinto /etc/logrotate.d - newins "${FILESDIR}"/automatic.logrotate automatic - - readme.gentoo_create_doc - - diropts -o automatic -g automatic -m 0700 - keepdir /var/log/automatic/ -} - -pkg_postinst() { - readme.gentoo_print_elog -} |