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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 641CB1382C5 for ; Tue, 16 Mar 2021 19:23:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58B87E0845; Tue, 16 Mar 2021 19:23:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3B5E1E0845 for ; Tue, 16 Mar 2021 19:23:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EA4E4340E9C for ; Tue, 16 Mar 2021 19:23:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54F835B4 for ; Tue, 16 Mar 2021 19:23:11 +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: <1615922544.99b53420d538c3b2bfaac4c95c358aa39b19a5df.sam@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-r1.ebuild X-VCS-Directories: app-text/sablotron/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 99b53420d538c3b2bfaac4c95c358aa39b19a5df X-VCS-Branch: master Date: Tue, 16 Mar 2021 19:23:11 +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: 47d375c9-1c07-40aa-bcb5-fb5df7805146 X-Archives-Hash: 2aa76e7de18164ea4e7f40fc0b5b1543 commit: 99b53420d538c3b2bfaac4c95c358aa39b19a5df Author: Sam James gentoo org> AuthorDate: Tue Mar 16 18:34:34 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 16 19:22:24 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b53420 app-text/sablotron: drop 1.0.3-r1 Signed-off-by: Sam James gentoo.org> app-text/sablotron/sablotron-1.0.3-r1.ebuild | 44 ---------------------------- 1 file changed, 44 deletions(-) diff --git a/app-text/sablotron/sablotron-1.0.3-r1.ebuild b/app-text/sablotron/sablotron-1.0.3-r1.ebuild deleted file mode 100644 index 2ab9d95c096..00000000000 --- a/app-text/sablotron/sablotron-1.0.3-r1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -MY_PN="Sablot" -MY_P="${MY_PN}-${PV}" -S=${WORKDIR}/${MY_P} - -DESCRIPTION="An XSLT Parser in C++" -HOMEPAGE="http://www.gingerall.org/sablotron.html" -SRC_URI="http://download-1.gingerall.cz/download/sablot/${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 ~ia64 ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="perl" - -RDEPEND=">=dev-libs/expat-1.95.6-r1" -DEPEND="${RDEPEND} - >=dev-perl/XML-Parser-2.3" - -PATCHES=( "${FILESDIR}/1.0.3-libsablot-expat.patch" ) - -src_prepare() { - default - sed -i configure.in -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' || die - eautoreconf - elibtoolize -} - -src_configure() { - econf \ - $(use_enable perl perlconnect) \ - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html -} - -src_install() { - emake DESTDIR="${D}" install - dodoc README README_JS RELEASE src/TODO -}