dev-libs/xmlrpc-c: drop old
authorSergey Popov <pinkbyte@gentoo.org>
Sun, 16 Feb 2020 08:52:33 +0000 (11:52 +0300)
committerSergey Popov <pinkbyte@gentoo.org>
Sun, 16 Feb 2020 08:52:33 +0000 (11:52 +0300)
Signed-off-by: Sergey Popov <pinkbyte@gentoo.org>
Package-Manager: Portage-2.3.84, Repoman-2.3.11

dev-libs/xmlrpc-c/Manifest
dev-libs/xmlrpc-c/xmlrpc-c-1.32.05-r1.ebuild [deleted file]

index 74f80e71471a5de7f24b1af8f74e29745ed999af..07df7a57ecc4033a2f154ea8d61edd1e7b1660a1 100644 (file)
@@ -1,2 +1 @@
-DIST xmlrpc-c-1.32.05.tar.gz 769040 BLAKE2B 6c7475114ed299ea924a4fc8da4c01a6153d03a5106c812c8e0c6cae56478b9ce4ec57a41c858bf807f7a86b2053492d9c7ea47e4083870e0606cdf320cac0cb SHA512 40813ad97010684e346ce4f286d9d7314547572f8681cf99d4c3c36cb7aa38b1cb72b84d63ab46e44282dc2bd95b85dbb022e3039700caa939469c6f7bf08d1f
 DIST xmlrpc-c-1.39.11.tgz 815463 BLAKE2B 7d169d51835e64e5ac822c48b1a6d7622293c1ce1e7379985ebf6c10f3ab331c55eeff9f655cf914c4cf7e3c107fbdbd741d664489f4ad7aadb5e576ceb383c2 SHA512 13e7ddf5264436671437c0bcd698380baca35c4469f592edf79cb4cafda254fe8207ecb992ee728ed20ec70457a20bd0cf8e180ce5cf0561a38a21f1e588f584
diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.32.05-r1.ebuild b/dev-libs/xmlrpc-c/xmlrpc-c-1.32.05-r1.ebuild
deleted file mode 100644 (file)
index 722a69a..0000000
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit eutils multilib
-
-# Maintainer notes: Take a look at http://xmlrpc-c.sourceforge.net/release.html
-# We use "advanced" branch, so for the current release revision take look here:
-# http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced/version.mk?view=log
-# e.g. for 1.27.05 corresponds following revision 2182 and thus following URL:
-# http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced.tar.gz?view=tar&pathrev=2182
-# Note: autogenerated tarball checksum changes every download, thus download it
-# manually and distribute on mirrors.
-# It's possible to build net-libs/libwww without ssl support, but taking into
-# account that libwww is not really well maintained and upstream is dead we
-# better use it only in case ssl is required.
-
-DESCRIPTION="A lightweigt RPC library based on XML and HTTP"
-HOMEPAGE="http://xmlrpc-c.sourceforge.net/"
-SRC_URI="https://dev.gentoo.org/~maksbotan/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="abyss +cgi +curl +cxx +libxml2 static-libs threads test tools"
-RESTRICT="!test? ( test )"
-
-REQUIRED_USE="test? ( static-libs abyss curl cxx ) tools? ( curl )"
-
-DEPEND="
-       sys-libs/ncurses
-       sys-libs/readline
-       curl? ( net-misc/curl )
-       libxml2? ( dev-libs/libxml2 )"
-
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/advanced"
-
-pkg_setup() {
-       use curl || ewarn "Curl support disabled: No client library will be built"
-}
-
-src_prepare() {
-       #Bug 214137: We need to filter this.
-       unset SRCDIR
-
-       # Bug 255440
-       export LC_ALL=C
-       export LANG=C
-
-       epatch "${FILESDIR}"/${PN}-1.32.05-Wimplicit.patch
-       sed -i \
-               -e "/CFLAGS_COMMON/s|-g -O3$||" \
-               -e "/CXXFLAGS_COMMON/s|-g$||" \
-               "${S}"/common.mk || die
-
-       export LADD=${LDFLAGS} # Respect the user's LDFLAGS.
-
-       use static-libs || { sed \
-               -e '/\(^TARGET_STATIC_LIBRARIES =\)/{s:\(^TARGET_STATIC_LIBRARIES =\).*:\1:;P;N;d;}' \
-                       -i common.mk || die; }
-}
-
-src_configure() {
-       #Disable libwww support due GBZ #409549 and #320253
-
-       econf --disable-wininet-client \
-               $(use_enable libxml2 libxml2-backend) \
-               --disable-libwww-client \
-               --without-libwww-ssl  \
-               $(use_enable threads abyss-threads) \
-               $(use_enable cgi cgi-server) \
-               $(use_enable abyss abyss-server) \
-               $(use_enable cxx cplusplus) \
-               $(use_enable curl curl-client)
-}
-
-src_compile() {
-       emake -r
-       use tools && emake -rC "${S}"/tools
-}
-
-src_install() {
-       default_src_install
-       use tools && emake DESTDIR="${D}" -rC "${S}"/tools install
-}
-
-src_test() {
-       unset LDFLAGS LADD SRCDIR
-       cd "${S}"/test/
-       einfo "Building general tests"
-       make || die "Make of general tests failed"
-       einfo "Running general tests"
-       ./test || die "General tests failed"
-       cd "${S}"/test/cpp/
-       einfo "Running C++ tests"
-       ./test || die "C++ tests failed"
-}