Date: Monday, February 13, 2023 @ 21:38:50
Author: seblu
Revision: 468735
db-move: moved gzip from [testing] to [core] (x86_64)
Added:
gzip/repos/core-x86_64/PKGBUILD
(from rev 468734, gzip/repos/testing-x86_64/PKGBUILD)
gzip/repos/core-x86_64/keys/
Deleted:
gzip/repos/core-x86_64/PKGBUILD
gzip/repos/testing-x86_64/
----------------------+
/PKGBUILD | 46 ++++++++++++++++++++++++++++++++++++++++++++++
core-x86_64/PKGBUILD | 47 -----------------------------------------------
2 files changed, 46 insertions(+), 47 deletions(-)
Deleted: core-x86_64/PKGBUILD
===================================================================
--- core-x86_64/PKGBUILD 2023-02-13 21:38:48 UTC (rev 468734)
+++ core-x86_64/PKGBUILD 2023-02-13 21:38:50 UTC (rev 468735)
@@ -1,47 +0,0 @@
-# Maintainer: Sébastien "Seblu" Luttringer <[email protected]>
-# Contributor: Allan McRae <[email protected]>
-# Contributor: judd <[email protected]>
-
-pkgname=gzip
-pkgver=1.12
-pkgrel=1
-pkgdesc='GNU compression utility'
-arch=('x86_64')
-url='https://www.gnu.org/software/gzip/'
-license=('GPL3')
-groups=('base-devel')
-depends=('glibc' 'bash' 'less')
-validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000BEEEE') # Jim Meyering
-source=("https://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.xz"{,.sig})
-sha256sums=('ce5e03e519f637e1f814011ace35c4f87b33c0bbabeec35baf5fbd3479e91956'
- 'SKIP')
-prepare() {
- cd $pkgname-$pkgver
- # apply patch from the source array (should be a pacman feature)
- local filename
- for filename in "${source[@]}"; do
- if [[ "$filename" =~ \.patch$ ]]; then
- echo "Applying patch ${filename##*/}"
- patch -p1 -N -i "$srcdir/${filename##*/}"
- fi
- done
- :
-}
-
-build() {
- cd $pkgname-$pkgver
- ./configure --prefix=/usr
- make
-}
-
-check() {
- cd $pkgname-$pkgver
- make check
-}
-
-package() {
- cd $pkgname-$pkgver
- make prefix="$pkgdir/usr" install
-}
-
-# vim:set ts=2 sw=2 et:
Copied: gzip/repos/core-x86_64/PKGBUILD (from rev 468734,
gzip/repos/testing-x86_64/PKGBUILD)
===================================================================
--- core-x86_64/PKGBUILD (rev 0)
+++ core-x86_64/PKGBUILD 2023-02-13 21:38:50 UTC (rev 468735)
@@ -0,0 +1,46 @@
+# Maintainer: Sébastien "Seblu" Luttringer <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: judd <[email protected]>
+
+pkgname=gzip
+pkgver=1.12
+pkgrel=2
+pkgdesc='GNU compression utility'
+arch=('x86_64')
+url='https://www.gnu.org/software/gzip/'
+license=('GPL3')
+depends=('glibc' 'bash' 'less')
+validpgpkeys=('155D3FC500C834486D1EEA677FD9FCCB000BEEEE') # Jim Meyering
+source=("https://ftp.gnu.org/pub/gnu/gzip/gzip-$pkgver.tar.xz"{,.sig})
+sha256sums=('ce5e03e519f637e1f814011ace35c4f87b33c0bbabeec35baf5fbd3479e91956'
+ 'SKIP')
+prepare() {
+ cd $pkgname-$pkgver
+ # apply patch from the source array (should be a pacman feature)
+ local filename
+ for filename in "${source[@]}"; do
+ if [[ "$filename" =~ \.patch$ ]]; then
+ echo "Applying patch ${filename##*/}"
+ patch -p1 -N -i "$srcdir/${filename##*/}"
+ fi
+ done
+ :
+}
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+check() {
+ cd $pkgname-$pkgver
+ make check
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make prefix="$pkgdir/usr" install
+}
+
+# vim:set ts=2 sw=2 et: