diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/log4cpp | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-libs/log4cpp')
| -rw-r--r-- | dev-libs/log4cpp/Manifest | 2 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/1.0-asneeded.patch | 122 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/1.0-doc_install_path.patch | 37 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/1.0-gcc43.patch | 33 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1-automake-1.13.patch | 12 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1-cmath-fix.patch | 10 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1-glibc-2.31.patch | 22 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1.3-fix-implicit-func-in-configure.patch | 20 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1.3-fix-version.patch | 9 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1.4-fix-implicit-func-in-configure.patch | 20 | ||||
| -rw-r--r-- | dev-libs/log4cpp/files/log4cpp-1.1.4-gcc43.patch | 11 | ||||
| -rw-r--r-- | dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild | 60 | ||||
| -rw-r--r-- | dev-libs/log4cpp/log4cpp-1.1.4.ebuild | 59 | ||||
| -rw-r--r-- | dev-libs/log4cpp/metadata.xml | 8 |
14 files changed, 0 insertions, 425 deletions
diff --git a/dev-libs/log4cpp/Manifest b/dev-libs/log4cpp/Manifest deleted file mode 100644 index 58f428e911e6..000000000000 --- a/dev-libs/log4cpp/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST log4cpp-1.1.3.tar.gz 595639 BLAKE2B fc7d643aa70d739e38ec5aba127b4e760a47a064f4032690586c4698ec83a2b7f219d8476650d3bfc5e25563de0852869429ec45171233c6bd5c08b69476b169 SHA512 88e5e10bce8d7d6421c3dcf14aa25385159c4ae52becdc1f3666ab86e1ad3f633786d82afe398c517d4faaa57b3e7b7c0b524361d81c6b9040dbded5cecc19de -DIST log4cpp-1.1.4.tar.gz 637440 BLAKE2B fe7d3cf5ea8ff8f9bdd86691195c02473bd21a90ebfe2d9cd7a32c2fa30e17b5a104c6181601cf2dce19b703496bb6038e7b0a782a24dfd55415ecd462e49841 SHA512 0cdbd46ccd048d70bea3c35d22080dc5dd21fc3b9c415fe464847e60775954f57e9c8344506f0f94f16e90e8bdaa9cc6d84d3aa65191501e52ee8dfc639f0398 diff --git a/dev-libs/log4cpp/files/1.0-asneeded.patch b/dev-libs/log4cpp/files/1.0-asneeded.patch deleted file mode 100644 index 7e88c545a374..000000000000 --- a/dev-libs/log4cpp/files/1.0-asneeded.patch +++ /dev/null @@ -1,122 +0,0 @@ -http://bugs.gentoo.org/247067 - ---- a/m4/ACX_PTHREAD.m4 -+++ b/m4/ACX_PTHREAD.m4 -@@ -266,6 +266,117 @@ - else - PTHREAD_CC=$CC - fi -+ -+ # The next part tries to detect GCC inconsistency with -shared on some -+ # architectures and systems. The problem is that in certain -+ # configurations, when -shared is specified, GCC "forgets" to -+ # internally use various flags which are still necessary. -+ -+ # -+ # Prepare the flags -+ # -+ save_LDFLAGS="$LDFLAGS" -+ save_CFLAGS="$CFLAGS" -+ save_LIBS="$LIBS" -+ save_CC="$CC" -+ -+ # Try with the flags determined by the earlier checks. -+ # -+ # -Wl,-z,defs forces link-time symbol resolution, so that the -+ # linking checks with -shared actually have any value -+ # -+ # FIXME: -fPIC is required for -shared on many architectures, -+ # so we specify it here, but the right way would probably be to -+ # properly detect whether it is actually required. -+ CFLAGS="-shared -fPIC -Wl,-z,defs $CFLAGS $PTHREAD_CFLAGS" -+ LIBS="$PTHREAD_LIBS $LIBS" -+ CC="$PTHREAD_CC" -+ -+ # In order not to create several levels of indentation, we test -+ # the value of "$done" until we find the cure or run out of ideas. -+ done="no" -+ -+ # First, make sure the CFLAGS we added are actually accepted by our -+ # compiler. If not (and OS X's ld, for instance, does not accept -z), -+ # then we can't do this test. -+ if test x"$done" = xno; then -+ AC_MSG_CHECKING([whether to check for GCC pthread/shared inconsistencies]) -+ AC_TRY_LINK(,, , [done=yes]) -+ -+ if test "x$done" = xyes ; then -+ AC_MSG_RESULT([no]) -+ else -+ AC_MSG_RESULT([yes]) -+ fi -+ fi -+ -+ if test x"$done" = xyes; then -+ done="no" -+ AC_MSG_CHECKING([whether -pthread is sufficient with -shared]) -+ AC_TRY_LINK([#include <pthread.h>], -+ [pthread_t th; pthread_join(th, 0); -+ pthread_attr_init(0); pthread_cleanup_push(0, 0); -+ pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], -+ [done=yes]) -+ -+ if test "x$done" = xyes; then -+ AC_MSG_RESULT([yes]) -+ else -+ AC_MSG_RESULT([no]) -+ fi -+ fi -+ -+ # -+ # Linux gcc on some architectures such as mips/mipsel forgets -+ # about -lpthread -+ # -+ if test x"$done" = xno; then -+ AC_MSG_CHECKING([whether -lpthread fixes that]) -+ LIBS="-lpthread $PTHREAD_LIBS $save_LIBS" -+ AC_TRY_LINK([#include <pthread.h>], -+ [pthread_t th; pthread_join(th, 0); -+ pthread_attr_init(0); pthread_cleanup_push(0, 0); -+ pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], -+ [done=yes]) -+ -+ if test "x$done" = xyes; then -+ AC_MSG_RESULT([yes]) -+ PTHREAD_LIBS="-lpthread $PTHREAD_LIBS" -+ else -+ AC_MSG_RESULT([no]) -+ fi -+ fi -+ # -+ # FreeBSD 4.10 gcc forgets to use -lc_r instead of -lc -+ # -+ if test x"$done" = xno; then -+ AC_MSG_CHECKING([whether -lc_r fixes that]) -+ LIBS="-lc_r $PTHREAD_LIBS $save_LIBS" -+ AC_TRY_LINK([#include <pthread.h>], -+ [pthread_t th; pthread_join(th, 0); -+ pthread_attr_init(0); pthread_cleanup_push(0, 0); -+ pthread_create(0,0,0,0); pthread_cleanup_pop(0); ], -+ [done=yes]) -+ -+ if test "x$done" = xyes; then -+ AC_MSG_RESULT([yes]) -+ PTHREAD_LIBS="-lc_r $PTHREAD_LIBS" -+ else -+ AC_MSG_RESULT([no]) -+ fi -+ fi -+ if test x"$done" = xno; then -+ # OK, we have run out of ideas -+ AC_MSG_WARN([Impossible to determine how to use pthreads with shared libraries]) -+ -+ # so it's not safe to assume that we may use pthreads -+ acx_pthread_ok=no -+ fi -+ -+ CFLAGS="$save_CFLAGS" -+ LIBS="$save_LIBS" -+ CC="$save_CC" -+ - else - PTHREAD_CC="$CC" - fi diff --git a/dev-libs/log4cpp/files/1.0-doc_install_path.patch b/dev-libs/log4cpp/files/1.0-doc_install_path.patch deleted file mode 100644 index abe88dfd123b..000000000000 --- a/dev-libs/log4cpp/files/1.0-doc_install_path.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/doc/Makefile.am -+++ b/doc/Makefile.am -@@ -1,7 +1,6 @@ - SUBDIRS = html - - man3dir = $(mandir)/man3 --docdir = $(prefix)/doc/@PACKAGE_TARNAME@-@PACKAGE_VERSION@ - - EXTRA_DIST = \ - mainPage.txt -@@ -22,18 +22,18 @@ - - - install-data-local: -- $(mkinstalldirs) $(man3dir) -+ $(mkinstalldirs) $(DESTDIR)/$(man3dir) - @for i in ./man/man3/log4cpp.3 ./man/man3/log4cpp_*.3; do \ - inst=`basename $$i | sed 's/_/::/g'`; \ - echo "$(INSTALL_DATA) $$i$(man3dir)/$$inst"; \ -- $(INSTALL_DATA) $$i $(man3dir)/$$inst; \ -+ $(INSTALL_DATA) $$i $(DESTDIR)/$(man3dir)/$$inst; \ - done -- $(mkinstalldirs) $(docdir) -- cp -r html/. $(docdir) -- $(RM) -r -f $(docdir)/CVS \ -- $(docdir)/Makefile.am \ -- $(docdir)/Makefile.in \ -- $(docdir)/Makefile -+ $(mkinstalldirs) $(DESTDIR)/$(docdir) -+ cp -r html/. $(DESTDIR)/$(docdir) -+ $(RM) -r -f $(DESTDIR)/$(docdir)/CVS \ -+ $(DESTDIR)/$(docdir)/Makefile.am \ -+ $(DESTDIR)/$(docdir)/Makefile.in \ -+ $(DESTDIR)/$(docdir)/Makefile - - uninstall-local: - $(RM) $(man3dir)/log4cpp.3 diff --git a/dev-libs/log4cpp/files/1.0-gcc43.patch b/dev-libs/log4cpp/files/1.0-gcc43.patch deleted file mode 100644 index 53441d4a6ac7..000000000000 --- a/dev-libs/log4cpp/files/1.0-gcc43.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- a/src/BasicLayout.cpp -+++ b/src/BasicLayout.cpp -@@ -17,6 +17,8 @@ - #include <sstream> - #endif - -+#include <memory> -+ - namespace log4cpp { - - BasicLayout::BasicLayout() { ---- a/src/PatternLayout.cpp -+++ b/src/PatternLayout.cpp -@@ -373,7 +373,7 @@ - literal = ""; - } - if ((minWidth != 0) || (maxWidth != 0)) { -- component = new FormatModifierComponent(component, std::abs(minWidth), maxWidth, minWidth < 0); -+ component = new FormatModifierComponent(component, std::abs((float)minWidth), maxWidth, minWidth < 0); - minWidth = maxWidth = 0; - } - _components.push_back(component); ---- a/tests/testDailyRollingFileAppender.cpp -+++ b/tests/testDailyRollingFileAppender.cpp -@@ -40,7 +40,7 @@ - #else - #define PATHDELIMITER "\\" - #endif --const char* const nesteddirname = "nesteddir"PATHDELIMITER; -+const char* const nesteddirname = "nesteddir" PATHDELIMITER; - - - class DailyRollingTest { diff --git a/dev-libs/log4cpp/files/log4cpp-1.1-automake-1.13.patch b/dev-libs/log4cpp/files/log4cpp-1.1-automake-1.13.patch deleted file mode 100644 index 3e7cb560a509..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1-automake-1.13.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- a/configure.in -+++ b/configure.in -@@ -17,7 +17,8 @@ - - #AC_CONFIG_SRCDIR(configure.in) - AC_CONFIG_AUX_DIR(config) --AM_CONFIG_HEADER(include/config.h) -+AC_CONFIG_HEADERS([include/config.h]) -+AC_CONFIG_MACRO_DIR([m4]) - - AM_INIT_AUTOMAKE - diff --git a/dev-libs/log4cpp/files/log4cpp-1.1-cmath-fix.patch b/dev-libs/log4cpp/files/log4cpp-1.1-cmath-fix.patch deleted file mode 100644 index 0180580717ab..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1-cmath-fix.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/PatternLayout.cpp -+++ b/src/PatternLayout.cpp -@@ -24,6 +24,7 @@ - #include <iomanip> - #include <ctime> - #include <cstdlib> -+#include <cmath> - #include "Localtime.hh" - - #ifdef LOG4CPP_HAVE_INT64_T diff --git a/dev-libs/log4cpp/files/log4cpp-1.1-glibc-2.31.patch b/dev-libs/log4cpp/files/log4cpp-1.1-glibc-2.31.patch deleted file mode 100644 index 5b927dfe20fa..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1-glibc-2.31.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git a/tests/testDailyRollingFileAppender.cpp b/tests/testDailyRollingFileAppender.cpp -index 9958f41..158c08b 100644 ---- a/tests/testDailyRollingFileAppender.cpp -+++ b/tests/testDailyRollingFileAppender.cpp -@@ -22,6 +22,7 @@ - - #ifndef WIN32 // only available on Win32 - #include <dirent.h> -+#include <sys/time.h> - #else - #include <direct.h> - #endif -@@ -232,7 +233,8 @@ namespace OnlyManualTesting { - - now += seconds; - -- if (stime(&now) == -1) { -+ struct timeval tv = {.tv_sec = now, .tv_usec = 0}; -+ if (settimeofday(&tv, NULL) < 0) { - std::cerr << "Can not set date. Need admin privileges?" << std::endl; - return -1; - } diff --git a/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-implicit-func-in-configure.patch b/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-implicit-func-in-configure.patch deleted file mode 100644 index 9e21817ab890..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-implicit-func-in-configure.patch +++ /dev/null @@ -1,20 +0,0 @@ -clang16 throws an error because of the implicit function declaration of exit(). -This leads to the wrong assumption that snprintf is not present on the system. - -Bug: https://bugs.gentoo.org/906535 -Upstream PR: https://sourceforge.net/p/log4cpp/codegit/merge-requests/10/ - -# Pascal Jäger <pascal.jaeger@leimstift.de> (2023-09-22) - ---- a/m4/AC_FUNC_SNPRINTF.m4 -+++ b/m4/AC_FUNC_SNPRINTF.m4 -@@ -12,7 +12,8 @@ dnl @author Caolan McNamara <caolan@skynet.ie> - dnl - AC_DEFUN([AC_FUNC_SNPRINTF], - [AC_CACHE_CHECK(for working snprintf, ac_cv_func_snprintf, --[AC_TRY_RUN([#include <stdio.h> -+[AC_TRY_RUN([#include <stdlib.h> -+#include <stdio.h> - int main () { int l = snprintf(NULL,0,"%d",100); exit (!((3 <= l) || (-1 == l))); } - ], ac_cv_func_snprintf=yes, ac_cv_func_snprintf=no, - ac_cv_func_snprintf=no)]) diff --git a/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-version.patch b/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-version.patch deleted file mode 100644 index 9676bacfc9dd..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1.3-fix-version.patch +++ /dev/null @@ -1,9 +0,0 @@ -https://src.fedoraproject.org/rpms/log4cpp/raw/rawhide/f/log4cpp-version-1.1.3.patch ---- a/configure.in -+++ b/configure.in -@@ -1,4 +1,4 @@ --AC_INIT(log4cpp, 1.1) -+AC_INIT(log4cpp, 1.1.3) - - # autoconf 2.50 or higher to rebuild aclocal.m4, because the - # AC_CREATE_PREFIX_CONFIG_H macro needs the AS_DIRNAME macro. diff --git a/dev-libs/log4cpp/files/log4cpp-1.1.4-fix-implicit-func-in-configure.patch b/dev-libs/log4cpp/files/log4cpp-1.1.4-fix-implicit-func-in-configure.patch deleted file mode 100644 index 78a5dd4c8e54..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1.4-fix-implicit-func-in-configure.patch +++ /dev/null @@ -1,20 +0,0 @@ -clang16 throws an error because of the implicit function declaration of exit(). -This leads to the wrong assumption that snprintf is not present on the system. - -Bug: https://bugs.gentoo.org/906535 -Upstream PR: https://sourceforge.net/p/log4cpp/codegit/merge-requests/10/ - -# Pascal Jäger <pascal.jaeger@leimstift.de> (2023-09-22) - ---- a/m4/AC_FUNC_SNPRINTF.m4 -+++ b/m4/AC_FUNC_SNPRINTF.m4 -@@ -12,7 +12,8 @@ dnl @author Caolan McNamara <caolan@skynet.ie> - dnl - AC_DEFUN([AC_FUNC_SNPRINTF], - [AC_CACHE_CHECK(for working snprintf, ac_cv_func_snprintf, --[AC_TRY_RUN([#include <stdio.h> -+[AC_TRY_RUN([#include <stdlib.h> -+#include <stdio.h> - int main () { int l = snprintf(NULL,0,"%d",100); return !((3 <= l) || (-1 == l)); } - ], ac_cv_func_snprintf=yes, ac_cv_func_snprintf=no, - ac_cv_func_snprintf=no)]) diff --git a/dev-libs/log4cpp/files/log4cpp-1.1.4-gcc43.patch b/dev-libs/log4cpp/files/log4cpp-1.1.4-gcc43.patch deleted file mode 100644 index 9a1fd466c274..000000000000 --- a/dev-libs/log4cpp/files/log4cpp-1.1.4-gcc43.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/PatternLayout.cpp -+++ b/src/PatternLayout.cpp -@@ -373,7 +373,7 @@ - literal = ""; - } - if ((minWidth != 0) || (maxWidth != 0)) { -- component = new FormatModifierComponent(component, std::abs(minWidth), maxWidth, minWidth < 0); -+ component = new FormatModifierComponent(component, std::abs((float)minWidth), maxWidth, minWidth < 0); - minWidth = maxWidth = 0; - } - _components.push_back(component); diff --git a/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild b/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild deleted file mode 100644 index 4f5b087204d6..000000000000 --- a/dev-libs/log4cpp/log4cpp-1.1.3-r3.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic - -DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations" -HOMEPAGE="https://log4cpp.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz" -S="${WORKDIR}/${PN}" - -LICENSE="LGPL-2.1" -SLOT="0/5" -KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -BDEPEND="doc? ( app-text/doxygen )" - -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 - "${FILESDIR}"/${PN}-1.1.3-fix-version.patch - "${FILESDIR}"/${PN}-1.1.3-fix-implicit-func-in-configure.patch -) - -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 -} - -src_configure() { - append-cxxflags -Wno-register # https://bugs.gentoo.org/895054 - # Bashisms call configure tests to malfunction / config.h to be misgenerated - # which then causes a build failure later on in the package (w/ GCC 12, - # anyway). - CONFIG_SHELL="${BROOT}"/bin/bash econf \ - --without-idsa \ - $(use_enable doc doxygen) -} - -src_install() { - default - - # Package installs .pc files - find "${ED}" -name '*.la' -delete || die -} diff --git a/dev-libs/log4cpp/log4cpp-1.1.4.ebuild b/dev-libs/log4cpp/log4cpp-1.1.4.ebuild deleted file mode 100644 index 02cc5ca94e05..000000000000 --- a/dev-libs/log4cpp/log4cpp-1.1.4.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic - -DESCRIPTION="C++ classes for flexible logging to files, syslog and other destinations" -HOMEPAGE="https://log4cpp.sourceforge.net/" -SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz" -S="${WORKDIR}/${PN}" - -LICENSE="LGPL-2.1" -SLOT="0/5" -KEYWORDS="amd64 ~arm ppc ~riscv ~s390 x86" -IUSE="doc test" -RESTRICT="!test? ( test )" - -BDEPEND="doc? ( app-text/doxygen )" - -PATCHES=( - "${FILESDIR}"/1.0-doc_install_path.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.3-fix-version.patch - "${FILESDIR}"/${PN}-1.1.4-fix-implicit-func-in-configure.patch - "${FILESDIR}"/${PN}-1.1.4-gcc43.patch -) - -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 -} - -src_configure() { - append-cxxflags -Wno-register # https://bugs.gentoo.org/895054 - # Bashisms call configure tests to malfunction / config.h to be misgenerated - # which then causes a build failure later on in the package (w/ GCC 12, - # anyway). - CONFIG_SHELL="${BROOT}"/bin/bash econf \ - --without-idsa \ - $(use_enable doc doxygen) -} - -src_install() { - default - - # Package installs .pc files - find "${ED}" -name '*.la' -delete || die -} diff --git a/dev-libs/log4cpp/metadata.xml b/dev-libs/log4cpp/metadata.xml deleted file mode 100644 index 9e51dcaca112..000000000000 --- a/dev-libs/log4cpp/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <upstream> - <remote-id type="sourceforge">log4cpp</remote-id> - </upstream> -</pkgmetadata> |
