Date: Sunday, May 14, 2023 @ 22:08:47
  Author: dvzrv
Revision: 1461728

archrelease: copy trunk to community-x86_64

Added:
  cpputest/repos/community-x86_64/PKGBUILD
    (from rev 1461727, cpputest/trunk/PKGBUILD)
Deleted:
  cpputest/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |   79 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 41 insertions(+), 38 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-05-14 22:08:33 UTC (rev 1461727)
+++ PKGBUILD    2023-05-14 22:08:47 UTC (rev 1461728)
@@ -1,38 +0,0 @@
-# Maintainer: David Runge <[email protected]>
-
-pkgname=cpputest
-pkgver=4.0
-pkgrel=3
-pkgdesc="Unit testing and mocking framework for C/C++"
-arch=(x86_64)
-url="https://github.com/cpputest/cpputest";
-license=(BSD)
-makedepends=(cmake)
-options=(debug !strip staticlibs)
-source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
-sha512sums=('5f7d6f9e34a462b35a0161a7486fd56074f5b07f92d029a3c57741c72df7bbc6ea4f98b1e57e9c500ad6d57c303d222afe523d59ec943f4461f67ce5be74dd77')
-b2sums=('b44698158e5d0091e64ec3ac1f8009cc8f23286155e9314ae232bd6991425338da7c0ad5a3e9682d086af6aa86df5c56d62026ab4e28749563e726744ecf86ca')
-
-build() {
-  local cmake_options=(
-    -B build
-    -S $pkgname-$pkgver
-    -DCMAKE_BUILD_TYPE=None
-    -DCMAKE_INSTALL_PREFIX=/usr
-    -DLONGLONG=ON
-    -DC++11=ON
-    -Wno-dev
-  )
-
-  cmake "${cmake_options[@]}"
-  cmake --build build
-}
-
-check() {
-  ctest --test-dir build --output-on-failure
-}
-
-package() {
-  DESTDIR="$pkgdir" cmake --install build
-  install -vDm 644 $pkgname-$pkgver/COPYING -t 
"$pkgdir/usr/share/licenses/$pkgname/"
-}

Copied: cpputest/repos/community-x86_64/PKGBUILD (from rev 1461727, 
cpputest/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-05-14 22:08:47 UTC (rev 1461728)
@@ -0,0 +1,41 @@
+# Maintainer: David Runge <[email protected]>
+
+pkgname=cpputest
+pkgver=4.0
+pkgrel=4
+pkgdesc="Unit testing and mocking framework for C/C++"
+arch=(x86_64)
+url="https://github.com/cpputest/cpputest";
+license=(BSD)
+makedepends=(cmake)
+options=(
+  !strip
+  staticlibs
+)
+source=($pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz)
+sha512sums=('5f7d6f9e34a462b35a0161a7486fd56074f5b07f92d029a3c57741c72df7bbc6ea4f98b1e57e9c500ad6d57c303d222afe523d59ec943f4461f67ce5be74dd77')
+b2sums=('b44698158e5d0091e64ec3ac1f8009cc8f23286155e9314ae232bd6991425338da7c0ad5a3e9682d086af6aa86df5c56d62026ab4e28749563e726744ecf86ca')
+
+build() {
+  local cmake_options=(
+    -B build
+    -D CMAKE_BUILD_TYPE=None
+    -D CMAKE_INSTALL_PREFIX=/usr
+    -D LONGLONG=ON
+    -D C++11=ON
+    -S $pkgname-$pkgver
+    -W no-dev
+  )
+
+  cmake "${cmake_options[@]}"
+  cmake --build build
+}
+
+check() {
+  ctest --test-dir build --output-on-failure
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+  install -vDm 644 $pkgname-$pkgver/COPYING -t 
"$pkgdir/usr/share/licenses/$pkgname/"
+}

Reply via email to