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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5589F15807B for ; Mon, 21 Oct 2024 02:55:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 68EBBE08C0; Mon, 21 Oct 2024 02:55:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 4CEF7E08C0 for ; Mon, 21 Oct 2024 02:55:29 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 655D6342FEB for ; Mon, 21 Oct 2024 02:55:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 739B01FBE for ; Mon, 21 Oct 2024 02:55:25 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1729479284.71b684d021866e16353b54eff2478365a057c9a7.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/taylor-uucp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/taylor-uucp/taylor-uucp-1.07-r7.ebuild X-VCS-Directories: net-misc/taylor-uucp/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 71b684d021866e16353b54eff2478365a057c9a7 X-VCS-Branch: master Date: Mon, 21 Oct 2024 02:55:25 +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: 08443c10-829e-4042-a578-1ebd29c5792f X-Archives-Hash: de3600b4061c89b2596b3c217f8f0434 commit: 71b684d021866e16353b54eff2478365a057c9a7 Author: Eli Schwartz gentoo org> AuthorDate: Mon Oct 21 02:50:49 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Mon Oct 21 02:54:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71b684d0 net-misc/taylor-uucp: update EAPI 7 -> 8 Signed-off-by: Eli Schwartz gentoo.org> net-misc/taylor-uucp/taylor-uucp-1.07-r7.ebuild | 61 +++++++++++++++++++++++++ 1 file changed, 61 insertions(+) diff --git a/net-misc/taylor-uucp/taylor-uucp-1.07-r7.ebuild b/net-misc/taylor-uucp/taylor-uucp-1.07-r7.ebuild new file mode 100644 index 000000000000..9b97bf770435 --- /dev/null +++ b/net-misc/taylor-uucp/taylor-uucp-1.07-r7.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools flag-o-matic + +DESCRIPTION="Taylor UUCP" +HOMEPAGE="https://www.airs.com/ian/uucp.html" +SRC_URI="mirror://gnu/uucp/uucp-${PV}.tar.gz" +S="${WORKDIR}/uucp-${PV}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~sparc ~x86" + +PATCHES=( + "${FILESDIR}"/${P}-gentoo.patch + "${FILESDIR}"/${P}-fprintf.patch + "${FILESDIR}"/${P}-remove-extern.patch +) + +src_prepare() { + default + + mv configure.{in,ac} || die + sed -i 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die + eautoreconf +} + +src_configure() { + append-cppflags -D_GNU_SOURCE -fno-strict-aliasing + econf --with-newconfigdir=/etc/uucp +} + +src_install() { + dodir /usr/share/man/man{1,8} + dodir /usr/share/info + dodir /usr/bin /usr/sbin + diropts -o uucp -g uucp -m 0750 + keepdir /var/log/uucp /var/spool/uucp + diropts -o uucp -g uucp -m 0775 + keepdir /var/spool/uucppublic + + emake \ + "prefix=${ED}/usr" \ + "sbindir=${ED}/usr/sbin" \ + "bindir=${ED}/usr/bin" \ + "man1dir=${ED}/usr/share/man/man1" \ + "man8dir=${ED}/usr/share/man/man8" \ + "newconfigdir=${ED}/etc/uucp" \ + "infodir=${ED}/usr/share/info" \ + install install-info + + sed -i -e 's:/usr/spool:/var/spool:g' sample/config + + insinto etc/uucp + doins sample/* + + dodoc ChangeLog NEWS README TODO +}