[arch-commits] Commit in libsoup/repos/gnome-unstable-x86_64 (6 files)

2018-03-14 Thread Jan Steffens via arch-commits
Date: Wednesday, March 14, 2018 @ 19:07:50
  Author: heftig
Revision: 319036

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  
libsoup/repos/gnome-unstable-x86_64/0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch
(from rev 319035, 
libsoup/trunk/0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch)
  
libsoup/repos/gnome-unstable-x86_64/0002-xmlrpc-server.php-Don-t-try-to-count-NULL-params.patch
(from rev 319035, 
libsoup/trunk/0002-xmlrpc-server.php-Don-t-try-to-count-NULL-params.patch)
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 319035, libsoup/trunk/PKGBUILD)
Deleted:
  
libsoup/repos/gnome-unstable-x86_64/0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch
  
libsoup/repos/gnome-unstable-x86_64/0002-xmlrpc-server.php-Don-t-try-to-count-NULL-params.patch
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD

-+
 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch |  230 
+-
 0002-xmlrpc-server.php-Don-t-try-to-count-NULL-params.patch |   66 +-
 PKGBUILD|  110 ++--
 3 files changed, 203 insertions(+), 203 deletions(-)

Deleted: 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch
===
--- 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 
2018-03-14 19:07:23 UTC (rev 319035)
+++ 0001-Configure-PHP-to-load-the-XMLRPC-extension-if-presen.patch 
2018-03-14 19:07:50 UTC (rev 319036)
@@ -1,115 +0,0 @@
-From 437356c457cfeb7b4ab0cdad67f59f431d459536 Mon Sep 17 00:00:00 2001
-Message-Id: 
<437356c457cfeb7b4ab0cdad67f59f431d459536.1520796778.git.jan.steff...@gmail.com>
-From: "Jan Alexander Steffens (heftig)" 
-Date: Tue, 9 May 2017 22:54:16 +0200
-Subject: [PATCH 1/2] Configure PHP to load the XMLRPC extension if present
-
-This is needed when the system PHP configuration does not already load
-the extension.

- configure.ac| 7 ++-
- tests/Makefile.am   | 8 +++-
- tests/httpd.conf.in | 2 ++
- tests/php.ini.in| 1 +
- 4 files changed, 16 insertions(+), 2 deletions(-)
- create mode 100644 tests/php.ini.in
-
-diff --git a/configure.ac b/configure.ac
-index e2d828f7..224bac24 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -272,22 +272,26 @@ if test "$have_apache" = 1; then
- 
- if test "$have_php" = yes; then
-   AC_MSG_CHECKING([for php-xmlrpc])
--  if $PHP --rf xmlrpc_server_create | grep -q "does not exist"; then
-+  if $PHP -d extension=xmlrpc.so --rf xmlrpc_server_create | grep -q 
"does not exist"; then
-   have_php_xmlrpc=no
-+  IF_HAVE_PHP_XMLRPC=";"
-   else
-   have_php_xmlrpc=yes
-+  IF_HAVE_PHP_XMLRPC=""
-   AC_DEFINE(HAVE_PHP_XMLRPC, 1, [Have php-xmlrpc])
-   fi
-   AC_MSG_RESULT($have_php_xmlrpc)
-+  AC_SUBST(IF_HAVE_PHP_XMLRPC)
- fi
- 
- if test -f "$APACHE_MODULE_DIR/mod_unixd.so"; then
-   IF_HAVE_MOD_UNIXD=""
- else
-   IF_HAVE_MOD_UNIXD="#"
- fi
- AC_SUBST(IF_HAVE_MOD_UNIXD)
- fi
-+AM_CONDITIONAL(HAVE_PHP, test "$have_php" = yes)
- 
- AC_PATH_PROG(CURL, curl, no)
- if test "$CURL" != no; then
-@@ -415,6 +419,7 @@ AC_CONFIG_FILES([
-   po/Makefile
-   tests/Makefile
-   tests/httpd.conf
-+  tests/php.ini
-   examples/Makefile
-   docs/Makefile
-   docs/reference/Makefile
-diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 81a72cbc..d2986975 100644
 a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -73,24 +73,30 @@ test_data +=   \
-   httpd.conf
- endif
- 
-+if HAVE_PHP
-+test_data +=  \
-+  php.ini
-+endif
-+
- RESOURCES = $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) 
--generate-dependencies $(srcdir)/soup-tests.gresource.xml)
- 
- soup-tests.gresource: soup-tests.gresource.xml $(RESOURCES)
-   $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) 
$<
- 
- EXTRA_DIST +=  \
-   htdigest \
-   htpasswd \
-   httpd.conf.in\
-   index.txt\
-   libsoup.supp \
-+  php.ini.in   \
-   soup-tests.gresource.xml \
-   test-cert.pem\
-   test-key.pem \
-   xmlrpc-server.php\
-   $(RESOURCES)
- 
--DISTCLEANFILES += soup-tests.gresource httpd.conf
-+DISTCLEANFILES += soup-tests.gresource httpd.conf php.ini
- 
- TESTS_ENVIRONMENT += SOUP_TESTS_IN_MAKE_CHECK=1
- 
-diff --git a/tests/httpd.conf.in b/tests/httpd.conf.in
-index b818c12d..31c36674 100644
 a/tests/httpd.conf.in
-+++ b/tests/httpd.conf.in
-@@ -31,6 +31,8 @@ LoadModule proxy_connect_module 
@APACHE_MODULE_DIR@/mod_proxy_connect.so
- LoadModule ssl_module   @APACHE_SSL_MODULE_DIR@/mod_ssl.so
- 

[arch-commits] Commit in libsoup/repos/gnome-unstable-x86_64 (PKGBUILD PKGBUILD)

2014-09-23 Thread Jan de Groot
Date: Tuesday, September 23, 2014 @ 11:29:10
  Author: jgc
Revision: 222840

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 222839, libsoup/trunk/PKGBUILD)
Deleted:
  libsoup/repos/gnome-unstable-x86_64/PKGBUILD

--+
 PKGBUILD |   72 ++---
 1 file changed, 36 insertions(+), 36 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2014-09-23 09:28:58 UTC (rev 222839)
+++ PKGBUILD2014-09-23 09:29:10 UTC (rev 222840)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-
-pkgname=libsoup
-pkgver=2.47.92
-pkgrel=1
-pkgdesc=GNOME HTTP Library
-arch=(i686 x86_64)
-license=(LGPL)
-url=http://www.gnome.org;
-depends=(glib2 libxml2 glib-networking sqlite)
-makedepends=(intltool gobject-introspection python python2)
-checkdepends=(apache php php-apache)
-provides=(libsoup-gnome=$pkgver-$pkgrel)
-conflicts=(libsoup-gnome)
-replaces=(libsoup-gnome)
-options=('!emptydirs')
-source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
-sha256sums=('0680a9f90296b246d3cb3232be095f916caa25b84ea13d4eba6246de2d428348')
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr --sysconfdir=/etc \
-  --localstatedir=/var --disable-static
-  make
-}
-
-check() {
-  cd $pkgname-$pkgver
-  make check
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-}

Copied: libsoup/repos/gnome-unstable-x86_64/PKGBUILD (from rev 222839, 
libsoup/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2014-09-23 09:29:10 UTC (rev 222840)
@@ -0,0 +1,36 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+
+pkgname=libsoup
+pkgver=2.48.0
+pkgrel=1
+pkgdesc=GNOME HTTP Library
+arch=(i686 x86_64)
+license=(LGPL)
+url=http://www.gnome.org;
+depends=(glib2 libxml2 glib-networking sqlite)
+makedepends=(intltool gobject-introspection python python2)
+checkdepends=(apache php php-apache)
+provides=(libsoup-gnome=$pkgver-$pkgrel)
+conflicts=(libsoup-gnome)
+replaces=(libsoup-gnome)
+options=('!emptydirs')
+source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz)
+sha256sums=('ea34dd64fe44343445daf6dd690d0691e9d973468de44878da97371c16d89784')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --sysconfdir=/etc \
+  --localstatedir=/var --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+}



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64 testing-x86_64)

2011-04-07 Thread Ionut Biru
Date: Thursday, April 7, 2011 @ 14:45:11
  Author: ibiru
Revision: 118707

db-move: moved libsoup from [gnome-unstable] to [testing] (x86_64)

Added:
  libsoup/repos/testing-x86_64/
Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-04-04 Thread Ionut Biru
Date: Monday, April 4, 2011 @ 13:42:02
  Author: ibiru
Revision: 117758

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-04-04 Thread Ionut Biru
Date: Monday, April 4, 2011 @ 13:42:18
  Author: ibiru
Revision: 117760

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-03-22 Thread Ionut Biru
Date: Tuesday, March 22, 2011 @ 14:44:17
  Author: ibiru
Revision: 116104

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-03-22 Thread Ionut Biru
Date: Tuesday, March 22, 2011 @ 14:44:33
  Author: ibiru
Revision: 116105

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-02-23 Thread Jan de Groot
Date: Wednesday, February 23, 2011 @ 10:29:28
  Author: jgc
Revision: 110992

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-02-23 Thread Jan de Groot
Date: Wednesday, February 23, 2011 @ 10:29:42
  Author: jgc
Revision: 110993

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-02-14 Thread Ionut Biru
Date: Monday, February 14, 2011 @ 16:01:36
  Author: ibiru
Revision: 109993

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-02-14 Thread Ionut Biru
Date: Monday, February 14, 2011 @ 16:01:49
  Author: ibiru
Revision: 109994

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2011-02-11 Thread Jan Steffens
Date: Friday, February 11, 2011 @ 12:42:39
  Author: heftig
Revision: 109660

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64 testing-x86_64)

2010-09-30 Thread Jan de Groot
Date: Thursday, September 30, 2010 @ 09:40:42
  Author: jgc
Revision: 92549

db-move: moved libsoup from [gnome-unstable] to [testing] (x86_64)

Added:
  libsoup/repos/testing-x86_64/
Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-09-28 Thread Jan de Groot
Date: Tuesday, September 28, 2010 @ 02:59:19
  Author: jgc
Revision: 91812

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-09-28 Thread Jan de Groot
Date: Tuesday, September 28, 2010 @ 02:59:27
  Author: jgc
Revision: 91813

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-09-15 Thread Ionut Biru
Date: Wednesday, September 15, 2010 @ 09:57:43
  Author: ibiru
Revision: 90711

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-09-15 Thread Ionut Biru
Date: Wednesday, September 15, 2010 @ 10:11:49
  Author: ibiru
Revision: 90715

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-09-15 Thread Ionut Biru
Date: Wednesday, September 15, 2010 @ 10:12:05
  Author: ibiru
Revision: 90716

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-03-29 Thread Ionut Biru
Date: Monday, March 29, 2010 @ 17:25:25
  Author: ibiru
Revision: 74041

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2010 @ 13:34:19
  Author: jgc
Revision: 69935

archrelease: remove gnome-unstable-x86_64

Deleted:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-02-23 Thread Jan de Groot
Date: Tuesday, February 23, 2010 @ 13:34:26
  Author: jgc
Revision: 69936

archrelease: copy trunk to gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-02-12 Thread Jan de Groot
Date: Friday, February 12, 2010 @ 18:59:13
  Author: jgc
Revision: 68471

archrelease: new repo gnome-unstable-x86_64

Added:
  libsoup/repos/gnome-unstable-x86_64/



[arch-commits] Commit in libsoup/repos (gnome-unstable-x86_64)

2010-02-12 Thread Jan de Groot
Date: Friday, February 12, 2010 @ 18:59:19
  Author: jgc
Revision: 68472

Initialized merge tracking via svnmerge with revisions 1-68470 from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/libsoup/trunk

Modified:
  libsoup/repos/gnome-unstable-x86_64/  (properties)


Property changes on: libsoup/repos/gnome-unstable-x86_64
___
Added: svnmerge-integrated
   + /libsoup/trunk:1-68470