diff options
-rw-r--r-- | community/intellij-idea-libs/PKGBUILD | 10 | ||||
-rw-r--r-- | community/lcdproc/PKGBUILD | 48 | ||||
-rw-r--r-- | community/lcdproc/lcdd.service | 11 | ||||
-rw-r--r-- | community/php-mongo/PKGBUILD | 31 | ||||
-rw-r--r-- | community/php-mongo/mongo.ini | 28 | ||||
-rw-r--r-- | community/qucs/PKGBUILD | 24 | ||||
-rw-r--r-- | community/qucs/qucs-gcc-4.5.1.patch | 410 | ||||
-rw-r--r-- | extra/feh/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/git/PKGBUILD | 8 | ||||
-rw-r--r-- | extra/json-c/PKGBUILD | 29 | ||||
-rw-r--r-- | extra/libgphoto2/PKGBUILD | 8 | ||||
-rw-r--r-- | extra/libindi/PKGBUILD | 14 | ||||
-rw-r--r-- | extra/pulseaudio/PKGBUILD | 4 | ||||
-rw-r--r-- | extra/syslog-ng/PKGBUILD | 8 | ||||
-rw-r--r-- | extra/x11-ssh-askpass/PKGBUILD | 10 | ||||
-rw-r--r-- | libre/distcc-nozeroconf/PKGBUILD | 59 | ||||
-rw-r--r-- | libre/distcc-nozeroconf/distccd.conf.d | 7 | ||||
-rw-r--r-- | libre/distcc-nozeroconf/distccd.service | 12 | ||||
-rw-r--r-- | libre/libretools/PKGBUILD | 6 | ||||
-rw-r--r-- | pcr/opendnssec/PKGBUILD | 11 |
20 files changed, 259 insertions, 485 deletions
diff --git a/community/intellij-idea-libs/PKGBUILD b/community/intellij-idea-libs/PKGBUILD index bcf67f648..e77686bc4 100644 --- a/community/intellij-idea-libs/PKGBUILD +++ b/community/intellij-idea-libs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 90936 2013-05-15 15:48:29Z stativ $ +# $Id: PKGBUILD 92669 2013-06-11 16:29:42Z andrea $ # Maintainer: Lukas Jirkovsky <l.jirkovsky@gmail.com> pkgname=intellij-idea-libs -pkgver=12.1.3 -_pkgver=129.451 +pkgver=12.1.4 +_pkgver=129.713 pkgrel=1 pkgdesc="Architecture dependend libraries needed by the Intellij Idea IDE" arch=('i686' 'x86_64') @@ -11,11 +11,9 @@ license=('apache') depends=('glibc') options=(!strip) source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz) -md5sums=('03aea501b9e1dc87a63a8c30399c4304') +md5sums=('573815dd7dbb6a66c19f7f77a1bb048f') package() { - cd "$srcdir" - install -d -m755 "$pkgdir/usr/share/intellijidea-ce/bin" install -d -m755 "$pkgdir/usr/lib" diff --git a/community/lcdproc/PKGBUILD b/community/lcdproc/PKGBUILD new file mode 100644 index 000000000..ced069659 --- /dev/null +++ b/community/lcdproc/PKGBUILD @@ -0,0 +1,48 @@ +# $Id: PKGBUILD 92663 2013-06-11 09:24:01Z idevolder $ +# Maintainer: BlackEagle <ike DOT devolder AT gmail DOT com> +# Contributor: Bernhard Walle <bernhard.walle@gmx.de> + +pkgname=lcdproc +pkgver=0.5.6 +pkgrel=3 +pkgdesc="Utility to drive one or more LCD (and LCD-like) devices" +url="http://lcdproc.omnipotent.net/" +license="GPL" +depends=('libusb-compat') +optdepends=( + 'perl: needed for some lcdproc tools' +) +backup=( + 'etc/LCDd.conf' + 'etc/lcdexec.conf' + 'etc/lcdproc.conf' + 'etc/lcdvc.conf' +) +arch=('i686' 'x86_64') +source=( + "http://switch.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz" + 'lcdd.service' +) + +build() { + cd "$pkgname-$pkgver" + ./configure \ + --prefix=/usr \ + --sbindir=/usr/bin \ + --sysconfdir=/etc \ + --enable-libusb \ + --enable-lcdproc-menus \ + --enable-stat-smbfs \ + --enable-drivers=all + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install + sed -e "s/server\/drivers\//\/usr\/lib\/lcdproc\//g" -i "$pkgdir/etc/LCDd.conf" + install -Dm644 "$srcdir/lcdd.service" "$pkgdir/usr/lib/systemd/system/lcdd.service" +} + +sha256sums=('bd2f43c30ff43b30f43110abe6b4a5bc8e0267cb9f57fa97cc5e5ef9488b984a' + '0acdc0fb9668e6d5e023349874301153a16935e1ad757d550c426a9a7ac64638') diff --git a/community/lcdproc/lcdd.service b/community/lcdproc/lcdd.service new file mode 100644 index 000000000..6b0072d0d --- /dev/null +++ b/community/lcdproc/lcdd.service @@ -0,0 +1,11 @@ +[Unit] +Description=LCD display driver +After=syslog.target + +[Service] +Type=forking +ExecStart=/usr/bin/LCDd -c /etc/LCDd.conf +ControlGroup=cpu:/ + +[Install] +WantedBy=multi-user.target diff --git a/community/php-mongo/PKGBUILD b/community/php-mongo/PKGBUILD new file mode 100644 index 000000000..33213a413 --- /dev/null +++ b/community/php-mongo/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 92665 2013-06-11 09:54:52Z idevolder $ +# Maintainer: BlackEagle < ike DOT devolder AT gmail DOT com > +# Contributor: Jarek Sedlacek <jareksedlacek@gmail.com> + +pkgname=php-mongo +pkgver=1.4.1 +pkgrel=2 +pkgdesc="Officially supported PHP driver for MongoDB" +arch=("i686" "x86_64") +url="http://www.mongodb.org/display/DOCS/PHP+Language+Center" +license=("APACHE") +depends=("php") +backup=("etc/php/conf.d/mongo.ini") +source=( + "http://pecl.php.net/get/mongo-$pkgver.tgz" + "mongo.ini" +) + +build() { + cd mongo-$pkgver + phpize + ./configure --prefix=/usr --enable-mongo +} + +package() { + cd mongo-$pkgver + make INSTALL_ROOT="$pkgdir" install + install -Dm644 "$srcdir/mongo.ini" "$pkgdir/etc/php/conf.d/mongo.ini" +} +sha256sums=('230e7d26eaa826c7aacfc90fd1128f8c390216abe7f588d3bbcd130bd1fb84b6' + 'c89685eee842d5c3a85149a5bb8e310e62bf1a17f94183bb66401593ab2b191b') diff --git a/community/php-mongo/mongo.ini b/community/php-mongo/mongo.ini new file mode 100644 index 000000000..e9e8dbac1 --- /dev/null +++ b/community/php-mongo/mongo.ini @@ -0,0 +1,28 @@ +; Tell PHP to load the Mongo Extension on startup +extension=mongo.so + +[mongo] +; If the driver should reconnect to mongo +mongo.auto_reconnect = False + +; Whether to allow persistent connections +mongo.allow_persistent = On + +; Maximum number of persistent connections (-1 means unlimited) +mongo.max_persistent = -1 + +; Maximum number of links (persistent and non-persistent, -1 means unlimited) +mongo.max_connections = -1 + +; Default host for mongo connection +mongo.default_host = localhost + +; Default port for mongo database +mongo.default_port = 27017 + +; When saving files to the database, size of chunks to split them into +mongo.chunk_size = 262400 + +; Specify an alternate character to $ to use for special db functions ($set, $push, $exists, etc.) +mongo.cmd = "$" + diff --git a/community/qucs/PKGBUILD b/community/qucs/PKGBUILD index 725db0efb..c8063a13f 100644 --- a/community/qucs/PKGBUILD +++ b/community/qucs/PKGBUILD @@ -1,34 +1,28 @@ -# $Id: PKGBUILD 88012 2013-04-09 21:50:26Z eric $ +# $Id: PKGBUILD 92667 2013-06-11 16:18:02Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Víctor Martínez Romanos <vmromanos@gmail.com> pkgname=qucs -pkgver=0.0.16 -pkgrel=2 +pkgver=0.0.17s130610 +pkgrel=1 pkgdesc="An integrated circuit simulator with a graphical user interface" arch=('i686' 'x86_64') url="http://qucs.sourceforge.net" license=('GPL') -depends=('qt3') +depends=('gcc-libs' 'qt4') optdepends=('freehdl: to permit digital circuit simulation' 'asco: to enable circuit optimization' 'perl') -source=(http://downloads.sourceforge.net/sourceforge/qucs/$pkgname-$pkgver.tar.gz - qucs-gcc-4.5.1.patch) -md5sums=('c916502171d422ab168fe5fc681b29d8' - '6fd31dc632cdef53f8c2566ad782901a') +source=("http://downloads.sourceforge.net/project/qucs/qucs/$(echo $pkgver | cut -f1 -ds)-snapshots/qucs-${pkgver/s/.}.tar.gz") +md5sums=('47dead7df86419bf121d9c1c45f3cdfa') build() { - cd $srcdir/$pkgname-$pkgver - - export PATH=$QTDIR/bin:$PATH - - [ $NOEXTRACT -eq 1 ] || patch -p1 <$srcdir/qucs-gcc-4.5.1.patch - [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr + cd $srcdir/$pkgname-${pkgver/s/.} + ./configure --prefix=/usr make } package() { - cd $srcdir/$pkgname-$pkgver + cd $srcdir/$pkgname-${pkgver/s/.} make DESTDIR=$pkgdir install } diff --git a/community/qucs/qucs-gcc-4.5.1.patch b/community/qucs/qucs-gcc-4.5.1.patch deleted file mode 100644 index e29c11d39..000000000 --- a/community/qucs/qucs-gcc-4.5.1.patch +++ /dev/null @@ -1,410 +0,0 @@ -diff -wbBur qucs-0.0.16/qucs-core/src/components/spfile.cpp qucs-0.0.16.my/qucs-core/src/components/spfile.cpp ---- qucs-0.0.16/qucs-core/src/components/spfile.cpp 2011-03-17 17:02:08.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/components/spfile.cpp 2011-03-29 15:28:06.000000000 +0000 -@@ -409,8 +411,8 @@ - Kx * norm (1.0 - s.get (0, 0) * Sopt)); - c.set (1, 1, norm (s.get (1, 0)) * ((Fmin - 1) + Kx * norm (Sopt))); - c.set (0, 1, s.get (0, 0) / s.get (1, 0) * c.get (1, 1) - -- conj (s.get (1, 0)) * conj (Sopt) * Kx); -- c.set (1, 0, conj (c.get (0, 1))); -+ tr1::conj (s.get (1, 0)) * tr1::conj (Sopt) * Kx); -+ c.set (1, 0, tr1::conj (c.get (0, 1))); - return c; - } - -@@ -422,7 +424,7 @@ - s.getCols () == 2 && c.getCols () == 2); - nr_complex_t n1, n2; - n1 = c.get (0, 0) * norm (s.get (1, 0)) - -- 2 * real (c.get (0, 1) * s.get (1, 0) * conj (s.get (0, 0))) + -+ 2 * real (c.get (0, 1) * s.get (1, 0) * tr1::conj (s.get (0, 0))) + - c.get (1, 1) * norm (s.get (0, 0)); - n2 = 2.0 * (c.get (1, 1) * s.get (0, 0) - - c.get (0, 1) * s.get (1, 0)) / (c.get (1, 1) + n1); -@@ -440,7 +442,7 @@ - - // equivalent noise resistance - Rn = real ((c (0, 0) - 2.0 * -- real (c (0, 1) * conj ((1.0 + s (0, 0)) / s (1, 0))) + -+ real (c (0, 1) * tr1::conj ((1.0 + s (0, 0)) / s (1, 0))) + - c (1, 1) * norm ((1.0 + s (0, 0)) / s (1, 0))) / 4.0); - Rn = Rn * z0; - -diff -wbBur qucs-0.0.16/qucs-core/src/evaluate.cpp qucs-0.0.16.my/qucs-core/src/evaluate.cpp ---- qucs-0.0.16/qucs-core/src/evaluate.cpp 2011-03-11 20:42:20.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/evaluate.cpp 2011-03-29 15:36:29.000000000 +0000 -@@ -1143,7 +1143,7 @@ - constant * evaluate::conj_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (conj (*c1)); -+ _RETC (tr1::conj (*c1)); - } - - constant * evaluate::conj_v (constant * args) { -@@ -1443,7 +1443,7 @@ - constant * evaluate::arcsin_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (asin (*c1)); -+ _RETC (tr1::asin (*c1)); - } - - constant * evaluate::arcsin_v (constant * args) { -@@ -1462,7 +1462,7 @@ - constant * evaluate::arccos_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (acos (*c1)); -+ _RETC (tr1::acos (*c1)); - } - - constant * evaluate::arccos_v (constant * args) { -@@ -1481,7 +1481,7 @@ - constant * evaluate::arctan_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (atan (*c1)); -+ _RETC (tr1::atan (*c1)); - } - - constant * evaluate::arctan_v (constant * args) { -@@ -1557,7 +1557,7 @@ - constant * evaluate::arcsec_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (acos (1.0 / *c1)); -+ _RETC (tr1::acos (1.0 / *c1)); - } - - constant * evaluate::arcsec_v (constant * args) { -@@ -1595,7 +1595,7 @@ - constant * evaluate::arccosec_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (asin (1.0 / *c1)); -+ _RETC (tr1::asin (1.0 / *c1)); - } - - constant * evaluate::arccosec_v (constant * args) { -@@ -1614,7 +1614,7 @@ - constant * evaluate::arsinh_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (asinh (*c1)); -+ _RETC (tr1::asinh (*c1)); - } - - constant * evaluate::arsinh_v (constant * args) { -@@ -1634,7 +1634,7 @@ - constant * evaluate::arcosech_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (asinh (1.0 / *c1)); -+ _RETC (tr1::asinh (1.0 / *c1)); - } - - constant * evaluate::arcosech_v (constant * args) { -@@ -1647,13 +1647,13 @@ - constant * evaluate::arcosh_d (constant * args) { - _ARD0 (d1); - _DEFC (); -- _RETC (acosh (nr_complex_t (d1))); -+ _RETC (tr1::acosh (nr_complex_t (d1))); - } - - constant * evaluate::arcosh_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (acosh (*c1)); -+ _RETC (tr1::acosh (*c1)); - } - - constant * evaluate::arcosh_v (constant * args) { -@@ -1691,7 +1691,7 @@ - constant * evaluate::artanh_c (constant * args) { - _ARC0 (c1); - _DEFC (); -- _RETC (atanh (*c1)); -+ _RETC (tr1::atanh (*c1)); - } - - constant * evaluate::artanh_v (constant * args) { -@@ -2649,7 +2649,7 @@ - _DEFD (); - nr_double_t k; - k = (1 - norm (m->get (0, 0))) / -- (abs (m->get (1, 1) - conj (m->get (0, 0)) * det (*m)) + -+ (abs (m->get (1, 1) - tr1::conj (m->get (0, 0)) * det (*m)) + - abs (m->get (0, 1) * m->get (1, 0))); - _RETD (k); - } -@@ -2669,7 +2669,7 @@ - _DEFD (); - nr_double_t k; - k = (1 - norm (m->get (1, 1))) / -- (abs (m->get (0, 0) - conj (m->get (1, 1)) * det (*m)) + -+ (abs (m->get (0, 0) - tr1::conj (m->get (1, 1)) * det (*m)) + - abs (m->get (0, 1) * m->get (1, 0))); - _RETD (k); - } -@@ -3662,14 +3662,14 @@ - _ARD0 (d1); - _ARC1 (z); - _DEFC (); -- _RETC (10.0 * log10 (norm (d1) / conj (*z) / 0.001)); -+ _RETC (10.0 * log10 (norm (d1) / tr1::conj (*z) / 0.001)); - } - - constant * evaluate::dbm_c_c (constant * args) { - _ARC0 (c1); - _ARC1 (z); - _DEFC (); -- _RETC (10.0 * log10 (norm (*c1) / conj (*z) / 0.001)); -+ _RETC (10.0 * log10 (norm (*c1) / tr1::conj (*z) / 0.001)); - } - - constant * evaluate::dbm_v_c (constant * args) { -diff -wbBur qucs-0.0.16/qucs-core/src/math/complex.cpp qucs-0.0.16.my/qucs-core/src/math/complex.cpp ---- qucs-0.0.16/qucs-core/src/math/complex.cpp 2011-03-11 20:42:21.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/math/complex.cpp 2011-03-29 15:21:58.000000000 +0000 -@@ -366,7 +367,7 @@ - \return arc tangent of z - */ - nr_complex_t atan2 (const nr_complex_t y, const nr_complex_t x) { -- nr_complex_t a = atan (y / x); -+ nr_complex_t a = tr1::atan (y / x); - return real (x) > 0.0 ? a : -a; - } - #endif -diff -wbBur qucs-0.0.16/qucs-core/src/math/complex.h qucs-0.0.16.my/qucs-core/src/math/complex.h ---- qucs-0.0.16/qucs-core/src/math/complex.h 2011-03-17 17:01:42.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/math/complex.h 2011-03-29 15:29:01.000000000 +0000 -@@ -33,7 +33,6 @@ - #elif defined HAVE_TR1_COMPLEX - #include <tr1/complex> - using namespace std; --using namespace std::tr1; - typedef std::complex<nr_double_t> nr_complex_t; - #else - #include <complex> -diff -wbBur qucs-0.0.16/qucs-core/src/matrix.cpp qucs-0.0.16.my/qucs-core/src/matrix.cpp ---- qucs-0.0.16/qucs-core/src/matrix.cpp 2011-03-11 20:42:20.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/matrix.cpp 2011-03-29 14:52:17.000000000 +0000 -@@ -504,7 +504,7 @@ - matrix res (a.getRows (), a.getCols ()); - for (int r = 0; r < a.getRows (); r++) - for (int c = 0; c < a.getCols (); c++) -- res.set (r, c, conj (a.get (r, c))); -+ res.set (r, c, tr1::conj (a.get (r, c))); - return res; - } - -@@ -1176,12 +1176,12 @@ - - assert (s.getRows () >= 2 && s.getCols () >= 2); - -- a.set (0, 0, (conj (z1) + z1 * s (0, 0) - -- conj (z1) * s (1, 1) - z1 * d) / n); -- a.set (0, 1, (conj (z1) * conj (z2) + z1 * conj (z2) * s (0, 0) + -- conj (z1) * z2 * s (1, 1) + z1 * z2 * d) / n); -+ a.set (0, 0, (tr1::conj (z1) + z1 * s (0, 0) - -+ tr1::conj (z1) * s (1, 1) - z1 * d) / n); -+ a.set (0, 1, (tr1::conj (z1) * tr1::conj (z2) + z1 * tr1::conj (z2) * s (0, 0) + -+ tr1::conj (z1) * z2 * s (1, 1) + z1 * z2 * d) / n); - a.set (1, 0, (1.0 - s (0, 0) - s (1, 1) + d) / n); -- a.set (1, 1, (conj (z2) - conj (z2) * s (0, 0) + -+ a.set (1, 1, (tr1::conj (z2) - tr1::conj (z2) * s (0, 0) + - z2 * s (1, 1) - z2 * d) / n); - return a; - } -@@ -1219,12 +1219,12 @@ - assert (a.getRows () >= 2 && a.getCols () >= 2); - - s.set (0, 0, (a (0, 0) * z2 + a (0, 1) -- - a (1, 0) * conj (z1) * z2 - a (1, 1) * conj (z1)) / n); -+ - a (1, 0) * tr1::conj (z1) * z2 - a (1, 1) * tr1::conj (z1)) / n); - s.set (0, 1, (a (0, 0) * a (1, 1) - - a (0, 1) * a (1, 0)) * d / n); - s.set (1, 0, d / n); -- s.set (1, 1, (a (1, 1) * z1 - a (0, 0) * conj (z2) + -- a (0, 1) - a (1, 0) * z1 * conj (z2)) / n); -+ s.set (1, 1, (a (1, 1) * z1 - a (0, 0) * tr1::conj (z2) + -+ a (0, 1) - a (1, 0) * z1 * tr1::conj (z2)) / n); - return s; - } - -diff -wbBur qucs-0.0.16/qucs-core/src/spsolver.cpp qucs-0.0.16.my/qucs-core/src/spsolver.cpp ---- qucs-0.0.16/qucs-core/src/spsolver.cpp 2011-03-11 20:42:20.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/spsolver.cpp 2011-03-29 14:54:27.000000000 +0000 -@@ -319,14 +319,14 @@ - - p = - c->getN (i1, j1) + c->getN (k, j1) * k1 + c->getN (l, j1) * k2 + -- conj (k3) * (c->getN (i1, k) + c->getN (k, k) * k1 + -+ tr1::conj (k3) * (c->getN (i1, k) + c->getN (k, k) * k1 + - c->getN (l, k) * k2) + -- conj (k4) * (c->getN (i1, l) + c->getN (k, l) * k1 + -+ tr1::conj (k4) * (c->getN (i1, l) + c->getN (k, l) * k1 + - c->getN (l, l) * k2); - result->setN (i2, j2, p); - - if (i2 >= j2) break; // the other half need not be computed -- result->setN (j2, i2, conj (p)); -+ result->setN (j2, i2, tr1::conj (p)); - i2++; - } - -@@ -378,13 +378,13 @@ - // compute C'ij - p = c->getN (i1, j1) + - c->getN (k, j1) * d->getS (l, l) * c->getS (i1, k) * tiny2 / t + -- c->getN (i1, k) * conj (d->getS (l, l) * c->getS (j1, k) * tiny2 / t) + -+ c->getN (i1, k) * tr1::conj (d->getS (l, l) * c->getS (j1, k) * tiny2 / t) + - (c->getN (k, k) * norm (d->getS (l, l)) + d->getN (l, l)) * -- c->getS (i1, k) * conj (c->getS (j1, k)) * tiny4 / norm (t); -+ c->getS (i1, k) * tr1::conj (c->getS (j1, k)) * tiny4 / norm (t); - - result->setN (i2, j2, p); - if (i2 >= j2) break; // the other half need not be computed -- result->setN (j2, i2, conj (p)); -+ result->setN (j2, i2, tr1::conj (p)); - i2++; - } - -@@ -410,12 +410,12 @@ - - // compute C'ij - p = (c->getN (k, k) * d->getS (l, l) + -- d->getN (l, l) * conj (c->getS (k, k))) * -- c->getS (i1, k) * conj (d->getS (j1, l)) * tiny3 / norm (t) + -+ d->getN (l, l) * tr1::conj (c->getS (k, k))) * -+ c->getS (i1, k) * tr1::conj (d->getS (j1, l)) * tiny3 / norm (t) + - d->getN (l, j1) * c->getS (i1, k) * tiny1 / t + -- c->getN (i1, k) * conj (d->getS (j1, l) * tiny1 / t); -+ c->getN (i1, k) * tr1::conj (d->getS (j1, l) * tiny1 / t); - result->setN (i2, j2, p); -- result->setN (j2, i2, conj (p)); -+ result->setN (j2, i2, tr1::conj (p)); - i2++; - } - -@@ -428,12 +428,12 @@ - // compute C'ij - p = d->getN (i1, j1) + - (d->getN (l, l) * norm (c->getS (k, k)) + c->getN (k, k)) * -- d->getS (i1, l) * conj (d->getS (j1, l)) * tiny4 / norm (t) + -- d->getN (i1, l) * conj (c->getS (k, k) * d->getS (j1, l) * tiny2 / t) + -+ d->getS (i1, l) * tr1::conj (d->getS (j1, l)) * tiny4 / norm (t) + -+ d->getN (i1, l) * tr1::conj (c->getS (k, k) * d->getS (j1, l) * tiny2 / t) + - d->getN (l, j1) * c->getS (k, k) * d->getS (i1, l) * tiny2 / t; - result->setN (i2, j2, p); - if (i2 >= j2) break; // the other half need not be computed -- result->setN (j2, i2, conj (p)); -+ result->setN (j2, i2, tr1::conj (p)); - i2++; - } - -@@ -1042,7 +1042,7 @@ - // linear noise figure - F = real (1.0 + c22 / norm (s21)); - n1 = -- c11 * norm (s21) - 2.0 * real (c12 * s21 * conj (s11)) + -+ c11 * norm (s21) - 2.0 * real (c12 * s21 * tr1::conj (s11)) + - c22 * norm (s11); - n2 = 2.0 * (c22 * s11 - c12 * s21) / (c22 + n1); - -@@ -1058,7 +1058,7 @@ - norm (s21) / (1.0 + norm (Sopt))); - - // equivalent noise resistance -- Rn = real ((c11 - 2.0 * real (c12 * conj ((1.0 + s11) / s21)) + -+ Rn = real ((c11 - 2.0 * real (c12 * tr1::conj ((1.0 + s11) / s21)) + - c22 * norm ((1.0 + s11) / s21)) / 4.0); - Rn = Rn * z0; - -diff -wbBur qucs-0.0.16/qucs-core/src/tvector.cpp qucs-0.0.16.my/qucs-core/src/tvector.cpp ---- qucs-0.0.16/qucs-core/src/tvector.cpp 2011-03-11 20:42:20.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/tvector.cpp 2011-03-29 15:10:09.000000000 +0000 -@@ -390,7 +390,7 @@ - tvector<nr_type_t> conj (tvector<nr_type_t> a) { - int n = a.getSize (); - tvector<nr_type_t> res (n); -- for (int i = 0; i < n; i++) res.set (i, conj (a.get (i))); -+ for (int i = 0; i < n; i++) res.set (i, tr1::conj (a.get (i))); - return res; - } - -diff -wbBur qucs-0.0.16/qucs-core/src/vector.cpp qucs-0.0.16.my/qucs-core/src/vector.cpp ---- qucs-0.0.16/qucs-core/src/vector.cpp 2011-03-17 17:01:25.000000000 +0000 -+++ qucs-0.0.16.my/qucs-core/src/vector.cpp 2011-03-29 15:33:57.000000000 +0000 -@@ -354,7 +354,7 @@ - - vector conj (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (conj (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::conj (v.get (i)), i); - return result; - } - -@@ -450,13 +450,13 @@ - - vector asin (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (asin (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::asin (v.get (i)), i); - return result; - } - - vector acos (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (acos (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::acos (v.get (i)), i); - return result; - } - -@@ -474,7 +474,7 @@ - - vector atan (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (atan (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::atan (v.get (i)), i); - return result; - } - -@@ -498,7 +498,7 @@ - - vector asinh (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (asinh (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::asinh (v.get (i)), i); - return result; - } - -@@ -510,7 +510,7 @@ - - vector acosh (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (acosh (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::acosh (v.get (i)), i); - return result; - } - -@@ -528,7 +528,7 @@ - - vector atanh (vector v) { - vector result (v); -- for (int i = 0; i < v.getSize (); i++) result.set (atanh (v.get (i)), i); -+ for (int i = 0; i < v.getSize (); i++) result.set (tr1::atanh (v.get (i)), i); - return result; - } - -@@ -1200,7 +1200,7 @@ - vector dbm (vector v, const nr_complex_t z) { - vector result (v); - for (int i = 0; i < v.getSize (); i++) -- result.set (10.0 * log10 (norm (v.get (i)) / conj (z) / 0.001), i); -+ result.set (10.0 * log10 (norm (v.get (i)) / tr1::conj (z) / 0.001), i); - return result; - } - diff --git a/extra/feh/PKGBUILD b/extra/feh/PKGBUILD index 5a1763e55..de86e00d3 100644 --- a/extra/feh/PKGBUILD +++ b/extra/feh/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 184374 2013-05-06 19:37:01Z foutrelis $ +# $Id: PKGBUILD 188169 2013-06-11 11:59:02Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Andrea Scarpino <andrea@archlinux.org> # Contributor: dorphell <dorphell@archlinux.org> # Contributor: Tom Newsom <Jeepster@gmx.co.uk> pkgname=feh -pkgver=2.9.2 +pkgver=2.9.3 pkgrel=1 pkgdesc='Fast and light imlib2-based image viewer' url='http://feh.finalrewind.org/' @@ -16,7 +16,7 @@ optdepends=('perl: feh-cam, webcam wrapper for feh' 'imagemagick: support more file formats') makedepends=('libxt') source=("${url}${pkgname}-${pkgver}.tar.bz2"{,.asc}) -sha1sums=('4d7d183491f916c8f1db668065f986f4a845503e' 'SKIP') +sha1sums=('6e93c9bbc339d36002ead189d0a94880f58876bd' 'SKIP') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/git/PKGBUILD b/extra/git/PKGBUILD index 5216969f9..cfd48adcc 100644 --- a/extra/git/PKGBUILD +++ b/extra/git/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 186460 2013-05-26 20:12:59Z dan $ +# $Id: PKGBUILD 188161 2013-06-10 22:30:55Z dan $ # Maintainer: Dan McGee <dan@archlinux.org> pkgname=git -pkgver=1.8.3 +pkgver=1.8.3.1 pkgrel=1 pkgdesc="the fast distributed version control system" arch=(i686 x86_64) @@ -107,7 +107,7 @@ package() { install -D -m 644 "$srcdir"/git-daemon.socket "$pkgdir"/usr/lib/systemd/system/git-daemon.socket } -md5sums=('d91b6099fb6763cf92c696977a247060' - '0b469c0fd81b4a56b9059d7c443282f0' +md5sums=('35401b410e7f248b13e35a1069aca2e2' + '3f801cc82a58c2c2ceeab95975114113' '042524f942785772d7bd52a1f02fe5ae' 'f67869315c2cc112e076f0c73f248002') diff --git a/extra/json-c/PKGBUILD b/extra/json-c/PKGBUILD index 0c82ec3fc..8f62686ae 100644 --- a/extra/json-c/PKGBUILD +++ b/extra/json-c/PKGBUILD @@ -1,28 +1,21 @@ -# $Id: PKGBUILD 176239 2013-01-28 00:11:44Z heftig $ +# $Id: PKGBUILD 188176 2013-06-11 17:10:35Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> # Contributor: congyiwu <congyiwu AT gmail DOT com> pkgname=json-c -pkgver=0.10 -pkgrel=2 +pkgver=0.11 +pkgrel=1 pkgdesc="A JSON implementation in C" url="https://github.com/json-c/json-c/wiki" -license=("MIT") -arch=('i686' 'x86_64') -depends=('glibc') -source=(https://github.com/downloads/$pkgname/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('a4edc79410eb894f08d7d52ca9f88732') -options=(!libtool) +license=(MIT) +arch=(i686 x86_64) +depends=(glibc) +options=(!libtool !makeflags) +source=(https://s3.amazonaws.com/${pkgname}_releases/releases/$pkgname-${pkgver}.tar.gz) +sha256sums=('28dfc65145dc0d4df1dfe7701ac173c4e5f9347176c8983edbfac9149494448c') + build() { cd $pkgname-$pkgver - - ## from http://pkgs.fedoraproject.org/cgit/json-c.git/tree/json-c.spec - # Hack to get json_object_iterator.c compiled - sed -e 's/json_object.c/json_object.c json_object_iterator.c/' \ - -e 's/json_object.h/json_object.h json_object_iterator.h/' \ - -e 's/json_object.lo/json_object.lo json_object_iterator.lo/' \ - -i Makefile.in - ./configure --prefix=/usr --disable-static make } @@ -30,5 +23,5 @@ build() { package() { cd $pkgname-$pkgver make DESTDIR="$pkgdir" install - install -D COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" + install -Dm644 COPYING "$pkgdir/usr/share/licenses/$pkgname/COPYING" } diff --git a/extra/libgphoto2/PKGBUILD b/extra/libgphoto2/PKGBUILD index f419a2f9e..9a50c0181 100644 --- a/extra/libgphoto2/PKGBUILD +++ b/extra/libgphoto2/PKGBUILD @@ -1,21 +1,21 @@ -# $Id: PKGBUILD 179978 2013-03-13 20:08:25Z jgc $ +# $Id: PKGBUILD 188179 2013-06-11 19:26:15Z jgc $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Tom Gundersen <teg@jklm.no> # Contributor: Eduardo Romero <eduardo@archlinux.org> # Contributor: Damir Perisa <damir.perisa@bluewin.ch> pkgname=libgphoto2 -pkgver=2.5.1 +pkgver=2.5.2 pkgrel=1 pkgdesc="The core library of gphoto2, designed to allow access to digital camera by external programs." arch=(i686 x86_64) url="http://www.gphoto.org" license=(LGPL) -depends=('libexif' 'libjpeg>=8' 'gd' 'libltdl' 'libusb-compat' 'libusb') +depends=('libexif' 'libjpeg' 'gd' 'libltdl' 'libusb') install=libgphoto2.install options=('libtool') source=(http://downloads.sourceforge.net/gphoto/${pkgname}-${pkgver}.tar.gz) -md5sums=('92780eb4baf7b512b86b5e7300ec91a5') +md5sums=('d9f4462957e59bf2b2eb3b1ea8423570') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/extra/libindi/PKGBUILD b/extra/libindi/PKGBUILD index 18a209e47..434a909be 100644 --- a/extra/libindi/PKGBUILD +++ b/extra/libindi/PKGBUILD @@ -1,22 +1,21 @@ -# $Id: PKGBUILD 62098 2010-01-02 09:13:44Z tpowa $ +# $Id: PKGBUILD 188185 2013-06-11 20:41:28Z andrea $ # Maintainer: Andrea Scarpino <andrea@archlinux.org> # Contributor: Tobias Powalowski <tpowa@archlinux.org> pkgname=libindi pkgver=0.9.6 -pkgrel=1 +pkgrel=2 pkgdesc="A distributed control protocol designed to operate astronomical instrumentation" url="http://www.indilib.org/index.php?title=Main_Page" license=('GPL2') arch=('i686' 'x86_64') depends=('libnova' 'cfitsio' 'boost-libs' 'libusb-compat') -makedepends=('pkgconfig' 'cmake' 'boost') +makedepends=('cmake' 'boost') options=('!libtool') source=("http://downloads.sourceforge.net/indi/${pkgname}_${pkgver}.tar.gz") md5sums=('c1456544a36f543e2884f88913cf3eb0') build() { - cd "${srcdir}" mkdir build cd build cmake ../${pkgname}-${pkgver} \ @@ -26,6 +25,11 @@ build() { } package() { - cd "${srcdir}"/build + cd build make DESTDIR="${pkgdir}" install + + install -d "${pkgdir}"/usr/lib/udev/rules.d + mv "${pkgdir}"/etc/udev/rules.d/99-gpusb.rules \ + "${pkgdir}"/usr/lib/udev/rules.d/ + rmdir "${pkgdir}"/etc/udev/rules.d "${pkgdir}"/etc/udev "${pkgdir}"/etc } diff --git a/extra/pulseaudio/PKGBUILD b/extra/pulseaudio/PKGBUILD index eb2890c91..3d58eeb0d 100644 --- a/extra/pulseaudio/PKGBUILD +++ b/extra/pulseaudio/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 187868 2013-06-07 09:26:30Z tomegun $ +# $Id: PKGBUILD 188177 2013-06-11 17:10:36Z heftig $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> # Contributor: Corrado Primier <bardo@aur.archlinux.org> @@ -8,7 +8,7 @@ pkgbase=pulseaudio pkgname=(pulseaudio libpulse) pkgdesc="A featureful, general-purpose sound server" pkgver=4.0 -pkgrel=1 +pkgrel=2 arch=(i686 x86_64) url="http://www.freedesktop.org/wiki/Software/PulseAudio" license=(GPL LGPL) diff --git a/extra/syslog-ng/PKGBUILD b/extra/syslog-ng/PKGBUILD index 3c54082b4..006459cbb 100644 --- a/extra/syslog-ng/PKGBUILD +++ b/extra/syslog-ng/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 185556 2013-05-15 00:48:48Z dreisner $ +# $Id: PKGBUILD 188171 2013-06-11 16:24:06Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> # Contributor: Eric Bélanger <eric@archlinux.org> # Contributor: Aaron Griffin <aaron@archlinux.org> pkgname=syslog-ng -pkgver=3.4.1 -pkgrel=3 +pkgver=3.4.2 +pkgrel=1 pkgdesc="Next-generation syslogd with advanced networking and filtering capabilities" arch=('i686' 'x86_64') license=('GPL2') @@ -21,7 +21,7 @@ install=$pkgname.install source=("http://www.balabit.com/downloads/files/syslog-ng/sources/$pkgver/source/${pkgname}_$pkgver.tar.gz" syslog-ng.conf syslog-ng.logrotate) -sha1sums=('e75892262863b77f74a401d19661164154f716e7' +sha1sums=('96474f955fb51d4f31ce1154c84b0cb48c8748d2' '0aaf695ea6756b59198ff2e4af237b4a6186525d' '949128fe3d7f77a7aab99048061f885bc758000c') diff --git a/extra/x11-ssh-askpass/PKGBUILD b/extra/x11-ssh-askpass/PKGBUILD index 37b84c4d0..18d23681f 100644 --- a/extra/x11-ssh-askpass/PKGBUILD +++ b/extra/x11-ssh-askpass/PKGBUILD @@ -1,5 +1,4 @@ -# $Id: PKGBUILD 140828 2011-10-19 22:29:39Z bisson $ - +# $Id: PKGBUILD 188167 2013-06-11 06:50:06Z bisson $ # Maintainer: Gaetan Bisson <bisson@archlinux.org> # Contributor: Mike Sampson <mike at sambodata dot com> # Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com> @@ -7,7 +6,7 @@ pkgname=x11-ssh-askpass pkgver=1.2.4.1 -pkgrel=3 +pkgrel=4 pkgdesc='Lightweight passphrase dialog for SSH' url='http://www.jmknoble.net/software/x11-ssh-askpass/' license=('custom') @@ -22,7 +21,6 @@ sha1sums=('78c992951685d4dbffb77536f37b83ae2a6eafc7' build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./configure \ --mandir=/usr/share/man \ --libexecdir=/usr/lib/ssh \ @@ -35,10 +33,8 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" - make DESTDIR="${pkgdir}" install install.man - install -Dm755 ../profile.d "${pkgdir}/etc/profile.d/${pkgname}.sh" - install -d "${pkgdir}/usr/share/licenses/${pkgname}" sed '109,174p;d' README > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -Dm755 ../profile.d "${pkgdir}/etc/profile.d/${pkgname}.sh" } diff --git a/libre/distcc-nozeroconf/PKGBUILD b/libre/distcc-nozeroconf/PKGBUILD new file mode 100644 index 000000000..2537b2f87 --- /dev/null +++ b/libre/distcc-nozeroconf/PKGBUILD @@ -0,0 +1,59 @@ +# $Id: PKGBUILD 90657 2013-05-13 14:21:37Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Judd Vinet <jvinet@zeroflux.org> +# Contributor: Giovanni Scafora <giovanni@archlinux.org> + +_pkgname=distcc +pkgname=distcc-nozeroconf +pkgver=3.1 +provides=("$_pkgname=$pkgver") +conflicts=("$_pkgname") +pkgrel=11 +pkgdesc="A distributed C, C++, Obj C compiler (without zeroconf support)" +arch=('i686' 'x86_64') +url="http://code.google.com/p/distcc/" +license=('GPL') +depends=('gcc' 'popt') +makedepends=('gtk2' 'pkgconfig' 'python2') +optdepends=('gtk2: for distccmon-gnome' + 'python2') +backup=('etc/conf.d/distccd' + 'etc/distcc/hosts') +source=(http://distcc.googlecode.com/files/${_pkgname}-${pkgver}.tar.bz2 + distccd.conf.d + distccd.service) +md5sums=('a1a9d3853df7133669fffec2a9aab9f3' + '239aae53250e3e35288cba566bc0bbf1' + '09f0688da9c1840e518d2593bd5c3830') + +build() { + cd "${srcdir}/${_pkgname}-${pkgver}" + + [ -f Makefile ] || PYTHON=/usr/bin/python2 ./configure --prefix=/usr \ + --with-gtk \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --without-avahi + + make WERROR_CFLAGS= INCLUDESERVER_PYTHON=/usr/bin/python2 +} + +check() { + cd "${srcdir}/${_pkgname}-${pkgver}" +# make TEST_PYTHON=/usr/bin/python2 check +} + +package() { + cd "${srcdir}/${_pkgname}-${pkgver}" + make DESTDIR="${pkgdir}/" INCLUDESERVER_PYTHON=/usr/bin/python2 install + install -D -m644 ${srcdir}/distccd.conf.d ${pkgdir}/etc/conf.d/distccd + + install -d ${pkgdir}/usr/lib/${_pkgname}/bin + ln -sf /usr/bin/${_pkgname} ${pkgdir}/usr/lib/${_pkgname}/bin/cc + ln -sf /usr/bin/${_pkgname} ${pkgdir}/usr/lib/${_pkgname}/bin/gcc + ln -sf /usr/bin/${_pkgname} ${pkgdir}/usr/lib/${_pkgname}/bin/g++ + ln -sf /usr/bin/${_pkgname} ${pkgdir}/usr/lib/${_pkgname}/bin/c++ + ln -sf /usr/bin/${_pkgname} ${pkgdir}/usr/lib/${_pkgname}/bin/cpp + + install -Dm0644 $srcdir/distccd.service $pkgdir/usr/lib/systemd/system/distccd.service +} diff --git a/libre/distcc-nozeroconf/distccd.conf.d b/libre/distcc-nozeroconf/distccd.conf.d new file mode 100644 index 000000000..2fe7a4cc6 --- /dev/null +++ b/libre/distcc-nozeroconf/distccd.conf.d @@ -0,0 +1,7 @@ +# +# Parameters to be passed to distccd +# +# 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="--allow 127.0.0.1" diff --git a/libre/distcc-nozeroconf/distccd.service b/libre/distcc-nozeroconf/distccd.service new file mode 100644 index 000000000..0b72fecc3 --- /dev/null +++ b/libre/distcc-nozeroconf/distccd.service @@ -0,0 +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 --no-detach --daemon $DISTCC_ARGS + +[Install] +WantedBy=multi-user.target diff --git a/libre/libretools/PKGBUILD b/libre/libretools/PKGBUILD index 29fedec00..49dc7feb2 100644 --- a/libre/libretools/PKGBUILD +++ b/libre/libretools/PKGBUILD @@ -9,8 +9,8 @@ pkgdesc="Programs for Parabola development" url="https://projects.parabolagnulinux.org/packages/libretools.git/" license=('GPL3' 'GPL2') -pkgver=20130608 -_libretools_commit=9fc855b9c4af0e372fa50e1da1ec26d4f2fc5661 +pkgver=20130611 +_libretools_commit=e6944bc03f587ad177c6b825e3f4c116fb9b9b12 _devtools_commit=bf8513ae631484a0c292ad085ea7ede9859f8e0f _packages_url=https://projects.parabolagnulinux.org/packages @@ -64,5 +64,5 @@ package_libretools-mips64el() { make install-libretools-mips64el DESTDIR="$pkgdir" } -md5sums=('5de4fdcc9db5e6f52915b6a721cadb37' +md5sums=('3d5645488481fab48954e194274f70ac' 'b28b1492fda205be7c577fc03cbc3399') diff --git a/pcr/opendnssec/PKGBUILD b/pcr/opendnssec/PKGBUILD index 1810d94a1..065a1ec68 100644 --- a/pcr/opendnssec/PKGBUILD +++ b/pcr/opendnssec/PKGBUILD @@ -2,7 +2,7 @@ pkgname=opendnssec pkgver=1.4.0 -pkgrel=2 +pkgrel=3 pkgdesc="Turn-key solution for DNSSEC (sqlite3)" arch=('i686' 'x86_64' 'mips64el') url="http://www.opendnssec.org/" @@ -68,7 +68,10 @@ package() { install -Dm0644 "enforcer/utils/migrate_adapters_1.sqlite3" \ "${pkgdir}/usr/share/opendnssec" - chown 227:227 "${pkgdir}/etc/opendnssec" -R - chown 227:227 "${pkgdir}/var/lib/opendnssec" -R - chown 227:227 "${pkgdir}/var/run/opendnssec" -R + chown -R 227:227 "${pkgdir}/etc/opendnssec" \ + "${pkgdir}/var/lib/opendnssec" \ + "${pkgdir}/var/run/opendnssec" + chmod 750 "${pkgdir}/etc/opendnssec" \ + "${pkgdir}/var/lib/opendnssec" \ + "${pkgdir}/var/run/opendnssec" } |