Date: Sunday, October 23, 2022 @ 22:09:43
  Author: grawlinson
Revision: 1334421

archrelease: copy trunk to community-x86_64

Added:
  libcpuid/repos/community-x86_64/PKGBUILD
    (from rev 1334420, libcpuid/trunk/PKGBUILD)
Deleted:
  libcpuid/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  100 ++++++++++++++++++++++++++++++++-----------------------------
 1 file changed, 54 insertions(+), 46 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-10-23 22:08:54 UTC (rev 1334420)
+++ PKGBUILD    2022-10-23 22:09:43 UTC (rev 1334421)
@@ -1,46 +0,0 @@
-# Maintainer: George Rawlinson <[email protected]>
-# Contributor: X0rg
-
-pkgname=libcpuid
-pkgver=0.6.0
-pkgrel=1
-pkgdesc='A small C library for x86 CPU detection and feature extraction'
-arch=('x86_64')
-url='http://libcpuid.sourceforge.net'
-license=('BSD')
-depends=('glibc')
-makedepends=('git' 'cmake' 'ninja' 'doxygen' 'python' 'graphviz')
-options=('debug')
-_commit='3bf569faf5d606bc29d7122984eb888232fae8bd'
-source=("$pkgname::git+https://github.com/anrieff/libcpuid#commit=$_commit";)
-b2sums=('SKIP')
-
-pkgver() {
-  cd "$pkgname"
-
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-       cmake \
-    -S "$pkgname" \
-    -B build \
-    -GNinja \
-    -DCMAKE_BUILD_TYPE=Release \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DLIBCPUID_TESTS:BOOL=ON
-
-       cmake --build build
-}
-
-check() {
-  cd build
-  ninja consistency test-old
-}
-
-package() {
-       DESTDIR="$pkgdir" cmake --install build
-
-  # license
-       install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" 
"$pkgname/COPYING"
-}

Copied: libcpuid/repos/community-x86_64/PKGBUILD (from rev 1334420, 
libcpuid/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-10-23 22:09:43 UTC (rev 1334421)
@@ -0,0 +1,54 @@
+# Maintainer: George Rawlinson <[email protected]>
+# Contributor: X0rg
+
+pkgname=libcpuid
+pkgver=0.6.1
+pkgrel=1
+pkgdesc='A small C library for x86 CPU detection and feature extraction'
+arch=('x86_64')
+url='http://libcpuid.sourceforge.net'
+license=('BSD')
+depends=('glibc')
+makedepends=(
+  'git'
+  'cmake'
+  'ninja'
+  'doxygen'
+  'python'
+  'graphviz'
+)
+options=('debug')
+_commit='e5b5f2e0193ffce91e02bc585bf42fa58acd296b'
+source=("$pkgname::git+https://github.com/anrieff/libcpuid#commit=$_commit";)
+b2sums=('SKIP')
+
+pkgver() {
+  cd "$pkgname"
+
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+       cmake \
+    -S "$pkgname" \
+    -B build \
+    -G Ninja \
+    -D CMAKE_BUILD_TYPE=Release \
+    -D CMAKE_INSTALL_PREFIX=/usr \
+    -D LIBCPUID_TESTS=ON
+
+       cmake --build build
+}
+
+check() {
+  cd build
+
+  ninja consistency test-old
+}
+
+package() {
+       DESTDIR="$pkgdir" cmake --install build
+
+  # license
+       install -vDm644 -t "$pkgdir/usr/share/licenses/$pkgname" 
"$pkgname/COPYING"
+}

Reply via email to