[arch-commits] Commit in pion/repos (6 files)

Lukas Jirkovsky stativ at nymeria.archlinux.org
Thu Dec 19 14:12:44 UTC 2013


    Date: Thursday, December 19, 2013 @ 15:12:44
  Author: stativ
Revision: 102770

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

Added:
  pion/repos/community-i686/PKGBUILD
    (from rev 102769, pion/trunk/PKGBUILD)
  pion/repos/community-x86_64/PKGBUILD
    (from rev 102769, pion/trunk/PKGBUILD)
Deleted:
  pion/repos/community-i686/PKGBUILD
  pion/repos/community-i686/include_boost_units.diff
  pion/repos/community-x86_64/PKGBUILD
  pion/repos/community-x86_64/include_boost_units.diff

-------------------------------------------+
 /PKGBUILD                                 |   88 ++++++++++++++++++++++++++++
 community-i686/PKGBUILD                   |   51 ----------------
 community-i686/include_boost_units.diff   |   14 ----
 community-x86_64/PKGBUILD                 |   51 ----------------
 community-x86_64/include_boost_units.diff |   14 ----
 5 files changed, 88 insertions(+), 130 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-12-19 14:12:37 UTC (rev 102769)
+++ community-i686/PKGBUILD	2013-12-19 14:12:44 UTC (rev 102770)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-pkgname=pion
-pkgver=5.0.4
-pkgrel=2
-pkgdesc="A C++ development library for implementing lightweight HTTP interfaces"
-url="https://github.com/cloudmeter/pion"
-arch=('i686' 'x86_64')
-license=('custom:Boost')
-depends=('boost-libs' 'openssl' 'log4cpp')
-makedepends=('boost')
-provides=('pion-net')
-conflicts=('pion-net')
-replaces=('pion-net')
-source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip \
-        include_boost_units.diff)
-md5sums=('5807d39beb0c80fdef5b8ad5cee71c1c'
-         'b8c95c443121e4137f107814272c05f8')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 < "$srcdir/include_boost_units.diff" || true
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  sh autogen.sh
-
-  # override configure bug (forces debug even when nobody asked for it)
-  sed -i "s/ -ggdb//g" configure
-  # override Makefile bug
-  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
-
-  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins --disable-doxygen-doc
-
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -k check
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # install license
-  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
-}

Copied: pion/repos/community-i686/PKGBUILD (from rev 102769, pion/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-12-19 14:12:44 UTC (rev 102770)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+pkgname=pion
+pkgver=5.0.5
+pkgrel=1
+pkgdesc="A C++ development library for implementing lightweight HTTP interfaces"
+url="https://github.com/cloudmeter/pion"
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('b8bf0fdac882d9bd4332d3c6d3bccbd8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins --disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}

Deleted: community-i686/include_boost_units.diff
===================================================================
--- community-i686/include_boost_units.diff	2013-12-19 14:12:37 UTC (rev 102769)
+++ community-i686/include_boost_units.diff	2013-12-19 14:12:44 UTC (rev 102770)
@@ -1,14 +0,0 @@
-diff --git a/include/pion/error.hpp b/include/pion/error.hpp
-index 51e8ce3..3e8758c 100644
---- a/include/pion/error.hpp
-+++ b/include/pion/error.hpp
-@@ -19,6 +19,9 @@
- #include <boost/exception/info.hpp>
- #include <boost/exception/error_info.hpp>
- #include <boost/exception/get_error_info.hpp>
-+#if BOOST_VERSION >= 104700
-+#include <boost/units/io.hpp>
-+#endif
- #include <pion/config.hpp>
- 
- 

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-12-19 14:12:37 UTC (rev 102769)
+++ community-x86_64/PKGBUILD	2013-12-19 14:12:44 UTC (rev 102770)
@@ -1,51 +0,0 @@
-# $Id$
-# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
-pkgname=pion
-pkgver=5.0.4
-pkgrel=2
-pkgdesc="A C++ development library for implementing lightweight HTTP interfaces"
-url="https://github.com/cloudmeter/pion"
-arch=('i686' 'x86_64')
-license=('custom:Boost')
-depends=('boost-libs' 'openssl' 'log4cpp')
-makedepends=('boost')
-provides=('pion-net')
-conflicts=('pion-net')
-replaces=('pion-net')
-source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip \
-        include_boost_units.diff)
-md5sums=('5807d39beb0c80fdef5b8ad5cee71c1c'
-         'b8c95c443121e4137f107814272c05f8')
-
-prepare() {
-  cd "$srcdir/$pkgname-$pkgver"
-  patch -Np1 < "$srcdir/include_boost_units.diff" || true
-}
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  sh autogen.sh
-
-  # override configure bug (forces debug even when nobody asked for it)
-  sed -i "s/ -ggdb//g" configure
-  # override Makefile bug
-  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
-
-  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins --disable-doxygen-doc
-
-  make
-}
-
-check() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make -k check
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-
-  # install license
-  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
-}

Copied: pion/repos/community-x86_64/PKGBUILD (from rev 102769, pion/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-12-19 14:12:44 UTC (rev 102770)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Jirkovsky <l.jirkovsky at gmail.com>
+pkgname=pion
+pkgver=5.0.5
+pkgrel=1
+pkgdesc="A C++ development library for implementing lightweight HTTP interfaces"
+url="https://github.com/cloudmeter/pion"
+arch=('i686' 'x86_64')
+license=('custom:Boost')
+depends=('boost-libs' 'openssl' 'log4cpp')
+makedepends=('boost')
+provides=('pion-net')
+conflicts=('pion-net')
+replaces=('pion-net')
+source=(https://github.com/cloudmeter/pion/archive/$pkgver.zip)
+md5sums=('b8bf0fdac882d9bd4332d3c6d3bccbd8')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  sh autogen.sh
+
+  # override configure bug (forces debug even when nobody asked for it)
+  sed -i "s/ -ggdb//g" configure
+  # override Makefile bug
+  sed -i "/docs:/ s/doxygen-doc//" Makefile.in
+
+  ./configure --prefix=/usr --with-plugins=/usr/lib/pion/plugins --disable-doxygen-doc
+
+  make
+}
+
+check() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make -k check
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+
+  # install license
+  install -D -m0755 COPYING "$pkgdir/usr/share/licenses/$pkgname/Boost"
+}

Deleted: community-x86_64/include_boost_units.diff
===================================================================
--- community-x86_64/include_boost_units.diff	2013-12-19 14:12:37 UTC (rev 102769)
+++ community-x86_64/include_boost_units.diff	2013-12-19 14:12:44 UTC (rev 102770)
@@ -1,14 +0,0 @@
-diff --git a/include/pion/error.hpp b/include/pion/error.hpp
-index 51e8ce3..3e8758c 100644
---- a/include/pion/error.hpp
-+++ b/include/pion/error.hpp
-@@ -19,6 +19,9 @@
- #include <boost/exception/info.hpp>
- #include <boost/exception/error_info.hpp>
- #include <boost/exception/get_error_info.hpp>
-+#if BOOST_VERSION >= 104700
-+#include <boost/units/io.hpp>
-+#endif
- #include <pion/config.hpp>
- 
- 




More information about the arch-commits mailing list