summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/cppcheck/PKGBUILD6
-rw-r--r--community/erlang-nox/PKGBUILD6
-rw-r--r--community/erlang/PKGBUILD8
-rw-r--r--community/gnujump/PKGBUILD39
-rw-r--r--community/gnujump/gnujump.desktop8
-rw-r--r--community/go/PKGBUILD26
-rw-r--r--community/nodejs/PKGBUILD6
-rw-r--r--community/python-pygit2/PKGBUILD30
-rw-r--r--community/qtcurve-gtk2/PKGBUILD14
-rw-r--r--community/scrypt/LICENSE23
-rw-r--r--community/scrypt/PKGBUILD28
-rwxr-xr-xcommunity/xnoise/PKGBUILD8
12 files changed, 168 insertions, 34 deletions
diff --git a/community/cppcheck/PKGBUILD b/community/cppcheck/PKGBUILD
index 6b2b58c2a..c6d4eb2f2 100644
--- a/community/cppcheck/PKGBUILD
+++ b/community/cppcheck/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 79443 2012-11-05 16:58:53Z stephane $
+# $Id: PKGBUILD 82520 2013-01-20 01:50:26Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
pkgname=cppcheck
-pkgver=1.57
+pkgver=1.58
pkgrel=1
pkgdesc="A tool for static C/C++ code analysis"
arch=('i686' 'x86_64')
@@ -11,7 +11,7 @@ license=('GPL')
depends=('pcre' 'qt')
makedepends=('docbook-xsl')
source=(http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
-sha1sums=('4753472689fdcb4276fde55e6e984597c87921bd')
+sha1sums=('c7f597c600c30b1a5e9c6b3228a11e9872d562e5')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/erlang-nox/PKGBUILD b/community/erlang-nox/PKGBUILD
index 792ea7184..921f8cc5b 100644
--- a/community/erlang-nox/PKGBUILD
+++ b/community/erlang-nox/PKGBUILD
@@ -8,10 +8,10 @@
pkgname=erlang-nox
pkgver=R15B03_1
-pkgrel=1
+pkgrel=2
pkgdesc='General-purpose concurrent functional programming language developed by Ericsson (headless version)'
arch=('x86_64' 'i686')
-url='http://www.erlang.org'
+url='http://www.erlang.org/'
license=('custom')
depends=('ncurses' 'openssl')
provides=('erlang')
@@ -29,7 +29,7 @@ build() {
cd "$srcdir/otp_src_${pkgver/_1/}"
msg2 'Configuring...'
- ./configure --prefix=/usr --enable-smp-support
+ ./configure --prefix=/usr --enable-smp-support --with-odbc
msg2 'Compiling...'
make
}
diff --git a/community/erlang/PKGBUILD b/community/erlang/PKGBUILD
index ee821ce07..09db3dde0 100644
--- a/community/erlang/PKGBUILD
+++ b/community/erlang/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 81307 2012-12-17 09:59:36Z arodseth $
+# $Id: PKGBUILD 82512 2013-01-19 21:47:45Z arodseth $
# Maintainer: Lukas Fleischer <archlinux@cryptocrack.de>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Vesa Kaihlavirta <vesa@archlinux.org>
@@ -8,10 +8,10 @@
pkgname=erlang
pkgver=R15B03_1
-pkgrel=1
+pkgrel=2
pkgdesc='General-purpose concurrent functional programming language developed by Ericsson'
arch=('x86_64' 'i686')
-url='http://www.erlang.org'
+url='http://www.erlang.org/'
license=('custom')
depends=('ncurses' 'glu' 'wxgtk' 'openssl')
makedepends=('perl' 'mesa' 'lksctp-tools')
@@ -27,7 +27,7 @@ build() {
cd "$srcdir/otp_src_${pkgver/_1/}"
msg2 'Configuring...'
- ./configure --prefix=/usr --enable-smp-support
+ ./configure --prefix=/usr --enable-smp-support --with-odbc
msg2 'Compiling...'
make
}
diff --git a/community/gnujump/PKGBUILD b/community/gnujump/PKGBUILD
new file mode 100644
index 000000000..0da4248af
--- /dev/null
+++ b/community/gnujump/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 82500 2013-01-19 17:34:43Z jsteel $
+# Maintainer: jsteel <mail at jsteel dot org>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+# Contributor: Patrik Ilg <p.ilg@arcor.de>
+
+pkgname=gnujump
+pkgver=1.0.8
+pkgrel=3
+pkgdesc="A clone of the simple yet addictive game Xjump"
+arch=('i686' 'x86_64')
+url="http://gnujump.es.gnu.org"
+license=('GPL3')
+depends=('libgl' 'sdl_image' 'sdl_mixer')
+makedepends=('mesa' 'glu')
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
+ ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname.png
+ $pkgname.desktop)
+md5sums=('a8bdd3402a9d12faa5835a2c41ef7b3e'
+ 'aff6af66e632095aa3154e952571f9b5'
+ 'd875e92130b669a4148908bc391a2a8c')
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ LDFLAGS="-lm"
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir"/ install
+
+ install -Dm644 "$srcdir"/$pkgname.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+ install -Dm644 "$srcdir"/$pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop
+}
diff --git a/community/gnujump/gnujump.desktop b/community/gnujump/gnujump.desktop
new file mode 100644
index 000000000..9e9d14739
--- /dev/null
+++ b/community/gnujump/gnujump.desktop
@@ -0,0 +1,8 @@
+[Desktop Entry]
+Type=Application
+Name=GNUjump
+Comment=A clone of the simple yet addictive game Xjump
+Exec=gnujump
+Icon=gnujump.png
+Terminal=false
+Categories=Game;ArcadeGame;
diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD
index 06bcb0b3e..8954a068a 100644
--- a/community/go/PKGBUILD
+++ b/community/go/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 80625 2012-11-27 11:18:45Z arodseth $
+# $Id: PKGBUILD 82502 2013-01-19 17:36:30Z arodseth $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Rémy Oudompheng <remy@archlinux.org>
@@ -10,10 +10,10 @@
pkgname=go
pkgver=1.0.3
-pkgrel=4
+pkgrel=5
epoch=2
pkgdesc='Google Go compiler and tools'
-arch=('x86_64' 'i686')
+arch=('x86_64' 'i686' 'armv6h')
url='http://golang.org/'
license=('custom')
depends=('perl' 'gawk')
@@ -31,18 +31,23 @@ build() {
if [ "$CARCH" == 'x86_64' ]; then
export GOARCH=amd64
- fi
- if [ "$CARCH" == 'i686' ]; then
+ elif [ "$CARCH" == 'i686' ]; then
export GOARCH=386
+ else
+ export GOARCH=arm
fi
-
export GOROOT_FINAL=/usr/lib/go
export GOOS=linux
+
cd src
bash make.bash
- # Enable ARM crosscompilation
- export GOARCH=arm
+ # Enable ARM crosscompilation for non-arm platforms
+ if [ "$CARCH" == 'x86_64' ]; then
+ export GOARCH=arm
+ elif [ "$CARCH" == 'i686' ]; then
+ export GOARCH=arm
+ fi
bash make.bash
}
@@ -51,9 +56,10 @@ check() {
if [ "$CARCH" == 'x86_64' ]; then
export GOARCH=amd64
- fi
- if [ "$CARCH" == 'i686' ]; then
+ elif [ "$CARCH" == 'i686' ]; then
export GOARCH=386
+ else
+ export GOARCH=arm
fi
export GOROOT=$srcdir/$pkgname
diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD
index b523a20c8..7b0af3087 100644
--- a/community/nodejs/PKGBUILD
+++ b/community/nodejs/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 82204 2013-01-11 18:56:25Z bpiotrowski $
+# $Id: PKGBUILD 82484 2013-01-19 14:04:44Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: James Campos <james.r.campos@gmail.com>
@@ -8,7 +8,7 @@
# Contributor: TIanyi Cui <tianyicui@gmail.com>
pkgname=nodejs
-pkgver=0.8.17
+pkgver=0.8.18
pkgrel=1
pkgdesc='Evented I/O for V8 javascript'
arch=('i686' 'x86_64')
@@ -18,7 +18,7 @@ depends=('openssl' 'python2' 'v8')
checkdepends=('curl') # curl used for check()
options=('!emptydirs')
source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz)
-sha256sums=('8f070b42ffb84fde9d3ed2f802b08664b94dda327a36bf08a80c8b7efcf8b29e')
+sha256sums=('1d63dd42f9bd22f087585ddf80a881c6acbe1664891b1dda3b71306fe9ae00f9')
build() {
cd node-v${pkgver}
diff --git a/community/python-pygit2/PKGBUILD b/community/python-pygit2/PKGBUILD
new file mode 100644
index 000000000..fa3dcbb15
--- /dev/null
+++ b/community/python-pygit2/PKGBUILD
@@ -0,0 +1,30 @@
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+
+pkgbase=python-pygit2
+pkgname=(python-pygit2 python2-pygit2)
+pkgver=0.17.3
+pkgrel=2
+pkgdesc='Python bindings for libgit2'
+url="https://github.com/libgit2/pygit2"
+depends=(libgit2)
+makedepends=(python python2)
+arch=(i686 x86_64)
+license=('GPL2')
+source=(https://github.com/libgit2/pygit2/archive/v${pkgver}.tar.gz)
+md5sums=('d7a03ddd2d3b0dee1c7ee89998dd3022')
+
+package_python-pygit2() {
+ cd "$srcdir/pygit2-$pkgver"
+ depends+=(python)
+ replaces=(python-libgit2)
+ conflicts=(python-libgit2)
+ LANG=en_US.UTF8 python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-pygit2() {
+ cd "$srcdir/pygit2-$pkgver"
+ depends+=(python2)
+ replaces=(python2-libgit2)
+ conflicts=(python2-libgit2)
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}
diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD
index f02f92c5c..9a53245bd 100644
--- a/community/qtcurve-gtk2/PKGBUILD
+++ b/community/qtcurve-gtk2/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 76418 2012-09-17 15:35:37Z svenstaro $
+# $Id: PKGBUILD 82497 2013-01-19 15:53:37Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=qtcurve-gtk2
-pkgver=1.8.15
-pkgrel=2
+pkgver=1.8.16
+pkgrel=1
pkgdesc="A configurable set of widget styles for KDE and Gtk"
arch=('i686' 'x86_64')
url="http://www.kde-look.org/content/show.php?content=40492"
@@ -14,16 +14,12 @@ depends=('gtk2')
makedepends=('cmake')
groups=('qtcurve')
options=('!libtool')
-source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2"
- cairo_flush_fix.patch)
-md5sums=('00054b1923f995fa55e0573730b9f3a6'
- '3aec00bd00af49ed42a47855ec37f670')
+source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2")
+md5sums=('8923caaa0704f6a30252a5eadb015d76')
build() {
cd "${srcdir}"
- patch -Np1 -i ${srcdir}/cairo_flush_fix.patch -d QtCurve-Gtk2-${pkgver}
-
mkdir -p build
cd build/
cmake ../QtCurve-Gtk2-${pkgver} \
diff --git a/community/scrypt/LICENSE b/community/scrypt/LICENSE
new file mode 100644
index 000000000..620fe9e58
--- /dev/null
+++ b/community/scrypt/LICENSE
@@ -0,0 +1,23 @@
+Copyright 2009 Colin Percival
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+1. Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.
diff --git a/community/scrypt/PKGBUILD b/community/scrypt/PKGBUILD
new file mode 100644
index 000000000..ebec0b4f3
--- /dev/null
+++ b/community/scrypt/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 82492 2013-01-19 15:11:52Z thestinger $
+# Maintainer: Daniel Micay <danielmicay@gmail.com>
+# Contributor: Oliver Herold <oliver - at - akephalos - dot - de>
+
+pkgname=scrypt
+pkgver=1.1.6
+pkgrel=3
+pkgdesc="key derivation function and encryption utility"
+arch=('i686' 'x86_64')
+depends=(openssl)
+url="http://www.tarsnap.com/scrypt/"
+license=('BSD')
+source=(http://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz LICENSE)
+md5sums=('a35523cd497f7283635ce881db39c2e2')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}
+md5sums=('a35523cd497f7283635ce881db39c2e2'
+ '46754c4c55dc7c70dbb3480dce6274da')
diff --git a/community/xnoise/PKGBUILD b/community/xnoise/PKGBUILD
index e44b7b3f7..6439d912f 100755
--- a/community/xnoise/PKGBUILD
+++ b/community/xnoise/PKGBUILD
@@ -1,15 +1,19 @@
-# $Id$
+# $Id: PKGBUILD 82522 2013-01-20 02:39:18Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: archtux <antonio dot arias99999 at gmail dot com>
pkgname=xnoise
pkgver=0.2.14
-pkgrel=5
+pkgrel=6
pkgdesc="Media player with a slick GUI, great speed and lots of features."
arch=('i686' 'x86_64')
url="http://www.xnoise-media-player.com/"
license=('GPL2')
depends=('desktop-file-utils' 'gnome-icon-theme' 'gstreamer0.10-base-plugins' 'gtk3' 'libsoup' 'sqlite' 'taglib')
+optdepends=('gstreamer0.10-good-plugins: Extra media codecs'
+ 'gstreamer0.10-bad-plugins: Extra media codecs'
+ 'gstreamer0.10-ugly-plugins: Extra media codecs'
+ 'gstreamer0.10-ffmpeg: Extra media codecs')
makedepends=('gettext' 'intltool')
options=('!libtool')
install=$pkgname.install