[Pkg-cli-apps-commits] [SCM] banshee-community-extensions branch, experimental, updated. debian/2.1.1-2-9-g59d373e
Chow Loong Jin
hyperair at ubuntu.com
Sat Aug 27 14:51:47 UTC 2011
The following commit has been merged in the experimental branch:
commit 85d613c0e94e5eecaf537b992f53317d79ba1bf7
Author: Chow Loong Jin <hyperair at ubuntu.com>
Date: Sat Aug 27 15:24:43 2011 +0800
Drop upstreamed patches
diff --git a/debian/patches/0001-LastfmFingerprint-Add-dllmap-for-liblastfmfpbridge.patch b/debian/patches/0001-LastfmFingerprint-Add-dllmap-for-liblastfmfpbridge.patch
deleted file mode 100644
index cde32f6..0000000
--- a/debian/patches/0001-LastfmFingerprint-Add-dllmap-for-liblastfmfpbridge.patch
+++ /dev/null
@@ -1,58 +0,0 @@
-From 6c6127c51d4ec676c8f7f085e7757112e499652b Mon Sep 17 00:00:00 2001
-From: Chow Loong Jin <hyperair at ubuntu.com>
-Date: Tue, 14 Jun 2011 01:21:45 +0800
-Subject: [PATCH] LastfmFingerprint: Add dllmap for liblastfmfpbridge
-
-Although mono tries many funky permutations of the dll name, it is only
-documented to try searching for "lib${moduleref}.so"[1].
-
-Hence, the moduleref of liblastfmfpbridge is insufficient, and a dllmap is
-needed to map this appropriately. Dropping the "lib" from the moduleref would
-not work either, as Windows does not prepend "lib" to the library name while
-when loading modulerefs.
-
-[1] http://www.mono-project.com/Interop_with_Native_Libraries
----
- src/LastfmFingerprint/.gitignore | 1 +
- .../Banshee.LastfmFingerprint.dll.config | 3 +++
- .../Banshee.LastfmFingerprint/Makefile.am | 4 ++++
- 3 files changed, 8 insertions(+), 0 deletions(-)
- create mode 100644 src/LastfmFingerprint/.gitignore
- create mode 100644 src/LastfmFingerprint/Banshee.LastfmFingerprint/Banshee.LastfmFingerprint.dll.config
-
-diff --git a/src/LastfmFingerprint/.gitignore b/src/LastfmFingerprint/.gitignore
-new file mode 100644
-index 0000000..6d5e34b
---- /dev/null
-+++ b/src/LastfmFingerprint/.gitignore
-@@ -0,0 +1 @@
-+!*.dll.config
-diff --git a/src/LastfmFingerprint/Banshee.LastfmFingerprint/Banshee.LastfmFingerprint.dll.config b/src/LastfmFingerprint/Banshee.LastfmFingerprint/Banshee.LastfmFingerprint.dll.config
-new file mode 100644
-index 0000000..7435ff4
---- /dev/null
-+++ b/src/LastfmFingerprint/Banshee.LastfmFingerprint/Banshee.LastfmFingerprint.dll.config
-@@ -0,0 +1,3 @@
-+<configuration>
-+ <dllmap dll="liblastfmfpbridge" target="liblastfmfpbridge.so" />
-+</configuration>
-diff --git a/src/LastfmFingerprint/Banshee.LastfmFingerprint/Makefile.am b/src/LastfmFingerprint/Banshee.LastfmFingerprint/Makefile.am
-index 8bff152..e937890 100644
---- a/src/LastfmFingerprint/Banshee.LastfmFingerprint/Makefile.am
-+++ b/src/LastfmFingerprint/Banshee.LastfmFingerprint/Makefile.am
-@@ -1,4 +1,5 @@
- ASSEMBLY = Banshee.LastfmFingerprint
-+DLLCONFIG = $(ASSEMBLY).dll.config
- LINK = $(BANSHEE_LIBS) $(BANSHEE_LASTFM_LIBS)
-
- SOURCES = \
-@@ -15,3 +16,6 @@ RESOURCES = \
- Resources/GlobalUI.xml
-
- include $(top_srcdir)/build/build.mk
-+
-+EXTRA_DIST += $(DLLCONFIG)
-+module_DATA = $(DLLCONFIG)
---
-1.7.4.1
-
diff --git a/debian/patches/0001-StreamRecorder-Standardize-gstreamer-DllImport.patch b/debian/patches/0001-StreamRecorder-Standardize-gstreamer-DllImport.patch
deleted file mode 100644
index e1d2dd0..0000000
--- a/debian/patches/0001-StreamRecorder-Standardize-gstreamer-DllImport.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 5a3aadd691d8922fb1e9ff363b38f51448c7164c Mon Sep 17 00:00:00 2001
-From: Chow Loong Jin <hyperair at ubuntu.com>
-Date: Tue, 14 Jun 2011 02:04:00 +0800
-Subject: [PATCH] StreamRecorder: Standardize gstreamer DllImport
-
----
- .../Banshee.Streamrecorder/Gst/Iterator.cs | 6 +++---
- 1 files changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/StreamRecorder/Banshee.Streamrecorder/Gst/Iterator.cs b/src/StreamRecorder/Banshee.Streamrecorder/Gst/Iterator.cs
-index 61d8e74..bee28c5 100644
---- a/src/StreamRecorder/Banshee.Streamrecorder/Gst/Iterator.cs
-+++ b/src/StreamRecorder/Banshee.Streamrecorder/Gst/Iterator.cs
-@@ -37,10 +37,10 @@ namespace Banshee.Streamrecorder.Gst
- {
- }
-
-- [DllImport("libgstreamer-0.10.dll")]
-+ [DllImport("libgstreamer-0.10.so.0")]
- static extern int gst_iterator_next (IntPtr iterator, out IntPtr elem);
-
-- [DllImport("libgstreamer-0.10.dll")]
-+ [DllImport("libgstreamer-0.10.so.0")]
- static extern void gst_iterator_resync (IntPtr iterator);
-
- private class Enumerator : IEnumerator
-@@ -111,7 +111,7 @@ namespace Banshee.Streamrecorder.Gst
- return this.enumerator;
- }
-
-- [DllImport("libgstreamer-0.10.dll")]
-+ [DllImport("libgstreamer-0.10.so.0")]
- static extern void gst_iterator_free (IntPtr iterator);
-
- ~Iterator ()
---
-1.7.4.1
-
diff --git a/debian/patches/series b/debian/patches/series
index 83f813c..41d2436 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,3 +1 @@
-0001-LastfmFingerprint-Add-dllmap-for-liblastfmfpbridge.patch
-0001-StreamRecorder-Standardize-gstreamer-DllImport.patch
fsck-intltool.patch
--
banshee-community-extensions
More information about the Pkg-cli-apps-commits
mailing list