commit:     3ac405f8fc315f66fdda5bafbaf182490ffa002a
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 13 12:35:30 2019 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 12:36:45 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ac405f8

net-libs/libs3: Remove last-rited pkg

Closes: https://bugs.gentoo.org/694256
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 net-libs/libs3/Manifest                    |  1 -
 net-libs/libs3/files/libs3-2.0-build.patch | 83 ------------------------------
 net-libs/libs3/libs3-2.0-r1.ebuild         | 33 ------------
 net-libs/libs3/metadata.xml                |  5 --
 profiles/package.mask                      |  1 -
 5 files changed, 123 deletions(-)

diff --git a/net-libs/libs3/Manifest b/net-libs/libs3/Manifest
deleted file mode 100644
index 9d292fb2386..00000000000
--- a/net-libs/libs3/Manifest
+++ /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
index 804a0d28332..00000000000
--- a/net-libs/libs3/files/libs3-2.0-build.patch
+++ /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
index ad4b5dfd916..00000000000
--- a/net-libs/libs3/libs3-2.0-r1.ebuild
+++ /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
index 6f49eba8f49..00000000000
--- a/net-libs/libs3/metadata.xml
+++ /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>

diff --git a/profiles/package.mask b/profiles/package.mask
index fb120225692..d8d2c6558ea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -575,7 +575,6 @@ net-libs/ccnet
 net-libs/ccrtp
 net-libs/dslib
 net-libs/libgmail
-net-libs/libs3
 
 # Lars Wendler <polynomia...@gentoo.org> (2019-09-04)
 # Unofficial build. Superseded by official 2.49.5 release.

Reply via email to