summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-12-11 02:08:20 -0800
committerroot <root@rshg054.dnsready.net>2012-12-11 02:08:20 -0800
commit37d560a05f516614c5765f171a5defb494a55acf (patch)
tree8fb8668e185033a9b8972b460d843aa6d23f829b /community
parent4aef0a374e20e36cf2bf6e779d93789d9a5791ae (diff)
Tue Dec 11 02:05:08 PST 2012
Diffstat (limited to 'community')
-rw-r--r--community/cgminer/PKGBUILD8
-rw-r--r--community/distcc/PKGBUILD10
-rw-r--r--community/distcc/distccd.conf.d3
-rw-r--r--community/distcc/distccd.service4
-rw-r--r--community/leptonica/PKGBUILD6
-rw-r--r--community/pgadmin3/PKGBUILD6
-rw-r--r--community/rtl-sdr/PKGBUILD6
-rw-r--r--community/zeromq/PKGBUILD11
8 files changed, 29 insertions, 25 deletions
diff --git a/community/cgminer/PKGBUILD b/community/cgminer/PKGBUILD
index ab0cceaad..e6dbde9c8 100644
--- a/community/cgminer/PKGBUILD
+++ b/community/cgminer/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 80924 2012-12-07 01:06:40Z fyan $
+# $Id: PKGBUILD 81029 2012-12-10 12:02:49Z fyan $
# Maintainer: Felix Yan <felixonmars@gmail.com>
# Contributor: monson <holymonson@gmail.com>
# Contributor: Thomas Dziedzic < gostrc at gmail >
# Contributor: David Manouchehri <david@davidmanouchehri.com>
pkgname=cgminer
-pkgver=2.9.7
+pkgver=2.10.0
_build=
pkgrel=1
pkgdesc="Multi-threaded multi-pool CPU and GPU miner for bitcoin, forked from cpuminer."
@@ -34,7 +34,7 @@ build() {
# Here you may want to use custom CFLAGS
#export CFLAGS="-O2 -march=native -mtune=native -msse2"
- ./configure --prefix=/usr --enable-cpumining
+ ./configure --prefix=/usr --enable-cpumining --disable-adl
make
}
@@ -50,7 +50,7 @@ package() {
sed 's#/usr/local/bin#/usr/bin#g' example.conf > $pkgname.conf
install -Dm644 $pkgname.conf "$pkgdir"/etc/$pkgname.conf
}
-md5sums=('76fad4ce6b5d7e22e04067ba48032dcc'
+md5sums=('93437f0a26a409d9c06f7361befe9d0f'
'fe4a243fabe24608f5c05e40f0f118f6'
'ee39698273671fee0e98d4af16014c36'
'c2bb974adf92cc234fbf0136ebcb355d')
diff --git a/community/distcc/PKGBUILD b/community/distcc/PKGBUILD
index f0c84f1a4..367110407 100644
--- a/community/distcc/PKGBUILD
+++ b/community/distcc/PKGBUILD
@@ -1,17 +1,17 @@
-# $Id: PKGBUILD 75874 2012-09-04 15:27:48Z spupykin $
+# $Id: PKGBUILD 81014 2012-12-10 10:16:44Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Judd Vinet <jvinet@zeroflux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
pkgname=distcc
pkgver=3.1
-pkgrel=8
+pkgrel=9
pkgdesc="A distributed C, C++, Obj C compiler"
arch=('i686' 'x86_64')
url="http://code.google.com/p/distcc/"
license=('GPL')
depends=('gcc' 'popt' 'avahi')
-makedepends=('gtk2' 'pkgconfig' 'python2')
+makedepends=('gtk2' 'pkgconfig' 'python2' 'dbus')
optdepends=('gtk2: for distccmon-gnome'
'python2')
backup=(etc/conf.d/distccd)
@@ -21,8 +21,8 @@ source=(http://distcc.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2
distccd.service)
md5sums=('a1a9d3853df7133669fffec2a9aab9f3'
'1c918474372c09304772c20c4de484fa'
- '89aaf6e9072092e283465a14e83f0f94'
- 'bb24748257d9b0739e18b494cae08633')
+ '239aae53250e3e35288cba566bc0bbf1'
+ '09f0688da9c1840e518d2593bd5c3830')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
diff --git a/community/distcc/distccd.conf.d b/community/distcc/distccd.conf.d
index 8f90cb503..2fe7a4cc6 100644
--- a/community/distcc/distccd.conf.d
+++ b/community/distcc/distccd.conf.d
@@ -4,5 +4,4 @@
# You must explicitly add IPs (or subnets) that are allowed to connect,
# using the --allow switch. See the distccd manpage for more info.
#
-DISTCC_ARGS="--user nobody --allow 127.0.0.1"
-
+DISTCC_ARGS="--allow 127.0.0.1"
diff --git a/community/distcc/distccd.service b/community/distcc/distccd.service
index 5c3444ff6..0b72fecc3 100644
--- a/community/distcc/distccd.service
+++ b/community/distcc/distccd.service
@@ -1,10 +1,12 @@
[Unit]
Description=A distributed C/C++ compiler
Documentation=man:distccd(1)
+After=network.target
[Service]
+User=nobody
EnvironmentFile=/etc/conf.d/distccd
-ExecStart=/usr/bin/distccd --daemon --no-detach $DISTCC_ARGS
+ExecStart=/usr/bin/distccd --no-detach --daemon $DISTCC_ARGS
[Install]
WantedBy=multi-user.target
diff --git a/community/leptonica/PKGBUILD b/community/leptonica/PKGBUILD
index 8b6b3dfd5..779130797 100644
--- a/community/leptonica/PKGBUILD
+++ b/community/leptonica/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 75457 2012-08-24 20:30:51Z arodseth $
+# $Id: PKGBUILD 81033 2012-12-10 15:15:51Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Christoph Drexler <chrdr at gmx dot at>
pkgname=leptonica
pkgver=1.69
-pkgrel=4
+pkgrel=5
pkgdesc="Software that is broadly useful for image processing and image analysis applications"
arch=('i686' 'x86_64')
url="http://www.leptonica.com/"
license=('custom')
options=(!libtool)
-depends=('giflib' 'libjpeg' 'libpng' 'libtiff' 'zlib' 'libwebp=0.2.0')
+depends=('giflib' 'libjpeg' 'libpng' 'libtiff' 'zlib' 'libwebp=0.2.1')
source=(http://www.leptonica.com/source/leptonica-${pkgver}.tar.gz)
md5sums=('d4085c302cbcab7f9af9d3d6f004ab22')
diff --git a/community/pgadmin3/PKGBUILD b/community/pgadmin3/PKGBUILD
index e9d827e59..cdb46c450 100644
--- a/community/pgadmin3/PKGBUILD
+++ b/community/pgadmin3/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 76420 2012-09-17 16:09:17Z spupykin $
+# $Id: PKGBUILD 81020 2012-12-10 10:17:38Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: Benjamin Andresen <benny@klapmuetz.org>
# Contributor: bekks <eduard.warkentin@gmx.de>
pkgname=pgadmin3
-pkgver=1.16.0
+pkgver=1.16.1
pkgrel=1
pkgdesc="Comprehensive design and management interface for PostgreSQL"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ license=('custom')
depends=('wxgtk' 'postgresql-libs' 'libxslt')
makedepends=('libpqxx' 'krb5' 'postgresql' 'gendesk' 'imagemagick')
source=(http://ftp.postgresql.org/pub/pgadmin3/release/v${pkgver}/src/pgadmin3-${pkgver}.tar.gz)
-md5sums=('30ba5470a625176995a21099a9ae3058')
+md5sums=('f3bc59630f0dc9600d4ad125097ce2fa')
build() {
cd "$srcdir"
diff --git a/community/rtl-sdr/PKGBUILD b/community/rtl-sdr/PKGBUILD
index e3f275021..2cd445945 100644
--- a/community/rtl-sdr/PKGBUILD
+++ b/community/rtl-sdr/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 79669 2012-11-11 00:11:08Z kkeen $
+# $Id: PKGBUILD 81041 2012-12-10 21:47:51Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: Michael Düll <mail@akurei.me>
pkgname=rtl-sdr
-pkgver=20121111
-_commit="58a53039db2fdbeedc661bccd35476dfa23ff6cf"
+pkgver=20121210
+_commit="562fd7e8e3200fa876312e58427b3c9a7575d3fa"
pkgrel=1
pkgdesc="Driver for Realtek RTL2832U, allowing general purpose software defined radio (SDR)."
arch=('i686' 'x86_64')
diff --git a/community/zeromq/PKGBUILD b/community/zeromq/PKGBUILD
index 0131fe0a4..6f3f66b54 100644
--- a/community/zeromq/PKGBUILD
+++ b/community/zeromq/PKGBUILD
@@ -1,16 +1,18 @@
-# $Id: PKGBUILD 80560 2012-11-25 15:27:50Z kkeen $
+# $Id: PKGBUILD 81045 2012-12-11 02:47:01Z kkeen $
# Maintainer: Kyle Keen <keenerd@gmail.com>
pkgname=zeromq
pkgver=3.2.2
-pkgrel=1
+pkgrel=2
pkgdesc="Fast messaging system built on sockets, C and C++ bindings. aka 0MQ, ZMQ."
arch=('i686' 'x86_64')
url="http://www.zeromq.org"
license=('LGPL')
depends=('gcc-libs' 'util-linux')
makedepends=('python2')
-source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz)
-md5sums=('df68431d9300da84a1a5f9a2784e33de')
+source=(http://download.zeromq.org/$pkgname-$pkgver.tar.gz
+ https://raw.github.com/zeromq/cppzmq/master/zmq.hpp)
+md5sums=('df68431d9300da84a1a5f9a2784e33de'
+ '80b674e98fcc4b4f23ef8b08ce4b051d')
build() {
cd "$srcdir/$pkgname-$pkgver"
@@ -22,6 +24,7 @@ build() {
package() {
cd "$srcdir/$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
+ install -Dm644 "$srcdir/zmq.hpp" "$pkgdir/usr/include/zmq.hpp"
}