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

Sergej Pupykin spupykin at archlinux.org
Tue Apr 25 14:31:27 UTC 2017


    Date: Tuesday, April 25, 2017 @ 14:31:26
  Author: spupykin
Revision: 225306

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

Added:
  poco/repos/community-i686/PKGBUILD
    (from rev 225305, poco/trunk/PKGBUILD)
  poco/repos/community-x86_64/PKGBUILD
    (from rev 225305, poco/trunk/PKGBUILD)
Deleted:
  poco/repos/community-i686/PKGBUILD
  poco/repos/community-x86_64/PKGBUILD

---------------------------+
 /PKGBUILD                 |   70 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   37 -----------------------
 community-x86_64/PKGBUILD |   37 -----------------------
 3 files changed, 70 insertions(+), 74 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-04-25 14:31:10 UTC (rev 225305)
+++ community-i686/PKGBUILD	2017-04-25 14:31:26 UTC (rev 225306)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
-# Maintainer: Ido Rosen <ido at kernel.org>
-# Contributor: Ross Whitfield <whitfieldre at ornl.gov>
-# Contributor: Mateusz Paluszkiewcz <aifam96 at gmail dot com>
-# Contributor: Christopher Reimer <vdr4arch at creimer dot net>
-
-pkgname=poco
-pkgver=1.7.8
-pkgrel=1
-pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
-arch=('i686' 'x86_64')
-url="http://www.pocoproject.org/"
-license=('custom:boost')
-depends=('libmariadbclient' 'openssl' 'unixodbc')
-makedepends=('chrpath')
-source=("http://pocoproject.org/releases/poco-${pkgver%p?}/poco-${pkgver}-all.tar.bz2")
-sha256sums=('3177a0146e7fc78b4deb42b2e10fcbbf9e6594a68c410d6d59837d5b06fdf46f')
-
-build()
-{
-  cd "${srcdir}/poco-${pkgver}-all"
-  ./configure --prefix=/usr --no-samples --no-tests --unbundled
-  make ODBCLIBDIR="/usr/lib"
-}
-
-package()
-{
-  cd "${srcdir}/poco-${pkgver}-all"
-  make ODBCLIBDIR="/usr/lib" DESTDIR="${pkgdir}" install
-  install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/poco/LICENSE"
-
-  chrpath -d "${pkgdir}/usr/bin/cpspc"
-  chrpath -d "${pkgdir}/usr/bin/cpspcd"
-  chrpath -d "${pkgdir}/usr/bin/f2cpspd"
-  chrpath -d "${pkgdir}/usr/bin/f2cpsp"
-}

Copied: poco/repos/community-i686/PKGBUILD (from rev 225305, poco/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-04-25 14:31:26 UTC (rev 225306)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Ido Rosen <ido at kernel.org>
+# Contributor: Ross Whitfield <whitfieldre at ornl.gov>
+# Contributor: Mateusz Paluszkiewcz <aifam96 at gmail dot com>
+# Contributor: Christopher Reimer <vdr4arch at creimer dot net>
+
+pkgname=poco
+pkgver=1.7.8
+pkgrel=2
+pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
+arch=('i686' 'x86_64')
+url="http://www.pocoproject.org/"
+license=('custom:boost')
+depends=('libmariadbclient' 'openssl' 'unixodbc')
+makedepends=('cmake')
+source=("http://pocoproject.org/releases/poco-${pkgver%p?}/poco-${pkgver}-all.tar.bz2")
+sha256sums=('3177a0146e7fc78b4deb42b2e10fcbbf9e6594a68c410d6d59837d5b06fdf46f')
+
+build() {
+  cd "${srcdir}/poco-${pkgver}-all"
+  mkdir -p build
+  cd build
+  cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    ..
+  make
+}
+
+package() {
+  cd "${srcdir}/poco-${pkgver}-all"/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 '../LICENSE' "${pkgdir}/usr/share/licenses/poco/LICENSE"
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-04-25 14:31:10 UTC (rev 225305)
+++ community-x86_64/PKGBUILD	2017-04-25 14:31:26 UTC (rev 225306)
@@ -1,37 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
-# Maintainer: Ido Rosen <ido at kernel.org>
-# Contributor: Ross Whitfield <whitfieldre at ornl.gov>
-# Contributor: Mateusz Paluszkiewcz <aifam96 at gmail dot com>
-# Contributor: Christopher Reimer <vdr4arch at creimer dot net>
-
-pkgname=poco
-pkgver=1.7.8
-pkgrel=1
-pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
-arch=('i686' 'x86_64')
-url="http://www.pocoproject.org/"
-license=('custom:boost')
-depends=('libmariadbclient' 'openssl' 'unixodbc')
-makedepends=('chrpath')
-source=("http://pocoproject.org/releases/poco-${pkgver%p?}/poco-${pkgver}-all.tar.bz2")
-sha256sums=('3177a0146e7fc78b4deb42b2e10fcbbf9e6594a68c410d6d59837d5b06fdf46f')
-
-build()
-{
-  cd "${srcdir}/poco-${pkgver}-all"
-  ./configure --prefix=/usr --no-samples --no-tests --unbundled
-  make ODBCLIBDIR="/usr/lib"
-}
-
-package()
-{
-  cd "${srcdir}/poco-${pkgver}-all"
-  make ODBCLIBDIR="/usr/lib" DESTDIR="${pkgdir}" install
-  install -Dm644 'LICENSE' "${pkgdir}/usr/share/licenses/poco/LICENSE"
-
-  chrpath -d "${pkgdir}/usr/bin/cpspc"
-  chrpath -d "${pkgdir}/usr/bin/cpspcd"
-  chrpath -d "${pkgdir}/usr/bin/f2cpspd"
-  chrpath -d "${pkgdir}/usr/bin/f2cpsp"
-}

Copied: poco/repos/community-x86_64/PKGBUILD (from rev 225305, poco/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-04-25 14:31:26 UTC (rev 225306)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Sergej Pupykin <arch+pub at sergej.pp.ru>
+# Maintainer: Ido Rosen <ido at kernel.org>
+# Contributor: Ross Whitfield <whitfieldre at ornl.gov>
+# Contributor: Mateusz Paluszkiewcz <aifam96 at gmail dot com>
+# Contributor: Christopher Reimer <vdr4arch at creimer dot net>
+
+pkgname=poco
+pkgver=1.7.8
+pkgrel=2
+pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
+arch=('i686' 'x86_64')
+url="http://www.pocoproject.org/"
+license=('custom:boost')
+depends=('libmariadbclient' 'openssl' 'unixodbc')
+makedepends=('cmake')
+source=("http://pocoproject.org/releases/poco-${pkgver%p?}/poco-${pkgver}-all.tar.bz2")
+sha256sums=('3177a0146e7fc78b4deb42b2e10fcbbf9e6594a68c410d6d59837d5b06fdf46f')
+
+build() {
+  cd "${srcdir}/poco-${pkgver}-all"
+  mkdir -p build
+  cd build
+  cmake \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    ..
+  make
+}
+
+package() {
+  cd "${srcdir}/poco-${pkgver}-all"/build
+  make DESTDIR="${pkgdir}" install
+  install -Dm644 '../LICENSE' "${pkgdir}/usr/share/licenses/poco/LICENSE"
+}



More information about the arch-commits mailing list