summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/cuetools/PKGBUILD42
-rw-r--r--community/cuetools/cuetag.patch37
-rw-r--r--community/cuetools/fix_build_with_automake-1.12.diff24
-rw-r--r--community/ipset/01-Fix-configure-failure-when-with-kmod.patch43
-rw-r--r--community/ipset/PKGBUILD17
-rw-r--r--community/kmscon/PKGBUILD4
-rw-r--r--community/luaposix/PKGBUILD25
-rw-r--r--community/torsocks/PKGBUILD2
-rw-r--r--community/uwsgi/PKGBUILD6
9 files changed, 127 insertions, 73 deletions
diff --git a/community/cuetools/PKGBUILD b/community/cuetools/PKGBUILD
index 439ce866c..1bb3325e1 100644
--- a/community/cuetools/PKGBUILD
+++ b/community/cuetools/PKGBUILD
@@ -1,33 +1,39 @@
-# $Id: PKGBUILD 64846 2012-02-18 17:42:48Z stativ $
+# $Id: PKGBUILD 98850 2013-10-20 09:41:43Z stativ $
# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=cuetools
-pkgver=1.3.1
-pkgrel=5
-pkgdesc="Set of utilities for working with cue files and toc files"
+pkgver=1.4.0
+pkgrel=1
+pkgdesc="Cue and toc file parsers and utilities"
arch=('i686' 'x86_64')
-url="http://developer.berlios.de/projects/cuetools/"
+url="https://github.com/svend/cuetools"
+#url="http://developer.berlios.de/projects/cuetools/"
license=('GPL')
depends=('glibc')
-source=(http://download.berlios.de/$pkgname/$pkgname-$pkgver.tar.gz \
- cuetag.patch)
-md5sums=('45575f7a1bdc6615599fa6cb49845cca'
- '38969241a7b6ac88e2f1b46c3da0ecc2')
+source=("https://github.com/svend/cuetools/archive/${pkgver}.tar.gz"
+ "fix_build_with_automake-1.12.diff")
+md5sums=('4492dae2b3f9e077f6455a1f1cddef3b'
+ '67a3b32711d1a1f508be6ed0f1bdadf3')
-build() {
- cd "$srcdir"/$pkgname-$pkgver
+prepare() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ patch -Np1 < "$srcdir/fix_build_with_automake-1.12.diff" || true
- # fix cuetag
- patch -Np0 < "$srcdir"/cuetag.patch
- sed -i -e 's/--import-vc-from/--import-tags-from/' \
- -e 's/--remove-vc-all/--remove-all-tags/' extras/cuetag.sh
+ aclocal
+ autoheader
+ automake --force-missing --add-missing
+ autoconf
+}
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --mandir=/usr/share/man
+ ./configure --prefix=/usr
make
}
package() {
- cd "$srcdir"/$pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
- install -m755 extras/cuetag.sh "$pkgdir"/usr/bin/cuetag.sh
}
diff --git a/community/cuetools/cuetag.patch b/community/cuetools/cuetag.patch
deleted file mode 100644
index cd41dcd56..000000000
--- a/community/cuetools/cuetag.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- extras/cuetag.sh 2006-09-06 14:24:47.000000000 -0400
-+++ extras/cuetag.sh 2007-01-26 00:13:23.000000000 -0500
-@@ -63,7 +63,7 @@
- (for field in $fields; do
- value=""
- for conv in `eval echo \\$$field`; do
-- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file`
-+ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"`
-
- if [ -n "$value" ]; then
- echo "$field=$value"
-@@ -96,7 +96,7 @@
- for field in $fields; do
- value=""
- for conv in `eval echo \\$$field`; do
-- value=`$CUEPRINT -n $1 -t "$conv\n" $cue_file`
-+ value=`$CUEPRINT -n $1 -t "$conv\n" "$cue_file"`
-
- if [ -n "$value" ]; then
- break
-@@ -141,14 +141,14 @@
- cue_file=$1
- shift
-
-- ntrack=`cueprint -d '%N' $cue_file`
-+ ntrack=`cueprint -d '%N' "$cue_file"`
- trackno=1
-
- if [ $# -ne $ntrack ]; then
- echo "warning: number of files does not match number of tracks"
- fi
-
-- for file in $@; do
-+ for file in "$@"; do
- case $file in
- *.[Ff][Ll][Aa][Cc])
- vorbis $trackno "$file"
diff --git a/community/cuetools/fix_build_with_automake-1.12.diff b/community/cuetools/fix_build_with_automake-1.12.diff
new file mode 100644
index 000000000..9090f32c3
--- /dev/null
+++ b/community/cuetools/fix_build_with_automake-1.12.diff
@@ -0,0 +1,24 @@
+From 761eba5b9b9c87a872a18b7ba4bf3d77a96e2157 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Horv=C3=A1th=20Bal=C3=A1zs?= <q@qroa.ch>
+Date: Tue, 15 Oct 2013 01:17:52 +0200
+Subject: [PATCH] Fix build with automake-1.12.
+
+---
+ configure.ac | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/configure.ac b/configure.ac
+index f54bb92..9f36932 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -4,6 +4,7 @@ AC_PROG_CC
+ AC_PROG_INSTALL
+ AC_PROG_RANLIB
+ AM_PROG_LEX
++m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
+ AC_PROG_YACC
+ AC_CONFIG_HEADERS([config.h])
+ AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lib/Makefile src/tools/Makefile extras/Makefile])
+--
+1.8.4
+
diff --git a/community/ipset/01-Fix-configure-failure-when-with-kmod.patch b/community/ipset/01-Fix-configure-failure-when-with-kmod.patch
new file mode 100644
index 000000000..d42884355
--- /dev/null
+++ b/community/ipset/01-Fix-configure-failure-when-with-kmod.patch
@@ -0,0 +1,43 @@
+From a76488a84db452865e114336b3fde6257e327715 Mon Sep 17 00:00:00 2001
+From: Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>
+Date: Fri, 11 Oct 2013 16:41:12 +0200
+Subject: [PATCH 1/2] netfilter: ipset: Fix configure failure when
+ --with-kmod=no
+
+When configuring the sources to build without kernel modules, the path
+to the kernel sources was not set and the kernel header files were still
+checked.
+
+Now, we do not check the kernel sources for compatibility if we're not
+going to build any kernel modules.
+
+Signed-off-by: Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>
+Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
+---
+ configure.ac | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/configure.ac b/configure.ac
+index 0eb1022..d56328c 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -167,6 +167,8 @@ AC_CHECK_TYPES([union nf_inet_addr],,,[#include <linux/types.h>
+ dnl Checks for functions
+ AC_CHECK_FUNCS(gethostbyname2)
+
++if test "$BUILDKMOD" == "yes"
++then
+ dnl Check kernel incompatibilities... Ugly like hell
+ AC_MSG_CHECKING([kernel source for struct xt_action_param])
+ if test -f $ksourcedir/include/linux/netfilter/x_tables.h && \
+@@ -309,6 +311,7 @@ else
+ AC_MSG_RESULT(no)
+ AC_MSG_ERROR([Netns support is required in the Linux kernel tree])
+ fi
++fi
+
+ dnl Checks for compiler characteristics.
+ dnl Check extra warning flags except
+--
+1.8.4
+
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD
index a4d3cb929..8bc0b969f 100644
--- a/community/ipset/PKGBUILD
+++ b/community/ipset/PKGBUILD
@@ -1,21 +1,28 @@
-# $Id: PKGBUILD 90514 2013-05-12 23:45:55Z seblu $
+# $Id: PKGBUILD 98863 2013-10-20 19:57:37Z seblu $
# Maintainer: Sébastien Luttringer
pkgname=ipset
-pkgver=6.19
-pkgrel=2
+pkgver=6.20
+pkgrel=1
pkgdesc='Administration tool for IP sets'
arch=('i686' 'x86_64')
url='http://ipset.netfilter.org'
license=('GPL2')
-depends=('libmnl' 'bash')
+depends=('libmnl')
backup=("etc/$pkgname.conf")
options=('!libtool')
source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
+ '01-Fix-configure-failure-when-with-kmod.patch'
"$pkgname.service")
-md5sums=('cabba1bd63a93f6e1c3db3fb22412b64'
+md5sums=('af28b3af356fff3e4a8e321ff7145678'
+ '5569fd4ee93acac4ae01d091002cc2f5'
'6be6a2b34c1f38fc8ad60828403e2077')
+prepare() {
+ patch -p1 -d $pkgname-$pkgver < 01-Fix-configure-failure-when-with-kmod.patch
+ cd $pkgname-$pkgver && ./autogen.sh
+}
+
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
diff --git a/community/kmscon/PKGBUILD b/community/kmscon/PKGBUILD
index 801f87927..0d04c752f 100644
--- a/community/kmscon/PKGBUILD
+++ b/community/kmscon/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 85313 2013-02-28 21:20:56Z thestinger $
+# $Id: PKGBUILD 98861 2013-10-20 18:22:20Z thestinger $
# Maintainer: Daniel Micay <danielmicay@gmail.com>
# Contributor: David Herrmann <dh.herrmann@googlemail.com>
pkgname=kmscon
pkgver=7
-pkgrel=1
+pkgrel=2
pkgdesc='Terminal emulator based on Kernel Mode Setting (KMS)'
arch=(i686 x86_64)
url='https://github.com/dvdhrm/kmscon'
diff --git a/community/luaposix/PKGBUILD b/community/luaposix/PKGBUILD
index e937311b8..d6111b0dc 100644
--- a/community/luaposix/PKGBUILD
+++ b/community/luaposix/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 93201 2013-06-28 13:21:16Z seblu $
+# $Id: PKGBUILD 98865 2013-10-20 20:53:15Z seblu $
# Maintainer: Sébastien Luttringer
# Contributor: SpepS <dreamspepser at yahoo dot it>
# Contributor: Laszlo Papp <djszapi at archlinux us>
@@ -6,20 +6,31 @@
pkgbase=luaposix
pkgname=('lua-posix' 'lua51-posix')
-pkgver=29
+pkgver=31
pkgrel=1
pkgdesc='A POSIX library for Lua programming language'
arch=('i686' 'x86_64')
url='https://github.com/luaposix/luaposix'
license=('GPL' 'LGPL')
-makedepends=('lua' 'lua51' 'lua51-bitop' 'git')
-options=('!libtool')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/luaposix/luaposix/archive/v$pkgver.tar.gz")
-md5sums=('5c3e49c51caeee6eb5f9dcb2bb082bed')
+makedepends=('lua' 'lua51' 'lua51-bitop' 'git' 'help2man')
+options=('!libtool' '!makeflags')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/$pkgbase/$pkgbase/archive/v$pkgver.tar.gz"
+ 'git+git://git.sv.gnu.org/gnulib'
+ 'git+git://github.com/gvvaughan/slingshot')
+md5sums=('7b17b9a3f25d9658de967c6bfd50c138'
+ 'SKIP'
+ 'SKIP')
prepare() {
- # do bootstrap in prepare, as it clone external git
+ # replace git submodules by source one.
+ # this allow us to cache and avoid clone each time
+ for _rep in gnulib slingshot; do
+ rmdir $pkgbase-$pkgver/$_rep
+ ln -s "$srcdir/$_rep" $pkgbase-$pkgver/$_rep
+ done
+ # bootstraping
(cd $pkgbase-$pkgver && ./bootstrap)
+ # copy source for lua 5.1 build
cp -r $pkgbase-$pkgver $pkgbase-$pkgver-51
}
diff --git a/community/torsocks/PKGBUILD b/community/torsocks/PKGBUILD
index 352a1dce2..ab7f42a9b 100644
--- a/community/torsocks/PKGBUILD
+++ b/community/torsocks/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=torsocks
pkgver=1.3
-pkgrel=4
+pkgrel=5
pkgdesc='Wrapper to safely torify applications'
arch=('i686' 'x86_64')
url='http://code.google.com/p/torsocks'
diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD
index a785dc9bb..447d415b4 100644
--- a/community/uwsgi/PKGBUILD
+++ b/community/uwsgi/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 98108 2013-10-06 00:44:23Z dwallace $
+# $Id: PKGBUILD 98834 2013-10-20 05:56:09Z 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,7 +23,7 @@ pkgname=(uwsgi
uwsgi-plugin-pam
uwsgi-plugin-zergpool
)
-pkgver=1.9.17.1
+pkgver=1.9.18.1
pkgrel=1
arch=(i686 x86_64)
url="http://projects.unbit.it/$pkgbase"
@@ -41,7 +41,7 @@ source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz
uwsgi_ruby20_compatibility.patch
uwsgi_trick_chroot.patch)
-md5sums=('501f29ad4538193c0ef585b4cef46bcf'
+md5sums=('9925e4c189cb0fcd26d4b2efd732b6ca'
'fcd57c37372e6afe5b1fae151dd43bc9'
'b05ba1d796e1ea608a40635bc4f3ec67'
'740a7718bd341b03d916a13ddbbbe694'