[Pkg-pulseaudio-devel] [SCM] gst-pulse packaging branch, master, updated. debian/0.9.4-2-12-g1d2a5a7

neurocyte-guest at users.alioth.debian.org neurocyte-guest at users.alioth.debian.org
Tue Oct 30 19:22:49 UTC 2007


The branch, master has been updated
       via  1d2a5a771beb4bdee1ac75ecaf66e51f99e5c658 (commit)
       via  4d3e5baff76b71ba399dee7baf8b6e054422a71e (commit)
       via  341ddabfea102148d16378c6cbdc9077f569f68b (commit)
       via  8d494401bfd8acc87d818a9ce37ae2df7f3c5e8b (commit)
      from  653baac9ce8d62f6b966cb3d76c2d320204483b8 (commit)


- Shortlog ------------------------------------------------------------
1d2a5a7 Generate changelog from git history
4d3e5ba debian/rules: Remove .so renaming workaround. Fixed upstream.
341ddab debian/rules: Remove --disable-static. Static libs are now disabled
8d49440 debian/patches: Drop rank primary patch. Merged upstream.

Summary of changes:
 debian/changelog                                  |   17 +++++++++----
 debian/patches/make-gst-plugin-rank-primary.patch |   27 ---------------------
 debian/patches/series                             |    2 -
 debian/rules                                      |    6 ----
 4 files changed, 12 insertions(+), 40 deletions(-)
-----------------------------------------------------------------------
Details of changes:

commit 1d2a5a771beb4bdee1ac75ecaf66e51f99e5c658
Author: CJ van den Berg <cj at vdbonline.com>
Date:   Tue Oct 30 20:22:14 2007 +0100

    Generate changelog from git history

diff --git a/debian/changelog b/debian/changelog
index 0cdf782..4334d6e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,13 +1,20 @@
 gst-pulse (0.9.5-1) UNRELEASED; urgency=low
 
-  [ CJ van den Berg ]
-  * debian/rules: Don't call ldconfig in postinst and postrm
-  * debian/control: Add Sjoerd Simons to uploaders
-
   [ Sjoerd Simons ]
   * New upstream release
+  * Imported upstream version 0.9.5
 
- -- Sjoerd Simons <sjoerd at debian.org>  Tue, 30 Oct 2007 20:07:15 +0100
+  [ CJ van den Berg ]
+  * debian/rules:
+    - Don't call ldconfig in postinst and postrm
+    - Remove --disable-static. Static libs are now disabled
+    - Remove .so renaming workaround. Fixed upstream.
+  * debian/control:
+    - Add Sjoerd Simons to uploaders
+    - Add XS-Vcs-* tags
+    - Drop rank primary patch. Merged upstream.
+
+ -- CJ van den Berg <cj at vdbonline.com>  Tue, 30 Oct 2007 20:18:40 +0100
 
 gst-pulse (0.9.4-2) unstable; urgency=low
 

commit 4d3e5baff76b71ba399dee7baf8b6e054422a71e
Author: CJ van den Berg <cj at vdbonline.com>
Date:   Thu Oct 25 22:44:04 2007 +0200

    debian/rules: Remove .so renaming workaround. Fixed upstream.

diff --git a/debian/rules b/debian/rules
index 56ea8e0..497a8fc 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,9 +5,5 @@ include /usr/share/cdbs/1/class/autotools.mk
 
 common-install-arch::
 	rm $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.la
-	rm $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so
-	rm $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so.0
-	mv $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so.0.0.0 \
-	   $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so
 
 DEB_DH_MAKESHLIBS_ARGS_ALL = --noscripts

commit 341ddabfea102148d16378c6cbdc9077f569f68b
Author: CJ van den Berg <cj at vdbonline.com>
Date:   Thu Oct 25 22:41:22 2007 +0200

    debian/rules: Remove --disable-static. Static libs are now disabled
    upstream.

diff --git a/debian/rules b/debian/rules
index cfa8ab6..56ea8e0 100755
--- a/debian/rules
+++ b/debian/rules
@@ -10,5 +10,4 @@ common-install-arch::
 	mv $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so.0.0.0 \
 	   $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.so
 
-DEB_CONFIGURE_EXTRA_FLAGS = --disable-static
 DEB_DH_MAKESHLIBS_ARGS_ALL = --noscripts

commit 8d494401bfd8acc87d818a9ce37ae2df7f3c5e8b
Author: CJ van den Berg <cj at vdbonline.com>
Date:   Thu Oct 25 22:37:19 2007 +0200

    debian/patches: Drop rank primary patch. Merged upstream.

diff --git a/debian/patches/make-gst-plugin-rank-primary.patch b/debian/patches/make-gst-plugin-rank-primary.patch
deleted file mode 100644
index 65153b6..0000000
--- a/debian/patches/make-gst-plugin-rank-primary.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Raise the rank of the gstreamer plugin
-
-From: Sebastian Dröge <slomo at ubuntu.com>
-
-This makes gstreamer try use pulse before other plugins.
----
-
- src/plugin.c |    4 ++--
- 1 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/plugin.c b/src/plugin.c
-index 4695d2b..d634525 100644
---- a/src/plugin.c
-+++ b/src/plugin.c
-@@ -31,10 +31,10 @@ GST_DEBUG_CATEGORY(pulse_debug);
- 
- static gboolean plugin_init(GstPlugin* plugin) {
-     
--    if (!gst_element_register(plugin, "pulsesink", GST_RANK_SECONDARY-1, GST_TYPE_PULSESINK))
-+    if (!gst_element_register(plugin, "pulsesink", GST_RANK_PRIMARY, GST_TYPE_PULSESINK))
-         return FALSE;
- 
--    if (!gst_element_register(plugin, "pulsesrc", GST_RANK_SECONDARY-1, GST_TYPE_PULSESRC))
-+    if (!gst_element_register(plugin, "pulsesrc", GST_RANK_PRIMARY, GST_TYPE_PULSESRC))
-         return FALSE;
- 
-     if (!gst_element_register(plugin, "pulsemixer", GST_RANK_NONE, GST_TYPE_PULSEMIXER))
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644
index 231c689..0000000
--- a/debian/patches/series
+++ /dev/null
@@ -1,2 +0,0 @@
-# This series applies on GIT commit d5d807e18bc924cb6417e18bee6a201be4fc9d22
-make-gst-plugin-rank-primary.patch
diff --git a/debian/rules b/debian/rules
index e39a7d3..cfa8ab6 100755
--- a/debian/rules
+++ b/debian/rules
@@ -2,7 +2,6 @@
 
 include /usr/share/cdbs/1/rules/debhelper.mk
 include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
 common-install-arch::
 	rm $(DEB_DESTDIR)/usr/lib/gstreamer-0.10/libgstpulse.la

-- 
gst-pulse packaging



More information about the Pkg-pulseaudio-devel mailing list