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 5627B138206 for ; Sun, 31 Dec 2017 12:44:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4943E08AC; Sun, 31 Dec 2017 12:44:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 B7A50E08AC for ; Sun, 31 Dec 2017 12:44:37 +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 EFA03335C32 for ; Sun, 31 Dec 2017 12:44:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 052E019B for ; Sun, 31 Dec 2017 12:44:34 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1514724243.b951be921567beb670d25da9f2918ffad52eca40.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/log4cpp/Manifest dev-libs/log4cpp/log4cpp-1.0.ebuild X-VCS-Directories: dev-libs/log4cpp/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: b951be921567beb670d25da9f2918ffad52eca40 X-VCS-Branch: master Date: Sun, 31 Dec 2017 12:44:34 +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-Archives-Salt: 5bc1f124-a2ee-47a2-b885-b664271072c6 X-Archives-Hash: 43150e638590775bc6b456dd05b8044a commit: b951be921567beb670d25da9f2918ffad52eca40 Author: David Seifert gentoo org> AuthorDate: Sun Dec 31 11:56:49 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Dec 31 12:44:03 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b951be92 dev-libs/log4cpp: Remove old Package-Manager: Portage-2.3.19, Repoman-2.3.6 dev-libs/log4cpp/Manifest | 1 - dev-libs/log4cpp/log4cpp-1.0.ebuild | 36 ------------------------------------ 2 files changed, 37 deletions(-) diff --git a/dev-libs/log4cpp/Manifest b/dev-libs/log4cpp/Manifest index 14eac74f1f4..5273c7eecda 100644 --- a/dev-libs/log4cpp/Manifest +++ b/dev-libs/log4cpp/Manifest @@ -1,2 +1 @@ -DIST log4cpp-1.0.tar.gz 495726 BLAKE2B 9b639eab2b1f9c56202901a19595f220fda5355630835d28012f45e9d570be7149b477a8e6512f6998de48aebe7374d6e12126982fa0b4fbbee7eae91cfdc3a9 SHA512 461ce64aa6343c90a909b4f877dd5cfae8aad12a94965c41ad619da137e76fdf48f045a2575273971115aa56ee9649f59453f7c3c265678bafca93289bd9a012 DIST log4cpp-1.1.tar.gz 547676 BLAKE2B 3fee8e575b404215d308a0d6c72feef612dcfb9c881c97500937d1a94d1c435108a24ae1ad20f19cedb1613735c22a37354226699fe6cafbf6d23dcd12668271 SHA512 e1a723641c75a0b7f9ad2338134b327cd9a0a1bd67ff76bca726389ad76e8ba0ee5a95abe6f29e05a77980255dc08b0aa5c906395b0a0ad094994c9e450e3ecb diff --git a/dev-libs/log4cpp/log4cpp-1.0.ebuild b/dev-libs/log4cpp/log4cpp-1.0.ebuild deleted file mode 100644 index b5571d38673..00000000000 --- a/dev-libs/log4cpp/log4cpp-1.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 -inherit autotools eutils - -DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations" -HOMEPAGE="http://log4cpp.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 ~arm ppc s390 x86" -IUSE="doc" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -src_prepare() { - epatch "${FILESDIR}"/${PV}-doc_install_path.patch \ - "${FILESDIR}"/${PV}-gcc43.patch \ - "${FILESDIR}"/${PV}-asneeded.patch - - AT_M4DIR="m4" eautoreconf -} - -src_configure() { - econf \ - --without-idsa \ - $(use_enable doc doxygen) -} - -src_install () { - emake DESTDIR="${D}" install || die - dodoc AUTHORS ChangeLog NEWS README THANKS TODO -}