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

Massimiliano Torromeo mtorromeo at archlinux.org
Wed Mar 1 08:19:01 UTC 2017


    Date: Wednesday, March 1, 2017 @ 08:19:01
  Author: mtorromeo
Revision: 214316

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

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

---------------------------+
 /PKGBUILD                 |   82 ++++++++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD   |   34 ------------------
 community-x86_64/PKGBUILD |   34 ------------------
 3 files changed, 82 insertions(+), 68 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-03-01 08:17:26 UTC (rev 214315)
+++ community-i686/PKGBUILD	2017-03-01 08:19:01 UTC (rev 214316)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Maintainer: Anatol Pomozov <anatol.pomozov gmail>
-# Contributor: RunningDroid <runningdroid AT zoho.com>
-# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='C++ Library for commandline flag processing'
-arch=(i686 x86_64)
-url='https://github.com/schuhschuh/gflags'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
-sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
-
-build() {
-  cd gflags-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF -DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd gflags-$pkgver
-  make test
-}
-
-package() {
-  cd gflags-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
-}

Copied: gflags/repos/community-i686/PKGBUILD (from rev 214315, gflags/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-03-01 08:19:01 UTC (rev 214316)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Anatol Pomozov <anatol.pomozov gmail>
+# Contributor: RunningDroid <runningdroid AT zoho.com>
+# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=2
+pkgdesc='C++ Library for commandline flag processing'
+arch=(i686 x86_64)
+url='https://github.com/schuhschuh/gflags'
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(cmake)
+options=(staticlibs)
+source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
+sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
+
+build() {
+  cd gflags-$pkgver
+  cmake . \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DREGISTER_INSTALL_PREFIX=OFF \
+    -DBUILD_SHARED_LIBS=ON \
+    -DBUILD_STATIC_LIBS=ON \
+    -DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd gflags-$pkgver
+  make test
+}
+
+package() {
+  cd gflags-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
+}

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-03-01 08:17:26 UTC (rev 214315)
+++ community-x86_64/PKGBUILD	2017-03-01 08:19:01 UTC (rev 214316)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
-# Maintainer: Anatol Pomozov <anatol.pomozov gmail>
-# Contributor: RunningDroid <runningdroid AT zoho.com>
-# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
-
-pkgname=gflags
-pkgver=2.2.0
-pkgrel=1
-pkgdesc='C++ Library for commandline flag processing'
-arch=(i686 x86_64)
-url='https://github.com/schuhschuh/gflags'
-license=(BSD)
-depends=(gcc-libs)
-makedepends=(cmake)
-source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
-sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
-
-build() {
-  cd gflags-$pkgver
-  cmake . -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=OFF -DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd gflags-$pkgver
-  make test
-}
-
-package() {
-  cd gflags-$pkgver
-  make DESTDIR="$pkgdir" install
-  install -D -m644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
-}

Copied: gflags/repos/community-x86_64/PKGBUILD (from rev 214315, gflags/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-03-01 08:19:01 UTC (rev 214316)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Maintainer: Anatol Pomozov <anatol.pomozov gmail>
+# Contributor: RunningDroid <runningdroid AT zoho.com>
+# Contributor: Xiao-Long Chen <chenxiaolong at cxl.epac.to>
+
+pkgname=gflags
+pkgver=2.2.0
+pkgrel=2
+pkgdesc='C++ Library for commandline flag processing'
+arch=(i686 x86_64)
+url='https://github.com/schuhschuh/gflags'
+license=(BSD)
+depends=(gcc-libs)
+makedepends=(cmake)
+options=(staticlibs)
+source=($pkgname-$pkgver.tar.gz::https://github.com/schuhschuh/gflags/archive/v$pkgver.tar.gz)
+sha256sums=('466c36c6508a451734e4f4d76825cf9cd9b8716d2b70ef36479ae40f08271f88')
+
+build() {
+  cd gflags-$pkgver
+  cmake . \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release \
+    -DREGISTER_INSTALL_PREFIX=OFF \
+    -DBUILD_SHARED_LIBS=ON \
+    -DBUILD_STATIC_LIBS=ON \
+    -DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd gflags-$pkgver
+  make test
+}
+
+package() {
+  cd gflags-$pkgver
+  make DESTDIR="$pkgdir" install
+  install -D -m644 COPYING.txt "$pkgdir"/usr/share/licenses/$pkgname/COPYING.txt
+}



More information about the arch-commits mailing list