summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-01-01 03:24:22 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-01-01 03:24:22 +0000
commitce0424b2e68538f0e0c1b882300541ceed0d27e3 (patch)
tree55d80adcdcd70e60e180be3acb102a1be02f00b3 /community
parent5a81550adad5ccde4ad6924cfee2b2ef96d02c98 (diff)
Wed Jan 1 03:20:52 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/cuetools/PKGBUILD8
-rw-r--r--community/cuetools/cuetag-fix_spaces.diff46
-rw-r--r--community/dos2unix/PKGBUILD6
-rw-r--r--community/gdc/PKGBUILD6
-rw-r--r--community/gdc/folders.diff27
-rw-r--r--community/lxappearance/PKGBUILD12
6 files changed, 68 insertions, 37 deletions
diff --git a/community/cuetools/PKGBUILD b/community/cuetools/PKGBUILD
index 1bb3325e1..c320597fc 100644
--- a/community/cuetools/PKGBUILD
+++ b/community/cuetools/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 98850 2013-10-20 09:41:43Z stativ $
+# $Id: PKGBUILD 103244 2013-12-31 11:13:25Z stativ $
# Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com>
pkgname=cuetools
pkgver=1.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Cue and toc file parsers and utilities"
arch=('i686' 'x86_64')
url="https://github.com/svend/cuetools"
@@ -10,14 +10,16 @@ url="https://github.com/svend/cuetools"
license=('GPL')
depends=('glibc')
source=("https://github.com/svend/cuetools/archive/${pkgver}.tar.gz"
- "fix_build_with_automake-1.12.diff")
+ "cuetag-fix_spaces.diff" "fix_build_with_automake-1.12.diff")
md5sums=('4492dae2b3f9e077f6455a1f1cddef3b'
+ '60f4aba26e529e48dbedd2adef917117'
'67a3b32711d1a1f508be6ed0f1bdadf3')
prepare() {
cd "$srcdir/$pkgname-$pkgver"
patch -Np1 < "$srcdir/fix_build_with_automake-1.12.diff" || true
+ patch -Np1 < "$srcdir/cuetag-fix_spaces.diff" || true
aclocal
autoheader
diff --git a/community/cuetools/cuetag-fix_spaces.diff b/community/cuetools/cuetag-fix_spaces.diff
new file mode 100644
index 000000000..f240e9d37
--- /dev/null
+++ b/community/cuetools/cuetag-fix_spaces.diff
@@ -0,0 +1,46 @@
+From 21ee6cc40f02693928efbc4f3beeb681950c16b5 Mon Sep 17 00:00:00 2001
+From: Svend Sorensen <svend@ciffer.net>
+Date: Sat, 23 Nov 2013 17:23:01 -0800
+Subject: [PATCH] cuetag: Fix handling of spaces in file names
+
+Fixes #14
+---
+ src/tools/cuetag.sh | 9 ++++-----
+ 1 file changed, 4 insertions(+), 5 deletions(-)
+
+diff --git a/src/tools/cuetag.sh b/src/tools/cuetag.sh
+index f26fa20..448920f 100755
+--- a/src/tools/cuetag.sh
++++ b/src/tools/cuetag.sh
+@@ -182,16 +182,15 @@ main()
+ ntrack=$(cueprint -d '%N' "$cue_file")
+ trackno=1
+
+- FILES= FIELDS=
++ NUM_FILES=0 FIELDS=
+ for arg in "$@"; do
+ case "$arg" in
+- *.*) FILES="$FILES $arg";;
++ *.*) NUM_FILES=$(expr $NUM_FILES + 1);;
+ *) FIELDS="$FIELDS $arg";;
+ esac
+ done
+
+- set -- $FILES
+- if [ $# -ne $ntrack ]; then
++ if [ $NUM_FILES -ne $ntrack ]; then
+ echo "warning: number of files does not match number of tracks"
+ fi
+
+@@ -209,7 +208,7 @@ main()
+ *.[Tt][Xx][Tt])
+ vorbis $trackno "$file"
+ ;;
+- *)
++ *.*)
+ echo "$file: uknown file type"
+ ;;
+ esac
+--
+1.8.5.1
+
diff --git a/community/dos2unix/PKGBUILD b/community/dos2unix/PKGBUILD
index 47107ad65..a5c9ff60d 100644
--- a/community/dos2unix/PKGBUILD
+++ b/community/dos2unix/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 83060 2013-01-27 09:35:12Z bpiotrowski $
+# $Id: PKGBUILD 103260 2013-12-31 20:20:56Z jelle $
# Maintainer: Bartłomiej Piotrowski
# Contributor: Renato Garcia <fgar.renatoATgmailDOTcom>
# Contributor: Gerson E. Ruotolo <gersonruotolo@globo.com>
pkgname=dos2unix
-pkgver=6.0.3
+pkgver=6.0.4
pkgrel=1
pkgdesc='Text file format converter'
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ depends=('glibc')
makedepends=('perl')
conflicts=('hd2u')
source=("http://waterlan.home.xs4all.nl/${pkgname}/${pkgname}-${pkgver}.tar.gz")
-sha256sums=('f5268c5b28a1983537210c72b3fd43f4aad17a8dacb6727b615b56dca2ef9a04')
+sha256sums=('66bd224d4a7fbe13a3b61aa7083b5ef74cf6448a3670606c669f46a84bb9b37a')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/gdc/PKGBUILD b/community/gdc/PKGBUILD
index 3ed37cf9a..9d3fbad0a 100644
--- a/community/gdc/PKGBUILD
+++ b/community/gdc/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=('gdc' 'libgphobos-devel')
pkgver=4.8.2
-pkgrel=3
+pkgrel=4
arch=('i686' 'x86_64')
url="https://github.com/D-Programming-GDC/GDC"
license=('GPL')
@@ -17,7 +17,7 @@ source=(ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz
folders.diff)
sha256sums=('e4e2202b15f8ba323f88c65de0e4190b0630a4b2e70b0653526b31e946877ead'
'SKIP'
- '88a1f1315633e9dde18637ff5239898abd94dca9a39fdb211a66555dd84c2fec')
+ '805d1130394e3ff18ae7043e111fe2ea045a7da6f290d298a670f9e2c35ba533')
groups=('dlang' 'dlang-gdc')
conflicts=('gdc1-bin' 'gdc1-hg' 'gdc-git')
@@ -72,7 +72,7 @@ package_gdc()
depends=('gcc' 'binutils')
optdepends=('libgphobos-devel: D standard library, GDC version')
provides=("d-compiler")
- pkgdesc="Compiler for D programming language wich uses gcc backend"
+ pkgdesc="Compiler for D programming language which uses gcc backend (2.064.2 frontend version)"
install -D -m755 $srcdir/gcc-build/gcc/gdc $pkgdir/usr/bin/gdc
install -D -m755 $srcdir/gcc-build/gcc/cc1d $pkgdir/usr/lib/gcc/$CHOST/$pkgver/cc1d
diff --git a/community/gdc/folders.diff b/community/gdc/folders.diff
index 05fc9991a..cf89e5d3d 100644
--- a/community/gdc/folders.diff
+++ b/community/gdc/folders.diff
@@ -1,33 +1,16 @@
-diff --git a/gcc/d/Make-lang.in b/gcc/d/Make-lang.in
-index 9570bf3..52addc0 100644
---- a/gcc/d/Make-lang.in
-+++ b/gcc/d/Make-lang.in
-@@ -25,10 +25,10 @@ D_TARGET_INSTALL_NAME = $(target_alias)-$(shell echo gdc|sed '$(program_transfor
-
- # This should be configured
- ifeq ($(host), $(target))
-- D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/d/$(version)
-+ D_include_dir = `echo $(exec_prefix) | sed -e 's|^$(prefix)||' -e 's|/[^/]*|/..|g'`/include/dlang/gdc/$(version)
- gcc_d_include_dir = $(libsubdir)/$(unlibsubdir)/..$(D_include_dir)
- else
-- gcc_d_include_dir = $(libsubdir)/include/d
-+ gcc_d_include_dir = $(libsubdir)/include/dlang/gdc
- endif
-
-
diff --git a/libphobos/configure.ac b/libphobos/configure.ac
-index dfb8fec..0b88ff4 100644
+index 69dfc35..89b8136 100644
--- a/libphobos/configure.ac
+++ b/libphobos/configure.ac
-@@ -220,9 +220,9 @@ dnl (# Default case for install directory for include files.) and on
+@@ -215,9 +215,9 @@ dnl (# Default case for install directory for include files.) and on
# will have to modify gcc/configure.ac ..
# For now, basic workaround for cross compilers ..
- if test "${host}" != "${build}"; then
+ if test "${host}" != "${target}"; then
- gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/d
-+ gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang/
++ gdc_include_dir='${libdir}/gcc/${host_alias}'/${d_gcc_ver}/include/dlang
else
- gdc_include_dir='${prefix}'/include/d/${d_gcc_ver}
-+ gdc_include_dir='${prefix}'/include/dlang/gdc/${d_gcc_ver}
++ gdc_include_dir='${prefix}'/include/dlang/gcc
fi
AC_SUBST(gdc_include_dir)
AC_ARG_WITH([cross-host],
diff --git a/community/lxappearance/PKGBUILD b/community/lxappearance/PKGBUILD
index 731b016b9..120f419df 100644
--- a/community/lxappearance/PKGBUILD
+++ b/community/lxappearance/PKGBUILD
@@ -1,11 +1,11 @@
-#$Id: PKGBUILD 101232 2013-11-20 09:52:30Z bpiotrowski $
-# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
+#$Id: PKGBUILD 103242 2013-12-31 06:53:57Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=lxappearance
-pkgver=0.5.3
-pkgrel=2
+pkgver=0.5.4
+pkgrel=1
pkgdesc='Feature-rich GTK+ theme switcher of the LXDE Desktop'
arch=('i686' 'x86_64')
license=('GPL2')
@@ -13,8 +13,8 @@ url='http://lxde.org/'
groups=('lxde')
depends=('gtk2' 'dbus-glib')
makedepends=('intltool')
-source=(http://downloads.sourceforge.net/sourceforge/lxde/${pkgname}-${pkgver}.tar.gz)
-md5sums=('9dfdc9bd45519d51b9df2ad6650c36f5')
+source=(http://downloads.sourceforge.net/sourceforge/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('c7b8c18368f757a8a60f21cb46d7d9b3')
build() {
cd $pkgname-$pkgver