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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 999D3158016 for ; Thu, 28 Dec 2023 03:54:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D36AB2BC01A; Thu, 28 Dec 2023 03:53:59 +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 B57012BC01A for ; Thu, 28 Dec 2023 03:53:59 +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 ABF4B335DCD for ; Thu, 28 Dec 2023 03:53:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 27B6714B4 for ; Thu, 28 Dec 2023 03:53:57 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1703735091.642bcc94e0e2e9b99598aca423486753deefdf77.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/autoconf-wrapper/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild X-VCS-Directories: sys-devel/autoconf-wrapper/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 642bcc94e0e2e9b99598aca423486753deefdf77 X-VCS-Branch: master Date: Thu, 28 Dec 2023 03:53:57 +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: 84683a3f-9da1-4864-a7ea-ba5d8032b42d X-Archives-Hash: fdf14be07c4d41441d4cb27f4dd715d8 commit: 642bcc94e0e2e9b99598aca423486753deefdf77 Author: Sam James gentoo org> AuthorDate: Thu Dec 28 03:44:51 2023 +0000 Commit: Sam James gentoo org> CommitDate: Thu Dec 28 03:44:51 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=642bcc94 sys-devel/autoconf-wrapper: drop 20221207 Signed-off-by: Sam James gentoo.org> .../autoconf-wrapper-20221207.ebuild | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild b/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild deleted file mode 100644 index b5b2431a9ce7..000000000000 --- a/sys-devel/autoconf-wrapper/autoconf-wrapper-20221207.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -MY_P="autotools-wrappers-at-${PV}" - -DESCRIPTION="Wrapper for autoconf to manage multiple autoconf versions" -HOMEPAGE="https://gitweb.gentoo.org/proj/autotools-wrappers.git" - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI=" - https://anongit.gentoo.org/git/proj/autotools-wrappers.git - https://github.com/gentoo/autotools-wrappers - " - inherit git-r3 -else - SRC_URI="https://gitweb.gentoo.org/proj/autotools-wrappers.git/snapshot/${MY_P}.tar.gz" - S="${WORKDIR}/${MY_P}" - - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris" -fi - -LICENSE="GPL-2" -SLOT="0" - -src_install() { - exeinto /usr/$(get_libdir)/misc - newexe ac-wrapper.sh ac-wrapper.sh - - dodir /usr/bin - local x= - for x in auto{conf,header,m4te,reconf,scan,update} ifnames ; do - dosym ../$(get_libdir)/misc/ac-wrapper.sh /usr/bin/${x} - done -}