commit: f22f9673332b8c7e89965d7492ce71f3a21ac603 Author: John Helmert III <ajak <AT> gentoo <DOT> org> AuthorDate: Sat Mar 1 18:54:25 2025 +0000 Commit: John Helmert III <ajak <AT> gentoo <DOT> org> CommitDate: Sat Mar 1 18:54:25 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22f9673
dev-libs/log4cxx: drop 1.0.0 Bug: https://bugs.gentoo.org/906115 Signed-off-by: John Helmert III <ajak <AT> gentoo.org> dev-libs/log4cxx/Manifest | 1 - dev-libs/log4cxx/log4cxx-1.0.0.ebuild | 56 ----------------------------------- 2 files changed, 57 deletions(-) diff --git a/dev-libs/log4cxx/Manifest b/dev-libs/log4cxx/Manifest index b691a9cb0099..7b163ad6e581 100644 --- a/dev-libs/log4cxx/Manifest +++ b/dev-libs/log4cxx/Manifest @@ -1,2 +1 @@ -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-1.0.0.ebuild b/dev-libs/log4cxx/log4cxx-1.0.0.ebuild deleted file mode 100644 index 58b07746bc0c..000000000000 --- a/dev-libs/log4cxx/log4cxx-1.0.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -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" -S="${WORKDIR}/${MY_P}" - -LICENSE="Apache-2.0" -SLOT="0/15" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" -IUSE="odbc smtp test" -RESTRICT="!test? ( test )" - -RDEPEND=" - dev-libs/apr:1= - dev-libs/apr-util:1= - dev-libs/libfmt:= - odbc? ( dev-db/unixODBC ) - smtp? ( net-libs/libesmtp ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - app-arch/zip - test? ( - app-alternatives/gzip - app-arch/zip - ) -" - -src_prepare() { - # https://github.com/apache/logging-log4cxx/issues/189 - if ! use odbc ; then - sed -i -e 's:pkg_check_modules( odbc QUIET odbc ):pkg_check_modules( odbc QUIET odbcDoNotFindMe ):' src/main/include/CMakeLists.txt || die - fi - - if ! use smtp ; then - sed -i -e 's:CHECK_LIBRARY_EXISTS(esmtp smtp_create_session "" HAS_LIBESMTP):CHECK_LIBRARY_EXISTS(esmtpDoNotFindMe smtp_create_session "" HAS_LIBESMTP):' src/main/include/CMakeLists.txt || die - fi - - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_FMT_LAYOUT=ON - -DLOG4CXX_QT_SUPPORT=OFF - ) - - cmake_src_configure -}