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 5F7F2158094 for ; Mon, 29 Aug 2022 08:38:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7387DE08F3; Mon, 29 Aug 2022 08:38:37 +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 5A80BE08F3 for ; Mon, 29 Aug 2022 08:38:37 +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 7A0FE34102E for ; Mon, 29 Aug 2022 08:38:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 041E85D4 for ; Mon, 29 Aug 2022 08:38:33 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1661762182.e5e473018bc9f7581278a7bac10fd0cbd74c15ba.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/log4cpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/log4cpp/log4cpp-1.1.3.ebuild X-VCS-Directories: dev-libs/log4cpp/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: e5e473018bc9f7581278a7bac10fd0cbd74c15ba X-VCS-Branch: master Date: Mon, 29 Aug 2022 08:38:33 +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: 65238978-0d88-4e59-ac83-de4fe10e7aeb X-Archives-Hash: 9f24752578611b4ea8a0d0c153b72461 commit: e5e473018bc9f7581278a7bac10fd0cbd74c15ba Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Aug 29 08:02:00 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Aug 29 08:36:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5e47301 dev-libs/log4cpp: drop 1.1.3, EAPI-6-- Closes: https://bugs.gentoo.org/867115 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/log4cpp/log4cpp-1.1.3.ebuild | 61 ----------------------------------- 1 file changed, 61 deletions(-) diff --git a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3.ebuild deleted file mode 100644 index a8a7106a7709..000000000000 --- a/dev-libs/log4cpp/log4cpp-1.1.3.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools multilib-minimal - -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/5" -KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86" -IUSE="doc static-libs test" -RESTRICT="!test? ( test )" - -DEPEND="doc? ( app-doc/doxygen )" -RDEPEND="" - -PATCHES=( - "${FILESDIR}"/1.0-doc_install_path.patch - "${FILESDIR}"/1.0-gcc43.patch - "${FILESDIR}"/1.0-asneeded.patch - "${FILESDIR}"/${PN}-1.1-cmath-fix.patch - "${FILESDIR}"/${PN}-1.1-automake-1.13.patch - "${FILESDIR}"/${PN}-1.1-glibc-2.31.patch -) - -S="${WORKDIR}/${PN}" - -MULTILIB_CHOST_TOOLS=( - /usr/bin/log4cpp-config -) - -src_prepare() { - default - - mv configure.{in,ac} || die - - # Build tests conditionally - if ! use test; then - sed -i -e '/^SUBDIRS/s/ tests//' Makefile.am || die - fi - - eautoreconf -} - -multilib_src_configure() { - ECONF_SOURCE=${S} econf \ - --without-idsa \ - $(use_enable doc doxygen) \ - $(use_enable static-libs static) -} - -multilib_src_install_all() { - einstalldocs - - # package installs .pc files - find "${D}" -name '*.la' -delete || die -}