Re: [arch-general] Ardour 5.11

2017-09-19 Thread David Runge
Hey Rob,

On 2017-09-13 20:40:14 (+0200), Rob Til Freedmen via arch-general wrote:
> liblo is out of date - try liblo-0.29
indeed it is, but that's not the issue. I'm already on a -git version
for development reasons (and switched back and forth for testing). Seems
to be an issue with my specific ardour session in that case.
Sent an updated PKGBUILD for liblo to Ray Rashif, so it might hit
testing soon.

Also: Ardour 5.12 is out now and I hope it will get bumped up, too.

-- 
https://sleepmap.de


signature.asc
Description: PGP signature


Re: [arch-general] Ardour 5.11

2017-09-13 Thread Rob Til Freedmen via arch-general
On Tue, Sep 12, 2017 at 10:13 AM, David Runge  wrote:
> However, I am still experiencing segfaults using OSC with a special audio 
> session

liblo is out of date - try liblo-0.29


Re: [arch-general] Ardour 5.11

2017-09-12 Thread David Runge
On September 12, 2017 3:59:58 AM GMT+02:00, Eli Schwartz 
 wrote:
>On 09/11/2017 06:11 AM, David Runge wrote:
>> Hey Ray (and all interested),
>> 
>> thought I'd share an updated PKGBUILD for Ardour.
>> Please update to the latest version!
>> 5.9 is unusable, when working with OSC to control it (segfaults).
>> 
>> I know there is some AUR package, but ardour 5.11 is a stable release
>> and should therefore be in the main repos.
>
>"An updated PKGBUILD" makes it sound like you did something significant
>there.
>
>Why not just say "I thought I'd just mention, `asp checkout ardour` and
>bumping the pkgver is enough to build the latest version, and I've been
>testing it and it works fine for me"?
>
>It is far less confusing when people actually understand at a glance
>what you're actually saying.
>I hereby request of you to be less confusing. ;)

Granted ;-)

So: works fine for me under most conditions. Updating is easy.

However, I am still experiencing segfaults using OSC with a special audio 
session of mine, but that seems to be a different issue from the one I 
mentioned in my first mail.
New sessions don't seem to suffer from it.



-- 
https://sleepmap.de


Re: [arch-general] Ardour 5.11

2017-09-11 Thread Eli Schwartz
On 09/11/2017 06:11 AM, David Runge wrote:
> Hey Ray (and all interested),
> 
> thought I'd share an updated PKGBUILD for Ardour.
> Please update to the latest version!
> 5.9 is unusable, when working with OSC to control it (segfaults).
> 
> I know there is some AUR package, but ardour 5.11 is a stable release
> and should therefore be in the main repos.

"An updated PKGBUILD" makes it sound like you did something significant
there.

Why not just say "I thought I'd just mention, `asp checkout ardour` and
bumping the pkgver is enough to build the latest version, and I've been
testing it and it works fine for me"?

It is far less confusing when people actually understand at a glance
what you're actually saying.
I hereby request of you to be less confusing. ;)

-- 
Eli Schwartz



signature.asc
Description: OpenPGP digital signature


Re: [arch-general] Ardour 5.11

2017-09-11 Thread David Runge
On September 11, 2017 8:10:04 PM GMT+02:00, Ralf Mardorf 
 wrote:
>There's not only the AUR package, asp is your friend, too.
>
>cd /tmp/
>asp checkout ardour
>cd ardour/trunk/
>
>edit the PKGBUILD's pkgver to 5.11 , don't worry about the checksum,
>it's already skipped
>
>makepkg -s
>
>I build 5.11 a month ago, but didn't use it. However, much likely you
>don't need to edit more than the pkgver.

That's what I did :-)
Would just like to push it to the main repos again, and if Ray gets some info 
on "everything's working fine so far", maybe things will be faster.

 Best,
Dave

Hey Ralf,
-- 
https://sleepmap.de


Re: [arch-general] Ardour 5.11

2017-09-11 Thread Ralf Mardorf
There's not only the AUR package, asp is your friend, too.

cd /tmp/
asp checkout ardour
cd ardour/trunk/

edit the PKGBUILD's pkgver to 5.11 , don't worry about the checksum,
it's already skipped

makepkg -s

I build 5.11 a month ago, but didn't use it. However, much likely you
don't need to edit more than the pkgver.


[arch-general] Ardour 5.11

2017-09-11 Thread David Runge
Hey Ray (and all interested),

thought I'd share an updated PKGBUILD for Ardour.
Please update to the latest version!
5.9 is unusable, when working with OSC to control it (segfaults).

I know there is some AUR package, but ardour 5.11 is a stable release
and should therefore be in the main repos.

Best,
David


-- 
https://sleepmap.de
# $Id$
# Maintainer: Ray Rashif 
# Contributor: SpepS 
# Contributor: see .contrib

pkgname=ardour
pkgver=5.11
pkgrel=1
pkgdesc="Professional-grade digital audio workstation"
arch=('i686' 'x86_64')
url="http://ardour.org/;
license=('GPL')
depends=('liblrdf' 'liblo' 'lilv' 'suil' 'taglib'
 'aubio' 'rubberband' 'gtkmm')
makedepends=('git' 'python2' 'boost' 'cppunit' 'doxygen' 'graphviz')
optdepends=('xjadeo: video monitoring'
'harvid: video timeline')
source=("$pkgname-$pkgver::git+https://github.com/${pkgname^}/$pkgname.git#tag=$pkgver;
"$pkgname.desktop")
md5sums=('SKIP'
 'dc653c227bc34aa6c729a4c2149308a7')

prepare() {
  cd "$srcdir/$pkgname-$pkgver"

  # python2 fix
  sed -i 's/python ${SRC}/python2 ${SRC}/' libs/pbd/wscript
}

build() {
  cd "$srcdir/$pkgname-$pkgver"

  python2 waf configure --prefix=/usr \
--configdir=/etc \
--with-backends="jack,alsa" \
--libjack=weak \
--optimize \
--docs \
--cxx11 \
--no-phone-home

  python2 waf build $MAKEFLAGS
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  python2 waf install --destdir="$pkgdir"

  # install some freedesktop.org compatibility
  install -Dm644 "$srcdir/$pkgname.desktop" \
"$pkgdir/usr/share/applications/$pkgname.desktop"
}

# vim:set ts=2 sw=2 et:


signature.asc
Description: PGP signature