aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikhil Devshatwar2013-05-17 04:42:12 -0500
committerNikhil Devshatwar2013-05-22 03:44:44 -0500
commit863d08791774bdfb96ba4c0e46d0098f6a329c03 (patch)
treec94eaa90b509a48dda8fc30c21210cb225447294
parentfb5552c941fe3cfb4499ffe87f2e5328ded182e5 (diff)
downloadgst-plugins-ugly0-10-863d08791774bdfb96ba4c0e46d0098f6a329c03.tar.gz
gst-plugins-ugly0-10-863d08791774bdfb96ba4c0e46d0098f6a329c03.tar.xz
gst-plugins-ugly0-10-863d08791774bdfb96ba4c0e46d0098f6a329c03.zip
DEBIAN: DebianizationHEADglsdk-6_00_00_07master
-rw-r--r--debian/HACKING.Debian100
-rw-r--r--debian/README.Debian66
-rw-r--r--debian/build-deps31
-rw-r--r--debian/build-deps.in31
-rw-r--r--debian/changelog1991
-rw-r--r--debian/compat1
-rw-r--r--debian/control109
-rw-r--r--debian/control.in80
-rw-r--r--debian/copyright31
-rw-r--r--debian/extra26
-rw-r--r--debian/gbp.conf9
-rw-r--r--debian/gstreamer-plugins-ugly-doc.install1
-rw-r--r--debian/gstreamer-plugins-ugly.install20
-rwxr-xr-xdebian/maint13
-rwxr-xr-xdebian/mk.control17
-rwxr-xr-xdebian/rules175
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch2
18 files changed, 2704 insertions, 0 deletions
diff --git a/debian/HACKING.Debian b/debian/HACKING.Debian
new file mode 100644
index 00000000..5c44a175
--- /dev/null
+++ b/debian/HACKING.Debian
@@ -0,0 +1,100 @@
1Hacking GStreamer for Debian
2============================
3
4An addition to the README.Debian that has Debian package hacking notes.
5
6Everything should now be versioned.
7
8- To update dependencies edit debian/build-deps.in
9
10- To rebuild package files from .in files:
11
12 debian/rules maint
13
14- After a version update to check for missing files run:
15
16 debian/maint missing
17 debian/maint missing-libs
18 debian/maint missing-so
19
20- To update package files edit gstreamer-foo then rebuild package files. This
21 will generate the gstreamerX.Y-foo file. Also update debian/rules and
22 debian/control.in as needed.
23
24- The packaging tries to stay close of upstream choice. gstreamerX.Y-misc has
25 most of the files, extra packages are made for the sinks and by group of
26 depends (gnome, x, ...)
27
28- Provide gstreamerX.Y-videosink and gstreamerX.Y-audiosink as needed.
29
30- All interfaces and generic libraries go in libgstreamer-plugins, libraries
31 with external dependencies have their own package such as libgstreamer-gconf.
32
33- Applications go in gstreamerX.Y-plugins-base-apps
34
35
36File listing
37------------
38
39build-deps:
40 - generated from "build-deps.in" abd "extra deps" in "rules
41 debian/build-deps:":
42 * "build-deps.in" lists build-depends for Debian main packages
43 * "extra deps" is a shell script outputting additional build-depends
44 if you are building additional plugins
45 - serves generation with "control.in" and "mk.control" of "control" in
46 "rules debian/control::"
47build-deps.in:
48 - lists build-depends for Debian main packages
49 - serves generation with "extra deps" of "build-deps" in "rules
50 debian/build-deps:"
51changelog: handled classically
52compat: handled classically
53control:
54 - generated for "rules maint"
55 - generated from "control.in" and "build-deps" in "rules debian/control::":
56 * "build-deps" lists build-depends to be inserted in "control
57 Build-Depends:"
58 * "control.in" serves of template for package descriptions of Debian main
59 packages and makes use of special stanzas enclosed in "@" such as
60 "@GST_ABI" which are replaced via sed in "rules debian/control::"
61 * "extra deps" is a shell script outputting additional binary packages
62 if you are building additional plugins
63control.in:
64 - serves generation of "control" in "rules debian/control::" via "mk.control"
65 called in "rules debian/control::"
66 - template for package descriptions of Debian main packages and makes use of
67 special stanzas enclosed in "@" such as "@GST_ABI" which are replaced via
68 sed in "rules debian/control::"
69copyright: handled classically
70extra:
71 - serves the generation of build-deps of additional packages not in Debian
72 main in "rules debian/build-deps:"
73 - serves the generation of additional binary packages if you are building
74 additional plugins in "rules debian/control::"
75gstreamer-$plugin.install:
76 - serves the generation of $gst_pkgname-$plugin.install (for example
77 gstreamer-alsa.install serves the generation of gstreamerX.Y-alsa.install) in
78 "rules pre-build::" via dynamic "@"-enclosed variables replacement
79 - some plugins are handled specially and some special variables are available
80gstreamer-plugins-base-apps.install: this isn't really a plugin, but the
81 gstreamerX.Y-plugins-base-apps package
82gstreamer-plugins-base-apps.manpages: man pages for the gstreamerX.Y-plugins-base-apps
83 package
84HACKING.Debian: this file
85libgstreamer-plugins-base-dev.install libgstreamer-plugins-base.install: handled similarly has gstreamerX.Y-plugins-base-apps
86maint: makefile wrapping some targets of "rules" with some sh filtering
87mk.control:
88 - Perl script serving the generation of "control" which reads "build-deps"
89 and "control.in", and replaces the "BUILDDEPS" stanza with the build-deps
90patches: handled classically
91README.Debian: handled classically
92rules: handled classically, with special targets "maint:", and
93 "debian/build-deps:"
94watch: handled classically
95
96This file is the initial work of:
97David I. Lehn <dlehn@debian.org> Tue, 13 Apr 2004 21:28:55 -0400
98and had some additions by:
99Loic Minier <lool@dooz.org> Sun, 19 Jun 2005 19:04:58 +0200
100Sebastien Bacher <seb128@debian.org> Wed, 14 Dec 2005 17:00:21 +0100
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 00000000..d613e8aa
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,66 @@
1Gstreamer for Debian
2====================
3This package contains the GStreamer plugin distribution.
4
5More information can be found at http://gstreamer.net/
6
7As of GStreamer plugins version 0.8.0 all packages are versioned and
8parallel installable with other releases with other major.minor
9versions. For example, 0.8.x series is versioned as 0.8 and parallel
10installable with both unversioned 0.6.x series and future 0.9.x and
11beyond. The version part is represented as VER below.
12
13GStreamer plugins are split into a number of packages:
14
15plugins without external dependencies:
16
17 gstreamerVER-plugins-ugly many independent plugins
18
19documentation:
20
21 gstreamerVER-plugins-ugly-doc html documentation
22
23
24Notes
25=====
26
27ChangeLog
28---------
29
30The upstream ChangeLog is not included in all the plugin packages due to its
31large size. Please see upstream sources if you are interested in detailed
32source changes.
33
34Unofficial plugin packages
35--------------------------
36
37Various plugins in the upstream source are not yet packaged or not officially
38supported. This is most likely due to:
39
40 * upstream considers them too unstable
41 * libraries they depend on are not are yet in Debian or are poorly supported
42
43To build additional unofficial plugin packages:
44
45 * Get the source and Debian diff (for example, "apt-get source gst-plugins")
46 * Add new package name to the EXTRA_PLUGINS variable in debian/rules
47 * Add appropriate dependency and control info to debian/extra
48 * Add a .install file for the package
49 * Rebuild
50
51External tools support
52----------------------
53
54Your favorite codec isn't wrapped as a plugin? External programs can be
55used to process streams. Take a look at "pipefilter" element or try
56something like this (untested):
57
58 $ mkfifo fifo
59 $ gst-launch myaudiosrc ! filesink location=fifo &
60 $ cat fifo | my_encoder > output_file
61
62
63David I. Lehn <dlehn@debian.org> Tue, 23 Mar 2004 04:38:37 -0500
64
65update:
66Sebastien Bacher <seb128@debian.org> Wed, 14 Dec 2005 17:00:21 +0100
diff --git a/debian/build-deps b/debian/build-deps
new file mode 100644
index 00000000..d8851dae
--- /dev/null
+++ b/debian/build-deps
@@ -0,0 +1,31 @@
1autoconf (>= 2.60)
2automake (>= 1.10)
3autopoint (>= 0.17)
4autotools-dev
5cdbs (>= 0.4.93)
6debhelper (>= 8.1.3)
7dh-autoreconf
8dpkg-dev (>= 1.15.1)
9@GST_EXTRA_BUILD_DEPENDS@
10@GST_LIB_DEV_DEP@
11gstreamer0.10-doc
12gstreamer0.10-plugins-base
13gstreamer0.10-plugins-base-doc
14gstreamer-tools (>= 0.10.14)
15gtk-doc-tools
16liba52-0.7.4-dev
17libcdio-dev (>= 0.76)
18libdvdread-dev (>= 0.9.0)
19libglib2.0-dev (>= 2.24)
20libgstreamer-plugins-base0.10-dev (>= 0.10.35.2)
21libmad0-dev (>= 0.15)
22libmp3lame-dev
23libmpeg2-4-dev (>= 0.4.0)
24libopencore-amrnb-dev
25libopencore-amrwb-dev
26liborc-0.4-dev (>= 1:0.4.11)
27libsidplay1-dev
28libtool (>= 2.0)
29libtwolame-dev (>= 0.3.10)
30libx264-dev (>= 0.55.0)
31pkg-config (>= 0.11.0)
diff --git a/debian/build-deps.in b/debian/build-deps.in
new file mode 100644
index 00000000..82b7af1a
--- /dev/null
+++ b/debian/build-deps.in
@@ -0,0 +1,31 @@
1@GST_LIB_DEV_DEP@
2@GST_EXTRA_BUILD_DEPENDS@
3libgstreamer-plugins-base0.10-dev (>= 0.10.35.2)
4autotools-dev
5dh-autoreconf
6automake (>= 1.10)
7autoconf (>= 2.60)
8libtool (>= 2.0)
9autopoint (>= 0.17)
10cdbs (>= 0.4.93)
11debhelper (>= 8.1.3)
12dpkg-dev (>= 1.15.1)
13pkg-config (>= 0.11.0)
14gtk-doc-tools
15libglib2.0-dev (>= 2.24)
16liborc-0.4-dev (>= 1:0.4.11)
17liba52-0.7.4-dev
18libmad0-dev (>= 0.15)
19libmpeg2-4-dev (>= 0.4.0)
20libsidplay1-dev
21libdvdread-dev (>= 0.9.0)
22gstreamer-tools (>= 0.10.14)
23gstreamer0.10-plugins-base
24libcdio-dev (>= 0.76)
25libtwolame-dev (>= 0.3.10)
26libopencore-amrnb-dev
27libopencore-amrwb-dev
28gstreamer0.10-doc
29gstreamer0.10-plugins-base-doc
30libx264-dev (>= 0.55.0)
31libmp3lame-dev
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 00000000..dd2eb9e9
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,1991 @@
1gst-plugins-ugly0.10 (0.10.18.3-1ubuntu1+ti1.6.6.1+2) precise; urgency=low
2
3 * debian/control: Set architecture to armhf for all packages
4
5 -- Olivier Naudan <o-naudan@ti.com> Thu, 13 Dec 2012 09:58:05 +0000
6
7gst-plugins-ugly0.10 (0.10.18.3-1ubuntu1+ti1.6.6.1+1) precise; urgency=low
8
9 * Refreshed TI patches based on commit a102e1b7
10 * debian/control: Set Vcs-* fields to the actual tree for TI derived version
11 * Realigned debian/control with debian/control.in
12
13 -- Olivier Naudan <o-naudan@ti.com> Mon, 08 Oct 2012 08:18:41 -0400
14
15gst-plugins-ugly0.10 (0.10.18.3-1ubuntu1+ti1.6.2.1+1) precise; urgency=low
16
17 * Migration to Precise:
18 - New upstream release, 0.10.18.3-1ubuntu1
19 * Refreshed TI patches based on commit fc6bf01d
20
21 -- Olivier Naudan <o-naudan@ti.com> Mon, 21 May 2012 09:23:57 -0400
22
23gst-plugins-ugly0.10 (0.10.18.3-1ubuntu1) precise; urgency=low
24
25 * Merge from Debian experimental, remaining changes:
26 - Add 'Replaces' for -multiverse package as all the plugins from that
27 package have moved to this one. (LP: 828984)
28
29 -- Timo Aaltonen <tjaalton@ubuntu.com> Tue, 07 Feb 2012 19:08:31 +0200
30
31gst-plugins-ugly0.10 (0.10.18.3-1) experimental; urgency=low
32
33 * New upstream pre-release.
34
35 -- Sebastian Dröge <slomo@debian.org> Mon, 06 Feb 2012 11:08:55 +0100
36
37gst-plugins-ugly0.10 (0.10.18.2-2) experimental; urgency=low
38
39 * debian/control.in:
40 + Build-depend on automake (>= 1.10), autoconf (>= 2.60) and
41 libtool (>= 2.0) to make dh-autoreconf actually work.
42
43 -- Sebastian Dröge <slomo@debian.org> Wed, 14 Dec 2011 09:51:04 +0100
44
45gst-plugins-ugly0.10 (0.10.18.2-1) experimental; urgency=low
46
47 * New upstream pre-release:
48 + debian/build-deps.in,
49 debian/rules:
50 - Build-depend on GStreamer core/base 0.10.35.2.
51 - Build-depend on GLib 2.24.
52 - Build-depend on ORC 0.4.11.
53 - Don't build-depend anymore on libid3tag.
54 + debian/patches/99_ltmain_as-needed.patch:
55 - Refreshed to apply cleanly again.
56 * debian/build-deps.in,
57 debian/compat,
58 debian/control.in,
59 debian/gstreamer-plugins-ugly.install,
60 debian/rules:
61 + Transition package to multi-arch (Closes: #647488).
62 Patch taken from the Ubuntu package.
63
64 -- Sebastian Dröge <slomo@debian.org> Mon, 12 Dec 2011 09:42:37 +0100
65
66gst-plugins-ugly0.10 (0.10.18-3ubuntu1+ti1) oneiric; urgency=low
67
68 * Added a patch to decrease mpeg2dec rank so that TI MPEG-2 decoder is
69 prefered
70 * debian/gbp.conf: enabled pristine-tar globally
71
72 -- Olivier Naudan <o-naudan@ti.com> Mon, 12 Dec 2011 13:44:30 +0100
73
74gst-plugins-ugly0.10 (0.10.18-3ubuntu1) oneiric; urgency=low
75
76 * Add 'Replaces' for -multiverse package as all the plugins from that package
77 have moved to this one. (LP: #828984)
78 * Install preset files that were previously in -multiverse package.
79
80 -- Onkar Shinde <onkarshinde@ubuntu.com> Fri, 02 Sep 2011 23:54:52 +0530
81
82gst-plugins-ugly0.10 (0.10.18-3) unstable; urgency=low
83
84 * Add lame to the ugly plugin set as it's available in Debian now (Closes: #636065).
85
86 -- Fabian Greffrath <fabian+debian@greffrath.com> Fri, 29 Jul 2011 13:33:09 +0200
87
88gst-plugins-ugly0.10 (0.10.18-2) unstable; urgency=low
89
90 * Add x264enc to the ugly plugin set as it's available in debian now
91
92 -- Sjoerd Simons <sjoerd@debian.org> Tue, 26 Jul 2011 20:46:34 +0100
93
94gst-plugins-ugly0.10 (0.10.18-1) unstable; urgency=low
95
96 * New upstream release, "Extra Life".
97
98 -- Sebastian Dröge <slomo@debian.org> Tue, 10 May 2011 15:54:01 +0200
99
100gst-plugins-ugly0.10 (0.10.17.3-1) experimental; urgency=low
101
102 * New upstream pre-release.
103
104 -- Sebastian Dröge <slomo@debian.org> Wed, 27 Apr 2011 16:09:41 +0200
105
106gst-plugins-ugly0.10 (0.10.17.2-1) experimental; urgency=low
107
108 [ Alessandro Decina ]
109 * debian/rules:
110 + Include dh-autoreconf cdbs rule
111 * debian/build-deps.in:
112 + Add dependency on dh-autoreconf
113
114 [ Sebastian Dröge ]
115 * New upstream pre-release.
116
117 -- Sebastian Dröge <slomo@debian.org> Sun, 17 Apr 2011 11:34:16 +0200
118
119gst-plugins-ugly0.10 (0.10.17-2) unstable; urgency=low
120
121 * Upload to unstable.
122
123 -- Sebastian Dröge <slomo@debian.org> Tue, 22 Mar 2011 15:25:53 +0100
124
125gst-plugins-ugly0.10 (0.10.17-1) experimental; urgency=low
126
127 * New upstream stable release, "Raised by Wolves".
128
129 -- Sebastian Dröge <slomo@debian.org> Sat, 22 Jan 2011 13:57:04 +0100
130
131gst-plugins-ugly0.10 (0.10.16.4-1) experimental; urgency=low
132
133 * New upstream pre-release.
134
135 -- Sebastian Dröge <slomo@debian.org> Wed, 19 Jan 2011 21:19:02 +0100
136
137gst-plugins-ugly0.10 (0.10.16.3-1) experimental; urgency=low
138
139 * New upstream pre-release.
140
141 -- Sebastian Dröge <slomo@debian.org> Thu, 13 Jan 2011 13:43:53 +0100
142
143gst-plugins-ugly0.10 (0.10.16.2-1) experimental; urgency=low
144
145 [ Emilio Pozuelo Monfort ]
146 * debian/build-deps.in,
147 debian/rules:
148 + Use dpkg-vendor instead of lsb_release.
149
150 [ Sebastian Dröge ]
151 * New upstream pre-release:
152 + debian/build-deps.in:
153 - Require ORC >= 0.4.6.
154
155 -- Sebastian Dröge <slomo@debian.org> Mon, 10 Jan 2011 17:34:11 +0100
156
157gst-plugins-ugly0.10 (0.10.16-2) experimental; urgency=low
158
159 * debian/build-deps.in:
160 + Add epoch to the orc build dependency to get dependencies on
161 the correct version.
162
163 -- Sebastian Dröge <slomo@debian.org> Fri, 17 Sep 2010 13:28:42 +0200
164
165gst-plugins-ugly0.10 (0.10.16-1) experimental; urgency=low
166
167 * New upstream release, "Because He Knows the Time is Short".
168
169 -- Sebastian Dröge <slomo@debian.org> Fri, 03 Sep 2010 12:36:41 +0200
170
171gst-plugins-ugly0.10 (0.10.15.6-1) experimental; urgency=low
172
173 * New upstream pre-release.
174
175 -- Sebastian Dröge <slomo@debian.org> Mon, 30 Aug 2010 16:12:57 +0200
176
177gst-plugins-ugly0.10 (0.10.15.5-1) experimental; urgency=low
178
179 * New upstream pre-release.
180
181 -- Sebastian Dröge <slomo@debian.org> Wed, 25 Aug 2010 22:12:59 +0200
182
183gst-plugins-ugly0.10 (0.10.15.4-1) experimental; urgency=low
184
185 * New upstream pre-release.
186
187 -- Sebastian Dröge <slomo@debian.org> Sat, 21 Aug 2010 21:59:43 +0200
188
189gst-plugins-ugly0.10 (0.10.15.3-1) experimental; urgency=low
190
191 * New upstream pre-release.
192
193 -- Sebastian Dröge <slomo@debian.org> Wed, 11 Aug 2010 21:20:10 +0200
194
195gst-plugins-ugly0.10 (0.10.15.2-1) experimental; urgency=low
196
197 [ Sebastian Dröge ]
198 * debian/patches/01_x264-i-weighted-pred.patch:
199 + Don't fail the build if x264 is accidentially installed but
200 an older version is used (Closes: #584094).
201 Patch from upstream bugzilla.
202
203 [ أحمد المحمودي (Ahmed El-Mahmoudy) ]
204 * Added patch rmdemux_pass_bitrate_on_caps.patch from upstream to fix
205 a problem with playing some media files with Sipro codec.
206
207 [ Sebastian Dröge ]
208 * New upstream pre-release:
209 + debian/patches/rmdemux_pass_bitrate_on_caps.patch,
210 debian/patches/01_x264-i-weighted-pred.patch:
211 - Dropped, merged upstream.
212 + debian/build-deps.in:
213 - Build depend on orc instead of liboil.
214 - Build depend on GLib >= 2.20.
215 * debian/rules,
216 debian/compat,
217 debian/control.in,
218 debian/source/format,
219 debian/patches/*:
220 + Update to debhelper compat level 7.
221 + Update to source format 3.0 (quilt).
222
223 -- Sebastian Dröge <slomo@debian.org> Wed, 11 Aug 2010 09:19:36 +0200
224
225gst-plugins-ugly0.10 (0.10.15-1) unstable; urgency=low
226
227 * New upstream release, "Englishman in a Baseball Cap":
228 + debian/build-deps.in:
229 - Build depend on GLib >= 2.18 and liboil >= 0.3.14.
230
231 -- Sebastian Dröge <slomo@debian.org> Mon, 31 May 2010 05:41:45 +0200
232
233gst-plugins-ugly0.10 (0.10.14.3-1) unstable; urgency=low
234
235 * New upstream pre-release.
236
237 -- Sebastian Dröge <slomo@debian.org> Wed, 26 May 2010 15:36:52 +0200
238
239gst-plugins-ugly0.10 (0.10.14.2-2) unstable; urgency=low
240
241 * debian/control.in:
242 + Let the -dev package depend on the GStreamer core/base documentation
243 for cross references.
244 * Upload to unstable.
245
246 -- Sebastian Dröge <slomo@debian.org> Thu, 20 May 2010 13:55:52 +0200
247
248gst-plugins-ugly0.10 (0.10.14.2-1) experimental; urgency=low
249
250 * New upstream pre-release.
251 * debian/build-deps.in:
252 + Build depend on GStreamer core/base documentation to get correct
253 cross references.
254
255 -- Sebastian Dröge <slomo@debian.org> Sat, 15 May 2010 10:00:57 +0200
256
257gst-plugins-ugly0.10 (0.10.14-1) unstable; urgency=low
258
259 * New upstream stable release, "Run Rabbit".
260
261 -- Sebastian Dröge <slomo@debian.org> Mon, 08 Mar 2010 10:04:09 +0000
262
263gst-plugins-ugly0.10 (0.10.13.3-1) experimental; urgency=low
264
265 * New upstream pre-release.
266
267 -- Sebastian Dröge <slomo@debian.org> Thu, 25 Feb 2010 08:29:15 +0100
268
269gst-plugins-ugly0.10 (0.10.13.2-1) experimental; urgency=low
270
271 * New upstream pre-release:
272 + Broken id3mux plugin is removed now (Closes: #383825).
273 A better version of it is in gst-plugins-bad >= 0.10.17.2.
274 + debian/build-deps.in,
275 debian/rules:
276 - Build depend on gstreamer and gst-plugins-base >= 0.10.26.
277 * debian/control.in:
278 + Fix typos in package descriptions (Closes: #557472, #557478).
279 + Remove David I. Lehn from Uploaders (Closes: #557282).
280
281 -- Sebastian Dröge <slomo@debian.org> Fri, 19 Feb 2010 13:58:43 +0100
282
283gst-plugins-ugly0.10 (0.10.13-2) unstable; urgency=low
284
285 * debian/extra, debian/gstreamer-amrnb.install, debian/README.Debian:
286 + Removed the gstreamer-amrnb extra package which got dropped upstream
287 in favor of opencore-amr.
288
289 -- Fabian Greffrath <fabian@debian-unofficial.org> Thu, 22 Oct 2009 11:34:41 +0200
290
291gst-plugins-ugly0.10 (0.10.13-1) unstable; urgency=low
292
293 * New upstream release, "Appointed Point".
294
295 -- Sebastian Dröge <slomo@debian.org> Wed, 21 Oct 2009 19:45:55 +0200
296
297gst-plugins-ugly0.10 (0.10.12.3-1) experimental; urgency=low
298
299 * New upstream pre-release.
300
301 -- Sebastian Dröge <slomo@debian.org> Fri, 16 Oct 2009 08:58:54 +0200
302
303gst-plugins-ugly0.10 (0.10.12.2-1) experimental; urgency=low
304
305 [ Fabian Greffrath ]
306 * debian/extra, debian/gstreamer-x264.install, debian/README.Debian:
307 + Introduced the gstreamer-x264 package which has been moved here from
308 gst-plugins-bad0.10.
309
310 [ Sebastian Dröge ]
311 * New upstream pre-release:
312 + debian/rules,
313 debian/build-deps.in:
314 - Update GStreamer and gst-plugins-base build dependencies.
315 * debian/build-deps.in,
316 debian/gstreamer-plugins-ugly.install:
317 + Enable the OpenCore AMR WB/NB plugins.
318 * debian/control.in:
319 + Update Standards-Version to 3.8.3.
320
321 -- Sebastian Dröge <slomo@debian.org> Mon, 12 Oct 2009 17:12:15 +0200
322
323gst-plugins-ugly0.10 (0.10.12-1) unstable; urgency=low
324
325 * New upstream release, 'Moving Along The Highway'.
326
327 -- Sebastian Dröge <slomo@debian.org> Thu, 18 Jun 2009 13:42:13 +0200
328
329gst-plugins-ugly0.10 (0.10.11.2-1) experimental; urgency=low
330
331 [ Fabian Greffrath ]
332 * debian/extra:
333 + Added XB-GStreamer-* fields for the extra packages.
334 * debian/rules:
335 + Run debian/extra with sh (it has no execute permissions).
336 + Append extra packages to debian/control (and do not override it).
337 * debian/build-deps, debian/control, debian/rules:
338 + Order, wrap and indent Build-Depends; this will improve interdiffs for
339 packages that provide the extra plugins.
340 * debian/TODO.Debian:
341 + Removed, I don't think any of these things are still relevant.
342 * debian/control, debian/control.in, debian/extra:
343 + Removed duplicate Section fields from gstreamer0.10-plugins-ugly and
344 the extra plugins.
345 + Changed Section to debug for gstreamer0.10-plugins-ugly-dbg.
346 + Added Depends on ${misc:Depends} to gstreamer0.10-plugins-ugly-dbg and
347 the extra plugins.
348 + Improved duplicate short description for gstreamer0.10-plugins-ugly-dbg.
349
350 [ Sebastian Dröge ]
351 * New upstream pre-release:
352 + debian/build-deps.in,
353 debian/rules:
354 - Update build dependencies.
355 * debian/control.in:
356 + Update Standards-Version to 3.8.1, no additional changes needed.
357
358 -- Sebastian Dröge <slomo@debian.org> Sat, 06 Jun 2009 17:54:30 +0200
359
360gst-plugins-ugly0.10 (0.10.11-1) unstable; urgency=low
361
362 * debian/build-deps.in:
363 + Only depend on libdvdread-dev, libdvdread3-dev only existed in sarge
364 (Closes: #499585).
365 * New upstream release, 'Their swords and their knives'.
366
367 -- Sebastian Dröge <slomo@debian.org> Sat, 21 Mar 2009 09:36:41 +0100
368
369gst-plugins-ugly0.10 (0.10.10.2-1) unstable; urgency=low
370
371 * debian/rules:
372 + Pass -Wno-error via C(XX)FLAGS.
373 * New upstream pre-release:
374 + debian/control.in,
375 debian/gstreamer-plugins-ugly.install,
376 debian/build-deps.in:
377 - Build and ship twolame plugin which was moved from gst-plugins-bad.
378
379 -- Sebastian Dröge <slomo@debian.org> Tue, 10 Mar 2009 08:17:48 +0100
380
381gst-plugins-ugly0.10 (0.10.10-2) unstable; urgency=low
382
383 * Upload to unstable.
384
385 -- Sebastian Dröge <slomo@debian.org> Sun, 15 Feb 2009 20:12:11 +0100
386
387gst-plugins-ugly0.10 (0.10.10-1) experimental; urgency=low
388
389 * New upstream release, 'Under the House'.
390
391 -- Sebastian Dröge <slomo@debian.org> Thu, 20 Nov 2008 08:34:17 +0100
392
393gst-plugins-ugly0.10 (0.10.9.2-1) experimental; urgency=low
394
395 [ Loic Minier ]
396 * Let the -dbg package replace gstreamer0.10-plugins-good-dbg (<< 0.10.9.2);
397 thanks Emilio Pozuelo Monfort; see Launchpad #292870.
398
399 [ Sebastian Dröge ]
400 * New upstream pre-release:
401 + debian/patches/01_asfdemux-flow-returns.patch:
402 - Dropped, merged upstream.
403
404 -- Sebastian Dröge <slomo@debian.org> Sun, 09 Nov 2008 16:19:21 +0100
405
406gst-plugins-ugly0.10 (0.10.9-1) experimental; urgency=low
407
408 * New upstream release, 'Back The Way It Was'.
409 * debian/patches/01_asfdemux-flow-returns.patch:
410 + Patch from upstream CVS to fix a regression on aggregating flow
411 returns of different src pads.
412
413 -- Sebastian Dröge <slomo@debian.org> Thu, 28 Aug 2008 10:31:02 +0200
414
415gst-plugins-ugly0.10 (0.10.8.2-1) experimental; urgency=low
416
417 * New upstream pre-release:
418 + debian/build-deps.in,
419 debian/gstreamer-plugins-ugly.install,
420 debian/control.in:
421 - Add the cdio plugin, it moved from gst-plugins-good because libcdio
422 is GPL licensed.
423 * debian/control.in:
424 + Update Standards-Version to 3.8.0, no additional changes needed.
425 + Wrap Uploaders and Depends.
426 * debian/control.in,
427 debian/rules:
428 + Use new automatic codec installation infrastructure.
429
430 -- Sebastian Dröge <slomo@debian.org> Fri, 15 Aug 2008 09:09:51 +0200
431
432gst-plugins-ugly0.10 (0.10.8-1) unstable; urgency=low
433
434 * New upstream stable release, "And yet".
435
436 -- Sebastian Dröge <slomo@debian.org> Thu, 22 May 2008 09:40:41 +0200
437
438gst-plugins-ugly0.10 (0.10.7.4-1) unstable; urgency=low
439
440 * New upstream pre-release:
441 + Fixes some bugs with the Real demuxer (Closes: #479996).
442
443 -- Sebastian Dröge <slomo@debian.org> Tue, 20 May 2008 09:42:17 +0200
444
445gst-plugins-ugly0.10 (0.10.7.3-1) unstable; urgency=low
446
447 * New upstream pre-release.
448
449 -- Sebastian Dröge <slomo@debian.org> Thu, 15 May 2008 09:53:02 +0200
450
451gst-plugins-ugly0.10 (0.10.7.2-1) unstable; urgency=low
452
453 * New upstream pre-release:
454 + debian/patches/01_xingmux-header-position.patch,
455 debian/patches/02_mp3parse-timestamps.patch,
456 debian/patches/03_mp3-tag-caching.patch,
457 debian/patches/75_build_docs_without_python_xml.patch:
458 - Dropped, merged upstream.
459
460 -- Sebastian Dröge <slomo@debian.org> Sat, 10 May 2008 20:30:46 +0200
461
462gst-plugins-ugly0.10 (0.10.7-3) unstable; urgency=low
463
464 * debian/patches/03_mp3-tag-caching.patch:
465 + Don't take the stream lock when caching the events, this is a) not
466 necessary and b) will result in deadlocks in some cases.
467
468 -- Sebastian Dröge <slomo@debian.org> Wed, 12 Mar 2008 17:07:31 +0100
469
470gst-plugins-ugly0.10 (0.10.7-2) unstable; urgency=low
471
472 * debian/extra:
473 + Update for new lame package names in Debian Multimedia and Debian
474 Unofficial. Thanks to Fabian Greffrath (Closes: #466863).
475 Also add amrnb package and be more consistent with MPEG in the
476 descriptions.
477 * debian/patches/75_build_docs_without_python_xml.patch,
478 debian/build-deps.in:
479 + Stop using pyxml for building the docs (Closes: #468626).
480 * debian/patches/01_xingmux-header-position.patch:
481 + Write the Xing header at the correct position for stereo files.
482 Patch from upstream CVS.
483 * debian/patches/02_mp3parse-timestamps.patch:
484 + Try harder to get correct timestamps with mp3parse.
485 Patch from upstream CVS.
486 * debian/patches/03_mp3-tag-caching.patch:
487 + Cache all events except EOS, this fixes missing tags when reenconding
488 MP3s. Patch from upstream CVS.
489
490 -- Sebastian Dröge <slomo@debian.org> Tue, 11 Mar 2008 05:20:22 +0100
491
492gst-plugins-ugly0.10 (0.10.7-1) unstable; urgency=low
493
494 * New upstream release, "I Cheated Time".
495
496 -- Sebastian Dröge <slomo@debian.org> Thu, 21 Feb 2008 10:49:32 +0100
497
498gst-plugins-ugly0.10 (0.10.6.4-1) experimental; urgency=low
499
500 * New upstream pre-release.
501 * debian/patches/99_ltmain_as-needed.patch,
502 debian/rules:
503 + Add -Wl,-z,defs -Wl,-O1 -Wl,--as-needed to LDFLAGS to remove some
504 unnecessary dependencies on various packages.
505
506 -- Sebastian Dröge <slomo@debian.org> Tue, 19 Feb 2008 06:55:26 +0100
507
508gst-plugins-ugly0.10 (0.10.6.3-1) experimental; urgency=low
509
510 * New upstream pre-release.
511 * debian/build-deps.in:
512 + Build depend on gstreamer0.10-plugins-base for the unit tests.
513
514 -- Sebastian Dröge <slomo@debian.org> Thu, 14 Feb 2008 13:17:48 +0100
515
516gst-plugins-ugly0.10 (0.10.6.2-1) experimental; urgency=low
517
518 [ Sebastian Dröge ]
519 * debian/rules:
520 + Fix setting of the GST_REGISTRY environment variable.
521
522 [ Emilio Pozuelo Monfort ]
523 * debian/rules:
524 - Decide the package name and url depending on the distribution.
525 * debian/build-deps.in:
526 - Build-Depend on lsb-release.
527
528 [ Sebastian Dröge ]
529 * New upstream pre-release:
530 + Fixes FTBFS if built twice in a row (Closes: #424383).
531 + debian/rules,
532 debian/build-deps.in:
533 - Update liboil and gstreamer build dependencies.
534 + debian/patches/00-mpegaudioparse-cvs20071117.patch:
535 - Dropped, merged upstream.
536 + debian/control.in:
537 - Add Conflicts for gst-plugins-bad as the xingmux element moved
538 to the mpegaudioparse plugin and having the one from bad and ugly
539 installed at the same time will give errors.
540 - Update Standards-Version to 3.7.3, no additional changes needed.
541 * debian/rules:
542 + Run unit test suite but don't fail the build on failures.
543
544 -- Sebastian Dröge <slomo@debian.org> Sat, 09 Feb 2008 13:48:43 +0100
545
546gst-plugins-ugly0.10 (0.10.6-3) unstable; urgency=low
547
548 [ Sebastian Dröge ]
549 * debian/rules:
550 + Set GST_REGISTRY before the dh_gstscancodecs call to save the registry
551 somewhere on buildds without writable home and speed things up a
552 bit.
553 * debian/build-deps.in:
554 + Remove check from build dependencies. This is only an indirect build
555 dependency that is already satisfied by libgstreamer0.10-dev. configure
556 only checks for libgstcheck, not check.
557
558 [ Sjoerd Simons ]
559 * Added debian/patches/00-mpegaudioparse-cvs20071117.patch
560 - Updates mpegaudioparse to the CVS version of 17-11-2007
561 - No longer sends segments before the caps are fixed which seems to confuse
562 autopluggers and causes MP3 playback to fail with the latest gstreamer
563
564 -- Sjoerd Simons <sjoerd@debian.org> Sat, 17 Nov 2007 20:58:36 +0100
565
566gst-plugins-ugly0.10 (0.10.6-2) unstable; urgency=low
567
568 * debian/build-deps.in,
569 debian/rules:
570 + Call dh_gstinstallcodecs to generate the codecs database.
571 * debian/gstreamer-plugins-ugly.install:
572 + Ship translations with the plugin package.
573
574 -- Sebastian Dröge <slomo@debian.org> Fri, 31 Aug 2007 09:38:17 +0200
575
576gst-plugins-ugly0.10 (0.10.6-1) unstable; urgency=low
577
578 [ Sebastian Dröge ]
579 * New upstream release, "The Sacrifice":
580 + debian/rules,
581 debian/build-deps.in:
582 - Require gstreamer and gst-plugins-base (>= 0.10.13).
583 + debian/patches/30_gstasfdemux_length-guards.patch:
584 - Dropped, merged upstream.
585 * debian/control.in:
586 + Use ${binary:Version} instead of ${Source-Version} to make lintian happy.
587
588 [ Loic Minier ]
589 * Cleanup sed foo and add a rule to strip empty build-dep substistutions.
590 * Add a grep to the Perl build-deps generation to strip empty lines.
591
592 -- Sebastian Dröge <slomo@debian.org> Tue, 19 Jun 2007 19:30:44 +0200
593
594gst-plugins-ugly0.10 (0.10.5-2) unstable; urgency=low
595
596 * Upload to unstable
597 * Merge experimental branch:
598 + New upstream release 0.10.5, "She Said":
599 - Fixes playing of avi files over the network (Closes: #370364)
600 - debian/rules:
601 . Require gstreamer >= 0.10.6
602 - debian/patches/01_ac3-handling-fix.patch,
603 debian/patches/02_mpeg2dec-ppc.patch:
604 . Dropped, merged upstream
605 * debian/control.in:
606 + Update to use my debian.org address
607
608 -- Sebastian Dröge <slomo@debian.org> Wed, 11 Apr 2007 08:57:18 +0200
609
610gst-plugins-ugly0.10 (0.10.4-5) unstable; urgency=medium
611
612 * New patch, 30_gstasfdemux_length-guards, adds length guarding checks and
613 fixes a memory leak; backported from GNOME #336370.
614
615 -- Loic Minier <lool@dooz.org> Mon, 26 Feb 2007 17:33:24 +0100
616
617gst-plugins-ugly0.10 (0.10.4-4) unstable; urgency=low
618
619 * Merge 0.10.4-3 from experimental.
620 * Upload to unstable.
621
622 -- Loic Minier <lool@dooz.org> Mon, 13 Nov 2006 13:50:34 +0100
623
624gst-plugins-ugly0.10 (0.10.4-3) experimental; urgency=low
625
626 * Re-add -dbg package.
627 * Target at experimental.
628
629 -- Loic Minier <lool@dooz.org> Tue, 17 Oct 2006 18:34:55 +0200
630
631gst-plugins-ugly0.10 (0.10.4-2sid2) unstable; urgency=low
632
633 * debian/patches/02_mpeg2dec-ppc.patch:
634 + Updated. Fix warnings when there are GstBaseTransform elements
635 downstream. Also take a timestamp fix from upstream CVS.
636
637 -- Sebastian Dröge <slomo@ubuntu.com> Mon, 6 Nov 2006 18:17:14 +0100
638
639gst-plugins-ugly0.10 (0.10.4-2sid1) unstable; urgency=low
640
641 [ Sebastian Dröge ]
642 * debian/patches/patches/02_mpeg2dec-ppc.patch:
643 + 16byte-align the mpeg2dec outbuf buffer to prevent segfaults on PPC with
644 altivec optimizations (Closes: #365718)
645 http://bugzilla.gnome.org/show_bug.cgi?id=327350
646
647 [ Loic Minier ]
648 * Set version to 0.10.4-2sid1 as -3 was uploaded towards experimental.
649
650 -- Loic Minier <lool@dooz.org> Thu, 2 Nov 2006 18:35:11 +0100
651
652gst-plugins-ugly0.10 (0.10.4-2) unstable; urgency=low
653
654 [ Sebastian Dröge ]
655 * debian/patches/01_ac3-handling-fix.patch:
656 + Fix volume handling when downmixing
657 * debian/rules,
658 debian/control.in:
659 + Add a -dbg package
660
661 [ Loic Minier ]
662 * Drop -dbg package for now, this version is for etch.
663
664 -- Loic Minier <lool@dooz.org> Tue, 17 Oct 2006 18:31:37 +0200
665
666gst-plugins-ugly0.10 (0.10.4-1) unstable; urgency=low
667
668 [ Sebastian Dröge ]
669 * New upstream release, "Metal Molly"
670 * debian/compat,
671 debian/build-deps.in:
672 + Update to debhelper compat level 5
673
674 [ Loic Minier ]
675 * Don't build the doc on arm and m68k. It's painfully long, and -- at least
676 on arm -- it sometimes segfaults; also see #383147.
677
678 -- Loic Minier <lool@dooz.org> Wed, 23 Aug 2006 21:43:58 +0200
679
680gst-plugins-ugly0.10 (0.10.3-2) unstable; urgency=low
681
682 * Bump up Standards-Version to 3.7.2.
683 [debian/control, debian/control.in]
684 * Build-dep on libdvdread-dev (>= 0.9.0) | libdvdread3-dev (>= 0.9.0) since
685 sbuild fails building despite the added Provides, thanks Julien Danjou.
686 (Closes: #366169)
687
688 -- Loic Minier <lool@dooz.org> Wed, 14 Jun 2006 22:24:06 +0200
689
690gst-plugins-ugly0.10 (0.10.3-1) unstable; urgency=low
691
692 [ Sebastian Dröge ]
693 * New upstream release, "Late Plane".
694 * Added myself to Uploaders
695
696 [ Loic Minier ]
697 * Fixed release name above. :)
698
699 -- Loic Minier <lool@dooz.org> Mon, 3 Apr 2006 17:09:57 +0200
700
701gst-plugins-ugly0.10 (0.10.2-1) unstable; urgency=low
702
703 * New upstream release, "Season to Taste".
704
705 -- Loic Minier <lool@dooz.org> Tue, 21 Feb 2006 17:02:44 +0100
706
707gst-plugins-ugly0.10 (0.10.1.3-1) unstable; urgency=low
708
709 * New upstream pre-release.
710
711 -- Loic Minier <lool@dooz.org> Mon, 20 Feb 2006 20:09:41 +0100
712
713gst-plugins-ugly0.10 (0.10.1.2-1) unstable; urgency=low
714
715 * New upstream pre-release.
716 - Bump up libgstreamer-plugins-base0.10-dev build-dep to 0.10.3.
717 [debian/build-deps, debian/build-deps.in, debian/control]
718 - Add asfdemux plugin.
719 [debian/gstreamer-plugins-ugly.install]
720 - Add dvdread plugin and build-dep on libdvdread3-dev >= 0.9.0.
721 [debian/build-deps, debian/build-deps.in, debian/control,
722 debian/gstreamer-plugins-ugly.install]
723
724 -- Loic Minier <lool@dooz.org> Sat, 18 Feb 2006 09:02:11 +0100
725
726gst-plugins-ugly0.10 (0.10.1-1) unstable; urgency=low
727
728 * New upstream release, "Peng".
729 - Bump libgstreamer-plugins-base0.10-dev to >= 0.10.1.
730 [debian/build-deps, debian/build-deps.in, debian/control]
731 - Bump libgstreamer0.10-dev to >= 0.10.1.
732 [debian/control, debian/rules]
733 * Drop useless gst_plugins_base_lib, gst_plugins_base_lib_dev,
734 gst_plugins_base_lib_dev_dep, and gst_plugins_ugly_version declarations.
735 [debian/rules]
736 * Use upstream descriptions in packages descriptions.
737 [debian/control, debian/control.in]
738
739 -- Loic Minier <lool@dooz.org> Sat, 11 Feb 2006 17:31:08 +0100
740
741gst-plugins-ugly0.10 (0.10.0-1) unstable; urgency=low
742
743 [ Sebastian Dröge ]
744 * New package;
745 + Re-added the debian/extra hack from the gst-plugins0.8 package
746 + Adjusted package names, install files, etc
747
748 [ Loic Minier ]
749 * Upload to unstable.
750
751 -- Loic Minier <lool@dooz.org> Sun, 1 Jan 2006 22:50:13 +0100
752
753gst-plugins-good0.10 (0.10.0-1) unstable; urgency=low
754
755 [ Sebastien Bacher ]
756 * New package:
757 - clean patches
758 [debian/patches/50_cdparanoia-fix-eos-detection-of-last-title.patch]
759 - updated Build-Depends [debian/build-deps.in]
760 - updated documentation [debian/README.Debian, debian/TODO.Debian]
761 - updated packages list [debian/control.in, debian/gstreamer-alsa.install,
762 debian/gstreamer-gnomevfs.install, debian/gstreamer-misc.install,
763 debian/gstreamer-plugins-base-apps.instal,
764 debian/gstreamer-plugins-base-apps.manpages,
765 debian/gstreamer-plugins-base-doc.install,
766 debian/gstreamer-x.install, debian/libgstreamer-plugins-base-dev.install,
767 debian/libgstreamer-plugins-base.install, debian/gstreamer-aa.install,
768 debian/gstreamer-auto.install, debian/gstreamer-caca.install,
769 debian/gstreamer-esd.install, debian/gstreamer-misc-good.install,
770 debian/gstreamer-oss.install, debian/gstreamer-plugins-good-doc.install,
771 debian/rules]
772 - updated upstream location [debian/watch]
773 - don't use type-handling it's not useful
774 [debian/build-deps.in, debian/control.in, debian/rules]
775
776 [ Loic Minier ]
777 * Merge aa, auto, caca, and oss packages and plugins in misc and let it
778 provide audio and videosinks; use a couple of @GST_ABI@s where
779 appropriate.
780 [debian/control, debian/control.in,
781 debian/gstreamer-aa.install, debian/gstreamer-caca.install,
782 debian/gstreamer-misc-good.install, debian/gstreamer-oss.install,
783 debian/rules]
784 * Rename for good misc-good in good.
785 [debian/control debian/control.in
786 debian/gstreamer-misc-good.install debian/rules]
787 * Downgrade cdbs build-dep for Debian.
788 [debian/build-deps, debian/build-deps.in, debian/control]
789 * Rename gstreamer0.10-good in gstreamer0.10-plugins-good.
790 [debian/control, debian/control.in, debian/gstreamer-good.install,
791 debian/gstreamer-plugins-good.install, debian/rules]
792 * Add a build-dep on check.
793 [debian/build-deps, debian/build-deps.in, debian/control]
794 * Remove python-twisted build-dep.
795 [debian/build-deps, debian/build-deps.in, debian/control]
796
797 -- Loic Minier <lool@dooz.org> Wed, 21 Dec 2005 17:37:46 +0100
798
799gst-plugins-base0.10 (0.10.0-1) unstable; urgency=low
800
801 [ Sebastien Bacher ]
802 * New package:
803 - build the documentation [debian/rules]
804 - no action needed to register the plugins with the new version
805 [debian/gstreamer-plugin-template.postinst,
806 debian/gstreamer-plugin-template.postrm,
807 debian/libgstreamer-plugins.postinst,
808 debian/libgstreamer-plugins.postrm, debian/rules]
809 - drop mechanism to build extra packages for other distributions around,
810 it's not useful for base [debian/extras, debian/rules]
811 - drop transitionnal workaround [debian/gstreamer-plugin-template.preinst]
812 - new gstreamer-plugin-base-doc package [debian/control.in, debian/rules]
813 - remove obsolete patches
814 [debian/patches/10_wavpack-high-quality-segfault.patch,
815 debian/patches/30_alsa-verify-accepted-period-size.patch,
816 debian/patches/31_alsa-advanced-probing.patch,
817 debian/patches/40_audioscale-timestamps-and-durations.patch,
818 debian/patches/50_ladspa-quiet.patch]
819 - updated the Build-Depends [debian/build-dep.in]
820 - updated the packages descriptions [debian/control.in]
821 - updated the packages names/list [debian/control.in,
822 debian/gstreamer-a52dec.install, debian/gstreamer-aa.install,
823 debian/gstreamer-artsd.install, debian/gstreamer-audiofile.install,
824 debian/gstreamer-avifile.install, debian/gstreamer-caca.install,
825 debian/gstreamer-cdio.install, debian/gstreamer-dvd.install,
826 debian/gstreamer-dv.install, debian/gstreamer-esd.install,
827 debian/gstreamer-festival.install, debian/gstreamer-flac.install,
828 debian/gstreamer-gsm.install, debian/gstreamer-gtk.install,
829 debian/gstreamer-hermes.install, debian/gstreamer-jpeg.install,
830 debian/gstreamer-lame.install, debian/gstreamer-mad.install,
831 debian/gstreamer-mikmod.install, debian/gstreamer-mms.install,
832 debian/gstreamer-mpeg2dec.install, debian/gstreamer-oss.install,
833 debian/gstreamer-sdl.install, debian/gstreamer-sid.install,
834 debian/gstreamer-speex.install, debian/gstreamer-swfdec.install,
835 debian/libgstreamer-gconf.install, debian/libgstreamer-gconf-dev.install,
836 debian/gstreamer-vorbis.install, debian/rules]
837 - updated the packages lists [debian/gstreamer-misc.install,
838 debian/libgstreamer-plugins-base-dev.install,
839 debian/libgstreamer-plugins-base.install]
840 - updated packages content
841 [debian/gstreamer-misc.install, debian/gstreamer-x.install]
842 - updated the version [debian/rules]
843 - updated watch file [debian/watch]
844
845 [ Loic Minier ]
846 * Minor cleanups.
847 [debian/rules]
848 * Add Sebastien Bacher to Uploaders.
849 [debian/control, debian/control.in]
850
851 -- Loic Minier <lool@dooz.org> Sat, 17 Dec 2005 18:11:03 +0100
852
853gst-plugins0.8 (0.8.11-3) unstable; urgency=medium
854
855 * New CDIO plugin package.
856 . Add libcdio-dev build-dep for CDIO support.
857 [debian/build-deps.in, debian/build-deps, debian/control]
858 . Add package description and file listing.
859 [debian/gstreamer-cdio.install, debian/control.in, debian/control]
860 . List package in plugins build-list. [debian/rules]
861 . List package in gstreamer-plugins deps.
862 [debian/control.in, debian/control]
863 * New MMS plugin package. (Closes: #301246)
864 . Add libmms-dev build-dep for mms:// and mmsh:// support.
865 [debian/build-deps.in, debian/build-deps, debian/control]
866 . Add package description and file listing.
867 [debian/gstreamer-cdio.install, debian/control.in, debian/control]
868 . List package in plugins build-list. [debian/rules]
869 . List package in gstreamer-plugins deps.
870 [debian/control.in, debian/control]
871 * Fix the homepage of the mikmod page and stop linking to an adult web site.
872 [debian/control, debian/control.in]
873 * Remove "Section: libs" from binary packages.
874 [debian/control, debian/control.in]
875 * Exit with non-zero code when requesting an unknown plugin.
876 [debian/extra]
877 * Add sample code to permit other distros to build additional plugins.
878 [debian/rules]
879 * Minor cleanups.
880 [debian/rules]
881 * New Gtk / Gdk package to split out this dep-tree for KDE folks, from
882 Ubuntu, thanks Sebastien Bacher.
883 . Add package description and file listing, remove it from -misc.
884 [debian/control.in, debian/control, debian/gstreamer-gtk.install,
885 debian/gstreamer-misc.install]
886 . List package in plugins build-list. [debian/rules]
887 . List package in gstreamer-plugins deps.
888 [debian/control.in, debian/control]
889 . Only "Replace" with -misc in the first version doing the split
890 (0.8.11-0ubuntu3), no Conflict needed.
891 * Add wavpack support, build the wavpack plugin and ship it in -misc.
892 (Closes: #339598)
893 . Add a libwavpack-dev build-dep.
894 [debian/build-deps, debian/build-deps.in]
895 . Ship plugin in -misc.
896 [debian/gstreamer-misc.install]
897 . Adjust the size of the internal decode buffer dynamically instead of
898 assuming 0.5 seconds are enough; fixes a segfault when playing files
899 encoded with -h; upstream bug: #317774; fix committed in branch
900 BRANCH-GSTREAMER-0_8.
901 [debian/patches/10_wavpack-high-quality-segfault.patch]
902 * Backport some interesting upstream fixes from CVS fixing most resampling
903 issues for non-standard bitrates and for complex ALSA configurations
904 (especially dmix), thanks Tim-Philipp Müller, Luca Ognibene, and others.
905 (Closes: #323447, #324163, #326135, #340038)
906 - When doing _set_period_size_near(), see what period size was actually
907 set in the end and continue working with that value instead of just
908 assuming the desired period size was accepted; upstream bug #318767;
909 fix committed in branch BRANCH-GSTREAMER-0_8.
910 [debian/patches/30_alsa-verify-accepted-period-size.patch]
911 - Don't mess up timestamps and durations when resampling by more than a
912 factor of 2 (e.g. 8kHz => 48kHz); upstream bug #318273; fix committed
913 in branch BRANCH-GSTREAMER-0_8.
914 [debian/patches/40_audioscale-timestamps-and-durations.patch]
915 - When the default device is being used, try to probe the caps of the
916 underlying device instead if possible. This should give more narrowly
917 defined caps that are closer to the hardware's capabilities. This is
918 enabled by default, but can be switched off via the new
919 'advanced-probing' property; upstream bug #315121; fix committed in
920 branch BRANCH-GSTREAMER-0_8.
921 [debian/patches/31_alsa-advanced-probing.patch]
922 * Drop the polypaudio plugin package. (Closes: #342278)
923 . Drop libpolyp-dev (>= 0.7) build-dep.
924 [debian/build-deps.in, debian/build-deps, debian/control]
925 . Remove package description and file listing.
926 [debian/gstreamer-polypaudio.install, debian/control.in, debian/control]
927 . Remove package from plugins build-list. [debian/rules]
928 . Remove package from gstreamer-plugins deps.
929 [debian/control.in, debian/control]
930 * Add libgconf2-dev, libglib2.0-dev, liborbit2-dev, libpopt-dev, libxml2-dev
931 deps to libgstreamer-gconf0.8-dev as listed in its .la files.
932 [debian/control, debian/control.in]
933 * Add libglib2.0-dev, libpopt-dev, libxml2-dev deps to
934 libgstreamer-plugins0.8-dev as listed in its .la files.
935 [debian/control, debian/control.in]
936 * Fix EOS detection for last title (fixes gnome-cd hanging after last track
937 ends), thanks Gustavo Noronha Silva; upstream bug #317630; fix committed
938 in branch BRANCH-GSTREAMER-0_8. (Closes: #330954)
939 [debian/patches/50_cdparanoia-fix-eos-detection-of-last-title.patch]
940 * Don't overwrite DEB_CONFIGURE_EXTRA_FLAGS.
941 [debian/rules]
942
943 -- Loic Minier <lool@dooz.org> Sun, 11 Dec 2005 14:52:38 +0100
944
945gst-plugins0.8 (0.8.11-2) unstable; urgency=high
946
947 * Add misc:depends to all binary packages. (Closes: #329759)
948
949 -- Loic Minier <lool@dooz.org> Mon, 17 Oct 2005 21:41:54 +0200
950
951gst-plugins0.8 (0.8.11-1) unstable; urgency=low
952
953 * Override gstreamer-dv section to extra because it depends on libavc1394-0
954 which is in extra. [debian/control, debian/control.in]
955 * Bump libflac-dev build-dependency for the latest flac soname change
956 (libflac6 -> libflac7). (Closes: #325940)
957 * New upstream release, "... And Thanks For All The Fix".
958 - New plugin imagemixer. [debian/gstreamer-misc.install]
959 - New plugin dvdsubdec. [debian/gstreamer-misc.install]
960 - Drop obsolete artsd patch, merged upstream.
961 [debian/patches/25_artds-no-name.patch]
962 * Update FSF address. [debian/copyright]
963 * Add cairo plugin. [debian/build-deps, debian/build-deps.in,
964 debian/control, debian/gstreamer-misc.install]
965
966 -- Loic Minier <lool@dooz.org> Sun, 4 Sep 2005 21:19:47 +0200
967
968gst-plugins0.8 (0.8.10-3) unstable; urgency=high
969
970 * Urgency high because this fixes some RC bugs and 0.8.10-2 was caught in
971 the C++ transition.
972 * Bump up build-deps to get versions past the C++ transition.
973 [debian/build-deps, debian/build-deps.in, debian/control]
974 - libsdl1.2-dev
975 - libsidplay1-dev (Closes: #321315)
976 - libarts1-dev, libartsc0-dev
977 * Change X11 build-deps for the Xorg transition.
978 [debian/build-deps, debian/build-deps.in, debian/control]
979 - remove xlibs-dev and xlibs-pic.
980 - add libx11-dev, libxext-dev, and libxv-dev.
981 * Drop jack plugin. [debian/build-deps, debian/build-deps.in,
982 debian/control, debian/control.in, debian/gstreamer-jack.install,
983 debian/rules] (Closes: #321648)
984 * Add libgstglimagesink plugin. [debian/gstreamer-x.install]
985 * Add libgstfreeze plugin. (Closes: #318146) [debian/gstreamer-misc.install]
986 * Let libgstreamer-gconf suggest gnome-media. (Closes: #294490)
987 [debian/control, debian/control.in]
988
989 -- Loic Minier <lool@dooz.org> Fri, 12 Aug 2005 18:36:58 +0200
990
991gst-plugins0.8 (0.8.10-2) unstable; urgency=medium
992
993 [ Sebastien Bacher ]
994 * debian/build-deps.in:
995 - list libpolyp-dev.
996 * debian/control.in:
997 - gstreamer0.8-plugins depends on gstreamer0.8-polypaudio.
998 - gstreamer0.8-polypaudio description.
999 * gstreamer-polypaudio.install:
1000 - install libpolypaudio.so.
1001 * debian/rules:
1002 - list polypaudio.
1003
1004 [ Loic Minier ]
1005 * Update jack dependency. (Closes: #317197)
1006 [debian/build-deps, debian/build-deps.in, debian/control]
1007 * Update aalib dependency. (Closes: #320886)
1008 [debian/build-deps, debian/build-deps.in, debian/control]
1009
1010 * Urgency medium because of RC.
1011
1012 -- Loic Minier <lool@dooz.org> Sun, 10 Jul 2005 19:27:08 +0200
1013
1014gst-plugins0.8 (0.8.10-1) unstable; urgency=low
1015
1016 * Loic Minier:
1017 * New upstream release "Jangle".
1018 - Bump inter-dependencies to >= 0.8.10.
1019 * Use upstream fix for the "name" property of the artsdsink element.
1020 [debian/patches/25_artds-no-name.patch]
1021
1022 -- Loic Minier <lool@dooz.org> Sat, 2 Jul 2005 21:04:40 +0200
1023
1024gst-plugins0.8 (0.8.9-2) unstable; urgency=medium
1025
1026 * Loic Minier:
1027 * Urgency medium as last gstreamer0.8 release exposed an artsdsink
1028 problem fixed here.
1029 * Add a versioned dependency with >= current-upstream-version to all
1030 current shlibs inter-dependencies to ensure consistency of symbols.
1031 (Closes: #315556) [debian/control, debian/control.in, debian/rules]
1032 * Remove the "name" property in the artsd plugin as it interferes with
1033 the usage of this property within GStreamer. (Closes: #314762)
1034 [debian/patches/25_artds-no-name.patch]
1035 * Call gst-register and gst-compprep with GST_REGISTRY in their
1036 environment to override the default behavior of writing to
1037 /root/.gstreamer-0.8, waiting for an upstream fix.
1038 [debian/gstreamer-plugin-template.postinst,
1039 debian/gstreamer-plugin-template.postrm]
1040 * Add a postinst/postrm snipset to register plugins in
1041 libgstreamer-plugins0.8. (Closes: #283658)
1042 [debian/libgstreamer-plugins.postrm,
1043 debian/libgstreamer-plugins.postinst, debian/changelog, debian/rules]
1044 * Remove left over /root/.gstreamer-0.8 tree if it hasn't been modified.
1045 [debian/gstreamer-plugin-template.preinst, debian/rules]
1046 * Set Maintainer to group. [debian/control, debian/control.in]
1047 * Bump Standards-Version to 3.6.2, no change needed.
1048 [debian/control, debian/control.in]
1049 * Workaround type-handling bug #315761.
1050 [debian/control, debian/control.in, debian/rules]
1051
1052 -- Loic Minier <lool@dooz.org> Mon, 27 Jun 2005 15:44:35 +0200
1053
1054gst-plugins0.8 (0.8.9-1) unstable; urgency=low
1055
1056 * Loic Minier:
1057 * New upstream release "Old Hat".
1058 - Fix SIGFPE in alsasrc. (Closes: #279399)
1059 - New Musepack plugin package.
1060 . Add libmpcdec-dev build-dep for Musepack support, this is now
1061 detected in a Debian compatible manner via mpcdec/mpcdec.h and
1062 -lmpcdec. [debian/build-deps.in, debian/build-deps, debian/control]
1063 . Add package description and file listing.
1064 [debian/gstreamer-musepack.install, debian/control.in,
1065 debian/control]
1066 . List package in plugins build-list. [debian/rules]
1067 . List package in gstreamer-plugins deps.
1068 [debian/control.in, debian/control]
1069 - Renamed and updated "ladspa" patch.
1070 [debian/patches/ladspa-quiet.patch,
1071 debian/patches/50_ladspa-quiet.patch]
1072 - Add video4linuxradio plugin to the gstreamer-misc package.
1073 [debian/rules]
1074 * Add compatibility block for older dpkg and use DEB_HOST_ARCH_OS.
1075 * Add myself as uploader. [debian/control.in, debian/control]
1076 * Fix indentation and executable permission of package maintaining
1077 helpers. [debian/extra, debian/maint, debian/mk.control]
1078 * Remove more bits from the arts plugin, left over in 0.8.1-2.
1079 [debian/extra, debian/gstreamer-arts.install]
1080 * Document the role of most files. [debian/HACKING.Debian]
1081 * Add a TODO list for the Debian package. [debian/TODO.Debian]
1082
1083 -- Loic Minier <lool@dooz.org> Tue, 21 Jun 2005 07:47:04 +0200
1084
1085gst-plugins0.8 (0.8.8-3) unstable; urgency=low
1086
1087 * debian/build-deps.in:
1088 * Bump liboil dependency to liboil0.3-dev. gst-plugins doesn't yet use
1089 0.3 itself but the swfdec plugin build requires it.
1090
1091 -- David I. Lehn <dlehn@debian.org> Wed, 30 Mar 2005 19:08:07 -0500
1092
1093gst-plugins0.8 (0.8.8-2) unstable; urgency=low
1094
1095 * debian/control.in:
1096 * gstreamer0.8-vorbis depends on gstreamer0.8-misc >= 0.8.8-1
1097 (Closes: #300082, #299954, #299921)
1098
1099 -- David I. Lehn <dlehn@debian.org> Thu, 17 Mar 2005 12:53:38 -0500
1100
1101gst-plugins0.8 (0.8.8-1) unstable; urgency=low
1102
1103 * New upstream
1104 * debian/patches/flac.patch:
1105 * Remove: included upstream
1106 * debian/gstreamer-misc.install:
1107 * Add new plugins: autodetect, dvdlpcmdec, puzzle, rfbsrc, subparse
1108 * Add new plugins with lib dependencies: gconfelements, mng, shout2
1109 (Closes: #292011)
1110 * debian/build-deps.in:
1111 * Add: libmng-dev, libshout3-dev
1112 * Upstream fixes:
1113 * Xv falls back to X11 (Closes: #296848)
1114 * Better audio sink selection (Closes: #284210)
1115 * alsasink crash (Closes: #296751)
1116
1117 -- David I. Lehn <dlehn@debian.org> Wed, 16 Mar 2005 01:00:39 -0500
1118
1119gst-plugins0.8 (0.8.7-3) unstable; urgency=low
1120
1121 * debian/rules, debian/build-deps.in
1122 * Apply additional kfreebsd-gnu patch (Closes: #272568)
1123 * debian/patches/flac.patch:
1124 * Upstream fix for FLAC API change (Closes: #290784)
1125
1126 -- David I. Lehn <dlehn@debian.org> Mon, 17 Jan 2005 17:53:42 -0500
1127
1128gst-plugins0.8 (0.8.7-2) unstable; urgency=low
1129
1130 * debian/rules:
1131 * Bump libgstreamer0.8-dev dependency to >= 0.8.7.1
1132
1133 -- David I. Lehn <dlehn@debian.org> Sat, 8 Jan 2005 15:50:45 -0500
1134
1135gst-plugins0.8 (0.8.7-1) unstable; urgency=low
1136
1137 * New upstream
1138 * debian/build-deps.in, debian/control.in, debian/rules,
1139 debian/gstreamer-dv.install, debian/gstreamer-misc.install:
1140 * Patch build system for kfreebsd-gnu (Closes: #272568)
1141 * debian/rules:
1142 * Distribute NEWS (as requested in #275717)
1143 * debian/gstreamer-misc.install:
1144 * Add new plugins: apetag, tta
1145 * debian/patches/configure-speex.patch:
1146 * Remove patch, included upstream
1147 * debian/build-deps.in:
1148 * Build against latest libflac-dev
1149
1150 -- David I. Lehn <dlehn@debian.org> Fri, 7 Jan 2005 13:52:27 -0500
1151
1152gst-plugins0.8 (0.8.6-1) unstable; urgency=low
1153
1154 * New upstream
1155 * Rhythmbox hangs/crashes fixes (Closes: #245757, #277146)
1156 * Rhythmbox silence after resume play fixes (Closes: #261841)
1157 * Ogg seeking fixes (Closes: #277396)
1158 * debian/build-deps.in:
1159 * Bump libswfdec to libswfdec0.3-dev
1160 * Add libavc1394-dev
1161 * Add liboil0.2-dev
1162 * Versioned libspeex-dev
1163 * debian/gstreamer-misc.install:
1164 * Add new plugin: equalizer
1165 * debian/watch:
1166 * Add watch file
1167 * debian/rules:
1168 * Update GStreamer core dev dependency to 0.8.4
1169 * ext/ladspa/gstladspa.c, debian/patches/ladspa-quiet.patch:
1170 * Move patch to debian/patches/
1171
1172 -- David I. Lehn <dlehn@debian.org> Mon, 29 Nov 2004 04:02:43 -0500
1173
1174gst-plugins0.8 (0.8.5-1) unstable; urgency=low
1175
1176 * New upstream
1177 * debian/rules:
1178 * Use CDBS simple-patchsys
1179 * debian/control: to debian/control:: for newer CDBS
1180 * debian/patches/configure-speex.diff:
1181 * Fix speex detection
1182
1183 -- David I. Lehn <dlehn@debian.org> Wed, 6 Oct 2004 20:15:52 -0400
1184
1185gst-plugins0.8 (0.8.4-1) unstable; urgency=low
1186
1187 * New upstream
1188 * debian/control.in:
1189 * Add -theora package to -plugins package
1190 * debian/rules:
1191 * Drop upstream ChangeLog from plugin packages due to size
1192 * debian/README.Debian:
1193 * Add note about ChangeLog
1194
1195 -- David I. Lehn <dlehn@debian.org> Thu, 2 Sep 2004 23:03:44 -0400
1196
1197gst-plugins0.8 (0.8.3-1) unstable; urgency=low
1198
1199 * New upstream
1200 * debian/control.in, debian/build-deps.in, debian/gstreamer-theora.install,
1201 debian/rules:
1202 * New theora plugin
1203 * debian/gstreamer-misc.install:
1204 * Add new plugins: alphacolor, decodebin, multifilesink, playbin
1205
1206 -- David I. Lehn <dlehn@debian.org> Sat, 7 Aug 2004 09:50:10 -0400
1207
1208gst-plugins0.8 (0.8.2-3) unstable; urgency=high
1209
1210 * debian/libgstreamer-gconf.postinst:
1211 Remove. schema install now handled by dh_gconf which moved the schema
1212 location causing old hardcoded /etc path to fail.
1213 (Closes: #259538, #259119, #259205)
1214 * Urgency high: GNOME team wants this in sarge now.
1215
1216 -- David I. Lehn <dlehn@debian.org> Fri, 16 Jul 2004 09:17:18 -0400
1217
1218gst-plugins0.8 (0.8.2-2) unstable; urgency=low
1219
1220 * debian/rules:
1221 * Bump libgstreamer0.8-dev dep up to get fixed shlibs
1222 * Rebuild with proper shlibs (Closes: #256181, #256494)
1223
1224 -- David I. Lehn <dlehn@debian.org> Wed, 7 Jul 2004 01:16:48 -0400
1225
1226gst-plugins0.8 (0.8.2-1) unstable; urgency=medium
1227
1228 * New upstream
1229 * debian/build-deps.in:
1230 * Add libdts-dev
1231 * ext/Makefile.{am,in}:
1232 * Fix so dts dir is built
1233 * debian/gstreamer-misc.install:
1234 * Add DTS plugin
1235 * Added alpha, audiorate, dtsdec, multipart, videobox, videomixer, and
1236 videorate
1237 * debian/rules:
1238 * Update libgstreamer0.8-dev build dependency to 0.8.3-2
1239 * debian/control.in:
1240 * Remove explicit libgstreamer deps, autodetected now
1241
1242 -- David I. Lehn <dlehn@debian.org> Wed, 23 Jun 2004 23:50:53 -0400
1243
1244gst-plugins0.8 (0.8.1-4) unstable; urgency=low
1245
1246 * gst-libs/gst/riff/riff-media.c:
1247 * caps type typo fix from CVS
1248 * gst-libs/gst/resample/private.h:
1249 * disabled ppc code fix from CVS (Closes: #252991)
1250 * sys/v4l/gstv4lsrc.c:
1251 * caps fix NULL->any from CVS
1252
1253 -- David I. Lehn <dlehn@debian.org> Wed, 16 Jun 2004 01:24:41 -0400
1254
1255gst-plugins0.8 (0.8.1-3) unstable; urgency=low
1256
1257 * rerun autoget.sh to fix arm builds (Closes: #251592)
1258 * gconf/gstreamer.schemas.in, gcon/gstreamer-0.8.schemas:
1259 s/xvideosink/xvimagesink/ (Closes: #250575)
1260
1261 -- David I. Lehn <dlehn@debian.org> Tue, 1 Jun 2004 10:10:37 -0400
1262
1263gst-plugins0.8 (0.8.1-2) unstable; urgency=low
1264
1265 * debian/build-deps.in:
1266 * Update "libdv2-dev" to "libdv4-dev | libdv-dev"
1267 * debian/control.in, debian/extra, debian/rules:
1268 * Remove arts plugin. Detection, flags, and include directory build code
1269 is too buggy for plugin to build at the moment.
1270
1271 -- David I. Lehn <dlehn@debian.org> Thu, 29 Apr 2004 18:10:48 -0400
1272
1273gst-plugins0.8 (0.8.1-1) unstable; urgency=low
1274
1275 * New upstream
1276 * debian/gstreamer-misc.install:
1277 * add libgstdebug.so
1278
1279 -- David I. Lehn <dlehn@debian.org> Sun, 18 Apr 2004 01:04:36 -0400
1280
1281gst-plugins0.8 (0.8.0-2) unstable; urgency=low
1282
1283 * Bump to -2 to ease upgrades for early -1 testers
1284 * debian/build-deps.in:
1285 * Add libgtk2.0-dev
1286
1287 -- David I. Lehn <dlehn@debian.org> Thu, 15 Apr 2004 17:50:14 -0400
1288
1289gst-plugins0.8 (0.8.0-1) unstable; urgency=low
1290
1291 * New upstream (Closes: #234071, #240663)
1292 * debian/rules:
1293 * Switch to CDBS
1294 * Version now at 0.8
1295 * Convert various control files to versioned ones for build
1296 * Add/rename/remove generated plugins files
1297 * debian/control.in:
1298 * Update Standards-Version to 3.6.1
1299 * Add -caca and -speex plugins
1300 * Remove -http plugin
1301 * debian/build-deps.in:
1302 * Add cdbs
1303 * Update debhelper >= 4.1.0
1304 * Add caca, speex, and pango deps
1305 * Remove libghttp-dev
1306 * debian/gstreamer-http.install
1307 * Remove
1308 * debian/gstreamer-{speex|caca}.install:
1309 * Add new plugins
1310 * debian/*.install:
1311 * Append debian/tmp for CDBS
1312 * General cleanups to support versioned files and locations
1313 * debian/gstreamer-esd.install:
1314 * Remove libgstesdmod
1315 * Change libgstesdsink to libgstesd
1316 * debian/gstreamer-plugin-libs.install:
1317 * Stick locale info in here for lack of a better place
1318 * debian/gstreamer-plugin-libs[-dev].install:
1319 * Add support for colorbalance, mixer, navigation, propertyprobe, tag,
1320 tuner, xoverlay, and xwindowlistener
1321 * Add pkgconfig support for plugins, interfaces, and media-info
1322 * debian/gstreamer-gnomevfs.install:
1323 * s/libgstgnomevfs{src|sink}.so/libgstgnomevfs.so/
1324 * debian/gstreamer-colorspace.install:
1325 * Rename to gstreamer-hermes.install
1326 * Move generic and ffmpeg based colorspace plugins to -misc
1327 * Provide gstreamerX.Y-colorspace
1328 * debian/gstreamer-misc.install:
1329 * v4l/v4l2 support merged to libgstvideo4linux[2].so
1330 * Add gdkpixbuf, interleave, nassink, ogg, smoothwave, tagedit,
1331 textoverlay, timeoverlay, typefindfunctions, videobalance, videodrop,
1332 videofilter, videoflip
1333 * Move generic and ffmpeg based colorspace plugins from -hermes
1334 * Provide gstreamerX.Y-colorspace
1335 * debian/gstreamer-plugin-libs.install:
1336 * Rename to libgstreamer-plugins.install
1337 * debian/gstreamer-plugin-libs-dev.install:
1338 * Rename to libgstreamer-plugins-dev.install
1339 * debian/gstreamer-gconf.install:
1340 * Rename libgstreamer-gconf.install
1341 * Remove dev files
1342 * debian/gstreamer-gconf.postinst:
1343 * Rename to libgstreamer-gconf.postinst
1344 * debian/libgstreamer-gconf-dev.install:
1345 * Added
1346 * Add dev parts from gstreamer-gconf.install
1347 * configure.ac, configure:
1348 * Patch from CVS to get arts to detect on Debian boxen
1349 * ext/speex/gstspeex{dec,enc}.c:
1350 * Upstream patch for static pad templates (caused gst-compprep-0.8 bugs)
1351 * ext/ladspa/gstladspa.c:
1352 * Change g_warning to DEBUG_OBJ to silence gst-compprep
1353 * ext/libcaca/gstcacsink.c:
1354 * Upstream patch to avoid cacasink windows with gst-inspect/compprep
1355
1356 -- David I. Lehn <dlehn@debian.org> Wed, 14 Apr 2004 19:14:14 -0400
1357
1358gst-plugins0.7 (0.7.6-1) unstable; urgency=low
1359
1360 * New upstream
1361
1362 -- David I. Lehn <dlehn@debian.org> Wed, 17 Mar 2004 19:06:48 -0500
1363
1364gst-plugins0.7 (0.7.5-1) unstable; urgency=low
1365
1366 * New upstream
1367
1368 -- David I. Lehn <dlehn@debian.org> Wed, 17 Mar 2004 18:47:19 -0500
1369
1370gst-plugins0.7 (0.7.4-1) unstable; urgency=low
1371
1372 * New upstream
1373
1374 -- David I. Lehn <dlehn@debian.org> Wed, 17 Mar 2004 18:46:27 -0500
1375
1376gst-plugins0.7 (0.7.3-1) unstable; urgency=low
1377
1378 * New upstream
1379
1380 -- David I. Lehn <dlehn@debian.org> Wed, 17 Mar 2004 18:42:05 -0500
1381
1382gst-plugins0.7 (0.7.1-1) unstable; urgency=low
1383
1384 * New upstream
1385 * Versioning package as 0.7
1386
1387 -- David I. Lehn <dlehn@debian.org> Wed, 17 Mar 2004 18:31:51 -0500
1388
1389gst-plugins (0.6.4-4) unstable; urgency=low
1390
1391 * ext/alsa/gstalsa.h:
1392 * Patch to compile with alsa-lib 1.0.x (Closes: #231870)
1393
1394 -- David I. Lehn <dlehn@debian.org> Sat, 14 Feb 2004 17:49:01 -0500
1395
1396gst-plugins (0.6.4-3) unstable; urgency=low
1397
1398 * debian/build-deps.in:
1399 * Update jack dependency to libjack0.80.0-dev (>= 0.94.0)
1400 (Closes: #221620, #228784)
1401 * Update libmpeg2 dependency to libmpeg2-4-dev (>= 0.4.0b)
1402 * ext/mpeg2dec/gstmpeg2dec.c: Patch for libmpeg2 0.4.0b
1403
1404 -- David I. Lehn <dlehn@debian.org> Mon, 26 Jan 2004 18:21:45 -0500
1405
1406gst-plugins (0.6.4-2) unstable; urgency=low
1407
1408 * debian/rules: Disable ffmpeg for everything but i386 due to PIC issues
1409 (Closes: #219284)
1410
1411 -- David I. Lehn <dlehn@debian.org> Thu, 6 Nov 2003 16:30:35 -0500
1412
1413gst-plugins (0.6.4-1) unstable; urgency=low
1414
1415 * New upstream
1416 * ESD updates (Closes: #218736)
1417 * Acknowledge NMU (Closes: #217981, #213811)
1418 * Rebuild to fix gconf liblinc1 dependency (Closes: #217771)
1419 * gstreamer-misc: add v4l2 support (Closes: #199900)
1420 * Use pre-Linux-2.6 videodev.h to compile v4l support
1421
1422 -- David I. Lehn <dlehn@debian.org> Mon, 3 Nov 2003 15:10:59 -0500
1423
1424gst-plugins (0.6.3-1.1) unstable; urgency=low
1425
1426 * NMU - Patch from Jordi Mallach
1427 * debian/build-deps.in: libgconf2-dev and libgnomevfs2-dev need GNOME 2.4
1428 versions for the liblinc1 transition (closes: #217981).
1429 * debian/rules: gstreamer build-dep should be versioned (>= 0.6.3)
1430 (closes: #213811).
1431
1432 -- LaMont Jones <lamont@debian.org> Thu, 30 Oct 2003 09:12:11 -0700
1433
1434gst-plugins (0.6.3-1) unstable; urgency=low
1435
1436 * New upstream
1437 * Includes ESD seeking fix (Closes: #201171)
1438
1439 -- David I. Lehn <dlehn@debian.org> Mon, 1 Sep 2003 23:15:49 -0400
1440
1441gst-plugins (0.6.2-2) unstable; urgency=low
1442
1443 * Fix ffmpeg makefile install rule to work even when ffmpeg build is
1444 disabled (Closes: #198148, #199072)
1445 * Apply partial patches from running autogen.sh to fix arm builds (excluding
1446 other unrelated generated file changes) (Closes: #199872)
1447 * Update to support libdvdnav 0.1.9 API
1448
1449 -- David I. Lehn <dlehn@debian.org> Fri, 11 Jul 2003 01:01:15 -0400
1450
1451gst-plugins (0.6.2-1) unstable; urgency=low
1452
1453 * New upstream
1454 * Add dv1394src to gstreamer-dv
1455
1456 -- David I. Lehn <dlehn@debian.org> Thu, 12 Jun 2003 11:39:51 -0400
1457
1458gst-plugins (0.6.1-2) unstable; urgency=low
1459
1460 * (unreleased)
1461 * Adapt to gstreamer package merge: remove -core, -core-libs, -core-libs-dev
1462 dependencies as needed. Fixes missing scheduler bugs.
1463 (Closes: #181503, #191720)
1464 * Use versioned gst-{register,compprep}-0.6
1465 * Update jack dependency to libjack0.71.2-dev (Closes: #195401)
1466 * Update libdvdnav dependency to (>= 0.1.7) and revert patch for
1467 compatibility with 0.1.3.
1468 * Update libdvdread2 dependency to libdvdread3-dev
1469 * Remove DISPLAY unset hacks from postinst/postrm scripts and fix non-X
1470 installs with 0.6.2 CVS xvideosink patch. (Closes: #165372, #168438)
1471 * Link libgstplay to libgstcontrol. (Closes: #194107)
1472
1473 -- David I. Lehn <dlehn@debian.org> Thu, 5 Jun 2003 02:29:44 -0400
1474
1475gst-plugins (0.6.1-1) unstable; urgency=low
1476
1477 * New upstream
1478 * Update maintainer address to @debian.org
1479 * gstreamer-gconf libs properly linked upstream (Closes: Bug#187353)
1480 * debian/control.in:
1481 * gstreamer-vorbis depends on gstreamer-core-libs (Closes: Bug#188606)
1482 * Apply gnomevfs patch from http://bugzilla.gnome.org/show_bug.cgi?id=94113
1483 * ffmpeg plugin only builds, and now is only packaged, on i386/powerpc (Yes
1484 this is bad - better shared lib support needed.) (Closes: Bug#186525)
1485 * Revert dvdnav support to libdvdnav 0.1.3 API
1486 * Unset DISPLAY before calling gst-register/gst-compprep
1487 * ext/ladspa/gstladspa.c:472: s/g_warning/GST_DEBUG/ to avoid printing of a
1488 warning on every plugin package install when swh-plugins is installed.
1489 (sinCos plugin executes this code path)
1490
1491 -- David I. Lehn <dlehn@debian.org> Sat, 3 May 2003 18:30:16 -0400
1492
1493gst-plugins (0.6.0-4) unstable; urgency=low
1494
1495 * debian/build-deps.in:
1496 * Updated libvorbis-dev to (>= 1.0.0-2) (Closes: Bug#184671)
1497
1498 -- David I. Lehn <dlehn@vt.edu> Fri, 14 Mar 2003 11:12:21 -0500
1499
1500gst-plugins (0.6.0-3) unstable; urgency=low
1501
1502 * debian/build-deps.in:
1503 * Add libartsc0-dev so artsc-config is present so arts[d] plugins get
1504 built so the arts[d] packages actually include the arts[d] plugins
1505 (Closes: Bug#181438)
1506 * Update JACK dependency to 0.50.0
1507
1508 -- David I. Lehn <dlehn@vt.edu> Fri, 7 Mar 2003 23:51:46 -0500
1509
1510gst-plugins (0.6.0-2) unstable; urgency=low
1511
1512 * NMU (with maintainer's permission)
1513 * Change libarts-dev build-dep to libarts1-dev (Closes: #180537)
1514
1515 -- David Schleef <ds@schleef.org> Mon, 10 Feb 2003 21:33:47 -0800
1516
1517gst-plugins (0.6.0-1) unstable; urgency=low
1518
1519 * New upstream
1520
1521 -- David I. Lehn <dlehn@vt.edu> Sat, 1 Feb 2003 21:51:54 -0500
1522
1523gst-plugins (0.5.2.3-1) unstable; urgency=low
1524
1525 * New upstream
1526
1527 -- David I. Lehn <dlehn@vt.edu> Thu, 30 Jan 2003 23:52:08 -0500
1528
1529gst-plugins (0.5.2.2-1) unstable; urgency=low
1530
1531 * New upstream
1532 * pre-release for 0.6.0
1533 * debian/gstreamer-gconf.install:
1534 * add gstreamer-gconf-*.pc
1535 * debian/gstreamer-misc.install:
1536 * remove libgstaviparse.so
1537
1538 -- David I. Lehn <dlehn@vt.edu> Wed, 29 Jan 2003 15:07:06 -0500
1539
1540gst-plugins (0.5.2-1) unstable; urgency=low
1541
1542 * New upstream
1543 * debian/build-deps.in:
1544 - Update swfdec dependency to 0.2.0
1545 * debian/gstreamer-misc.install:
1546 - add libgstaviparse.so
1547
1548 -- David I. Lehn <dlehn@vt.edu> Thu, 23 Jan 2003 22:17:31 -0500
1549
1550gst-plugins (0.5.1-1) unstable; urgency=low
1551
1552 * New upstream
1553 * Update GStreamer dependency to 0.5.1
1554 * Update JACK dependency to 0.44.0
1555 * Remove gstreamer-avifile package (avifile not supported on many
1556 architectures and upstream is deprecating it in favor of ffmpeg)
1557 * Add support for building unsupported plugin packages (avifile, lame, etc)
1558 * Tighten shlib deps for gstreamer-plugin-libs and gstreamer-gconf packages
1559 (may split off true lib* packages eventually, was trying to avoid even
1560 more packages)
1561 * gstreamer-misc: add oneton and vbidec
1562 * Rebuild for newer sid libs (Closes: Bug#177410)
1563 * Various small fixes from CVS
1564
1565 -- David I. Lehn <dlehn@vt.edu> Mon, 20 Jan 2003 11:57:26 -0500
1566
1567gst-plugins (0.5.0-1) unstable; urgency=low
1568
1569 * New upstream
1570 * Update libpng dependency to libpng12-0-dev
1571 * Patch from CVS to support mpeg2dec 0.3.1
1572 * Patch from CVS to improve X error handling and remote X usage
1573 * gstreamer-plugin-libs[-dev]: add media-info lib
1574 * gstreamer-misc: add png plugin
1575 * Use swfdec 0.1.3 API: s/swf_init/swfdec_decoder_new/ to avoid symbol
1576 conflicts with avifile plugin
1577
1578 -- David I. Lehn <dlehn@vt.edu> Tue, 17 Dec 2002 20:27:42 -0500
1579
1580gst-plugins (0.4.2-2) unstable; urgency=low
1581
1582 * Update JACK dependency to 0.40.1
1583 * Apply gst-launch-ext perlism patch (Closes: #170736)
1584 * Apply patch from Erik Meusel <meusel@codixx.de> to allow building with
1585 other KDE arts packages (Closes: Bug#167538)
1586 * Update mpeg2dec dependency to 0.3.0, convert over to gstmpeg2deccvs plugin
1587 code, and adjust mpeg2dec check
1588 * Add Provides: for virtual gstreamer-{audio,video}sink packages to make it
1589 easier for applications to ensure output sinks are available. This isn't
1590 foolproof and it's possible that a rare user might not need the standard
1591 packaged audio/video sinks. For now those users can use the "equivs"
1592 package to get around the problem. (Closes: Bug#169968)
1593
1594 -- David I. Lehn <dlehn@vt.edu> Wed, 4 Dec 2002 02:25:41 -0500
1595
1596gst-plugins (0.4.2-1.1) unstable; urgency=low
1597
1598 * NMU
1599 * Depend on swfdec-0.1.2-3, since it had a bug.
1600
1601 -- David Schleef <ds@schleef.org> Tue, 12 Nov 2002 17:43:48 -0800
1602
1603gst-plugins (0.4.2-1) unstable; urgency=low
1604
1605 * New upstream
1606 * Add libpng2-dev to Build-Depends for snapshot
1607 * Add smpte, snapshot, and wavenc to gstreamer-misc
1608 * Add video and play libs to gstreamer-plugin-libs{-dev}
1609 * Add gstreamer-swfdec plugin package
1610 * Add hack to swfdec plugin to not segfault when avifile also loaded due to
1611 symbols conflicts. This annoyance will spew errors during gst-compprep
1612 and probably will cause errors in apps that use both swfdec and avifile.
1613 * Tighten dependency on libgstreamer until upstream code can deal with
1614 multiple plugin versions and upgrades better
1615 * Move gstreamer-plugin-apps to Section: utils from x11
1616
1617 -- David I. Lehn <dlehn@vt.edu> Wed, 6 Nov 2002 21:41:01 -0500
1618
1619gst-plugins (0.4.1-1) unstable; urgency=low
1620
1621 * New upstream
1622 * Update FLAC dependency to 1.0.4 and add support patch from CVS
1623 * Rebuild for libflac4 (Closes: Bug#163549)
1624 * Build gconf code as a library rather than a plugin
1625 * Improved plugin descriptions
1626 * Added to -misc: cdplayer, videocrop, videotestsrc, mixmatrix
1627 * Add autotools-dev to Build-Depends
1628 * Update config.{guess,sub}
1629
1630 -- David I. Lehn <dlehn@vt.edu> Mon, 7 Oct 2002 17:51:43 -0400
1631
1632gst-plugins (0.4.0.2-cvs20020919-1) unstable; urgency=low
1633
1634 * CVS snapshot, release branch
1635 * gstreamer-gconf.files: libgstgconf.so moved to /usr/lib
1636 * added control.in, build-deps, and mk.control script. Edit control.in
1637 and/or build-deps, and run 'debian/rules debian/control' from toplevel
1638 directory to recreate debian/control. This should make it a lot
1639 easier to diff build dependencies.
1640
1641 -- David Schleef <ds@schleef.org> Thu, 19 Sep 2002 15:18:41 -0700
1642
1643gst-plugins (0.4.0-5) unstable; urgency=low
1644
1645 * Update Build-Depends
1646 * Use pkg-config checking vs m4 macros for libdv
1647
1648 -- David I. Lehn <dlehn@vt.edu> Fri, 23 Aug 2002 10:33:29 -0400
1649
1650gst-plugins (0.4.0-4) unstable; urgency=low
1651
1652 * Fixes from CVS for gstgnomevfssrc.c and endian issue in vorbisfile.c
1653
1654 -- David I. Lehn <dlehn@vt.edu> Fri, 2 Aug 2002 20:51:38 -0400
1655
1656gst-plugins (0.4.0-3) unstable; urgency=low
1657
1658 * Add ladspa-sdk to Build-Depends
1659 * Removed qcam plugin from -misc.
1660 It's i386 only and probably not widely used. Will figure out how to
1661 package in the future if someone needs it.
1662
1663 -- David I. Lehn <dlehn@vt.edu> Mon, 29 Jul 2002 16:32:33 -0400
1664
1665gst-plugins (0.4.0-2) unstable; urgency=low
1666
1667 * Clean up the Build-Depends:
1668 - stricter versioning
1669 - remove gnome deps (used for examples which are not build now)
1670 * Fix segfault in vorbis.m4 check
1671
1672 -- David I. Lehn <dlehn@vt.edu> Mon, 29 Jul 2002 10:47:12 -0400
1673
1674gst-plugins (0.4.0-1) unstable; urgency=low
1675
1676 * New upstream
1677 * FLAC compile fixes from CVS
1678 * DV comiled fixes
1679 * Upated ltmain hack
1680 * autogen.sh with more recent tools
1681 * Update config.{guess,sub}
1682 * Added plugin packages: -gconf, -http, -jack, -dv
1683 * Added dvdnav plugin to -dvd
1684 * Removed osshelper plugin from -oss
1685 * Added xvideosink back to -x
1686 * Added effectv, filter, and qtdemux plugins to -misc
1687 * Rename gstreamer-lib-misc{-dev} to gstreamer-plugin-libs{-dev} to match
1688 gstreamer core.
1689 * Added gstreamer-plugin-apps package for a lonely 2 scripts
1690 * Renamed gstreamer-all to gstreamer-plugins
1691
1692 -- David I. Lehn <dlehn@vt.edu> Tue, 16 Jul 2002 02:10:07 -0400
1693
1694gst-plugins (0.3.4-2) unstable; urgency=low
1695
1696 * Rebuild for new avifile
1697
1698 -- David I. Lehn <dlehn@vt.edu> Wed, 24 Apr 2002 14:06:46 -0400
1699
1700gst-plugins (0.3.4-1) unstable; urgency=low
1701
1702 * New upstream
1703 * Fix mpeg2dec.m4 to use newer mpeg2dec libs
1704
1705 -- David I. Lehn <dlehn@vt.edu> Mon, 15 Apr 2002 03:34:21 -0400
1706
1707gst-plugins (0.3.3-2) unstable; urgency=low
1708
1709 * Port a52dec plugin to 0.7.3 API (applied upstream)
1710 * Use a52dec packages in Debian vs current external ones
1711 * This switches a52dec plugin to static linking
1712 * Remove LAME support
1713 * No LAME packages in Debian to depend on
1714 * Added explanation in README.Debian since this will likely
1715 cause no end of "Why is there no LAME plugin?"
1716 * Depend on and rebuild for mpeg2dec 0.2.1
1717 * Depend on and rebuild for glib 2.0
1718 * Remove gtk from Build-Depends: (not needed for the built plugins)
1719
1720 -- David I. Lehn <dlehn@vt.edu> Sat, 23 Mar 2002 17:52:03 -0500
1721
1722gst-plugins (0.3.3-1) unstable; urgency=low
1723
1724 * New upstream version
1725 * SDL fixed upstream, remove patch
1726 * Require libid3tag for mad support
1727 * Remove xvideosink from gstreamer-x package in favor of videosink
1728 Needed to be removed due to symbol conflicts with videosink
1729 * Sync with upstream changes:
1730 * Added videosink to gstreamer-x package
1731 * parseau renamed to auparse in -misc
1732 * Added various plugins to -misc: goom, monoscope, modplug, ...
1733 * Note: new upstream scripts gst-launch-ext and gst-visualise not
1734 packaged yet
1735
1736 -- David I. Lehn <dlehn@vt.edu> Thu, 21 Mar 2002 02:06:21 -0500
1737
1738gst-plugins (0.3.2-3) unstable; urgency=low
1739
1740 * Rebuild for glib/gtk 1.3.15
1741
1742 -- David I. Lehn <dlehn@vt.edu> Mon, 25 Feb 2002 00:06:51 -0500
1743
1744gst-plugins (0.3.2-2) unstable; urgency=low
1745
1746 * Build against liblinc1 and newer gnomevfs
1747
1748 -- David I. Lehn <dlehn@vt.edu> Sun, 17 Feb 2002 15:52:57 -0500
1749
1750gst-plugins (0.3.2-1) unstable; urgency=low
1751
1752 * New upstream release
1753 * Many diffs merged upstream
1754 * Unversioned plugins upstream, just packaging .so (no .la, .a)
1755 * Added cdxa plugin to -misc
1756 * Various plugins in -misc moved around and merged upstream
1757
1758 -- David I. Lehn <dlehn@vt.edu> Fri, 15 Feb 2002 21:54:27 -0500
1759
1760gst-plugins (0.3.1-4) unstable; urgency=low
1761
1762 * Rebuild for glib/gtk 1.3.13
1763
1764 -- David I. Lehn <dlehn@vt.edu> Wed, 6 Feb 2002 02:16:16 -0500
1765
1766gst-plugins (0.3.1-3) unstable; urgency=low
1767
1768 * Fix arts symbol problem (add -lartsflow -lartsflow_idl)
1769 * Replace m4/gst-sdl.m4 with Debian's sdl.m4
1770 * Use SDL_LIBS_FOR_PLUGINS instead of SDL_LIBS
1771
1772 -- David I. Lehn <dlehn@vt.edu> Wed, 23 Jan 2002 12:37:00 -0500
1773
1774gst-plugins (0.3.1-2) unstable; urgency=low
1775
1776 * Rebuild against fixed gstreamer.pc in libgst-dev 0.3.1-2
1777 Should just link to libxml2 now rather than v1 and v2
1778
1779 -- David I. Lehn <dlehn@vt.edu> Wed, 23 Jan 2002 02:29:49 -0500
1780
1781gst-plugins (0.3.1-1) unstable; urgency=low
1782
1783 * Upstream split plugins into new package
1784 * Upstream removed mpg123 plugin - use mad plugin
1785 * Upstream removed ac3dec plugin - use a52dec
1786 * Added -lib-misc and -lib-misc-dev packages for
1787 library plugins and headers
1788 * Patch to link all plugins to GST_LIBS
1789
1790 -- David I. Lehn <dlehn@vt.edu> Fri, 11 Jan 2002 11:22:01 -0500
1791
1792gstreamer (0.3.0-3) unstable; urgency=low
1793
1794 * Remove upstream ChangeLog from packages: 128k changelog.gz per
1795 plugin package for 40 packages is too much
1796
1797 -- David I. Lehn <dlehn@vt.edu> Tue, 25 Dec 2001 23:36:28 -0500
1798
1799gstreamer (0.3.0-2) unstable; urgency=low
1800
1801 * Fix bug that slipped into 0.3.0: s/aasink/xvideosink/ in
1802 gstplay/gstplay.c
1803
1804 -- David I. Lehn <dlehn@vt.edu> Tue, 25 Dec 2001 17:56:29 -0500
1805
1806gstreamer (0.3.0-1) unstable; urgency=low
1807
1808 * New upstream release
1809 * Attempt to update various Build-Depends versions
1810 * Added plugin packages: -a52dec, -dvd, -mikmod, -sid
1811 * Renamed -elements to -core
1812 * Added to -core: gstbasicscheduler
1813 * Moved from -common to -core: gsttypes, autoplug related
1814 * Renamed -common to -misc
1815 * Added to -misc: speed, qcam, bytesteram, control, silence, sinesrc,
1816 mpegstream, playondemand, resample
1817 * Added gstreamer-guilaunch to gstreamer-tools package
1818 * Added dependencies on unofficial LAME packages
1819 * Use PIC libs for Xv
1820 * Disable broken building of PDF/PS docs
1821 * Renamed -all-plugins to -all
1822 * Disable docs -- too hard to build
1823
1824 -- David I. Lehn <dlehn@vt.edu> Fri, 21 Dec 2001 12:00:02 -0500
1825
1826gstreamer (0.2.1-4) unstable; urgency=low
1827
1828 * Fix some problems reported from lintian 1.20.14:
1829 * copyright-lists-upstream-authors-like-dh_make
1830 * debian-changelog-file-contains-user-emacs-settings
1831 * Patch from CVS to link libgst into plugins
1832 Plugins now properly depend on libgst package
1833 * Use RedHat Gtk+-1.3 hack to fix relink issues with ltmain.sh
1834 * Patch from CVS for xvideosink segfault when no DISPLAY set
1835 * Remove builddir references from gstreamer-config.in
1836 * Move libgstelements.la from libgst-dev to gstreamer-elements
1837
1838 -- David I. Lehn <dlehn@vt.edu> Tue, 28 Aug 2001 20:05:28 -0400
1839
1840gstreamer (0.2.1-3) unstable; urgency=low
1841
1842 * Update build dependencies to FLAC 1.0
1843 * Enable debug features
1844 * Fixup broken doc build -scan voodoo with link into .libs/ dir
1845
1846 -- David I. Lehn <dlehn@vt.edu> Sun, 5 Aug 2001 23:04:28 -0400
1847
1848gstreamer (0.2.1-2) unstable; urgency=low
1849
1850 * Fix lib deps: run debhelper tools in the right order
1851 * Added arts dir to Makefile.am SUBDIRS so it builds again
1852 * Changed libmpeg2dec to libgstmpeg2dec to avoid naming issues
1853 when using -lmpeg2dec
1854 * Updated system_encode/ with CVS segfaulter bug fix
1855
1856 -- David I. Lehn <dlehn@vt.edu> Thu, 19 Jul 2001 15:47:24 -0400
1857
1858gstreamer (0.2.1-1) unstable; urgency=low
1859
1860 * New upstream 0.2.1: "Return of the Sedi Master"
1861 * New plugin packages: -festival, -flac, -avifile, -x
1862 * New plugins in -common: chart, deinterlace, udp
1863 * Added some post-0.2.1 fixes for FLAC, build system, ALSA
1864
1865 -- David I. Lehn <dlehn@vt.edu> Thu, 28 Jun 2001 20:15:15 -0400
1866
1867gstreamer (0.2.0-6) unstable; urgency=low
1868
1869 * Move -compprep to -runtime and call it same places as -register
1870 * Do -register and -compprep in postrm instead of prerm
1871 * Make -arts plugin actually build all the source (sent upstream)
1872 * Purge of -runtime removes /etc/gstreamer
1873
1874 -- David I. Lehn <dlehn@vt.edu> Tue, 19 Jun 2001 13:09:32 -0400
1875
1876gstreamer (0.2.0-5) unstable; urgency=low
1877
1878 * Added element package dependencies to libgstmediaplay0
1879
1880 -- David I. Lehn <dlehn@vt.edu> Mon, 18 Jun 2001 11:18:53 -0400
1881
1882gstreamer (0.2.0-4) unstable; urgency=low
1883
1884 * Add --gst-mask=0 to -runtime.postinst
1885
1886 -- David I. Lehn <dlehn@vt.edu> Fri, 15 Jun 2001 11:47:24 -0400
1887
1888gstreamer (0.2.0-3) unstable; urgency=low
1889
1890 * Fix the plugin control file symlink creation
1891 * Add audiofile to Build-Depends
1892
1893 -- David I. Lehn <dlehn@vt.edu> Fri, 15 Jun 2001 05:22:28 -0400
1894
1895gstreamer (0.2.0-2) unstable; urgency=low
1896
1897 * Fixed ALSA checks to not include -lasound in -every- link
1898 * Update LAME plugin to use latest CVS API
1899 * Removed OSS src/sink from -common.files (was in -oss too)
1900 * Swapped -arts.files and -artsd.files contents
1901
1902 -- David I. Lehn <dlehn@vt.edu> Fri, 15 Jun 2001 04:02:21 -0400
1903
1904gstreamer (0.2.0-1) unstable; urgency=low
1905
1906 * Added gstreamer-compprep manpage
1907 * Upgrade to 0.2.0
1908
1909 -- David I. Lehn <dlehn@vt.edu> Thu, 7 Jun 2001 12:53:59 -0400
1910
1911gstreamer (0.2.0-0.3) unstable; urgency=low
1912
1913 * GStreamer 0.2.0-pre3
1914
1915 -- David I. Lehn <dlehn@vt.edu> Wed, 6 Jun 2001 15:09:59 -0400
1916
1917gstreamer (0.2.0-0.2) unstable; urgency=low
1918
1919 * GStreamer 0.2.0-pre2 + CVS 20010604
1920 * Added -artsd (vs -arts), -audiofile, -gnomevfs, -gsm, -jpeg,
1921 -oss, and -sdl plugin packages
1922 * Added osshelper lib to oss package
1923 * Added more AVI related plugins and autoplug libs to -common
1924 * Added pkgconfig file to libgst-dev
1925 * Added gstreamer-all-plugins pseudo package that depends on
1926 all other plugin pacakges
1927
1928 -- David I. Lehn <dlehn@vt.edu> Mon, 4 Jun 2001 17:33:20 -0400
1929
1930gstreamer (0.2.0-0.1) unstable; urgency=low
1931
1932 * GStreamer 0.2.0-pre1
1933
1934 -- David I. Lehn <dlehn@vt.edu> Thu, 31 May 2001 17:16:23 -0400
1935
1936gstreamer (0.1.1.20010504-1) unstable; urgency=low
1937
1938 * Latest CVS code
1939
1940 -- David I. Lehn <dlehn@vt.edu> Fri, 4 May 2001 21:48:45 -0400
1941
1942gstreamer (0.1.1.20010430-2) unstable; urgency=low
1943
1944 * Added -colorspace package for Hermes dependent conversion
1945 * Added -arts package for aRts sink
1946
1947 -- David I. Lehn <dlehn@vt.edu> Tue, 1 May 2001 19:46:08 -0400
1948
1949gstreamer (0.1.1.20010430-1) unstable; urgency=low
1950
1951 * Latest CVS code
1952 * Added -aa package for aasink output
1953 * Added -mad package for mad mp3 decoder
1954
1955 -- David I. Lehn <dlehn@vt.edu> Mon, 30 Apr 2001 18:25:52 -0400
1956
1957gstreamer (0.1.1.20010320-1) unstable; urgency=low
1958
1959 * Latest CVS code
1960 * enable main docs
1961 * disable broken plugin docs with new option
1962
1963 -- David I. Lehn <dlehn@vt.edu> Tue, 20 Mar 2001 18:15:19 -0500
1964
1965gstreamer (0.1.1.20010315-1) unstable; urgency=low
1966
1967 * Latest CVS code
1968 * Added man pages
1969 * Split mpeg2dec to seperate plugin
1970 * libgst Architectures updated to cothread supported archs
1971
1972 -- David I. Lehn <dlehn@vt.edu> Thu, 15 Mar 2001 20:17:19 -0500
1973
1974gstreamer (0.1.1-1) unstable; urgency=low
1975
1976 * New upstream release
1977 * disable docs build, broken at the momemnt
1978
1979 -- David I. Lehn <dlehn@vt.edu> Sun, 25 Feb 2001 17:58:25 -0500
1980
1981gstreamer (0.1.0-2) unstable; urgency=low
1982
1983 * debian/rules: call configure instead of autogen.sh
1984
1985 -- David I. Lehn <dlehn@vt.edu> Sat, 24 Feb 2001 18:31:36 -0500
1986
1987gstreamer (0.1.0-1) unstable; urgency=low
1988
1989 * Initial Release.
1990
1991 -- David I. Lehn <dlehn@vt.edu> Mon, 15 Jan 2001 18:25:18 -0500
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 00000000..ec635144
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
9
diff --git a/debian/control b/debian/control
new file mode 100644
index 00000000..a30c94ed
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,109 @@
1Source: gst-plugins-ugly0.10
2Section: libs
3Priority: optional
4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Maintainers of GStreamer packages <pkg-gstreamer-maintainers@lists.alioth.debian.org>
6Uploaders: Loic Minier <lool@dooz.org>,
7 Sebastian Dröge <slomo@debian.org>
8Build-Depends: autoconf (>= 2.60),
9 automake (>= 1.10),
10 autopoint (>= 0.17),
11 autotools-dev,
12 cdbs (>= 0.4.93),
13 debhelper (>= 8.1.3),
14 dh-autoreconf,
15 dpkg-dev (>= 1.15.1),
16 libgstreamer0.10-dev (>= 0.10.35.2),
17 gstreamer0.10-doc,
18 gstreamer0.10-plugins-base,
19 gstreamer0.10-plugins-base-doc,
20 gstreamer-tools (>= 0.10.14),
21 gtk-doc-tools,
22 liba52-0.7.4-dev,
23 libcdio-dev (>= 0.76),
24 libdvdread-dev (>= 0.9.0),
25 libglib2.0-dev (>= 2.24),
26 libgstreamer-plugins-base0.10-dev (>= 0.10.35.2),
27 libmad0-dev (>= 0.15),
28 libmp3lame-dev,
29 libmpeg2-4-dev (>= 0.4.0),
30 libopencore-amrnb-dev,
31 libopencore-amrwb-dev,
32 liborc-0.4-dev (>= 1:0.4.11),
33 libsidplay1-dev,
34 libtool (>= 2.0),
35 libtwolame-dev (>= 0.3.10),
36 libx264-dev (>= 0.55.0),
37 pkg-config (>= 0.11.0)
38Standards-Version: 3.8.4
39Vcs-Git: git://gitorious.org/ubuntu-omap/gst-plugins-ugly0-10.git
40Vcs-Browser: https://gitorious.org/ubuntu-omap/gst-plugins-ugly0-10
41Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-ugly.html
42
43Package: gstreamer0.10-plugins-ugly-doc
44Architecture: all
45Section: doc
46Depends: ${misc:Depends},
47 gstreamer0.10-doc,
48 gstreamer0.10-plugins-base-doc
49Description: GStreamer documentation for plugins from the "ugly" set
50 GStreamer is a streaming media framework, based on graphs of filters
51 which operate on media data. Applications using this library can do
52 anything from real-time sound processing to playing videos, and just
53 about anything else media-related. Its plugin-based architecture means
54 that new data types or processing capabilities can be added simply by
55 installing new plug-ins.
56 .
57 This package contains documentation for plugins from the "ugly" set,
58 a set of good-quality plug-ins that might pose distribution problems.
59
60Package: gstreamer0.10-plugins-ugly
61Architecture: armhf
62Depends: ${misc:Depends},
63 ${shlibs:Depends}
64Conflicts: gstreamer0.10-plugins-bad (<< 0.10.5.2),
65 gstreamer0.10-x264,
66 gstreamer0.10-lame
67Replaces: gstreamer0.10-plugins-good (<< 0.10.9.2),
68 gstreamer0.10-plugins-bad (<< 0.10.10.2),
69 gstreamer0.10-x264,
70 gstreamer0.10-lame,
71 gstreamer0.10-plugins-ugly-multiverse (<= 0.10.17-1)
72XB-GStreamer-Version: ${gstreamer:Version}
73XB-GStreamer-Elements: ${gstreamer:Elements}
74XB-GStreamer-URI-Sources: ${gstreamer:URISources}
75XB-GStreamer-URI-Sinks: ${gstreamer:URISinks}
76XB-GStreamer-Encoders: ${gstreamer:Encoders}
77XB-GStreamer-Decoders: ${gstreamer:Decoders}
78Provides: ${gstreamer:Provides}
79Description: GStreamer plugins from the "ugly" set
80 GStreamer is a streaming media framework, based on graphs of filters
81 which operate on media data. Applications using this library can do
82 anything from real-time sound processing to playing videos, and just
83 about anything else media-related. Its plugin-based architecture means
84 that new data types or processing capabilities can be added simply by
85 installing new plug-ins.
86 .
87 This package contains plugins from the "ugly" set, a set of
88 good-quality plug-ins that might pose distribution problems.
89
90Package: gstreamer0.10-plugins-ugly-dbg
91Architecture: armhf
92Section: debug
93Priority: extra
94Depends: gstreamer0.10-plugins-ugly (= ${binary:Version}),
95 ${misc:Depends}
96Replaces: gstreamer0.10-plugins-good-dbg (<< 0.10.9.2),
97 gstreamer0.10-plugins-bad-dbg (<< 0.10.10.2)
98Description: GStreamer plugins from the "ugly" set (debug symbols)
99 GStreamer is a streaming media framework, based on graphs of filters
100 which operate on media data. Applications using this library can do
101 anything from real-time sound processing to playing videos, and just
102 about anything else media-related. Its plugin-based architecture means
103 that new data types or processing capabilities can be added simply by
104 installing new plug-ins.
105 .
106 This package contains unstripped shared libraries. It is provided primarily
107 to provide a backtrace with names in a debugger, this makes it somewhat
108 easier to interpret core dumps. The libraries are installed in
109 /usr/lib/debug and are automatically used by gdb.
diff --git a/debian/control.in b/debian/control.in
new file mode 100644
index 00000000..fefb4d6b
--- /dev/null
+++ b/debian/control.in
@@ -0,0 +1,80 @@
1Source: gst-plugins-ugly@GST_ABI@
2Section: libs
3Priority: optional
4Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
5XSBC-Original-Maintainer: Maintainers of GStreamer packages <pkg-gstreamer-maintainers@lists.alioth.debian.org>
6Uploaders: Loic Minier <lool@dooz.org>,
7 Sebastian Dröge <slomo@debian.org>
8Build-Depends: BUILDDEPS
9Standards-Version: 3.8.4
10Vcs-Git: git://gitorious.org/ubuntu-omap/gst-plugins-ugly0-10.git
11Vcs-Browser: https://gitorious.org/ubuntu-omap/gst-plugins-ugly0-10
12Homepage: http://gstreamer.freedesktop.org/modules/gst-plugins-ugly.html
13
14Package: @GST_PKGNAME@-plugins-ugly-doc
15Architecture: all
16Section: doc
17Depends: ${misc:Depends},
18 gstreamer0.10-doc,
19 gstreamer0.10-plugins-base-doc
20Description: GStreamer documentation for plugins from the "ugly" set
21 GStreamer is a streaming media framework, based on graphs of filters
22 which operate on media data. Applications using this library can do
23 anything from real-time sound processing to playing videos, and just
24 about anything else media-related. Its plugin-based architecture means
25 that new data types or processing capabilities can be added simply by
26 installing new plug-ins.
27 .
28 This package contains documentation for plugins from the "ugly" set,
29 a set of good-quality plug-ins that might pose distribution problems.
30
31Package: @GST_PKGNAME@-plugins-ugly
32Architecture: armhf
33Depends: ${misc:Depends},
34 ${shlibs:Depends}
35Conflicts: gstreamer0.10-plugins-bad (<< 0.10.5.2),
36 gstreamer0.10-x264,
37 gstreamer0.10-lame
38Replaces: gstreamer0.10-plugins-good (<< 0.10.9.2),
39 gstreamer0.10-plugins-bad (<< 0.10.10.2),
40 gstreamer0.10-x264,
41 gstreamer0.10-lame,
42 gstreamer0.10-plugins-ugly-multiverse (<= 0.10.17-1),
43XB-GStreamer-Version: ${gstreamer:Version}
44XB-GStreamer-Elements: ${gstreamer:Elements}
45XB-GStreamer-URI-Sources: ${gstreamer:URISources}
46XB-GStreamer-URI-Sinks: ${gstreamer:URISinks}
47XB-GStreamer-Encoders: ${gstreamer:Encoders}
48XB-GStreamer-Decoders: ${gstreamer:Decoders}
49Provides: ${gstreamer:Provides}
50Description: GStreamer plugins from the "ugly" set
51 GStreamer is a streaming media framework, based on graphs of filters
52 which operate on media data. Applications using this library can do
53 anything from real-time sound processing to playing videos, and just
54 about anything else media-related. Its plugin-based architecture means
55 that new data types or processing capabilities can be added simply by
56 installing new plug-ins.
57 .
58 This package contains plugins from the "ugly" set, a set of
59 good-quality plug-ins that might pose distribution problems.
60
61Package: @GST_PKGNAME@-plugins-ugly-dbg
62Architecture: armhf
63Section: debug
64Priority: extra
65Depends: @GST_PKGNAME@-plugins-ugly (= ${binary:Version}),
66 ${misc:Depends}
67Replaces: gstreamer0.10-plugins-good-dbg (<< 0.10.9.2),
68 gstreamer0.10-plugins-bad-dbg (<< 0.10.10.2)
69Description: GStreamer plugins from the "ugly" set (debug symbols)
70 GStreamer is a streaming media framework, based on graphs of filters
71 which operate on media data. Applications using this library can do
72 anything from real-time sound processing to playing videos, and just
73 about anything else media-related. Its plugin-based architecture means
74 that new data types or processing capabilities can be added simply by
75 installing new plug-ins.
76 .
77 This package contains unstripped shared libraries. It is provided primarily
78 to provide a backtrace with names in a debugger, this makes it somewhat
79 easier to interpret core dumps. The libraries are installed in
80 /usr/lib/debug and are automatically used by gdb.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 00000000..e3e9f945
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,31 @@
1This package was debianized by David I. Lehn <dlehn@debian.org> on
2Mon, 15 Jan 2001 18:21:37 -0500.
3
4It was downloaded from http://gstreamer.net/
5
6Upstream Authors:
7
8 Erik Walthinsen <omegahacker@users.sourceforge.net>
9 Wim Taymans <wim.taymans@chello.be>
10 Richard Boulton <richard@tartarus.org>
11 and many more...
12
13Copyright:
14
15 This package is free software; you can redistribute it and/or
16 modify it under the terms of the GNU Lesser General Public
17 License as published by the Free Software Foundation; either
18 version 2 of the License, or (at your option) any later version.
19
20 This package is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 Lesser General Public License for more details.
24
25 You should have received a copy of the GNU Lesser General Public
26 License along with this package; if not, write to the Free Software
27 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
29On Debian GNU/Linux systems, the complete text of the GNU Lesser General
30Public License can be found in `/usr/share/common-licenses/LGPL'.
31
diff --git a/debian/extra b/debian/extra
new file mode 100644
index 00000000..65d3db0c
--- /dev/null
+++ b/debian/extra
@@ -0,0 +1,26 @@
1#!/bin/sh
2
3if [ $# -lt 2 ]; then
4 echo "usage: $1 deps|control plugin"
5 exit 1
6fi
7
8case $1 in
9 deps)
10 case $2 in
11 *)
12 echo "ERROR invalid plugin: add your plugin to debian/extra"
13 exit 1
14 ;;
15 esac ;;
16
17 control)
18 case $2 in
19 *)
20 echo "ERROR invalid plugin: add your plugin to debian/extra"
21 exit 1
22 ;;
23 esac ;;
24 *) echo "ERROR use deps or control" ;;
25esac
26
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 00000000..8a026a24
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,9 @@
1[DEFAULT]
2# compress with bzip2
3compression = bzip2
4# Keep pristine-tar (allows to re-create 'orig').
5pristine-tar = True
6
7[git-import-dsc]
8# Import in the ubuntu branch, not master
9debian-branch = ubuntu
diff --git a/debian/gstreamer-plugins-ugly-doc.install b/debian/gstreamer-plugins-ugly-doc.install
new file mode 100644
index 00000000..133e6a2c
--- /dev/null
+++ b/debian/gstreamer-plugins-ugly-doc.install
@@ -0,0 +1 @@
debian/tmp/usr/share/gtk-doc
diff --git a/debian/gstreamer-plugins-ugly.install b/debian/gstreamer-plugins-ugly.install
new file mode 100644
index 00000000..ab36716f
--- /dev/null
+++ b/debian/gstreamer-plugins-ugly.install
@@ -0,0 +1,20 @@
1debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgsta52dec.so
2debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstamrnb.so
3debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstamrwbdec.so
4debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstasf.so
5debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstcdio.so
6debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstdvdlpcmdec.so
7debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstdvdread.so
8debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstdvdsub.so
9debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstiec958.so
10debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstlame.so
11debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstmad.so
12debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstmpeg2dec.so
13debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstmpegaudioparse.so
14debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstmpegstream.so
15debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstrmdemux.so
16debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstsid.so
17debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgsttwolame.so
18debian/tmp/usr/lib/*/gstreamer-@GST_ABI@/libgstx264.so
19debian/tmp/usr/share/locale
20debian/tmp/usr/share/gstreamer-@GST_ABI@/presets/*.prs
diff --git a/debian/maint b/debian/maint
new file mode 100755
index 00000000..de89a477
--- /dev/null
+++ b/debian/maint
@@ -0,0 +1,13 @@
1#!/usr/bin/make -f
2
3missing:
4 make -f debian/rules list-missing
5
6missing-so:
7 make -f debian/rules list-missing | grep so$$ | cut -c 2-
8
9missing-libs:
10 for i in `make -f debian/rules list-missing | grep so$$ | cut -c 2-`; do echo "=== $$i ==="; ldd debian/tmp/$$i; echo; done
11
12.PHONY: missing missing-so missing-libs
13
diff --git a/debian/mk.control b/debian/mk.control
new file mode 100755
index 00000000..e69cbf73
--- /dev/null
+++ b/debian/mk.control
@@ -0,0 +1,17 @@
1#!/usr/bin/perl -w
2
3open BUILDDEPS, "debian/build-deps";
4@builddeplist = <BUILDDEPS>;
5close BUILDDEPS;
6
7chomp(@builddeplist);
8@builddeplist = grep(!/^$/, @builddeplist);
9$builddeps = join(", ", @builddeplist);
10
11open CONTROLIN, "debian/control.in";
12
13while(<CONTROLIN>){
14 s/BUILDDEPS/$builddeps/;
15 print;
16}
17
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 00000000..a0452ef3
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,175 @@
1#!/usr/bin/make -f
2
3include /usr/share/cdbs/1/rules/debhelper.mk
4include /usr/share/cdbs/1/class/gnome.mk
5include /usr/share/cdbs/1/rules/utils.mk
6-include /usr/share/cdbs/1/rules/autoreconf.mk
7
8# make autoreconf not call libtoolize since we ship a patch for ltmain.sh
9export LIBTOOLIZE=true
10# make autoreconf not call autopoint since we ship a patch for po/Makefile.in.in
11export AUTOPOINT=true
12
13CFLAGS += -Wno-error
14CXXFLAGS += -Wno-error
15LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed
16DEB_MAKE_CHECK_TARGET = check || true
17
18# this is for compatibility with dpkg-dev < 1.13.5, see
19# <http://lists.debian.org/debian-devel-announce/2005/06/msg00010.html>
20DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null)
21DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
22
23# Take account of old dpkg-architecture output.
24ifeq ($(DEB_HOST_ARCH_CPU),)
25 DEB_HOST_ARCH_CPU := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU)
26 ifeq ($(DEB_HOST_ARCH_CPU),x86_64)
27 DEB_HOST_ARCH_CPU := amd64
28 endif
29endif
30ifeq ($(DEB_HOST_ARCH_OS),)
31 DEB_HOST_ARCH_OS := $(subst -gnu,,$(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM))
32 ifeq ($(DEB_HOST_ARCH_OS),gnu)
33 DEB_HOST_ARCH_OS := hurd
34 endif
35endif
36# end of compatibility block
37
38# debian package version
39version=$(shell dpkg-parsechangelog | grep ^Version: | cut -d ' ' -f 2)
40# upstream version
41gst_version=$(shell echo $(version) | cut -d '-' -f 1)
42gst_major=0
43gst_minor=10
44gst_abi=$(gst_major).$(gst_minor)
45# gstreamer library package names
46gst_lib=libgstreamer$(gst_abi)-0
47gst_lib_dev=libgstreamer$(gst_abi)-dev
48# what gstreamer version is needed
49gst_lib_dev_dep=$(gst_lib_dev) (>= 0.10.35.2)
50
51gst_pkgname=gstreamer$(gst_abi)
52gst_deb_abi=$(gst_abi)-0
53
54gst_extra_build_depends =
55
56# The plugins are basically the same.
57# Link special names to a template file.
58# still need "*.install" to be done by hand
59#
60# EXTRA_PLUGINS: See debian/README.Debian for docs
61EXTRA_PLUGINS +=
62
63PLUGINS += plugins-ugly $(EXTRA_PLUGINS)
64ifeq ($(DEB_HOST_ARCH_OS),linux)
65PLUGINS +=
66endif
67VERSIONIZE= \
68 plugins-ugly-doc.install \
69
70# debug package
71DEB_DH_STRIP_ARGS := --dbg-package=$(gst_pkgname)-plugins-ugly-dbg
72
73
74# Let's decide the package name and url depending on the distribution
75DISTRO = "$(shell dpkg-vendor --query vendor)"
76
77GST_PACKAGE_NAME := "GStreamer Ugly Plugins (unknown Debian derivative)"
78GST_PACKAGE_ORIGIN="http://packages.qa.debian.org/gst-plugins-ugly$(gst_abi)"
79
80ifeq ($(DISTRO),"Debian")
81GST_PACKAGE_NAME := "GStreamer Ugly Plugins (Debian)"
82GST_PACKAGE_ORIGIN="http://packages.qa.debian.org/gst-plugins-ugly$(gst_abi)"
83endif
84
85ifeq ($(DISTRO),"Ubuntu")
86GST_PACKAGE_NAME := "GStreamer Ugly Plugins (Ubuntu)"
87GST_PACKAGE_ORIGIN="https://launchpad.net/distros/ubuntu/+source/gst-plugins-ugly$(gst_abi)"
88endif
89
90
91# setup links for packages
92pre-build::
93 for p in $(PLUGINS); do \
94 rm -f debian/$(gst_pkgname)-$$p.install; \
95 cat debian/gstreamer-$$p.install | \
96 sed 's/@GST_ABI@/$(gst_abi)/g' \
97 > debian/$(gst_pkgname)-$$p.install; \
98 done
99
100 for f in $(VERSIONIZE); do \
101 cat debian/gstreamer-$$f | \
102 sed 's/@GST_ABI@/$(gst_abi)/g' \
103 > debian/$(gst_pkgname)-$$f; \
104 done
105
106maint: debian/control
107
108debian/build-deps: debian/build-deps.in debian/rules
109 cat $< > $@
110 for plugin in $(EXTRA_PLUGINS) ; do \
111 sh debian/extra deps $$plugin >> $@; \
112 done
113 sort $@ -o $@
114
115debian/control:: debian/control.in debian/build-deps debian/mk.control debian/rules
116 perl debian/mk.control | \
117 sed -e 's/@GST_VERSION@/$(gst_version)/g' \
118 -e 's/@GST_ABI@/$(gst_abi)/g' \
119 -e 's/@GST_PKGNAME@/$(gst_pkgname)/g' \
120 -e 's/@GST_LIB@/$(gst_lib)/g' \
121 -e 's/@GST_LIB_DEV@/$(gst_lib_dev)/g' \
122 -e 's/@GST_LIB_DEV_DEP@/$(gst_lib_dev_dep)/g' \
123 -e 's/@GST_EXTRA_BUILD_DEPENDS@/$(gst_extra_build_depends)/g' \
124 -e '/^Build-Depends\(-Indep\)\?/s/,\( *,\)*/,/g' \
125 -e '/^Build-Depends\(-Indep\)\?/s/\ *,\ */,\n /g' \
126 >$@
127 for plugin in $(EXTRA_PLUGINS) ; do \
128 sh debian/extra control $$plugin | \
129 sed 's/@GST_ABI@/$(gst_abi)/g' | \
130 sed 's/@GST_PKGNAME@/$(gst_pkgname)/g' | \
131 sed 's/@GST_LIB@/$(gst_lib)/g' | \
132 sed 's/@GST_LIB_DEV@/$(gst_lib_dev)/g' | \
133 sed 's/@GST_LIB_DEV_DEP@/$(gst_lib_dev_dep)/g' | \
134 sed 's/@GST_PLUGINS_LIB@/$(gst_plugins_lib)/g' | \
135 sed 's/@GST_PLUGINS_LIB_DEV@/$(gst_plugins_lib_dev)/g' | \
136 sed 's/@GST_PLUGINS_LIB_DEV_DEP@/$(gst_plugins_lib_dev_dep)/g' | \
137 sed 's/@GST_GCONF_LIB@/$(gst_gconf_lib)/g' | \
138 sed 's/@GST_GCONF_LIB_DEV@/$(gst_gconf_lib_dev)/g' | \
139 sed 's/@GST_GCONF_LIB_DEV_DEP@/$(gst_gconf_lib_dev_dep)/g' >> $@; \
140 done
141
142
143DEB_CONFIGURE_EXTRA_FLAGS += \
144 --libdir=\$${prefix}/lib/$(DEB_HOST_MULTIARCH) \
145 --disable-examples \
146 --enable-DEBUG \
147 --enable-debug \
148 --with-package-name=$(GST_PACKAGE_NAME) \
149 --with-package-origin=$(GST_PACKAGE_ORIGIN)
150
151# only build the docs on arches which can
152ifeq (,$(findstring $(DEB_HOST_ARCH),m68k arm))
153DEB_CONFIGURE_EXTRA_FLAGS += --enable-gtk-doc
154endif
155
156
157clean::
158 # get rid of the sym links
159 for i in $(PLUGINS); do \
160 rm -f debian/$(gst_pkgname)-$$i.install; \
161 rm -f debian/$(gst_pkgname)-$$i.preinst; \
162 done
163 for f in $(VERSIONIZE); do \
164 rm -f debian/$(gst_pkgname)-$$f; \
165 done
166
167common-binary-fixup-arch::
168 dh_gstscancodecs
169
170DEB_INSTALL_DOCS_ALL += debian/README.Debian NEWS
171
172# Disable inclusion of large upstream ChangeLog
173DEB_INSTALL_CHANGELOGS_ALL :=
174
175.PHONY: maint
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 00000000..163aaf8d
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
3.0 (quilt)
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 00000000..8c469959
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
1version=2
2http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-(0\.10\..*)\.tar\.gz