diff options
Diffstat (limited to 'community')
27 files changed, 334 insertions, 116 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} |