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

2018-05-09 Thread Florian Pritz via arch-commits
Date: Wednesday, May 9, 2018 @ 11:15:52
  Author: bluewind
Revision: 319839

archrelease: copy trunk to community-staging-x86_64

Added:
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 319838, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/ffmpeg-32-writer.patch
(from rev 319838, libopenshot/trunk/ffmpeg-32-writer.patch)
  libopenshot/repos/community-staging-x86_64/ffmpeg-4.0.patch
(from rev 319838, libopenshot/trunk/ffmpeg-4.0.patch)

+
 PKGBUILD   |   52 
 ffmpeg-32-writer.patch |  597 +++
 ffmpeg-4.0.patch   |   50 +++
 3 files changed, 699 insertions(+)

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 319838, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-05-09 11:15:52 UTC (rev 319839)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.9
+pkgrel=8
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('libmagick6' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;
+https://github.com/OpenShot/libopenshot/commit/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch
+ffmpeg-32-writer.patch ffmpeg-4.0.patch)
+sha256sums=('2547969818092d77a1c742e27cf416b34b4d326abf6b089fc10b921f4a4141ec'
+'e0f56d40d4df0e4278d3cdb81923652b467c1a30e408bcff7a6b15327fb03548'
+'7dca1cfcdbc8c8cd039b6267623c822230e0d37968be2372520b36e22c782dd8'
+'bfc6aa2752a053774b0c46d0339b41df68f8e63765f1185f0df596ecbd3633a8')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+
+   # patches for ffmpeg 3.2
+   patch -p1 -i "$srcdir/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch"
+   patch -p1 -i "$srcdir/ffmpeg-32-writer.patch"
+
+   # patches for ffmpeg 4.0
+   # TODO https://github.com/OpenShot/libopenshot/issues/87
+   patch -p1 -i "$srcdir/ffmpeg-4.0.patch"
+   sed -i \
+   -e 
's#FF_INPUT_BUFFER_PADDING_SIZE#AV_INPUT_BUFFER_PADDING_SIZE#g' \
+   -e 's#CODEC_FLAG_GLOBAL_HEADER#AV_CODEC_FLAG_GLOBAL_HEADER#g' \
+   src/FFmpegWriter.cpp src/FFmpegReader.cpp
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/ffmpeg-32-writer.patch (from 
rev 319838, libopenshot/trunk/ffmpeg-32-writer.patch)
===
--- community-staging-x86_64/ffmpeg-32-writer.patch 
(rev 0)
+++ community-staging-x86_64/ffmpeg-32-writer.patch 2018-05-09 11:15:52 UTC 
(rev 319839)
@@ -0,0 +1,597 @@
+From 22384c770501b9d737501847400f571f67edf385 Mon Sep 17 00:00:00 2001
+From: Jonathan Thomas 
+Date: Wed, 28 Mar 2018 15:09:55 -0500
+Subject: [PATCH] FFMPEG 3.2 support for FFmpegWriter (Thanks Peter!)
+
+---
+
+This patch has been backported to 0.1.9
+
+ include/FFmpegUtilities.h |  62 +---
+ src/FFmpegWriter.cpp  | 252 +-
+ 2 files changed, 210 insertions(+), 104 deletions(-)
+
+diff --git a/include/FFmpegUtilities.h b/include/FFmpegUtilities.h
+index b38132f..578c658 100644
+--- a/include/FFmpegUtilities.h
 b/include/FFmpegUtilities.h
+@@ -108,53 +108,87 @@
+ 
+   #if IS_FFMPEG_3_2
+   #define AV_ALLOCATE_FRAME() av_frame_alloc()
+-  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1);
++  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1)
+   #define AV_RESET_FRAME(av_frame) av_frame_unref(av_frame)
+   #define AV_FREE_FRAME(av_frame) av_frame_free(av_frame)
+   #define AV_FREE_PACKET(av_packet) av_packet_unref(av_packet)
+-  #define AV_FREE_CONTEXT(av_context) 
avcodec_free_context(_context);
++  #define AV_FREE_CONTEXT(av_context) 

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

2018-05-09 Thread Florian Pritz via arch-commits
Date: Wednesday, May 9, 2018 @ 11:12:52
  Author: bluewind
Revision: 319835

archrelease: copy trunk to testing-x86_64

Added:
  libopenshot/repos/testing-x86_64/
  libopenshot/repos/testing-x86_64/PKGBUILD
(from rev 319834, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/testing-x86_64/ffmpeg-32-writer.patch
(from rev 319834, libopenshot/trunk/ffmpeg-32-writer.patch)
  libopenshot/repos/testing-x86_64/ffmpeg-4.0.patch
(from rev 319834, libopenshot/trunk/ffmpeg-4.0.patch)

+
 PKGBUILD   |   52 
 ffmpeg-32-writer.patch |  597 +++
 ffmpeg-4.0.patch   |   50 +++
 3 files changed, 699 insertions(+)

Copied: libopenshot/repos/testing-x86_64/PKGBUILD (from rev 319834, 
libopenshot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2018-05-09 11:12:52 UTC (rev 319835)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.9
+pkgrel=7
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('libmagick6' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;
+https://github.com/OpenShot/libopenshot/commit/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch
+ffmpeg-32-writer.patch ffmpeg-4.0.patch)
+sha256sums=('2547969818092d77a1c742e27cf416b34b4d326abf6b089fc10b921f4a4141ec'
+'e0f56d40d4df0e4278d3cdb81923652b467c1a30e408bcff7a6b15327fb03548'
+'7dca1cfcdbc8c8cd039b6267623c822230e0d37968be2372520b36e22c782dd8'
+'bfc6aa2752a053774b0c46d0339b41df68f8e63765f1185f0df596ecbd3633a8')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+
+   # patches for ffmpeg 3.2
+   patch -p1 -i "$srcdir/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch"
+   patch -p1 -i "$srcdir/ffmpeg-32-writer.patch"
+
+   # patches for ffmpeg 4.0
+   # TODO https://github.com/OpenShot/libopenshot/issues/87
+   patch -p1 -i "$srcdir/ffmpeg-4.0.patch"
+   sed -i \
+   -e 
's#FF_INPUT_BUFFER_PADDING_SIZE#AV_INPUT_BUFFER_PADDING_SIZE#g' \
+   -e 's#CODEC_FLAG_GLOBAL_HEADER#AV_CODEC_FLAG_GLOBAL_HEADER#g' \
+   src/FFmpegWriter.cpp src/FFmpegReader.cpp
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/testing-x86_64/ffmpeg-32-writer.patch (from rev 
319834, libopenshot/trunk/ffmpeg-32-writer.patch)
===
--- testing-x86_64/ffmpeg-32-writer.patch   (rev 0)
+++ testing-x86_64/ffmpeg-32-writer.patch   2018-05-09 11:12:52 UTC (rev 
319835)
@@ -0,0 +1,597 @@
+From 22384c770501b9d737501847400f571f67edf385 Mon Sep 17 00:00:00 2001
+From: Jonathan Thomas 
+Date: Wed, 28 Mar 2018 15:09:55 -0500
+Subject: [PATCH] FFMPEG 3.2 support for FFmpegWriter (Thanks Peter!)
+
+---
+
+This patch has been backported to 0.1.9
+
+ include/FFmpegUtilities.h |  62 +---
+ src/FFmpegWriter.cpp  | 252 +-
+ 2 files changed, 210 insertions(+), 104 deletions(-)
+
+diff --git a/include/FFmpegUtilities.h b/include/FFmpegUtilities.h
+index b38132f..578c658 100644
+--- a/include/FFmpegUtilities.h
 b/include/FFmpegUtilities.h
+@@ -108,53 +108,87 @@
+ 
+   #if IS_FFMPEG_3_2
+   #define AV_ALLOCATE_FRAME() av_frame_alloc()
+-  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1);
++  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1)
+   #define AV_RESET_FRAME(av_frame) av_frame_unref(av_frame)
+   #define AV_FREE_FRAME(av_frame) av_frame_free(av_frame)
+   #define AV_FREE_PACKET(av_packet) av_packet_unref(av_packet)
+-  #define AV_FREE_CONTEXT(av_context) 
avcodec_free_context(_context);
++  #define AV_FREE_CONTEXT(av_context) 
avcodec_free_context(_context)
+   #define AV_GET_CODEC_TYPE(av_stream) 

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

2018-05-08 Thread Florian Pritz via arch-commits
Date: Tuesday, May 8, 2018 @ 15:58:55
  Author: bluewind
Revision: 319670

archrelease: copy trunk to community-staging-x86_64

Added:
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 319669, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/ffmpeg-32-writer.patch
(from rev 319669, libopenshot/trunk/ffmpeg-32-writer.patch)
  libopenshot/repos/community-staging-x86_64/ffmpeg-4.0.patch
(from rev 319669, libopenshot/trunk/ffmpeg-4.0.patch)

+
 PKGBUILD   |   52 
 ffmpeg-32-writer.patch |  597 +++
 ffmpeg-4.0.patch   |   48 +++
 3 files changed, 697 insertions(+)

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 319669, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2018-05-08 15:58:55 UTC (rev 319670)
@@ -0,0 +1,52 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.9
+pkgrel=6
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('libmagick6' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;
+https://github.com/OpenShot/libopenshot/commit/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch
+ffmpeg-32-writer.patch ffmpeg-4.0.patch)
+sha256sums=('2547969818092d77a1c742e27cf416b34b4d326abf6b089fc10b921f4a4141ec'
+'e0f56d40d4df0e4278d3cdb81923652b467c1a30e408bcff7a6b15327fb03548'
+'7dca1cfcdbc8c8cd039b6267623c822230e0d37968be2372520b36e22c782dd8'
+'5fcde03d9c04e4c3526f5b449171d1b42c572d1c882d1aeb2a4eb014b2c74137')
+
+prepare() {
+   cd ${pkgname}-${pkgver}
+
+   # patches for ffmpeg 3.2
+   patch -p1 -i "$srcdir/774eb365b3f663b1f53dd24c1650fafb3c445ea6.patch"
+   patch -p1 -i "$srcdir/ffmpeg-32-writer.patch"
+
+   # patches for ffmpeg 4.0
+   # TODO https://github.com/OpenShot/libopenshot/issues/87
+   patch -p1 -i "$srcdir/ffmpeg-4.0.patch"
+   sed -i \
+   -e 
's#FF_INPUT_BUFFER_PADDING_SIZE#AV_INPUT_BUFFER_PADDING_SIZE#g' \
+   -e 's#CODEC_FLAG_GLOBAL_HEADER#AV_CODEC_FLAG_GLOBAL_HEADER#g' \
+   src/FFmpegWriter.cpp src/FFmpegReader.cpp
+}
+
+build() {
+   cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd ${pkgname}-${pkgver}
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/ffmpeg-32-writer.patch (from 
rev 319669, libopenshot/trunk/ffmpeg-32-writer.patch)
===
--- community-staging-x86_64/ffmpeg-32-writer.patch 
(rev 0)
+++ community-staging-x86_64/ffmpeg-32-writer.patch 2018-05-08 15:58:55 UTC 
(rev 319670)
@@ -0,0 +1,597 @@
+From 22384c770501b9d737501847400f571f67edf385 Mon Sep 17 00:00:00 2001
+From: Jonathan Thomas 
+Date: Wed, 28 Mar 2018 15:09:55 -0500
+Subject: [PATCH] FFMPEG 3.2 support for FFmpegWriter (Thanks Peter!)
+
+---
+
+This patch has been backported to 0.1.9
+
+ include/FFmpegUtilities.h |  62 +---
+ src/FFmpegWriter.cpp  | 252 +-
+ 2 files changed, 210 insertions(+), 104 deletions(-)
+
+diff --git a/include/FFmpegUtilities.h b/include/FFmpegUtilities.h
+index b38132f..578c658 100644
+--- a/include/FFmpegUtilities.h
 b/include/FFmpegUtilities.h
+@@ -108,53 +108,87 @@
+ 
+   #if IS_FFMPEG_3_2
+   #define AV_ALLOCATE_FRAME() av_frame_alloc()
+-  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1);
++  #define AV_ALLOCATE_IMAGE(av_frame, pix_fmt, width, height) 
av_image_alloc(av_frame->data, av_frame->linesize, width, height, pix_fmt, 1)
+   #define AV_RESET_FRAME(av_frame) av_frame_unref(av_frame)
+   #define AV_FREE_FRAME(av_frame) av_frame_free(av_frame)
+   #define AV_FREE_PACKET(av_packet) av_packet_unref(av_packet)
+-  #define AV_FREE_CONTEXT(av_context) 
avcodec_free_context(_context);
++  #define AV_FREE_CONTEXT(av_context) 

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

2017-09-08 Thread Sergej Pupykin
Date: Friday, September 8, 2017 @ 12:17:31
  Author: spupykin
Revision: 256281

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 256280, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 256280, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-09-08 12:17:08 UTC (rev 256280)
+++ community-i686/PKGBUILD 2017-09-08 12:17:31 UTC (rev 256281)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.7
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('71cf5c18c76c36bec40c775cb98ab1ed672aa48d2de63a26c33c5cc5d6f0875a')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 256280, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-09-08 12:17:31 UTC (rev 256281)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.8
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('a9b0706433c5c0e6edc9b1cc3c0ff1af4c8b7e8e31b5e071445a113fbb365d45')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-09-08 12:17:08 UTC (rev 256280)
+++ community-x86_64/PKGBUILD   2017-09-08 12:17:31 UTC (rev 256281)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.7
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('71cf5c18c76c36bec40c775cb98ab1ed672aa48d2de63a26c33c5cc5d6f0875a')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd 

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

2017-07-16 Thread Antonio Rojas
Date: Sunday, July 16, 2017 @ 10:25:34
  Author: arojas
Revision: 245326

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 245325, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 245325, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   32 
 community-staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 245325, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-07-16 10:25:34 UTC (rev 245326)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.7
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('71cf5c18c76c36bec40c775cb98ab1ed672aa48d2de63a26c33c5cc5d6f0875a')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 245325, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-07-16 10:25:34 UTC (rev 245326)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.7
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('71cf5c18c76c36bec40c775cb98ab1ed672aa48d2de63a26c33c5cc5d6f0875a')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2017-06-05 Thread Sergej Pupykin
Date: Monday, June 5, 2017 @ 06:44:52
  Author: spupykin
Revision: 234154

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 234153, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 234153, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-06-05 06:44:35 UTC (rev 234153)
+++ community-i686/PKGBUILD 2017-06-05 06:44:52 UTC (rev 234154)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.6
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('c3f9713b7d64629a2a446ffe77a743bef036d050fb3057fe4dc6e61beb25f26f')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 234153, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-06-05 06:44:52 UTC (rev 234154)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.7
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('71cf5c18c76c36bec40c775cb98ab1ed672aa48d2de63a26c33c5cc5d6f0875a')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-06-05 06:44:35 UTC (rev 234153)
+++ community-x86_64/PKGBUILD   2017-06-05 06:44:52 UTC (rev 234154)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.6
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('c3f9713b7d64629a2a446ffe77a743bef036d050fb3057fe4dc6e61beb25f26f')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd 

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

2017-05-19 Thread Florian Pritz
Date: Friday, May 19, 2017 @ 18:31:23
  Author: bluewind
Revision: 228603

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 228602, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 228602, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   32 --
 community-x86_64/PKGBUILD |   32 --
 3 files changed, 64 insertions(+), 64 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-19 18:31:18 UTC (rev 228602)
+++ community-i686/PKGBUILD 2017-05-19 18:31:23 UTC (rev 228603)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.5
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('72eb75e1853e7ec0f123242bf86ca1f84c7f0260e11f830d76103cab6b7076ff')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 228602, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-19 18:31:23 UTC (rev 228603)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.6
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('c3f9713b7d64629a2a446ffe77a743bef036d050fb3057fe4dc6e61beb25f26f')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-19 18:31:18 UTC (rev 228602)
+++ community-x86_64/PKGBUILD   2017-05-19 18:31:23 UTC (rev 228603)
@@ -1,32 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.5
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
-sha256sums=('72eb75e1853e7ec0f123242bf86ca1f84c7f0260e11f830d76103cab6b7076ff')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
- -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-   cd 

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

2017-05-12 Thread Sergej Pupykin
Date: Friday, May 12, 2017 @ 16:32:25
  Author: spupykin
Revision: 227872

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 227871, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 227871, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   64 
 community-i686/PKGBUILD   |   30 
 community-x86_64/PKGBUILD |   30 
 3 files changed, 64 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-05-12 16:32:06 UTC (rev 227871)
+++ community-i686/PKGBUILD 2017-05-12 16:32:25 UTC (rev 227872)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.4
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('c3cdf9598b54c0680a298e06c61aaf1e18a102b0d4c6b545e561476659eda253')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 227871, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-05-12 16:32:25 UTC (rev 227872)
@@ -0,0 +1,32 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.5
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/OpenShot/libopenshot/archive/v$pkgver.tar.gz;)
+sha256sums=('72eb75e1853e7ec0f123242bf86ca1f84c7f0260e11f830d76103cab6b7076ff')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+ -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-05-12 16:32:06 UTC (rev 227871)
+++ community-x86_64/PKGBUILD   2017-05-12 16:32:25 UTC (rev 227872)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.4
-pkgrel=1
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('c3cdf9598b54c0680a298e06c61aaf1e18a102b0d4c6b545e561476659eda253')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 227871, 

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

2017-04-14 Thread Sergej Pupykin
Date: Friday, April 14, 2017 @ 11:38:37
  Author: spupykin
Revision: 223006

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 223005, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 223005, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2017-04-14 11:38:16 UTC (rev 223005)
+++ community-i686/PKGBUILD 2017-04-14 11:38:37 UTC (rev 223006)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.3
-pkgrel=3
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 223005, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2017-04-14 11:38:37 UTC (rev 223006)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.4
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('c3cdf9598b54c0680a298e06c61aaf1e18a102b0d4c6b545e561476659eda253')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2017-04-14 11:38:16 UTC (rev 223005)
+++ community-x86_64/PKGBUILD   2017-04-14 11:38:37 UTC (rev 223006)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.3
-pkgrel=3
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 223005, 
libopenshot/trunk/PKGBUILD)
===
--- 

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

2017-02-08 Thread Antonio Rojas
Date: Wednesday, February 8, 2017 @ 08:08:02
  Author: arojas
Revision: 211151

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 211150, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 211150, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 211150, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2017-02-08 08:08:02 UTC (rev 211151)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.3
+pkgrel=3
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 211150, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2017-02-08 08:08:02 UTC (rev 211151)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.3
+pkgrel=3
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2016-12-25 Thread Bartłomiej Piotrowski
Date: Sunday, December 25, 2016 @ 18:31:22
  Author: bpiotrowski
Revision: 202256

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 202255, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 202255, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 202255, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-25 18:31:22 UTC (rev 202256)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.3
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 202255, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-25 18:31:22 UTC (rev 202256)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.3
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2016-12-22 Thread Sergej Pupykin
Date: Thursday, December 22, 2016 @ 17:04:53
  Author: spupykin
Revision: 201110

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 201109, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 201109, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2016-12-22 17:04:32 UTC (rev 201109)
+++ community-i686/PKGBUILD 2016-12-22 17:04:53 UTC (rev 201110)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.2
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 201109, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2016-12-22 17:04:53 UTC (rev 201110)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.3
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('f63dd962532aab374e08f8d29b63baa7aae8538ce074edcaddd9f054b5beff1d')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2016-12-22 17:04:32 UTC (rev 201109)
+++ community-x86_64/PKGBUILD   2016-12-22 17:04:53 UTC (rev 201110)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.1.2
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
-makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
-
-build() {
-   mkdir build
-   cd build
-export CXXFLAGS+=" -std=gnu++98"
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
-  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
-   make
-}
-
-package() {
-cd build
-   make DESTDIR="${pkgdir}" install
-}

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 201109, 
libopenshot/trunk/PKGBUILD)
===

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

2016-12-17 Thread Evangelos Foutras
Date: Sunday, December 18, 2016 @ 00:26:50
  Author: foutrelis
Revision: 26

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 25, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 25, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 25, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-12-18 00:26:50 UTC (rev 26)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.2
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 25, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-12-18 00:26:50 UTC (rev 26)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.2
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'jsoncpp' 'qt5-multimedia' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
+
+build() {
+   mkdir build
+   cd build
+export CXXFLAGS+=" -std=gnu++98"
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 \
+  -DUSE_SYSTEM_JSONCPP=ON -DENABLE_RUBY=OFF ../
+   make
+}
+
+package() {
+cd build
+   make DESTDIR="${pkgdir}" install
+}


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

2016-08-31 Thread Antonio Rojas
Date: Wednesday, August 31, 2016 @ 19:01:04
  Author: arojas
Revision: 188175

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 188174, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 188174, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 188174, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-08-31 19:01:04 UTC (rev 188175)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
+
+build() {
+#  cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+#  cd ${pkgname}-${pkgver}
+cd build
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 188174, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-08-31 19:01:04 UTC (rev 188175)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.2
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby' 'zeromq')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('b1fec6404ca703fdd137ed58f58b05ceecf68d9f93649b32bee7d85f868ef220')
+
+build() {
+#  cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+#  cd ${pkgname}-${pkgver}
+cd build
+   make DESTDIR="${pkgdir}" install
+}
+


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

2016-05-13 Thread Antonio Rojas
Date: Friday, May 13, 2016 @ 21:56:12
  Author: arojas
Revision: 175236

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 175235, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 175235, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 175235, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2016-05-13 19:56:12 UTC (rev 175236)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7f79084b0fda085ee5740f4907a2ac4bd736de6b3c4958b4441f49eaedfc7eee')
+
+build() {
+#  cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+#  cd ${pkgname}-${pkgver}
+cd build
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 175235, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2016-05-13 19:56:12 UTC (rev 175236)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.1.1
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.1/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('7f79084b0fda085ee5740f4907a2ac4bd736de6b3c4958b4441f49eaedfc7eee')
+
+build() {
+#  cd ${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+#  cd ${pkgname}-${pkgver}
+cd build
+   make DESTDIR="${pkgdir}" install
+}
+


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

2015-12-28 Thread Evangelos Foutras
Date: Monday, December 28, 2015 @ 22:47:40
  Author: foutrelis
Revision: 154711

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 154710, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 154710, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 154710, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-28 21:47:40 UTC (rev 154711)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.0.6
+pkgrel=3
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('8b1009b146ae5fab50a784534f32ef796cf5b4e59617dde7633fa5995e4ef0f9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}/build"
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 154710, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-28 21:47:40 UTC (rev 154711)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.0.6
+pkgrel=3
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('8b1009b146ae5fab50a784534f32ef796cf5b4e59617dde7633fa5995e4ef0f9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}/build"
+   make DESTDIR="${pkgdir}" install
+}
+


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

2015-12-06 Thread Evangelos Foutras
Date: Monday, December 7, 2015 @ 06:31:47
  Author: foutrelis
Revision: 149595

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 149594, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 149594, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   30 ++
 community-staging-x86_64/PKGBUILD |   30 ++
 2 files changed, 60 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 149594, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-07 05:31:47 UTC (rev 149595)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.0.6
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('8b1009b146ae5fab50a784534f32ef796cf5b4e59617dde7633fa5995e4ef0f9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}/build"
+   make DESTDIR="${pkgdir}" install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 149594, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-12-07 05:31:47 UTC (rev 149595)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.0.6
+pkgrel=2
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('8b1009b146ae5fab50a784534f32ef796cf5b4e59617dde7633fa5995e4ef0f9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}/build"
+   make DESTDIR="${pkgdir}" install
+}
+


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

2015-11-18 Thread Martin Wimpress
Date: Wednesday, November 18, 2015 @ 14:11:35
  Author: flexiondotorg
Revision: 147074

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 147073, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 147073, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-11-18 13:11:24 UTC (rev 147073)
+++ community-i686/PKGBUILD 2015-11-18 13:11:35 UTC (rev 147074)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.0.4
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}/build"
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 147073, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-11-18 13:11:35 UTC (rev 147074)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress 
+# Contributor: Foster McLane 
+# Contributor: Jonathan Thomas 
+
+pkgname=libopenshot
+pkgver=0.0.6
+pkgrel=1
+pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
+arch=('i686' 'x86_64')
+url="http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'python' 
'qt5-base' 'qt5-multimedia' 'ruby')
+makedepends=('cmake' 'doxygen' 'swig' 'unittestpp')
+source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('8b1009b146ae5fab50a784534f32ef796cf5b4e59617dde7633fa5995e4ef0f9')
+
+build() {
+   cd "${srcdir}/${pkgname}-${pkgver}"
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd "${srcdir}/${pkgname}-${pkgver}/build"
+   make DESTDIR="${pkgdir}" install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-11-18 13:11:24 UTC (rev 147073)
+++ community-x86_64/PKGBUILD   2015-11-18 13:11:35 UTC (rev 147074)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress 
-# Contributor: Foster McLane 
-# Contributor: Jonathan Thomas 
-
-pkgname=libopenshot
-pkgver=0.0.4
-pkgrel=2
-pkgdesc="A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby."
-arch=('i686' 'x86_64')
-url="http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=("https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
-
-build() {
-   cd "${srcdir}/${pkgname}-${pkgver}"
-   mkdir build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd "${srcdir}/${pkgname}-${pkgver}/build"
-   make DESTDIR="${pkgdir}" install
-}
-

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 147073, 
libopenshot/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-11-18 13:11:35 UTC 

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

2015-07-17 Thread Maxime Gauduin
Date: Friday, July 17, 2015 @ 17:07:04
  Author: alucryd
Revision: 137062

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

Added:
  libopenshot/repos/community-i686/PKGBUILD
(from rev 137061, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 137061, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-i686/PKGBUILD
  libopenshot/repos/community-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-i686/PKGBUILD   |   30 --
 community-x86_64/PKGBUILD |   30 --
 3 files changed, 60 insertions(+), 60 deletions(-)

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2015-07-17 15:06:42 UTC (rev 137061)
+++ community-i686/PKGBUILD 2015-07-17 15:07:04 UTC (rev 137062)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Foster McLane fkmcl...@gmail.com
-# Contributor: Jonathan Thomas jonat...@openshot.org
-
-pkgname=libopenshot
-pkgver=0.0.4
-pkgrel=1
-pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
-arch=('i686' 'x86_64')
-url=http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   mkdir build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-}
-

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 137061, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2015-07-17 15:07:04 UTC (rev 137062)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.4
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Deleted: community-x86_64/PKGBUILD
===
--- community-x86_64/PKGBUILD   2015-07-17 15:06:42 UTC (rev 137061)
+++ community-x86_64/PKGBUILD   2015-07-17 15:07:04 UTC (rev 137062)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Foster McLane fkmcl...@gmail.com
-# Contributor: Jonathan Thomas jonat...@openshot.org
-
-pkgname=libopenshot
-pkgver=0.0.4
-pkgrel=1
-pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
-arch=('i686' 'x86_64')
-url=http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   mkdir build
-   cd build
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-}
-

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 137061, 
libopenshot/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2015-07-17 15:07:04 UTC (rev 137062)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org

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

2015-02-17 Thread Martin Wimpress
Date: Tuesday, February 17, 2015 @ 13:24:10
  Author: flexiondotorg
Revision: 127849

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

Added:
  libopenshot/repos/testing-i686/
  libopenshot/repos/testing-i686/PKGBUILD
(from rev 127848, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/testing-x86_64/
  libopenshot/repos/testing-x86_64/PKGBUILD
(from rev 127848, libopenshot/trunk/PKGBUILD)

-+
 testing-i686/PKGBUILD   |   31 +++
 testing-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libopenshot/repos/testing-i686/PKGBUILD (from rev 127848, 
libopenshot/trunk/PKGBUILD)
===
--- testing-i686/PKGBUILD   (rev 0)
+++ testing-i686/PKGBUILD   2015-02-17 12:24:10 UTC (rev 127849)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.4
+pkgrel=1
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/testing-x86_64/PKGBUILD (from rev 127848, 
libopenshot/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2015-02-17 12:24:10 UTC (rev 127849)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.4
+pkgrel=1
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+


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

2015-02-17 Thread Martin Wimpress
Date: Tuesday, February 17, 2015 @ 13:50:50
  Author: flexiondotorg
Revision: 127854

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

Added:
  libopenshot/repos/community-testing-i686/PKGBUILD
(from rev 127853, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-testing-x86_64/PKGBUILD
(from rev 127853, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-testing-i686/PKGBUILD
  libopenshot/repos/community-testing-x86_64/PKGBUILD

---+
 /PKGBUILD |   60 
 community-testing-i686/PKGBUILD   |   31 --
 community-testing-x86_64/PKGBUILD |   31 --
 3 files changed, 60 insertions(+), 62 deletions(-)

Deleted: community-testing-i686/PKGBUILD
===
--- community-testing-i686/PKGBUILD 2015-02-17 12:50:39 UTC (rev 127853)
+++ community-testing-i686/PKGBUILD 2015-02-17 12:50:50 UTC (rev 127854)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Foster McLane fkmcl...@gmail.com
-# Contributor: Jonathan Thomas jonat...@openshot.org
-
-pkgname=libopenshot
-pkgver=0.0.3
-pkgrel=2
-pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
-arch=('i686' 'x86_64')
-url=http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   mkdir build
-   cd build
-
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-}
-

Copied: libopenshot/repos/community-testing-i686/PKGBUILD (from rev 127853, 
libopenshot/trunk/PKGBUILD)
===
--- community-testing-i686/PKGBUILD (rev 0)
+++ community-testing-i686/PKGBUILD 2015-02-17 12:50:50 UTC (rev 127854)
@@ -0,0 +1,30 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.4
+pkgrel=1
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('dea39632719a507d9b57daa9b384c29efb6583b7bd06b3ca1b449b6b7f4838ba')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Deleted: community-testing-x86_64/PKGBUILD
===
--- community-testing-x86_64/PKGBUILD   2015-02-17 12:50:39 UTC (rev 127853)
+++ community-testing-x86_64/PKGBUILD   2015-02-17 12:50:50 UTC (rev 127854)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Foster McLane fkmcl...@gmail.com
-# Contributor: Jonathan Thomas jonat...@openshot.org
-
-pkgname=libopenshot
-pkgver=0.0.3
-pkgrel=2
-pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
-arch=('i686' 'x86_64')
-url=http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   mkdir build
-   cd build
-
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-}
-

Copied: libopenshot/repos/community-testing-x86_64/PKGBUILD (from rev 127853, 
libopenshot/trunk/PKGBUILD)
===
--- community-testing-x86_64/PKGBUILD   

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

2015-02-16 Thread Eric Bélanger
Date: Tuesday, February 17, 2015 @ 02:51:41
  Author: eric
Revision: 127817

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 127816, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 127816, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   31 +++
 community-staging-x86_64/PKGBUILD |   31 +++
 2 files changed, 62 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 127816, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-02-17 01:51:41 UTC (rev 127817)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 127816, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2015-02-17 01:51:41 UTC (rev 127817)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+


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

2014-09-15 Thread Martin Wimpress
Date: Monday, September 15, 2014 @ 11:44:48
  Author: flexiondotorg
Revision: 119013

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

Added:
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 119012, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 119012, libopenshot/trunk/PKGBUILD)
Deleted:
  libopenshot/repos/community-staging-i686/PKGBUILD

---+
 /PKGBUILD |   31 +++
 community-staging-i686/PKGBUILD   |   31 ---
 community-staging-x86_64/PKGBUILD |   31 +++
 3 files changed, 62 insertions(+), 31 deletions(-)

Deleted: community-staging-i686/PKGBUILD
===
--- community-staging-i686/PKGBUILD 2014-09-15 09:43:07 UTC (rev 119012)
+++ community-staging-i686/PKGBUILD 2014-09-15 09:44:48 UTC (rev 119013)
@@ -1,31 +0,0 @@
-# $Id:
-# Maintainer : Martin Wimpress c...@flexion.org
-# Contributor: Foster McLane fkmcl...@gmail.com
-# Contributor: Jonathan Thomas jonat...@openshot.org
-
-pkgname=libopenshot
-pkgver=0.0.3
-pkgrel=1
-pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
-arch=('i686' 'x86_64')
-url=http://openshot.org/;
-license=('LGPL3')
-depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
-makedepends=('cmake' 'swig' 'unittestpp')
-source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
-sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
-
-build() {
-   cd ${srcdir}/${pkgname}-${pkgver}
-   mkdir build
-   cd build
-
-   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
-   make
-}
-
-package() {
-   cd ${srcdir}/${pkgname}-${pkgver}/build
-   make DESTDIR=${pkgdir} install
-}
-

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 119012, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-09-15 09:44:48 UTC (rev 119013)
@@ -0,0 +1,31 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=1
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 119012, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-09-15 09:44:48 UTC (rev 119013)
@@ -0,0 +1,31 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+pkgver=0.0.3
+pkgrel=1
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz;)
+sha256sums=('43e8e4cdf46d417ef62ce8593dfe72129db05de8ec9ee7741480ab7ed1674c7e')
+
+build() {
+   cd ${srcdir}/${pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+



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

2014-07-29 Thread Martin Wimpress
Date: Tuesday, July 29, 2014 @ 12:01:17
  Author: flexiondotorg
Revision: 116527

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

Added:
  libopenshot/repos/staging-i686/
  libopenshot/repos/staging-i686/PKGBUILD
(from rev 116526, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/staging-x86_64/
  libopenshot/repos/staging-x86_64/PKGBUILD
(from rev 116526, libopenshot/trunk/PKGBUILD)

-+
 staging-i686/PKGBUILD   |   32 
 staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libopenshot/repos/staging-i686/PKGBUILD (from rev 116526, 
libopenshot/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-07-29 10:01:17 UTC (rev 116527)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=3
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/staging-x86_64/PKGBUILD (from rev 116526, 
libopenshot/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2014-07-29 10:01:17 UTC (rev 116527)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=3
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+



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

2014-07-29 Thread Martin Wimpress
Date: Tuesday, July 29, 2014 @ 12:03:16
  Author: flexiondotorg
Revision: 116528

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

Added:
  libopenshot/repos/community-staging-i686/
  libopenshot/repos/community-staging-i686/PKGBUILD
(from rev 116527, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-staging-x86_64/
  libopenshot/repos/community-staging-x86_64/PKGBUILD
(from rev 116527, libopenshot/trunk/PKGBUILD)

---+
 community-staging-i686/PKGBUILD   |   32 
 community-staging-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libopenshot/repos/community-staging-i686/PKGBUILD (from rev 116527, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-07-29 10:03:16 UTC (rev 116528)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=3
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/community-staging-x86_64/PKGBUILD (from rev 116527, 
libopenshot/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2014-07-29 10:03:16 UTC (rev 116528)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=3
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+



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

2014-07-18 Thread Martin Wimpress
Date: Friday, July 18, 2014 @ 23:49:44
  Author: flexiondotorg
Revision: 115941

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

Added:
  libopenshot/repos/community-i686/
  libopenshot/repos/community-i686/PKGBUILD
(from rev 115940, libopenshot/trunk/PKGBUILD)
  libopenshot/repos/community-x86_64/
  libopenshot/repos/community-x86_64/PKGBUILD
(from rev 115940, libopenshot/trunk/PKGBUILD)

---+
 community-i686/PKGBUILD   |   32 
 community-x86_64/PKGBUILD |   32 
 2 files changed, 64 insertions(+)

Copied: libopenshot/repos/community-i686/PKGBUILD (from rev 115940, 
libopenshot/trunk/PKGBUILD)
===
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2014-07-18 21:49:44 UTC (rev 115941)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+

Copied: libopenshot/repos/community-x86_64/PKGBUILD (from rev 115940, 
libopenshot/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2014-07-18 21:49:44 UTC (rev 115941)
@@ -0,0 +1,32 @@
+# $Id:
+# Maintainer : Martin Wimpress c...@flexion.org
+# Contributor: Foster McLane fkmcl...@gmail.com
+# Contributor: Jonathan Thomas jonat...@openshot.org
+
+pkgname=libopenshot
+_pkgname=libopenshot1
+pkgver=0.0.2
+pkgrel=2
+pkgdesc=A high quality, open-source video editing, animation, and playback 
library for C++, Python, and Ruby.
+arch=('i686' 'x86_64')
+url=http://openshot.org/;
+license=('LGPL3')
+depends=('imagemagick' 'ffmpeg' 'libx264' 'libopenshot-audio' 'qt5-base' 
'qt5-multimedia')
+makedepends=('cmake' 'swig' 'unittestpp')
+source=(https://launchpad.net/libopenshot/0.0/${pkgver}/+download/${_pkgname}-${pkgver}.tar.gz;)
+md5sums=('05b3b9ef07ec8ecc9c5850851af900fa')
+
+build() {
+   cd ${srcdir}/${_pkgname}-${pkgver}
+   mkdir build
+   cd build
+
+   cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr -DMAGICKCORE_HDRI_ENABLE=1 
-DMAGICKCORE_QUANTUM_DEPTH=16 ../
+   make
+}
+
+package() {
+   cd ${srcdir}/${_pkgname}-${pkgver}/build
+   make DESTDIR=${pkgdir} install
+}
+