summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Vaněk <arkamar@gentoo.org>2024-11-19 15:34:30 +0100
committerPetr Vaněk <arkamar@gentoo.org>2024-11-19 15:48:15 +0100
commit3c87e55891320aece1499bed7d581c5ccd2b86f3 (patch)
treed6752912160e131b24bcfa7aed95d5866078600f /dev-libs
parentsys-devel/kgcc64: add 14.2.1_p20241116 (diff)
downloadgentoo-3c87e55891320aece1499bed7d581c5ccd2b86f3.tar.gz
gentoo-3c87e55891320aece1499bed7d581c5ccd2b86f3.tar.bz2
gentoo-3c87e55891320aece1499bed7d581c5ccd2b86f3.zip
dev-libs/log4cxx: drop 0.11.0 (drops ~amd64-linux & ~ppc-macos)
The ~amd64-linux and ~ppc-macos were not restored in 1.0.0 rekeyword. Signed-off-by: Petr Vaněk <arkamar@gentoo.org>
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/log4cxx/Manifest1
-rw-r--r--dev-libs/log4cxx/log4cxx-0.11.0.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-libs/log4cxx/Manifest b/dev-libs/log4cxx/Manifest
index 3edaca4bd2f9..b691a9cb0099 100644
--- a/dev-libs/log4cxx/Manifest
+++ b/dev-libs/log4cxx/Manifest
@@ -1,3 +1,2 @@
-DIST apache-log4cxx-0.11.0.tar.gz 1145075 BLAKE2B 786f3374923a5d47172bdaba7edb1725bedc766cb310b7b1237cfcc2fdd84cf2e390b47d55284ad0ce65631798e545523723090f4c0f7ab262f6cbe41a03e327 SHA512 f8aa37c9c094e7a4d6ca92dff13c032f69f1e078c51ea55e284fcb931c13256b08950af3ea6eaf7a12282240f6073e9acab19bfe217f88dbd62a5d2360f3fbdd
DIST apache-log4cxx-1.0.0.tar.gz 554344 BLAKE2B 2664cdcb84c298cd9be49e98ee767f16665614435ad44e79fa4d10219f42373ba8bb3f6cfe698bd65c0565ba120b6f6e1ab7a8de8ce9a1f43e977dde80596c3a SHA512 a6b928d7b5b4fb60a67504be082f436a6d1a750b752a89df51d0660670b6c008e7376cf56c1749fd5fc17777ae8a2d957f72879c9a89487ecb0f179999dc1283
DIST apache-log4cxx-1.2.0.tar.gz 652992 BLAKE2B b20211dfc0fc722e5b34adea9b4f6009f827f5fae467d8e0ec097c9b8915b8413494232704eb49e062b7c18f53fc9240b244c093a3d54c1964a7f7b4ba41fe00 SHA512 377234407c5f1128fbff6e5d2fcda3f53aae275962cd9207257674fa016095f4bc4ac0c318c1ba2a75f3252402cce0776c1211ffa917a60f8a89a12f01d45efb
diff --git a/dev-libs/log4cxx/log4cxx-0.11.0.ebuild b/dev-libs/log4cxx/log4cxx-0.11.0.ebuild
deleted file mode 100644
index 6e9b53967a0d..000000000000
--- a/dev-libs/log4cxx/log4cxx-0.11.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools
-
-MY_P=apache-${P}
-
-DESCRIPTION="Library of C++ classes for logging to files, syslog and other destinations"
-HOMEPAGE="https://logging.apache.org/log4cxx/"
-SRC_URI="mirror://apache/logging/${PN}/${PV}/${MY_P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos"
-IUSE="iodbc unicode odbc smtp"
-REQUIRED_USE="iodbc? ( !odbc )"
-# test suite fails
-RESTRICT="test"
-
-RDEPEND="
- dev-libs/apr:1=
- dev-libs/apr-util:1=
- odbc? (
- iodbc? ( >=dev-db/libiodbc-3.52.4 )
- !iodbc? ( dev-db/unixODBC )
- )
- smtp? ( net-libs/libesmtp )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- --disable-doxygen \
- --disable-html-docs \
- --with-apr-util="${ESYSROOT}"/usr \
- $(use_with smtp SMTP libesmtp) \
- $(use_with odbc ODBC $(usex iodbc iODBC unixODBC)) \
- --with-charset=$(usex unicode utf-8 auto)
-}
-
-src_install() {
- default
-
- docinto examples
- dodoc src/examples/cpp/*.cpp
- docompress -x /usr/share/doc/${PF}/examples
-
- # package provides .pc files
- find "${ED}" -name '*.la' -delete || die
-}