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 C4468158087 for ; Sat, 29 Jan 2022 10:09:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 291192BC00B; Sat, 29 Jan 2022 10:09:32 +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 CAD802BC00B for ; Sat, 29 Jan 2022 10:09:30 +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 5458C342DE8 for ; Sat, 29 Jan 2022 10:09:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E3136233 for ; Sat, 29 Jan 2022 10:09:27 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1643450945.b5a43addf34f0151132625abe5f33a3e7c6ae08b.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/opensp/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/opensp/opensp-1.5.2-r6.ebuild X-VCS-Directories: app-text/opensp/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: b5a43addf34f0151132625abe5f33a3e7c6ae08b X-VCS-Branch: master Date: Sat, 29 Jan 2022 10:09:27 +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: 06dc6406-6f0a-4169-8fa5-f2d6d0e80dbd X-Archives-Hash: e728652cbed76dbadbc82033a92a9e39 commit: b5a43addf34f0151132625abe5f33a3e7c6ae08b Author: Jakov Smolić gentoo org> AuthorDate: Sat Jan 29 10:09:02 2022 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sat Jan 29 10:09:05 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5a43add app-text/opensp: drop 1.5.2-r6 (EAPI 5--) Bug: https://bugs.gentoo.org/783651 Signed-off-by: Jakov Smolić gentoo.org> app-text/opensp/opensp-1.5.2-r6.ebuild | 81 ---------------------------------- 1 file changed, 81 deletions(-) diff --git a/app-text/opensp/opensp-1.5.2-r6.ebuild b/app-text/opensp/opensp-1.5.2-r6.ebuild deleted file mode 100644 index 433e25dafb4a..000000000000 --- a/app-text/opensp/opensp-1.5.2-r6.ebuild +++ /dev/null @@ -1,81 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit epatch flag-o-matic autotools - -MY_P=${P/opensp/OpenSP} - -DESCRIPTION="A free, object-oriented toolkit for SGML parsing and entity management" -HOMEPAGE="http://openjade.sourceforge.net/" -SRC_URI="mirror://sourceforge/openjade/${MY_P}.tar.gz" - -LICENSE="MIT" -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="doc nls static-libs test" -RESTRICT="!test? ( test )" - -RDEPEND=" - elibc_glibc? ( net-libs/libnsl:0= ) -" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) - doc? ( - app-text/xmlto - app-text/docbook-xml-dtd:4.1.2 - ) - test? ( - app-text/docbook-xml-dtd:4.5 - app-text/openjade - app-text/sgml-common - )" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - epatch "${FILESDIR}"/${P}-fix-segfault.patch - epatch "${FILESDIR}"/${P}-c11-using.patch - use prefix && eautoreconf -} - -src_configure() { - export CONFIG_SHELL=${BASH} # configure needs bash - - # The following filters are taken from openjade's ebuild. See bug #100828. - # Please note! Opts are disabled. If you know what you're doing - # feel free to remove this line. It may cause problems with - # docbook-sgml-utils among other things. - #ALLOWED_FLAGS="-O -O1 -O2 -pipe -g -march" - strip-flags - - econf \ - --enable-http \ - --enable-default-catalog="${EPREFIX}"/etc/sgml/catalog \ - --enable-default-search-path="${EPREFIX}"/usr/share/sgml \ - --datadir="${EPREFIX}"/usr/share/sgml/${P} \ - $(use_enable nls) \ - $(use_enable doc doc-build) \ - $(use_enable static-libs static) -} - -src_compile() { - emake pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} -} - -src_test() { - # Skipping tests known not to work - emake SHOWSTOPPERS= check - SANDBOX_PREDICT="${SANDBOX_PREDICT%:/}" -} - -src_install() { - emake \ - DESTDIR="${D}" \ - pkgdocdir="${EPREFIX}"/usr/share/doc/${PF} \ - install - - find "${ED}" -name '*.la' -delete || die - - dodoc AUTHORS BUGS ChangeLog NEWS README -}