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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE4AC15823F for ; Sun, 19 Nov 2023 10:27:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E6F32BC02F; Sun, 19 Nov 2023 10:27:16 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72F3F2BC02F for ; Sun, 19 Nov 2023 10:27:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B6608335CEE for ; Sun, 19 Nov 2023 10:27:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16FEA13A5 for ; Sun, 19 Nov 2023 10:27:14 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1700389514.e18d26bfcea05a4bb969f67edcd444020f8cb89c.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/amphetadesk/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-news/amphetadesk/amphetadesk-0.93.1-r2.ebuild X-VCS-Directories: net-news/amphetadesk/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: e18d26bfcea05a4bb969f67edcd444020f8cb89c X-VCS-Branch: master Date: Sun, 19 Nov 2023 10:27:14 +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: 2ed8ec0a-be63-4baf-8d03-db5d8909f910 X-Archives-Hash: 4e39b9a8789dbd2bb6907d88d96b1cd9 commit: e18d26bfcea05a4bb969f67edcd444020f8cb89c Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Sep 24 16:02:14 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Nov 19 10:25:14 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18d26bf net-news/amphetadesk: EAPI8 bump, use https Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ulrich Müller gentoo.org> net-news/amphetadesk/amphetadesk-0.93.1-r2.ebuild | 42 +++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/net-news/amphetadesk/amphetadesk-0.93.1-r2.ebuild b/net-news/amphetadesk/amphetadesk-0.93.1-r2.ebuild new file mode 100644 index 000000000000..b8c1b2dc5c80 --- /dev/null +++ b/net-news/amphetadesk/amphetadesk-0.93.1-r2.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Free syndicated news aggregator" +HOMEPAGE="https://www.disobey.com/amphetadesk/" +SRC_URI="mirror://sourceforge/sourceforge/amphetadesk/${PN}-src-v${PV}.tar.gz" +S="${WORKDIR}/${PN}-src-v${PV}" + +LICENSE="Artistic" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="dev-lang/perl + dev-perl/libwww-perl + dev-libs/expat + dev-perl/XML-Parser + virtual/perl-IO-Compress" + +src_install() { + dodir /usr/share/amphetadesk + cp "${S}"/AmphetaDesk.pl "${D}"/usr/share/amphetadesk/AmphetaDesk.pl || die + dodoc README.txt + cp -R "${S}"/data "${D}"/usr/share/amphetadesk || die + cp -R "${S}"/docs "${D}"/usr/share/amphetadesk || die + cp -R "${S}"/lib "${D}"/usr/share/amphetadesk || die + cp -R "${S}"/templates "${D}"/usr/share/amphetadesk || die + newinitd "${FILESDIR}"/amphetadesk.initd amphetadesk || die +} + +pkg_postinst() { + # fixes bug #25066 thanks to kloeri + /etc/init.d/depscan.sh + + einfo "AmphetaDesk should be started and stopped with the runscript located at " + einfo "'/etc/init.d/amphetadesk'. You can access AmphetaDesk after it has been" + einfo "started in your browser of choice on port 8888." + einfo "" + ewarn "If you start AmphetaDesk at boot with rc-update don't give it a browser" + ewarn "to start up when it loads (in the options page)" +}