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

Jan Steffens heftig at archlinux.org
Tue Sep 19 14:09:24 UTC 2017


    Date: Tuesday, September 19, 2017 @ 14:09:22
  Author: heftig
Revision: 305856

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

Added:
  gst-python/repos/extra-i686/PKGBUILD
    (from rev 305855, gst-python/trunk/PKGBUILD)
  gst-python/repos/extra-x86_64/PKGBUILD
    (from rev 305855, gst-python/trunk/PKGBUILD)
Deleted:
  gst-python/repos/extra-i686/PKGBUILD
  gst-python/repos/extra-x86_64/PKGBUILD

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

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2017-09-19 14:08:42 UTC (rev 305855)
+++ extra-i686/PKGBUILD	2017-09-19 14:09:22 UTC (rev 305856)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Jan de Groot <jgc at archlinux.org>
-
-pkgbase=gst-python
-pkgname=(gst-python gst-python2)
-pkgver=1.12.2
-pkgrel=1
-pkgdesc="GStreamer Python binding overrides"
-url="https://gstreamer.freedesktop.org/"
-arch=(i686 x86_64)
-license=(LGPL)
-makedepends=(pkg-config python-gobject python2-gobject gst-plugins-base git)
-_commit=64c08f12a391034c1a5ffeb3a1d239b85b90ee67  # tags/1.12.2^0
-source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-python#commit=$_commit"
-        "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
-sha256sums=('SKIP'
-            'SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-
-  git submodule init
-  git config --local submodule.common.url "$srcdir/gst-common"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-
-  cd ..
-  cp -a $pkgbase py2
-  cp -a $pkgbase py3
-}
-
-
-_build() (
-  cd $1
-  ./configure --prefix=/usr
-  make
-)
-
-build() {
-  PYTHON=python3 _build py3
-  PYTHON=python2 _build py2
-}
-
-check() {
-  make -C py3 check
-  #make -C py2 check
-}
-
-package_gst-python() {
-  pkgdesc="${pkgdesc//Python/Python 3}"
-  depends=(python-gobject gst-plugins-base)
-
-  make -C py3 DESTDIR="$pkgdir" install
-}
-
-package_gst-python2() {
-  pkgdesc="${pkgdesc//Python/Python 2}"
-  depends=(python2-gobject gst-plugins-base)
-
-  make -C py2 DESTDIR="$pkgdir" install
-}

Copied: gst-python/repos/extra-i686/PKGBUILD (from rev 305855, gst-python/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2017-09-19 14:09:22 UTC (rev 305856)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+
+pkgbase=gst-python
+pkgname=(gst-python gst-python2)
+pkgver=1.12.3
+pkgrel=1
+pkgdesc="GStreamer Python binding overrides"
+url="https://gstreamer.freedesktop.org/"
+arch=(i686 x86_64)
+license=(LGPL)
+makedepends=(pkg-config python-gobject python2-gobject gst-plugins-base git)
+_commit=705c1c09228c0a95150ea86cd536bcb0c2c74e51  # tags/1.12.3^0
+source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-python#commit=$_commit"
+        "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
+sha256sums=('SKIP'
+            'SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+
+  git submodule init
+  git config --local submodule.common.url "$srcdir/gst-common"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+
+  cd ..
+  cp -a $pkgbase py2
+  cp -a $pkgbase py3
+}
+
+
+_build() (
+  cd $1
+  ./configure --prefix=/usr
+  make
+)
+
+build() {
+  PYTHON=python3 _build py3
+  PYTHON=python2 _build py2
+}
+
+check() {
+  make -C py3 check
+  #make -C py2 check
+}
+
+package_gst-python() {
+  pkgdesc="${pkgdesc//Python/Python 3}"
+  depends=(python-gobject gst-plugins-base)
+
+  make -C py3 DESTDIR="$pkgdir" install
+}
+
+package_gst-python2() {
+  pkgdesc="${pkgdesc//Python/Python 2}"
+  depends=(python2-gobject gst-plugins-base)
+
+  make -C py2 DESTDIR="$pkgdir" install
+}

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2017-09-19 14:08:42 UTC (rev 305855)
+++ extra-x86_64/PKGBUILD	2017-09-19 14:09:22 UTC (rev 305856)
@@ -1,69 +0,0 @@
-# $Id$
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Contributor: Jan de Groot <jgc at archlinux.org>
-
-pkgbase=gst-python
-pkgname=(gst-python gst-python2)
-pkgver=1.12.2
-pkgrel=1
-pkgdesc="GStreamer Python binding overrides"
-url="https://gstreamer.freedesktop.org/"
-arch=(i686 x86_64)
-license=(LGPL)
-makedepends=(pkg-config python-gobject python2-gobject gst-plugins-base git)
-_commit=64c08f12a391034c1a5ffeb3a1d239b85b90ee67  # tags/1.12.2^0
-source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-python#commit=$_commit"
-        "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
-sha256sums=('SKIP'
-            'SKIP')
-
-pkgver() {
-  cd $pkgbase
-  git describe --tags | sed 's/-/+/g'
-}
-
-prepare() {
-  cd $pkgbase
-
-  git submodule init
-  git config --local submodule.common.url "$srcdir/gst-common"
-  git submodule update
-
-  NOCONFIGURE=1 ./autogen.sh
-
-  cd ..
-  cp -a $pkgbase py2
-  cp -a $pkgbase py3
-}
-
-
-_build() (
-  cd $1
-  ./configure --prefix=/usr
-  make
-)
-
-build() {
-  PYTHON=python3 _build py3
-  PYTHON=python2 _build py2
-}
-
-check() {
-  make -C py3 check
-  #make -C py2 check
-}
-
-package_gst-python() {
-  pkgdesc="${pkgdesc//Python/Python 3}"
-  depends=(python-gobject gst-plugins-base)
-
-  make -C py3 DESTDIR="$pkgdir" install
-}
-
-package_gst-python2() {
-  pkgdesc="${pkgdesc//Python/Python 2}"
-  depends=(python2-gobject gst-plugins-base)
-
-  make -C py2 DESTDIR="$pkgdir" install
-}

Copied: gst-python/repos/extra-x86_64/PKGBUILD (from rev 305855, gst-python/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2017-09-19 14:09:22 UTC (rev 305856)
@@ -0,0 +1,69 @@
+# $Id$
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Jan de Groot <jgc at archlinux.org>
+
+pkgbase=gst-python
+pkgname=(gst-python gst-python2)
+pkgver=1.12.3
+pkgrel=1
+pkgdesc="GStreamer Python binding overrides"
+url="https://gstreamer.freedesktop.org/"
+arch=(i686 x86_64)
+license=(LGPL)
+makedepends=(pkg-config python-gobject python2-gobject gst-plugins-base git)
+_commit=705c1c09228c0a95150ea86cd536bcb0c2c74e51  # tags/1.12.3^0
+source=("git+https://anongit.freedesktop.org/git/gstreamer/gst-python#commit=$_commit"
+        "gst-common::git+https://anongit.freedesktop.org/git/gstreamer/common")
+sha256sums=('SKIP'
+            'SKIP')
+
+pkgver() {
+  cd $pkgbase
+  git describe --tags | sed 's/-/+/g'
+}
+
+prepare() {
+  cd $pkgbase
+
+  git submodule init
+  git config --local submodule.common.url "$srcdir/gst-common"
+  git submodule update
+
+  NOCONFIGURE=1 ./autogen.sh
+
+  cd ..
+  cp -a $pkgbase py2
+  cp -a $pkgbase py3
+}
+
+
+_build() (
+  cd $1
+  ./configure --prefix=/usr
+  make
+)
+
+build() {
+  PYTHON=python3 _build py3
+  PYTHON=python2 _build py2
+}
+
+check() {
+  make -C py3 check
+  #make -C py2 check
+}
+
+package_gst-python() {
+  pkgdesc="${pkgdesc//Python/Python 3}"
+  depends=(python-gobject gst-plugins-base)
+
+  make -C py3 DESTDIR="$pkgdir" install
+}
+
+package_gst-python2() {
+  pkgdesc="${pkgdesc//Python/Python 2}"
+  depends=(python2-gobject gst-plugins-base)
+
+  make -C py2 DESTDIR="$pkgdir" install
+}



More information about the arch-commits mailing list