[arch-commits] Commit in php-igbinary/repos/community-x86_64 (PKGBUILD PKGBUILD)

David Runge dvzrv at gemini.archlinux.org
Sun Aug 8 19:56:10 UTC 2021


    Date: Sunday, August 8, 2021 @ 19:56:10
  Author: dvzrv
Revision: 995715

archrelease: copy trunk to community-x86_64

Added:
  php-igbinary/repos/community-x86_64/PKGBUILD
    (from rev 995714, php-igbinary/trunk/PKGBUILD)
Deleted:
  php-igbinary/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  164 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 82 insertions(+), 82 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-08-08 19:56:00 UTC (rev 995714)
+++ PKGBUILD	2021-08-08 19:56:10 UTC (rev 995715)
@@ -1,82 +0,0 @@
-# Maintainer: David Runge <dvzrv at archlinux.org>
-
-_name=igbinary
-pkgbase=php-igbinary
-pkgname=('php-igbinary' 'php7-igbinary')
-pkgver=3.2.4
-pkgrel=1
-pkgdesc="A drop in replacement for the standard php serializer"
-arch=('x86_64')
-url="https://github.com/igbinary/igbinary"
-license=('BSD')
-depends=('glibc')
-makedepends=('php7' 'php')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/${pkgver}.tar.gz")
-sha512sums=('0f1d482f4615f8ec9b269d74e48f6b74b0e276b237a190e40ffc643afd6129d9e01be3375864e6e0be1b9666a75ca0e2a6a2dbf571384bfdffe497316168da78')
-b2sums=('f52f01ace2c24b9bc0c64b3421609ff390e10c1825e09b2bc7a294e902975988e4e9c658e87404f496d63701fc98c7aa2626ce3bb88871f429d7cda6b96092b9')
-
-prepare() {
-  mv -v "${_name}-${pkgver}" "$pkgbase-$pkgver"
-  # disable the extension by default
-  sed 's/extension/;extension/g' -i "$pkgbase-$pkgver/${_name}.php.ini"
-
-  cp -av "$pkgbase-$pkgver" "${pkgname[1]}-$pkgver"
-  (
-    cd "${pkgbase}-$pkgver"
-    phpize
-  )
-  (
-    cd "${pkgname[1]}-$pkgver"
-    phpize7
-  )
-}
-
-build() {
-  (
-    cd "$pkgbase-$pkgver"
-    ./configure --prefix=/usr \
-                --enable-igbinary
-    make
-  )
-  (
-    cd "${pkgname[1]}-$pkgver"
-    ./configure --prefix=/usr \
-                --enable-igbinary
-    make
-  )
-}
-
-check() {
-  (
-    cd "$pkgbase-$pkgver"
-    NO_INTERACTION=1 make -k test
-  )
-  (
-    cd "${pkgname[1]}-$pkgver"
-    NO_INTERACTION=1 make -k test
-  )
-}
-
-package_php-igbinary() {
-  depends+=('php')
-  backup=("etc/php/conf.d/${_name}.ini")
-
-  cd "$pkgname-$pkgver"
-  make INSTALL_ROOT="$pkgdir/" install
-  install -vDm 644 "${_name}.php.ini" "${pkgdir}/etc/php/conf.d/${_name}.ini"
-  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {CREDITS,NEWS,README.md} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
-}
-
-package_php7-igbinary() {
-  depends+=('php7')
-  backup=("etc/php7/conf.d/${_name}.ini")
-
-  cd "$pkgname-$pkgver"
-  make INSTALL_ROOT="$pkgdir/" install
-  install -vDm 644 "${_name}.php.ini" "${pkgdir}/etc/php7/conf.d/${_name}.ini"
-  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
-  install -vDm 644 {CREDITS,NEWS,README.md} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
-}

Copied: php-igbinary/repos/community-x86_64/PKGBUILD (from rev 995714, php-igbinary/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-08-08 19:56:10 UTC (rev 995715)
@@ -0,0 +1,82 @@
+# Maintainer: David Runge <dvzrv at archlinux.org>
+
+_name=igbinary
+pkgbase=php-igbinary
+pkgname=('php-igbinary' 'php7-igbinary')
+pkgver=3.2.5
+pkgrel=1
+pkgdesc="A drop in replacement for the standard php serializer"
+arch=('x86_64')
+url="https://github.com/igbinary/igbinary"
+license=('BSD')
+depends=('glibc')
+makedepends=('php7' 'php')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/${_name}/${_name}/archive/${pkgver}.tar.gz")
+sha512sums=('bf66a2bf74d8e8a33e7063fbbaec0da1fa79989b2a28ab4380a192b795824e6b91344e8af89a80d3fca8b2fb751b725a47079370fc3947fc6a5328412554495f')
+b2sums=('21485f97b09a07910dae1a5bade7913a6793bae767342947c59d5b63694bc057b8a29e4a7d0cf423dbcbedff7659d85fa630813ccd05a4a05440764e95c5bc2d')
+
+prepare() {
+  mv -v "${_name}-${pkgver}" "$pkgbase-$pkgver"
+  # disable the extension by default
+  sed 's/extension/;extension/g' -i "$pkgbase-$pkgver/${_name}.php.ini"
+
+  cp -av "$pkgbase-$pkgver" "${pkgname[1]}-$pkgver"
+  (
+    cd "${pkgbase}-$pkgver"
+    phpize
+  )
+  (
+    cd "${pkgname[1]}-$pkgver"
+    phpize7
+  )
+}
+
+build() {
+  (
+    cd "$pkgbase-$pkgver"
+    ./configure --prefix=/usr \
+                --enable-igbinary
+    make
+  )
+  (
+    cd "${pkgname[1]}-$pkgver"
+    ./configure --prefix=/usr \
+                --enable-igbinary
+    make
+  )
+}
+
+check() {
+  (
+    cd "$pkgbase-$pkgver"
+    NO_INTERACTION=1 make -k test
+  )
+  (
+    cd "${pkgname[1]}-$pkgver"
+    NO_INTERACTION=1 make -k test
+  )
+}
+
+package_php-igbinary() {
+  depends+=('php')
+  backup=("etc/php/conf.d/${_name}.ini")
+
+  cd "$pkgname-$pkgver"
+  make INSTALL_ROOT="$pkgdir/" install
+  install -vDm 644 "${_name}.php.ini" "${pkgdir}/etc/php/conf.d/${_name}.ini"
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {CREDITS,NEWS,README.md} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}
+
+package_php7-igbinary() {
+  depends+=('php7')
+  backup=("etc/php7/conf.d/${_name}.ini")
+
+  cd "$pkgname-$pkgver"
+  make INSTALL_ROOT="$pkgdir/" install
+  install -vDm 644 "${_name}.php.ini" "${pkgdir}/etc/php7/conf.d/${_name}.ini"
+  install -vDm 644 COPYING -t "${pkgdir}/usr/share/licenses/${pkgname}"
+  install -vDm 644 {CREDITS,NEWS,README.md} \
+    -t "${pkgdir}/usr/share/doc/${pkgname}"
+}



More information about the arch-commits mailing list