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 3FA07158094 for ; Fri, 1 Jul 2022 10:03:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75E44E0E34; Fri, 1 Jul 2022 10:03:49 +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 D314FE0E32 for ; Fri, 1 Jul 2022 10:03:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F0ED53417AE for ; Fri, 1 Jul 2022 10:03:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46394527 for ; Fri, 1 Jul 2022 10:03:45 +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: <1656669779.7d558fdf0cb1b6b938a005281aee823a52b61f4e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/byaccj/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/byaccj/byaccj-1.15-r2.ebuild X-VCS-Directories: dev-java/byaccj/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7d558fdf0cb1b6b938a005281aee823a52b61f4e X-VCS-Branch: master Date: Fri, 1 Jul 2022 10:03:45 +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: 18b3109f-9f95-4da9-a08e-17934b85b579 X-Archives-Hash: 12dd26e4c75930ef7ead96dfd45dc5c0 commit: 7d558fdf0cb1b6b938a005281aee823a52b61f4e Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Fri Jul 1 09:32:40 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 1 10:02:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d558fdf dev-java/byaccj: drop 1.15-r2 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/26183 Signed-off-by: Sam James gentoo.org> dev-java/byaccj/byaccj-1.15-r2.ebuild | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/dev-java/byaccj/byaccj-1.15-r2.ebuild b/dev-java/byaccj/byaccj-1.15-r2.ebuild deleted file mode 100644 index ed88c9ebb229..000000000000 --- a/dev-java/byaccj/byaccj-1.15-r2.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -DESCRIPTION="A java extension of BSD YACC-compatible parser generator" -HOMEPAGE="http://byaccj.sourceforge.net/" -MY_P="${PN}${PV}_src" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" - -LICENSE="public-domain" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ppc64 x86 ~ppc-macos ~x64-macos" -IUSE="" - -S="${WORKDIR}/${PN}${PV}" - -src_compile() { - cp "${FILESDIR}/Makefile" src/Makefile || die - emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}" -C src linux -} - -src_install() { - newbin src/yacc.linux "${PN}" - dodoc docs/ACKNOWLEDGEMEN -}