[arch-commits] Commit in poco/repos/community-x86_64 (PKGBUILD PKGBUILD)

Sven-Hendrik Haase svenstaro at archlinux.org
Sun Jul 4 20:05:30 UTC 2021


    Date: Sunday, July 4, 2021 @ 20:05:29
  Author: svenstaro
Revision: 972183

archrelease: copy trunk to community-x86_64

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

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

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-07-04 20:05:19 UTC (rev 972182)
+++ PKGBUILD	2021-07-04 20:05:29 UTC (rev 972183)
@@ -1,35 +0,0 @@
-# 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.10.1
-_pkgver=${pkgver/_/}
-pkgrel=1
-pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
-arch=('x86_64')
-url="http://www.pocoproject.org/"
-license=('custom:boost')
-depends=('mariadb-libs' 'openssl' 'unixodbc')
-makedepends=('cmake')
-source=("https://pocoproject.org/releases/poco-${_pkgver%p?}/poco-${_pkgver}-all.tar.bz2")
-sha256sums=('2cde4b50778013ab3b7a522aa59bccaa7e85a8ccfc654a354c4d9611b6ce1758')
-
-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"
-}

Copied: poco/repos/community-x86_64/PKGBUILD (from rev 972182, poco/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-07-04 20:05:29 UTC (rev 972183)
@@ -0,0 +1,36 @@
+# 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.11.0
+_pkgver=${pkgver/_/}
+pkgrel=1
+pkgdesc="C++ class libraries for network-centric, portable applications, complete edition with debug libraries"
+arch=('x86_64')
+url="http://www.pocoproject.org/"
+license=('custom:boost')
+depends=('mariadb-libs' 'openssl' 'unixodbc')
+makedepends=('cmake' 'ninja')
+source=("https://pocoproject.org/releases/poco-${_pkgver%p?}/poco-${_pkgver}-all.tar.bz2")
+sha256sums=('b08cf73926fa92a6c8f3c712e8fb217d5d0c2fa5248ec0281f251fe1e925d2f1')
+
+build() {
+  cd "poco-${_pkgver}-all"
+
+  cmake \
+    -GNinja \
+    -Bbuild \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release
+  ninja -C build
+}
+
+package() {
+  cd "poco-${_pkgver}-all"
+
+  DESTDIR="${pkgdir}" ninja -C build install
+  install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/poco/LICENSE"
+}




More information about the arch-commits mailing list