public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Nirbheek Chauhan" <nirbheek@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gnome:master commit in: net-libs/libsoup/, net-libs/libsoup-gnome/, net-libs/libsoup-gnome/files/
Date: Tue,  5 Apr 2011 00:57:37 +0000 (UTC)	[thread overview]
Message-ID: <903af5b7b9a904a1cf8b936d3dd94d2227374553.nirbheek@gentoo> (raw)

commit:     903af5b7b9a904a1cf8b936d3dd94d2227374553
Author:     Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Mon Apr  4 19:04:55 2011 +0000
Commit:     Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Mon Apr  4 21:20:17 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=903af5b7

net-libs/libsoup{,-gnome}: 2.33.92 → 2.34.0

---
 ...patch => libsoup-gnome-2.34.0-system-lib.patch} |  130 +++++++++----------
 ...-2.33.92.ebuild => libsoup-gnome-2.34.0.ebuild} |    2 +-
 ...ibsoup-2.33.92.ebuild => libsoup-2.34.0.ebuild} |    0
 3 files changed, 63 insertions(+), 69 deletions(-)

diff --git a/net-libs/libsoup-gnome/files/libsoup-gnome-2.33.92-system-lib.patch b/net-libs/libsoup-gnome/files/libsoup-gnome-2.34.0-system-lib.patch
similarity index 75%
rename from net-libs/libsoup-gnome/files/libsoup-gnome-2.33.92-system-lib.patch
rename to net-libs/libsoup-gnome/files/libsoup-gnome-2.34.0-system-lib.patch
index 4b0c890..ff5da04 100644
--- a/net-libs/libsoup-gnome/files/libsoup-gnome-2.33.92-system-lib.patch
+++ b/net-libs/libsoup-gnome/files/libsoup-gnome-2.34.0-system-lib.patch
@@ -1,56 +1,22 @@
-From 1cb947b6e1d3ecc8cf13d55034aa85bd161d4e82 Mon Sep 17 00:00:00 2001
-From: Priit Laes <plaes@plaes.org>
-Date: Tue, 22 Mar 2011 15:54:10 +0200
-Subject: [PATCH] Split support for libsoup-gnome
+Split support for libsoup-gnome
 
 Original patch by Romain Perier.
 ---
- Makefile.am         |   12 ++++++++++--
- configure.ac        |   42 +++++++++++++++++++++++++++---------------
- libsoup/Makefile.am |   45 +++++++++++++++++++++++++++++++++++++--------
- 3 files changed, 74 insertions(+), 25 deletions(-)
-
-diff --git a/Makefile.am b/Makefile.am
-index 861daff..a6463fb 100644
---- a/Makefile.am
-+++ b/Makefile.am
-@@ -1,7 +1,11 @@
- ## Process this file with automake to produce Makefile.in
- ACLOCAL_AMFLAGS = -I m4
- 
--SUBDIRS = libsoup tests docs
-+SUBDIRS = libsoup
-+
-+if BUILD_LIBSOUP
-+SUBDIRS += tests docs
-+endif
- 
- EXTRA_DIST =			\
- 	libsoup-2.4.pc.in	\
-@@ -14,7 +18,11 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-introspection
- 
- pkgconfigdir = $(libdir)/pkgconfig
- 
--pkgconfig_DATA = libsoup-2.4.pc
-+pkgconfig_DATA =
-+
-+if BUILD_LIBSOUP
-+pkgconfig_DATA += libsoup-2.4.pc
-+endif
- 
- if BUILD_LIBSOUP_GNOME
- pkgconfig_DATA += libsoup-gnome-2.4.pc
-diff --git a/configure.ac b/configure.ac
-index 8f37cec..d8daf9c 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -72,15 +72,30 @@ dnl ***********************
+--- configure.ac
++++ configure.ac
+@@ -72,15 +72,30 @@
  dnl *** Checks for glib ***
  dnl ***********************
  
 -AM_PATH_GLIB_2_0(2.27.5,,,gobject gthread gio)
 -if test "$GLIB_LIBS" = ""; then
 -   AC_MSG_ERROR(GLIB 2.27.5 or later is required to build libsoup)
+-fi
+-GLIB_CFLAGS="$GLIB_CFLAGS -DG_DISABLE_SINGLE_INCLUDES"
+-
+-PKG_CHECK_MODULES(XML, libxml-2.0)
+-AC_SUBST(XML_CFLAGS)
+-AC_SUBST(XML_LIBS)
 +PKG_PROG_PKG_CONFIG
 +enable_ssl=no
 +AC_ARG_WITH(libsoup-system,
@@ -73,17 +39,12 @@ index 8f37cec..d8daf9c 100644
 +	AC_CHECK_FUNCS(gmtime_r)
 +	AC_CHECK_FUNCS(mmap)
 +	AC_CHECK_FUNC(socket, , AC_CHECK_LIB(socket, socket))
- fi
--GLIB_CFLAGS="$GLIB_CFLAGS -DG_DISABLE_SINGLE_INCLUDES"
--
--PKG_CHECK_MODULES(XML, libxml-2.0)
--AC_SUBST(XML_CFLAGS)
--AC_SUBST(XML_LIBS)
++fi
 +AM_CONDITIONAL(BUILD_LIBSOUP, test $with_libsoup_system = no)
  
  dnl ***********************
  dnl *** Check for Win32 ***
-@@ -99,13 +114,6 @@ esac
+@@ -99,13 +114,6 @@
  AC_MSG_RESULT([$os_win32])
  AM_CONDITIONAL(OS_WIN32, [test $os_win32 = yes])
  
@@ -97,7 +58,7 @@ index 8f37cec..d8daf9c 100644
  dnl *********************
  dnl *** GNOME support ***
  dnl *********************
-@@ -130,6 +138,10 @@ AM_CONDITIONAL(BUILD_LIBSOUP_GNOME, test $with_gnome != no)
+@@ -130,6 +138,10 @@
  if test $with_gnome != no; then
  	AC_DEFINE(HAVE_GNOME, 1, [Defined if GNOME support is enabled])
  
@@ -108,11 +69,9 @@ index 8f37cec..d8daf9c 100644
  	PKG_CHECK_MODULES(SQLITE, sqlite3, :, [AC_MSG_ERROR(dnl
  [Could not find sqlite3 devel files:
  
-diff --git a/libsoup/Makefile.am b/libsoup/Makefile.am
-index 308c08f..0c78061 100644
---- a/libsoup/Makefile.am
-+++ b/libsoup/Makefile.am
-@@ -4,15 +4,18 @@ if OS_WIN32
+--- libsoup/Makefile.am
++++ libsoup/Makefile.am
+@@ -4,15 +4,18 @@
  LIBWS2_32 = -lws2_32
  endif
  
@@ -135,7 +94,7 @@ index 308c08f..0c78061 100644
  
  MARSHAL_GENERATED = soup-marshal.c soup-marshal.h
  MKENUMS_GENERATED = soup-enum-types.c soup-enum-types.h
-@@ -41,7 +44,7 @@ soup-enum-types.c: $(libsoupinclude_HEADERS)
+@@ -41,7 +44,7 @@
  
  BUILT_SOURCES = $(MARSHAL_GENERATED) $(MKENUMS_GENERATED)
  
@@ -144,7 +103,7 @@ index 308c08f..0c78061 100644
  
  libsoupincludedir = $(includedir)/libsoup-2.4/libsoup
  
-@@ -94,7 +97,7 @@ libsoupinclude_HEADERS =	\
+@@ -94,7 +97,7 @@
  	$(soup_headers)		\
  	soup-enum-types.h
  
@@ -153,7 +112,7 @@ index 308c08f..0c78061 100644
  
  libsoup_2_4_la_LDFLAGS =	\
  	-version-info $(SOUP_CURRENT):$(SOUP_REVISION):$(SOUP_AGE) -no-undefined
-@@ -178,10 +181,16 @@ libsoup_2_4_la_SOURCES =		\
+@@ -178,10 +181,16 @@
  	soup-value-utils.c		\
  	soup-xmlrpc.c
  
@@ -170,7 +129,7 @@ index 308c08f..0c78061 100644
  libsoupgnomeinclude_HEADERS =	\
  	soup-cookie-jar-sqlite.h\
  	soup-gnome.h		\
-@@ -189,14 +198,24 @@ libsoupgnomeinclude_HEADERS =	\
+@@ -189,14 +198,24 @@
  
  lib_LTLIBRARIES += libsoup-gnome-2.4.la
  
@@ -196,7 +155,7 @@ index 308c08f..0c78061 100644
  libsoup_gnome_2_4_la_SOURCES =		\
  	soup-cookie-jar-sqlite.c	\
  	soup-gnome-features.c		\
-@@ -217,6 +236,8 @@ INTROSPECTION_COMPILER_ARGS = --includedir=.
+@@ -217,6 +236,8 @@
  
  if HAVE_INTROSPECTION
  
@@ -205,7 +164,7 @@ index 308c08f..0c78061 100644
  # Core library
  gi_soup_files = \
  	$(filter-out soup.h soup-enum-types.% soup-marshal.%,\
-@@ -238,13 +259,21 @@ Soup_2_4_gir_FILES = \
+@@ -238,20 +259,28 @@
  
  INTROSPECTION_GIRS += Soup-2.4.gir
  
@@ -225,9 +184,44 @@ index 308c08f..0c78061 100644
  	                  $(filter-out %.h, $(libsoup_gnome_2_4_la_SOURCES)))
 -SoupGNOME-2.4.gir: libsoup-gnome-2.4.la Soup-2.4.gir
 +SoupGNOME-2.4.gir: libsoup-gnome-2.4.la $(SOUP_GIR)
- SoupGNOME_2_4_gir_SCANNERFLAGS = --identifier-prefix=Soup --symbol-prefix=soup --c-include "libsoup/soup-gnome.h"
- SoupGNOME_2_4_gir_INCLUDES = Soup-2.4
++SoupGNOME_2_4_gir_INCLUDES = Soup-2.4
+ SoupGNOME_2_4_gir_SCANNERFLAGS =			\
+ 	--identifier-prefix=Soup			\
+ 	--symbol-prefix=soup				\
+-	--c-include "libsoup/soup-gnome.h"		\
+-	--include-uninstalled=$(builddir)/Soup-2.4.gir
++	--c-include "libsoup/soup-gnome.h"
  SoupGNOME_2_4_gir_CFLAGS = $(INCLUDES)
--- 
-1.7.4.1
-
+-SoupGNOME_2_4_gir_LIBS = libsoup-gnome-2.4.la libsoup-2.4.la
++SoupGNOME_2_4_gir_LIBS = libsoup-gnome-2.4.la
+ SoupGNOME_2_4_gir_FILES = $(addprefix $(srcdir)/,$(gi_soup_gnome_files))
+ SoupGNOME_2_4_gir_EXPORT_PACKAGES = libsoup-gnome-2.4
+ 
+--- Makefile.am
++++ Makefile.am
+@@ -1,7 +1,11 @@
+ ## Process this file with automake to produce Makefile.in
+ ACLOCAL_AMFLAGS = -I m4
+ 
+-SUBDIRS = libsoup tests docs
++SUBDIRS = libsoup
++
++if BUILD_LIBSOUP
++SUBDIRS += tests docs
++endif
+ 
+ EXTRA_DIST =			\
+ 	libsoup-2.4.pc.in	\
+@@ -14,7 +18,11 @@
+ 
+ pkgconfigdir = $(libdir)/pkgconfig
+ 
+-pkgconfig_DATA = libsoup-2.4.pc
++pkgconfig_DATA =
++
++if BUILD_LIBSOUP
++pkgconfig_DATA += libsoup-2.4.pc
++endif
+ 
+ if BUILD_LIBSOUP_GNOME
+ pkgconfig_DATA += libsoup-gnome-2.4.pc

diff --git a/net-libs/libsoup-gnome/libsoup-gnome-2.33.92.ebuild b/net-libs/libsoup-gnome/libsoup-gnome-2.34.0.ebuild
similarity index 96%
rename from net-libs/libsoup-gnome/libsoup-gnome-2.33.92.ebuild
rename to net-libs/libsoup-gnome/libsoup-gnome-2.34.0.ebuild
index 1123699..e249b66 100644
--- a/net-libs/libsoup-gnome/libsoup-gnome-2.33.92.ebuild
+++ b/net-libs/libsoup-gnome/libsoup-gnome-2.34.0.ebuild
@@ -52,6 +52,6 @@ src_prepare() {
 	gnome2_src_prepare
 
 	# Use lib present on the system
-	epatch "${FILESDIR}"/${PN}-2.33.92-system-lib.patch
+	epatch "${FILESDIR}"/${PN}-2.34.0-system-lib.patch
 	eautoreconf
 }

diff --git a/net-libs/libsoup/libsoup-2.33.92.ebuild b/net-libs/libsoup/libsoup-2.34.0.ebuild
similarity index 100%
rename from net-libs/libsoup/libsoup-2.33.92.ebuild
rename to net-libs/libsoup/libsoup-2.34.0.ebuild



             reply	other threads:[~2011-04-05  1:03 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-04-05  0:57 Nirbheek Chauhan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2013-03-08 12:02 [gentoo-commits] proj/gnome:master commit in: net-libs/libsoup/, net-libs/libsoup-gnome/, net-libs/libsoup-gnome/files/ Priit Laes
2012-07-17  7:53 Priit Laes
2012-01-17 12:51 Priit Laes
2011-12-20 15:29 Priit Laes
2011-10-18  7:37 Alexandre Restovtsev
2011-03-22 15:27 Priit Laes

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=903af5b7b9a904a1cf8b936d3dd94d2227374553.nirbheek@gentoo \
    --to=nirbheek@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox