[arch-commits] Commit in lz4/repos (3 files)

Sébastien Luttringer seblu at gemini.archlinux.org
Sat Sep 3 12:41:10 UTC 2022


    Date: Saturday, September 3, 2022 @ 12:41:10
  Author: seblu
Revision: 454995

db-move: moved lz4 from [testing] to [core] (x86_64)

Added:
  lz4/repos/core-x86_64/PKGBUILD
    (from rev 454994, lz4/repos/testing-x86_64/PKGBUILD)
Deleted:
  lz4/repos/core-x86_64/PKGBUILD
  lz4/repos/testing-x86_64/

----------------------+
 /PKGBUILD            |   51 +++++++++++++++++++++++++++++++++++++++++++++++
 core-x86_64/PKGBUILD |   53 -------------------------------------------------
 2 files changed, 51 insertions(+), 53 deletions(-)

Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD	2022-09-03 12:40:15 UTC (rev 454994)
+++ core-x86_64/PKGBUILD	2022-09-03 12:41:10 UTC (rev 454995)
@@ -1,53 +0,0 @@
-# Maintainer: Sébastien Luttringer
-
-pkgname=lz4
-epoch=1
-pkgver=1.9.3
-pkgrel=2
-pkgdesc='Extremely fast compression algorithm'
-arch=('x86_64')
-url='http://www.lz4.org/'
-license=('GPL2')
-makedepends=('git')
-checkdepends=('diffutils')
-depends=('glibc')
-source=("git+https://github.com/lz4/lz4.git#tag=v$pkgver"
-        'https://github.com/lz4/lz4/commit/8301a21773ef61656225e264f4f06ae14462bca7.patch')
-sha256sums=('SKIP'
-            'a9109fac17ee72ed3ec86f2cd5e8c4a0f34a548213a3d3c89861d6b2a6bd2871')
-
-prepare() {
-  cd $pkgname
-  # apply patch from the source array (should be a pacman feature)
-  local src
-  for src in "${source[@]}"; do
-    src="${src%%::*}"
-    src="${src##*/}"
-    [[ $src = *.patch ]] || continue
-    msg2 "Applying patch $src..."
-    patch -Np1 < "../$src"
-  done
-}
-
-build() {
-  # do not use the main makefile, it calls sub make with -e
-  # exported CLFAGS by makepkg break the version. see FS#50071
-  cd $pkgname
-  make -C lib PREFIX=/usr
-  make -C programs PREFIX=/usr lz4 lz4c
-}
-
-check() {
-  rm -f passwd.lz4
-  $pkgname/programs/lz4 /etc/passwd passwd.lz4
-  $pkgname/programs/lz4 -d passwd.lz4 passwd
-  diff -q /etc/passwd passwd
-  rm passwd
-}
-
-package() {
-  cd $pkgname
-  make install PREFIX=/usr DESTDIR="$pkgdir"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: lz4/repos/core-x86_64/PKGBUILD (from rev 454994, lz4/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD	                        (rev 0)
+++ core-x86_64/PKGBUILD	2022-09-03 12:41:10 UTC (rev 454995)
@@ -0,0 +1,51 @@
+# Maintainer: Sébastien Luttringer
+
+pkgname=lz4
+epoch=1
+pkgver=1.9.4
+pkgrel=1
+pkgdesc='Extremely fast compression algorithm'
+arch=('x86_64')
+url='https://lz4.github.io/lz4/'
+license=('GPL2')
+makedepends=('git')
+checkdepends=('diffutils')
+depends=('glibc')
+source=("git+https://github.com/lz4/lz4.git#tag=v$pkgver")
+sha256sums=('SKIP')
+
+prepare() {
+  cd $pkgname
+  # apply patch from the source array (should be a pacman feature)
+  local src
+  for src in "${source[@]}"; do
+    src="${src%%::*}"
+    src="${src##*/}"
+    [[ $src = *.patch ]] || continue
+    msg2 "Applying patch $src..."
+    patch -Np1 < "../$src"
+  done
+}
+
+build() {
+  # do not use the main makefile, it calls sub make with -e
+  # exported CLFAGS by makepkg break the version. see FS#50071
+  cd $pkgname
+  make -C lib PREFIX=/usr
+  make -C programs PREFIX=/usr lz4 lz4c
+}
+
+check() {
+  rm -f passwd.lz4
+  $pkgname/programs/lz4 /etc/passwd passwd.lz4
+  $pkgname/programs/lz4 -d passwd.lz4 passwd
+  diff -q /etc/passwd passwd
+  rm passwd
+}
+
+package() {
+  cd $pkgname
+  make install PREFIX=/usr DESTDIR="$pkgdir"
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list