* [gentoo-commits] repo/gentoo:master commit in: net-misc/shout/files/, profiles/, net-misc/shout/
@ 2019-10-10 12:25 Michał Górny
0 siblings, 0 replies; only message in thread
From: Michał Górny @ 2019-10-10 12:25 UTC (permalink / raw
To: gentoo-commits
commit: c543d57129d64274d8ad945b51b96f3bb83675c2
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 10 12:22:45 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 10 12:22:45 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c543d571
net-misc/shout: Remove last-rited pkg
Closes: https://bugs.gentoo.org/693878
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-misc/shout/Manifest | 1 -
net-misc/shout/files/implicitdecls.patch | 12 -------
net-misc/shout/files/ldflags.patch | 21 ------------
net-misc/shout/files/shout-0.8.0-overflow.patch | 26 --------------
net-misc/shout/files/variables.diff | 45 -------------------------
net-misc/shout/metadata.xml | 8 -----
net-misc/shout/shout-0.8.0-r2.ebuild | 43 -----------------------
profiles/package.mask | 7 ----
8 files changed, 163 deletions(-)
diff --git a/net-misc/shout/Manifest b/net-misc/shout/Manifest
deleted file mode 100644
index d27fc377eb5..00000000000
--- a/net-misc/shout/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST shout-0.8.0.tar.gz 66394 BLAKE2B 60f132f94fc666205af4c3a217949f6032d93e2c666dd500b2bec95f3fcf3de917cb33377e812bfd0161d21efe82de11913e8b1c7a85f84662de51ba484e4b0d SHA512 95ee62071ce4dc7f624213d4eaf10d029b0a2e3ff030e7236656fc5387045be34a6f08ee778c4e8e77fed9b4ee8f60c191a369921b3079c3183cc650b77b3565
diff --git a/net-misc/shout/files/implicitdecls.patch b/net-misc/shout/files/implicitdecls.patch
deleted file mode 100644
index b7a6999f121..00000000000
--- a/net-misc/shout/files/implicitdecls.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Index: shout-0.8.0/sock.c
-===================================================================
---- shout-0.8.0.orig/sock.c
-+++ shout-0.8.0/sock.c
-@@ -25,6 +25,7 @@
- #include <arpa/inet.h>
- #include <sys/time.h>
- #include <unistd.h>
-+#include <string.h>
- #endif /* !win32 */
-
- #include "sock.h"
diff --git a/net-misc/shout/files/ldflags.patch b/net-misc/shout/files/ldflags.patch
deleted file mode 100644
index 3d049d98d31..00000000000
--- a/net-misc/shout/files/ldflags.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: shout-0.8.0/Makefile.in
-===================================================================
---- shout-0.8.0.orig/Makefile.in
-+++ shout-0.8.0/Makefile.in
-@@ -2,7 +2,6 @@
-
- CC = @CC@
- CFLAGS = @CFLAGS@
--LDFLAGS = @LIBS@
-
- SHELL=/bin/sh
-
-@@ -26,7 +25,7 @@ COMPILE_CFLAGS=$(CFLAGS) $(DEFS)
- all: shout
-
- shout: shout.c rand.o mpeg.o configfile.o sock.o util.o
-- $(CC) $(COMPILE_CFLAGS) -o shout shout.c rand.o mpeg.o configfile.o sock.o util.o $(LDFLAGS)
-+ $(CC) $(COMPILE_CFLAGS) $(LDFLAGS) -o shout shout.c rand.o mpeg.o configfile.o sock.o util.o @LIBS@
-
- configfile.o: configfile.c
- $(CC) $(COMPILE_CFLAGS) -c -o configfile.o configfile.c
diff --git a/net-misc/shout/files/shout-0.8.0-overflow.patch b/net-misc/shout/files/shout-0.8.0-overflow.patch
deleted file mode 100644
index a1292423ce4..00000000000
--- a/net-misc/shout/files/shout-0.8.0-overflow.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/shout.c b/shout.c
-index 0a1bded..00bae8d 100644
---- a/shout.c
-+++ b/shout.c
-@@ -441,7 +441,7 @@ post_config ()
- perror ("fopen");
- px_shutdown (44);
- }
-- my_snprintf (pid, BUFSIZE, "%d\n", (int) getpid ());
-+ my_snprintf (pid, 30, "%d\n", (int) getpid ());
- fputs (pid, fp);
- fclose (fp);
- }
-diff --git a/sock.c b/sock.c
-index 4a67c00..3b4e539 100644
---- a/sock.c
-+++ b/sock.c
-@@ -81,7 +81,7 @@ sock_connect (char *hostname, int port)
- sock_close (sockfd);
- return -1;
- }
-- memcpy (&server.sin_addr, &sin.sin_addr, sizeof (sin));
-+ memcpy (&server.sin_addr, &sin.sin_addr, sizeof (sin.sin_addr));
- } else {
- host = gethostbyname (hostname);
- if (host == NULL) {
diff --git a/net-misc/shout/files/variables.diff b/net-misc/shout/files/variables.diff
deleted file mode 100644
index afaefbcb2ca..00000000000
--- a/net-misc/shout/files/variables.diff
+++ /dev/null
@@ -1,45 +0,0 @@
-diff -urN shout-0.8.0/Makefile.in shout-0.8.0-modified/Makefile.in
---- shout-0.8.0/Makefile.in Thu Apr 20 02:31:50 2000
-+++ shout-0.8.0-modified/Makefile.in Tue Jul 23 19:14:36 2002
-@@ -9,11 +9,11 @@
- srcdir = @srcdir@
- VPATH = @srcdir@
-
--prefix = @prefix@/icecast
--exec_prefix = @prefix@
--bindir = @BINDIR@
--etcdir = @ETCDIR@
--logdir = @LOGDIR@
-+prefix = /usr
-+exec_prefix = /usr
-+bindir = /usr/bin
-+etcdir = /etc/shout
-+logdir = /var/log/shout
-
- DEFS = -I. @DEFS@
-
---- shout-0.8.0/configure 2000-04-20 09:41:45.000000000 +0200
-+++ shout-0.8.0/configure 2004-07-17 17:17:40.000000000 +0200
-@@ -532,20 +532,10 @@
- prefix=$prefix
- fi
-
--if test "x$enable_fsstd" = "xyes"; then
- echo "FSSTD ENABLED"
- BINDIR="/usr/bin"
-- ETCDIR="/etc/icecast"
-- LOGDIR="/var/log/icecast"
--else
-- echo "FSSTD DISABLED"
-- BINDIR="${prefix}/icecast/bin"
-- ETCDIR="${prefix}/icecast/etc"
-- LOGDIR="${prefix}/icecast/log"
--fi
--
--
--
-+ ETCDIR="/etc/shout"
-+ LOGDIR="/var/log/shout"
-
- # Extract the first word of "gcc", so it can be a program name with args.
- set dummy gcc; ac_word=$2
diff --git a/net-misc/shout/metadata.xml b/net-misc/shout/metadata.xml
deleted file mode 100644
index c870d0eef0a..00000000000
--- a/net-misc/shout/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
-</maintainer>
-</pkgmetadata>
diff --git a/net-misc/shout/shout-0.8.0-r2.ebuild b/net-misc/shout/shout-0.8.0-r2.ebuild
deleted file mode 100644
index 0a6887cedef..00000000000
--- a/net-misc/shout/shout-0.8.0-r2.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Shout is a program for creating mp3 stream for use with icecast or shoutcast"
-HOMEPAGE="http://www.icecast.org"
-SRC_URI="http://icecast.org/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha ~ppc sparc x86"
-IUSE=""
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/variables.diff \
- "${FILESDIR}"/ldflags.patch \
- "${FILESDIR}"/implicitdecls.patch \
- "${FILESDIR}"/${P}-overflow.patch
- rm -f sock.o
- sed -i -e "s/-ansi//" configure
-}
-
-src_compile() {
- tc-export CC
- econf --sysconfdir=/etc/shout \
- --localstatedir=/var
- emake || die "emake failed."
-}
-
-src_install () {
- emake DESTDIR="${D}" install || die "emake install failed."
- keepdir /var/log/shout
- fowners root:audio /var/log/shout
- fperms 775 /var/log/shout
- fperms 755 /etc/shout
- fperms 644 /etc/shout/shout.conf.dist
- dodoc BUGS CREDITS README.shout TODO
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index 578bd35d84e..8bc21a2cb08 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -897,13 +897,6 @@ net-p2p/myster
# Removal in 30 days. Bug #693880.
net-p2p/mktorrent-borg
-# Michał Górny <mgorny@gentoo.org> (2019-09-09)
-# Added in 2002 and not bumped since. EAPI 0. No amd64 keyword.
-# Sources are no longer to be found on the homepage, and upstream
-# explicitly points to third-party applications.
-# Removal in 30 days. Bug #693878.
-net-misc/shout
-
# Lars Wendler <polynomial-c@gentoo.org> (2019-09-04)
# Unofficial build. Superseded by official 2.49.5 release.
# Masked for removal.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2019-10-10 12:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-10 12:25 [gentoo-commits] repo/gentoo:master commit in: net-misc/shout/files/, profiles/, net-misc/shout/ Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox