[arch-commits] Commit in hyperscan/repos/community-x86_64 (4 files)

Maxime Gauduin alucryd at archlinux.org
Mon Jan 18 08:37:45 UTC 2021


    Date: Monday, January 18, 2021 @ 08:37:44
  Author: alucryd
Revision: 822645

archrelease: copy trunk to community-x86_64

Added:
  hyperscan/repos/community-x86_64/.SRCINFO
    (from rev 822644, hyperscan/trunk/.SRCINFO)
  hyperscan/repos/community-x86_64/PKGBUILD
    (from rev 822644, hyperscan/trunk/PKGBUILD)
Deleted:
  hyperscan/repos/community-x86_64/.SRCINFO
  hyperscan/repos/community-x86_64/PKGBUILD

----------+
 .SRCINFO |   34 +++++++++----------
 PKGBUILD |  105 ++++++++++++++++++++++++++++++-------------------------------
 2 files changed, 70 insertions(+), 69 deletions(-)

Deleted: .SRCINFO
===================================================================
--- .SRCINFO	2021-01-18 08:37:39 UTC (rev 822644)
+++ .SRCINFO	2021-01-18 08:37:44 UTC (rev 822645)
@@ -1,17 +0,0 @@
-pkgbase = hyperscan
-	pkgdesc = High-performance regular expression matching library
-	pkgver = 5.3.0
-	pkgrel = 1
-	url = https://www.hyperscan.io
-	arch = x86_64
-	license = BSD
-	makedepends = boost
-	makedepends = cmake
-	makedepends = git
-	makedepends = python
-	makedepends = ragel
-	source = git+https://github.com/intel/hyperscan.git#tag=c00683d73916e39f01b0d418f686c8b5c379159c
-	sha256sums = SKIP
-
-pkgname = hyperscan
-

Copied: hyperscan/repos/community-x86_64/.SRCINFO (from rev 822644, hyperscan/trunk/.SRCINFO)
===================================================================
--- .SRCINFO	                        (rev 0)
+++ .SRCINFO	2021-01-18 08:37:44 UTC (rev 822645)
@@ -0,0 +1,17 @@
+pkgbase = hyperscan
+	pkgdesc = High-performance regular expression matching library
+	pkgver = 5.4.0
+	pkgrel = 1
+	url = https://www.hyperscan.io
+	arch = x86_64
+	license = BSD
+	makedepends = boost
+	makedepends = cmake
+	makedepends = git
+	makedepends = python
+	makedepends = ragel
+	source = git+https://github.com/intel/hyperscan.git#tag=64a995bf445d86b74eb0f375624ffc85682eadfe
+	sha256sums = SKIP
+
+pkgname = hyperscan
+

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-01-18 08:37:39 UTC (rev 822644)
+++ PKGBUILD	2021-01-18 08:37:44 UTC (rev 822645)
@@ -1,52 +0,0 @@
-# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
-# Contributor: Alireza Ayinmehr <alireza.darksun at gmail.com>
-# Contributor: Maxwell Pray a.k.a. Synthead <synthead at gmail.com>
-# Contributor: JSkier <jskier at gmail dot com>
-# Contributor: Ivan Shapovalov <intelfx at intelfx.name>
-
-pkgname=hyperscan
-pkgver=5.3.0
-pkgrel=1
-pkgdesc='High-performance regular expression matching library'
-arch=(x86_64)
-url=https://www.hyperscan.io
-license=(BSD)
-makedepends=(
-  boost
-  cmake
-  git
-  python
-  ragel
-)
-source=(git+https://github.com/intel/hyperscan.git#tag=c00683d73916e39f01b0d418f686c8b5c379159c)
-sha256sums=(SKIP)
-
-pkgver() {
-  cd hyperscan
-
-  git describe --tags | sed 's/^v//'
-}
-
-prepare() {
-  if [[ -d build ]]; then
-    rm -rf build
-  fi
-  mkdir build
-}
-
-build() {
-  cd build
-
-  cmake ../hyperscan \
-    -DCMAKE_INSTALL_PREFIX=/usr \
-    -DCMAKE_INSTALL_LIBDIR=lib \
-    -DBUILD_SHARED_LIBS=ON
-  make
-}
-
-package() {
-  make DESTDIR="$pkgdir" -C build install
-  install -Dm 644 hyperscan/COPYING -t "${pkgdir}"/usr/share/licenses/hyperscan/
-}
-
-# vim: ts=2 sw=2 et:

Copied: hyperscan/repos/community-x86_64/PKGBUILD (from rev 822644, hyperscan/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-01-18 08:37:44 UTC (rev 822645)
@@ -0,0 +1,53 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: Alireza Ayinmehr <alireza.darksun at gmail.com>
+# Contributor: Maxwell Pray a.k.a. Synthead <synthead at gmail.com>
+# Contributor: JSkier <jskier at gmail dot com>
+# Contributor: Ivan Shapovalov <intelfx at intelfx.name>
+
+pkgname=hyperscan
+pkgver=5.4.0
+pkgrel=1
+pkgdesc='High-performance regular expression matching library'
+arch=(x86_64)
+url=https://www.hyperscan.io
+license=(BSD)
+makedepends=(
+  boost
+  cmake
+  git
+  python
+  ragel
+)
+_tag=64a995bf445d86b74eb0f375624ffc85682eadfe
+source=(git+https://github.com/intel/hyperscan.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+  cd hyperscan
+
+  git describe --tags | sed 's/^v//'
+}
+
+prepare() {
+  if [[ -d build ]]; then
+    rm -rf build
+  fi
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake ../hyperscan \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_INSTALL_LIBDIR=lib \
+    -DBUILD_SHARED_LIBS=ON
+  make
+}
+
+package() {
+  make DESTDIR="$pkgdir" -C build install
+  install -Dm 644 hyperscan/COPYING -t "${pkgdir}"/usr/share/licenses/hyperscan/
+}
+
+# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list