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 B37D6138359 for ; Sat, 18 Jul 2020 00:01:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02983E0896; Sat, 18 Jul 2020 00:01:27 +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 DE3B2E0896 for ; Sat, 18 Jul 2020 00:01:26 +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 DEAE134F394 for ; Sat, 18 Jul 2020 00:01:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 168E02E3 for ; Sat, 18 Jul 2020 00:01:06 +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: <1595030392.c866047493e6786ef2f89b796580674b739ee777.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/iniparser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/iniparser/iniparser-3.1-r1.ebuild X-VCS-Directories: dev-libs/iniparser/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c866047493e6786ef2f89b796580674b739ee777 X-VCS-Branch: master Date: Sat, 18 Jul 2020 00:01:06 +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: a66bc53b-0927-4f46-98e8-1c7db3753017 X-Archives-Hash: 0dbc54f55700b74894a5f71b850efe90 commit: c866047493e6786ef2f89b796580674b739ee777 Author: Sam James gentoo org> AuthorDate: Fri Jul 17 21:24:28 2020 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jul 17 23:59:52 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8660474 dev-libs/iniparser: security cleanup Bug: https://bugs.gentoo.org/647588 Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Sam James gentoo.org> dev-libs/iniparser/iniparser-3.1-r1.ebuild | 46 ------------------------------ 1 file changed, 46 deletions(-) diff --git a/dev-libs/iniparser/iniparser-3.1-r1.ebuild b/dev-libs/iniparser/iniparser-3.1-r1.ebuild deleted file mode 100644 index 248075f03d2..00000000000 --- a/dev-libs/iniparser/iniparser-3.1-r1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils autotools-multilib - -DESCRIPTION="A free stand-alone ini file parsing library" -HOMEPAGE="http://ndevilla.free.fr/iniparser/" - -SRC_URI="http://ndevilla.free.fr/iniparser/${P}.tar.gz" -LICENSE="MIT" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 sparc x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc examples static-libs" - -DEPEND="doc? ( app-doc/doxygen ) - sys-devel/libtool" -RDEPEND="" - -# the tests are rather examples than tests, no point in running them -RESTRICT="test" - -S="${WORKDIR}/${PN}" - -DOCS=( AUTHORS README ) - -PATCHES=( - "${FILESDIR}/${PN}-3.0b-cpp.patch" - "${FILESDIR}/${PN}-3.0-autotools.patch" -) - -src_install() { - autotools-multilib_src_install - - if use doc; then - emake -C doc - dohtml -r html/* - fi - - if use examples ; then - insinto /usr/share/doc/${PF}/examples - doins test/*.{c,ini,py} - fi -}