Date: Friday, October 27, 2017 @ 08:12:55
  Author: heftig
Revision: 308538

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

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

-----------------------+
 /PKGBUILD             |  136 ++++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD   |   68 ------------------------
 extra-x86_64/PKGBUILD |   68 ------------------------
 3 files changed, 136 insertions(+), 136 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2017-10-27 08:12:18 UTC (rev 308537)
+++ extra-i686/PKGBUILD 2017-10-27 08:12:55 UTC (rev 308538)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru <[email protected]>
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.26.0
-pkgrel=1
-pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
-url="https://wiki.gnome.org/Projects/PyGObject";
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
-optdepends=('cairo: Cairo bindings')
-_commit=47af078546b1e9e4396bdea877c1cf0f21708818  # tags/3.26.0^0
-source=("git+https://git.gnome.org/browse/pygobject#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build-py{2,3} devel
-  cd $pkgbase
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-_build() (
-  cd build-py$1
-  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-)
-
-build() {
-  _build 2
-  _build 3
-}
-
-package_python-gobject() {
-  depends=("pygobject-devel=$pkgver" python)
-
-  cd build-py3
-  make DESTDIR="$pkgdir" install
-  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
-}
-
-package_python2-gobject() {
-  pkgdesc="${pkgdesc/Python/Python2}"
-  depends=("pygobject-devel=$pkgver" python2)
-
-  cd build-py2
-  make DESTDIR="$pkgdir" install
-  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
-  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
-}
-
-package_pygobject-devel() {
-  pkgdesc="Common development files for pygobject"
-  optdepends=()
-
-  cd devel
-  mkdir -p "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr/"
-  mv pkgconfig "$pkgdir/usr/lib/"
-}

Copied: pygobject/repos/extra-i686/PKGBUILD (from rev 308537, 
pygobject/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2017-10-27 08:12:55 UTC (rev 308538)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ionut Biru <[email protected]>
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.26.1
+pkgrel=1
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject";
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
+optdepends=('cairo: Cairo bindings')
+_commit=55cb08b71cd23f56b97d912af22ca24e787fd5d7  # tags/3.26.1^0
+source=("git+https://git.gnome.org/browse/pygobject#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build-py{2,3} devel
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+_build() (
+  cd build-py$1
+  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  cd build-py3
+  make DESTDIR="$pkgdir" install
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  cd build-py2
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  cd devel
+  mkdir -p "$pkgdir/usr/lib"
+  mv include "$pkgdir/usr/"
+  mv pkgconfig "$pkgdir/usr/lib/"
+}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2017-10-27 08:12:18 UTC (rev 308537)
+++ extra-x86_64/PKGBUILD       2017-10-27 08:12:55 UTC (rev 308538)
@@ -1,68 +0,0 @@
-# $Id$
-# Maintainer: Ionut Biru <[email protected]>
-
-pkgbase=pygobject
-pkgname=(python-gobject python2-gobject pygobject-devel)
-pkgver=3.26.0
-pkgrel=1
-pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
-url="https://wiki.gnome.org/Projects/PyGObject";
-arch=(i686 x86_64)
-license=(LGPL)
-depends=(gobject-introspection-runtime)
-makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
-optdepends=('cairo: Cairo bindings')
-_commit=47af078546b1e9e4396bdea877c1cf0f21708818  # tags/3.26.0^0
-source=("git+https://git.gnome.org/browse/pygobject#commit=$_commit";)
-sha256sums=('SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  mkdir build-py{2,3} devel
-  cd $pkgbase
-  NOCONFIGURE=1 ./autogen.sh
-}
-
-_build() (
-  cd build-py$1
-  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
-  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
-  make
-)
-
-build() {
-  _build 2
-  _build 3
-}
-
-package_python-gobject() {
-  depends=("pygobject-devel=$pkgver" python)
-
-  cd build-py3
-  make DESTDIR="$pkgdir" install
-  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
-}
-
-package_python2-gobject() {
-  pkgdesc="${pkgdesc/Python/Python2}"
-  depends=("pygobject-devel=$pkgver" python2)
-
-  cd build-py2
-  make DESTDIR="$pkgdir" install
-  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
-  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
-}
-
-package_pygobject-devel() {
-  pkgdesc="Common development files for pygobject"
-  optdepends=()
-
-  cd devel
-  mkdir -p "$pkgdir/usr/lib"
-  mv include "$pkgdir/usr/"
-  mv pkgconfig "$pkgdir/usr/lib/"
-}

Copied: pygobject/repos/extra-x86_64/PKGBUILD (from rev 308537, 
pygobject/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2017-10-27 08:12:55 UTC (rev 308538)
@@ -0,0 +1,68 @@
+# $Id$
+# Maintainer: Ionut Biru <[email protected]>
+
+pkgbase=pygobject
+pkgname=(python-gobject python2-gobject pygobject-devel)
+pkgver=3.26.1
+pkgrel=1
+pkgdesc="Python Bindings for GLib/GObject/GIO/GTK+"
+url="https://wiki.gnome.org/Projects/PyGObject";
+arch=(i686 x86_64)
+license=(LGPL)
+depends=(gobject-introspection-runtime)
+makedepends=(python{,2}-cairo gobject-introspection git gnome-common)
+optdepends=('cairo: Cairo bindings')
+_commit=55cb08b71cd23f56b97d912af22ca24e787fd5d7  # tags/3.26.1^0
+source=("git+https://git.gnome.org/browse/pygobject#commit=$_commit";)
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  mkdir build-py{2,3} devel
+  cd $pkgbase
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+_build() (
+  cd build-py$1
+  ../$pkgbase/configure --prefix=/usr --with-python=/usr/bin/python$1
+  sed -i 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-gobject() {
+  depends=("pygobject-devel=$pkgver" python)
+
+  cd build-py3
+  make DESTDIR="$pkgdir" install
+  mv "$pkgdir"/usr/{include,lib/pkgconfig} "$srcdir/devel"
+}
+
+package_python2-gobject() {
+  pkgdesc="${pkgdesc/Python/Python2}"
+  depends=("pygobject-devel=$pkgver" python2)
+
+  cd build-py2
+  make DESTDIR="$pkgdir" install
+  python2 -m compileall "$pkgdir"/usr/lib/python2.7/site-packages/gi
+  rm -r "$pkgdir"/usr/{include,lib/pkgconfig}
+}
+
+package_pygobject-devel() {
+  pkgdesc="Common development files for pygobject"
+  optdepends=()
+
+  cd devel
+  mkdir -p "$pkgdir/usr/lib"
+  mv include "$pkgdir/usr/"
+  mv pkgconfig "$pkgdir/usr/lib/"
+}

Reply via email to