summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/geos/PKGBUILD17
-rw-r--r--community/gsasl/PKGBUILD6
-rw-r--r--community/kdenlive/PKGBUILD12
-rw-r--r--community/libnetfilter_queue/PKGBUILD8
-rw-r--r--community/libuser/PKGBUILD9
-rw-r--r--community/onboard/PKGBUILD3
-rw-r--r--community/os-prober/PKGBUILD14
-rw-r--r--community/perl-params-util/PKGBUILD65
-rw-r--r--community/pigeonhole/PKGBUILD11
-rw-r--r--community/postgis/PKGBUILD19
-rw-r--r--community/postgis/postgis.changelog7
11 files changed, 89 insertions, 82 deletions
diff --git a/community/geos/PKGBUILD b/community/geos/PKGBUILD
index 7c3a81189..be7875459 100644
--- a/community/geos/PKGBUILD
+++ b/community/geos/PKGBUILD
@@ -1,10 +1,11 @@
-# $Id: PKGBUILD 70399 2012-05-05 14:32:15Z jlichtblau $
+# $Id: PKGBUILD 71674 2012-05-31 23:36:16Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
+
pkgname=geos
-pkgver=3.3.3
+pkgver=3.3.4
pkgrel=1
pkgdesc="C++ port of the Java Topology Suite"
arch=('x86_64' 'i686')
@@ -12,20 +13,18 @@ url="http://trac.osgeo.org/geos/"
license=('LGPL')
depends=('gcc-libs' 'bash')
options=('!libtool' '!emptydirs')
-source=("http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.bz2")
-sha256sums=('dfcf4bd70ab212a5b7bad21d01b84748f101a545092b56dafdc3882ef3bddec9')
+source=(http://download.osgeo.org/$pkgname/$pkgname-$pkgver.tar.bz2)
+sha256sums=('cd5400aa5f3fe32246dfed5d238c5017e1808162c865c016480b3e6c07271904')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd ${srcdir}/$pkgname-$pkgver
./configure --prefix=/usr
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd ${srcdir}/$pkgname-$pkgver
- make DESTDIR="$pkgdir" install
+ make DESTDIR=${pkgdir} install
}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/gsasl/PKGBUILD b/community/gsasl/PKGBUILD
index d03a75570..26e7a259e 100644
--- a/community/gsasl/PKGBUILD
+++ b/community/gsasl/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 71580 2012-05-30 09:14:40Z spupykin $
+# $Id: PKGBUILD 71612 2012-05-31 08:51:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Orivej Desh <smpuj@bk.ru>
# Maintainer: Orivej Desh <smpuj@bk.ru>
pkgname=gsasl
pkgver=1.8.0
-pkgrel=1
+pkgrel=2
pkgdesc="Simple Authentication and Security Layer framework and a few common SASL mechanisms"
arch=("i686" "x86_64")
url="http://josefsson.org/gsasl/"
@@ -16,7 +16,7 @@ md5sums=('982fe54a20016aa46a871c084c990c36')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --with-gssapi-impl=mit
make
}
diff --git a/community/kdenlive/PKGBUILD b/community/kdenlive/PKGBUILD
index 7a85f0abb..853d1c499 100644
--- a/community/kdenlive/PKGBUILD
+++ b/community/kdenlive/PKGBUILD
@@ -1,13 +1,14 @@
-# $Id: PKGBUILD 70710 2012-05-15 11:27:19Z spupykin $
+# $Id: PKGBUILD 71628 2012-05-31 14:14:16Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Zuf <kontakt.zuf@gmail.com>
# Contributor: Darwin Bautista <djclue917@gmail.com>
pkgname=kdenlive
-pkgver=0.9
+pkgver=0.9.2
pkgrel=1
pkgdesc="A non-linear video editor for Linux"
arch=('i686' 'x86_64')
+# http://download.kde.org/stable/kdenlive/
url="http://www.kdenlive.org/"
license=('GPL')
depends=('kdebase-runtime' 'mlt' 'dvgrab' 'qjson' 'qimageblitz'
@@ -19,17 +20,14 @@ optdepends=('recordmydesktop'
'xine-ui')
install=kdenlive.install
options=('docs')
-source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.gz
- glu.patch)
-md5sums=('8ceb59444df9aa950fd6bc7300c4a90d'
- 'fd6c5fe46419ee505c562363d41f6e9f')
+source=(http://download.kde.org/stable/kdenlive/$pkgver/src/kdenlive-$pkgver.tar.bz2)
+md5sums=('40f108f26e2c2e08807a1c183d8764ec')
build() {
export LDFLAGS="$LDFLAGS -lX11"
cd "${srcdir}"
mkdir -p build
cd build
- (cd ../kdenlive-${pkgver} && patch -p1 <$srcdir/glu.patch)
cmake ../kdenlive-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
diff --git a/community/libnetfilter_queue/PKGBUILD b/community/libnetfilter_queue/PKGBUILD
index 6c37f7b9d..e7b74f128 100644
--- a/community/libnetfilter_queue/PKGBUILD
+++ b/community/libnetfilter_queue/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 66195 2012-02-23 03:06:28Z spupykin $
+# $Id: PKGBUILD 71614 2012-05-31 08:52:14Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Kevin Edmonds <edmondskevin@hotmail.com>
# Maintainer: Filip Wojciechowski, filip at loka dot pl
pkgname=libnetfilter_queue
-pkgver=1.0.0
-pkgrel=2
+pkgver=1.0.1
+pkgrel=1
pkgdesc="userspace library providing an API to packets that have been queued by the kernel packet filter"
arch=('i686' 'x86_64')
url="http://www.netfilter.org/projects/libnetfilter_queue/index.html"
@@ -14,7 +14,7 @@ depends=(libnfnetlink)
makedepends=(pkgconfig)
options=('!libtool')
source=(http://www.netfilter.org/projects/$pkgname/files/$pkgname-$pkgver.tar.bz2)
-md5sums=('af6a9ea350f63a13609bc3b47b5c395c')
+md5sums=('08b968cb2d36c24deb7f26a69f5d8602')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/libuser/PKGBUILD b/community/libuser/PKGBUILD
index dcf5d2bbf..639eade30 100644
--- a/community/libuser/PKGBUILD
+++ b/community/libuser/PKGBUILD
@@ -1,18 +1,19 @@
-# $Id: PKGBUILD 58190 2011-11-08 15:26:34Z spupykin $
+# $Id: PKGBUILD 71616 2012-05-31 09:49:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Thomas Dziedzic < gostrc at gmail >
pkgname=libuser
-pkgver=0.57.1
-pkgrel=2
+pkgver=0.57.6
+pkgrel=1
pkgdesc='A standardized interface for manipulating and administering user and group accounts.'
arch=('i686' 'x86_64')
license=('LGPL')
url='https://fedorahosted.org/libuser/'
depends=('python2' 'glib2' 'popt')
options=('!libtool')
+backup=('etc/libuser.conf')
source=("https://fedorahosted.org/releases/l/i/libuser/libuser-${pkgver}.tar.xz")
-md5sums=('be82c6941264d0b4bd04f95fb342ec7d')
+md5sums=('4a6410e51664570610da1b9a830ac8ec')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/onboard/PKGBUILD b/community/onboard/PKGBUILD
index b493ea4c0..1a39cbbdf 100644
--- a/community/onboard/PKGBUILD
+++ b/community/onboard/PKGBUILD
@@ -1,3 +1,4 @@
+# $Id: PKGBUILD 71667 2012-05-31 18:15:19Z ebelanger $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=onboard
@@ -8,7 +9,7 @@ arch=('i686' 'x86_64')
url="https://launchpad.net/onboard"
license=('GPL')
depends=('python2-cairo' 'dbus-python' 'python2-gobject' 'libwnck3' 'python2-virtkey' 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('python-distutils-extra')
+makedepends=('python2-distutils-extra')
optdepends=('at-spi2-atk: auto-show when editing text'
'mousetweaks: hover click with mouse')
options=('!emptydirs')
diff --git a/community/os-prober/PKGBUILD b/community/os-prober/PKGBUILD
index 26e4aaa4b..60969d142 100644
--- a/community/os-prober/PKGBUILD
+++ b/community/os-prober/PKGBUILD
@@ -1,21 +1,21 @@
-# $Id: PKGBUILD 63931 2012-02-07 13:00:00Z tredaelli $
+# $Id: PKGBUILD 71622 2012-05-31 12:59:02Z tredaelli $
# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
# Contributor: darkcoder <mario_vazq@hotmail.com>
pkgname=os-prober
-pkgver=1.49
-pkgrel=3
+pkgver=1.53
+pkgrel=1
pkgdesc="Utility to detect other OSes on a set of drives"
url="http://joey.kitenet.net/code/os-prober/"
arch=('i686' 'x86_64')
license=('GPL3')
depends=('sh')
source=(ftp://ftp.debian.org/debian/pool/main/o/${pkgname}/${pkgname}_${pkgver}.tar.gz)
-md5sums=('5a981493a7c16174e6454fcf6b39b1b5')
-sha512sums=('473f02807bdc971d6abf976f8a708691767ba85d45b54c1c87310c62626959f30e524aca2fb08843dfc859f26bd80cbbba016235137aa87db1c4151f6e893fa4')
+md5sums=('1435131b60b078a2a8301df3237a6829')
+sha512sums=('4e983d6774cb85df9bec1e8e7ca53d9eec6605bf7308b141d1ee1f118b11534e440a19c0aae17c38f717f433c1ef853ad5879feac1ba4ee10774b3f85bb544ad')
build() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$pkgname-$pkgver"
# adjust lib dir to allow detection of 64-bit distros
sed -i -e "s:/lib/ld\*\.so\*:/lib*/ld*.so*:g" os-probes/mounted/common/90linux-distro
@@ -25,7 +25,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname"
+ cd "$srcdir/$pkgname-$pkgver"
install -Dm755 linux-boot-prober "$pkgdir"/usr/bin/linux-boot-prober
install -Dm755 os-prober "$pkgdir"/usr/bin/os-prober
diff --git a/community/perl-params-util/PKGBUILD b/community/perl-params-util/PKGBUILD
index df95826e9..da772e5f4 100644
--- a/community/perl-params-util/PKGBUILD
+++ b/community/perl-params-util/PKGBUILD
@@ -1,48 +1,43 @@
-# Maintainer: Justin Davis <jrcd83@gmail.com>
-# $Id: PKGBUILD 57661 2011-11-01 00:18:52Z juster $
+# Maintainer: Justin Davis (juster) <jrcd83@gmail.com>
+# $Id: PKGBUILD 71654 2012-05-31 15:48:33Z juster $
pkgname=perl-params-util
-pkgver=1.04
+pkgver=1.07
pkgrel=1
-pkgdesc="Simple, compact and correct param-checking functions"
+pkgdesc='Simple, compact and correct param-checking functions'
arch=(i686 x86_64)
license=(PerlArtistic GPL)
options=(!emptydirs)
-depends=('perl>=5.5.30' 'perl-scalar-list-utils')
-makedepends=('perl-extutils-cbuilder>=0.27' 'perl-extutils-makemaker>=6.52'
- 'perl-pathtools')
-checkdepends=('perl-test-simple')
+depends=('perl>=5.5.30')
url=https://metacpan.org/release/Params-Util
-source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-${pkgver}.tar.gz")
-md5sums=(84bfb0a16cff67f2077ece0e24408b0f)
-sha512sums=(086b6e37ce24a423439e346c4fc7069cbb5bde6af5c259fa765616bf637597105ee379df5edca82fdeb3bb0e44d83c7704ea1fe09170acea389ffb54d77f3d3d)
-_distdir="${srcdir}/Params-Util-${pkgver}"
+source=("http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-$pkgver.tar.gz")
+md5sums=(02db120c0eef87aae1830cc62bdec37b)
+sha512sums=(ff471b01b33414fc5e1c68d97c21171a95d3418c33e3c45f9910cc768898690e35051506a83ad9403a200336654c14b8efc9d471c4b3fe3321047a7603d6fd56)
+_dir="$srcdir/Params-Util-$pkgver"
-build() {
- ( export PERL_MM_USE_DEFAULT=1 PERL5LIB="" \
- PERL_AUTOINSTALL=--skipdeps \
- PERL_MM_OPT="INSTALLDIRS=vendor DESTDIR='$pkgdir'" \
- PERL_MB_OPT="--installdirs vendor --destdir '$pkgdir'" \
- MODULEBUILDRC=/dev/null
+build()
+(
+ cd "$_dir"
+ export PERL_MM_USE_DEFAULT=1 PERL_AUTOINSTALL=--skipdeps
+ unset PERL5LIB PERL_MM_OPT
+ /usr/bin/perl Makefile.PL
+ make
+)
- cd "$_distdir"
- /usr/bin/perl Makefile.PL
- make
- )
-}
+check()
+(
+ cd "$_dir"
+ export PERL_MM_USE_DEFAULT=1
+ unset PERL5LIB
+ make test
+)
-check() {
- ( export PERL_MM_USE_DEFAULT=1 PERL5LIB=""
- cd "$_distdir"
- make test
- )
-}
-
-package() {
- cd "$_distdir"
- make DESTDIR="$pkgdir" install
- find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
-}
+package()
+(
+ cd "$_dir"
+ make install INSTALLDIRS=vendor DESTDIR="$pkgdir"
+ find "$pkgdir" -name .packlist -o -name perllocal.pod -delete
+)
# Local Variables:
# mode: shell-script
diff --git a/community/pigeonhole/PKGBUILD b/community/pigeonhole/PKGBUILD
index 9b6c3efaf..24a9ba7b7 100644
--- a/community/pigeonhole/PKGBUILD
+++ b/community/pigeonhole/PKGBUILD
@@ -4,12 +4,12 @@
# This must be built against the version of dovecot being used,
# else mail delivery will fail.
# Specify the version of dovecot to be used here:
-_dcpkgver=2.1.6
+_dcpkgver=2.1.7
# Make sure to bump pkgrel if changing this.
pkgname=pigeonhole
-pkgver=0.3.0
-pkgrel=7
+pkgver=0.3.1
+pkgrel=1
pkgdesc="Fully rewritten Sieve implementation for Dovecot v2.1"
arch=('i686' 'x86_64')
url="http://pigeonhole.dovecot.org/"
@@ -19,8 +19,8 @@ conflicts=('dovecot-sieve' 'pigeonhole-hg')
source=("http://www.rename-it.nl/dovecot/2.1/dovecot-2.1-$pkgname-$pkgver.tar.gz"{,.sig}
"dovecot.conf")
options=('!libtool')
-sha256sums=('2aeee8aa6dc700483b0a5a3d31f535abce71698ed1d467f11e931aeace2b0ada'
- '181213cd4af854966ff5bb6b5052b49b0b40c0c21999939b8451658053fa396d'
+sha256sums=('e95d86c5cd912c9a7e180414ffd5eee52e1b5dc8abef3d5762b950d1de86b5c7'
+ '9d4699435cb1e82d3ac943c37f2ef909cd80cab707cc8b23be0d087f0e80903f'
'a457a1691cfa82495fc0503bfa4b61e54b149e63400fe0f568dff2c24a3f7858')
build() {
@@ -37,4 +37,3 @@ package() {
install -m 644 -D "$srcdir/dovecot.conf" "$pkgdir/etc/ld.so.conf.d/dovecot.conf"
}
-
diff --git a/community/postgis/PKGBUILD b/community/postgis/PKGBUILD
index e04bd4d30..39464ea8e 100644
--- a/community/postgis/PKGBUILD
+++ b/community/postgis/PKGBUILD
@@ -1,29 +1,36 @@
-# $Id: PKGBUILD 57370 2011-10-26 14:27:28Z jlichtblau $
+# $Id: PKGBUILD 71631 2012-05-31 14:23:54Z andrea $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
# Contributor: William Rea <sillywilly@gmail.com>
pkgname=postgis
-pkgver=1.5.3
+pkgver=2.0.0
pkgrel=2
pkgdesc="Adds support for geographic objects to PostgreSQL"
arch=('i686' 'x86_64')
-url="http://postgis.refractions.net/"
+url="http://postgis.org/"
license=('GPL')
-depends=('postgresql' 'proj' 'geos')
+depends=('postgresql' 'gdal' 'json-c')
changelog=$pkgname.changelog
-source=(http://postgis.refractions.net/download/${pkgname}-${pkgver}.tar.gz)
-sha256sums=('a2334f8b229446c0497d48a430a40152a3b71a5da02f414a0340a0a025d416cf')
+options=('!libtool')
+source=("http://postgis.org/download/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('12179e24e348421c60c501590fda25bd349e2f697003958d9493f5c91b280081')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr
make
+
+ # Build utils (FS#25836)
+ cd utils
+ make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ cd utils
make DESTDIR="${pkgdir}" install
}
diff --git a/community/postgis/postgis.changelog b/community/postgis/postgis.changelog
index 16f9b925d..13d851351 100644
--- a/community/postgis/postgis.changelog
+++ b/community/postgis/postgis.changelog
@@ -1,3 +1,10 @@
+2012-05-31 Andrea Scarpino <andrea@archlinux.org>
+ * Add JSON-C support
+ * Build utils (FS#25836)
+
+2012-05-31 Andrea Scarpino <andrea@archlinux.org>
+ * Update to major release 2.0.0-1
+
2011-10-26 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* FS#26159 fix in postgis-1.5.3-2