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 830D5158086 for ; Sat, 1 Jan 2022 09:39:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78A912BC0F9; Sat, 1 Jan 2022 09:39:00 +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 45E802BC0F9 for ; Sat, 1 Jan 2022 09:39:00 +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 454E734313F for ; Sat, 1 Jan 2022 09:38:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 01E591C6 for ; Sat, 1 Jan 2022 09:38:56 +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: <1641029914.c94fd2639c28d829963b46dc993e230aeda2f2b0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xmlto/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/xmlto/xmlto-0.0.28-r3.ebuild X-VCS-Directories: app-text/xmlto/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c94fd2639c28d829963b46dc993e230aeda2f2b0 X-VCS-Branch: master Date: Sat, 1 Jan 2022 09:38:56 +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: 7c2d398e-8f8a-40a1-989e-85f31d3e40bc X-Archives-Hash: dd68b46f4c915fcb8678e4931ef74c3f commit: c94fd2639c28d829963b46dc993e230aeda2f2b0 Author: Sam James gentoo org> AuthorDate: Sat Jan 1 09:37:16 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 1 09:38:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c94fd263 app-text/xmlto: drop 0.0.28-r3 Signed-off-by: Sam James gentoo.org> app-text/xmlto/xmlto-0.0.28-r3.ebuild | 49 ----------------------------------- 1 file changed, 49 deletions(-) diff --git a/app-text/xmlto/xmlto-0.0.28-r3.ebuild b/app-text/xmlto/xmlto-0.0.28-r3.ebuild deleted file mode 100644 index 6b8268c5f689..000000000000 --- a/app-text/xmlto/xmlto-0.0.28-r3.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="script for converting XML and DocBook documents to a variety of output formats" -HOMEPAGE="https://pagure.io/xmlto" -SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="latex text" - -RDEPEND=">=app-text/docbook-xsl-stylesheets-1.62.0-r1 - app-text/docbook-xml-dtd:4.2 - app-shells/bash:0 - dev-libs/libxslt - sys-apps/sed - >=sys-apps/coreutils-6.10-r1 - || ( sys-apps/util-linux app-misc/getopt ) - sys-apps/which - text? ( || ( virtual/w3m www-client/lynx www-client/elinks ) ) - latex? ( dev-texlive/texlive-formatsextra )" -# We only depend on flex when we patch the imput lexer. -DEPEND="${RDEPEND}" - -DOCS="AUTHORS ChangeLog FAQ NEWS README THANKS" - -PATCHES=( - "${FILESDIR}"/${PN}-0.0.22-format_fo_passivetex_check.patch -) - -src_prepare() { - default - - # fix symbol clash on Solaris - if [[ ${CHOST} == *-solaris* ]] ; then - sed -i -e 's/\(attrib\|val\)/XMLTO\1/g' xmlif/xmlif.l || die - fi -} - -src_configure() { - # We don't want the script to detect /bin/sh if it is bash. - export ac_cv_path_BASH=${BASH} - has_version sys-apps/util-linux || export GETOPT=getopt-long - - econf -}