[arch-commits] Commit in libpng/repos (4 files)
Christian Hesse
eworm at archlinux.org
Thu Oct 20 19:15:39 UTC 2016
Date: Thursday, October 20, 2016 @ 19:15:38
Author: eworm
Revision: 279064
archrelease: copy trunk to testing-i686, testing-x86_64
Added:
libpng/repos/testing-i686/PKGBUILD
(from rev 279063, libpng/trunk/PKGBUILD)
libpng/repos/testing-x86_64/PKGBUILD
(from rev 279063, libpng/trunk/PKGBUILD)
Deleted:
libpng/repos/testing-i686/PKGBUILD
libpng/repos/testing-x86_64/PKGBUILD
-------------------------+
/PKGBUILD | 102 ++++++++++++++++++++++++++++++++++++++++++++++
testing-i686/PKGBUILD | 52 -----------------------
testing-x86_64/PKGBUILD | 52 -----------------------
3 files changed, 102 insertions(+), 104 deletions(-)
Deleted: testing-i686/PKGBUILD
===================================================================
--- testing-i686/PKGBUILD 2016-10-20 19:15:32 UTC (rev 279063)
+++ testing-i686/PKGBUILD 2016-10-20 19:15:38 UTC (rev 279064)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: dorphell <dorphell at archlinux.org>
-# Contributor: Travis Willard <travis at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgname=libpng
-pkgver=1.6.26
-_apngver=1.6.25
-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')
-validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) <glennrp at gmail.com>
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
- http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
-sha256sums=('266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9'
- 'SKIP'
- '053a27e2145b2b25a41666fac0442552234b7b630228c649d9a61937d703d908')
-
-prepare() {
- cd $pkgname-$pkgver
-
- # Add animated PNG (apng) support. Required by Firefox
- # see http://sourceforge.net/projects/libpng-apng/
- sed -i '/pngpriv.h/,/#define PNG_BGR/s|0x[0-9]*|&U|' ../libpng-$_apngver-apng.patch
- 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"
-}
Copied: libpng/repos/testing-i686/PKGBUILD (from rev 279063, libpng/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD (rev 0)
+++ testing-i686/PKGBUILD 2016-10-20 19:15:38 UTC (rev 279064)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: dorphell <dorphell at archlinux.org>
+# Contributor: Travis Willard <travis at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgname=libpng
+pkgver=1.6.26
+_apngver=1.6.26
+pkgrel=2
+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')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) <glennrp at gmail.com>
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
+ http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
+sha256sums=('266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9'
+ 'SKIP'
+ '01dec904d91ee8c90a9a78f253d01d8fac0e37a3f4beacb60e136ea7c814d72c')
+
+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"
+}
Deleted: testing-x86_64/PKGBUILD
===================================================================
--- testing-x86_64/PKGBUILD 2016-10-20 19:15:32 UTC (rev 279063)
+++ testing-x86_64/PKGBUILD 2016-10-20 19:15:38 UTC (rev 279064)
@@ -1,52 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: dorphell <dorphell at archlinux.org>
-# Contributor: Travis Willard <travis at archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
-
-pkgname=libpng
-pkgver=1.6.26
-_apngver=1.6.25
-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')
-validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) <glennrp at gmail.com>
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
- http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
-sha256sums=('266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9'
- 'SKIP'
- '053a27e2145b2b25a41666fac0442552234b7b630228c649d9a61937d703d908')
-
-prepare() {
- cd $pkgname-$pkgver
-
- # Add animated PNG (apng) support. Required by Firefox
- # see http://sourceforge.net/projects/libpng-apng/
- sed -i '/pngpriv.h/,/#define PNG_BGR/s|0x[0-9]*|&U|' ../libpng-$_apngver-apng.patch
- 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"
-}
Copied: libpng/repos/testing-x86_64/PKGBUILD (from rev 279063, libpng/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2016-10-20 19:15:38 UTC (rev 279064)
@@ -0,0 +1,51 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: dorphell <dorphell at archlinux.org>
+# Contributor: Travis Willard <travis at archlinux.org>
+# Contributor: Douglas Soares de Andrade <douglas at archlinux.org>
+
+pkgname=libpng
+pkgver=1.6.26
+_apngver=1.6.26
+pkgrel=2
+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')
+validpgpkeys=('8048643BA2C840F4F92A195FF54984BFA16C640F') # Glenn Randers-Pehrson (mozilla) <glennrp at gmail.com>
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc}
+ http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz)
+sha256sums=('266743a326986c3dbcee9d89b640595f6b16a293fd02b37d8c91348d317b73f9'
+ 'SKIP'
+ '01dec904d91ee8c90a9a78f253d01d8fac0e37a3f4beacb60e136ea7c814d72c')
+
+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"
+}
More information about the arch-commits
mailing list