![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit 73e78d208a3b6f84231ed584c2c70a33b9dcb5c1 Author: Tim Biermann <tbier@posteo.de> Date: Sun Jun 7 15:53:55 2020 +0000 re2: initial commit, version 2020-06-01 diff --git a/re2/.footprint b/re2/.footprint new file mode 100644 index 000000000..56f276b30 --- /dev/null +++ b/re2/.footprint @@ -0,0 +1,14 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/re2/ +-rw-r--r-- root/root usr/include/re2/filtered_re2.h +-rw-r--r-- root/root usr/include/re2/re2.h +-rw-r--r-- root/root usr/include/re2/set.h +-rw-r--r-- root/root usr/include/re2/stringpiece.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libre2.a +lrwxrwxrwx root/root usr/lib/libre2.so -> libre2.so.7.0.0 +lrwxrwxrwx root/root usr/lib/libre2.so.7 -> libre2.so.7.0.0 +-rwxr-xr-x root/root usr/lib/libre2.so.7.0.0 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/re2.pc diff --git a/re2/.signature b/re2/.signature new file mode 100644 index 000000000..28da373a8 --- /dev/null +++ b/re2/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3/hMKWSpCRRObC5FK1dmizbrrV5RXvWre9pJuKbG1Qs7aYziYl+s/HusS5EmhTiCy/2kt83Qe26pGkCIZxsQRg8= +SHA256 (Pkgfile) = f169342e7973b4b453420df36c8bca139d0199e2793d4fe03866a619da8cf5e3 +SHA256 (.footprint) = ce48f80f887021c50a5cbc0a8fe1f156ffdd9e09e4bfdfb40bcb9204c6bdc8a3 +SHA256 (re2-2020-06-01.tar.gz) = fb8e0f4ed7a212e3420507f27933ef5a8c01aec70e5148c6a35313573269fae6 diff --git a/re2/Pkgfile b/re2/Pkgfile new file mode 100644 index 000000000..514190d11 --- /dev/null +++ b/re2/Pkgfile @@ -0,0 +1,15 @@ +# Description: Fast, safe, thread-friendly regular expression engine +# URL: https://github.com/google/re2 +# Maintainer: Tim Biermann, tbier at posteo dot de +# Depends on: + +name=re2 +version=2020-06-01 +release=1 +source=(https://github.com/google/re2/archive/$version/$name-$version.tar.gz) + +build() { + cd $name-$version + make + make prefix=/usr DESTDIR=$PKG install +}