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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EF3CE1581EC for ; Fri, 22 Nov 2024 09:34:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13B21E077C; Fri, 22 Nov 2024 09:34:34 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC7FEE077C for ; Fri, 22 Nov 2024 09:34:33 +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 06F5D3406BF for ; Fri, 22 Nov 2024 09:34:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3964EAED for ; Fri, 22 Nov 2024 09:34:31 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1732268041.9d538382bb9f145f9c5bcc887db1b20915e4b4ac.arkamar@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-r6.ebuild X-VCS-Directories: net-misc/taylor-uucp/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 9d538382bb9f145f9c5bcc887db1b20915e4b4ac X-VCS-Branch: master Date: Fri, 22 Nov 2024 09:34:31 +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: d895760e-7d45-40c3-af30-e10b8a04c349 X-Archives-Hash: 34bd5adb2bf1007da7d187b1e0ba0d4c commit: 9d538382bb9f145f9c5bcc887db1b20915e4b4ac Author: Petr Vaněk gentoo org> AuthorDate: Fri Nov 22 07:52:38 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Fri Nov 22 09:34:01 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d538382 net-misc/taylor-uucp: drop 1.07-r6 Signed-off-by: Petr Vaněk gentoo.org> net-misc/taylor-uucp/taylor-uucp-1.07-r6.ebuild | 61 ------------------------- 1 file changed, 61 deletions(-) diff --git a/net-misc/taylor-uucp/taylor-uucp-1.07-r6.ebuild b/net-misc/taylor-uucp/taylor-uucp-1.07-r6.ebuild deleted file mode 100644 index c6519b27931d..000000000000 --- a/net-misc/taylor-uucp/taylor-uucp-1.07-r6.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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 -}