From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3F33013933E for ; Thu, 15 Jul 2021 19:20:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7BBE8E0C4C; Thu, 15 Jul 2021 19:20:20 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3FEC1E0C4C for ; Thu, 15 Jul 2021 19:20:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6F73333BF08 for ; Thu, 15 Jul 2021 19:20:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2C0207B3 for ; Thu, 15 Jul 2021 19:20:15 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1626376798.51d727267038bbeaf5ec6a0e91ca69357f539d31.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/automatic/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/automatic/automatic-0.8.3.ebuild X-VCS-Directories: net-p2p/automatic/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 51d727267038bbeaf5ec6a0e91ca69357f539d31 X-VCS-Branch: master Date: Thu, 15 Jul 2021 19:20:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bcac66d6-5073-4691-a7d3-f6cabaacb207 X-Archives-Hash: e22dc05e81f391b0d271fb19a1352525 commit: 51d727267038bbeaf5ec6a0e91ca69357f539d31 Author: Conrad Kostecki gentoo org> AuthorDate: Thu Jul 15 19:19:58 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Thu Jul 15 19:19:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d72726 net-p2p/automatic: drop old version Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Conrad Kostecki gentoo.org> net-p2p/automatic/automatic-0.8.3.ebuild | 64 -------------------------------- 1 file changed, 64 deletions(-) diff --git a/net-p2p/automatic/automatic-0.8.3.ebuild b/net-p2p/automatic/automatic-0.8.3.ebuild deleted file mode 100644 index 3eb191d1c6b..00000000000 --- a/net-p2p/automatic/automatic-0.8.3.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools user - -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" -S="${WORKDIR}/${P^}" - -RDEPEND="dev-libs/libxml2:2 - dev-libs/libpcre:3 - net-misc/curl" -DEPEND="${RDEPEND} - app-admin/logrotate" - -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" - - eautoreconf -} - -src_install() { - # Install and copy documentation - default - - # Install Gentoo init script and its config - newinitd "${FILESDIR}"/${PN}.initd ${PN} - newconfd "${FILESDIR}"/${PN}.confd ${PN} - - # Create automatic related directories - keepdir /var/lib/${PN}/ - keepdir /var/log/${PN}/ - - # Install logrotate for automatic - insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotate ${PN} -} - -pkg_postinst() { - # Add automatic group and user to system - enewgroup ${PN} - enewuser ${PN} -1 -1 /var/lib/${PN} ${PN} - - elog "" - elog "To run automatic you should move /etc/automatic.conf-sample to /etc/automatic.conf and config it." - elog "If things go wrong, increase verbose level in /etc/conf.d/automatic and check log file in /var/log/automatic/" - elog "" -}