commit:     d49a6ecc0d533c17a1cdec69c2dead4f402e6e72
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 16 16:43:40 2018 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Mon Apr 16 17:01:06 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49a6ecc

media-libs/libsbsms: Remove 2.0.1

Deprecated EAPI 4 and overshadowed by 2.0.2.

Package-Manager: Portage-2.3.28, Repoman-2.3.9

 media-libs/libsbsms/Manifest                       |  1 -
 .../libsbsms/files/libsbsms-2.0.0-cflags.patch     | 24 ---------------
 .../libsbsms/files/libsbsms-2.0.1-includes.patch   | 11 -------
 media-libs/libsbsms/libsbsms-2.0.1.ebuild          | 36 ----------------------
 4 files changed, 72 deletions(-)

diff --git a/media-libs/libsbsms/Manifest b/media-libs/libsbsms/Manifest
index db998b50a6b..03f1d397375 100644
--- a/media-libs/libsbsms/Manifest
+++ b/media-libs/libsbsms/Manifest
@@ -1,2 +1 @@
-DIST libsbsms-2.0.1.tar.gz 741474 BLAKE2B 
cbc855a2e26ba2966bd4722463d4520fd0707a3f37be98f7c7a4460a543d237407f379fb315d1d5fcce7954271f74ec930fddc51fb92e631e30b4142bf2fbd6c
 SHA512 
62d5b3bc58069d697f0cf9505f2da22555a1fa8c966191cdd369161d56266069ae47a41100103439dc58b7dd01bbc3b11279400a2d0c161b2b4b9c854199ae45
 DIST libsbsms-2.0.2.tar.gz 450170 BLAKE2B 
a9e75f1f2a3da2a407d21bd267fe842d2c2367f85e4cb588902ae34e56b76297c2f60968113ae7a08a6652e57bc20376f1a60e97d6d59863f9f1ae30589e0723
 SHA512 
8aaab3e191f3e10e559683ab4ebdcb8d951cf0e776390234f25675a98640d60d20aed872061ba72fdc3bd7827b7d46bc27225fe947cdd7fa4312f75cbdd78e6c

diff --git a/media-libs/libsbsms/files/libsbsms-2.0.0-cflags.patch 
b/media-libs/libsbsms/files/libsbsms-2.0.0-cflags.patch
deleted file mode 100644
index 63de676beb6..00000000000
--- a/media-libs/libsbsms/files/libsbsms-2.0.0-cflags.patch
+++ /dev/null
@@ -1,24 +0,0 @@
---- libsbsms-2.0.0/configure.in
-+++ libsbsms-2.0.0/configure.in
-@@ -69,8 +69,6 @@
- 
- AC_ARG_ENABLE(universal_binary,[  --enable-universal_binary enable universal 
binary build: (default: 
disable)],[enable_universal_binary=$enableval],[enable_universal_binary=no])
- 
--SBSMS_CFLAGS="-ffast-math -funroll-loops"
--
- if test x$enable_static = xno; then
-   case "$target_os" in
-      darwin*)
-@@ -81,12 +79,6 @@
-    esac
- fi
- 
--if test x$enable_debug = xyes; then
--   SBSMS_CFLAGS="$SBSMS_CFLAGS -g -O3"
--else
--   SBSMS_CFLAGS="$SBSMS_CFLAGS -O3 -fomit-frame-pointer"
--fi
--
- if test x$enable_multithreaded = xyes; then
-     AC_DEFINE(MULTITHREADED,1,[Define to compile multithreaded sbsms])
- fi

diff --git a/media-libs/libsbsms/files/libsbsms-2.0.1-includes.patch 
b/media-libs/libsbsms/files/libsbsms-2.0.1-includes.patch
deleted file mode 100644
index 63937fa6157..00000000000
--- a/media-libs/libsbsms/files/libsbsms-2.0.1-includes.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -urN libsbsms-2.0.1.old/src/buffer.h libsbsms-2.0.1/src/buffer.h
---- libsbsms-2.0.1.old/src/buffer.h    2012-12-08 18:43:46.772667486 +0100
-+++ libsbsms-2.0.1/src/buffer.h        2012-12-08 18:44:04.677668212 +0100
-@@ -2,6 +2,7 @@
- #ifndef BUFFER_H
- #define BUFFER_H
- 
-+#include <stdlib.h>
- #include "sbsms.h"
- #include "grain.h"
- #include <list>

diff --git a/media-libs/libsbsms/libsbsms-2.0.1.ebuild 
b/media-libs/libsbsms/libsbsms-2.0.1.ebuild
deleted file mode 100644
index c4a25747efd..00000000000
--- a/media-libs/libsbsms/libsbsms-2.0.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils autotools
-
-DESCRIPTION="A library for high quality time and pitch scale modification"
-HOMEPAGE="http://sbsms.sourceforge.net/";
-SRC_URI="mirror://sourceforge/sbsms/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~mips ppc ppc64 x86"
-IUSE="cpu_flags_x86_sse static-libs"
-
-src_prepare() {
-       epatch \
-               "${FILESDIR}"/${PN}-2.0.0-cflags.patch \
-               "${FILESDIR}"/${PN}-2.0.1-includes.patch
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               --enable-shared \
-               $(use_enable static-libs static) \
-               $(use_enable cpu_flags_x86_sse sse) \
-               --disable-multithreaded
-               # threaded version causes segfaults
-}
-
-src_install() {
-       default
-       prune_libtool_files
-}

Reply via email to