[arch-commits] Commit in ecasound/repos (3 files)

2019-01-11 Thread Evangelos Foutras via arch-commits
Date: Friday, January 11, 2019 @ 09:54:55
  Author: foutrelis
Revision: 422386

archrelease: copy trunk to community-staging-x86_64

Added:
  ecasound/repos/community-staging-x86_64/
  ecasound/repos/community-staging-x86_64/PKGBUILD
(from rev 422385, ecasound/trunk/PKGBUILD)
  ecasound/repos/community-staging-x86_64/ruby2.patch
(from rev 422385, ecasound/trunk/ruby2.patch)

-+
 PKGBUILD|   61 ++
 ruby2.patch |   12 +++
 2 files changed, 73 insertions(+)

Copied: ecasound/repos/community-staging-x86_64/PKGBUILD (from rev 422385, 
ecasound/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-11 09:54:55 UTC (rev 422386)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Eric Belanger 
+# Contributor: Tom Newsom 
+
+pkgname=ecasound
+pkgver=2.9.1
+pkgrel=13
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/";
+license=('GPL' 'LGPL')
+groups=('pro-audio')
+depends=('audiofile' 'liblo>=0.28' 'lilv')
+makedepends=('python2' 'ruby')
+optdepends=('python2: ecamonitor, ECI API'
+'ruby: ECI API'
+'mpg123: MP3 decoding'
+'lame: MP3 encoding'
+'vorbis-tools: Ogg Vorbis decoding/encoding'
+'faad2: AAC decoding'
+'faac: AAC encoding'
+'timidity++: MIDI file input'
+'libmikmod: tracker module')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz";
+'ruby2.patch')
+options=('staticlibs')
+sha512sums=('b91fd68cb4809fdf62b25323fbf52c9bb7de6663287d5aa2576cc4fb28e322850b7020df2718ed6087f5d9f5f96692a476287378ea65853d01834523e8eb7033'
+
'aa1553e81acc41917cc8e62b7e2569106183b4500d687fc17e0b56c8f70e78ae63cd65c4940ef83a13dbb0b320ba51573b6eb43da54b141f846623962838d639')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # fix python2 shebang
+  sed -e 's:bin/env python:bin/env python2:' \
+  -i "ecatools/ecamonitor"
+
+  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
+  patch -Np1 -i "$srcdir/ruby2.patch"
+}
+build() {
+  cd "$pkgname-$pkgver"
+
+  PYTHONPATH=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-python-includes=/usr/include/python2.7 \
+--with-python-modules=/usr/lib/python2.7 \
+--enable-liboil=no
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  # docs
+  install -vDm 644 {AUTHORS,BUGS,NEWS,README,RELNOTES,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/community-staging-x86_64/ruby2.patch (from rev 422385, 
ecasound/trunk/ruby2.patch)
===
--- community-staging-x86_64/ruby2.patch(rev 0)
+++ community-staging-x86_64/ruby2.patch2019-01-11 09:54:55 UTC (rev 
422386)
@@ -0,0 +1,12 @@
+diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure
+--- ecasound-2.9.0.orig/configure  2013-03-26 17:14:51.759045636 +0800
 ecasound-2.9.0/configure   2013-03-26 17:15:50.502060731 +0800
+@@ -6535,7 +6535,7 @@
+   rubyecasound_support=no
+   ECA_S_RUBY_SITEDIR=""
+ else
+-  ECA_S_RUBY_SITEDIR="`ruby -e 'require "rbconfig"; include Config; print 
CONFIG["sitedir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
++  ECA_S_RUBY_SITEDIR="`ruby -e 'include RbConfig; print CONFIG["vendordir"] + 
"/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
+ fi
+ 
+ 


[arch-commits] Commit in ecasound/repos (3 files)

2019-01-06 Thread Evangelos Foutras via arch-commits
Date: Monday, January 7, 2019 @ 01:09:18
  Author: foutrelis
Revision: 420845

archrelease: copy trunk to community-staging-x86_64

Added:
  ecasound/repos/community-staging-x86_64/
  ecasound/repos/community-staging-x86_64/PKGBUILD
(from rev 420844, ecasound/trunk/PKGBUILD)
  ecasound/repos/community-staging-x86_64/ruby2.patch
(from rev 420844, ecasound/trunk/ruby2.patch)

-+
 PKGBUILD|   61 ++
 ruby2.patch |   12 +++
 2 files changed, 73 insertions(+)

Copied: ecasound/repos/community-staging-x86_64/PKGBUILD (from rev 420844, 
ecasound/trunk/PKGBUILD)
===
--- community-staging-x86_64/PKGBUILD   (rev 0)
+++ community-staging-x86_64/PKGBUILD   2019-01-07 01:09:18 UTC (rev 420845)
@@ -0,0 +1,61 @@
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
+# Contributor: Eric Belanger 
+# Contributor: Tom Newsom 
+
+pkgname=ecasound
+pkgver=2.9.1
+pkgrel=12
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/";
+license=('GPL' 'LGPL')
+groups=('pro-audio')
+depends=('audiofile' 'liblo>=0.28' 'lilv')
+makedepends=('python2' 'ruby')
+optdepends=('python2: ecamonitor, ECI API'
+'ruby: ECI API'
+'mpg123: MP3 decoding'
+'lame: MP3 encoding'
+'vorbis-tools: Ogg Vorbis decoding/encoding'
+'faad2: AAC decoding'
+'faac: AAC encoding'
+'timidity++: MIDI file input'
+'libmikmod: tracker module')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz";
+'ruby2.patch')
+options=('staticlibs')
+sha512sums=('b91fd68cb4809fdf62b25323fbf52c9bb7de6663287d5aa2576cc4fb28e322850b7020df2718ed6087f5d9f5f96692a476287378ea65853d01834523e8eb7033'
+
'aa1553e81acc41917cc8e62b7e2569106183b4500d687fc17e0b56c8f70e78ae63cd65c4940ef83a13dbb0b320ba51573b6eb43da54b141f846623962838d639')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # fix python2 shebang
+  sed -e 's:bin/env python:bin/env python2:' \
+  -i "ecatools/ecamonitor"
+
+  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
+  patch -Np1 -i "$srcdir/ruby2.patch"
+}
+build() {
+  cd "$pkgname-$pkgver"
+
+  PYTHONPATH=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-python-includes=/usr/include/python2.7 \
+--with-python-modules=/usr/lib/python2.7 \
+--enable-liboil=no
+
+  make
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+  make DESTDIR="$pkgdir/" install
+  # docs
+  install -vDm 644 {AUTHORS,BUGS,NEWS,README,RELNOTES,TODO} \
+-t "${pkgdir}/usr/share/doc/${pkgname}/"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/community-staging-x86_64/ruby2.patch (from rev 420844, 
ecasound/trunk/ruby2.patch)
===
--- community-staging-x86_64/ruby2.patch(rev 0)
+++ community-staging-x86_64/ruby2.patch2019-01-07 01:09:18 UTC (rev 
420845)
@@ -0,0 +1,12 @@
+diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure
+--- ecasound-2.9.0.orig/configure  2013-03-26 17:14:51.759045636 +0800
 ecasound-2.9.0/configure   2013-03-26 17:15:50.502060731 +0800
+@@ -6535,7 +6535,7 @@
+   rubyecasound_support=no
+   ECA_S_RUBY_SITEDIR=""
+ else
+-  ECA_S_RUBY_SITEDIR="`ruby -e 'require "rbconfig"; include Config; print 
CONFIG["sitedir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
++  ECA_S_RUBY_SITEDIR="`ruby -e 'include RbConfig; print CONFIG["vendordir"] + 
"/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
+ fi
+ 
+ 


[arch-commits] Commit in ecasound/repos (3 files)

2018-02-06 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 6, 2018 @ 17:08:03
  Author: arojas
Revision: 289424

archrelease: copy trunk to community-x86_64

Added:
  ecasound/repos/community-x86_64/
  ecasound/repos/community-x86_64/PKGBUILD
(from rev 289423, ecasound/trunk/PKGBUILD)
  ecasound/repos/community-x86_64/ruby2.patch
(from rev 289423, ecasound/trunk/ruby2.patch)

-+
 PKGBUILD|   58 ++
 ruby2.patch |   12 
 2 files changed, 70 insertions(+)

Copied: ecasound/repos/community-x86_64/PKGBUILD (from rev 289423, 
ecasound/trunk/PKGBUILD)
===
--- community-x86_64/PKGBUILD   (rev 0)
+++ community-x86_64/PKGBUILD   2018-02-06 17:08:03 UTC (rev 289424)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Eric Belanger 
+# Contributor: Tom Newsom 
+
+pkgname=ecasound
+pkgver=2.9.1
+pkgrel=10
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/";
+license=('GPL' 'LGPL')
+depends=('audiofile' 'liblo>=0.28' 'lilv')
+makedepends=('python2' 'ruby')
+optdepends=('python2: ecamonitor, ECI API'
+'ruby: ECI API'
+'mpg123: MP3 decoding'
+'lame: MP3 encoding'
+'vorbis-tools: Ogg Vorbis decoding/encoding'
+'faad2: AAC decoding'
+'faac: AAC encoding'
+'timidity++: MIDI file input'
+'libmikmod: tracker module')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz";
+'ruby2.patch')
+options=('staticlibs')
+sha256sums=('39fce8becd84d80620fa3de31fb5223b2b7d4648d36c9c337d3739c2fad0dcf3'
+'5dda8e8bd245d90975f57bd68e05c50f72076f7b82fab02fdd5a510275f0f188')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
+  patch -Np1 -i "$srcdir/ruby2.patch"
+}
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  PYTHONPATH=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-python-includes=/usr/include/python2.7 \
+--with-python-modules=/usr/lib/python2.7 \
+--enable-liboil=no
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+
+  # fix for python 2.7
+  sed -i 's:bin/env python:bin/env python2:' \
+"$pkgdir/usr/bin/ecamonitor"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/community-x86_64/ruby2.patch (from rev 289423, 
ecasound/trunk/ruby2.patch)
===
--- community-x86_64/ruby2.patch(rev 0)
+++ community-x86_64/ruby2.patch2018-02-06 17:08:03 UTC (rev 289424)
@@ -0,0 +1,12 @@
+diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure
+--- ecasound-2.9.0.orig/configure  2013-03-26 17:14:51.759045636 +0800
 ecasound-2.9.0/configure   2013-03-26 17:15:50.502060731 +0800
+@@ -6535,7 +6535,7 @@
+   rubyecasound_support=no
+   ECA_S_RUBY_SITEDIR=""
+ else
+-  ECA_S_RUBY_SITEDIR="`ruby -e 'require "rbconfig"; include Config; print 
CONFIG["sitedir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
++  ECA_S_RUBY_SITEDIR="`ruby -e 'include RbConfig; print CONFIG["vendordir"] + 
"/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
+ fi
+ 
+ 


[arch-commits] Commit in ecasound/repos (3 files)

2018-01-02 Thread Evangelos Foutras via arch-commits
Date: Wednesday, January 3, 2018 @ 07:39:34
  Author: foutrelis
Revision: 313956

archrelease: copy trunk to staging-x86_64

Added:
  ecasound/repos/staging-x86_64/
  ecasound/repos/staging-x86_64/PKGBUILD
(from rev 313955, ecasound/trunk/PKGBUILD)
  ecasound/repos/staging-x86_64/ruby2.patch
(from rev 313955, ecasound/trunk/ruby2.patch)

-+
 PKGBUILD|   58 ++
 ruby2.patch |   12 
 2 files changed, 70 insertions(+)

Copied: ecasound/repos/staging-x86_64/PKGBUILD (from rev 313955, 
ecasound/trunk/PKGBUILD)
===
--- staging-x86_64/PKGBUILD (rev 0)
+++ staging-x86_64/PKGBUILD 2018-01-03 07:39:34 UTC (rev 313956)
@@ -0,0 +1,58 @@
+# $Id$
+# Maintainer: Ray Rashif 
+# Contributor: Eric Belanger 
+# Contributor: Tom Newsom 
+
+pkgname=ecasound
+pkgver=2.9.1
+pkgrel=10
+pkgdesc="Command-line multitrack audio processor"
+arch=('x86_64')
+url="https://ecasound.seul.org/ecasound/";
+license=('GPL' 'LGPL')
+depends=('audiofile' 'liblo>=0.28' 'lilv')
+makedepends=('python2' 'ruby')
+optdepends=('python2: ecamonitor, ECI API'
+'ruby: ECI API'
+'mpg123: MP3 decoding'
+'lame: MP3 encoding'
+'vorbis-tools: Ogg Vorbis decoding/encoding'
+'faad2: AAC decoding'
+'faac: AAC encoding'
+'timidity++: MIDI file input'
+'libmikmod: tracker module')
+source=("https://ecasound.seul.org/download/$pkgname-$pkgver.tar.gz";
+'ruby2.patch')
+options=('staticlibs')
+sha256sums=('39fce8becd84d80620fa3de31fb5223b2b7d4648d36c9c337d3739c2fad0dcf3'
+'5dda8e8bd245d90975f57bd68e05c50f72076f7b82fab02fdd5a510275f0f188')
+
+prepare() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  # fix ruby 2.0 incompatibility + use vendor_ruby for ruby files
+  patch -Np1 -i "$srcdir/ruby2.patch"
+}
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  PYTHONPATH=/usr/bin/python2 ./configure \
+--prefix=/usr \
+--with-python-includes=/usr/include/python2.7 \
+--with-python-modules=/usr/lib/python2.7 \
+--enable-liboil=no
+
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir/" install
+
+  # fix for python 2.7
+  sed -i 's:bin/env python:bin/env python2:' \
+"$pkgdir/usr/bin/ecamonitor"
+}
+
+# vim:set ts=2 sw=2 et:

Copied: ecasound/repos/staging-x86_64/ruby2.patch (from rev 313955, 
ecasound/trunk/ruby2.patch)
===
--- staging-x86_64/ruby2.patch  (rev 0)
+++ staging-x86_64/ruby2.patch  2018-01-03 07:39:34 UTC (rev 313956)
@@ -0,0 +1,12 @@
+diff -aur ecasound-2.9.0.orig/configure ecasound-2.9.0/configure
+--- ecasound-2.9.0.orig/configure  2013-03-26 17:14:51.759045636 +0800
 ecasound-2.9.0/configure   2013-03-26 17:15:50.502060731 +0800
+@@ -6535,7 +6535,7 @@
+   rubyecasound_support=no
+   ECA_S_RUBY_SITEDIR=""
+ else
+-  ECA_S_RUBY_SITEDIR="`ruby -e 'require "rbconfig"; include Config; print 
CONFIG["sitedir"] + "/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
++  ECA_S_RUBY_SITEDIR="`ruby -e 'include RbConfig; print CONFIG["vendordir"] + 
"/" + CONFIG["MAJOR"] + "." + CONFIG["MINOR"]'`"
+ fi
+ 
+ 


[arch-commits] Commit in ecasound/repos (3 files)

2010-01-23 Thread Eric Bélanger
Date: Saturday, January 23, 2010 @ 17:58:37
  Author: eric
Revision: 64983

Merged revisions 64981 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/ecasound/trunk


  r64981 | eric | 2010-01-23 17:57:29 -0500 (Sat, 23 Jan 2010) | 2 lines
  
  upgpkg: ecasound 2.7.0-1
  Upstream update


Modified:
  ecasound/repos/extra-x86_64/  (properties)
  ecasound/repos/extra-x86_64/ChangeLog
  ecasound/repos/extra-x86_64/PKGBUILD

---+
 ChangeLog |5 +
 PKGBUILD  |6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)


Property changes on: ecasound/repos/extra-x86_64
___
Modified: svnmerge-integrated
   - /ecasound/trunk:1-42730
   + /ecasound/trunk:1-64982

Modified: extra-x86_64/ChangeLog
===
--- extra-x86_64/ChangeLog  2010-01-23 22:57:46 UTC (rev 64982)
+++ extra-x86_64/ChangeLog  2010-01-23 22:58:37 UTC (rev 64983)
@@ -1,3 +1,8 @@
+2010-01-23  Eric Belanger  
+
+   * ecasound 2.7.0-1
+   * Upstream update
+
 2009-06-18  Eric Belanger  
 
* ecasound 2.6.0-1

Modified: extra-x86_64/PKGBUILD
===
--- extra-x86_64/PKGBUILD   2010-01-23 22:57:46 UTC (rev 64982)
+++ extra-x86_64/PKGBUILD   2010-01-23 22:58:37 UTC (rev 64983)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=ecasound
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Ecasound is a software package designed for multitrack audio 
processing"
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('ruby')
 options=('!libtool')
 source=(http://ecasound.seul.org/download/${pkgname}-${pkgver}.tar.gz)
-md5sums=('41f9445b9a9c0cde141831cb53d1ef8f')
-sha1sums=('fb34fd31d112a4a1d3e1a87f302324152f62eac7')
+md5sums=('0311307fa4fb4f085178843b3cec477a')
+sha1sums=('f2943665064580ecec7e97688a06c78d83e51bc4')
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"



[arch-commits] Commit in ecasound/repos (3 files)

2010-01-23 Thread Eric Bélanger
Date: Saturday, January 23, 2010 @ 17:57:46
  Author: eric
Revision: 64982

Merged revisions 64981 via svnmerge from 
svn+ssh://gerolde.archlinux.org/srv/svn-packages/ecasound/trunk


  r64981 | eric | 2010-01-23 17:57:29 -0500 (Sat, 23 Jan 2010) | 2 lines
  
  upgpkg: ecasound 2.7.0-1
  Upstream update


Modified:
  ecasound/repos/extra-i686/(properties)
  ecasound/repos/extra-i686/ChangeLog
  ecasound/repos/extra-i686/PKGBUILD

---+
 ChangeLog |5 +
 PKGBUILD  |6 +++---
 2 files changed, 8 insertions(+), 3 deletions(-)


Property changes on: ecasound/repos/extra-i686
___
Modified: svnmerge-integrated
   - /ecasound/trunk:1-42735
   + /ecasound/trunk:1-64981

Modified: extra-i686/ChangeLog
===
--- extra-i686/ChangeLog2010-01-23 22:57:29 UTC (rev 64981)
+++ extra-i686/ChangeLog2010-01-23 22:57:46 UTC (rev 64982)
@@ -1,3 +1,8 @@
+2010-01-23  Eric Belanger  
+
+   * ecasound 2.7.0-1
+   * Upstream update
+
 2009-06-18  Eric Belanger  
 
* ecasound 2.6.0-1

Modified: extra-i686/PKGBUILD
===
--- extra-i686/PKGBUILD 2010-01-23 22:57:29 UTC (rev 64981)
+++ extra-i686/PKGBUILD 2010-01-23 22:57:46 UTC (rev 64982)
@@ -3,7 +3,7 @@
 # Contributor: Tom Newsom 
 
 pkgname=ecasound
-pkgver=2.6.0
+pkgver=2.7.0
 pkgrel=1
 pkgdesc="Ecasound is a software package designed for multitrack audio 
processing"
 arch=('i686' 'x86_64')
@@ -13,8 +13,8 @@
 makedepends=('ruby')
 options=('!libtool')
 source=(http://ecasound.seul.org/download/${pkgname}-${pkgver}.tar.gz)
-md5sums=('41f9445b9a9c0cde141831cb53d1ef8f')
-sha1sums=('fb34fd31d112a4a1d3e1a87f302324152f62eac7')
+md5sums=('0311307fa4fb4f085178843b3cec477a')
+sha1sums=('f2943665064580ecec7e97688a06c78d83e51bc4')
 
 build() {
cd "${srcdir}/${pkgname}-${pkgver}"