[arch-commits] Commit in dssi/trunk (PKGBUILD)

2020-07-07 Thread Felix Yan via arch-commits
Date: Tuesday, July 7, 2020 @ 18:03:09
  Author: felixonmars
Revision: 659956

upgpkg: dssi 1.1.1-11: reproducibility rebuild

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-07-07 18:03:07 UTC (rev 659955)
+++ PKGBUILD2020-07-07 18:03:09 UTC (rev 659956)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=10
+pkgrel=11
 pkgdesc="An API for audio processing plugins & softsynths with UIs"
 arch=('x86_64')
 url="http://dssi.sourceforge.net/;


[arch-commits] Commit in dssi/trunk (PKGBUILD license.txt)

2019-04-29 Thread David Runge via arch-commits
Date: Monday, April 29, 2019 @ 17:59:21
  Author: dvzrv
Revision: 456329

upgpkg: dssi 1.1.1-10

Removing qt4 from makedepends/optdepends (not building example stuff). Moving 
to https for source. Switching to current maintainer. Removing (included) 
separate license file. Using autotools in prepare().

Modified:
  dssi/trunk/PKGBUILD
Deleted:
  dssi/trunk/license.txt

-+
 PKGBUILD|   35 ++
 license.txt |   77 --
 2 files changed, 19 insertions(+), 93 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-29 16:55:02 UTC (rev 456328)
+++ PKGBUILD2019-04-29 17:59:21 UTC (rev 456329)
@@ -1,36 +1,39 @@
-# Maintainer: Ray Rashif 
+# Maintainer: David Runge 
+# Contributor: Ray Rashif 
 # Contributor: damir 
 # Contributor: Pajaro
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=9
+pkgrel=10
 pkgdesc="An API for audio processing plugins & softsynths with UIs"
 arch=('x86_64')
 url="http://dssi.sourceforge.net/;
-license=('LGPL' 'BSD' 'custom')
-depends=('liblo>=0.28' 'jack')
-makedepends=('ladspa' 'qt4')
-optdepends=('qt4: example plugins')
-source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
-'license.txt')
-md5sums=('619ab73c883b02dc37ddb37001591f8b'
- '258ca4d0ca28c5c4d4675147621fac18')
+license=('BSD' 'LGPL')
+depends=('liblo' 'jack')
+makedepends=('ladspa')
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;)
+sha512sums=('faf35ae851b889ad17a8ba624c713af8a5f33bb93db8e34842e8b778a0e36c3eab9ab712a40e4ca7ecd96954f3e70504d89a75b3826dd138332085e176c0d34d')
 
+prepare() {
+  cd "$pkgname-$pkgver"
+  autoreconf -vfi
+}
+
 build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
+  cd "$pkgname-$pkgver"
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "$srcdir/$pkgname-$pkgver"
-
+  cd "$pkgname-$pkgver"
   make DESTDIR="$pkgdir" install
 
-  install -Dm644 "$srcdir/license.txt" \
-"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+  install -vDm 644 COPYING \
+-t "$pkgdir/usr/share/licenses/${pkgname}/"
+  install -vDm 644 {ChangeLog,README} \
+-t "$pkgdir/usr/share/doc/${pkgname}/"
 }
 
 # vim:set ts=2 sw=2 et:

Deleted: license.txt
===
--- license.txt 2019-04-29 16:55:02 UTC (rev 456328)
+++ license.txt 2019-04-29 17:59:21 UTC (rev 456329)
@@ -1,77 +0,0 @@
-Licensing
--
-
-The DSSI API itself (dssi.h) is licensed under the GNU Lesser General
-Public License.  See COPYING for details.
-
-The jack-dssi-host is provided under a BSD-style license.  This means
-you can do anything you want with it so long as you retain the
-copyright attribution and license information.  See the source files
-for details.
-
-Licensing for the files in the examples directory may vary: please
-check the individual files for details.  Most of them are in the
-public domain, which means you can use them for anything you want.
-
-
-
-/* jack-dssi-host.c
- *
- * DSSI Soft Synth Interface
- *
- * This is a host for DSSI plugins.  It listens for MIDI events on an
- * ALSA sequencer port, delivers them to DSSI synths and outputs the
- * result via JACK.
- *
- * This program expects the names of up to 16 DSSI synth plugins, in
- * the form ':',* to be provided on the command line.
- * If just '' is provided, the first plugin in the DLL is
- * is used.  MIDI channels are assigned to each plugin instance, in
- * order, beginning with channel 0 (zero-based).  A plugin may be
- * easily instantiated multiple times by preceding its name and label
- * with a dash followed immediately by the desired number of instances,
- * e.g. '-3 my_plugins.so:zoomy' would create three instances of the
- * 'zoomy' plugin.
- */
-
-/*
- * Copyright 2004, 2009 Chris Cannam, Steve Harris and Sean Bolton.
- * 
- * Permission to use, copy, modify, distribute, and sell this software
- * for any purpose is hereby granted without fee, provided that the
- * above copyright notice and this permission notice are included in
- * all copies or substantial portions of the software.
- */
-
-
-/*
- *  This program is in the public domain
- *
- *  $Id: dssi_osc_send.c,v 1.5 2004/07/04 22:24:51 smbolton Exp $
- */
-
-/*
- *  This program is in the public domain
- *
- *  $Id: dssi_osc_update.c,v 1.6 2005/10/12 17:08:26 smbolton Exp $
- */
-
-/* less_trivial_synth.c
-
-   DSSI Soft Synth Interface
-   Constructed by Chris Cannam, Steve Harris and Sean Bolton
-
-   This is an example DSSI synth plugin written by Steve Harris.
-
-   This example file is in the public domain.
-*/
-
-/* trivial_sampler.c
-
-   DSSI Soft Synth Interface
-   Constructed by Chris Cannam, Steve Harris and Sean Bolton
-
-   A straightforward DSSI plugin sampler.
-
-   This example file is in the public domain.
-*/


[arch-commits] Commit in dssi/trunk (PKGBUILD)

2018-02-06 Thread Antonio Rojas via arch-commits
Date: Tuesday, February 6, 2018 @ 17:04:20
  Author: arojas
Revision: 316060

Rebuild for missing .BUILDINFO

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-06 17:02:54 UTC (rev 316059)
+++ PKGBUILD2018-02-06 17:04:20 UTC (rev 316060)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=8
+pkgrel=9
 pkgdesc="An API for audio processing plugins & softsynths with UIs"
 arch=('x86_64')
 url="http://dssi.sourceforge.net/;


[arch-commits] Commit in dssi/trunk (PKGBUILD)

2015-12-06 Thread Bartłomiej Piotrowski
Date: Sunday, December 6, 2015 @ 18:10:17
  Author: bpiotrowski
Revision: 252872

C++11 ABI rebuild

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-06 17:09:33 UTC (rev 252871)
+++ PKGBUILD2015-12-06 17:10:17 UTC (rev 252872)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=7
+pkgrel=8
 pkgdesc="An API for audio processing plugins & softsynths with UIs"
 arch=('i686' 'x86_64')
 url="http://dssi.sourceforge.net/;


[arch-commits] Commit in dssi/trunk (PKGBUILD)

2014-02-03 Thread Ray Rashif
Date: Monday, February 3, 2014 @ 17:48:22
  Author: schiv
Revision: 205038

upgpkg: dssi 1.1.1-6

liblo rebuild

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-03 16:37:24 UTC (rev 205037)
+++ PKGBUILD2014-02-03 16:48:22 UTC (rev 205038)
@@ -5,12 +5,12 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=5
+pkgrel=6
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;
 license=('LGPL' 'BSD' 'custom')
-depends=('liblo=1:0.26' 'liblo1:0.27' 'jack')
+depends=('liblo=0.28' 'liblo1:0.27' 'jack')
 makedepends=('ladspa' 'qt4')
 optdepends=('qt4: example plugins')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2014-02-03 Thread Ray Rashif
Date: Monday, February 3, 2014 @ 18:08:59
  Author: schiv
Revision: 205040

upgpkg: dssi 1.1.1-7

remove previous liblo versioning

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-02-03 16:48:36 UTC (rev 205039)
+++ PKGBUILD2014-02-03 17:08:59 UTC (rev 205040)
@@ -5,12 +5,12 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=6
+pkgrel=7
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;
 license=('LGPL' 'BSD' 'custom')
-depends=('liblo=0.28' 'liblo1:0.27' 'jack')
+depends=('liblo=0.28' 'jack')
 makedepends=('ladspa' 'qt4')
 optdepends=('qt4: example plugins')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2013-10-26 Thread Ray Rashif
Date: Saturday, October 26, 2013 @ 16:07:38
  Author: schiv
Revision: 197523

upgpkg: dssi 1.1.1-5

rebuild against liblo downgrade

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-26 14:06:10 UTC (rev 197522)
+++ PKGBUILD2013-10-26 14:07:38 UTC (rev 197523)
@@ -5,15 +5,14 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=4
+pkgrel=5
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;
 license=('LGPL' 'BSD' 'custom')
-depends=('liblo' 'jack')
+depends=('liblo=1:0.26' 'liblo1:0.27' 'jack')
 makedepends=('ladspa' 'qt4')
 optdepends=('qt4: example plugins')
-options=('!libtool')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
 'license.txt')
 md5sums=('619ab73c883b02dc37ddb37001591f8b'



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2013-10-10 Thread Ray Rashif
Date: Thursday, October 10, 2013 @ 15:13:34
  Author: schiv
Revision: 196278

upgpkg: dssi 1.1.1-4

rebuild for new liblo

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-10-10 13:11:17 UTC (rev 196277)
+++ PKGBUILD2013-10-10 13:13:34 UTC (rev 196278)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=3
+pkgrel=4
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;
@@ -20,7 +20,6 @@
  '258ca4d0ca28c5c4d4675147621fac18')
 
 build() {
-  . /etc/profile.d/qt4.sh
   cd $srcdir/$pkgname-$pkgver
 
   ./configure --prefix=/usr



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2013-02-25 Thread Andrea Scarpino
Date: Tuesday, February 26, 2013 @ 07:48:51
  Author: andrea
Revision: 178671

upgpkg: dssi 1.1.1-3

qt4 rebuild

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-26 06:45:58 UTC (rev 178670)
+++ PKGBUILD2013-02-26 06:48:51 UTC (rev 178671)
@@ -5,14 +5,14 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=2
+pkgrel=3
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;
 license=('LGPL' 'BSD' 'custom')
 depends=('liblo' 'jack')
-makedepends=('ladspa' 'qt')
-optdepends=('qt: example plugins')
+makedepends=('ladspa' 'qt4')
+optdepends=('qt4: example plugins')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz;
 'license.txt')
@@ -20,6 +20,7 @@
  '258ca4d0ca28c5c4d4675147621fac18')
 
 build() {
+  . /etc/profile.d/qt4.sh
   cd $srcdir/$pkgname-$pkgver
 
   ./configure --prefix=/usr



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2012-02-25 Thread Pierre Schmitz
Date: Saturday, February 25, 2012 @ 03:01:30
  Author: pierre
Revision: 151209

upgpkg: dssi 1.1.1-2

rebuild old package

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2012-02-25 07:43:33 UTC (rev 151208)
+++ PKGBUILD2012-02-25 08:01:30 UTC (rev 151209)
@@ -5,7 +5,7 @@
 
 pkgname=dssi
 pkgver=1.1.1
-pkgrel=1
+pkgrel=2
 pkgdesc=An API for audio processing plugins  softsynths with UIs
 arch=('i686' 'x86_64')
 url=http://dssi.sourceforge.net/;



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2010-09-20 Thread Ray Rashif
Date: Tuesday, September 21, 2010 @ 01:56:54
  Author: schiv
Revision: 91030

upgpkg: dssi 1.0.0 - 1.1.0

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |   44 +++-
 1 file changed, 27 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2010-09-21 05:17:21 UTC (rev 91029)
+++ PKGBUILD2010-09-21 05:56:54 UTC (rev 91030)
@@ -1,28 +1,38 @@
 # $Id$
+# Maintainer: Ray Rashif sc...@archlinux.org
 # Contributor: damir da...@archlinux.org
 # Contributor: Pajaro
 
 pkgname=dssi
-pkgver=1.0.0
-pkgrel=3
-pkgdesc=An API for audio plugins, with particular application for software 
synthesis plugins with native user interfaces.
-arch=(i686 x86_64)
+pkgver=1.1.0
+pkgrel=1
+pkgdesc=API for audio processing plugins/softsynths with user interfaces
+arch=(i686 x86_64)
 url=http://dssi.sourceforge.net/;
-license=('LGPL' 'BSD' 'custom')
-depends=('gcc-libs' 'liblo=0.26' 'jack-audio-connection-kit' 'libsamplerate' 
'libx11')
-makedepends=('ladspa' 'pkgconfig' 'qt3')
-optdepends=('qt3: for some example plugins')
+license=('LGPL' 'BSD')
+depends=('liblo' 'jack')
+makedepends=('ladspa' 'qt')
+optdepends=('qt: example plugins')
 options=('!libtool')
 source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
-   'LICENSE')
-md5sums=('bc4c50f9f9b3cd13019718266f8f15af'
-   '258ca4d0ca28c5c4d4675147621fac18')
+LICENSE)
+md5sums=('dfc850e66fae94e7ec08aebb43d07848'
+ '258ca4d0ca28c5c4d4675147621fac18')
 
 build() {
-  cd $srcdir/$pkgname-$pkgver
-  . /etc/profile.d/qt3.sh
-  ./configure --prefix=/usr || return 1
-  make || return 1
-  make DESTDIR=$pkgdir install || return 1
-  install -D -m644 $srcdir/LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+  cd $srcdir/$pkgname-$pkgver
+
+  ./configure --prefix=/usr
+  make
 }
+
+package() {
+  cd $srcdir/$pkgname-$pkgver
+
+  make DESTDIR=$pkgdir/ install
+
+  install -Dm644 $srcdir/LICENSE \
+$pkgdir/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:



[arch-commits] Commit in dssi/trunk (PKGBUILD)

2009-11-16 Thread Andrea Scarpino
Date: Monday, November 16, 2009 @ 19:05:40
  Author: andrea
Revision: 58898

upgpkg: dssi 1.0.0-3
rebuilt with liblo 0.26

Modified:
  dssi/trunk/PKGBUILD

--+
 PKGBUILD |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2009-11-16 23:03:02 UTC (rev 58897)
+++ PKGBUILD2009-11-17 00:05:40 UTC (rev 58898)
@@ -1,20 +1,22 @@
 # $Id$
-# Maintainer: damir da...@archlinux.org
+# Contributor: damir da...@archlinux.org
 # Contributor: Pajaro
 
 pkgname=dssi
 pkgver=1.0.0
-pkgrel=2
-pkgdesc=DSSI is an API for audio plugins, with particular application for 
software synthesis plugins with native user interfaces.
+pkgrel=3
+pkgdesc=An API for audio plugins, with particular application for software 
synthesis plugins with native user interfaces.
 arch=(i686 x86_64)
 url=http://dssi.sourceforge.net/;
 license=('LGPL' 'BSD' 'custom')
-depends=('liblo=0.22' 'jack-audio-connection-kit' 'libsamplerate')
+depends=('gcc-libs' 'liblo=0.26' 'jack-audio-connection-kit' 'libsamplerate' 
'libx11')
 makedepends=('ladspa' 'pkgconfig' 'qt3')
 optdepends=('qt3: for some example plugins')
 options=('!libtool')
-source=(http://downloads.sourceforge.net/sourceforge/dssi/$pkgname-$pkgver.tar.gz
 LICENSE)
-md5sums=('bc4c50f9f9b3cd13019718266f8f15af' '258ca4d0ca28c5c4d4675147621fac18')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+   'LICENSE')
+md5sums=('bc4c50f9f9b3cd13019718266f8f15af'
+   '258ca4d0ca28c5c4d4675147621fac18')
 
 build() {
   cd $srcdir/$pkgname-$pkgver