[arch-commits] Commit in libgxps/repos (4 files)

Jan Steffens heftig at archlinux.org
Wed Aug 9 18:27:45 UTC 2017


    Date: Wednesday, August 9, 2017 @ 18:27:44
  Author: heftig
Revision: 301814

archrelease: copy trunk to extra-i686, extra-x86_64

Added:
  libgxps/repos/extra-i686/PKGBUILD
    (from rev 301813, libgxps/trunk/PKGBUILD)
  libgxps/repos/extra-x86_64/PKGBUILD
    (from rev 301813, libgxps/trunk/PKGBUILD)
Deleted:
  libgxps/repos/extra-i686/PKGBUILD
  libgxps/repos/extra-x86_64/PKGBUILD

-----------------------+
 /PKGBUILD             |   90 ++++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD   |   41 ---------------------
 extra-x86_64/PKGBUILD |   41 ---------------------
 3 files changed, 90 insertions(+), 82 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2017-08-09 18:24:55 UTC (rev 301813)
+++ extra-i686/PKGBUILD	2017-08-09 18:27:44 UTC (rev 301814)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=libgxps
-pkgver=0.2.5+1+g764ae1e
-pkgrel=1
-pkgdesc="XPS Documents library"
-url="https://wiki.gnome.org/Projects/libgxps"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(cairo libarchive libjpeg-turbo libtiff lcms2)
-makedepends=(gobject-introspection gtk-doc git)
-_commit=764ae1e1e22c3f1bb58543aa40fa80488ee49a47  # master
-source=("git+https://git.gnome.org/browse/libgxps#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libgxps/repos/extra-i686/PKGBUILD (from rev 301813, libgxps/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2017-08-09 18:27:44 UTC (rev 301814)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=libgxps
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="XPS Documents library"
+url="https://wiki.gnome.org/Projects/libgxps"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(gtk3 libarchive libjpeg-turbo libtiff lcms2)
+makedepends=(gobject-introspection gtk-doc git meson)
+_commit=762b3026bb3f29cdc67f7816ef3d34d7d9a243ec  # tags/0.3.0^0
+source=("git+https://git.gnome.org/browse/libgxps#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson --prefix=/usr --buildtype=release ../$pkgname \
+    -Denable-man=true -Denable-gtk-doc=true
+  ninja
+}
+
+check() {
+  cd build
+  mesontest
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2017-08-09 18:24:55 UTC (rev 301813)
+++ extra-x86_64/PKGBUILD	2017-08-09 18:27:44 UTC (rev 301814)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Jan de Groot <jgc at archlinux.org>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=libgxps
-pkgver=0.2.5+1+g764ae1e
-pkgrel=1
-pkgdesc="XPS Documents library"
-url="https://wiki.gnome.org/Projects/libgxps"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(cairo libarchive libjpeg-turbo libtiff lcms2)
-makedepends=(gobject-introspection gtk-doc git)
-_commit=764ae1e1e22c3f1bb58543aa40fa80488ee49a47  # master
-source=("git+https://git.gnome.org/browse/libgxps#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-  NOCONFIGURE=1 ./autogen.sh
-}
-  
-
-build() {
-  cd $pkgname
-  ./configure --prefix=/usr --disable-static --enable-gtk-doc
-  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-}
-
-package() {
-  cd $pkgname
-  make DESTDIR="$pkgdir" install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libgxps/repos/extra-x86_64/PKGBUILD (from rev 301813, libgxps/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2017-08-09 18:27:44 UTC (rev 301814)
@@ -0,0 +1,45 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=libgxps
+pkgver=0.3.0
+pkgrel=1
+pkgdesc="XPS Documents library"
+url="https://wiki.gnome.org/Projects/libgxps"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(gtk3 libarchive libjpeg-turbo libtiff lcms2)
+makedepends=(gobject-introspection gtk-doc git meson)
+_commit=762b3026bb3f29cdc67f7816ef3d34d7d9a243ec  # tags/0.3.0^0
+source=("git+https://git.gnome.org/browse/libgxps#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build
+  cd $pkgname
+}
+
+build() {
+  cd build
+  meson --prefix=/usr --buildtype=release ../$pkgname \
+    -Denable-man=true -Denable-gtk-doc=true
+  ninja
+}
+
+check() {
+  cd build
+  mesontest
+}
+
+package() {
+  cd build
+  DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list