summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Medinas <metalgod@gentoo.org>2006-11-09 03:28:35 +0000
committerLuis Medinas <metalgod@gentoo.org>2006-11-09 03:28:35 +0000
commit030f33fe437bd5878284c264ca2b2e66cf0a3bde (patch)
tree06d36a685e634f60756585cd363537f97946a628 /media-sound/banshee/files
parentstablize qca-tls-1.0-r3 on mips (diff)
downloadgentoo-2-030f33fe437bd5878284c264ca2b2e66cf0a3bde.tar.gz
gentoo-2-030f33fe437bd5878284c264ca2b2e66cf0a3bde.tar.bz2
gentoo-2-030f33fe437bd5878284c264ca2b2e66cf0a3bde.zip
remove old
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'media-sound/banshee/files')
-rw-r--r--media-sound/banshee/files/banshee-0.10.10-disableplugin.patch23
-rw-r--r--media-sound/banshee/files/banshee-0.10.10-mp4-mimetype.patch13
-rw-r--r--media-sound/banshee/files/banshee-0.10.9-event-reduction.patch34
-rw-r--r--media-sound/banshee/files/banshee-0.10.9-statusbar-duration-count.patch24
-rw-r--r--media-sound/banshee/files/digest-banshee-0.10.10-r43
-rw-r--r--media-sound/banshee/files/digest-banshee-0.11.03
-rw-r--r--media-sound/banshee/files/digest-banshee-0.11.13
7 files changed, 0 insertions, 103 deletions
diff --git a/media-sound/banshee/files/banshee-0.10.10-disableplugin.patch b/media-sound/banshee/files/banshee-0.10.10-disableplugin.patch
deleted file mode 100644
index edba277a7a04..000000000000
--- a/media-sound/banshee/files/banshee-0.10.10-disableplugin.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-d426 2
---- src/Banshee.Plugins/Makefile.am.orig 2006-05-28 03:54:57.637343928 +0100
-+++ src/Banshee.Plugins/Makefile.am 2006-05-28 03:54:05.052338064 +0100
-@@ -1,7 +1,6 @@
- SUBDIRS = \
- Audioscrobbler \
- Daap \
-- FileSystemMonitor \
- MetadataSearch \
- MMKeys \
- NotificationAreaIcon
-
---- configure.ac.orig 2006-05-26 18:42:19.041013272 +0100
-+++ configure.ac 2006-05-26 18:42:55.849417544 +0100
-@@ -423,8 +423,6 @@
- src/Banshee.Plugins/Makefile
- src/Banshee.Plugins/Audioscrobbler/Makefile
- src/Banshee.Plugins/Audioscrobbler/Audioscrobbler.dll.config
--src/Banshee.Plugins/FileSystemMonitor/Makefile
--src/Banshee.Plugins/FileSystemMonitor/FileSystemMonitor.dll.config
- src/Banshee.Plugins/MetadataSearch/Makefile
- src/Banshee.Plugins/MetadataSearch/MetadataSearch.dll.config
- src/Banshee.Plugins/MMKeys/Makefile
diff --git a/media-sound/banshee/files/banshee-0.10.10-mp4-mimetype.patch b/media-sound/banshee/files/banshee-0.10.10-mp4-mimetype.patch
deleted file mode 100644
index efe2823e09ac..000000000000
--- a/media-sound/banshee/files/banshee-0.10.10-mp4-mimetype.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: banshee-0.10.10/entagged-sharp/Mp4/Mp4FileReader.cs
-===================================================================
---- banshee-0.10.10.orig/entagged-sharp/Mp4/Mp4FileReader.cs
-+++ banshee-0.10.10/entagged-sharp/Mp4/Mp4FileReader.cs
-@@ -34,6 +34,8 @@ using Entagged.Audioformats.Mp4.Util;
- namespace Entagged.Audioformats.Mp4
- {
- [SupportedMimeType ("audio/x-m4a")]
-+ [SupportedMimeType ("audio/mp4")]
-+ [SupportedMimeType ("audio/m4a")]
- [SupportedMimeType ("entagged/m4a")]
- [SupportedMimeType ("entagged/m4p")]
- public class Mp4FileReader : AudioFileReader
diff --git a/media-sound/banshee/files/banshee-0.10.9-event-reduction.patch b/media-sound/banshee/files/banshee-0.10.9-event-reduction.patch
deleted file mode 100644
index 95161ec5e53a..000000000000
--- a/media-sound/banshee/files/banshee-0.10.9-event-reduction.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Reduce the number of events emitted by the playlistmodel
-
- PlaylistModel.cs | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-
-Index: src/PlaylistModel.cs
-===================================================================
-RCS file: /cvs/gnome/banshee/src/PlaylistModel.cs,v
-retrieving revision 1.37
-diff -u -p -r1.37 PlaylistModel.cs
---- src/PlaylistModel.cs 10 Mar 2006 01:28:51 -0000 1.37
-+++ src/PlaylistModel.cs 25 Mar 2006 21:28:40 -0000
-@@ -89,7 +89,8 @@ namespace Banshee
- trackInfoQueueLocked = true;
-
- foreach(TrackInfo ti in trackInfoQueue)
-- AddTrack(ti);
-+ AddTrack(ti, false);
-+ RaiseUpdated(this, new EventArgs());
-
- trackInfoQueue.Clear();
- trackInfoQueueLocked = false;
-@@ -133,8 +134,9 @@ namespace Banshee
- ClearModel();
-
- foreach(TrackInfo track in SourceManager.ActiveSource.Tracks) {
-- AddTrack(track);
-+ AddTrack(track, false);
- }
-+ RaiseUpdated(this, new EventArgs());
- }
-
- // --- Helper Methods ---
diff --git a/media-sound/banshee/files/banshee-0.10.9-statusbar-duration-count.patch b/media-sound/banshee/files/banshee-0.10.9-statusbar-duration-count.patch
deleted file mode 100644
index cc18bf839408..000000000000
--- a/media-sound/banshee/files/banshee-0.10.9-statusbar-duration-count.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Correctly update the statusbar when searching.
-
-Calling Clear() directly on playlistModel should really be disallowed...
-
- PlayerInterface.cs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-
-Index: src/PlayerInterface.cs
-===================================================================
-RCS file: /cvs/gnome/banshee/src/PlayerInterface.cs,v
-retrieving revision 1.168
-diff -u -p -r1.168 PlayerInterface.cs
---- src/PlayerInterface.cs 21 Mar 2006 22:16:22 -0000 1.168
-+++ src/PlayerInterface.cs 25 Mar 2006 20:46:37 -0000
-@@ -1315,7 +1315,7 @@ namespace Banshee
- return;
- }
-
-- playlistModel.Clear();
-+ playlistModel.ClearModel();
-
- if(!searchEntry.IsQueryAvailable) {
- playlistModel.ReloadSource();
diff --git a/media-sound/banshee/files/digest-banshee-0.10.10-r4 b/media-sound/banshee/files/digest-banshee-0.10.10-r4
deleted file mode 100644
index ccdb303ddc17..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.10.10-r4
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cb553f5bc6dc14b7afa44349d025bbdc banshee-0.10.10.tar.gz 1283567
-RMD160 af60d5883d1fee43269bd173ada08138bc50a20a banshee-0.10.10.tar.gz 1283567
-SHA256 38fc1f388637e036808555d086276122f3d410f8469cbad8313d329a276fefd5 banshee-0.10.10.tar.gz 1283567
diff --git a/media-sound/banshee/files/digest-banshee-0.11.0 b/media-sound/banshee/files/digest-banshee-0.11.0
deleted file mode 100644
index 0afd5b1b990c..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.11.0
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f54e1d87a2bf2f239f1420eeba9d15eb banshee-0.11.0.tar.gz 1670877
-RMD160 ed670ede7a34ca7c12c22a64df851fe5d137524f banshee-0.11.0.tar.gz 1670877
-SHA256 2bea36cbd2d96e79b8101fa13fbdb9be8bba87ff6753df39cc6081e80ba98acf banshee-0.11.0.tar.gz 1670877
diff --git a/media-sound/banshee/files/digest-banshee-0.11.1 b/media-sound/banshee/files/digest-banshee-0.11.1
deleted file mode 100644
index f3fb1f01918d..000000000000
--- a/media-sound/banshee/files/digest-banshee-0.11.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 0cdafdcc768593796f35095d39eeda6c banshee-0.11.1.tar.gz 1732881
-RMD160 83ef1ac0b450665e76b5935831089918ab3edb69 banshee-0.11.1.tar.gz 1732881
-SHA256 beddc48a50f77739eebbc3fbf299e7d54ac67783e3a349822affbc5f581eaab1 banshee-0.11.1.tar.gz 1732881