[arch-commits] Commit in gstreamermm/repos (8 files)

2017-10-25 Thread Jan Steffens
Date: Wednesday, October 25, 2017 @ 07:37:38
  Author: heftig
Revision: 264195

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

Added:
  gstreamermm/repos/community-i686/PKGBUILD
(from rev 264194, gstreamermm/trunk/PKGBUILD)
  gstreamermm/repos/community-i686/gstreamermm.changelog
(from rev 264194, gstreamermm/trunk/gstreamermm.changelog)
  gstreamermm/repos/community-x86_64/PKGBUILD
(from rev 264194, gstreamermm/trunk/PKGBUILD)
  gstreamermm/repos/community-x86_64/gstreamermm.changelog
(from rev 264194, gstreamermm/trunk/gstreamermm.changelog)
Deleted:
  gstreamermm/repos/community-i686/PKGBUILD
  gstreamermm/repos/community-i686/gstreamermm.changelog
  gstreamermm/repos/community-x86_64/PKGBUILD
  gstreamermm/repos/community-x86_64/gstreamermm.changelog

+
 /PKGBUILD  |   84 +++
 /gstreamermm.changelog |   44 
 community-i686/PKGBUILD|   30 ---
 community-i686/gstreamermm.changelog   |   18 --
 community-x86_64/PKGBUILD  |   30 ---
 community-x86_64/gstreamermm.changelog |   18 --
 6 files changed, 128 insertions(+), 96 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-10-25 07:35:32 UTC (rev 264194)
+++ community-i686/PKGBUILD 2017-10-25 07:37:38 UTC (rev 264195)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=gstreamermm
-pkgver=1.4.3
-pkgrel=2
-pkgdesc="C++ interface for GStreamer"
-arch=('i686' 'x86_64')
-url="http://gstreamer.freedesktop.org/bindings/cplusplus.html";
-license=('LGPL')
-depends=('glibmm' 'gst-plugins-base-libs')
-changelog=$pkgname.changelog
-source=(http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/1.4/$pkgname-$pkgver.tar.xz)
-sha256sums=('f1c11ee1cf7537d77de7f8d486e09c5140cc4bb78882849718cd88959a55462e')
-
-build() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  # glibmm 2.46 uses C++11 features
-  CXXFLAGS+=' -std=c++11'
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}"/${pkgname}-${pkgver}
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: gstreamermm/repos/community-i686/PKGBUILD (from rev 264194, 
gstreamermm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-10-25 07:37:38 UTC (rev 264195)
@@ -0,0 +1,42 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgbase=gstreamermm
+pkgname=(gstreamermm gstreamermm-docs)
+pkgver=1.10.0
+pkgrel=1
+pkgdesc="C++ interface for GStreamer"
+arch=('i686' 'x86_64')
+url="http://gstreamer.freedesktop.org/bindings/cplusplus.html";
+license=('LGPL')
+depends=('glibmm' 'gst-plugins-base')
+makedepends=('mm-common' 'glibmm-docs' 'cairomm' 'cairomm-docs' 'pangomm' 
'pangomm-docs')
+changelog=$pkgname.changelog
+source=(http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/1.10/$pkgname-$pkgver.tar.xz)
+sha256sums=('be58fe9ef7d7e392568ec85e80a84f4730adbf91fb0355ff7d7c616675ea8d60')
+
+prepare() {
+  cd $pkgbase-$pkgver
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure --prefix=/usr --enable-maintainer-mode
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+}
+
+package_gstreamermm() {
+  cd $pkgbase-$pkgver
+  sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+  make DESTDIR="$pkgdir" install
+}
+
+package_gstreamermm-docs() {
+  pkgdesc+=" (documentation)"
+  depends=()
+
+  cd $pkgbase-$pkgver
+  make -C docs DESTDIR="$pkgdir" install
+}

Deleted: community-i686/gstreamermm.changelog
===
--- community-i686/gstreamermm.changelog2017-10-25 07:35:32 UTC (rev 
264194)
+++ community-i686/gstreamermm.changelog2017-10-25 07:37:38 UTC (rev 
264195)
@@ -1,18 +0,0 @@
-2015-02-25 Jaroslav Lichtblau 
-   * gstreamermm 1.4.3-1
-
-2014-11-12 Jaroslav Lichtblau 
-   * gstreamermm 1.0.10-1
-
-2012-10-28 Jaroslav Lichtblau 
-   * gstreamermm 0.10.11-1
-
-2010-02-02 Jaroslav Lichtblau 
-   * gstreamermm 0.10.10-1
-
-2010-02-02 Jaroslav Lichtblau 
-   * Update to major release 0.10.6
-
-2009-11-07 Jaroslav Lichtblau 
-   * Package moved to [community] as a dependency of subtitleeditor
-   * version 0.10.5

Copied: gstreamermm/repos/community-i686/gstreamermm.changelog (from rev 
264194, gstreamermm/trunk/gstreamermm.changelog)
===
--- community-i686/gstreamermm.changelog(rev 0)
+++ community-i686/gstreamermm.changelog2017-10-25 07:37:38 UTC (rev 
264195)
@@ -0,0 +1,22 @@
+2017-10-25 Jan Alexander Steffens (heftig) 
+   * gstreamermm 1.10.0-1
+   * split docs
+
+2015-02-25 Jaroslav Lichtblau 
+   * gstreamermm 1

[arch-commits] Commit in gstreamermm/repos (8 files)

2014-07-06 Thread Felix Yan
Date: Sunday, July 6, 2014 @ 14:13:54
  Author: fyan
Revision: 115183

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

Added:
  gstreamermm/repos/community-i686/PKGBUILD
(from rev 115182, gstreamermm/trunk/PKGBUILD)
  gstreamermm/repos/community-i686/gstreamermm.changelog
(from rev 115182, gstreamermm/trunk/gstreamermm.changelog)
  gstreamermm/repos/community-x86_64/PKGBUILD
(from rev 115182, gstreamermm/trunk/PKGBUILD)
  gstreamermm/repos/community-x86_64/gstreamermm.changelog
(from rev 115182, gstreamermm/trunk/gstreamermm.changelog)
Deleted:
  gstreamermm/repos/community-i686/PKGBUILD
  gstreamermm/repos/community-i686/gstreamermm.changelog
  gstreamermm/repos/community-x86_64/PKGBUILD
  gstreamermm/repos/community-x86_64/gstreamermm.changelog

+
 /PKGBUILD  |   70 +++
 /gstreamermm.changelog |   18 +++
 community-i686/PKGBUILD|   35 ---
 community-i686/gstreamermm.changelog   |9 ---
 community-x86_64/PKGBUILD  |   35 ---
 community-x86_64/gstreamermm.changelog |9 ---
 6 files changed, 88 insertions(+), 88 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-06 12:13:24 UTC (rev 115182)
+++ community-i686/PKGBUILD 2014-07-06 12:13:54 UTC (rev 115183)
@@ -1,35 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-
-pkgname=gstreamermm
-pkgver=0.10.11
-pkgrel=1
-pkgdesc="C++ interface for GStreamer"
-arch=('i686' 'x86_64')
-url="http://gstreamer.freedesktop.org/bindings/cplusplus.html";
-license=('LGPL')
-depends=('glibmm' 'gstreamer0.10-base>=0.10.25' 'libsigc++2.0' 'libxml++')
-makedepends=('doxygen' 'pkgconfig')
-changelog=$pkgname.changelog
-source=(http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/0.10/${pkgname}-${pkgver}.tar.xz)
-sha256sums=('12b5f377363594a69cb79f2f5cd0a8b1813ca6553680c3216e6354cfd682ebc6')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  make DESTDIR=${pkgdir} install
-}
-
-check() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-# Make check won't work, since it checks mic input/capture which don't exists 
on pkgbuild.com
-#  make check
-
-}

Copied: gstreamermm/repos/community-i686/PKGBUILD (from rev 115182, 
gstreamermm/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-06 12:13:54 UTC (rev 115183)
@@ -0,0 +1,35 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+
+pkgname=gstreamermm
+pkgver=0.10.11
+pkgrel=2
+pkgdesc="C++ interface for GStreamer"
+arch=('i686' 'x86_64')
+url="http://gstreamer.freedesktop.org/bindings/cplusplus.html";
+license=('LGPL')
+depends=('glibmm' 'gstreamer0.10-base>=0.10.25' 'libsigc++2.0' 'libxml++')
+makedepends=('doxygen' 'pkgconfig')
+changelog=$pkgname.changelog
+source=(http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/0.10/${pkgname}-${pkgver}.tar.xz)
+sha256sums=('12b5f377363594a69cb79f2f5cd0a8b1813ca6553680c3216e6354cfd682ebc6')
+
+build() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+
+  make DESTDIR=${pkgdir} install
+}
+
+check() {
+  cd ${srcdir}/${pkgname}-${pkgver}
+# Make check won't work, since it checks mic input/capture which don't exists 
on pkgbuild.com
+#  make check
+
+}

Deleted: community-i686/gstreamermm.changelog
===
--- community-i686/gstreamermm.changelog2014-07-06 12:13:24 UTC (rev 
115182)
+++ community-i686/gstreamermm.changelog2014-07-06 12:13:54 UTC (rev 
115183)
@@ -1,9 +0,0 @@
-2010-02-02 Jaroslav Lichtblau 
-   * gstreamermm 0.10.10-1
-
-2010-02-02 Jaroslav Lichtblau 
-   * Update to major release 0.10.6
-
-2009-11-07 Jaroslav Lichtblau 
-   * Package moved to [community] as a dependency of subtitleeditor
-   * version 0.10.5

Copied: gstreamermm/repos/community-i686/gstreamermm.changelog (from rev 
115182, gstreamermm/trunk/gstreamermm.changelog)
===
--- community-i686/gstreamermm.changelog(rev 0)
+++ community-i686/gstreamermm.changelog2014-07-06 12:13:54 UTC (rev 
115183)
@@ -0,0 +1,9 @@
+2010-02-02 Jaroslav Lichtblau 
+   * gstreamermm 0.10.10-1
+
+2010-02-02 Jaroslav Lichtblau 
+   * Update to major release 0.10.6
+
+2009-11-07 Jaroslav Lichtblau 
+   * Package moved to [community] as a dependency of subtitleeditor
+   * version 0.10.5

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2014-07-06 12: