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 57B06139981 for ; Wed, 13 Nov 2019 02:11:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30513E08BF; Wed, 13 Nov 2019 02:11:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 17C03E08BB for ; Wed, 13 Nov 2019 02:11:00 +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 3649234CCE3 for ; Wed, 13 Nov 2019 02:10:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7B768B3 for ; Wed, 13 Nov 2019 02:10:55 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573611027.f2b971d484fe4fed1adfe519470cc5b3f09a63c0.bman@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.ebuild X-VCS-Directories: dev-libs/iniparser/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: f2b971d484fe4fed1adfe519470cc5b3f09a63c0 X-VCS-Branch: master Date: Wed, 13 Nov 2019 02:10:55 +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: 43dc1d85-437c-4e5d-93b3-70cd5a5c7f8f X-Archives-Hash: b44c964dc1ed1c51ab0ade8abd29fc3b commit: f2b971d484fe4fed1adfe519470cc5b3f09a63c0 Author: Aaron Bauman gentoo org> AuthorDate: Wed Nov 13 01:55:35 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 13 02:10:27 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2b971d4 dev-libs/iniparser: drop old Signed-off-by: Aaron Bauman gentoo.org> dev-libs/iniparser/iniparser-3.1.ebuild | 46 --------------------------------- 1 file changed, 46 deletions(-) diff --git a/dev-libs/iniparser/iniparser-3.1.ebuild b/dev-libs/iniparser/iniparser-3.1.ebuild deleted file mode 100644 index a052691ec00..00000000000 --- a/dev-libs/iniparser/iniparser-3.1.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -AUTOTOOLS_AUTORECONF=1 -inherit autotools-utils - -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 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -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-utils_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 -}