net-libs/libs3: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Sun, 13 Oct 2019 12:35:30 +0000 (14:35 +0200)
committerMichał Górny <mgorny@gentoo.org>
Sun, 13 Oct 2019 12:36:45 +0000 (14:36 +0200)
Closes: https://bugs.gentoo.org/694256
Signed-off-by: Michał Górny <mgorny@gentoo.org>
net-libs/libs3/Manifest [deleted file]
net-libs/libs3/files/libs3-2.0-build.patch [deleted file]
net-libs/libs3/libs3-2.0-r1.ebuild [deleted file]
net-libs/libs3/metadata.xml [deleted file]
profiles/package.mask

diff --git a/net-libs/libs3/Manifest b/net-libs/libs3/Manifest
deleted file mode 100644 (file)
index 9d292fb..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST libs3-2.0.tar.gz 105783 BLAKE2B 0a570bcada0b841eac66df7c6b78e43b755314138d657fe393291e24632097e9e892e07b3b1986cac25ca51a8db740265af570d3baa8c5544f885fdf01b55989 SHA512 eabbc24f4beaf270e976bb0071fb372c213dfc00051fc3b33e5f64f9b2690765bd7b764162ecb0da09b173635b37b6e3e0a111523850c8aeea8d9b9be9b9c7c9
diff --git a/net-libs/libs3/files/libs3-2.0-build.patch b/net-libs/libs3/files/libs3-2.0-build.patch
deleted file mode 100644 (file)
index 804a0d2..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
- GNUmakefile | 23 ++++++++++++-----------
- 1 file changed, 12 insertions(+), 11 deletions(-)
-
-diff --git a/GNUmakefile b/GNUmakefile
-index 36398c1..dc24843 100644
---- a/GNUmakefile
-+++ b/GNUmakefile
-@@ -60,7 +60,7 @@ LIBS3_VER := $(LIBS3_VER_MAJOR).$(LIBS3_VER_MINOR)
- # any value, then verbosity is turned on".  So don't define VERBOSE if you
- # don't want verbosity in the build process.
- # -----------------------------------------------------------------------------
--
-+VERBOSE = true
- ifdef VERBOSE
-         VERBOSE = true
-         VERBOSE_ECHO = @ echo
-@@ -125,7 +125,7 @@ ifndef CFLAGS
-     endif
- endif
--CFLAGS += -Wall -Werror -Wshadow -Wextra -Iinc \
-+CFLAGS += -Wall -Wshadow -Wextra -Iinc \
-           $(CURL_CFLAGS) $(LIBXML2_CFLAGS) \
-           -DLIBS3_VER_MAJOR=\"$(LIBS3_VER_MAJOR)\" \
-           -DLIBS3_VER_MINOR=\"$(LIBS3_VER_MINOR)\" \
-@@ -134,7 +134,8 @@ CFLAGS += -Wall -Werror -Wshadow -Wextra -Iinc \
-           -D_ISOC99_SOURCE \
-           -D_POSIX_C_SOURCE=200112L
--LDFLAGS = $(CURL_LIBS) $(LIBXML2_LIBS) -lpthread
-+LDFLAGS += -lpthread
-+LIBS = $(CURL_LIBS) $(LIBXML2_LIBS)
- # --------------------------------------------------------------------------
-@@ -157,11 +158,11 @@ exported: libs3 s3 headers
- .PHONY: install
- install: exported
-       $(QUIET_ECHO) $(DESTDIR)/bin/s3: Installing executable
--      $(VERBOSE_SHOW) install -Dps -m u+rwx,go+rx $(BUILD)/bin/s3 \
-+      $(VERBOSE_SHOW) install -Dp -m u+rwx,go+rx $(BUILD)/bin/s3 \
-                     $(DESTDIR)/bin/s3
-       $(QUIET_ECHO) \
-         $(DESTDIR)/lib/libs3.so.$(LIBS3_VER): Installing shared library
--      $(VERBOSE_SHOW) install -Dps -m u+rw,go+r \
-+      $(VERBOSE_SHOW) install -Dp -m u+rw,go+r \
-                $(BUILD)/lib/libs3.so.$(LIBS3_VER_MAJOR) \
-                $(DESTDIR)/lib/libs3.so.$(LIBS3_VER)
-       $(QUIET_ECHO) \
-@@ -199,18 +200,18 @@ uninstall:
- $(BUILD)/obj/%.o: src/%.c
-       $(QUIET_ECHO) $@: Compiling object
-       @ mkdir -p $(dir $(BUILD)/dep/$<)
--      @ gcc $(CFLAGS) -M -MG -MQ $@ -DCOMPILINGDEPENDENCIES \
-+      $(CC) $(CFLAGS) -M -MG -MQ $@ -DCOMPILINGDEPENDENCIES \
-         -o $(BUILD)/dep/$(<:%.c=%.d) -c $<
-       @ mkdir -p $(dir $@)
--      $(VERBOSE_SHOW) gcc $(CFLAGS) -o $@ -c $<
-+      $(VERBOSE_SHOW) $(CC) $(CFLAGS) -o $@ -c $<
- $(BUILD)/obj/%.do: src/%.c
-       $(QUIET_ECHO) $@: Compiling dynamic object
-       @ mkdir -p $(dir $(BUILD)/dep/$<)
--      @ gcc $(CFLAGS) -M -MG -MQ $@ -DCOMPILINGDEPENDENCIES \
-+      $(CC) $(CFLAGS) -M -MG -MQ $@ -DCOMPILINGDEPENDENCIES \
-         -o $(BUILD)/dep/$(<:%.c=%.dd) -c $<
-       @ mkdir -p $(dir $@)
--      $(VERBOSE_SHOW) gcc $(CFLAGS) -fpic -fPIC -o $@ -c $< 
-+      $(VERBOSE_SHOW) $(CC) $(CFLAGS) -fpic -fPIC -o $@ -c $< 
- # --------------------------------------------------------------------------
-@@ -230,8 +231,8 @@ LIBS3_SOURCES := acl.c bucket.c error_parser.c general.c \
- $(LIBS3_SHARED): $(LIBS3_SOURCES:%.c=$(BUILD)/obj/%.do)
-       $(QUIET_ECHO) $@: Building shared library
-       @ mkdir -p $(dir $@)
--      $(VERBOSE_SHOW) gcc -shared -Wl,-soname,libs3.so.$(LIBS3_VER_MAJOR) \
--        -o $@ $^ $(LDFLAGS)
-+      $(VERBOSE_SHOW) $(CC) $(LDFLAGS) -shared -Wl,-soname,libs3.so.$(LIBS3_VER_MAJOR) \
-+        -o $@ $^ $(LIBS)
- $(LIBS3_STATIC): $(LIBS3_SOURCES:%.c=$(BUILD)/obj/%.o)
-       $(QUIET_ECHO) $@: Building static library
diff --git a/net-libs/libs3/libs3-2.0-r1.ebuild b/net-libs/libs3/libs3-2.0-r1.ebuild
deleted file mode 100644 (file)
index ad4b5df..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="A C Library API for Amazon S3"
-HOMEPAGE="http://libs3.ischo.com.s3.amazonaws.com/index.html"
-SRC_URI="http://libs3.ischo.com.s3.amazonaws.com/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="static-libs"
-
-RDEPEND="
-       net-misc/curl
-       dev-libs/libxml2"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-       epatch "${FILESDIR}"/${P}-build.patch
-       sed \
-               -e "s:/lib/:/$(get_libdir)/:g" \
-               -i *makefile* || die
-       tc-export CC
-}
-
-src_install() {
-       emake DESTDIR="${ED}/usr" install
-       use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*a
-}
diff --git a/net-libs/libs3/metadata.xml b/net-libs/libs3/metadata.xml
deleted file mode 100644 (file)
index 6f49eba..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
index fb12022569242a32246a4b92e257d666c2bb3719..d8d2c6558eaf6db282096f9e5e2fc3ba59804e3e 100644 (file)
@@ -575,7 +575,6 @@ net-libs/ccnet
 net-libs/ccrtp
 net-libs/dslib
 net-libs/libgmail
-net-libs/libs3
 
 # Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.