summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2013-04-23 11:25:11 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2013-04-23 11:25:11 +0200
commitb56b395d2ee7316a7928d5fe3ca3f86914328a7a (patch)
tree592f09922cdc0872be99c367fac4dde9cd70bbb2
parent018bdb8498605b6f0f9ea2a9fc183afd2acbbc1e (diff)
gstreamer-1.0: Fix repository URLs
Always get everything from the GStreamer project, not GStreamer SDK
-rw-r--r--recipes/gst-libav-1.0-static.recipe4
-rw-r--r--recipes/gst-libav-1.0.recipe4
-rw-r--r--recipes/gst-plugins-bad-1.0-static.recipe3
-rw-r--r--recipes/gst-plugins-bad-1.0.recipe4
-rw-r--r--recipes/gst-plugins-base-1.0-static.recipe4
-rw-r--r--recipes/gst-plugins-base-1.0.recipe4
-rw-r--r--recipes/gst-plugins-good-1.0-static.recipe3
-rw-r--r--recipes/gst-plugins-good-1.0.recipe4
-rw-r--r--recipes/gst-plugins-ugly-1.0-static.recipe4
-rw-r--r--recipes/gst-plugins-ugly-1.0.recipe4
-rw-r--r--recipes/gstreamer-1.0-static.recipe5
-rw-r--r--recipes/gstreamer-1.0.recipe4
12 files changed, 41 insertions, 6 deletions
diff --git a/recipes/gst-libav-1.0-static.recipe b/recipes/gst-libav-1.0-static.recipe
index ab86bfb3..bace6af1 100644
--- a/recipes/gst-libav-1.0-static.recipe
+++ b/recipes/gst-libav-1.0-static.recipe
@@ -31,6 +31,10 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += ' ASFLAGS="%s"' % asflags
super(Recipe, self).prepare()
+
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-libav'))
+ self.remotes['upstream'] = self.remotes['origin']
+
for f in ['libavcodec', 'libavformat', 'libavutil', 'libswscale']:
for ext in ['.a', '.la']:
path = os.path.join('lib', f + ext)
diff --git a/recipes/gst-libav-1.0.recipe b/recipes/gst-libav-1.0.recipe
index 65942af1..9ff3aa10 100644
--- a/recipes/gst-libav-1.0.recipe
+++ b/recipes/gst-libav-1.0.recipe
@@ -9,13 +9,15 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-lgpl --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer libav Plugins (GStreamer SDK)' "
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-libav'}
commit = 'upstream/1.0'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'bzip2', 'zlib' ]
files_plugins_codecs_restricted = ['lib/gstreamer-1.0/libgstlibav%(mext)s']
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-libav'))
+ self.remotes['upstream'] = self.remotes['origin']
+
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform == Platform.DARWIN:
diff --git a/recipes/gst-plugins-bad-1.0-static.recipe b/recipes/gst-plugins-bad-1.0-static.recipe
index cf185f99..51129980 100644
--- a/recipes/gst-plugins-bad-1.0-static.recipe
+++ b/recipes/gst-plugins-bad-1.0-static.recipe
@@ -137,6 +137,9 @@ class Recipe(custom.GStreamerStatic):
super(Recipe, self).prepare()
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-bad'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.files_plugins_codecs_devel += [
'lib/libgstcodecparsers-1.0.la',
'lib/libgstcodecparsers-1.0.a',
diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe
index eb5bbc81..4aa8f693 100644
--- a/recipes/gst-plugins-bad-1.0.recipe
+++ b/recipes/gst-plugins-bad-1.0.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-static --disable-introspection --disable-gsm --disable-examples --disable-camerabin --disable-festival --disable-freeze --disable-h264parse --disable-inter --disable-legacyresample --disable-mpegvideoparse --disable-videomaxrate --disable-bz2 --disable-decklink --disable-linsys --disable-fbdev --disable-apexsink --disable-celt --disable-curl --disable-dc1394 --disable-directfb --disable-dirac --disable-divx --disable-faac --disable-flite --disable-gme --disable-ladspa --disable-lv2 --disable-mimic --disable-modplug --disable-mpeg2enc --disable-mplex --disable-musepack --disable-musicbrainz --disable-mythtv --disable-nas --disable-neon --disable-ofa --disable-openal --disable-opencv --disable-pvr --disable-sdl --disable-sndfile --disable-soundtouch --disable-spandsp --disable-swfdec --disable-teletextdec --disable-timidity --disable-vdpau --disable-voaacenc --disable-voamrwbenc --disable-wildmidi --disable-xvid --disable-zbar --disable-sdi --disable-cog --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer Bad Plugins (GStreamer SDK)' "
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-bad'}
commit = 'upstream/1.0'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'bzip2', 'libass',
'faad2', 'libkate', 'zlib', 'opus',
@@ -125,6 +124,9 @@ class Recipe(recipe.Recipe):
}
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-bad'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
diff --git a/recipes/gst-plugins-base-1.0-static.recipe b/recipes/gst-plugins-base-1.0-static.recipe
index 16468194..d724fd2d 100644
--- a/recipes/gst-plugins-base-1.0-static.recipe
+++ b/recipes/gst-plugins-base-1.0-static.recipe
@@ -84,3 +84,7 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += ' --disable-gst-debug'
custom.GStreamerStatic.prepare(self)
+
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-base'))
+ self.remotes['upstream'] = self.remotes['origin']
+
diff --git a/recipes/gst-plugins-base-1.0.recipe b/recipes/gst-plugins-base-1.0.recipe
index df676db6..8da59387 100644
--- a/recipes/gst-plugins-base-1.0.recipe
+++ b/recipes/gst-plugins-base-1.0.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-static --program-prefix= --disable-introspection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer Base Plugins (GStreamer SDK)' "
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-base'}
commit = 'upstream/1.0'
deps = ['glib', 'gstreamer-1.0', 'libxml2', 'libogg', 'pango', 'libtheora',
'libvisual', 'libvorbis', 'zlib', 'orc']
@@ -110,6 +109,9 @@ class Recipe(recipe.Recipe):
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-base'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
diff --git a/recipes/gst-plugins-good-1.0-static.recipe b/recipes/gst-plugins-good-1.0-static.recipe
index 2508860e..2ba0d114 100644
--- a/recipes/gst-plugins-good-1.0-static.recipe
+++ b/recipes/gst-plugins-good-1.0-static.recipe
@@ -122,3 +122,6 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += ' --disable-gst-debug'
custom.GStreamerStatic.prepare(self)
+
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-good'))
+ self.remotes['upstream'] = self.remotes['origin']
diff --git a/recipes/gst-plugins-good-1.0.recipe b/recipes/gst-plugins-good-1.0.recipe
index 56a332e1..c4821c83 100644
--- a/recipes/gst-plugins-good-1.0.recipe
+++ b/recipes/gst-plugins-good-1.0.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = '--disable-introspection --disable-examples --disable-oss4 --disable-oss --disable-dv1394 --disable-aalib --disable-libcaca --disable-jack --disable-shout2 --with-package-origin="http://www.gstreamer.com" --with-package-name=\'GStreamer Good Plugins (GStreamer SDK)\' '
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-good'}
commit = 'upstream/1.0'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'jpeg', 'libpng',
'speex', 'gdk-pixbuf', 'libsoup',
@@ -110,6 +109,9 @@ class Recipe(recipe.Recipe):
}
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-good'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
diff --git a/recipes/gst-plugins-ugly-1.0-static.recipe b/recipes/gst-plugins-ugly-1.0-static.recipe
index ccfc91d7..c0cb3ae8 100644
--- a/recipes/gst-plugins-ugly-1.0-static.recipe
+++ b/recipes/gst-plugins-ugly-1.0-static.recipe
@@ -38,3 +38,7 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += ' --disable-gst-debug'
custom.GStreamerStatic.prepare(self)
+
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-ugly'))
+ self.remotes['upstream'] = self.remotes['origin']
+
diff --git a/recipes/gst-plugins-ugly-1.0.recipe b/recipes/gst-plugins-ugly-1.0.recipe
index ff71c496..0638fe9d 100644
--- a/recipes/gst-plugins-ugly-1.0.recipe
+++ b/recipes/gst-plugins-ugly-1.0.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--disable-introspection --disable-examples --disable-iec958 --disable-mpegstream --disable-cdio --disable-lame --disable-sidplay --disable-twolame --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer Ugly Plugins (GStreamer SDK)' "
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gst-plugins-ugly'}
commit = 'upstream/1.0'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'a52dec', 'opencore-amr',
'libdvdread', 'libmpeg2', 'libmad', 'x264']
@@ -32,6 +31,9 @@ class Recipe(recipe.Recipe):
files_lang = ['gst-plugins-ugly-1.0']
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gst-plugins-ugly'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
diff --git a/recipes/gstreamer-1.0-static.recipe b/recipes/gstreamer-1.0-static.recipe
index 0c3a3006..37656892 100644
--- a/recipes/gstreamer-1.0-static.recipe
+++ b/recipes/gstreamer-1.0-static.recipe
@@ -18,6 +18,7 @@ class Recipe(custom.GStreamerStatic):
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
+
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc --disable-docbook'
@@ -30,3 +31,7 @@ class Recipe(custom.GStreamerStatic):
self.configure_options += ' --disable-gst-debug'
custom.GStreamerStatic.prepare(self)
+
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gstreamer'))
+ self.remotes['upstream'] = self.remotes['origin']
+
diff --git a/recipes/gstreamer-1.0.recipe b/recipes/gstreamer-1.0.recipe
index 52cf44c6..c9fc950a 100644
--- a/recipes/gstreamer-1.0.recipe
+++ b/recipes/gstreamer-1.0.recipe
@@ -7,7 +7,6 @@ class Recipe(recipe.Recipe):
licenses = [License.LGPLv2_1Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-static --program-prefix= --disable-instrospection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer (GStreamer SDK) '"
- remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gstreamer'}
commit = 'upstream/1.0'
deps = ['glib', 'gtk-doc-lite']
@@ -48,6 +47,9 @@ class Recipe(recipe.Recipe):
files_lang = ['gstreamer-1.0']
def prepare(self):
+ self.remotes['origin'] = ('%s/%s' % ('git://anongit.freedesktop.org/gstreamer', 'gstreamer'))
+ self.remotes['upstream'] = self.remotes['origin']
+
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "