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 DB366158046 for ; Wed, 9 Oct 2024 15:58:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13E18E29FB; Wed, 9 Oct 2024 15:58:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 ED510E29FB for ; Wed, 9 Oct 2024 15:58:43 +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 07A47335DCC for ; Wed, 9 Oct 2024 15:58:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9725D1293 for ; Wed, 9 Oct 2024 15:58:41 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1728489504.6a013e2c8db1221524882d96a80a34f97f55b707.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xmlstarlet/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xmlstarlet/xmlstarlet-1.6.1-r1.ebuild app-text/xmlstarlet/xmlstarlet-1.6.1.ebuild X-VCS-Directories: app-text/xmlstarlet/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 6a013e2c8db1221524882d96a80a34f97f55b707 X-VCS-Branch: master Date: Wed, 9 Oct 2024 15:58:41 +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: 6894fcf1-9328-496a-9378-024b1862954c X-Archives-Hash: 39835a64da10b865c0211c7c4c94d112 commit: 6a013e2c8db1221524882d96a80a34f97f55b707 Author: Sebastian Pipping gentoo org> AuthorDate: Wed Oct 9 15:58:24 2024 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Wed Oct 9 15:58:24 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a013e2c app-text/xmlstarlet: Drop old Bug: https://bugs.gentoo.org/941205 Signed-off-by: Sebastian Pipping gentoo.org> app-text/xmlstarlet/xmlstarlet-1.6.1-r1.ebuild | 59 -------------------------- app-text/xmlstarlet/xmlstarlet-1.6.1.ebuild | 55 ------------------------ 2 files changed, 114 deletions(-) diff --git a/app-text/xmlstarlet/xmlstarlet-1.6.1-r1.ebuild b/app-text/xmlstarlet/xmlstarlet-1.6.1-r1.ebuild deleted file mode 100644 index 02d1abdb08d0..000000000000 --- a/app-text/xmlstarlet/xmlstarlet-1.6.1-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="A set of tools to transform, query, validate, and edit XML documents" -HOMEPAGE="https://xmlstar.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/xmlstar/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" - -RDEPEND=" - dev-libs/libxml2 - dev-libs/libxslt - dev-libs/libgcrypt:0= - virtual/libiconv" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-1.6.1-clang16.patch -) - -src_prepare() { - default - - # We need to patch use of /usr/lib because it is a problem with - # linker lld with profile 17.1 on amd64 (see https://bugs.gentoo.org/729600). - # The grep sandwich acts as a regression test so that a future - # version bump cannot break patching without noticing. - if [[ $(get_libdir) != lib ]]; then - grep -wq _PREFIX/lib m4/xstar-check-libs.m4 || die - sed "s,_PREFIX/lib,_PREFIX/$(get_libdir)," -i m4/xstar-check-libs.m4 || die - grep -w _PREFIX/lib m4/xstar-check-libs.m4 && die - fi - - eautoreconf -} - -src_configure() { - append-cppflags $($(tc-getPKG_CONFIG) --cflags libxml-2.0) - - # NOTE: Fully built documentation is already shipped with the tarball: - # - doc/xmlstarlet-ug.{pdf,ps,html} - # - doc/xmlstarlet.txt - # - doc/xmlstarlet.1 - econf \ - --disable-build-docs \ - --disable-static-libs -} - -src_install() { - default - dosym xml /usr/bin/xmlstarlet -} diff --git a/app-text/xmlstarlet/xmlstarlet-1.6.1.ebuild b/app-text/xmlstarlet/xmlstarlet-1.6.1.ebuild deleted file mode 100644 index 9b034dcdacb7..000000000000 --- a/app-text/xmlstarlet/xmlstarlet-1.6.1.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="A set of tools to transform, query, validate, and edit XML documents" -HOMEPAGE="https://xmlstar.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/xmlstar/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" - -RDEPEND=" - dev-libs/libxml2 - dev-libs/libxslt - dev-libs/libgcrypt:0= - virtual/libiconv" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -src_prepare() { - default - - # We need to patch use of /usr/lib because it is a problem with - # linker lld with profile 17.1 on amd64 (see https://bugs.gentoo.org/729600). - # The grep sandwich acts as a regression test so that a future - # version bump cannot break patching without noticing. - if [[ $(get_libdir) != lib ]]; then - grep -wq _PREFIX/lib m4/xstar-check-libs.m4 || die - sed "s,_PREFIX/lib,_PREFIX/$(get_libdir)," -i m4/xstar-check-libs.m4 || die - grep -w _PREFIX/lib m4/xstar-check-libs.m4 && die - fi - - eautoreconf -} - -src_configure() { - append-cppflags $($(tc-getPKG_CONFIG) --cflags libxml-2.0) - - # NOTE: Fully built documentation is already shipped with the tarball: - # - doc/xmlstarlet-ug.{pdf,ps,html} - # - doc/xmlstarlet.txt - # - doc/xmlstarlet.1 - econf \ - --disable-build-docs \ - --disable-static-libs -} - -src_install() { - default - dosym xml /usr/bin/xmlstarlet -}