[arch-commits] Commit in cinelerra-cv/repos (12 files)

2015-03-11 Thread Evangelos Foutras
Date: Wednesday, March 11, 2015 @ 13:28:06
  Author: foutrelis
Revision: 129073

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 129072, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 129072, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 129072, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 129072, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 129072, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 129072, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 129072, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 129072, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-03-11 12:28:06 UTC (rev 129073)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=24
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find 

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2014-09-15 Thread Bartłomiej Piotrowski
Date: Monday, September 15, 2014 @ 23:50:59
  Author: bpiotrowski
Revision: 119037

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 119036, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 119036, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 119036, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 119036, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 119036, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 119036, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 119036, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 119036, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 119036, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 119036, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 119036, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-09-15 21:50:59 UTC (rev 119037)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=23
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2014-05-16 Thread Ray Rashif
Date: Friday, May 16, 2014 @ 11:20:23
  Author: schiv
Revision: 111304

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

Added:
  cinelerra-cv/repos/staging-i686/
  cinelerra-cv/repos/staging-i686/PKGBUILD
(from rev 111303, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/staging-i686/cinelerra-std_and_str_h.patch
(from rev 111303, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/staging-i686/ffmpeg2.0.patch
(from rev 111303, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/staging-i686/ffmpeg_api.patch
(from rev 111303, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/staging-i686/v4l1_removal.patch
(from rev 111303, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/staging-x86_64/
  cinelerra-cv/repos/staging-x86_64/PKGBUILD
(from rev 111303, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 111303, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/staging-x86_64/ffmpeg2.0.patch
(from rev 111303, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/staging-x86_64/ffmpeg_api.patch
(from rev 111303, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/staging-x86_64/v4l1_removal.patch
(from rev 111303, cinelerra-cv/trunk/v4l1_removal.patch)

--+
 staging-i686/PKGBUILD|  105 
 staging-i686/cinelerra-std_and_str_h.patch   |   81 
 staging-i686/ffmpeg2.0.patch |   98 +++
 staging-i686/ffmpeg_api.patch|  163 +
 staging-i686/v4l1_removal.patch  |  125 +++
 staging-x86_64/PKGBUILD  |  105 
 staging-x86_64/cinelerra-std_and_str_h.patch |   81 
 staging-x86_64/ffmpeg2.0.patch   |   98 +++
 staging-x86_64/ffmpeg_api.patch  |  163 +
 staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/staging-i686/PKGBUILD (from rev 111303, 
cinelerra-cv/trunk/PKGBUILD)
===
--- staging-i686/PKGBUILD   (rev 0)
+++ staging-i686/PKGBUILD   2014-05-16 09:20:23 UTC (rev 111304)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=22
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find -type f -exec sed -i 's/CodecID/AVCodecID/' {} \;
+}
+
+build() {
+  cd $srcdir/$pkgname
+
+  ## More Hacks (must be in existing env) ##
+
+  # gcc 4.6 workaround
+  export CFLAGS+= -Wwrite-strings 

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2014-05-16 Thread Ray Rashif
Date: Friday, May 16, 2014 @ 12:03:19
  Author: schiv
Revision: 111308

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 111307, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 111307, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 111307, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 111307, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 111307, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 111307, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 111307, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 111307, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 111307, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 111307, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 111307, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-05-16 10:03:19 UTC (rev 111308)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=22
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find -type f 

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2014-03-25 Thread Bartłomiej Piotrowski
Date: Tuesday, March 25, 2014 @ 12:56:41
  Author: bpiotrowski
Revision: 108248

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 108247, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 108247, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 108247, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 108247, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 108247, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 108247, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 108247, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 108247, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 108247, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 108247, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 108247, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2014-03-25 11:56:41 UTC (rev 108248)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=21
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra-cv.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find 

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2013-11-09 Thread Evangelos Foutras
Date: Saturday, November 9, 2013 @ 18:07:42
  Author: foutrelis
Revision: 100735

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 100734, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 100734, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 100734, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 100734, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 100734, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 100734, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 100734, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 100734, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 100734, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 100734, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  105 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  105 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1144 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 100734, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-11-09 17:07:42 UTC (rev 100735)
@@ -0,0 +1,105 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=19
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa')
+source=($pkgname::git+git://git.cinelerra.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg_api.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ 'b05ec2fb54e7d02f6167525417802111'
+ '14dd897084d64cd0b5e9caa8a69818bd'
+ '02d8222e596133bbc05eaad15bef242c')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  ## Patches (oldest first) ##
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  # ffmpeg api patch update for 0.11
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix some missing headers
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # fix avcodec_alloc_context and alloc_open
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  ## Hacks ##
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: check if this is still needed (pre-svn commit) --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # TODO: check if this is still needed (old commit; r29539 by ibiru) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+  #msg2 Fixing PNGs, please wait...
+  #find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  # ffmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \;
+  find 

[arch-commits] Commit in cinelerra-cv/repos (12 files)

2013-07-22 Thread Jelle van der Waa
Date: Monday, July 22, 2013 @ 21:51:03
  Author: jelle
Revision: 94409

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

Added:
  cinelerra-cv/repos/community-staging-i686/
  cinelerra-cv/repos/community-staging-i686/PKGBUILD
(from rev 94408, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-i686/cinelerra-std_and_str_h.patch
(from rev 94408, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg2.0.patch
(from rev 94408, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-i686/ffmpeg_api.patch
(from rev 94408, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-i686/v4l1_removal.patch
(from rev 94408, cinelerra-cv/trunk/v4l1_removal.patch)
  cinelerra-cv/repos/community-staging-x86_64/
  cinelerra-cv/repos/community-staging-x86_64/PKGBUILD
(from rev 94408, cinelerra-cv/trunk/PKGBUILD)
  cinelerra-cv/repos/community-staging-x86_64/cinelerra-std_and_str_h.patch
(from rev 94408, cinelerra-cv/trunk/cinelerra-std_and_str_h.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg2.0.patch
(from rev 94408, cinelerra-cv/trunk/ffmpeg2.0.patch)
  cinelerra-cv/repos/community-staging-x86_64/ffmpeg_api.patch
(from rev 94408, cinelerra-cv/trunk/ffmpeg_api.patch)
  cinelerra-cv/repos/community-staging-x86_64/v4l1_removal.patch
(from rev 94408, cinelerra-cv/trunk/v4l1_removal.patch)

+
 community-staging-i686/PKGBUILD|  103 +
 community-staging-i686/cinelerra-std_and_str_h.patch   |   81 +++
 community-staging-i686/ffmpeg2.0.patch |   98 +
 community-staging-i686/ffmpeg_api.patch|  163 +++
 community-staging-i686/v4l1_removal.patch  |  125 +++
 community-staging-x86_64/PKGBUILD  |  103 +
 community-staging-x86_64/cinelerra-std_and_str_h.patch |   81 +++
 community-staging-x86_64/ffmpeg2.0.patch   |   98 +
 community-staging-x86_64/ffmpeg_api.patch  |  163 +++
 community-staging-x86_64/v4l1_removal.patch|  125 +++
 10 files changed, 1140 insertions(+)

Copied: cinelerra-cv/repos/community-staging-i686/PKGBUILD (from rev 94408, 
cinelerra-cv/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2013-07-22 19:51:03 UTC (rev 94409)
@@ -0,0 +1,103 @@
+# $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
+# Contributor: Daniel J Griffiths ghost1...@archlinux.us
+# Contributor: Jaroslaw Swierczynski swier...@aur.archlinux.org
+# Contributor: Alexander Rødseth rods...@gmail.com
+
+pkgname=cinelerra-cv
+pkgver=2.2
+_gitrel=2.2.0
+pkgrel=17
+epoch=1
+pkgdesc=Professional video editing and compositing environment
+arch=('x86_64' 'i686')
+url=http://cinelerra.org/;
+license=('GPL')
+depends=('e2fsprogs' 'libavc1394' 'libiec61883' 'libxv'
+ 'libtiff' 'mjpegtools' 'fftw' 'a52dec' 'glu'
+ 'ffmpeg' 'faad2' 'faac' 'openexr=2.0.0')
+makedepends=('git' 'nasm' 'mesa' 'optipng')
+options=('!libtool')
+source=($pkgname::git+git://git.cinelerra.org/CinelerraCV.git#branch=rel$_gitrel
+'v4l1_removal.patch'
+'ffmpeg2.0.patch'
+'cinelerra-std_and_str_h.patch'
+'ffmpeg_api.patch')
+md5sums=('SKIP'
+ 'bfa85e20809429d88eba4ab83e569612'
+ '02d8222e596133bbc05eaad15bef242c'
+ 'b05ec2fb54e7d02f6167525417802111')
+
+_confit() {
+  ./configure --prefix=/usr \
+  --with-buildinfo=git/recompile \
+  --with-external-ffmpeg \
+  --enable-opengl \
+  --disable-esd $@
+}
+
+prepare() {
+  cd $srcdir/$pkgname
+
+  # v4l1 removal patch
+  patch -Np1 -i $srcdir/v4l1_removal.patch
+
+  patch -Np0 -i $srcdir/cinelerra-std_and_str_h.patch
+
+  # new ffmpeg api patch
+  patch -Np1 -i $srcdir/ffmpeg_api.patch
+
+  # fix avcodec_alloc_context and alloc_open 
+  patch -Np1 -i $srcdir/ffmpeg2.0.patch
+
+  # TODO: check if this is still needed (not sure what it does) --schiv
+  sed -i -e '/Debian/d' admin/nasm
+
+  # if you don't need OpenGL comment out the next line (and no glu/mesa dep)
+  # TODO: kind of forgot about the specifics of this one, recheck --schiv
+  sed -i '/\/X11R6/s///' configure.in
+
+  # fix some pngs that break with newer libpng
+  # see 
https://mailman.archlinux.org/pipermail/arch-dev-public/2013-May/024872.html
+#  msg2 Fixing PNGs, please wait...
+#find -name '*.png' -exec optipng -quiet -force -fix {} +
+
+  #  FFmpeg 2.0 related replacements
+  find -type f -exec sed -i 's/AVCODEC_MAX_AUDIO_FRAME_SIZE/192000/' {} \; 
+  find -type f -exec sed -i 's/CodecID/AVCodecID/' {} \; 
+}
+
+build() {
+  cd $srcdir/$pkgname
+
+  # gcc 4.6 workaround
+  export