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 4E47513835B for ; Sun, 20 Dec 2020 19:28:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 96FFF2BC00C; Sun, 20 Dec 2020 19:28:02 +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 7E6682BC00C for ; Sun, 20 Dec 2020 19:28:02 +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 8E91534135F for ; Sun, 20 Dec 2020 19:28:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33520CB for ; Sun, 20 Dec 2020 19:28:00 +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: <1608492474.ea6003b2dc66b041349e8cb42034ea6b9fa897af.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmrss/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmrss/libmrss-0.19.2.ebuild X-VCS-Directories: net-libs/libmrss/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ea6003b2dc66b041349e8cb42034ea6b9fa897af X-VCS-Branch: master Date: Sun, 20 Dec 2020 19:28:00 +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: 7ff2d588-9534-4aa8-b320-bf758c877ff5 X-Archives-Hash: eb8e7654f1770200fec063a805945a72 commit: ea6003b2dc66b041349e8cb42034ea6b9fa897af Author: Sam James gentoo org> AuthorDate: Sun Dec 20 19:24:49 2020 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 20 19:27:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6003b2 net-libs/libmrss: cleanup old Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> net-libs/libmrss/libmrss-0.19.2.ebuild | 52 ---------------------------------- 1 file changed, 52 deletions(-) diff --git a/net-libs/libmrss/libmrss-0.19.2.ebuild b/net-libs/libmrss/libmrss-0.19.2.ebuild deleted file mode 100644 index 4676489f477..00000000000 --- a/net-libs/libmrss/libmrss-0.19.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="A C-library for parsing and writing RSS 0.91/0.92/1.0/2.0 files or streams" -HOMEPAGE="https://www.autistici.org/bakunin/libmrss/doc/" -SRC_URI="https://www.autistici.org/bakunin/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ~mips ppc x86" -IUSE="doc examples" - -RDEPEND=" - net-libs/libnxml - net-misc/curl" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig - doc? ( app-doc/doxygen )" - -# TODO: php-bindings - -src_configure() { - econf --disable-static -} - -src_compile() { - default - - if use doc; then - ebegin "Creating documentation" - doxygen doxy.conf || die "generating docs failed" - # clean out doxygen gunk - rm doc/html/*.{md5,map} || die - HTML_DOCS=( doc/html/. ) - eend 0 - fi -} - -src_install() { - default - - if use examples; then - docinto test - dodoc test/*.c - fi - - # no static archives - find "${D}" -name '*.la' -delete || die -}