media-sound/lingot: remove unused patches
authorMichael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com>
Mon, 2 Jan 2017 16:20:46 +0000 (17:20 +0100)
committerDavid Seifert <soap@gentoo.org>
Wed, 4 Jan 2017 10:12:53 +0000 (12:12 +0200)
Closes: https://github.com/gentoo/gentoo/pull/3305

media-sound/lingot/files/lingot-0.7.6-clean-install.patch [deleted file]
media-sound/lingot/files/lingot-0.9.0-jack.patch [deleted file]

diff --git a/media-sound/lingot/files/lingot-0.7.6-clean-install.patch b/media-sound/lingot/files/lingot-0.7.6-clean-install.patch
deleted file mode 100644 (file)
index 688aea1..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur lingot-0.7.6.orig/Makefile.am lingot-0.7.6/Makefile.am
---- lingot-0.7.6.orig/Makefile.am      2007-12-23 21:45:19.000000000 +0200
-+++ lingot-0.7.6/Makefile.am   2008-05-08 13:00:18.000000000 +0300
-@@ -8,19 +8,12 @@
- lingotdocdir = ${docdir}
- lingotdoc_DATA = \
-       README\
--      COPYING\
-       AUTHORS\
-       ChangeLog\
--      INSTALL\
-       NEWS\
-       TODO\
-       THANKS\
--      MAINTAINERS\
--      src/lingot-background.xpm\
--      src/lingot-logo.xpm\
--      intltool-extract.in\
--      intltool-merge.in\
--      intltool-update.in
-+      MAINTAINERS
- 
- EXTRA_DIST = $(lingotdoc_DATA)
- 
diff --git a/media-sound/lingot/files/lingot-0.9.0-jack.patch b/media-sound/lingot/files/lingot-0.9.0-jack.patch
deleted file mode 100644 (file)
index c7885a4..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
---- a/src/lingot-audio-jack.c
-+++ b/src/lingot-audio-jack.c
-@@ -177,7 +177,7 @@
-       const char **ports = NULL;
-       const char* exception;
- 
--      unsigned long int flags = JackPortIsActive | JackPortIsOutput;
-+      unsigned long int flags = JackPortIsOutput;
- 
-       try {
-               if (client != NULL) {
-@@ -265,8 +265,9 @@
-                       throw(_("Cannot activate client"));
-               }
- 
--              ports = jack_get_ports(audio->jack_client, NULL, NULL, JackPortIsActive
--                              | JackPortIsOutput);
-+              ports
-+                              = jack_get_ports(audio->jack_client, NULL, NULL,
-+                                              JackPortIsOutput);
-               if (ports == NULL) {
-                       throw(_("No active capture ports"));
-               }
-@@ -321,7 +322,7 @@
- #     ifdef JACK
-       //jack_cycle_wait(audio->jack_client);
-       const char** ports = jack_get_ports(audio->jack_client, NULL, NULL,
--                      JackPortIsActive | JackPortIsOutput);
-+                      JackPortIsOutput);
- 
-       if (ports != NULL) {
-               int i, j = 0;