summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg047.dnsready.net>2011-04-08 04:18:44 +0000
committerroot <root@rshg047.dnsready.net>2011-04-08 04:18:44 +0000
commit59075f0265483f32e9ac4c67ba9e69cb019ba044 (patch)
treed0384b724b17b888dcd1cf06dce9bc25655d1ba1 /community
parent3b216f42d91b33161572550f4556a9ba93d1cecb (diff)
Fri Apr 8 04:18:44 UTC 2011
Diffstat (limited to 'community')
-rw-r--r--community/expac/PKGBUILD26
-rw-r--r--community/llvm/PKGBUILD43
-rw-r--r--community/llvm/cindexer-clang-path.patch10
-rw-r--r--community/mongodb/PKGBUILD6
-rw-r--r--community/pam_mysql/PKGBUILD5
-rw-r--r--community/prosody/PKGBUILD10
-rw-r--r--community/prosody/fix-config.patch28
-rw-r--r--community/prosody/prosody.install7
-rw-r--r--community/qbittorrent/PKGBUILD4
-rw-r--r--community/snort/PKGBUILD8
-rw-r--r--community/sysstat/PKGBUILD9
-rw-r--r--community/tea/PKGBUILD6
12 files changed, 91 insertions, 71 deletions
diff --git a/community/expac/PKGBUILD b/community/expac/PKGBUILD
new file mode 100644
index 000000000..64d84c755
--- /dev/null
+++ b/community/expac/PKGBUILD
@@ -0,0 +1,26 @@
+# $Id: PKGBUILD 44424 2011-04-07 13:07:03Z dreisner $
+# Maintainer: Dave Reisner <d@falconindy.com>
+
+pkgname=expac
+pkgver=0.04
+pkgrel=1
+pkgdesc="pacman database extraction utility"
+arch=('i686' 'x86_64')
+url="http://github.com/falconindy/expac"
+license=('GPL')
+depends=('pacman')
+makedepends=('perl')
+source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz")
+md5sums=('a5a766f27d8147bf53cbc6cfd7d9e5c9')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make PREFIX=/usr DESTDIR="$pkgdir" install
+}
+
+# vim: ft=sh syn=sh
diff --git a/community/llvm/PKGBUILD b/community/llvm/PKGBUILD
index 7a80e112b..54bece439 100644
--- a/community/llvm/PKGBUILD
+++ b/community/llvm/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 39503 2011-02-11 00:00:17Z foutrelis $
+# $Id: PKGBUILD 44403 2011-04-07 11:36:47Z foutrelis $
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
# Contributor: Sebastian Nowicki <sebnow@gmail.com>
# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
@@ -9,26 +9,21 @@
# Contributor: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
pkgname=('llvm' 'llvm-ocaml' 'clang' 'clang-analyzer')
-pkgver=2.8
-pkgrel=5
+pkgver=2.9
+_gcc_ver=4.5.2
+pkgrel=1
arch=('i686' 'x86_64')
url="http://llvm.org/"
license=('custom:University of Illinois/NCSA Open Source License')
-makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml')
+makedepends=('gcc-libs' 'libffi' 'python2' 'ocaml' "gcc=$_gcc_ver")
source=(http://llvm.org/releases/$pkgver/$pkgname-$pkgver.tgz
http://llvm.org/releases/$pkgver/clang-$pkgver.tgz
- cpp-headers.patch
clang-plugin-loader-registry.patch
- clang-2.8-cindexer-clang-path.patch
- llvm-2.8-alignOf.patch
- clang-2.8-alignOf.patch)
-md5sums=('220d361b4d17051ff4bb21c64abe05ba'
- '10e14c901fc3728eecbd5b829e011b59'
- 'a5cd48e42dbab68d4c0169802c8ae55b'
+ cindexer-clang-path.patch)
+md5sums=('793138412d2af2c7c7f54615f8943771'
+ '634de18d04b7a4ded19ec4c17d23cfca'
'02c23b4aaca3445b8bf39fddb2f9906e'
- '338d254d6745568ebdcbe4e20b0057d5'
- 'd923655d211191d77c4437b9c1bfa851'
- '742a1a13cfdc1cb0a76b8bc3b19b190e')
+ '87a7162dbe99e9ffce6c40bd09f5f4f0')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -50,19 +45,12 @@ build() {
# Fix insecure rpath (http://bugs.archlinux.org/task/14017)
sed -i 's:$(RPATH) -Wl,$(\(ToolDir\|LibDir\|ExmplDir\))::g' Makefile.rules
- # Update hardcoded path to C++ header files
- patch -d tools/clang -Np1 -i "$srcdir/cpp-headers.patch"
-
# Get the correct list of symbols to export
# See http://lists.cs.uiuc.edu/pipermail/cfe-dev/2010-April/008559.html
patch -Np1 -i "$srcdir/clang-plugin-loader-registry.patch"
- # Fix C++0x name clashes (https://bugs.archlinux.org/task/22296)
- patch -Np0 -i "$srcdir/llvm-2.8-alignOf.patch"
- patch -d tools/clang -Np0 -i "$srcdir/clang-2.8-alignOf.patch"
-
# Fix clang path in CIndexer.cpp (https://bugs.archlinux.org/task/22799)
- patch -d tools/clang -Np1 -i "$srcdir/clang-2.8-cindexer-clang-path.patch"
+ patch -d tools/clang -Np0 -i "$srcdir/cindexer-clang-path.patch"
# Apply strip option to configure
_optimize_flag="--enable-optimize"
@@ -71,16 +59,15 @@ build() {
# Include location of libffi headers in CPPFLAGS
export CPPFLAGS="$CPPFLAGS $(pkg-config --cflags libffi)"
- # Well, this is supposed to be the final release
- sed -i 's/2.8rc/2.8/g' configure
-
./configure --prefix=/usr --libdir=/usr/lib/llvm --sysconfdir=/etc \
--enable-shared --enable-libffi \
--enable-bindings=ocaml --enable-targets=all \
--disable-expensive-checks --disable-debug-runtime \
--disable-assertions --with-binutils-include=/usr/include \
- $_optimize_flag
- make
+ $_optimize_flag \
+ --with-cxx-include-root=/usr/include/c++/$_gcc_ver \
+ --with-cxx-include-arch=$CHOST
+ make REQUIRES_RTTI=1
}
package_llvm() {
@@ -143,7 +130,7 @@ package_clang() {
url="http://clang.llvm.org/"
# It looks like clang still needs GCC to assemble and link object files
# See http://old.nabble.com/%22clang--v%22-shows-a-GCC-call-td28378453.html
- depends=("llvm=$pkgver-$pkgrel" 'gcc=4.5.2')
+ depends=("llvm=$pkgver-$pkgrel" "gcc=$_gcc_ver")
# Fix installation path for clang docs
sed -i 's:$(PROJ_prefix)/share/doc/llvm:$(PROJ_prefix)/share/doc/clang:' \
diff --git a/community/llvm/cindexer-clang-path.patch b/community/llvm/cindexer-clang-path.patch
new file mode 100644
index 000000000..ddaab690e
--- /dev/null
+++ b/community/llvm/cindexer-clang-path.patch
@@ -0,0 +1,10 @@
+--- tools/libclang/CIndexer.cpp.orig 2011-04-07 13:08:24.000000000 +0300
++++ tools/libclang/CIndexer.cpp 2011-04-07 13:11:52.224884642 +0300
+@@ -80,6 +80,7 @@ std::string CIndexer::getClangResourcesP
+
+ // We now have the CIndex directory, locate clang relative to it.
+ LibClangPath.eraseComponent();
++ LibClangPath.eraseComponent();
+ #endif
+
+ LibClangPath.appendComponent("clang");
diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD
index f295aee1c..ff18bc930 100644
--- a/community/mongodb/PKGBUILD
+++ b/community/mongodb/PKGBUILD
@@ -3,8 +3,8 @@
# Contributor: Alec Thomas
pkgname=mongodb
-pkgver=1.8.0
-pkgrel=2
+pkgver=1.8.1
+pkgrel=1
pkgdesc='A high-performance, open source, schema-free document-oriented database.'
arch=('i686' 'x86_64')
url='http://www.mongodb.org'
@@ -17,7 +17,7 @@ install="mongodb.install"
source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
'mongodb.rc'
'mongodb.conf')
-md5sums=('243b2776cbe8c70b3bbc402c855f4e82'
+md5sums=('e75a5cae641a53760df8cb866ad5d929'
'859f8f9bb32ef2bd21fec55ae9a87d0a'
'9e0ea3f96732bb7811f0b64dace56440')
diff --git a/community/pam_mysql/PKGBUILD b/community/pam_mysql/PKGBUILD
index 5f1539ad9..6d46854a7 100644
--- a/community/pam_mysql/PKGBUILD
+++ b/community/pam_mysql/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 42238 2011-03-15 20:26:27Z svenstaro $
+# $Id: PKGBUILD 44499 2011-04-07 20:43:51Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Arjan Timmerman<arjan@archlinux.org>
# Contributor: Manolis Tzanidakis
pkgname=pam_mysql
pkgver=0.7RC1
-pkgrel=3
+pkgrel=4
pkgdesc="A PAM module to authenticate users against mysql."
arch=(i686 x86_64)
license=('GPL')
@@ -17,6 +17,7 @@ options=(!libtool)
build() {
cd $srcdir/$pkgname-$pkgver
+ sed -i 's/pam_mysql_la_LIBADD = /pam_mysql_la_LIBADD = -lpam/g' Makefile.in
./configure --prefix=/usr
make
}
diff --git a/community/prosody/PKGBUILD b/community/prosody/PKGBUILD
index 20b61b157..e7622f468 100644
--- a/community/prosody/PKGBUILD
+++ b/community/prosody/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 44382 2011-04-06 21:47:54Z spupykin $
+# $Id: PKGBUILD 44453 2011-04-07 16:06:39Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Dwayne Bent <dbb.0@liqd.org>
# Contributor: Paul-Sebastian Manole <brokenthorn@gmail.com>
pkgname=prosody
-pkgver=0.7.0
-pkgrel=7
+pkgver=0.8.0
+pkgrel=1
pkgdesc="Lightweight and extensible Jabber/XMPP server written in Lua."
arch=('i686' 'x86_64')
url="http://prosody.im/"
@@ -20,10 +20,10 @@ source=("http://prosody.im/depot/${pkgver}/prosody-${pkgver}.tar.gz"
'prosody.rcd'
'prosody.logrotated'
'fix-config.patch')
-md5sums=('69cd4f4e89dbef668a6240cde419dedf'
+md5sums=('8b057f62875b46b4a8061853a0953473'
'd2b5f9c8e42bb31819e715eb1756ee53'
'26466fdbea87963a3ca6f48f76fe4a29'
- '431f78012ff4c1d66c173e0b0b3c7c16')
+ '59a1bf2dfd0bd386cef6fa646e2a3752')
build() {
cd "$srcdir/prosody-$pkgver"
diff --git a/community/prosody/fix-config.patch b/community/prosody/fix-config.patch
index bd9a5d755..8856bfb92 100644
--- a/community/prosody/fix-config.patch
+++ b/community/prosody/fix-config.patch
@@ -1,6 +1,6 @@
-diff -wbBur prosody-0.7.0/prosody.cfg.lua.dist prosody-0.7.0.my/prosody.cfg.lua.dist
---- prosody-0.7.0/prosody.cfg.lua.dist 2010-06-13 00:23:02.000000000 +0000
-+++ prosody-0.7.0.my/prosody.cfg.lua.dist 2011-01-27 16:09:24.000000000 +0000
+diff -wbBur prosody-0.8.0/prosody.cfg.lua.dist prosody-0.8.0.my/prosody.cfg.lua.dist
+--- prosody-0.8.0/prosody.cfg.lua.dist 2011-04-05 13:47:06.000000000 +0000
++++ prosody-0.8.0.my/prosody.cfg.lua.dist 2011-04-07 16:03:42.000000000 +0000
@@ -21,6 +21,8 @@
-- (see http://prosody.im/doc/creating_accounts for info)
-- Example: admins = { "user1@example.com", "user2@example.net" }
@@ -10,21 +10,23 @@ diff -wbBur prosody-0.7.0/prosody.cfg.lua.dist prosody-0.7.0.my/prosody.cfg.lua.
-- Enable use of libevent for better performance under high load
-- For more information see: http://prosody.im/doc/libevent
-@@ -54,7 +56,7 @@
- "register"; -- Allow users to register on this server using a client and change passwords
+@@ -59,7 +61,7 @@
+ --"admin_telnet"; -- Opens telnet console interface on localhost port 5582
-- Other specific functionality
- --"posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
+ "posix"; -- POSIX functionality, sends server to background, enables syslog, etc.
- --"console"; -- Opens admin telnet interface on localhost port 5582
--"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP"
--"httpserver"; -- Serve static files from a directory over HTTP
-@@ -90,7 +92,7 @@
-
+ --"groups"; -- Shared roster support
+@@ -123,8 +125,8 @@
-- Logging configuration
-- For advanced logging see http://prosody.im/doc/logging
--log = "prosody.log";
-+log = "/var/log/prosody/prosody.log";
- debug = false; -- Log debug messages?
-
- ----------- Virtual hosts -----------
+ log = {
+- info = "prosody.log"; -- Change 'info' to 'debug' for verbose logging
+- error = "prosody.err";
++ info = "/var/log/prosody/prosody.log"; -- Change 'info' to 'debug' for verbose logging
++ error = "/var/log/prosody/prosody.err";
+ -- "*syslog"; -- Uncomment this for logging to syslog
+ -- "*console"; -- Log to the console, useful for debugging with daemonize=false
+ }
diff --git a/community/prosody/prosody.install b/community/prosody/prosody.install
index 354a32ab1..f935e3d63 100644
--- a/community/prosody/prosody.install
+++ b/community/prosody/prosody.install
@@ -9,12 +9,7 @@ post_install() {
chown prosody:prosody var/lib/prosody
chown prosody:prosody var/log/prosody
-cat << EOF
-
-==> Documentation: http://wiki.archlinux.org/index.php/Prosody
-==> ChangeLog: pacman -Qc prosody
-
-EOF
+ echo ">> Documentation: http://wiki.archlinux.org/index.php/Prosody"
}
post_upgrade() {
diff --git a/community/qbittorrent/PKGBUILD b/community/qbittorrent/PKGBUILD
index d22966eed..e71871d01 100644
--- a/community/qbittorrent/PKGBUILD
+++ b/community/qbittorrent/PKGBUILD
@@ -3,7 +3,7 @@
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
pkgname=qbittorrent
-pkgver=2.7.1
+pkgver=2.7.2
pkgrel=1
pkgdesc="A bittorrent client written in C++ / Qt4 using the good libtorrent library"
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ optdepends=('python2: needed for search'
install='qbittorrent.install'
source=("http://downloads.sourceforge.net/sourceforge/qbittorrent/${pkgname}-${pkgver}.tar.gz"
'python2.patch')
-md5sums=('ce5c84cd0edc4c182466b207b3375423'
+md5sums=('0ebd9ff8a0963b5cc7092f328d6df105'
'db0d79fee8ce3470ad3741d36b02a94c')
build() {
diff --git a/community/snort/PKGBUILD b/community/snort/PKGBUILD
index c696c48c8..95a1ab34f 100644
--- a/community/snort/PKGBUILD
+++ b/community/snort/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 39884 2011-02-18 14:29:00Z lfleischer $
+# $Id: PKGBUILD 44417 2011-04-07 13:06:21Z lfleischer $
# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Hugo Doria <hugo@archlinux.org>
# Contributor: Kessia 'even' Pinheiro <kessiapinheiro at gmail.com>
@@ -6,7 +6,7 @@
# Contributor: Gregor Ibic <gregor.ibic@intelicom.si>
pkgname=snort
-pkgver=2.9.0.4
+pkgver=2.9.0.5
pkgrel=1
pkgdesc='A lightweight network intrusion detection system.'
arch=('i686' 'x86_64')
@@ -21,10 +21,10 @@ backup=('etc/conf.d/snort'
'etc/snort/classification.config')
options=('!makeflags' '!libtool')
install='snort.install'
-source=('http://www.snort.org/downloads/752'
+source=('http://www.snort.org/downloads/867'
'snort'
'snort.conf.d')
-md5sums=('1fe5639f635a96d4a2d52c8d1a94dcda'
+md5sums=('a7e6f0b013f767d09c99f8f91757e355'
'361b8b9e40b9af0164f6b3e3da2e8277'
'b4fb8a68490589cd34df93de7609bfac')
diff --git a/community/sysstat/PKGBUILD b/community/sysstat/PKGBUILD
index bd1d73fcd..5ba8968d1 100644
--- a/community/sysstat/PKGBUILD
+++ b/community/sysstat/PKGBUILD
@@ -1,18 +1,17 @@
-# $Id: PKGBUILD 42299 2011-03-16 10:38:19Z spupykin $
+# $Id: PKGBUILD 44500 2011-04-07 20:45:19Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Martin Devera <devik@cdi.cz>
pkgname=sysstat
pkgver=10.0.0
-pkgrel=1
+pkgrel=2
pkgdesc="a collection of performance monitoring tools (iostat,isag,mpstat,pidstat,sadf,sar)"
arch=('i686' 'x86_64')
url="http://pagesperso-orange.fr/sebastien.godard/"
license=('GPL')
-depends=('glibc')
+depends=('lm_sensors')
optdepends=('tk: to use isag'
- 'gnuplot: to use isag'
- 'lm_sensors')
+ 'gnuplot: to use isag')
options=(zipman)
source=(http://pagesperso-orange.fr/sebastien.godard/$pkgname-$pkgver.tar.gz
sysstat)
diff --git a/community/tea/PKGBUILD b/community/tea/PKGBUILD
index c59f35493..6d0054ea0 100644
--- a/community/tea/PKGBUILD
+++ b/community/tea/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 44100 2011-04-02 12:07:14Z spupykin $
+# $Id: PKGBUILD 44438 2011-04-07 13:23:53Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Roman Kyrylych <roman@archlinux.org>
@@ -6,7 +6,7 @@
# Contributor: Zsolt Varadi <sysop_xxl@fibermail.hu>
pkgname=tea
-pkgver=29.0.0
+pkgver=29.0.1
pkgrel=1
pkgdesc="A QT-based text editor for Linux and *BSD. With an ultimate small size TEA provides you hundreds of functions."
arch=('i686' 'x86_64')
@@ -16,7 +16,7 @@ depends=('qt' 'aspell' 'hunspell')
install=tea.install
source=(http://downloads.sourceforge.net/tea-editor/$pkgname-$pkgver.tar.bz2
tea.desktop)
-md5sums=('06babb64e26f2a2c925d9e47f0a7b583'
+md5sums=('079e5beb796a5df9da15c59df94ade77'
'377ace3363124f4c086de0babb820761')
build() {