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 76E111581F3 for ; Mon, 2 Dec 2024 13:27:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB595E08A8; Mon, 2 Dec 2024 13:27:10 +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 96493E08A8 for ; Mon, 2 Dec 2024 13:27:09 +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 A97C4341E1C for ; Mon, 2 Dec 2024 13:27:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3E70C13F5 for ; Mon, 2 Dec 2024 13:27:07 +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: <1733145846.33c809f85fe46cb23e9ee0149d82fd11002c66f6.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/sablotron/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/sablotron/sablotron-1.0.3-r2.ebuild X-VCS-Directories: app-text/sablotron/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: 33c809f85fe46cb23e9ee0149d82fd11002c66f6 X-VCS-Branch: master Date: Mon, 2 Dec 2024 13:27:07 +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: 212f3d75-3004-48b6-90b7-235765c97c08 X-Archives-Hash: d004053f2eaafb6f97104b2029c9c592 commit: 33c809f85fe46cb23e9ee0149d82fd11002c66f6 Author: Petr Vaněk gentoo org> AuthorDate: Mon Dec 2 13:24:06 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Mon Dec 2 13:24:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c809f8 app-text/sablotron: drop 1.0.3-r2 Signed-off-by: Petr Vaněk gentoo.org> app-text/sablotron/sablotron-1.0.3-r2.ebuild | 56 ---------------------------- 1 file changed, 56 deletions(-) diff --git a/app-text/sablotron/sablotron-1.0.3-r2.ebuild b/app-text/sablotron/sablotron-1.0.3-r2.ebuild deleted file mode 100644 index 979b01202d6c..000000000000 --- a/app-text/sablotron/sablotron-1.0.3-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -MY_PN="Sablot" -MY_P="${MY_PN}-${PV}" -S=${WORKDIR}/${MY_P} - -DESCRIPTION="An XSLT Parser in C++" -HOMEPAGE="https://sourceforge.net/projects/sablotron/" -SRC_URI="https://downloads.sourceforge.net/sablotron/${MY_P}.tar.gz" - -# Sablotron can optionally be built under GPL, using MPL for now -LICENSE="MPL-1.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="perl" - -RDEPEND=" - >=dev-libs/expat-1.95.6-r1 -" -DEPEND=" - ${RDEPEND} -" -BDEPEND=" - >=dev-perl/XML-Parser-2.3 -" -DOCS=( - README README_JS RELEASE src/TODO -) -PATCHES=( - "${FILESDIR}"/${PN}-1.0.3-libsablot-expat.patch - "${FILESDIR}"/${PN}-1.0.3-cxx11.patch -) - -src_prepare() { - default - sed -i configure.in -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf \ - --disable-static \ - $(use_enable perl perlconnect) \ - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html -} - -src_install() { - default - find "${ED}" -name '*.la' -delete || die -}