diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/cython/PKGBUILD | 8 | ||||
-rw-r--r-- | community/ffms2/PKGBUILD | 19 | ||||
-rw-r--r-- | community/filezilla/PKGBUILD | 6 | ||||
-rw-r--r-- | community/python2-systemd/PKGBUILD | 33 | ||||
-rw-r--r-- | community/qtractor/PKGBUILD | 6 | ||||
-rw-r--r-- | community/spice-gtk3/PKGBUILD | 5 | ||||
-rw-r--r-- | community/uwsgi/PKGBUILD | 8 | ||||
-rw-r--r-- | community/xjadeo/PKGBUILD | 6 |
8 files changed, 62 insertions, 29 deletions
diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD index f01ceccfd..2212745bb 100644 --- a/community/cython/PKGBUILD +++ b/community/cython/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 105228 2014-02-03 09:20:50Z spupykin $ +# $Id: PKGBUILD 105633 2014-02-12 12:40:59Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Igor Scabini <furester @ gmail.com> pkgname=('cython' 'cython2') pkgbase=cython -pkgver=0.20 -pkgrel=2 +pkgver=0.20.1 +pkgrel=1 pkgdesc="C-Extensions for Python " arch=(i686 x86_64) url="http://www.cython.org" license=('APACHE') makedepends=('python-setuptools' 'python2-setuptools') source=("http://cython.org/release/Cython-$pkgver.tar.gz") -md5sums=('6563dad21e2b5e31f9f7262a60dd0550') +md5sums=('52431696c64e618036537c4d9aa79d99') package_cython() { depends=('python' 'python-setuptools') diff --git a/community/ffms2/PKGBUILD b/community/ffms2/PKGBUILD index 74d0e96b1..9223888cc 100644 --- a/community/ffms2/PKGBUILD +++ b/community/ffms2/PKGBUILD @@ -1,22 +1,22 @@ -# $Id: PKGBUILD 99739 2013-10-30 23:25:12Z allan $$ +# $Id: PKGBUILD 105637 2014-02-12 15:41:55Z alucryd $$ # Maintainer: Maxime Gauduin <alucryd@gmail.com> pkgname=ffms2 pkgver=2.19 -pkgrel=1 -pkgdesc="A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access" +pkgrel=2 +pkgdesc='A libav/ffmpeg based source library and Avisynth plugin for easy frame accurate access' arch=('i686' 'x86_64') -url="https://github.com/FFMS/ffms2" -license=('MIT') +url='https://github.com/FFMS/ffms2' +license=('GPL') depends=('ffmpeg') -replaces=('ffmpegsource') +provides=('vapoursynth-plugin-ffms2') source=("https://github.com/FFMS/ffms2/archive/${pkgver}.tar.gz") sha256sums=('6f1379514f03a14092fdfc9941960a9b86f5b78d86f9e000eeddf3bf50d42811') build() { cd ${pkgname}-${pkgver} - ./configure --prefix='/usr' --enable-shared --disable-static + ./configure --prefix='/usr' --enable-shared --disable-static --enable-avresample make } @@ -25,9 +25,8 @@ package() { make DESTDIR="${pkgdir}" install -# License - install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} - install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}COPYING + install -dm 755 "${pkgdir}"/usr/lib/vapoursynth + ln -s ../libffms2.so "${pkgdir}"/usr/lib/vapoursynth/ } # vim: ts=2 sw=2 et: diff --git a/community/filezilla/PKGBUILD b/community/filezilla/PKGBUILD index 9da270edb..6e92ae8d9 100644 --- a/community/filezilla/PKGBUILD +++ b/community/filezilla/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 105534 2014-02-09 21:18:21Z bluewind $ +# $Id: PKGBUILD 105647 2014-02-12 18:26:37Z bluewind $ # Contributor: Alexander Fehr <pizzapunk gmail com> # Maintainer: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=filezilla -pkgver=3.7.4 +pkgver=3.7.4.1 pkgrel=1 pkgdesc="Fast and reliable FTP, FTPS and SFTP client" arch=('i686' 'x86_64') @@ -33,4 +33,4 @@ package() { make DESTDIR="${pkgdir}" install } -md5sums=('8419418f1f473bf153369d7a834e39e7') +md5sums=('e6c24c4ddc0fe5470fe890b5b2f5b49a') diff --git a/community/python2-systemd/PKGBUILD b/community/python2-systemd/PKGBUILD new file mode 100644 index 000000000..e956cec53 --- /dev/null +++ b/community/python2-systemd/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 105641 2014-02-12 17:41:55Z dwallace $ +# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com +pkgname=python2-systemd +_pkgname=systemd +pkgver=208 +pkgrel=1 +pkgdesc="Python2 bindings for systemd" +arch=('x86_64' 'i686') +url="http://www.freedesktop.org/wiki/Software/systemd/" +license=('GPL') +depends=('python2' "systemd=$pkgver") +makedepends=('intltool' 'gperf') +source=("http://www.freedesktop.org/software/$_pkgname/$_pkgname-$pkgver.tar.xz") +md5sums=('df64550d92afbffb4f67a434193ee165') + + +build() { + cd "$_pkgname-$pkgver" + ./configure \ + --libexecdir=/usr/lib \ + --disable-manpages \ + --with-sysvinit-path=/etc/rc.d/init.d \ + --with-rc-local-script-path-start=/etc/rc.d/rc.local \ + PYTHON=python2 + make +} + +package(){ + cd "$_pkgname-$pkgver" + make DESTDIR=$srcdir/root install + install -dm755 $pkgdir/usr/lib/python2.7 + cp -dpr --no-preserve=ownership $srcdir/root/usr/lib/python2.7 $pkgdir/usr/lib/python2.7 +} diff --git a/community/qtractor/PKGBUILD b/community/qtractor/PKGBUILD index 3ef2d1fa2..3d4452d35 100644 --- a/community/qtractor/PKGBUILD +++ b/community/qtractor/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 103286 2014-01-02 13:32:26Z schiv $ +# $Id: PKGBUILD 105622 2014-02-12 07:14:10Z schiv $ # Maintainer: Ray Rashif <schiv@archlinux.org> # Contributor: Philipp Überbacher <hollunder at gmx dot at> pkgname=qtractor pkgver=0.5.12 -pkgrel=1 +pkgrel=2 pkgdesc="Audio/MIDI multitrack sequencer" arch=('i686' 'x86_64') url="http://qtractor.sourceforge.net/" license=('GPL') -depends=('qt4' 'suil' 'lilv' 'libmad' 'liblo' +depends=('qt4' 'suil' 'lilv' 'libmad' 'liblo>=0.28' 'rubberband' 'shared-mime-info') makedepends=('ladspa' 'dssi') [ "$CARCH" = "i686" ] && optdepends=('dssi-vst: win32 VST support') diff --git a/community/spice-gtk3/PKGBUILD b/community/spice-gtk3/PKGBUILD index 019c6cc2e..466e014a1 100644 --- a/community/spice-gtk3/PKGBUILD +++ b/community/spice-gtk3/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 102790 2013-12-20 03:19:02Z bgyorgy $ +# $Id: PKGBUILD 105626 2014-02-12 09:17:31Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Stefano Facchini <stefano.facchini@gmail.com> # Contributor: Jonathan Lestrelin <zanko@daemontux.org> # Contributor: Lucio Zara <pennega@gmail.com> pkgname=spice-gtk3 -pkgver=0.22 +pkgver=0.23 pkgrel=1 pkgdesc="Gtk client and libraries for SPICE remote desktop servers (gtk3 version)" arch=('i686' 'x86_64') @@ -15,6 +15,7 @@ depends=('celt0.5.1' 'dbus-glib' 'gtk3' 'libcacard' 'libpulse' 'usbredir') makedepends=('gobject-introspection' 'intltool' 'python2-pyparsing' 'spice-protocol' 'usbutils' 'vala') source=("http://www.spice-space.org/download/gtk/spice-gtk-$pkgver.tar.bz2") sha256sums=('05e9e5d915a99005a812846f733bba177ef3b1a9de9356690047250fb1b1fa3a') +sha256sums=('bfdfa6cb12c40327b63167fe7191ce94e7f2a272473c87df31790c25d60cc81d') prepare() { cd "$srcdir/spice-gtk-$pkgver" diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD index 399502a8f..39cf1d837 100644 --- a/community/uwsgi/PKGBUILD +++ b/community/uwsgi/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104902 2014-01-28 03:34:34Z td123 $ +# $Id: PKGBUILD 105643 2014-02-12 17:51:46Z dwallace $ # Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> # Contributor: Valentin Hăloiu <vially.ichb+aur@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> @@ -23,8 +23,8 @@ pkgname=(uwsgi ) #uwsgi-plugin-erlang #uwsgi-plugin-admin -pkgver=2.0 -pkgrel=3 +pkgver=2.0.1 +pkgrel=1 arch=(i686 x86_64) url="http://projects.unbit.it/$pkgbase" license=(GPL2) @@ -41,7 +41,7 @@ source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz uwsgi_ruby20_compatibility.patch uwsgi_trick_chroot.patch) -md5sums=('e4ab884be53a18c40975da1f9f14ef3d' +md5sums=('e7234f16ddfb4fe5d0b5d5fa76dc17e1' 'a0749da07b545efcbb0276f52be22652' 'b05ba1d796e1ea608a40635bc4f3ec67' '740a7718bd341b03d916a13ddbbbe694' diff --git a/community/xjadeo/PKGBUILD b/community/xjadeo/PKGBUILD index 1269ee7ea..3665fc78e 100644 --- a/community/xjadeo/PKGBUILD +++ b/community/xjadeo/PKGBUILD @@ -1,14 +1,14 @@ -# $Id: PKGBUILD 101054 2013-11-15 17:47:59Z speps $ +# $Id: PKGBUILD 105623 2014-02-12 07:14:19Z schiv $ # Maintainer : speps <speps at aur dot archlinux dot org> pkgname=xjadeo pkgver=0.7.6 -pkgrel=1 +pkgrel=2 pkgdesc="A simple video player that is synchronized to jack transport." arch=('i686' 'x86_64') url="http://xjadeo.sourceforge.net" license=('GPL') -depends=('ffmpeg' 'ffmpeg-compat' 'imlib2' 'jack' 'liblo' 'libxpm' 'libxv' 'portmidi') +depends=('ffmpeg' 'ffmpeg-compat' 'imlib2' 'jack' 'liblo>=0.28' 'libxpm' 'libxv' 'portmidi') makedepends=('qt4') optdepends=('qt4: for the GUI (qjadeo)') source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz" |