[arch-commits] Commit in xmlrpc-c/repos (4 files)

Alexander Rødseth arodseth at archlinux.org
Sun Jan 29 00:17:07 UTC 2017


    Date: Sunday, January 29, 2017 @ 00:17:06
  Author: arodseth
Revision: 209325

archrelease: copy trunk to community-x86_64, community-i686

Added:
  xmlrpc-c/repos/community-i686/PKGBUILD
    (from rev 209324, xmlrpc-c/trunk/PKGBUILD)
  xmlrpc-c/repos/community-x86_64/PKGBUILD
    (from rev 209324, xmlrpc-c/trunk/PKGBUILD)
Deleted:
  xmlrpc-c/repos/community-i686/PKGBUILD
  xmlrpc-c/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |  122 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   56 --------------------
 community-x86_64/PKGBUILD |   56 --------------------
 3 files changed, 122 insertions(+), 112 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-01-29 00:15:31 UTC (rev 209324)
+++ community-i686/PKGBUILD	2017-01-29 00:17:06 UTC (rev 209325)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Daenyth <Daenyth+Arch at gmail.com>
-# Contributor: Pierre Schmitz <pierre at archlinux.de>
-# Contributor: Vitaliy Berdinskikh <skipper13 at root.ua>
-
-pkgname=xmlrpc-c
-# Using the Stable version
-pkgver=1.43.03
-pkgrel=2
-epoch=1
-pkgdesc='XML-RPC for C and C++'
-arch=('x86_64' 'i686')
-url='http://xmlrpc-c.sourceforge.net/'
-license=('custom')
-depends=('curl' 'libxml2')
-makedepends=('libtool' 'setconf' 'clang' 'subversion')
-options=('!makeflags' '!emptydirs')
-source=("svn://svn.code.sf.net/p/xmlrpc-c/code/stable")
-sha1sums=('SKIP')
-
-build() {
-  cd stable
-
-  [ "$CARCH" != "i686" ] && export CFLAGS="$CFLAGS -fPIC"
-  ./configure --prefix=/usr \
-    --mandir=/usr/share/man \
-    --enable-libxml2-backend \
-    --disable-cgi-server \
-    --disable-libwww-client \
-    --disable-wininet-client \
-    --enable-abyss \
-    --enable-cplusplus
-  mkdir -p include/curl
-  touch include/curl/types.h
-
-  setconf config.mk CC clang
-  setconf config.mk CXX clang++
-
-  make CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
-  make -C tools CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
-}
-
-package() {
-  cd stable
-
-  make DESTDIR="$pkgdir" install
-  make -C tools DESTDIR="$pkgdir" install
-  install -Dm 644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  # Remove references to build directory
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
-}
-
-# getver: -u 2 xmlrpc-c.sourceforge.net/change_stable.html
-# vim:set ts=2 sw=2 et:

Copied: xmlrpc-c/repos/community-i686/PKGBUILD (from rev 209324, xmlrpc-c/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-01-29 00:17:06 UTC (rev 209325)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Daenyth <Daenyth+Arch at gmail.com>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+# Contributor: Vitaliy Berdinskikh <skipper13 at root.ua>
+
+pkgname=xmlrpc-c
+# Using the Stable version
+pkgver=1.43.06
+pkgrel=1
+epoch=1
+pkgdesc='XML-RPC for C and C++'
+arch=('x86_64' 'i686')
+url='http://xmlrpc-c.sourceforge.net/'
+license=('custom')
+depends=('curl' 'libxml2')
+makedepends=('libtool' 'setconf' 'subversion')
+options=('!makeflags' '!emptydirs')
+source=("svn://svn.code.sf.net/p/xmlrpc-c/code/stable")
+sha1sums=('SKIP')
+
+prepare() {
+  sed 's/xmlParserCtx /xmlParserCtxt/g' -i stable/src/xmlrpc_libxml2.c
+}
+
+build() {
+  cd stable
+
+  [ "$CARCH" != "i686" ] && export CFLAGS="$CFLAGS -fPIC"
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --enable-libxml2-backend \
+    --disable-cgi-server \
+    --disable-libwww-client \
+    --disable-wininet-client \
+    --enable-abyss \
+    --enable-cplusplus
+
+  mkdir -p include/curl
+  touch include/curl/types.h
+
+  make CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
+  make -C tools CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
+}
+
+package() {
+  cd stable
+
+  make DESTDIR="$pkgdir" install
+  make -C tools DESTDIR="$pkgdir" install
+  install -Dm 644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove references to build directory
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
+}
+
+# getver: -u 2 xmlrpc-c.sourceforge.net/change_stable.html
+# vim:set ts=2 sw=2 et:

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-01-29 00:15:31 UTC (rev 209324)
+++ community-x86_64/PKGBUILD	2017-01-29 00:17:06 UTC (rev 209325)
@@ -1,56 +0,0 @@
-# $Id$
-# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
-# Contributor: Daenyth <Daenyth+Arch at gmail.com>
-# Contributor: Pierre Schmitz <pierre at archlinux.de>
-# Contributor: Vitaliy Berdinskikh <skipper13 at root.ua>
-
-pkgname=xmlrpc-c
-# Using the Stable version
-pkgver=1.43.03
-pkgrel=2
-epoch=1
-pkgdesc='XML-RPC for C and C++'
-arch=('x86_64' 'i686')
-url='http://xmlrpc-c.sourceforge.net/'
-license=('custom')
-depends=('curl' 'libxml2')
-makedepends=('libtool' 'setconf' 'clang' 'subversion')
-options=('!makeflags' '!emptydirs')
-source=("svn://svn.code.sf.net/p/xmlrpc-c/code/stable")
-sha1sums=('SKIP')
-
-build() {
-  cd stable
-
-  [ "$CARCH" != "i686" ] && export CFLAGS="$CFLAGS -fPIC"
-  ./configure --prefix=/usr \
-    --mandir=/usr/share/man \
-    --enable-libxml2-backend \
-    --disable-cgi-server \
-    --disable-libwww-client \
-    --disable-wininet-client \
-    --enable-abyss \
-    --enable-cplusplus
-  mkdir -p include/curl
-  touch include/curl/types.h
-
-  setconf config.mk CC clang
-  setconf config.mk CXX clang++
-
-  make CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
-  make -C tools CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
-}
-
-package() {
-  cd stable
-
-  make DESTDIR="$pkgdir" install
-  make -C tools DESTDIR="$pkgdir" install
-  install -Dm 644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-  # Remove references to build directory
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
-  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
-}
-
-# getver: -u 2 xmlrpc-c.sourceforge.net/change_stable.html
-# vim:set ts=2 sw=2 et:

Copied: xmlrpc-c/repos/community-x86_64/PKGBUILD (from rev 209324, xmlrpc-c/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-01-29 00:17:06 UTC (rev 209325)
@@ -0,0 +1,61 @@
+# $Id$
+# Maintainer: Alexander F Rødseth <xyproto at archlinux.org>
+# Contributor: Daenyth <Daenyth+Arch at gmail.com>
+# Contributor: Pierre Schmitz <pierre at archlinux.de>
+# Contributor: Vitaliy Berdinskikh <skipper13 at root.ua>
+
+pkgname=xmlrpc-c
+# Using the Stable version
+pkgver=1.43.06
+pkgrel=1
+epoch=1
+pkgdesc='XML-RPC for C and C++'
+arch=('x86_64' 'i686')
+url='http://xmlrpc-c.sourceforge.net/'
+license=('custom')
+depends=('curl' 'libxml2')
+makedepends=('libtool' 'setconf' 'subversion')
+options=('!makeflags' '!emptydirs')
+source=("svn://svn.code.sf.net/p/xmlrpc-c/code/stable")
+sha1sums=('SKIP')
+
+prepare() {
+  sed 's/xmlParserCtx /xmlParserCtxt/g' -i stable/src/xmlrpc_libxml2.c
+}
+
+build() {
+  cd stable
+
+  [ "$CARCH" != "i686" ] && export CFLAGS="$CFLAGS -fPIC"
+
+  ./configure \
+    --prefix=/usr \
+    --mandir=/usr/share/man \
+    --enable-libxml2-backend \
+    --disable-cgi-server \
+    --disable-libwww-client \
+    --disable-wininet-client \
+    --enable-abyss \
+    --enable-cplusplus
+
+  mkdir -p include/curl
+  touch include/curl/types.h
+
+  make CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
+  make -C tools CFLAGS_PERSONAL="$CFLAGS" CXXFLAGS_PERSONAL="$CXXFLAGS"
+}
+
+package() {
+  cd stable
+
+  make DESTDIR="$pkgdir" install
+  make -C tools DESTDIR="$pkgdir" install
+  install -Dm 644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  # Remove references to build directory
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" BLDDIR ''
+  setconf "$pkgdir/usr/bin/xmlrpc-c-config" ABS_SRCDIR ''
+}
+
+# getver: -u 2 xmlrpc-c.sourceforge.net/change_stable.html
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list