summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-03-13 03:50:12 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-03-13 03:50:12 +0000
commit4e5db57790dfb7243ca8b1d7c82f834a6294d8ab (patch)
tree5fa56a9aaad99bff3be377187b518aa7938dd746 /community
parent5d4b5782f03734e12c907cbc7e4b8c35926e9554 (diff)
Thu Mar 13 03:41:44 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/deja-dup/PKGBUILD11
-rw-r--r--community/deja-dup/fix-build.patch24
-rw-r--r--community/deja-dup/libsecret-1.vapi79
-rw-r--r--community/fpc/PKGBUILD8
-rw-r--r--community/libpng12/PKGBUILD10
-rw-r--r--community/luajit/PKGBUILD16
-rw-r--r--community/lxappearance-obconf/PKGBUILD6
-rw-r--r--community/moreutils/PKGBUILD6
-rw-r--r--community/mpv/PKGBUILD28
-rw-r--r--community/onboard/PKGBUILD6
-rw-r--r--community/passenger/PKGBUILD8
-rw-r--r--community/perl-datetime/PKGBUILD6
-rw-r--r--community/pragha/PKGBUILD17
-rw-r--r--community/python-numexpr/PKGBUILD8
-rw-r--r--community/rubinius/PKGBUILD8
-rw-r--r--community/sylpheed/PKGBUILD14
-rw-r--r--community/wah-plugins/PKGBUILD10
17 files changed, 103 insertions, 162 deletions
diff --git a/community/deja-dup/PKGBUILD b/community/deja-dup/PKGBUILD
index cf7956e0a..527a83e23 100644
--- a/community/deja-dup/PKGBUILD
+++ b/community/deja-dup/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 99726 2013-10-30 23:20:21Z allan $
+# $Id: PKGBUILD 107060 2014-03-12 01:01:17Z bgyorgy $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=deja-dup
@@ -15,14 +15,19 @@ optdepends=('gnome-keyring: save passwords'
'python2-boto: Amazon S3 backend'
'ubuntuone-client: Ubuntu One backend')
install=$pkgname.install
-source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz)
-md5sums=('480516869f49813880f2bbb35700c9af')
+source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.xz
+ fix-build.patch)
+md5sums=('480516869f49813880f2bbb35700c9af'
+ '4988fed3a3d3c2fec9318cc57e1710df')
prepare() {
cd "$srcdir/$pkgname-$pkgver"
# Python2 fix
sed -i 's/\"python\", \"-c\"/\"python2\", \"-c\"/' libdeja/PythonChecker.vala
+
+ # Fix build
+ patch -Np0 -i ../fix-build.patch
}
build() {
diff --git a/community/deja-dup/fix-build.patch b/community/deja-dup/fix-build.patch
new file mode 100644
index 000000000..49b58cd96
--- /dev/null
+++ b/community/deja-dup/fix-build.patch
@@ -0,0 +1,24 @@
+=== modified file 'deja-dup/widgets/WidgetUtils.vala'
+--- deja-dup/widgets/WidgetUtils.vala 2013-10-14 14:34:37 +0000
++++ deja-dup/widgets/WidgetUtils.vala 2013-12-06 17:19:31 +0000
+@@ -19,6 +19,10 @@
+
+ using GLib;
+
++// vala 0.22.1 changed the prototype for Notify.get_server_caps.
++// Rather than require that specific version, use 0.22.1's definition directly.
++extern GLib.List notify_get_server_caps();
++
+ namespace DejaDup {
+
+ public void show_uri(Gtk.Window? parent, string link)
+@@ -59,7 +63,7 @@
+ // Use Legacy unless we detect a different shell.
+ shell = ShellEnv.LEGACY;
+ // Next check for Shell by notification capabilities
+- unowned List<string> caps = Notify.get_server_caps();
++ List<string> caps = notify_get_server_caps();
+ bool persistence = false, actions = false;
+ foreach (string cap in caps) {
+ if (cap == "persistence")
+
diff --git a/community/deja-dup/libsecret-1.vapi b/community/deja-dup/libsecret-1.vapi
deleted file mode 100644
index 7d3f4a3a6..000000000
--- a/community/deja-dup/libsecret-1.vapi
+++ /dev/null
@@ -1,79 +0,0 @@
-/* libsecret-1.vapi generated by vapigen-0.20, do not modify. */
-
-[CCode (cprefix = "Secret", gir_namespace = "Secret", gir_version = "1", lower_case_cprefix = "secret_")]
-namespace Secret {
- [CCode (cheader_filename = "libsecret/secret.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "secret_schema_get_type ()")]
- [Compact]
- public class Schema {
- [CCode (array_length = false, array_null_terminated = true)]
- public weak Secret.SchemaAttribute[] attributes;
- public Secret.SchemaFlags flags;
- public weak string name;
- [CCode (has_construct_function = false)]
- public Schema (string name, Secret.SchemaFlags flags, ...);
- [CCode (cname = "secret_schema_newv", has_construct_function = false)]
- public Schema.newv (string name, Secret.SchemaFlags flags, GLib.HashTable<string,Secret.SchemaAttributeType> attribute_names_and_types);
- public Secret.Schema @ref ();
- public void unref ();
- }
- [CCode (cheader_filename = "libsecret/secret.h", copy_function = "g_boxed_copy", free_function = "g_boxed_free", type_id = "secret_schema_attribute_get_type ()")]
- [Compact]
- public class SchemaAttribute {
- public weak string name;
- public Secret.SchemaAttributeType type;
- }
- [CCode (cheader_filename = "libsecret/secret.h", cprefix = "SECRET_ERROR_", has_type_id = false)]
- public enum Error {
- PROTOCOL,
- IS_LOCKED,
- NO_SUCH_OBJECT,
- ALREADY_EXISTS;
- public static GLib.Quark get_quark ();
- }
- [CCode (cheader_filename = "libsecret/secret.h", cprefix = "SECRET_SCHEMA_ATTRIBUTE_", has_type_id = false)]
- public enum SchemaAttributeType {
- STRING,
- INTEGER,
- BOOLEAN
- }
- [CCode (cheader_filename = "libsecret/secret.h", cprefix = "SECRET_SCHEMA_", has_type_id = false)]
- [Flags]
- public enum SchemaFlags {
- NONE,
- DONT_MATCH_NAME
- }
- [CCode (cheader_filename = "libsecret/secret.h", cname = "SECRET_COLLECTION_DEFAULT")]
- public const string COLLECTION_DEFAULT;
- [CCode (cheader_filename = "libsecret/secret.h", cname = "SECRET_COLLECTION_SESSION")]
- public const string COLLECTION_SESSION;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static GLib.HashTable<string,string> attributes_build (Secret.Schema schema, ...);
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static GLib.HashTable<string,string> attributes_buildv (Secret.Schema schema, va_list va);
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static async bool password_clear (Secret.Schema schema, GLib.Cancellable? cancellable, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static bool password_clear_sync (Secret.Schema schema, GLib.Cancellable? cancellable = null, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h", finish_name = "secret_password_clear_finish")]
- public static async bool password_clearv (Secret.Schema schema, GLib.HashTable<string,string> attributes, GLib.Cancellable? cancellable) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static bool password_clearv_sync (Secret.Schema schema, GLib.HashTable<string,string> attributes, GLib.Cancellable? cancellable = null) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static async string password_lookup (Secret.Schema schema, GLib.Cancellable? cancellable, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static string password_lookup_sync (Secret.Schema schema, GLib.Cancellable? cancellable = null, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h", finish_name = "secret_password_lookup_finish")]
- public static async string password_lookupv (Secret.Schema schema, GLib.HashTable<string,string> attributes, GLib.Cancellable? cancellable) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static string password_lookupv_sync (Secret.Schema schema, GLib.HashTable<string,string> attributes, GLib.Cancellable? cancellable = null) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static async bool password_store (Secret.Schema schema, string? collection, string label, string password, GLib.Cancellable? cancellable, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static bool password_store_sync (Secret.Schema schema, string? collection, string label, string password, GLib.Cancellable? cancellable = null, ...) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h", finish_name = "secret_password_store_finish")]
- public static async bool password_storev (Secret.Schema schema, GLib.HashTable<string,string> attributes, string? collection, string label, string password, GLib.Cancellable? cancellable) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static bool password_storev_sync (Secret.Schema schema, GLib.HashTable<string,string> attributes, string? collection, string label, string password, GLib.Cancellable? cancellable = null) throws GLib.Error;
- [CCode (cheader_filename = "libsecret/secret.h")]
- public static void password_wipe (string? password);
-}
diff --git a/community/fpc/PKGBUILD b/community/fpc/PKGBUILD
index f5235a6df..8dbdeaac7 100644
--- a/community/fpc/PKGBUILD
+++ b/community/fpc/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 84832 2013-02-25 10:36:39Z spupykin $
+# $Id: PKGBUILD 107070 2014-03-12 10:54:44Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Valeriy Lyasotskiy <onestep@ukr.net>
# Contributor: Jan Willemson <janwil@hot.ee>
@@ -8,7 +8,7 @@
# See http://bbs.archlinux.org/viewtopic.php?t=9318&highlight=fpc
pkgname=fpc
-pkgver=2.6.2
+pkgver=2.6.4
_gdbver=7.5.1
pkgrel=1
pkgdesc="The Free Pascal Compiler is a Turbo Pascal 7.0 and Delphi compatible 32bit Pascal Compiler. It comes with fully TP 7.0 compatible run-time library."
@@ -18,11 +18,11 @@ license=('GPL' 'LGPL' 'custom')
backup=("etc/fpc.cfg")
depends=(ncurses zlib expat)
makedepends=(fpc)
-options=(zipman)
+options=(zipman staticlibs)
source=(ftp://ftp.freepascal.org/pub/fpc/dist/$pkgver/source/fpcbuild-$pkgver.tar.gz
http://ftp.gnu.org/gnu/gdb/gdb-${_gdbver}.tar.bz2
fpc-gdb.patch)
-md5sums=('89c7e60db6280f3d5cc006a4a9ff43a9'
+md5sums=('403da132aed194fd841d46c3b33b022a'
'3f48f468b24447cf24820054ff6e85b1'
'1e45ece6b5d4ee60b860e75926b4122d')
diff --git a/community/libpng12/PKGBUILD b/community/libpng12/PKGBUILD
index 65f24c3d4..8b16cd6d8 100644
--- a/community/libpng12/PKGBUILD
+++ b/community/libpng12/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 100367 2013-11-02 21:33:40Z dwallace $
+# $Id: PKGBUILD 107097 2014-03-12 13:06:15Z bpiotrowski $
# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor: dorphell <archlinux.org: dorphell>
# Contributor: Travis Willard <archlinux.org: travis>
@@ -7,8 +7,8 @@
pkgname=libpng12
_realname=libpng
-pkgver=1.2.50
-pkgrel=4
+pkgver=1.2.51
+pkgrel=1
pkgdesc="A collection of routines used to create PNG format graphics files"
arch=('i686' 'x86_64')
url="http://www.libpng.org/pub/png/libpng.html"
@@ -47,5 +47,5 @@ package() {
}
-md5sums=('a3e00fccbfe356174ab515b5c00641c7'
- 'b06ac3f6a6f982abc2036359665e82a9')
+md5sums=('4efba67fa5aa2b785c6fcec2cc3e90c9'
+ '28bde2a02e40ccdc60ff7c8e6b2118bf')
diff --git a/community/luajit/PKGBUILD b/community/luajit/PKGBUILD
index a073f48fb..6525b8db3 100644
--- a/community/luajit/PKGBUILD
+++ b/community/luajit/PKGBUILD
@@ -1,21 +1,21 @@
-# $Id: PKGBUILD 102287 2013-12-07 10:57:57Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# $Id: PKGBUILD 107117 2014-03-12 18:23:14Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Chris Brannon <chris@the-brannons.com>
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
# Contributor: Anders Bergh <anders1@gmail.com>
pkgname=luajit
-pkgver=2.0.2
-pkgrel=2
+pkgver=2.0.3
+pkgrel=1
pkgdesc='Just-in-time compiler and drop-in replacement for Lua 5.1'
arch=('i686' 'x86_64')
url='http://luajit.org/'
license=('MIT')
-depends=('gcc-libs')
-source=(http://luajit.org/download/LuaJIT-${pkgver/rc/-rc}.tar.gz)
-sha256sums=('c05202974a5890e777b181908ac237625b499aece026654d7cc33607e3f46c38')
+depends=('gcc-libs')
+source=(http://luajit.org/download/LuaJIT-$pkgver.tar.gz)
+md5sums=('f14e9104be513913810cd59c8c658dc0')
-build() {
+build() {
cd LuaJIT-$pkgver
make amalg PREFIX=/usr
}
diff --git a/community/lxappearance-obconf/PKGBUILD b/community/lxappearance-obconf/PKGBUILD
index a9dbde3dd..96e584426 100644
--- a/community/lxappearance-obconf/PKGBUILD
+++ b/community/lxappearance-obconf/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 99903 2013-10-31 02:22:59Z allan $
+# $Id: PKGBUILD 107068 2014-03-12 10:38:49Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
pkgname=lxappearance-obconf
pkgver=0.2.1
-pkgrel=1
+pkgrel=2
pkgdesc='Plugin for LXAppearance to configure Openbox'
arch=('i686' 'x86_64')
license=('GPL2')
url='http://lxde.org/'
groups=('lxde')
-depends=('lxappearance' 'openbox')
+depends=('lxappearance' 'openbox' 'libsm')
makedepends=('intltool')
source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz)
md5sums=('1f061c96e0c78a6476421ca294ac24aa')
diff --git a/community/moreutils/PKGBUILD b/community/moreutils/PKGBUILD
index d548da25a..2fa159a43 100644
--- a/community/moreutils/PKGBUILD
+++ b/community/moreutils/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 96061 2013-08-19 13:38:56Z spupykin $
+# $Id: PKGBUILD 107074 2014-03-12 10:55:36Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
pkgname=moreutils
-pkgver=0.49
+pkgver=0.51
pkgrel=1
pkgdesc="A growing collection of the unix tools that nobody thought to write thirty years ago"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ depends=('perl' 'perl-ipc-run' 'perl-timedate' 'perl-time-duration')
options=('!emptydirs' 'zipman')
replaces=(moreutils-svn)
source=(http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_$pkgver.tar.gz)
-md5sums=('29b49e70fec35b28df24b25eb3e0fd29')
+md5sums=('849282ea7e43ed01d34bd81b1d2be283')
build() {
cd $srcdir/$pkgname
diff --git a/community/mpv/PKGBUILD b/community/mpv/PKGBUILD
index 0756bc09a..01f9aec9a 100644
--- a/community/mpv/PKGBUILD
+++ b/community/mpv/PKGBUILD
@@ -1,40 +1,32 @@
-# $Id: PKGBUILD 105849 2014-02-16 12:44:18Z bpiotrowski $
+# $Id: PKGBUILD 107066 2014-03-12 10:33:29Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Eivind Uggedal <eivind@uggedal.com>
pkgname=mpv
-pkgver=0.3.5
+pkgver=0.3.6
pkgrel=1
pkgdesc='Video player based on MPlayer/mplayer2'
arch=('i686' 'x86_64')
license=('GPL')
url='http://mpv.io'
depends=(
- 'portaudio' 'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi'
- 'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils'
- 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
- )
-makedepends=('mesa' 'python-docutils' 'waf')
+ 'portaudio' 'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libquvi' 'libgl'
+ 'libxinerama' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils' 'wayland'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua' 'libdvdnav'
+)
+makedepends=('mesa' 'python-docutils' 'waf' 'ladspa')
options=('!emptydirs' '!buildflags')
install=mpv.install
source=(https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz)
-md5sums=('b3fdd3e70d6e53a14c3b1881343d2aca')
+md5sums=('11a8bb5f10056b7cc0dbedd38fe6e581')
build() {
cd $pkgname-$pkgver
waf configure --prefix=/usr \
--confdir=/etc/mpv \
- --enable-joystick \
- --enable-wayland \
- --disable-radio \
- --disable-radio-capture \
- --disable-radio-v4l2 \
- --disable-libbs2b \
- --disable-direct3d \
- --disable-corevideo \
- --disable-cocoa \
- --disable-coreaudio
+ --enable-joystick
+
waf build
}
diff --git a/community/onboard/PKGBUILD b/community/onboard/PKGBUILD
index 1b1973259..7aa5d3264 100644
--- a/community/onboard/PKGBUILD
+++ b/community/onboard/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 96585 2013-09-01 23:01:22Z bgyorgy $
+# $Id: PKGBUILD 107059 2014-03-12 00:38:36Z bgyorgy $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=onboard
-pkgver=0.99.0
+pkgver=1.0.1
pkgrel=1
pkgdesc="On-screen keyboard useful on tablet PCs or for mobility impaired users"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ optdepends=('mousetweaks: hover click with mouse')
options=('!emptydirs')
install=$pkgname.install
source=(http://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz)
-md5sums=('456d1e32a6f7143200993b0819386a0d')
+md5sums=('88cc91722238ffd6bee47c8adde3eb11')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD
index 6b8f807c9..12a8e9549 100644
--- a/community/passenger/PKGBUILD
+++ b/community/passenger/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 106740 2014-03-06 21:43:48Z anatolik $
+# $Id: PKGBUILD 107076 2014-03-12 10:55:52Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=passenger
-pkgver=4.0.37
-pkgrel=2
+pkgver=4.0.38
+pkgrel=1
pkgdesc="mod_rails passenger"
arch=('i686' 'x86_64')
url="http://www.modrails.com"
@@ -14,7 +14,7 @@ makedepends=('apache')
install=passenger.install
options=('!emptydirs' 'staticlibs')
source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('7040af5314fe19a420f38732c6bd4f5b')
+md5sums=('ec6cb96a8f3d444540a54a3007143e2e')
prepare() {
cd $srcdir/passenger-release-$pkgver
diff --git a/community/perl-datetime/PKGBUILD b/community/perl-datetime/PKGBUILD
index c6179c4ca..1319045c0 100644
--- a/community/perl-datetime/PKGBUILD
+++ b/community/perl-datetime/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 105763 2014-02-15 20:31:20Z spupykin $
+# $Id: PKGBUILD 107078 2014-03-12 10:56:22Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: François Charette <firmicus ατ gmx δοτ net>
pkgname=perl-datetime
-pkgver=1.07
+pkgver=1.08
pkgrel=1
pkgdesc="A complete, easy to use date and time object"
arch=('i686' 'x86_64')
@@ -15,7 +15,7 @@ LC_NUMERIC=C
provides=("perl-datetime=`printf %.4f $pkgver`")
options=('!emptydirs')
source=(http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-$pkgver.tar.gz)
-md5sums=('2b1745e4f7c0777c02545033588f6394')
+md5sums=('e928c3cdf31b7e39b2f7865f4037ce8b')
build() {
cd $srcdir/DateTime-$pkgver
diff --git a/community/pragha/PKGBUILD b/community/pragha/PKGBUILD
index 3d97b9212..dc7327813 100644
--- a/community/pragha/PKGBUILD
+++ b/community/pragha/PKGBUILD
@@ -1,20 +1,20 @@
-# $Id: PKGBUILD 104374 2014-01-19 16:29:38Z bpiotrowski $
+# $Id: PKGBUILD 107120 2014-03-12 18:47:55Z bpiotrowski $
# Maintainer: Thorsten Töpper <atsutane-tu@freethoughts.de>
# Contributor: J0k3r <moebius282 e4a t gmail D0_T com>
# Contributor: Alois Nespor <alois.nespor@gmail.com>
# Contributor: JerichoKru <jerichokru(AT)hotmail.com>
pkgname=pragha
-pkgver=1.1.2.2
-pkgrel=2
+pkgver=1.3.0
+pkgrel=1
pkgdesc="A lightweight GTK+ music manager - fork of Consonance Music Manager."
arch=('i686' 'x86_64')
url="http://pragha.wikispaces.com/"
license=('GPL3')
depends=('libnotify' 'libcdio-paranoia' 'gst-plugins-base'
- 'taglib' 'hicolor-icon-theme' 'gtk2'
+ 'taglib' 'hicolor-icon-theme' 'gtk3'
'dbus-glib' 'sqlite' 'desktop-file-utils'
- 'libclastfm')
+ 'libclastfm' 'libpeas')
optdepends=('notification-daemon: OSD notification'
'gst-plugins-good: A collection of gstreamer codecs'
'gst-plugins-bad: A collection of gstreamer codecs'
@@ -23,15 +23,14 @@ makedepends=('intltool')
replaces=('dissonance')
install=pragha.install
source=("https://github.com/matiasdelellis/pragha/releases/download/v$pkgver/pragha-$pkgver.tar.bz2")
-sha1sums=('b415432020c2e1aefc6640cef778ddc70bbeff7f')
+sha1sums=('8fb6c074292a65915cc21c3b0b0ca35d65afff58')
build() {
cd "$srcdir/$pkgname-$pkgver"
- LIBS+="-ldbus-glib-1" \
+ CPPFLAGS="-DHAVE_PARANOIA_NEW_INCLUDES" LIBS+="-ldbus-glib-1" \
./configure --prefix=/usr \
- --with-gstreamer=1.0 \
- CPPFLAGS="-DHAVE_PARANOIA_NEW_INCLUDES"
+ --with-gstreamer=1.0
make
}
diff --git a/community/python-numexpr/PKGBUILD b/community/python-numexpr/PKGBUILD
index c8d884ee8..2f01f919c 100644
--- a/community/python-numexpr/PKGBUILD
+++ b/community/python-numexpr/PKGBUILD
@@ -1,18 +1,18 @@
-# $Id: PKGBUILD 104927 2014-01-28 11:43:36Z aginiewicz $
+# $Id: PKGBUILD 107111 2014-03-12 16:45:17Z aginiewicz $
# Maintainer: Andrzej Giniewicz <gginiu@gmail.com>
# Contributor: Sebastien Binet <binet@lblbox>
pkgbase=python-numexpr
pkgname=('python2-numexpr' 'python-numexpr')
-pkgver=2.3
+pkgver=2.3.1
pkgrel=1
pkgdesc="Fast numerical array expression evaluator for Python, NumPy, PyTables, pandas"
url="https://github.com/pydata/numexpr"
arch=('i686' 'x86_64')
license=('MIT')
makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 'python2-numpy')
-source=(https://github.com/pydata/numexpr/archive/$pkgver.tar.gz)
-md5sums=('fc9b5765c8ceda4a4c2e974e565b98cf')
+source=(https://github.com/pydata/numexpr/archive/v$pkgver.tar.gz)
+md5sums=('eda267543a8594b9979b71dc56199b71')
build() {
cd "$srcdir"
diff --git a/community/rubinius/PKGBUILD b/community/rubinius/PKGBUILD
index bf7ead370..b948ce530 100644
--- a/community/rubinius/PKGBUILD
+++ b/community/rubinius/PKGBUILD
@@ -1,20 +1,20 @@
-# $Id: PKGBUILD 105511 2014-02-09 13:50:07Z heftig $
+# $Id: PKGBUILD 107124 2014-03-12 21:52:55Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
pkgbase=rubinius
pkgname=(rubinius rubinius-ruby)
-pkgver=2.2.5
+pkgver=2.2.6
pkgrel=1
pkgdesc="Ruby runtime written in Ruby, designed for concurrency"
arch=(i686 x86_64)
url="http://rubini.us"
license=(custom)
depends=(llvm-libs libffi openssl libyaml)
-makedepends=(llvm rubinius-ruby)
+makedepends=(llvm ruby)
options=(!emptydirs)
source=(http://releases.rubini.us/${pkgbase}-${pkgver}.tar.bz2
gemrc dirs.patch)
-sha256sums=('42cfae89d481dfa5e0ccb53a67720f109fc6c2e1b6ca68a8ae9676be6d0457de'
+sha256sums=('8ad2cada05a20c708379c75607fd0c8259623b3699d36be41e509052164eb103'
'4bb7eb2fe66e396ed16b589cdb656831407b39ad4e138d88536754c0448ac614'
'93f3918dc2a5679e281e724f9b3cb712ffa784c1e52e6fa7ce75f74ce6655a66')
diff --git a/community/sylpheed/PKGBUILD b/community/sylpheed/PKGBUILD
index 69e7a4972..df1cd3445 100644
--- a/community/sylpheed/PKGBUILD
+++ b/community/sylpheed/PKGBUILD
@@ -1,23 +1,23 @@
-# $Id: PKGBUILD 99996 2013-10-31 02:54:24Z allan $
+# $Id: PKGBUILD 107093 2014-03-12 11:31:37Z speps $
# Maintainer: speps <speps at aur dot archlinux dot org>
# Contributor: Alexander Fehr <pizzapunk gmail com>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=sylpheed
-pkgver=3.3.0
+pkgver=3.3.1
pkgrel=1
pkgdesc="Lightweight and user-friendly e-mail client"
arch=('i686' 'x86_64')
url="http://sylpheed.sraoss.jp/en/"
license=('GPL')
-depends=('gpgme' 'gtkspell' 'desktop-file-utils')
-makedepends=('compface' 'openssl')
+depends=('compface' 'gpgme' 'gtkspell' 'desktop-file-utils')
+makedepends=('openssl')
install="$pkgname.install"
source=("http://sylpheed.sraoss.jp/$pkgname/v3.3/$pkgname-$pkgver.tar.bz2")
-md5sums=('20442f81dbb4e7c59462360ad0bb1afb')
+md5sums=('34551fa05722bac80bbe0688bb4a3341')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $pkgname-$pkgver
./configure --prefix=/usr \
--enable-ldap
make
@@ -27,7 +27,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $pkgname-$pkgver
make DESTDIR="$pkgdir/" install
# Install Attachment-Tool Plug-in
diff --git a/community/wah-plugins/PKGBUILD b/community/wah-plugins/PKGBUILD
index 3cf3fcb9c..75f3f11f9 100644
--- a/community/wah-plugins/PKGBUILD
+++ b/community/wah-plugins/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 95499 2013-08-13 03:27:45Z speps $
+# $Id: PKGBUILD 107095 2014-03-12 11:37:07Z speps $
# Maintainer : speps <speps at aur dot archlinux dot org>
# Contributor: Renato Budinich <rennabh at gmail dot com>
pkgname=wah-plugins
-pkgver=0.0.2
+pkgver=0.1.0
pkgrel=1
pkgdesc="LADSPA Wah filter plugin"
arch=('i686' 'x86_64')
@@ -12,15 +12,15 @@ license=('GPL')
groups=('ladspa-plugins')
depends=('ladspa')
source=("${url}../downloads/WAH-plugins-$pkgver.tar.bz2")
-md5sums=('e203e3458a4cd75cc442d70b8f124db9')
+md5sums=('d5df8cb2c88a153316a711512c1646c7')
build() {
- cd "$srcdir/WAH-plugins-$pkgver"
+ cd WAH-plugins-$pkgver
make
}
package() {
- cd "$srcdir/WAH-plugins-$pkgver"
+ cd WAH-plugins-$pkgver
# plugin
install -Dm755 autowah.so \