summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--community/activity-log-manager/PKGBUILD21
-rw-r--r--community/activity-log-manager/config.vapi11
-rw-r--r--community/activity-log-manager/fix-crash.patch15
-rw-r--r--community/calf/PKGBUILD13
-rw-r--r--community/geany-plugins/PKGBUILD12
-rw-r--r--community/geany-plugins/geany-plugins.install13
-rw-r--r--community/haskell-primitive/PKGBUILD39
-rw-r--r--community/haskell-primitive/haskell-primitive.install26
-rw-r--r--community/haskell-vector/PKGBUILD39
-rw-r--r--community/haskell-vector/haskell-vector.install26
-rw-r--r--community/hedgewars/PKGBUILD16
-rw-r--r--community/knemo/PKGBUILD11
-rw-r--r--community/libfm/PKGBUILD6
-rw-r--r--community/luajit/PKGBUILD20
-rw-r--r--community/noip/PKGBUILD34
-rw-r--r--community/noip/noip.install13
-rw-r--r--community/noip/noip2.service10
-rw-r--r--community/nsd/PKGBUILD8
-rw-r--r--community/openocd/PKGBUILD10
-rw-r--r--community/openttd/PKGBUILD6
-rw-r--r--community/pcmanfm/PKGBUILD12
-rw-r--r--community/quassel/PKGBUILD20
-rw-r--r--community/quassel/quassel.service12
-rw-r--r--community/shotwell/PKGBUILD15
-rw-r--r--community/shotwell/no-libexec.patch26
-rw-r--r--community/ubuntuone-client/PKGBUILD8
-rw-r--r--community/wt/PKGBUILD8
-rw-r--r--core/procps-ng/PKGBUILD36
-rw-r--r--extra/cmake/PKGBUILD22
-rw-r--r--extra/dconf/PKGBUILD6
-rw-r--r--extra/fprintd/PKGBUILD16
-rw-r--r--extra/fprintd/fingerprint-auth6
-rw-r--r--extra/konversation/PKGBUILD7
-rw-r--r--extra/obexd/PKGBUILD13
-rw-r--r--extra/tracker/PKGBUILD12
-rw-r--r--libre/linux-libre-kmod-alx/PKGBUILD4
-rw-r--r--libre/linux-libre-lts-kmod-alx/PKGBUILD4
-rw-r--r--libre/linux-libre-lts/PKGBUILD8
-rw-r--r--libre/linux-libre-lts/linux-libre-lts.install2
-rw-r--r--libre/linux-libre/PKGBUILD4
-rw-r--r--libre/linux-libre/linux-libre.install2
-rw-r--r--libre/parabola-keyring/PKGBUILD6
-rw-r--r--libre/texlive-bin-libre/PKGBUILD4
43 files changed, 418 insertions, 184 deletions
diff --git a/community/activity-log-manager/PKGBUILD b/community/activity-log-manager/PKGBUILD
index fe049f0fe..1d860b203 100644
--- a/community/activity-log-manager/PKGBUILD
+++ b/community/activity-log-manager/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 79127 2012-10-30 23:07:25Z heftig $
+# $Id: PKGBUILD 79218 2012-11-01 09:45:30Z bgyorgy $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
# Contributor: Ner0
pkgname=activity-log-manager
pkgver=0.9.4
-pkgrel=2
+pkgrel=3
pkgdesc="A graphical user interface which lets you easily control what gets logged by Zeitgeist"
arch=('i686' 'x86_64')
url="https://launchpad.net/activity-log-manager"
@@ -13,12 +13,16 @@ depends=('gtk3' 'libgee' 'libzeitgeist' 'zeitgeist' 'hicolor-icon-theme' 'xdg-ut
makedepends=('vala' 'intltool')
install=$pkgname.install
source=(https://launchpad.net/$pkgname/${pkgver%.*}/$pkgver/+download/$pkgname-$pkgver.tar.gz
- http://pkgbuild.com/~bgyorgy/sources/$pkgname-translations-20121021.tar.gz)
+ http://pkgbuild.com/~bgyorgy/sources/$pkgname-translations-20121021.tar.gz
+ fix-crash.patch
+ config.vapi)
md5sums=('cf85aecdaa6c0188a53d659709e1f8cd'
- '6167df74ce44659aa94a89f31ff4d351')
+ '6167df74ce44659aa94a89f31ff4d351'
+ '1052dec3691826f01fa3d4fd84284ccc'
+ 'fecc5ac50dfcd79c4c8d54599760d225')
build() {
- cd $pkgname-$pkgver
+ cd "$srcdir/$pkgname-$pkgver"
# Fix docdir location
sed -i 's/almdocdir =.*/almdocdir = ${docdir}/' Makefile.{am,in}
@@ -28,6 +32,13 @@ build() {
rename $pkgname- '' ../po/$pkgname-*.po
mv -f -t po ../po/*
+ # Fix crash with GTK+ 3.6
+ # https://bugs.launchpad.net/activity-log-manager/+bug/1058037
+ patch -Np1 -i "$srcdir/fix-crash.patch"
+
+ # We need this file for build
+ mv "$srcdir/config.vapi" "$srcdir/$pkgname-$pkgver/src"
+
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
make
}
diff --git a/community/activity-log-manager/config.vapi b/community/activity-log-manager/config.vapi
new file mode 100644
index 000000000..ee9823051
--- /dev/null
+++ b/community/activity-log-manager/config.vapi
@@ -0,0 +1,11 @@
+[CCode (cprefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
+namespace Config {
+ public const string GETTEXT_PACKAGE;
+ public const string SPRITE_DIR;
+ public const string BACKGROUND_DIR;
+ public const string PACKAGE_DATA_DIR;
+ public const string PACKAGE_LOCALE_DIR;
+ public const string PACKAGE_NAME;
+ public const string PACKAGE_VERSION;
+ public const string VERSION;
+}
diff --git a/community/activity-log-manager/fix-crash.patch b/community/activity-log-manager/fix-crash.patch
new file mode 100644
index 000000000..92bb5683c
--- /dev/null
+++ b/community/activity-log-manager/fix-crash.patch
@@ -0,0 +1,15 @@
+diff -Naur activity-log-manager-0.9.4.orig/src/alm.vala activity-log-manager-0.9.4/src/alm.vala
+--- activity-log-manager-0.9.4.orig/src/alm.vala 2012-02-22 20:24:08.000000000 +0100
++++ activity-log-manager-0.9.4/src/alm.vala 2012-11-01 09:33:15.466534392 +0100
+@@ -41,10 +41,7 @@
+ static int main (string[] args)
+ {
+ Gtk.init (ref args);
+- var alm = new Gtk.Application ("org.zeitgeist.Alm",
+- ApplicationFlags.FLAGS_NONE);
+- var window = new Main ();
+- alm.add_window (window);
++ new Main ();
+
+ Gtk.main ();
+ return 0;
diff --git a/community/calf/PKGBUILD b/community/calf/PKGBUILD
index 87415eeea..c6de08cdf 100644
--- a/community/calf/PKGBUILD
+++ b/community/calf/PKGBUILD
@@ -1,30 +1,29 @@
-# $Id: PKGBUILD 77743 2012-10-14 09:43:37Z arodseth $
+# $Id: PKGBUILD 79263 2012-11-02 00:01:25Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Ray Rashif <schiv@archlinux.org>
pkgname=calf
pkgver=0.0.19
-_rc=8
-pkgrel=1
+pkgrel=2
pkgdesc='LV2/DSSI/LADSPA plug-ins suite and standalone JACK host'
arch=('x86_64' 'i686')
url='http://calf.sf.net/'
license=('LGPL')
depends=('libglade' 'fftw' 'lash' 'dssi' 'fluidsynth' 'hicolor-icon-theme' 'desktop-file-utils')
makedepends=('lv2core' 'ladspa' 'dssi')
-source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver-rc$_rc.tar.gz")
+source=("http://downloads.sf.net/$pkgname/$pkgname-$pkgver.tar.gz")
install=calf.install
options=('!libtool')
-sha256sums=('57cb536a24a7b9df890dc665fd75c2f4d307859e55f3b25015c73cdc726a56b5')
+sha256sums=('1106e7e27bcd18d47fc58c952a4dbf6c7a763272e13b2b94cee6f1b2fb922cec')
build() {
- cd $srcdir/$pkgname-$pkgver-rc$_rc
+ cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --enable-experimental --enable-sse
make
}
package() {
- cd $srcdir/$pkgname-$pkgver-rc$_rc
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}
diff --git a/community/geany-plugins/PKGBUILD b/community/geany-plugins/PKGBUILD
index e68cb6518..c97fc866f 100644
--- a/community/geany-plugins/PKGBUILD
+++ b/community/geany-plugins/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 79206 2012-10-31 22:05:41Z arodseth $
+# $Id: PKGBUILD 79259 2012-11-01 23:43:48Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve>
# Contributor: djgera
@@ -6,13 +6,13 @@
pkgname=geany-plugins
pkgver=1.22
-pkgrel=2
-pkgdesc="Combined plugins release for Geany"
+pkgrel=3
+pkgdesc='Combined plugins release for Geany'
arch=('x86_64' 'i686')
-url="http://plugins.geany.org/"
+url='http://plugins.geany.org/'
license=('GPL')
-depends=('geany=1.22' 'lua' 'gtkspell' 'libwebkit' 'hicolor-icon-theme' 'ctpl' 'gpgme')
-makedepends=('intltool' 'vala' 'gdb' 'cppcheck' 'vte')
+depends=('geany=1.22' 'lua' 'gtkspell' 'libwebkit' 'ctpl' 'gpgme' 'vte' 'desktop-file-utils' 'gtk-update-icon-cache')
+makedepends=('intltool' 'vala' 'gdb' 'cppcheck')
optdepends=('hspell: hebrew spell checker')
options=('!libtool')
install=geany-plugins.install
diff --git a/community/geany-plugins/geany-plugins.install b/community/geany-plugins/geany-plugins.install
index f26807673..bce670aff 100644
--- a/community/geany-plugins/geany-plugins.install
+++ b/community/geany-plugins/geany-plugins.install
@@ -1,13 +1,12 @@
-post_upgrade() {
- gtk-update-icon-cache -q -f -t /usr/share/icons/hicolor
+post_install() {
+ gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
+ update-desktop-database -q
}
-post_install() {
- post_upgrade
+post_upgrade() {
+ post_install
}
post_remove() {
- post_upgrade
+ post_install
}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/haskell-primitive/PKGBUILD b/community/haskell-primitive/PKGBUILD
new file mode 100644
index 000000000..874fd46ba
--- /dev/null
+++ b/community/haskell-primitive/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 79233 2012-11-01 11:21:27Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=haskell-primitive
+pkgver=0.5.0.1
+pkgrel=1
+pkgdesc="Wrappers for primitive operations"
+url="http://hackage.haskell.org/package/primitive"
+license=("BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc")
+options=('strip')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/primitive/${pkgver}/primitive-${pkgver}.tar.gz")
+sha256sums=('526c9d4d06b7b379cb1aaffeffbb30bef810e771f29617ef6d0d99df711f4313')
+
+build() {
+ cd ${srcdir}/primitive-${pkgver}
+ runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+ --libsubdir=\$compiler/site-local/\$pkgid
+ runhaskell Setup build
+ runhaskell Setup haddock
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ cd ${srcdir}/primitive-${pkgver}
+ install -Dm744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -m744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+ install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/primitive
+ runhaskell Setup copy --destdir=${pkgdir}
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
diff --git a/community/haskell-primitive/haskell-primitive.install b/community/haskell-primitive/haskell-primitive.install
new file mode 100644
index 000000000..038c509df
--- /dev/null
+++ b/community/haskell-primitive/haskell-primitive.install
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-primitive
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+ ${HS_DIR}/register.sh
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+ ${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+ ${HS_DIR}/register.sh
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+ ${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
diff --git a/community/haskell-vector/PKGBUILD b/community/haskell-vector/PKGBUILD
new file mode 100644
index 000000000..9020a2f0b
--- /dev/null
+++ b/community/haskell-vector/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 79236 2012-11-01 13:18:13Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+
+pkgname=haskell-vector
+pkgver=0.10.0.1
+pkgrel=1
+pkgdesc="Efficient Arrays"
+url="http://code.haskell.org/vector"
+license=("custom:BSD3")
+arch=('i686' 'x86_64')
+makedepends=()
+depends=("ghc" "haskell-primitive")
+options=('strip')
+install="${pkgname}.install"
+source=("http://hackage.haskell.org/packages/archive/vector/${pkgver}/vector-${pkgver}.tar.gz")
+sha256sums=('ece945058b01a77c5fff31e89bbea76ac619677041c41286a2da5e8b515508af')
+
+build() {
+ cd ${srcdir}/vector-${pkgver}
+ runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
+ --prefix=/usr --docdir=/usr/share/doc/${pkgname} \
+ --libsubdir=\$compiler/site-local/\$pkgid
+ runhaskell Setup build
+ runhaskell Setup haddock
+ runhaskell Setup register --gen-script
+ runhaskell Setup unregister --gen-script
+ sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
+}
+
+package() {
+ cd ${srcdir}/vector-${pkgver}
+ install -Dm744 register.sh ${pkgdir}/usr/share/haskell/${pkgname}/register.sh
+ install -Dm744 unregister.sh ${pkgdir}/usr/share/haskell/${pkgname}/unregister.sh
+ install -dm755 ${pkgdir}/usr/share/doc/ghc/html/libraries
+ ln -s /usr/share/doc/${pkgname}/html ${pkgdir}/usr/share/doc/ghc/html/libraries/vector
+ runhaskell Setup copy --destdir=${pkgdir}
+ install -Dm644 LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ rm -f ${pkgdir}/usr/share/doc/${pkgname}/LICENSE
+}
diff --git a/community/haskell-vector/haskell-vector.install b/community/haskell-vector/haskell-vector.install
new file mode 100644
index 000000000..b6bc92892
--- /dev/null
+++ b/community/haskell-vector/haskell-vector.install
@@ -0,0 +1,26 @@
+# custom variables
+pkgname=haskell-vector
+HS_DIR=/usr/share/haskell/${pkgname}
+
+# functions
+post_install() {
+ ${HS_DIR}/register.sh
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_upgrade() {
+ ${HS_DIR}/unregister.sh
+}
+
+post_upgrade() {
+ ${HS_DIR}/register.sh
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
+
+pre_remove() {
+ ${HS_DIR}/unregister.sh
+}
+
+post_remove() {
+ (cd /usr/share/doc/ghc/html/libraries; ./gen_contents_index)
+}
diff --git a/community/hedgewars/PKGBUILD b/community/hedgewars/PKGBUILD
index 57a320a7a..e6e8d4035 100644
--- a/community/hedgewars/PKGBUILD
+++ b/community/hedgewars/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 77362 2012-10-09 04:19:03Z tdziedzic $
+# $Id: PKGBUILD 79255 2012-11-01 21:56:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=hedgewars
-pkgver=0.9.17
-pkgrel=5
+pkgver=0.9.18
+pkgrel=2
pkgdesc="Free Worms-like turn based strategy game"
arch=('i686' 'x86_64')
url="http://hedgewars.org"
@@ -14,27 +14,23 @@ makedepends=('fpc' 'cmake'
'ghc'
'haskell-network' 'haskell-bytestring-show'
'haskell-utf8-string' 'haskell-dataenc'
- 'haskell-hslogger')
-source=(http://download.gna.org/hedgewars/hedgewars-src-$pkgver.tar.bz2
+ 'haskell-hslogger' 'haskell-vector')
+source=(http://download.gna.org/hedgewars/hedgewars-src-$pkgver-2.tar.bz2
hedgewars.desktop
hedgewars.png)
-md5sums=('77c0bc4bc664604adbba67fab606d8f1'
+md5sums=('94f6c998591e2fae18e8e2d173e1fe93'
'48c66a3204d4fa0a69e9aa46f7c31e0c'
'eeb14d50df39063549ac5eca9dbc65d1')
build() {
cd $pkgname-src-$pkgver
-
-# sed -i 's|.*misc/liblua.*||' CMakeLists.txt
sed -i 's|instance NFData B.ByteString||' gameServer/Actions.hs
-
cmake \
-DCMAKE_INSTALL_PREFIX=/usr \
-DDATA_INSTALL_DIR=/usr/share \
-DQT_QMAKE_EXECUTABLE=/usr/bin/qmake \
-DQT_MOC_EXECUTABLE=/usr/bin/moc \
-DWITH_SERVER=1 .
-
make
}
diff --git a/community/knemo/PKGBUILD b/community/knemo/PKGBUILD
index b539cef86..cd60f5d43 100644
--- a/community/knemo/PKGBUILD
+++ b/community/knemo/PKGBUILD
@@ -1,23 +1,22 @@
-# $Id: PKGBUILD 67170 2012-03-05 08:41:38Z lcarlier $
+# $Id: PKGBUILD 79245 2012-11-01 17:28:21Z lcarlier $
# Maintainer: Laurent Carlier <lordheavym@gmail.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Stefano Zamprogno <stefano dot zamprogno at gmail dot com>
pkgname=knemo
-pkgver=0.7.3
-pkgrel=3
+pkgver=0.7.4
+pkgrel=1
pkgdesc="The KDE Network Monitor"
arch=('i686' 'x86_64')
url="http://www.kde-apps.org/content/show.php?content=12956"
license=('GPL')
-depends=('kdebase-workspace' 'wireless_tools' 'iw' 'libnl1'
- 'gtk-update-icon-cache')
+depends=('kdebase-workspace' 'wireless_tools' 'iw' 'gtk-update-icon-cache')
makedepends=('cmake' 'automoc4')
install=${pkgname}.install
options=('libtool')
source=("http://www.kde-apps.org/CONTENT/content-files/12956-${pkgname}-${pkgver}.tar.bz2")
-md5sums=('24b5ec27b862ed7026ff643193952b78')
+md5sums=('e6e9aeef6e0fcd934abe000090771fd9')
build() {
cd ${srcdir}
diff --git a/community/libfm/PKGBUILD b/community/libfm/PKGBUILD
index 6048981a8..77dd0435f 100644
--- a/community/libfm/PKGBUILD
+++ b/community/libfm/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 76525 2012-09-21 15:37:33Z bpiotrowski $
+# $Id: PKGBUILD 79227 2012-11-01 10:30:17Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
# Contributor: Unknown47 <unknown47r@gmail.com>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
pkgname=libfm
-pkgver=1.0.1
+pkgver=1.1.0
pkgrel=1
pkgdesc="A library for file management"
url="http://pcmanfm.sourceforge.net/"
@@ -16,7 +16,7 @@ options=('!libtool')
install=libfm.install
depends=('gtk2' 'menu-cache' 'shared-mime-info' 'udisks' 'desktop-file-utils' 'vala')
source=(http://downloads.sourceforge.net/pcmanfm/$pkgname-$pkgver.tar.gz)
-md5sums=('7fb406f38f99c9171661f72fa6d4da7f')
+md5sums=('a5bc8b8291cf810c659bfb3af378b5de')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/luajit/PKGBUILD b/community/luajit/PKGBUILD
index d246535d1..2fc5cefaa 100644
--- a/community/luajit/PKGBUILD
+++ b/community/luajit/PKGBUILD
@@ -1,35 +1,35 @@
-# $Id: PKGBUILD 78428 2012-10-18 04:30:04Z bpiotrowski $
+# $Id: PKGBUILD 79221 2012-11-01 10:19:51Z bpiotrowski $
# Maintainer: Chris Brannon <chris@the-brannons.com>
# Maintainer: Bartłomiej Piotrowski
# Contributor: Paulo Matias <matiasΘarchlinux-br·org>
# Contributor: Anders Bergh <anders1@gmail.com>
-pkgname=luajit
-pkgver=2.0.0b11
-pkgrel=3
+pkgname=luajit
+pkgver=2.0.0rc1
+pkgrel=1
pkgdesc='A Just-In-Time Compiler for Lua'
arch=('i686' 'x86_64')
url='http://luajit.org/'
license=('MIT')
depends=('gcc-libs')
-source=(http://luajit.org/download/LuaJIT-${pkgver/b/-beta}.tar.gz
+source=(http://luajit.org/download/LuaJIT-${pkgver/rc/-rc}.tar.gz
Makefile.patch)
-md5sums=('824aa2684a11e3cc3abe87350a7b6139'
+md5sums=('26dc243c12cab80b8fe2d9cfa02a81a6'
'c9dff2a84424fa0af322379a5f115fb7')
build() {
- cd $srcdir/LuaJIT-${pkgver/b/-beta}
+ cd $srcdir/LuaJIT-${pkgver/rc1}
patch -Np0 -i $srcdir/Makefile.patch
make PREFIX=/usr
}
package() {
- cd $srcdir/LuaJIT-${pkgver/b/-beta}
+ cd $srcdir/LuaJIT-${pkgver/rc1}
make install DESTDIR=$pkgdir PREFIX=/usr
- install -Dm644 $srcdir/LuaJIT-${pkgver/b/-beta}/COPYRIGHT \
+ install -Dm644 $srcdir/LuaJIT-${pkgver/rc1}/COPYRIGHT \
$pkgdir/usr/share/licenses/$pkgname/COPYRIGHT
# Poor man's slot system
- ln -s /usr/share/$pkgname $pkgdir/usr/share/$pkgname-${pkgver/b/-beta}
+ ln -s /usr/share/$pkgname $pkgdir/usr/share/$pkgname-${pkgver/rc1}
}
diff --git a/community/noip/PKGBUILD b/community/noip/PKGBUILD
index 202d09d58..3d299aefb 100644
--- a/community/noip/PKGBUILD
+++ b/community/noip/PKGBUILD
@@ -1,21 +1,24 @@
-# $Id: PKGBUILD 67996 2012-03-16 23:45:15Z giovanni $
+# $Id: PKGBUILD 79265 2012-11-02 00:34:36Z arodseth $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: Daenyth
# Contributor: Lyle Putnam <lcputnam@amerytel.net>
-# Maintainer: Daenyth
pkgname=noip
pkgver=2.1.9
-pkgrel=3
-pkgdesc="A Dynamic DNS Client Updater for no-ip.com services"
-arch=('i686' 'x86_64')
-url="http://www.no-ip.com/downloads.php?page=linux"
+pkgrel=4
+pkgdesc='Dynamic DNS Client Updater for no-ip.com services'
+arch=('x86_64' 'i686')
+url='http://www.no-ip.com/downloads.php?page=linux'
license=('GPL')
-backup=('etc/no-ip2.conf')
+depends=('bash')
+#backup=('etc/no-ip2.conf')
install=noip.install
-# Note that they have the one file for the current release, so if the md5sum breaks, it means they updated.
-source=("http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz"
- 'noip-rc.d')
-md5sums=('3b0f5f2ff8637c73ab337be403252a60'
- '63253de6f4d847015d111e5e5b20f2cf')
+source=('http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz'
+ 'noip-rc.d'
+ 'noip2.service')
+sha256sums=('82b9bafab96a0c53b21aaef688bf70b3572e26217b5e2072bdb09da3c4a6f593'
+ '95bbebf584e0bc33186fb95f76a85bbd103fcea8ca073c7e4d36a811c3ac5d5d'
+ '624553d92d69bb76cb457a056a7722dc051b5bbd17ea0e622b5cc08909019ea5')
build() {
cd $srcdir/$pkgname-$pkgver-1
@@ -23,12 +26,15 @@ build() {
# Their Makefile is fucking horrid, do it by hand instead
sed -i '/^#define CONFIG_FILEPATH/s/PREFIX//' noip2.c
sed -i '/^#define CONFIG_FILENAME/s/PREFIX//' noip2.c
- gcc -Wall $CLFAGS $LDFLAGS -g -Dlinux -DPREFIX="/usr" noip2.c -o noip2
+ cc -Wall $CLFAGS $LDFLAGS -g -Dlinux -DPREFIX=/usr noip2.c -o noip2
}
package() {
cd $srcdir/$pkgname-$pkgver-1
install -Dm755 noip2 $pkgdir/usr/bin/noip2
- install -Dm755 $srcdir/noip-rc.d $pkgdir/etc/rc.d/noip
+ install -Dm755 ../noip-rc.d $pkgdir/etc/rc.d/noip
+ install -Dm644 ../noip2.service $pkgdir/usr/lib/systemd/system/noip2.service
}
+
+# vim:set ts=2 sw=2 et:
diff --git a/community/noip/noip.install b/community/noip/noip.install
index 8e0252a4b..1207f20e4 100644
--- a/community/noip/noip.install
+++ b/community/noip/noip.install
@@ -1,11 +1,6 @@
-# arg 1: the new package version
post_install() {
- echo ""
- echo "####################################################"
- echo "# IMPORTANT! #"
- echo "# BEFORE running noip2 YOU MUST CONFIGURE IT! #"
- echo "# To configure noip2 run the command \"noip2 -C -Y\" #"
- echo "####################################################"
- echo ""
- sleep 2
+ echo
+ echo 'Before running noip2 you must configure it.'
+ echo 'To configure noip2 run the command "noip2 -C -Y"'
+ echo
}
diff --git a/community/noip/noip2.service b/community/noip/noip2.service
new file mode 100644
index 000000000..2ad0ba867
--- /dev/null
+++ b/community/noip/noip2.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=No-IP Dynamic DNS Update Client
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/noip2 -c /etc/no-ip2.conf
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/nsd/PKGBUILD b/community/nsd/PKGBUILD
index cd1ed6b0d..566d28dc8 100644
--- a/community/nsd/PKGBUILD
+++ b/community/nsd/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 74423 2012-07-28 07:26:34Z bisson $
+# $Id: PKGBUILD 79243 2012-11-01 17:25:44Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: Roberto Alsina <ralsina@kde.org>
pkgname=nsd
-pkgver=3.2.13
-pkgrel=2
+pkgver=3.2.14
+pkgrel=1
pkgdesc='Authoritative only, high performance and simple DNS server'
url='http://www.nlnetlabs.nl/nsd/'
license=('BSD')
@@ -14,7 +14,7 @@ makedepends=('flex')
arch=('i686' 'x86_64')
source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"
'service')
-sha1sums=('2cb44f75e9686fd73c7ee9765857a36a8fe5bca9'
+sha1sums=('78390145ec392b520d88c19fc99c544dd1426959'
'1cfa2d7254139be50f11753d4e07281ed2af36eb')
install=install
diff --git a/community/openocd/PKGBUILD b/community/openocd/PKGBUILD
index a30f719a8..6b0884c55 100644
--- a/community/openocd/PKGBUILD
+++ b/community/openocd/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 77217 2012-10-07 07:16:10Z bpiotrowski $
+# $Id: PKGBUILD 79223 2012-11-01 10:24:39Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
# Contributor: Matthias Bauch <matthias.bauch@gmail.com>
# Contributor: Laszlo Papp <djszapi2 at gmail com>
# Contributor: Samuel Tardieu <sam@rfc1149.net>
pkgname=openocd
-pkgver=0.6.0
-pkgrel=2
+pkgver=0.6.1
+pkgrel=1
pkgdesc='Debugging, in-system programming and boundary-scan testing for embedded target devices'
arch=('i686' 'x86_64')
url='http://openocd.berlios.de'
@@ -14,8 +14,8 @@ license=('GPL')
depends=('libftdi')
options=(!strip !libtool)
install=openocd.install
-source=("http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2")
-md5sums=('824cbe192ca2c79055b6ae82579123cf')
+source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
+md5sums=('946421efc2414ff89bdaf3f588b230f8')
_features=(parport ft2232_libftdi amtjtagaccel ep93xxat91rm9200gw16012 presto_libftdi usbprog oocd_trace jlink vsllink rlink arm-jtag-ew buspirate stlink)
diff --git a/community/openttd/PKGBUILD b/community/openttd/PKGBUILD
index 22cf19d4f..c00595c76 100644
--- a/community/openttd/PKGBUILD
+++ b/community/openttd/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 75307 2012-08-18 21:49:24Z lcarlier $
+# $Id: PKGBUILD 79241 2012-11-01 16:48:44Z lcarlier $
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
pkgname=openttd
-pkgver=1.2.2
+pkgver=1.2.3
pkgrel=1
pkgdesc='An engine for running Transport Tycoon Deluxe.'
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ install=openttd.install
optdepends=('openttd-opengfx: free graphics'
'openttd-opensfx: free soundset')
source=("http://binaries.openttd.org/releases/${pkgver}/${pkgname}-${pkgver}-source.tar.xz")
-sha256sums=('57b105ab03d0275e190107fd1d54255f0c25d8b24d41d15ed2702534bab31f95')
+sha256sums=('d228798f7d4804b7ead186ec19082f0e6c83cfc2dbf625ddab1d22048117fd08')
build() {
cd ${pkgname}-${pkgver}
diff --git a/community/pcmanfm/PKGBUILD b/community/pcmanfm/PKGBUILD
index 5ff7a76bf..70d01156c 100644
--- a/community/pcmanfm/PKGBUILD
+++ b/community/pcmanfm/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 76527 2012-09-21 15:38:13Z bpiotrowski $
+# $Id: PKGBUILD 79229 2012-11-01 10:32:52Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <barthalion@gmail.com>
# Contributor: Unknown47 <unknown47r@gmail.com>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: Juergen Hoetzel <juergen@archlinux.org>
pkgname=pcmanfm
-pkgver=1.0.1
+pkgver=1.1.0
pkgrel=1
pkgdesc="An extremely fast and lightweight file manager"
arch=('i686' 'x86_64')
@@ -16,17 +16,17 @@ depends=('gtk2' 'desktop-file-utils' 'libfm' 'lxmenu-data')
makedepends=('intltool' 'pkgconfig')
install=$pkgname.install
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-$pkgver.tar.gz)
-md5sums=('f373ee514bae37b53b152d02ac465058')
+md5sums=('af0cff78690e658f3c06ceabf27bc71a')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $srcdir/$pkgname-$pkgver
./configure --sysconfdir=/etc --prefix=/usr
- make LDFLAGS="-lm $LDFLAGS"
+ make LDFLAGS+=' -lm'
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR="$pkgdir" install
sed -e 's|x-directory/normal|inode/directory|' -i $pkgdir/usr/share/applications/pcmanfm.desktop
diff --git a/community/quassel/PKGBUILD b/community/quassel/PKGBUILD
index 5a3ad5aed..0b7f18610 100644
--- a/community/quassel/PKGBUILD
+++ b/community/quassel/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 70378 2012-05-05 12:50:26Z jlichtblau $
+# $Id: PKGBUILD 79252 2012-11-01 19:02:54Z mtorromeo $
+# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
-# Contributor: Vesa Kaihlavirta <vegai@iki.fi>
pkgname=quassel
pkgver=0.8.0
-pkgrel=1
+pkgrel=2
pkgdesc="QT4 irc client with a separated core"
arch=('i686' 'x86_64')
url="http://quassel-irc.org/"
@@ -14,9 +14,11 @@ makedepends=('cmake' 'automoc4')
install=quassel.install
backup=(etc/conf.d/quassel)
source=("http://quassel-irc.org/pub/$pkgname-$pkgver.tar.bz2"
+ 'quassel.service'
'rc.quassel'
'quassel.conf')
sha256sums=('a3515bd18e2b100eb9a72480e76b1faefaa5e84cdb236b6af1f05b477a1e9071'
+ '91a1aaae47d41c11aa418dd560039ddbbfb659e02b86379d8c4789c5ada362d3'
'845e621448a51ec181554e9327bfcc3a3de1501ae8f70410f0b9b8991ac171b0'
'f3031ea8217e01ba42cea14606169e3e27affa5918968ffd5a03c21ae92fe2b8')
@@ -37,10 +39,12 @@ build() {
package() {
cd build
- make DESTDIR=${pkgdir} install
+ make DESTDIR="${pkgdir}" install
- install -D ${srcdir}/rc.$pkgname \
- ${pkgdir}/etc/rc.d/$pkgname
- install -D -m644 ${srcdir}/$pkgname.conf \
- ${pkgdir}/etc/conf.d/$pkgname
+ install -Dm644 "${srcdir}"/$pkgname.service \
+ "${pkgdir}"/usr/lib/systemd/system/$pkgname.service
+ install -D "${srcdir}"/rc.$pkgname \
+ "${pkgdir}"/etc/rc.d/$pkgname
+ install -Dm644 "${srcdir}"/$pkgname.conf \
+ "${pkgdir}"/etc/conf.d/$pkgname
}
diff --git a/community/quassel/quassel.service b/community/quassel/quassel.service
new file mode 100644
index 000000000..eff018899
--- /dev/null
+++ b/community/quassel/quassel.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Quassel core service
+After=network.target
+
+[Service]
+Type=simple
+User=quassel
+Group=quassel
+ExecStart=/usr/bin/quasselcore --configdir=/var/lib/quassel --listen=0.0.0.0
+
+[Install]
+WantedBy=multi-user.target
diff --git a/community/shotwell/PKGBUILD b/community/shotwell/PKGBUILD
index 9600fd3ad..cab33a565 100644
--- a/community/shotwell/PKGBUILD
+++ b/community/shotwell/PKGBUILD
@@ -1,25 +1,30 @@
-# $Id: PKGBUILD 79129 2012-10-30 23:07:35Z heftig $
+# $Id: PKGBUILD 79217 2012-11-01 09:41:09Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Joeny Ang <ang(dot)joeny(at)gmail(dot)com>
pkgname=shotwell
pkgver=0.13.1
-pkgrel=1
+pkgrel=2
pkgdesc="A digital photo organizer designed for the GNOME desktop environment"
arch=('i686' 'x86_64')
url="http://yorba.org/shotwell/"
license=('LGPL2.1')
depends=('libgee' 'libunique3' 'libwebkit3' 'libgexiv2' 'libraw' 'rest'
- 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib')
+ 'desktop-file-utils' 'dconf' 'hicolor-icon-theme' 'json-glib'
+ 'gstreamer0.10-base-plugins')
makedepends=('intltool' 'vala>=0.17.2')
install=shotwell.install
-source=("http://yorba.org/download/shotwell/0.13/shotwell-${pkgver}.tar.xz")
-md5sums=('71eb1346093705ca2b37c12a21994d14')
+source=("http://yorba.org/download/shotwell/0.13/shotwell-${pkgver}.tar.xz"
+ "no-libexec.patch")
+md5sums=('71eb1346093705ca2b37c12a21994d14'
+ 'b4124e022c98b4382530e6fbcef965e2')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+ patch -p1 <$srcdir/no-libexec.patch
+
./configure --prefix=/usr \
--disable-schemas-compile \
--disable-desktop-update \
diff --git a/community/shotwell/no-libexec.patch b/community/shotwell/no-libexec.patch
new file mode 100644
index 000000000..fe8960719
--- /dev/null
+++ b/community/shotwell/no-libexec.patch
@@ -0,0 +1,26 @@
+diff -Naur shotwell-0.13.1.orig/Makefile shotwell-0.13.1/Makefile
+--- shotwell-0.13.1.orig/Makefile 2012-10-05 20:07:37.000000000 +0200
++++ shotwell-0.13.1/Makefile 2012-10-31 22:27:30.382869896 +0100
+@@ -558,8 +558,8 @@
+ mkdir -p $(DESTDIR)$(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
+ $(INSTALL_PROGRAM) $(THUMBNAILER_BIN) $(DESTDIR)$(PREFIX)/bin
+- mkdir -p $(DESTDIR)$(PREFIX)/libexec/shotwell
+- $(INSTALL_PROGRAM) $(MIGRATOR_BIN) $(DESTDIR)$(PREFIX)/libexec/shotwell
++ mkdir -p $(DESTDIR)$(PREFIX)/lib/shotwell
++ $(INSTALL_PROGRAM) $(MIGRATOR_BIN) $(DESTDIR)$(PREFIX)/lib/shotwell
+ mkdir -p $(DESTDIR)$(PREFIX)/share/shotwell/icons
+ $(INSTALL_DATA) icons/* $(DESTDIR)$(PREFIX)/share/shotwell/icons
+ mkdir -p $(DESTDIR)$(PREFIX)/share/icons/hicolor/scalable/apps
+diff -Naur shotwell-0.13.1.orig/src/AppDirs.vala shotwell-0.13.1/src/AppDirs.vala
+--- shotwell-0.13.1.orig/src/AppDirs.vala 2012-10-05 19:56:07.000000000 +0200
++++ shotwell-0.13.1/src/AppDirs.vala 2012-10-31 22:28:17.634388872 +0100
+@@ -109,7 +109,7 @@
+ // not installed yet - use wherever we were run from
+ libexec_dir = get_exec_dir();
+ } else {
+- libexec_dir = File.new_for_path(Resources.PREFIX + "/libexec/shotwell");
++ libexec_dir = File.new_for_path(Resources.PREFIX + "/lib/shotwell");
+ }
+ }
+
diff --git a/community/ubuntuone-client/PKGBUILD b/community/ubuntuone-client/PKGBUILD
index 52f6262af..6d95a2a4a 100644
--- a/community/ubuntuone-client/PKGBUILD
+++ b/community/ubuntuone-client/PKGBUILD
@@ -1,15 +1,15 @@
-# $Id: PKGBUILD 78266 2012-10-17 10:27:54Z allan $
+# $Id: PKGBUILD 79225 2012-11-01 10:28:41Z bgyorgy $
# Maintainer: Balló György <ballogyor+arch at gmail dot com>
pkgname=ubuntuone-client
pkgver=4.0.0
-pkgrel=2
+pkgrel=3
pkgdesc="Ubuntu One helps you store, sync and share files between your computers"
arch=('i686' 'x86_64')
url="https://launchpad.net/ubuntuone-client"
license=('GPL')
-depends=('dbus-glib' 'python2-configglue' 'python2-distribute' 'libnotify' 'python2-gobject2' 'python2-pyinotify' 'python2-simplejson' 'ubuntu-sso-client' 'python2-ubuntuone-storageprotocol' 'hicolor-icon-theme' 'xdg-utils')
-makedepends=('intltool' 'imake' 'gobject-introspection')
+depends=('dbus-glib' 'python2-configglue' 'python2-distribute' 'python2-gobject' 'libnotify' 'python2-gobject2' 'python2-pyinotify' 'python2-simplejson' 'ubuntu-sso-client' 'python2-ubuntuone-storageprotocol' 'hicolor-icon-theme' 'xdg-utils')
+makedepends=('intltool' 'imake')
options=('!libtool')
install=$pkgname.install
source=(http://launchpad.net/ubuntuone-client/stable-4-0/$pkgver/+download/$pkgname-$pkgver.tar.gz
diff --git a/community/wt/PKGBUILD b/community/wt/PKGBUILD
index 466570808..ecf681d09 100644
--- a/community/wt/PKGBUILD
+++ b/community/wt/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 79020 2012-10-29 05:20:29Z svenstaro $
+# $Id: PKGBUILD 79248 2012-11-01 18:27:55Z svenstaro $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Denis Martinez <deuns.martinez@gmail.com>
pkgname=wt
-pkgver=3.2.3rc2
-_pkgver=3.2.3-rc2
+pkgver=3.2.3
+_pkgver=3.2.3
pkgrel=1
pkgdesc="a C++ library and application server for developing and deploying web applications"
arch=('i686' 'x86_64')
@@ -26,7 +26,7 @@ optdepends=('openssl: for SSL support in built-in webserver'
'qt: for the Wt/Qt interopability example (wtwithqt)')
backup=('etc/wt/wt_config.xml')
source=(http://downloads.sourceforge.net/witty/$pkgname-${_pkgver}.tar.gz)
-md5sums=('64097d4d5fe346fe9a09f5789ec54598')
+md5sums=('58922ba5d68104880adbe2e022132fb5')
build() {
cd ${srcdir}/${pkgname}-${_pkgver}
diff --git a/core/procps-ng/PKGBUILD b/core/procps-ng/PKGBUILD
index 96a719025..deede7ef4 100644
--- a/core/procps-ng/PKGBUILD
+++ b/core/procps-ng/PKGBUILD
@@ -1,14 +1,14 @@
-# $Id: PKGBUILD 166961 2012-09-23 12:22:10Z tomegun $
+# $Id: PKGBUILD 170098 2012-11-01 17:28:55Z bisson $
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
# Contributor: Eric Bélanger <eric@archlinux.org>
pkgname=procps-ng
-pkgver=3.3.3
-pkgrel=6
+pkgver=3.3.5
+pkgrel=1
pkgdesc='Utilities for monitoring your system and its processes'
-arch=('i686' 'x86_64')
url="http://gitorious.org/procps"
license=('GPL' 'LGPL')
+arch=('i686' 'x86_64')
groups=('base')
depends=('ncurses')
conflicts=('procps')
@@ -16,25 +16,25 @@ provides=('procps')
replaces=('procps')
backup=('etc/sysctl.conf')
options=('!libtool')
-source=(procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver}
- sysctl.conf)
-sha1sums=('e78a098f1a3c06722155800cc5cfa0c865af03c0'
+source=("procps-ng-${pkgver}.tar.gz::http://gitorious.org/procps/procps/archive-tarball/v${pkgver}"
+ 'sysctl.conf')
+sha1sums=('f591f2ff01f8866daf8999f45b797d18929b7aec'
'97ff07bab9aa5daa8d54a1346f73ba74f8e12a53')
build() {
- cd "${srcdir}/procps-procps"
- echo ${pkgver} > .tarball-version
- ./autogen.sh
- ./configure --exec-prefix=/ --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib
- make
+ cd "${srcdir}/procps-procps"
+ echo ${pkgver} > .tarball-version
+ ./autogen.sh
+ ./configure --exec-prefix=/ --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib
+ make
}
package() {
- cd "${srcdir}/procps-procps"
- make DESTDIR="${pkgdir}" install
- install -D -m644 ../sysctl.conf "${pkgdir}/etc/sysctl.conf"
+ cd "${srcdir}/procps-procps"
+ make DESTDIR="${pkgdir}" install
+ install -D -m644 ../sysctl.conf "${pkgdir}/etc/sysctl.conf"
- # provided by util-linux
- rm "${pkgdir}/bin/kill"
- rm "${pkgdir}/usr/share/man/man1/kill.1"
+ # provided by util-linux
+ rm "${pkgdir}/bin/kill"
+ rm "${pkgdir}/usr/share/man/man1/kill.1"
}
diff --git a/extra/cmake/PKGBUILD b/extra/cmake/PKGBUILD
index 65a1affe9..aba084385 100644
--- a/extra/cmake/PKGBUILD
+++ b/extra/cmake/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 165140 2012-08-11 16:15:35Z andrea $
+# $Id: PKGBUILD 170091 2012-11-01 08:20:49Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=cmake
-pkgver=2.8.9
+pkgver=2.8.10
pkgrel=1
pkgdesc="A cross-platform open-source make system"
arch=('i686' 'x86_64')
@@ -14,10 +14,10 @@ makedepends=('qt')
optdepends=('qt: cmake-gui')
install="${pkgname}.install"
source=("http://www.cmake.org/files/v2.8/${pkgname}-${pkgver}.tar.gz")
-md5sums=('801f4c87f8b604f727df5bf1f05a59e7')
+md5sums=('d4aef1eab859df61d2664721a72732c0')
build() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
./bootstrap --prefix=/usr \
--mandir=/share/man \
@@ -29,13 +29,15 @@ build() {
}
package() {
- cd "${srcdir}"/${pkgname}-${pkgver}
+ cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
- vimpath="$pkgdir/usr/share/vim/vimfiles"
- install -Dm644 Docs/cmake-indent.vim ${vimpath}/indent/cmake-indent.vim
- install -Dm644 Docs/cmake-syntax.vim ${vimpath}/syntax/cmake-syntax.vim
- install -Dm644 Docs/cmake-mode.el ${pkgdir}/usr/share/emacs/site-lisp/cmake-mode.el
+ vimpath="${pkgdir}/usr/share/vim/vimfiles"
+ install -Dm644 Docs/cmake-indent.vim "${vimpath}"/indent/cmake-indent.vim
+ install -Dm644 Docs/cmake-syntax.vim "${vimpath}"/syntax/cmake-syntax.vim
+ install -Dm644 Docs/cmake-mode.el \
+ "${pkgdir}"/usr/share/emacs/site-lisp/cmake-mode.el
- install -Dm644 Copyright.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
+ install -Dm644 Copyright.txt \
+ "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
}
diff --git a/extra/dconf/PKGBUILD b/extra/dconf/PKGBUILD
index 7b644384f..7cdc809f2 100644
--- a/extra/dconf/PKGBUILD
+++ b/extra/dconf/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 169859 2012-10-30 22:24:44Z heftig $
+# $Id: PKGBUILD 170097 2012-11-01 16:50:36Z heftig $
# Maintainer: Ionut Biru <ibiru@archlinux.org>
pkgname=dconf
-pkgver=0.14.0
+pkgver=0.14.1
pkgrel=1
pkgdesc="A low-level configuration system."
arch=(i686 x86_64)
@@ -13,7 +13,7 @@ makedepends=('vala' 'gtk3' 'intltool' 'docbook-xsl')
optdepends=('gtk3: for dconf-editor')
install=dconf.install
source=(http://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
-sha256sums=('9ae848bf25c3de0fb8c0157679630ddf39be1c10ed2f3beb2b8f0165d768da33')
+sha256sums=('59c58c5eafa0ebd616287d078f4441d5342870a44634445d324e88fc0287f0b8')
build() {
cd "$pkgname-$pkgver"
diff --git a/extra/fprintd/PKGBUILD b/extra/fprintd/PKGBUILD
index 292af2d28..ebb8ee844 100644
--- a/extra/fprintd/PKGBUILD
+++ b/extra/fprintd/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 158562 2012-05-04 23:57:03Z allan $
+# $Id: PKGBUILD 170104 2012-11-01 20:54:41Z heftig $
# Maintainer:
# Contributor: Nikolay Rysev <mad.f3ka@gmail.com>
pkgname=fprintd
pkgver=0.4.1
-pkgrel=4
+pkgrel=5
pkgdesc="D-Bus service to access fingerprint readers"
arch=(i686 x86_64)
url="http://www.freedesktop.org/wiki/Software/fprint/fprintd"
@@ -13,18 +13,22 @@ depends=(libfprint dbus-glib polkit)
makedepends=(intltool gtk-doc)
groups=(fprint)
options=(!libtool)
+backup=(etc/pam.d/fingerprint-auth)
_snap=V_${pkgver//./_}
-source=(http://cgit.freedesktop.org/libfprint/$pkgname/snapshot/$_snap.tar.bz2)
-md5sums=('58fcac035c181dce8f49c374181aa2ae')
+source=(http://cgit.freedesktop.org/libfprint/$pkgname/snapshot/$_snap.tar.bz2
+ fingerprint-auth)
+md5sums=('58fcac035c181dce8f49c374181aa2ae'
+ '8c7da9ccd28ec87dd2572ddfb85d563e')
build() {
- cd "$srcdir/$_snap"
+ cd $_snap
./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib \
--disable-static
make
}
package() {
- cd "$srcdir/$_snap"
+ cd $_snap
make DESTDIR="$pkgdir" pammoddir="/usr/lib/security" install
+ install -Dm644 ../fingerprint-auth "$pkgdir/etc/pam.d/fingerprint-auth"
}
diff --git a/extra/fprintd/fingerprint-auth b/extra/fprintd/fingerprint-auth
new file mode 100644
index 000000000..b0652c1ec
--- /dev/null
+++ b/extra/fprintd/fingerprint-auth
@@ -0,0 +1,6 @@
+auth required pam_tally.so onerr=succeed file=/var/log/faillog
+auth required pam_shells.so
+auth requisite pam_nologin.so
+auth required pam_env.so
+auth required pam_fprintd.so
+auth optional pam_permit.so
diff --git a/extra/konversation/PKGBUILD b/extra/konversation/PKGBUILD
index 25190140a..267963aba 100644
--- a/extra/konversation/PKGBUILD
+++ b/extra/konversation/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 168997 2012-10-17 10:19:30Z allan $
+# $Id: PKGBUILD 170102 2012-11-01 18:41:11Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: James Rayner <iphitus@gmail.com>
@@ -6,13 +6,14 @@
pkgname=konversation
pkgver=1.4
-pkgrel=3
+pkgrel=4
pkgdesc="A user friendly IRC client for KDE"
arch=('i686' 'x86_64')
url="http://konversation.kde.org"
depends=('kdebase-runtime' 'kdepimlibs')
makedepends=('automoc4' 'cmake' 'pkgconfig' 'docbook-xml')
-optdepends=('python: python scripting support')
+optdepends=('python: python scripting support'
+ 'kdebase-konsole: open a terminal in konversation')
license=('GPL2' 'FDL')
install=${pkgname}.install
options=('!makeflags')
diff --git a/extra/obexd/PKGBUILD b/extra/obexd/PKGBUILD
index d798a12e1..e2505f2f7 100644
--- a/extra/obexd/PKGBUILD
+++ b/extra/obexd/PKGBUILD
@@ -1,20 +1,21 @@
-# $Id: PKGBUILD 164647 2012-08-01 18:37:45Z andrea $
+# $Id: PKGBUILD 170095 2012-11-01 11:22:52Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Geoffroy Carrier <geoffroy@archlinux.org>
pkgbase=obexd
pkgname=('obexd-client' 'obexd-server')
-pkgver=0.47
+epoch=1
+pkgver=0.46
pkgrel=1
url="http://www.bluez.org/"
arch=('i686' 'x86_64')
license=('GPL2')
makedepends=('bluez' 'libical')
source=("http://www.kernel.org/pub/linux/bluetooth/${pkgbase}-${pkgver}.tar.bz2")
-md5sums=('af721152055c40a226e374c2dd989901')
+md5sums=('625f0417d119437429c9cce29479cfa4')
build() {
- cd "${srcdir}/${pkgbase}-${pkgver}"
+ cd ${pkgbase}-${pkgver}
./configure --prefix=/usr \
--libexecdir=/usr/lib/obexd
make
@@ -27,7 +28,7 @@ package_obexd-client() {
replaces=('obexd')
conflicts=('obexd')
- cd "${srcdir}/${pkgbase}-${pkgver}/client"
+ cd ${pkgbase}-${pkgver}/client
install -m755 -d "${pkgdir}/usr/lib/obexd"
install -m755 -d "${pkgdir}/usr/share/dbus-1/services"
install -m755 obex-client "${pkgdir}/usr/lib/obexd/"
@@ -39,7 +40,7 @@ package_obexd-server() {
depends=('bluez' 'libical')
conflicts=('obex-data-server')
- cd "${srcdir}/${pkgbase}-${pkgver}/src"
+ cd ${pkgbase}-${pkgver}/src
install -m755 -d "${pkgdir}/usr/lib/obexd"
install -m755 -d "${pkgdir}/usr/share/dbus-1/services"
install -m755 obexd "${pkgdir}/usr/lib/obexd/"
diff --git a/extra/tracker/PKGBUILD b/extra/tracker/PKGBUILD
index c2a44e99f..7ac43037c 100644
--- a/extra/tracker/PKGBUILD
+++ b/extra/tracker/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 169959 2012-10-30 22:47:11Z heftig $
+# $Id: PKGBUILD 170100 2012-11-01 18:21:54Z heftig $
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Alexander Fehr <pizzapunk gmail com>
pkgbase=tracker
pkgname=(tracker libtracker-sparql)
-pkgver=0.14.3
+pkgver=0.14.4
_tver=${pkgver%.*}
pkgrel=1
pkgdesc="All-in-one indexer, search tool and metadata database"
@@ -15,11 +15,12 @@ makedepends=('libgee' 'libgnome-keyring' 'upower' 'libexif' 'exempi'
'poppler-glib' 'libgsf' 'icu' 'enca' 'networkmanager' 'gtk3'
'desktop-file-utils' 'hicolor-icon-theme' 'gobject-introspection'
'intltool' 'giflib' 'gstreamer0.10-base' 'totem-plparser'
- 'taglib' 'nautilus' 'gnome-panel' 'libvorbis' 'flac' 'vala')
+ 'taglib' 'nautilus' 'gnome-panel' 'libvorbis' 'flac' 'vala'
+ 'libgxps')
url="http://www.gnome.org"
options=('!libtool' '!emptydirs')
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgbase/$_tver/$pkgbase-$pkgver.tar.xz)
-sha256sums=('7c1ecf3705ecbd2a0278d04277cd1bd8c89d5838913de922fef32321ce67abe4')
+sha256sums=('b818ee42b9007a94b2f8046edc4706bb2036187d5fd304e7ae23e5d2fcf85918')
build() {
cd $pkgbase-$pkgver
@@ -49,7 +50,8 @@ package_tracker() {
'libvorbis: Vorbis metadata extractor'
'flac: FLAC metadata extractor'
'taglib: writeback for audio files'
- 'gnome-panel: tracker-search-bar')
+ 'gnome-panel: tracker-search-bar'
+ 'libgxps: XPS extractor')
groups=('gnome-extra')
install=tracker.install
diff --git a/libre/linux-libre-kmod-alx/PKGBUILD b/libre/linux-libre-kmod-alx/PKGBUILD
index 64b57eed5..294c5afbf 100644
--- a/libre/linux-libre-kmod-alx/PKGBUILD
+++ b/libre/linux-libre-kmod-alx/PKGBUILD
@@ -1,11 +1,11 @@
# Maintainer: André Silva <emulatorman@lavabit.com>
-_kernver=3.6.4
+_kernver=3.6.5
_kernrel=1
pkgname=('linux-libre-kmod-alx')
_pkgver=2012-10-03
pkgver=20121003
-pkgrel=3
+pkgrel=4
pkgdesc='Atheros alx ethernet device driver for linux-libre kernel'
arch=('i686' 'x86_64')
url='http://linuxwireless.org/'
diff --git a/libre/linux-libre-lts-kmod-alx/PKGBUILD b/libre/linux-libre-lts-kmod-alx/PKGBUILD
index 24a7919e1..ffda9f21f 100644
--- a/libre/linux-libre-lts-kmod-alx/PKGBUILD
+++ b/libre/linux-libre-lts-kmod-alx/PKGBUILD
@@ -1,11 +1,11 @@
# Maintainer: André Silva <emulatorman@lavabit.com>
-_kernver=3.0.49
+_kernver=3.0.50
_kernrel=1
pkgname=('linux-libre-lts-kmod-alx')
_pkgver=2012-10-03
pkgver=20121003
-pkgrel=4
+pkgrel=5
pkgdesc='Atheros alx ethernet device driver for linux-libre-lts kernel'
arch=('i686' 'x86_64')
url='http://linuxwireless.org/'
diff --git a/libre/linux-libre-lts/PKGBUILD b/libre/linux-libre-lts/PKGBUILD
index 1a0d031c1..1bcdb57fd 100644
--- a/libre/linux-libre-lts/PKGBUILD
+++ b/libre/linux-libre-lts/PKGBUILD
@@ -7,10 +7,10 @@
pkgbase=linux-libre-lts # Build stock -LIBRE-LTS kernel
#pkgbase=linux-libre-custom # Build kernel with a different name
_basekernel=3.0
-_sublevel=49
+_sublevel=50
pkgver=${_basekernel}.${_sublevel}
pkgrel=1
-_lxopkgver=${_basekernel}.48 # nearly always the same as pkgver
+_lxopkgver=${_basekernel}.49 # nearly always the same as pkgver
arch=('i686' 'x86_64' 'mips64el')
url="http://linux-libre.fsfla.org/"
license=('GPL2')
@@ -32,7 +32,7 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn
'module-init-wait-3.0.patch'
"http://www.linux-libre.fsfla.org/pub/linux-libre/lemote/gnewsense/pool/debuginfo/linux-patches-${_lxopkgver}-gnu_0loongsonlibre_mipsel.tar.bz2")
md5sums=('5f64180fe7df4e574dac5911b78f5067'
- '29c9749f200e1679f52118b239fa4491'
+ '8c0723e49160ecd399205f9bbb8ee076'
'aed25ab047e1c0b020a1516c235c6a74'
'7d37e8ce0f4bd5a957172b12ae742ea0'
'c072b17032e80debc6a8626299245d46'
@@ -44,7 +44,7 @@ md5sums=('5f64180fe7df4e574dac5911b78f5067'
'f36222e7ce20c8e4dc27376f9be60f6c'
'670931649c60fcb3ef2e0119ed532bd4'
'8a71abc4224f575008f974a099b5cf6f'
- 'e584ba40e137198ed196e58772838262')
+ 'fba8d3ccd4a7e5b1132c9e20f60df1df')
if [ "$CARCH" != "mips64el" ]; then
# Don't use the Loongson-specific patches on non-mips64el arches.
unset source[${#source[@]}-1]
diff --git a/libre/linux-libre-lts/linux-libre-lts.install b/libre/linux-libre-lts/linux-libre-lts.install
index e718a1f5f..c961f9a99 100644
--- a/libre/linux-libre-lts/linux-libre-lts.install
+++ b/libre/linux-libre-lts/linux-libre-lts.install
@@ -2,7 +2,7 @@
# arg 2: the old package version
KERNEL_NAME=-lts
-KERNEL_VERSION=3.0.49-1-LIBRE-LTS
+KERNEL_VERSION=3.0.50-1-LIBRE-LTS
# set a sane PATH to ensure that critical utils like depmod will be found
export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
diff --git a/libre/linux-libre/PKGBUILD b/libre/linux-libre/PKGBUILD
index c48d12472..d5b44814f 100644
--- a/libre/linux-libre/PKGBUILD
+++ b/libre/linux-libre/PKGBUILD
@@ -10,7 +10,7 @@
pkgbase=linux-libre # Build stock -LIBRE kernel
#pkgbase=linux-libre-custom # Build kernel with a different name
_basekernel=3.6
-_sublevel=4
+_sublevel=5
pkgver=${_basekernel}.${_sublevel}
pkgrel=1
_lxopkgver=${_basekernel}.4 # nearly always the same as pkgver
@@ -33,7 +33,7 @@ source=("http://linux-libre.fsfla.org/pub/linux-libre/releases/${_basekernel}-gn
'module-init-wait-3.6.patch'
"http://www.linux-libre.fsfla.org/pub/linux-libre/lemote/gnewsense/pool/debuginfo/linux-patches-${_lxopkgver}-gnu_0loongsonlibre_mipsel.tar.bz2")
md5sums=('a2312edd0265b5b07bd4b50afae2b380'
- '71451d3fdb67db17581393a061bf9516'
+ 'a126c193c6fbb3acff00c426493897df'
'e4a3a4677e1fac6ecf0e0fb44c41ca08'
'68fc36a4efb6ade0eca409b9444fef0c'
'e49ac236dfeef709f91a3d993ea7b62c'
diff --git a/libre/linux-libre/linux-libre.install b/libre/linux-libre/linux-libre.install
index 681b322af..30b5abc90 100644
--- a/libre/linux-libre/linux-libre.install
+++ b/libre/linux-libre/linux-libre.install
@@ -2,7 +2,7 @@
# arg 2: the old package version
KERNEL_NAME=
-KERNEL_VERSION=3.6.4-1-LIBRE
+KERNEL_VERSION=3.6.5-1-LIBRE
# set a sane PATH to ensure that critical utils like depmod will be found
export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'
diff --git a/libre/parabola-keyring/PKGBUILD b/libre/parabola-keyring/PKGBUILD
index fb048355c..5a8b77e33 100644
--- a/libre/parabola-keyring/PKGBUILD
+++ b/libre/parabola-keyring/PKGBUILD
@@ -2,7 +2,7 @@
# Maintainer: André Silva <emulatorman@lavabit.com>
pkgname=parabola-keyring
-pkgver=20121024
+pkgver=20121101
pkgrel=1
pkgdesc='Parabola GNU/Linux-libre PGP keyring'
arch=('any')
@@ -16,5 +16,5 @@ package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make PREFIX=/usr DESTDIR=${pkgdir} install
}
-md5sums=('7aebac7b4735117617f718058e0602f5'
- '3b0183f30e786ea7197427199f9fa4f6')
+md5sums=('c663f7bfc154423b96e00683d1ea4e4e'
+ 'f7362e866e14da48c6900debb9e283f5')
diff --git a/libre/texlive-bin-libre/PKGBUILD b/libre/texlive-bin-libre/PKGBUILD
index d5571465f..14ed8bdb1 100644
--- a/libre/texlive-bin-libre/PKGBUILD
+++ b/libre/texlive-bin-libre/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 165207 2012-08-13 08:28:02Z remy $
+# $Id: PKGBUILD 169309 2012-10-19 08:03:07Z eric $
# Maintainer: Rémy Oudompheng <remy@archlinux.org>
# Contributor: francois <francois.archlinux.org>
# Maintainer (Parabola): Michał Masłowski <mtjm@mtjm.eu>
@@ -6,7 +6,7 @@
pkgname=texlive-bin-libre
pkgver=2012.0
-pkgrel=4
+pkgrel=5
pkgdesc="TeX Live binaries"
license=('GPL')
arch=('i686' 'x86_64' 'mips64el')