From fd15c95b8e764eac48c00ab65ecb15cf9e582331 Mon Sep 17 00:00:00 2001 From: Nicolás Reynolds Date: Sun, 26 Jan 2014 03:41:45 +0000 Subject: Sun Jan 26 03:36:37 UTC 2014 --- extra/aubio/PKGBUILD | 47 +++++++----- extra/aubio/aubio-linking.patch | 33 -------- extra/clutter/PKGBUILD | 6 +- extra/glamor-egl/PKGBUILD | 16 ++-- extra/gnutls/PKGBUILD | 6 +- extra/jack/PKGBUILD | 23 ++---- extra/jack/ffado_setbuffsize-jack1.patch | 124 ------------------------------- extra/libpng/PKGBUILD | 10 +-- extra/lilv/PKGBUILD | 18 ++--- extra/lv2/PKGBUILD | 23 +++--- extra/msmtp/PKGBUILD | 4 +- extra/pkgfile/PKGBUILD | 9 +-- extra/sratom/PKGBUILD | 4 +- extra/suil/PKGBUILD | 6 +- extra/xf86-video-ati/PKGBUILD | 12 +-- 15 files changed, 90 insertions(+), 251 deletions(-) delete mode 100644 extra/aubio/aubio-linking.patch delete mode 100644 extra/jack/ffado_setbuffsize-jack1.patch (limited to 'extra') diff --git a/extra/aubio/PKGBUILD b/extra/aubio/PKGBUILD index d019dc25e..69a66510a 100644 --- a/extra/aubio/PKGBUILD +++ b/extra/aubio/PKGBUILD @@ -1,31 +1,40 @@ -# $Id: PKGBUILD 199836 2013-11-17 08:28:12Z allan $ -# Maintainer: Tobias Kieslich tobias [funnychar] archlinux org -# Contributor: Peter Baldwin -# Contributor: Shinlun Hsieh +# $Id: PKGBUILD 204700 2014-01-25 13:01:02Z schiv $ +# Maintainer: Ray Rashif +# Contributor: Tobias Kieslich tobias [funnychar] archlinux org +# Contributor: see .contrib pkgname=aubio -pkgver=0.3.2 -pkgrel=6 -pkgdesc="A library for audio labelling" +pkgver=0.4.0 +pkgrel=1 +pkgdesc="A tool for extracting annotations from audio signals" arch=('i686' 'x86_64') url="http://aubio.org/" license=('GPL') -depends=('libsamplerate' 'fftw' 'jack') -source=("http://aubio.org/pub/${pkgname}-${pkgver}.tar.gz" - aubio-linking.patch) -md5sums=('ffc3e5e4880fec67064f043252263a44' - '674259ce137ca28ef24bd62482829cd5') +depends=('fftw' 'jack' 'ffmpeg') +makedepends=('python2-numpy') +optdepends=('python2-numpy: Python 2.x interface') +source=("http://aubio.org/pub/$pkgname-$pkgver.tar.bz2") +md5sums=('8de88baab79f7eec8e1c7f321c4026af') build() { - cd "${srcdir}/${pkgname}-${pkgver}" + cd "$srcdir/$pkgname-$pkgver" - patch -p1 -i $srcdir/aubio-linking.patch - - ./configure --prefix=/usr - make + python2 waf configure --prefix=/usr --enable-fftw3f + python2 waf build $MAKEFLAGS + cd python; python2 setup.py build # python interface } package() { - cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install + cd "$srcdir/$pkgname-$pkgver" + + python2 waf --destdir="$pkgdir" install + + # python interface + cd python + + python2 setup.py install --root="$pkgdir" --optimize=1 + + # python2 compat + sed -i 's:bin/env python:bin/env python2:' \ + "$pkgdir/usr/lib/python2.7/site-packages/aubio/__init__.py" } diff --git a/extra/aubio/aubio-linking.patch b/extra/aubio/aubio-linking.patch deleted file mode 100644 index ea68335a4..000000000 --- a/extra/aubio/aubio-linking.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff -rupN aubio-0.3.2.old/examples/Makefile.am aubio-0.3.2/examples/Makefile.am ---- aubio-0.3.2.old/examples/Makefile.am 2006-09-12 18:31:40.000000000 -0400 -+++ aubio-0.3.2/examples/Makefile.am 2010-02-10 04:06:51.000000000 -0500 -@@ -23,7 +23,7 @@ aubionotes_SOURCES = aubionotes.c utils. - aubiotrack_SOURCES = aubiotrack.c utils.c - aubioquiet_SOURCES = aubioquiet.c utils.c - --aubioonset_LDADD = @JACK_LIBS@ --aubionotes_LDADD = @JACK_LIBS@ --aubiotrack_LDADD = @JACK_LIBS@ --aubioquiet_LDADD = @JACK_LIBS@ -+aubioonset_LDADD = @JACK_LIBS@ -lm -+aubionotes_LDADD = @JACK_LIBS@ -lm -+aubiotrack_LDADD = @JACK_LIBS@ -lm -+aubioquiet_LDADD = @JACK_LIBS@ -lm -diff -rupN aubio-0.3.2.old/examples/Makefile.in aubio-0.3.2/examples/Makefile.in ---- aubio-0.3.2.old/examples/Makefile.in 2006-10-08 19:22:10.000000000 -0400 -+++ aubio-0.3.2/examples/Makefile.in 2010-02-10 04:07:00.000000000 -0500 -@@ -247,10 +247,10 @@ aubioonset_SOURCES = aubioonset.c utils. - aubionotes_SOURCES = aubionotes.c utils.c - aubiotrack_SOURCES = aubiotrack.c utils.c - aubioquiet_SOURCES = aubioquiet.c utils.c --aubioonset_LDADD = @JACK_LIBS@ --aubionotes_LDADD = @JACK_LIBS@ --aubiotrack_LDADD = @JACK_LIBS@ --aubioquiet_LDADD = @JACK_LIBS@ -+aubioonset_LDADD = @JACK_LIBS@ -lm -+aubionotes_LDADD = @JACK_LIBS@ -lm -+aubiotrack_LDADD = @JACK_LIBS@ -lm -+aubioquiet_LDADD = @JACK_LIBS@ -lm - all: all-recursive - - .SUFFIXES: diff --git a/extra/clutter/PKGBUILD b/extra/clutter/PKGBUILD index 0b626b8a9..7642bc7a2 100644 --- a/extra/clutter/PKGBUILD +++ b/extra/clutter/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 199922 2013-11-19 00:45:36Z heftig $ +# $Id: PKGBUILD 204685 2014-01-24 23:21:57Z heftig $ # Maintainer: Jan de Groot # Contributor: Sergej Pupykin # Contributor: William Rea pkgname=clutter -pkgver=1.16.2 +pkgver=1.16.4 pkgrel=1 pkgdesc="A GObject based library for creating fast, visually rich graphical user interfaces" arch=('i686' 'x86_64') @@ -13,7 +13,7 @@ license=('LGPL') depends=('cogl' 'mesa' 'json-glib' 'atk' 'libxi' 'libxkbcommon' 'libevdev') makedepends=('gobject-introspection') source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('0cb7e88c80f43fc7fb869fc6d34c42e98aa1a0ef7aa02e6aeef1b099ad33df42') +sha256sums=('cf50836ec5503577b73f75f984577610881b3e2ff7a327bb5b6918b431b51b65') build() { cd "$pkgname-$pkgver" diff --git a/extra/glamor-egl/PKGBUILD b/extra/glamor-egl/PKGBUILD index 758abfe21..417fecc3a 100644 --- a/extra/glamor-egl/PKGBUILD +++ b/extra/glamor-egl/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: Eugeni Dodonov pkgname=glamor-egl -pkgver=0.5.1.r258 +pkgver=0.6.0 pkgrel=1 pkgdesc='OpenGL based 2D rendering acceleration library' arch=('i686' 'x86_64') @@ -12,17 +12,17 @@ license=('custom') depends=('mesa-libgl') makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15' 'git') conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 'X-ABI-VIDEODRV_VERSION>=16' 'glamor-git') -source=('glamor-egl::git+http://anongit.freedesktop.org/git/xorg/driver/glamor.git#commit=2ac2fc0de978ba7076ba7c5e3c34caec05939dde') -sha256sums=(SKIP) -#source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -#sha256sums=('f42805b68e2bddc90cb5d9d3811e4f2176659c5686f295865839b20b7be7f359') +#source=('glamor-egl::git+http://anongit.freedesktop.org/git/xorg/driver/glamor.git#commit=2b4a324b03c3ee34de1c122a6db4e6ce7146a3e0') +#sha256sums=(SKIP) +source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('66531b56e6054eb53daa7bd57eb6358a7ead1b84f63419606e69d1092365e5c9') # revision: git rev-list --count master build() { - cd glamor-egl + cd "$pkgname-$pkgver" - ./autogen.sh --prefix=/usr \ + ./configure --prefix=/usr \ --disable-static \ --enable-glx-tls \ --enable-xv \ @@ -34,7 +34,7 @@ build() { } package() { - cd glamor-egl + cd "$pkgname-$pkgver" make "DESTDIR=${pkgdir}" install diff --git a/extra/gnutls/PKGBUILD b/extra/gnutls/PKGBUILD index b9a8ad894..8efdd16eb 100644 --- a/extra/gnutls/PKGBUILD +++ b/extra/gnutls/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 202253 2013-12-20 22:16:14Z andyrtr $ +# $Id: PKGBUILD 204692 2014-01-25 10:02:55Z andyrtr $ # Maintainer: Jan de Groot # Maintainer: Andreas Radke pkgname=gnutls -pkgver=3.2.8 +pkgver=3.2.9 pkgrel=1 pkgdesc="A library which provides a secure layer over a reliable transport layer" arch=('i686' 'x86_64') @@ -14,7 +14,7 @@ options=('!zipman') depends=('gcc-libs' 'libtasn1' 'readline' 'zlib' 'nettle' 'p11-kit') makedepends=('valgrind' 'strace' 'datefudge') source=(ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/${pkgname}-${pkgver}.tar.xz{,.sig}) -md5sums=('a961705dbe0cbbc7220b6c2d2d9e0028' +md5sums=('9ae2bfa55d4c12dd6005cfb7014977f9' 'SKIP') build() { diff --git a/extra/jack/PKGBUILD b/extra/jack/PKGBUILD index e000eb6e2..230cd1315 100644 --- a/extra/jack/PKGBUILD +++ b/extra/jack/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 198116 2013-10-30 12:53:12Z allan $ +# $Id: PKGBUILD 204709 2014-01-25 13:36:18Z schiv $ # Maintainer: Ray Rashif # Contributor: tobias # Contributor: Robert Emil Berge pkgname=jack _longname=jack-audio-connection-kit -pkgver=0.121.3 -pkgrel=7 +pkgver=0.124.1 +pkgrel=1 pkgdesc="A low-latency audio server" arch=('i686' 'x86_64') license=('GPL' 'LGPL') @@ -22,21 +22,14 @@ replaces=("$_longname") install=$pkgname.install source=("http://jackaudio.org/downloads/$_longname-$pkgver.tar.gz" '99-audio.conf' - '40-hpet-permissions.rules' - 'ffado_setbuffsize-jack1.patch') -md5sums=('35f470f7422c37b33eb965033f7a42e8' + '40-hpet-permissions.rules') +md5sums=('d64e90121be8a54860b870a726fb5b5d' 'ae65b7c9ebe0fff6c918ba9d97ae342d' - '471aad533ff56c5d3cbbf65ce32cadef' - 'c1f78ee7847c6d5e471d90626623ffb4') + '471aad533ff56c5d3cbbf65ce32cadef') build() { cd "$srcdir/$_longname-$pkgver" - # backport firewire stuff - # - needed for setbuffsize feature in latest stable ffado - # from https://github.com/jackaudio/jack1/commit/025d3ad - patch -Np1 -i "$srcdir/ffado_setbuffsize-jack1.patch" - ./configure --prefix=/usr \ --libdir=/usr/lib make @@ -57,8 +50,8 @@ package() { # install a missing header forgotten by upstream # see https://bugs.archlinux.org/task/26865 - install -Dm644 "$srcdir/$_longname-$pkgver/jack/jslist.h" \ - "$pkgdir/usr/include/jack/jslist.h" + #install -Dm644 "$srcdir/$_longname-$pkgver/jack/jslist.h" \ + # "$pkgdir/usr/include/jack/jslist.h" } # vim:set ts=2 sw=2 et: diff --git a/extra/jack/ffado_setbuffsize-jack1.patch b/extra/jack/ffado_setbuffsize-jack1.patch deleted file mode 100644 index 7e43962ee..000000000 --- a/extra/jack/ffado_setbuffsize-jack1.patch +++ /dev/null @@ -1,124 +0,0 @@ -From 025d3ad4d5adeff00e97b6fafdf32d6d199d0baa Mon Sep 17 00:00:00 2001 -From: Jonathan Woithe -Date: Tue, 13 Mar 2012 15:43:03 +1030 -Subject: [PATCH] Support setbufsize in firewire driver - ---- - drivers/firewire/ffado_driver.c | 69 ++++++++++++++++++++++++++++++++++----- - 1 file changed, 60 insertions(+), 9 deletions(-) - -diff --git a/drivers/firewire/ffado_driver.c b/drivers/firewire/ffado_driver.c -index a8ad1ea..6035af3 100644 ---- a/drivers/firewire/ffado_driver.c -+++ b/drivers/firewire/ffado_driver.c -@@ -7,6 +7,7 @@ - * http://www.jackaudio.org - * - * Copyright (C) 2005-2007 Pieter Palmers -+ * Copyright (C) 2012 Jonathan Woithe - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by -@@ -50,7 +51,10 @@ - - static int ffado_driver_stop (ffado_driver_t *driver); - -+// Basic functionality requires API version 8. If version 9 or later -+// is present the buffers can be resized at runtime. - #define FIREWIRE_REQUIRED_FFADO_API_VERSION 8 -+#define FIREWIRE_REQUIRED_FFADO_API_VERSION_FOR_SETBUFSIZE 9 - - // enable verbose messages - static int g_verbose=0; -@@ -675,24 +679,71 @@ - static int - ffado_driver_bufsize (ffado_driver_t* driver, jack_nframes_t nframes) - { -- printError("Buffer size change requested but not supported!!!"); -+ signed int chn; -+ -+ // The speed of this function isn't critical; we can afford the -+ // time to check the FFADO API version. -+ if (ffado_get_api_version() < FIREWIRE_REQUIRED_FFADO_API_VERSION_FOR_SETBUFSIZE || -+ ffado_streaming_set_period_size == NULL) { -+ printError("unsupported on current version of FFADO; please upgrade FFADO"); -+ return -1; -+ } - -- /* -- driver->period_size = nframes; -+ driver->period_size = nframes; - driver->period_usecs = - (jack_time_t) floor ((((float) nframes) / driver->sample_rate) - * 1000000.0f); -- */ -- -+ -+ // Reallocate the null and scratch buffers. -+ driver->nullbuffer = calloc(driver->period_size, sizeof(ffado_sample_t)); -+ if(driver->nullbuffer == NULL) { -+ printError("could not allocate memory for null buffer"); -+ return -1; -+ } -+ driver->scratchbuffer = calloc(driver->period_size, sizeof(ffado_sample_t)); -+ if(driver->scratchbuffer == NULL) { -+ printError("could not allocate memory for scratch buffer"); -+ return -1; -+ } -+ -+ // MIDI buffers need reallocating -+ for (chn = 0; chn < driver->capture_nchannels; chn++) { -+ if(driver->capture_channels[chn].stream_type == ffado_stream_type_midi) { -+ // setup the midi buffer -+ if (driver->capture_channels[chn].midi_buffer != NULL) -+ free(driver->capture_channels[chn].midi_buffer); -+ driver->capture_channels[chn].midi_buffer = calloc(driver->period_size, sizeof(uint32_t)); -+ } -+ } -+ for (chn = 0; chn < driver->playback_nchannels; chn++) { -+ if(driver->playback_channels[chn].stream_type == ffado_stream_type_midi) { -+ if (driver->playback_channels[chn].midi_buffer != NULL) -+ free(driver->playback_channels[chn].midi_buffer); -+ driver->playback_channels[chn].midi_buffer = calloc(driver->period_size, sizeof(uint32_t)); -+ } -+ } -+ -+ // Notify FFADO of the period size change -+ if (ffado_streaming_set_period_size(driver->dev, nframes) != 0) { -+ printError("could not alter FFADO device period size"); -+ return -1; -+ } -+ -+ // This is needed to give the shadow variables a chance to -+ // properly update to the changes. -+ sleep(1); -+ - /* tell the engine to change its buffer size */ --#if 0 - if (driver->engine->set_buffer_size (driver->engine, nframes)) { - jack_error ("FFADO: cannot set engine buffer size to %d (check MIDI)", nframes); - return -1; - } --#endif - -- return -1; // unsupported -+ // Other drivers (eg: ALSA) don't seem to adjust latencies via -+ // jack_port_set_latency_range() from the bufsize() callback, so we -+ // won't either. Is this right? -+ -+ return 0; - } - - typedef void (*JackDriverFinishFunction) (jack_driver_t *); -@@ -704,7 +755,7 @@ - { - ffado_driver_t *driver; - -- if(ffado_get_api_version() != FIREWIRE_REQUIRED_FFADO_API_VERSION) { -+ if(ffado_get_api_version() < FIREWIRE_REQUIRED_FFADO_API_VERSION) { - printError("Incompatible libffado version! (%s)", ffado_get_version()); - return NULL; - } --- -1.7.10 - diff --git a/extra/libpng/PKGBUILD b/extra/libpng/PKGBUILD index 6c6676dd3..dba30a40b 100644 --- a/extra/libpng/PKGBUILD +++ b/extra/libpng/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 200277 2013-11-24 16:59:45Z bpiotrowski $ +# $Id: PKGBUILD 204723 2014-01-25 21:53:14Z bluewind $ # Maintainer: Jan de Groot # Contributor: dorphell # Contributor: Travis Willard # Contributor: Douglas Soares de Andrade pkgname=libpng -pkgver=1.6.7 -_apngver=1.6.7 +pkgver=1.6.8 +_apngver=1.6.8 pkgrel=1 pkgdesc="A collection of routines used to create PNG format graphics files" arch=('i686' 'x86_64') @@ -15,9 +15,9 @@ license=('custom') depends=('zlib' 'sh') source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.xz{,.asc} http://downloads.sourceforge.net/sourceforge/libpng-apng/libpng-$_apngver-apng.patch.gz) -md5sums=('7023a9eacd7b6a3eb95761a2f574d456' +md5sums=('51ce71a1642cdde1f4485a7ff82193c0' 'SKIP' - 'aad92ea0cc3e29415b90c78f1d267799') + '6ddeea37e1945d809959a152d4258987') prepare() { cd $pkgname-$pkgver diff --git a/extra/lilv/PKGBUILD b/extra/lilv/PKGBUILD index 60ac98930..55f55ca29 100644 --- a/extra/lilv/PKGBUILD +++ b/extra/lilv/PKGBUILD @@ -3,27 +3,21 @@ # Contributor: speps pkgname=lilv -pkgver=0.16.0 +pkgver=0.18.0 pkgrel=1 -pkgdesc="A library to make the use of LV2 plugins as simple as possible for applications" +pkgdesc="A C library interface to the LV2 plug-in standard" arch=('i686' 'x86_64') url="http://drobilla.net/software/lilv/" license=('custom:ISC') -depends=('python2' 'sratom>=0.4.2' 'jack') +depends=('python2-numpy' 'sratom>=0.4.4' 'jack') makedepends=('swig') -optdepends=('bash-completion: auto-complete words') -source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2" - 'lilvmm.patch') -md5sums=('12eb71f2b5b8a68e15c1c816896bcb9f' - 'd34207f8ca3586650ad7c50284ffb3e0') +optdepends=('bash-completion') +source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") +md5sums=('1d1232ea73b239551bb4f462b414a819') build() { cd "$srcdir/$pkgname-$pkgver" - # fix UI API error - # backport of http://dev.drobilla.net/changeset/5092 - patch -Np2 -i "$srcdir/lilvmm.patch" - # pick up python2 even when python3 exists # (the build system has flaky support for python3) export PYTHON="/usr/bin/python2" diff --git a/extra/lv2/PKGBUILD b/extra/lv2/PKGBUILD index 2cc972e24..2c88c1bf1 100644 --- a/extra/lv2/PKGBUILD +++ b/extra/lv2/PKGBUILD @@ -1,35 +1,36 @@ -# $Id: PKGBUILD 192433 2013-08-11 16:50:46Z schiv $ +# $Id: PKGBUILD 204702 2014-01-25 13:01:18Z schiv $ # Maintainer: Ray Rashif pkgname=lv2 -pkgver=1.6.0 +pkgver=1.8.0 pkgrel=1 pkgdesc="Successor to the LADSPA audio plug-in standard" url="http://lv2plug.in/" license=('LGPL' 'custom') arch=('i686' 'x86_64') makedepends=('python2' 'libsndfile' 'gtk2') -optdepends=('libsndfile: lv2-eg-sampler' - 'gtk2: lv2-eg-sampler') +optdepends=('libsndfile: Example sampler' + 'gtk2: Example sampler' + 'python2: Scripts') provides=('lv2core') conflicts=('lv2core') replaces=('lv2core') source=("http://lv2plug.in/spec/$pkgname-$pkgver.tar.bz2") -md5sums=('943c3a62ec9b4e62139d83f8dd095fab') +md5sums=('2bdcf01f24fa567448afbf6b8be17044') build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname-$pkgver" - python2 waf configure --prefix=/usr - python2 waf build $MAKEFLAGS + python2 waf configure --prefix=/usr + python2 waf build $MAKEFLAGS } package() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname-$pkgver" - python2 waf install --destdir="$pkgdir" + python2 waf install --destdir="$pkgdir" - install -Dm644 COPYING \ + install -Dm644 COPYING \ "$pkgdir/usr/share/licenses/$pkgname/COPYING" } diff --git a/extra/msmtp/PKGBUILD b/extra/msmtp/PKGBUILD index 095539f20..3f4ed181a 100644 --- a/extra/msmtp/PKGBUILD +++ b/extra/msmtp/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 192440 2013-08-11 23:21:00Z eric $ +# $Id: PKGBUILD 204688 2014-01-25 00:14:19Z eric $ # Maintainer: Eric Bélanger pkgbase=msmtp pkgname=('msmtp' 'msmtp-mta') pkgver=1.4.31 -pkgrel=4 +pkgrel=5 arch=('i686' 'x86_64') license=('GPL3') url="http://msmtp.sourceforge.net" diff --git a/extra/pkgfile/PKGBUILD b/extra/pkgfile/PKGBUILD index a07d5cf7b..bdfeef3cf 100644 --- a/extra/pkgfile/PKGBUILD +++ b/extra/pkgfile/PKGBUILD @@ -1,22 +1,19 @@ -# $Id: PKGBUILD 199801 2013-11-16 17:11:51Z dreisner $ +# $Id: PKGBUILD 204718 2014-01-25 21:17:43Z dreisner $ # Maintainer: Dave Reisner pkgname=pkgfile -pkgver=11 +pkgver=12 pkgrel=1 pkgdesc="a pacman .files metadata explorer" arch=('i686' 'x86_64') url="http://github.com/falconindy/pkgfile" license=('MIT') depends=('libarchive' 'curl' 'pcre' 'pacman') -conflicts=('pkgtools<24-2') source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig}) install=pkgfile.install -md5sums=('55402bf0e7c8ad729601b9f20f8326aa' +md5sums=('3366e5dbf01ebb81197c4fc53c6bb3bf' 'SKIP') -options=(!strip) - build() { cd "$pkgname-$pkgver" diff --git a/extra/sratom/PKGBUILD b/extra/sratom/PKGBUILD index c36012be5..ad84a194d 100644 --- a/extra/sratom/PKGBUILD +++ b/extra/sratom/PKGBUILD @@ -3,7 +3,7 @@ # Contributor: speps pkgname=sratom -pkgver=0.4.2 +pkgver=0.4.4 pkgrel=1 pkgdesc="An LV2 Atom RDF serialisation library" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('custom:ISC') depends=('lv2' 'sord>=0.12.0') makedepends=('python2') source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") -md5sums=('5bb7e4bc4198e19f388ac51239007f25') +md5sums=('07449e40511f5911298ee4c79ad0530a') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/suil/PKGBUILD b/extra/suil/PKGBUILD index 8290fdac8..f27c46375 100644 --- a/extra/suil/PKGBUILD +++ b/extra/suil/PKGBUILD @@ -3,18 +3,18 @@ # Contributor: speps pkgname=suil -pkgver=0.6.16 +pkgver=0.8.0 pkgrel=1 pkgdesc="A lightweight C library for loading and wrapping LV2 plugin UIs" arch=('i686' 'x86_64') url="http://drobilla.net/software/suil/" license=('custom:ISC') -depends=('lv2>=1.6.0') +depends=('lv2>=1.8.0') makedepends=('python2' 'qt4' 'gtk2') optdepends=('qt4: Qt 4.x UI wrapping support' 'gtk2: GTK+ 2.x UI wrapping support') source=("http://download.drobilla.net/$pkgname-$pkgver.tar.bz2") -md5sums=('644ccd95179f32f01cee0107a1ad88c9') +md5sums=('8b6039593b2b8d6838b3b29e36874c1c') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/extra/xf86-video-ati/PKGBUILD b/extra/xf86-video-ati/PKGBUILD index 8b4e77e59..3064db092 100644 --- a/extra/xf86-video-ati/PKGBUILD +++ b/extra/xf86-video-ati/PKGBUILD @@ -1,24 +1,25 @@ -# $Id: PKGBUILD 203613 2014-01-13 17:12:50Z andyrtr $ +# $Id: PKGBUILD 204721 2014-01-25 21:21:43Z lcarlier $ # Maintainer: Jan de Groot # Contributor: Alexander Baldeck pkgname=xf86-video-ati -pkgver=7.2.0 +pkgver=7.3.0 epoch=1 -pkgrel=2 +pkgrel=1 pkgdesc="X.org ati video driver" arch=('i686' 'x86_64') url="http://xorg.freedesktop.org/" license=('custom') -depends=('libdrm>=2.4.41' 'systemd-tools' 'ati-dri' 'glamor-egl') +depends=('libdrm>=2.4.41' 'systemd' 'ati-dri' 'glamor-egl') makedepends=('xorg-server-devel' 'X-ABI-VIDEODRV_VERSION=15') conflicts=('xorg-server<1.15.0' 'X-ABI-VIDEODRV_VERSION<15' 'X-ABI-VIDEODRV_VERSION>=16') groups=('xorg-drivers' 'xorg') source=(${url}/releases/individual/driver/${pkgname}-${pkgver}.tar.bz2) -sha256sums=('f30f5efdc8d7d18d06eda7ef2f91a8b7290f1cfbf6ff26362cd47ab8969daec4') +sha256sums=('107c072c4919a996e04f47afdb53d5946a3ad574f270b8c560ef8b3a032046fe') build() { cd ${pkgname}-${pkgver} + ./configure --prefix=/usr \ --enable-glamor make @@ -26,6 +27,7 @@ build() { package() { cd ${pkgname}-${pkgver} + make "DESTDIR=${pkgdir}" install install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}" install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/" -- cgit v1.2.3-54-g00ecf