Date: Wednesday, March 15, 2017 @ 07:29:47
  Author: arojas
Revision: 216387

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

Added:
  guvcview/repos/community-i686/PKGBUILD
    (from rev 216386, guvcview/trunk/PKGBUILD)
  guvcview/repos/community-x86_64/PKGBUILD
    (from rev 216386, guvcview/trunk/PKGBUILD)
Deleted:
  guvcview/repos/community-i686/PKGBUILD
  guvcview/repos/community-i686/guvcview-ffmpeg3.patch
  guvcview/repos/community-x86_64/PKGBUILD
  guvcview/repos/community-x86_64/guvcview-ffmpeg3.patch

-----------------------------------------+
 /PKGBUILD                               |   62 ++++++++++++++++++++++++++++++
 community-i686/PKGBUILD                 |   38 ------------------
 community-i686/guvcview-ffmpeg3.patch   |   26 ------------
 community-x86_64/PKGBUILD               |   38 ------------------
 community-x86_64/guvcview-ffmpeg3.patch |   26 ------------
 5 files changed, 62 insertions(+), 128 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD     2017-03-15 07:29:12 UTC (rev 216386)
+++ community-i686/PKGBUILD     2017-03-15 07:29:47 UTC (rev 216387)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Maxwell Pray a.k.a. Synthead <[email protected]>
-
-pkgname=guvcview
-pkgver=2.0.4
-pkgrel=1
-pkgdesc="A video viewer and capturer for the linux uvc driver"
-arch=('i686' 'x86_64')
-url="http://guvcview.sourceforge.net/";
-license=('GPL')
-depends=('portaudio' 'ffmpeg' 'gtk3' 'sdl2' 'gsl')
-makedepends=('pkg-config' 'intltool')
-optdepends=('pulseaudio: for PulseAudio support')
-options=('!docs' '!buildflags')
-source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";
 guvcview-ffmpeg3.patch)
-md5sums=('a6d900166ac2bba251a2c09cb602f1fe'
-         '782b5f90f051b5c6217587a1fed7e6b1')
-
-prepare() {
-  cd $pkgname-src-$pkgver
-# Fix build against ffmpeg 3.0
-  patch -p1 -i ../guvcview-ffmpeg3.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-src-${pkgver}"
-
-  ./configure --prefix=/usr \
-              --disable-debian-menu
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-src-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: guvcview/repos/community-i686/PKGBUILD (from rev 216386, 
guvcview/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD                             (rev 0)
+++ community-i686/PKGBUILD     2017-03-15 07:29:47 UTC (rev 216387)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Maxwell Pray a.k.a. Synthead <[email protected]>
+
+pkgname=guvcview
+pkgver=2.0.5
+pkgrel=1
+pkgdesc="A video viewer and capturer for the linux uvc driver"
+arch=('i686' 'x86_64')
+url="http://guvcview.sourceforge.net/";
+license=('GPL')
+depends=('portaudio' 'ffmpeg' 'gtk3' 'sdl2' 'gsl' 'libusb')
+makedepends=('pkg-config' 'intltool')
+optdepends=('pulseaudio: for PulseAudio support')
+options=('!docs' '!buildflags')
+source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";)
+sha256sums=('a86beb5993a8449ed3cbcc6ec2a238ef0b90138b6cbe2afab4456d37f44c41a0')
+
+build() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  ./configure --prefix=/usr \
+              --disable-debian-menu
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-i686/guvcview-ffmpeg3.patch
===================================================================
--- community-i686/guvcview-ffmpeg3.patch       2017-03-15 07:29:12 UTC (rev 
216386)
+++ community-i686/guvcview-ffmpeg3.patch       2017-03-15 07:29:47 UTC (rev 
216387)
@@ -1,26 +0,0 @@
-Description: Replace deprecated FFmpeg API
-Author: Andreas Cadhalpun <[email protected]>
-Last-Update: <2015-11-02>
-
---- a/gview_v4l2core/jpeg_decoder.c
-+++ b/gview_v4l2core/jpeg_decoder.c
-@@ -1436,7 +1436,7 @@
-               exit(-1);
-       }
- 
--      codec_data->context->pix_fmt = PIX_FMT_YUV422P;
-+      codec_data->context->pix_fmt = AV_PIX_FMT_YUV422P;
-       codec_data->context->width = width;
-       codec_data->context->height = height;
-       //jpeg_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);
---- a/gview_v4l2core/uvc_h264.c
-+++ b/gview_v4l2core/uvc_h264.c
-@@ -970,7 +970,7 @@
-       }
-       
-       h264_ctx->context->flags2 |= CODEC_FLAG2_FAST;
--      h264_ctx->context->pix_fmt = PIX_FMT_YUV420P;
-+      h264_ctx->context->pix_fmt = AV_PIX_FMT_YUV420P;
-       h264_ctx->context->width = width;
-       h264_ctx->context->height = height;
-       //h264_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD   2017-03-15 07:29:12 UTC (rev 216386)
+++ community-x86_64/PKGBUILD   2017-03-15 07:29:47 UTC (rev 216387)
@@ -1,38 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <[email protected]>
-# Contributor: Maxwell Pray a.k.a. Synthead <[email protected]>
-
-pkgname=guvcview
-pkgver=2.0.4
-pkgrel=1
-pkgdesc="A video viewer and capturer for the linux uvc driver"
-arch=('i686' 'x86_64')
-url="http://guvcview.sourceforge.net/";
-license=('GPL')
-depends=('portaudio' 'ffmpeg' 'gtk3' 'sdl2' 'gsl')
-makedepends=('pkg-config' 'intltool')
-optdepends=('pulseaudio: for PulseAudio support')
-options=('!docs' '!buildflags')
-source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";
 guvcview-ffmpeg3.patch)
-md5sums=('a6d900166ac2bba251a2c09cb602f1fe'
-         '782b5f90f051b5c6217587a1fed7e6b1')
-
-prepare() {
-  cd $pkgname-src-$pkgver
-# Fix build against ffmpeg 3.0
-  patch -p1 -i ../guvcview-ffmpeg3.patch
-}
-
-build() {
-  cd "${srcdir}/${pkgname}-src-${pkgver}"
-
-  ./configure --prefix=/usr \
-              --disable-debian-menu
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-src-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
-}

Copied: guvcview/repos/community-x86_64/PKGBUILD (from rev 216386, 
guvcview/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD                           (rev 0)
+++ community-x86_64/PKGBUILD   2017-03-15 07:29:47 UTC (rev 216387)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Giovanni Scafora <[email protected]>
+# Contributor: Maxwell Pray a.k.a. Synthead <[email protected]>
+
+pkgname=guvcview
+pkgver=2.0.5
+pkgrel=1
+pkgdesc="A video viewer and capturer for the linux uvc driver"
+arch=('i686' 'x86_64')
+url="http://guvcview.sourceforge.net/";
+license=('GPL')
+depends=('portaudio' 'ffmpeg' 'gtk3' 'sdl2' 'gsl' 'libusb')
+makedepends=('pkg-config' 'intltool')
+optdepends=('pulseaudio: for PulseAudio support')
+options=('!docs' '!buildflags')
+source=("http://downloads.sourceforge.net/project/${pkgname}/source/${pkgname}-src-${pkgver}.tar.gz";)
+sha256sums=('a86beb5993a8449ed3cbcc6ec2a238ef0b90138b6cbe2afab4456d37f44c41a0')
+
+build() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  ./configure --prefix=/usr \
+              --disable-debian-menu
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-src-${pkgver}"
+
+  make DESTDIR="${pkgdir}" install
+}

Deleted: community-x86_64/guvcview-ffmpeg3.patch
===================================================================
--- community-x86_64/guvcview-ffmpeg3.patch     2017-03-15 07:29:12 UTC (rev 
216386)
+++ community-x86_64/guvcview-ffmpeg3.patch     2017-03-15 07:29:47 UTC (rev 
216387)
@@ -1,26 +0,0 @@
-Description: Replace deprecated FFmpeg API
-Author: Andreas Cadhalpun <[email protected]>
-Last-Update: <2015-11-02>
-
---- a/gview_v4l2core/jpeg_decoder.c
-+++ b/gview_v4l2core/jpeg_decoder.c
-@@ -1436,7 +1436,7 @@
-               exit(-1);
-       }
- 
--      codec_data->context->pix_fmt = PIX_FMT_YUV422P;
-+      codec_data->context->pix_fmt = AV_PIX_FMT_YUV422P;
-       codec_data->context->width = width;
-       codec_data->context->height = height;
-       //jpeg_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);
---- a/gview_v4l2core/uvc_h264.c
-+++ b/gview_v4l2core/uvc_h264.c
-@@ -970,7 +970,7 @@
-       }
-       
-       h264_ctx->context->flags2 |= CODEC_FLAG2_FAST;
--      h264_ctx->context->pix_fmt = PIX_FMT_YUV420P;
-+      h264_ctx->context->pix_fmt = AV_PIX_FMT_YUV420P;
-       h264_ctx->context->width = width;
-       h264_ctx->context->height = height;
-       //h264_ctx->context->dsp_mask = (FF_MM_MMX | FF_MM_MMXEXT | FF_MM_SSE);

Reply via email to