Date: Wednesday, March 1, 2023 @ 15:39:34
  Author: alucryd
Revision: 1405992

archrelease: copy trunk to community-x86_64

Added:
  xxhash/repos/community-x86_64/PKGBUILD
    (from rev 1405991, xxhash/trunk/PKGBUILD)
  xxhash/repos/community-x86_64/xxhash-man-symlinks.patch
    (from rev 1405991, xxhash/trunk/xxhash-man-symlinks.patch)
Deleted:
  xxhash/repos/community-x86_64/PKGBUILD
  xxhash/repos/community-x86_64/xxhash-man-symlinks.patch

---------------------------+
 PKGBUILD                  |   94 ++++++++++++++++++++++----------------------
 xxhash-man-symlinks.patch |   32 +++++++-------
 2 files changed, 63 insertions(+), 63 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2023-03-01 15:39:22 UTC (rev 1405991)
+++ PKGBUILD    2023-03-01 15:39:34 UTC (rev 1405992)
@@ -1,47 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-# Contributor: Fabien Dubosson <[email protected]>
-# Contributor: Konstantin Gizdov <[email protected]>
-
-pkgname=xxhash
-pkgver=0.8.1
-pkgrel=3
-pkgdesc='Extremely fast non-cryptographic hash algorithm'
-arch=(x86_64)
-url=https://cyan4973.github.io/xxHash/
-license=(
-  GPL2
-  BSD
-)
-depends=(glibc)
-makedepends=(git)
-provides=(libxxhash.so)
-_tag=35b0373c697b5f160d3db26b1cbb45a0d5ba788c
-source=(
-  git+https://github.com/Cyan4973/xxHash.git#tag=${_tag}
-  xxhash-man-symlinks.patch
-)
-b2sums=(
-  SKIP
-  
83236ec7363f98842a5c8deb52e0a200321a722748a69b472b42b65eb85fa06ac5490926ea7612c0c455bf4998e109567706cf0f03e2c52c1e497abf258e5219
-)
-
-prepare() {
-  cd xxHash
-  patch -Np1 -i ../xxhash-man-symlinks.patch
-}
-
-pkgver() {
-  cd xxHash
-  git describe --tags | sed 's/^v//'
-}
-
-build() {
-  make PREFIX=/usr -C xxHash
-}
-
-package() {
-  make PREFIX=/usr DESTDIR="${pkgdir}" -C xxHash install
-  install -Dm 644 xxHash/LICENSE -t "${pkgdir}"/usr/share/licenses/xxhash
-}
-
-# vim: ts=2 sw=2 et:

Copied: xxhash/repos/community-x86_64/PKGBUILD (from rev 1405991, 
xxhash/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2023-03-01 15:39:34 UTC (rev 1405992)
@@ -0,0 +1,47 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+# Contributor: Fabien Dubosson <[email protected]>
+# Contributor: Konstantin Gizdov <[email protected]>
+
+pkgname=xxhash
+pkgver=0.8.1
+pkgrel=4
+pkgdesc='Extremely fast non-cryptographic hash algorithm'
+arch=(x86_64)
+url=https://cyan4973.github.io/xxHash/
+license=(
+  GPL2
+  BSD
+)
+depends=(glibc)
+makedepends=(git)
+provides=(libxxhash.so)
+_tag=35b0373c697b5f160d3db26b1cbb45a0d5ba788c
+source=(
+  git+https://github.com/Cyan4973/xxHash.git#tag=${_tag}
+  xxhash-man-symlinks.patch
+)
+b2sums=(
+  SKIP
+  
83236ec7363f98842a5c8deb52e0a200321a722748a69b472b42b65eb85fa06ac5490926ea7612c0c455bf4998e109567706cf0f03e2c52c1e497abf258e5219
+)
+
+prepare() {
+  cd xxHash
+  patch -Np1 -i ../xxhash-man-symlinks.patch
+}
+
+pkgver() {
+  cd xxHash
+  git describe --tags | sed 's/^v//'
+}
+
+build() {
+  make PREFIX=/usr DISPATCH=1 -C xxHash
+}
+
+package() {
+  make PREFIX=/usr DISPATCH=1 DESTDIR="${pkgdir}" -C xxHash install
+  install -Dm 644 xxHash/LICENSE -t "${pkgdir}"/usr/share/licenses/xxhash
+}
+
+# vim: ts=2 sw=2 et:

Deleted: xxhash-man-symlinks.patch
===================================================================
--- xxhash-man-symlinks.patch   2023-03-01 15:39:22 UTC (rev 1405991)
+++ xxhash-man-symlinks.patch   2023-03-01 15:39:34 UTC (rev 1405992)
@@ -1,16 +0,0 @@
-diff '--color=auto' -rupN xxHash.orig/Makefile xxHash/Makefile
---- xxHash.orig/Makefile       2021-12-06 11:36:16.742156574 +0100
-+++ xxHash/Makefile    2021-12-06 11:37:31.712450289 +0100
-@@ -518,9 +518,9 @@ endif
-       $(Q)ln -sf xxhsum $(DESTDIR)$(BINDIR)/xxh128sum
-       @echo Installing man pages
-       $(Q)$(INSTALL_DATA) $(MAN) $(DESTDIR)$(MANDIR)/xxhsum.1
--      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh32sum.1
--      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh64sum.1
--      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh128sum.1
-+      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh32sum.1.gz
-+      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh64sum.1.gz
-+      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh128sum.1.gz
-       @echo xxhash installation completed
- 
- .PHONY: uninstall

Copied: xxhash/repos/community-x86_64/xxhash-man-symlinks.patch (from rev 
1405991, xxhash/trunk/xxhash-man-symlinks.patch)
===================================================================
--- xxhash-man-symlinks.patch                           (rev 0)
+++ xxhash-man-symlinks.patch   2023-03-01 15:39:34 UTC (rev 1405992)
@@ -0,0 +1,16 @@
+diff '--color=auto' -rupN xxHash.orig/Makefile xxHash/Makefile
+--- xxHash.orig/Makefile       2021-12-06 11:36:16.742156574 +0100
++++ xxHash/Makefile    2021-12-06 11:37:31.712450289 +0100
+@@ -518,9 +518,9 @@ endif
+       $(Q)ln -sf xxhsum $(DESTDIR)$(BINDIR)/xxh128sum
+       @echo Installing man pages
+       $(Q)$(INSTALL_DATA) $(MAN) $(DESTDIR)$(MANDIR)/xxhsum.1
+-      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh32sum.1
+-      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh64sum.1
+-      $(Q)ln -sf $(MAN) $(DESTDIR)$(MANDIR)/xxh128sum.1
++      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh32sum.1.gz
++      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh64sum.1.gz
++      $(Q)ln -sf xxhsum.1.gz $(DESTDIR)$(MANDIR)/xxh128sum.1.gz
+       @echo xxhash installation completed
+ 
+ .PHONY: uninstall

Reply via email to