Accepting request 133110 from GNOME:Next

Repush ... comments fixed

OBS-URL: https://build.opensuse.org/request/show/133110
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gupnp-dlna?expand=0&rev=27
This commit is contained in:
Vincent Untz 2012-09-07 15:24:24 +00:00 committed by Git OBS Bridge
parent dfd6c2e5b3
commit 7917566219
3 changed files with 228 additions and 2 deletions

208
gupnp-dlna-GSTPort.patch Normal file
View File

@ -0,0 +1,208 @@
commit ecad90c58ec74849e782cf4db6eb41675ce7cfa9
Author: Jens Georg <mail@jensge.org>
Date: Mon Jan 23 19:21:33 2012 +0100
Port to 0.11 API
diff --git a/configure.ac b/configure.ac
index 9db94d4..921d1c1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,7 +39,7 @@ LT_INIT([win32-dll])
PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= 2.5.0)
-GST_MAJORMINOR=0.10
+GST_MAJORMINOR=0.11
GST_REQ=0.10.29.2
GSTPBU_REQ=0.10.32
diff --git a/libgupnp-dlna/gupnp-dlna-discoverer.c b/libgupnp-dlna/gupnp-dlna-discoverer.c
index faf21ff..87cab52 100644
--- a/libgupnp-dlna/gupnp-dlna-discoverer.c
+++ b/libgupnp-dlna/gupnp-dlna-discoverer.c
@@ -224,7 +224,7 @@ gupnp_dlna_discoverer_class_init (GUPnPDLNADiscovererClass *klass)
NULL, NULL,
gupnp_dlna_marshal_VOID__OBJECT_BOXED,
G_TYPE_NONE, 2, GUPNP_TYPE_DLNA_INFORMATION,
- GST_TYPE_G_ERROR);
+ G_TYPE_ERROR);
/* Load DLNA profiles from disk */
if (g_type_from_name ("GstElement")) {
diff --git a/libgupnp-dlna/gupnp-dlna-information.c b/libgupnp-dlna/gupnp-dlna-information.c
index 5585893..250d817 100644
--- a/libgupnp-dlna/gupnp-dlna-information.c
+++ b/libgupnp-dlna/gupnp-dlna-information.c
@@ -76,8 +76,8 @@ gupnp_dlna_information_get_property (GObject *object,
break;
case PROP_DISCOVERER_INFO:
- gst_value_set_mini_object (value,
- GST_MINI_OBJECT(priv->info));
+ g_value_set_object (value,
+ G_OBJECT (priv->info));
break;
@@ -116,7 +116,7 @@ gupnp_dlna_information_set_property (GObject *object,
if (priv->info)
gst_discoverer_info_unref (priv->info);
priv->info = GST_DISCOVERER_INFO
- (gst_value_dup_mini_object (value));
+ (g_value_dup_object (value));
break;
@@ -174,13 +174,13 @@ gupnp_dlna_information_class_init (GUPnPDLNAInformationClass *klass)
G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_property (object_class, PROP_DLNA_MIME, pspec);
- pspec = gst_param_spec_mini_object ("info",
- "Stream metadata",
- "Metadata of the stream in a "
- "GstDiscovererInfo structure",
- GST_TYPE_DISCOVERER_INFO,
- G_PARAM_READWRITE |
- G_PARAM_CONSTRUCT_ONLY);
+ pspec = g_param_spec_object ("info",
+ "Stream metadata",
+ "Metadata of the stream in a "
+ "GstDiscovererInfo structure",
+ GST_TYPE_DISCOVERER_INFO,
+ G_PARAM_READWRITE |
+ G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_property (object_class,
PROP_DISCOVERER_INFO,
pspec);
diff --git a/libgupnp-dlna/gupnp-dlna-profile.c b/libgupnp-dlna/gupnp-dlna-profile.c
index b88fed6..804d28e 100644
--- a/libgupnp-dlna/gupnp-dlna-profile.c
+++ b/libgupnp-dlna/gupnp-dlna-profile.c
@@ -79,8 +79,8 @@ gupnp_dlna_profile_get_property (GObject *object,
break;
case PROP_ENCODING_PROFILE:
- gst_value_set_mini_object (value,
- GST_MINI_OBJECT (priv->enc_profile));
+ g_value_set_object (value,
+ G_OBJECT (priv->enc_profile));
break;
case PROP_DLNA_EXTENDED:
@@ -176,13 +176,13 @@ gupnp_dlna_profile_class_init (GUPnPDLNAProfileClass *klass)
G_PARAM_CONSTRUCT_ONLY);
g_object_class_install_property (object_class, PROP_DLNA_MIME, pspec);
- pspec = gst_param_spec_mini_object ("encoding-profile",
- "Encoding Profile for the "
- "DLNA Profile",
- "GstEncodingProfile object"
- "corresponding to the DLNA profile",
- GST_TYPE_ENCODING_PROFILE,
- G_PARAM_READABLE);
+ pspec = g_param_spec_object ("encoding-profile",
+ "Encoding Profile for the DLNA Profile",
+ "GstEncodingProfile object corresponding "
+ "to the DLNA profile",
+ GST_TYPE_ENCODING_PROFILE,
+ G_PARAM_READABLE);
+
g_object_class_install_property (object_class,
PROP_ENCODING_PROFILE,
pspec);
diff --git a/tests/dlna-encoding.c b/tests/dlna-encoding.c
index e819801..714cc1b 100644
--- a/tests/dlna-encoding.c
+++ b/tests/dlna-encoding.c
@@ -41,7 +41,7 @@ pad_added_cb (GstElement * uridecodebin, GstPad * pad, GstElement * encodebin)
GstCaps *caps;
/* Ask encodebin for a compatible pad */
- caps = gst_pad_get_caps (pad);
+ caps = gst_pad_query_caps (pad, NULL);
g_signal_emit_by_name (encodebin, "request-pad", caps, &sinkpad);
if (caps)
gst_caps_unref (caps);
commit f665ee10afdcf0d9ce4706b6ac0058e38e549681
Author: Jens Georg <mail@jensge.org>
Date: Wed Jul 25 08:59:15 2012 +0200
More 1.0 fixes
diff --git a/configure.ac b/configure.ac
index 921d1c1..f403377 100644
--- a/configure.ac
+++ b/configure.ac
@@ -39,7 +39,7 @@ LT_INIT([win32-dll])
PKG_CHECK_MODULES(LIBXML, libxml-2.0 >= 2.5.0)
-GST_MAJORMINOR=0.11
+GST_MAJORMINOR=1.0
GST_REQ=0.10.29.2
GSTPBU_REQ=0.10.32
diff --git a/libgupnp-dlna/Makefile.am b/libgupnp-dlna/Makefile.am
index 55f4ed2..4c93cc5 100644
--- a/libgupnp-dlna/Makefile.am
+++ b/libgupnp-dlna/Makefile.am
@@ -65,9 +65,9 @@ INTROSPECTION_COMPILER_ARGS = --includedir=$(top_srcdir)
if HAVE_INTROSPECTION
GUPnPDLNA-1.0.gir: libgupnp-dlna-1.0.la
-GUPnPDLNA_1_0_gir_INCLUDES = libxml2-2.0 GObject-2.0 GstPbutils-0.10
+GUPnPDLNA_1_0_gir_INCLUDES = libxml2-2.0 GObject-2.0 GstPbutils-1.0
GUPnPDLNA_1_0_gir_CFLAGS = $(INCLUDES) $(AM_CFLAGS)
-GUPnPDLNA_1_0_gir_LIBS = libgupnp-dlna-1.0.la gstreamer-0.10
+GUPnPDLNA_1_0_gir_LIBS = libgupnp-dlna-1.0.la gstreamer-1.0
GUPnPDLNA_1_0_gir_FILES = $(introspection_sources)
GUPnPDLNA_1_0_gir_NAMESPACE = GUPnPDLNA
GUPnPDLNA_1_0_gir_VERSION = 1.0
diff --git a/libgupnp-dlna/profile-loading.c b/libgupnp-dlna/profile-loading.c
index 874fe44..783aa1e 100644
--- a/libgupnp-dlna/profile-loading.c
+++ b/libgupnp-dlna/profile-loading.c
@@ -57,7 +57,7 @@ merge_caps (GstCaps *caps1, GstCaps *caps2)
if (!gst_caps_is_any (caps1) && !gst_caps_is_any (caps2)) {
any = TRUE;
gst_caps_merge (caps1, gst_caps_copy (caps2));
- gst_caps_do_simplify (caps1);
+ gst_caps_simplify (caps1);
}
ret = gst_caps_make_writable (caps1);
diff --git a/tests/dlna-encoding.c b/tests/dlna-encoding.c
index 714cc1b..8dc89b8 100644
--- a/tests/dlna-encoding.c
+++ b/tests/dlna-encoding.c
@@ -104,7 +104,7 @@ transcode_file (gchar * uri, gchar * outputuri, GstEncodingProfile * prof)
g_print (" Input URI : %s\n", uri);
g_print (" Output URI : %s\n", outputuri);
- sink = gst_element_make_from_uri (GST_URI_SINK, outputuri, "sink");
+ sink = gst_element_make_from_uri (GST_URI_SINK, outputuri, "sink", NULL);
if (G_UNLIKELY (sink == NULL)) {
g_print ("Can't create output sink, most likely invalid output URI !\n");
return;
diff --git a/gupnp-dlna-1.0-uninstalled.pc.in b/gupnp-dlna-1.0-uninstalled.pc.in
index f706b1a..6ab739c 100644
--- a/gupnp-dlna-1.0-uninstalled.pc.in
+++ b/gupnp-dlna-1.0-uninstalled.pc.in
@@ -8,4 +8,4 @@ Description: GObject-based AV specific UPnP library
Version: @VERSION@
Libs: ${libdir}/libgupnp-dlna-1.0.la
Cflags: -I${includedir} -I$(top_srcdir)/gst-convenience/gst-libs
-Requires: gstreamer-0.10 gstreamer-base-0.10 gstreamer-video-0.10
+Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-base-@GST_MAJORMINOR@ gstreamer-video-@GST_MAJORMINOR@
diff --git a/gupnp-dlna-1.0.pc.in b/gupnp-dlna-1.0.pc.in
index 7f7c74a..7b03986 100644
--- a/gupnp-dlna-1.0.pc.in
+++ b/gupnp-dlna-1.0.pc.in
@@ -8,4 +8,4 @@ Description: GObject-based AV specific UPnP library
Version: @VERSION@
Libs: -L${libdir} -lgupnp-dlna-1.0
Cflags: -I${includedir}/gupnp-dlna-1.0
-Requires: gstreamer-0.10 gstreamer-base-0.10 gstreamer-video-0.10
+Requires: gstreamer-@GST_MAJORMINOR@ gstreamer-base-@GST_MAJORMINOR@ gstreamer-video-@GST_MAJORMINOR@

View File

@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Aug 31 14:51:19 UTC 2012 - dimstar@opensuse.org
- Port to GStreamer 1.0:
+ Add gupnp-dlna-GSTPort.patch: Port to GStreamer 1.0 API
+ Replace gstreamer-0_10*-devel BuildRequires with
gstreamer*-devel equivalents
+ Add gnome-common BuildRequires and call gnome-autogen.sh in
build section, as gupnp-dlna-GSTPort.patch touches the build
system.
-------------------------------------------------------------------
Sat Mar 17 16:02:51 UTC 2012 - dimstar@opensuse.org

View File

@ -24,9 +24,13 @@ License: LGPL-2.1+
Group: Development/Libraries/C and C++
Url: http://www.gupnp.org/
Source: http://download.gnome.org/sources/gupnp-dlna/0.6/%{name}-%{version}.tar.xz
# PATCH-FEATURE-UPSTREAM gupnp-dlna-GSTPort.patch -- Port to GStreamer 1.0. Patch taken from upstream git branch.
Patch0: gupnp-dlna-GSTPort.patch
# Needed for patch0
BuildRequires: gnome-common
BuildRequires: gobject-introspection-devel
BuildRequires: gstreamer-0_10-devel
BuildRequires: gstreamer-0_10-plugins-base-devel
BuildRequires: gstreamer-devel
BuildRequires: gstreamer-plugins-base-devel
BuildRequires: libxml2-devel
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@ -72,8 +76,11 @@ applications using GUPnP.
%prep
%setup -q
%patch0 -p1
%build
# Needed for patch0
NOCONFIGURE=1 gnome-autogen.sh
%configure \
--disable-static
%__make %{?_smp_mflags}