[arch-commits] Commit in libpng/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2020-07-06 Thread Christian Hesse via arch-commits
Date: Monday, July 6, 2020 @ 21:26:58
  Author: eworm
Revision: 390924

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 390923, libpng/trunk/PKGBUILD)

--+
 PKGBUILD |   43 +++
 1 file changed, 43 insertions(+)

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 390923, 
libpng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2020-07-06 21:26:58 UTC (rev 390924)
@@ -0,0 +1,43 @@
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libpng
+pkgver=1.6.37
+pkgrel=3
+pkgdesc="A collection of routines used to create PNG format graphics files"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (mozilla) 
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;)
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca')
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd contrib/pngminus
+  make PNGLIB_SHARED="-L$pkgdir/usr/lib -lpng" CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS" png2pnm pnm2png
+  install -m0755 png2pnm pnm2png "$pkgdir/usr/bin/"
+}


[arch-commits] Commit in libpng/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2019-04-15 Thread Christian Hesse via arch-commits
Date: Monday, April 15, 2019 @ 14:43:22
  Author: eworm
Revision: 350790

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 350789, libpng/trunk/PKGBUILD)

--+
 PKGBUILD |   54 ++
 1 file changed, 54 insertions(+)

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 350789, 
libpng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2019-04-15 14:43:22 UTC (rev 350790)
@@ -0,0 +1,54 @@
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libpng
+pkgver=1.6.37
+_apngver=1.6.36
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (mozilla) 
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
+
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
+sha256sums=('505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca'
+'8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support. Required by Firefox
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+--prefix=/usr \
+--disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+
+  cd contrib/pngminus
+  make PNGLIB_SHARED="-L$pkgdir/usr/lib -lpng" CFLAGS="$CFLAGS" 
LDFLAGS="$LDFLAGS" png2pnm pnm2png
+  install -m0755 png2pnm pnm2png "$pkgdir/usr/bin/"
+}


[arch-commits] Commit in libpng/repos (testing-x86_64 testing-x86_64/PKGBUILD)

2018-12-20 Thread Christian Hesse via arch-commits
Date: Thursday, December 20, 2018 @ 08:04:18
  Author: eworm
Revision: 342595

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 342594, libpng/trunk/PKGBUILD)

--+
 PKGBUILD |   49 +
 1 file changed, 49 insertions(+)

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 342594, 
libpng/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-12-20 08:04:18 UTC (rev 342595)
@@ -0,0 +1,49 @@
+# Maintainer: Jan de Groot 
+# Contributor: dorphell 
+# Contributor: Travis Willard 
+# Contributor: Douglas Soares de Andrade 
+
+pkgname=libpng
+pkgver=1.6.36
+_apngver=1.6.36
+pkgrel=1
+pkgdesc="A collection of routines used to create PNG format graphics files"
+arch=('x86_64')
+url="http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn 
Randers-Pehrson (mozilla) 
+source=("https://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
+
"https://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
+sha256sums=('eceb924c1fa6b79172fdfd008d335f0e59172a86a66481e09d4089df872aa319'
+'8c1f33da739b29a77e35e5a1ebcdffaab63bfe184be8b5a97677cc80156fdc0f')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support. Required by Firefox
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr --disable-static
+  make
+}
+
+check() {
+  cd $pkgname-$pkgver
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+
+  cd contrib/pngminus
+  make PNGLIB="-L$pkgdir/usr/lib -lpng" -f makefile.std png2pnm pnm2png
+  install -m755 png2pnm pnm2png "$pkgdir/usr/bin/"
+  install -D -m644 ../../LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}


[arch-commits] Commit in libpng/repos/testing-x86_64 (PKGBUILD PKGBUILD)

2013-07-23 Thread Jan de Groot
Date: Tuesday, July 23, 2013 @ 15:39:28
  Author: jgc
Revision: 191312

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/PKGBUILD
(from rev 191311, libpng/trunk/PKGBUILD)
Deleted:
  libpng/repos/testing-x86_64/PKGBUILD

--+
 PKGBUILD |   91 ++---
 1 file changed, 46 insertions(+), 45 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-07-23 13:39:19 UTC (rev 191311)
+++ PKGBUILD2013-07-23 13:39:28 UTC (rev 191312)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot j...@archlinux.org
-# Contributor: dorphell dorph...@archlinux.org
-# Contributor: Travis Willard tra...@archlinux.org
-# Contributor: Douglas Soares de Andrade doug...@archlinux.org
-
-pkgname=libpng
-pkgver=1.6.3
-_apngver=1.6.3
-pkgrel=1
-pkgdesc=A collection of routines used to create PNG format graphics files
-arch=('i686' 'x86_64')
-url=http://www.libpng.org/pub/png/libpng.html;
-license=('custom')
-depends=('zlib' 'sh')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz;
-
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz;)
-md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
- '57007fc121baa2cdc48abcfb26300e78')
-
-prepare() {
-  cd $pkgname-$pkgver
-
-  # Add animated PNG (apng) support
-  # see http://sourceforge.net/projects/libpng-apng/
-  patch -Np1 -i ../libpng-$_apngver-apng.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR=$pkgdir install
-
-  cd contrib/pngminus
-  make PNGLIB=-L$pkgdir/usr/lib -lpng -f makefile.std png2pnm pnm2png
-  install -m755 png2pnm pnm2png $pkgdir/usr/bin/
-  install -D -m644 ../../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
-}

Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 191311, 
libpng/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-07-23 13:39:28 UTC (rev 191312)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot j...@archlinux.org
+# Contributor: dorphell dorph...@archlinux.org
+# Contributor: Travis Willard tra...@archlinux.org
+# Contributor: Douglas Soares de Andrade doug...@archlinux.org
+
+pkgname=libpng
+pkgver=1.6.3
+_apngver=1.6.3
+pkgrel=1
+pkgdesc=A collection of routines used to create PNG format graphics files
+arch=('i686' 'x86_64')
+url=http://www.libpng.org/pub/png/libpng.html;
+license=('custom')
+depends=('zlib' 'sh')
+options=('!libtool')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
+
http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
+md5sums=('9307f8ab04f4be3c1889ffb504f0fe5c'
+ 'SKIP'
+ '57007fc121baa2cdc48abcfb26300e78')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  # Add animated PNG (apng) support
+  # see http://sourceforge.net/projects/libpng-apng/
+  patch -Np1 -i ../libpng-$_apngver-apng.patch
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR=$pkgdir install
+
+  cd contrib/pngminus
+  make PNGLIB=-L$pkgdir/usr/lib -lpng -f makefile.std png2pnm pnm2png
+  install -m755 png2pnm pnm2png $pkgdir/usr/bin/
+  install -D -m644 ../../LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+}



[arch-commits] Commit in libpng/repos (testing-x86_64)

2010-05-26 Thread Jan de Groot
Date: Wednesday, May 26, 2010 @ 06:07:16
  Author: jgc
Revision: 81057

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/



[arch-commits] Commit in libpng/repos (testing-x86_64)

2010-03-04 Thread Pierre Schmitz
Date: Thursday, March 4, 2010 @ 23:20:51
  Author: pierre
Revision: 71183

archrelease: copy trunk to testing-x86_64

Added:
  libpng/repos/testing-x86_64/