[arch-commits] Commit in catch2/repos/community-any (PKGBUILD PKGBUILD)

Levente Polyak anthraxx at archlinux.org
Tue Feb 12 00:38:26 UTC 2019


    Date: Tuesday, February 12, 2019 @ 00:38:24
  Author: anthraxx
Revision: 431839

archrelease: copy trunk to community-any

Added:
  catch2/repos/community-any/PKGBUILD
    (from rev 431838, catch2/trunk/PKGBUILD)
Deleted:
  catch2/repos/community-any/PKGBUILD

----------+
 PKGBUILD |   80 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 42 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-02-12 00:38:17 UTC (rev 431838)
+++ PKGBUILD	2019-02-12 00:38:24 UTC (rev 431839)
@@ -1,38 +0,0 @@
-# Maintainer: Baptiste Jonglez <archlinux at bitsofnetworks dot org>
-# Contributor: Bart Verhagen <barrie.verhagen at gmail dot com>
-pkgname='catch2'
-pkgver=2.5.0
-pkgrel=1
-pkgdesc="A modern, C++-native, header-only, test framework for unit-tests, TDD and BDD - using C++11, C++14, C++17 and later"
-arch=('any')
-url="https://github.com/catchorg/catch2"
-license=('Boost')
-makedepends=('cmake' 'python') # python seems to be necessary for building tests (FS#60273)
-source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('720c84d18f4dc9eb23379941df2054e7bcd5ff9c215e4d620f8533a130d128ae')
-
-build() {
-  cd "$srcdir/Catch2-$pkgver"
-
-  mkdir -p build
-  cd build
-  cmake .. \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=lib \
-    -DCATCH_USE_VALGRIND=OFF \
-    -DCATCH_BUILD_EXAMPLES=OFF \
-    -DCATCH_ENABLE_COVERAGE=OFF \
-    -DCATCH_ENABLE_WERROR=OFF \
-    -DBUILD_TESTING=ON
-  make
-}
-
-check() {
-  cd "$srcdir/Catch2-$pkgver/build"
-  make test
-}
-
-package() {
-  cd "$srcdir/Catch2-$pkgver/build"
-  make DESTDIR="$pkgdir" install
-}

Copied: catch2/repos/community-any/PKGBUILD (from rev 431838, catch2/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-02-12 00:38:24 UTC (rev 431839)
@@ -0,0 +1,42 @@
+# Maintainer: Baptiste Jonglez <archlinux at bitsofnetworks dot org>
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: Bart Verhagen <barrie.verhagen at gmail dot com>
+
+pkgname=catch2
+pkgver=2.6.0
+pkgrel=1
+pkgdesc="Modern, C++-native, header-only, test framework for unit-tests, TDD and BDD"
+arch=('any')
+url="https://github.com/catchorg/catch2"
+license=('Boost')
+makedepends=('cmake' 'python') # python seems to be necessary for building tests (FS#60273)
+source=("https://github.com/catchorg/Catch2/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('4c94a685557328eb1b0ed1017ca37c3a378742dc03b558cf02267b6ba8579577')
+
+build() {
+  cd Catch2-$pkgver
+
+  mkdir -p build
+  cd build
+  cmake .. \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DCATCH_USE_VALGRIND=OFF \
+    -DCATCH_BUILD_EXAMPLES=OFF \
+    -DCATCH_ENABLE_COVERAGE=OFF \
+    -DCATCH_ENABLE_WERROR=OFF \
+    -DBUILD_TESTING=ON
+  make
+}
+
+check() {
+  cd Catch2-$pkgver/build
+  make test
+}
+
+package() {
+  cd Catch2-$pkgver/build
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list