From 32b069e79cb891e99962cbac53e2950c11ea403f Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 May 2013 00:51:22 -0700 Subject: Fri May 3 00:51:21 PDT 2013 --- community/cinnamon/PKGBUILD | 13 +++++--- community/cinnamon/idle-dim.patch | 35 +++++++++++++++++++++ community/f2fs-tools/PKGBUILD | 27 ++++++++++++++++ community/go/PKGBUILD | 59 ++++++++++++++++++----------------- community/lmms/PKGBUILD | 8 ++--- community/mod_wsgi2/PKGBUILD | 9 +++--- community/mod_wsgi2/mod_wsgi2.install | 6 ++-- community/muffin/PKGBUILD | 14 ++++++--- community/muffin/fix-dnd.patch | 29 +++++++++++++++++ community/openimageio/PKGBUILD | 8 ++--- community/pekwm/PKGBUILD | 14 ++++++--- community/python-simplejson/PKGBUILD | 44 +++++++++++++------------- community/setconf/PKGBUILD | 9 +++--- community/sqlheavy/PKGBUILD | 40 ++++++++++++++++++++++++ community/stone-soup/PKGBUILD | 9 +++--- community/teeworlds/PKGBUILD | 15 ++++----- community/yaml-cpp/PKGBUILD | 6 ++-- 17 files changed, 244 insertions(+), 101 deletions(-) create mode 100644 community/cinnamon/idle-dim.patch create mode 100644 community/f2fs-tools/PKGBUILD create mode 100644 community/muffin/fix-dnd.patch create mode 100755 community/sqlheavy/PKGBUILD (limited to 'community') diff --git a/community/cinnamon/PKGBUILD b/community/cinnamon/PKGBUILD index 46ed9ffcf..5ff5db12a 100644 --- a/community/cinnamon/PKGBUILD +++ b/community/cinnamon/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 89648 2013-04-30 22:18:11Z faidoc $ +# $Id: PKGBUILD 89831 2013-05-02 18:23:50Z bgyorgy $ # Maintainer: Alexandre Filgueira # Contributor: M0Rf30 # Contributor: unifiedlinux @@ -6,7 +6,7 @@ pkgname=cinnamon pkgver=1.7.8 -pkgrel=1 +pkgrel=2 pkgdesc="Linux desktop which provides advanced innovative features and a traditional user experience" arch=('i686' 'x86_64') url="http://cinnamon.linuxmint.com/" @@ -29,13 +29,15 @@ source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/Cinnamon/tarball/ "fix-control-center-check.patch" "gnome-3.8.patch" "switch-applications.patch" - "fallback-helpers.patch") + "fallback-helpers.patch" + "idle-dim.patch") sha256sums=('812042c6b7685e2054602a29ed190f8efc07f67f92be1bc496358307534cb969' 'a0c05c995102b16f1060cbd43931eeaefeafd0265a0335e4ca14a143bd4c8c30' 'ee5694bdc997ffa35a817f691b15bae13747137d35ec2aecd0da298d7edbe426' '0971ac14bc31167d3b94ea93e608c5d49518a12b89f40c97f84d80e715657aa3' '921a1f63d2890dd54c149aa27a3d3209ac2fb843be597ae4ef3b4621e76a2262' - 'fc8e8f5b7772ff331212280b0d4cf624c5ca2a442e8e8defc319cc2f2b060f2e') + 'fc8e8f5b7772ff331212280b0d4cf624c5ca2a442e8e8defc319cc2f2b060f2e' + 'b34c30299fb88228c59f36fced90d56346847019a080bc7b8157b72caa659100') build() { cd ${srcdir}/linuxmint-Cinnamon* @@ -62,6 +64,9 @@ build() { # Start media keys and mount helpers with the session patch -Np1 -i ../fallback-helpers.patch + # Fix brightness applet for GNOME 3.8 + patch -Np1 -i ../idle-dim.patch + ./autogen.sh --prefix=/usr \ --sysconfdir=/etc \ --libexecdir=/usr/lib/cinnamon \ diff --git a/community/cinnamon/idle-dim.patch b/community/cinnamon/idle-dim.patch new file mode 100644 index 000000000..17f5af616 --- /dev/null +++ b/community/cinnamon/idle-dim.patch @@ -0,0 +1,35 @@ +diff -Naur linuxmint-Cinnamon-a464dc9.orig/files/usr/share/cinnamon/applets/brightness@cinnamon.org/applet.js linuxmint-Cinnamon-a464dc9/files/usr/share/cinnamon/applets/brightness@cinnamon.org/applet.js +--- linuxmint-Cinnamon-a464dc9.orig/files/usr/share/cinnamon/applets/brightness@cinnamon.org/applet.js 2013-04-30 18:01:56.000000000 +0200 ++++ linuxmint-Cinnamon-a464dc9/files/usr/share/cinnamon/applets/brightness@cinnamon.org/applet.js 2013-05-02 19:32:12.934254811 +0200 +@@ -9,8 +9,7 @@ + + /* constants */ + const DimSettingsSchema = "org.gnome.settings-daemon.plugins.power"; +-const DimSettingsAc = "idle-dim-ac"; +-const DimSettingsBattery = "idle-dim-battery"; ++const DimSettings = "idle-dim"; + const PowerBusName = 'org.gnome.SettingsDaemon'; + const PowerObjectPath = '/org/gnome/SettingsDaemon/Power'; + +@@ -116,10 +115,8 @@ + + this._settingsMenu = new PopupMenu.PopupSubMenuMenuItem(_("Dimming settings")); + +- let dimSwitchAc = this._buildItem(_("Dim screen on AC power"), DimSettingsSchema, DimSettingsAc); +- this._settingsMenu.menu.addMenuItem(dimSwitchAc); +- let dimSwitchBattery = this._buildItem(_("Dim screen on battery"), DimSettingsSchema, DimSettingsBattery); +- this._settingsMenu.menu.addMenuItem(dimSwitchBattery); ++ let dimSwitch = this._buildItem(_("Dim screen"), DimSettingsSchema, DimSettings); ++ this._settingsMenu.menu.addMenuItem(dimSwitch); + + //initial update. + //We have to wait until dbus calls back to decide whether to display brightness controls. +@@ -145,7 +142,7 @@ + this.menu.addMenuItem(new PopupMenu.PopupSeparatorMenuItem()); + } + +- this.menu.addSettingsAction(_("Settings"), "screen"); ++ this.menu.addSettingsAction(_("Settings"), "screensaver"); + })); + } + catch (e) { diff --git a/community/f2fs-tools/PKGBUILD b/community/f2fs-tools/PKGBUILD new file mode 100644 index 000000000..a089b0e35 --- /dev/null +++ b/community/f2fs-tools/PKGBUILD @@ -0,0 +1,27 @@ +# Maintainer: Christian Hesse + +pkgname=f2fs-tools +pkgver=1.1.0 +pkgrel=2 +pkgdesc="Tools for Flash-Friendly File System (F2FS)" +arch=('i686' 'x86_64') +url="http://sourceforge.net/projects/f2fs-tools/" +depends=('util-linux') +license=('GPL') +source=('http://git.kernel.org/cgit/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-1.1.0.tar.gz') +sha256sums=('c8cfb6895a0b3775f0df00a776fd451558739289684dd43f1fd75f876fa62867') + +build() { + cd "${pkgname}-${pkgver}" + + autoreconf -fi + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + + make DESTDIR="${pkgdir}/" install +} + diff --git a/community/go/PKGBUILD b/community/go/PKGBUILD index ab0dd64e4..f2c3a085f 100644 --- a/community/go/PKGBUILD +++ b/community/go/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 86967 2013-03-25 13:19:54Z arodseth $ +# $Id: PKGBUILD 89827 2013-05-02 17:23:12Z arodseth $ # Maintainer: Vesa Kaihlavirta # Maintainer: Alexander Rødseth # Contributor: Rémy Oudompheng @@ -7,10 +7,9 @@ # Contributor: Christian Himpel # Contributor: Mike Rosset # Contributor: Daniel YC Lin - pkgname=go -pkgver=1.0.3 -pkgrel=7 +pkgver=1.1rc1 +pkgrel=1 epoch=2 pkgdesc='Google Go compiler and tools' arch=('x86_64' 'i686') @@ -21,46 +20,48 @@ makedepends=('inetutils') options=('!strip') install="$pkgname.install" backup=('usr/lib/go/bin') -source=("http://go.googlecode.com/files/${pkgname}$pkgver.src.tar.gz" - "$pkgname.sh") -sha256sums=('7fba3533d172f13629d3d8a79e57c620632b0bd075abe11d7698b338be0ae3df' +if [ "$CARCH" == 'x86_64' ]; then + source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-amd64.tar.gz" + "$pkgname.sh") + sha256sums=('fc76b716b031d8afba3f3e6bcaca410e8dbf5fb625db5def00fbaaaa960e108c' 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892') +else + source=("http://go.googlecode.com/files/${pkgname}$pkgver.linux-386.tar.gz" + "$pkgname.sh") + sha256sums=('b4eb8d9b55ae4a78c86213fa968755163ab3a8efa3f5c9f3a472b182b9d9a52e' + 'a03db71d323ed2794123bb31b5c8ad5febd551c490b5c0b341052c8e5f0ba892') +fi build() { - cd "$srcdir/$pkgname" + cd "$srcdir/$pkgname/src" - if [ "$CARCH" == 'x86_64' ]; then - export GOARCH=amd64 - elif [ "$CARCH" == 'i686' ]; then - export GOARCH=386 - else - # A friendly gesture to Arch Linux ARM - export GOARCH=arm - fi export GOROOT_FINAL=/usr/lib/go - export GOOS=linux - cd src + # Enable ARM crosscompilation for linux + export GOOS=linux + export GOARCH=arm bash make.bash - # Enable ARM crosscompilation for non-arm platforms - if [ "$CARCH" == 'x86_64' ]; then - export GOARCH=arm - elif [ "$CARCH" == 'i686' ]; then - export GOARCH=arm - fi - bash make.bash + # Crosscompilation for other platforms too (including linux i686 and x86_64) + for os in linux; do # also possible: darwin freebsd windows + for arch in amd64 386; do + export GOOS=$os + export GOARCH=$arch + bash make.bash + done + done } check() { cd "$srcdir/$pkgname" + # Only test for linux and the architecture we're on + export GOOS=linux if [ "$CARCH" == 'x86_64' ]; then export GOARCH=amd64 elif [ "$CARCH" == 'i686' ]; then export GOARCH=386 else - # A friendly gesture to Arch Linux ARM export GOARCH=arm fi @@ -86,8 +87,8 @@ package() { $pkgdir/usr/share/zsh/site-functions/_go for f in ftdetect/gofiletype.vim autoload/go/complete.vim indent/go.vim \ - ftplugin/go/fmt.vim ftplugin/go/godoc.vim ftplugin/go/import.vim \ - syntax/go.vim syntax/godoc.vim plugin/godoc.vim; + ftplugin/go/fmt.vim ftplugin/go/import.vim syntax/go.vim syntax/godoc.vim \ + plugin/godoc.vim; do install -Dm644 misc/vim/$f $pkgdir/usr/share/vim/vimfiles/$f done @@ -136,7 +137,7 @@ package() { install -Dm644 VERSION $pkgdir/usr/lib/go/VERSION # Clean up - rm -r "$pkgdir/usr/bin/linux_arm" + #rm -r "$pkgdir/usr/bin/linux_arm" } # vim:set ts=2 sw=2 et: diff --git a/community/lmms/PKGBUILD b/community/lmms/PKGBUILD index e58603521..728f8e500 100644 --- a/community/lmms/PKGBUILD +++ b/community/lmms/PKGBUILD @@ -1,12 +1,12 @@ -# $Id: PKGBUILD 85371 2013-03-01 10:35:13Z andrea $ +# $Id: PKGBUILD 89669 2013-05-02 08:58:00Z lfleischer $ # Maintainer: Lukas Fleischer # Contributor: Shinlun Hsieh # Contributor: Mateusz Herych # Contributor: Storyteller pkgname=lmms -pkgver=0.4.13 -pkgrel=3 +pkgver=0.4.14 +pkgrel=1 pkgdesc='The Linux MultiMedia Studio.' arch=('i686' 'x86_64') url='http://lmms.sourceforge.net/' @@ -25,7 +25,7 @@ options=('!libtool' '!makeflags') install=lmms.install source=("http://downloads.sourceforge.net/sourceforge/lmms/${pkgname}-${pkgver}.tar.bz2" zynaddsubfx_unlink.patch) -md5sums=('80db0dc5263041d443f474220410991f' +md5sums=('a30e4fcc24c117a1fb4fd7bef891f7e8' 'd2ea78ac0cf2979505f140c6845617cf') build() { diff --git a/community/mod_wsgi2/PKGBUILD b/community/mod_wsgi2/PKGBUILD index b408192d8..3a27e99e2 100644 --- a/community/mod_wsgi2/PKGBUILD +++ b/community/mod_wsgi2/PKGBUILD @@ -1,25 +1,26 @@ -# $Id: PKGBUILD 80683 2012-11-29 03:29:49Z arodseth $ +# $Id: PKGBUILD 89811 2013-05-02 13:55:03Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Andrea Scarpino # Contributor: Ryan Coyner pkgname=mod_wsgi2 pkgver=3.4 -pkgrel=2 +pkgrel=3 pkgdesc='Python2 WSGI adapter module for Apache' arch=('x86_64' 'i686') url='http://www.modwsgi.org/' license=('APACHE') depends=('apache' 'python2') conflicts=('mod_wsgi') -install=$pkgname.install +install="$pkgname.install" source=("http://modwsgi.googlecode.com/files/mod_wsgi-$pkgver.tar.gz") sha256sums=('ae85c98e9e146840ab3c3e4490e6774f9bef0f99b9f679fca786b2adb5b4b6e8') build() { cd "$srcdir/mod_wsgi-$pkgver" - ./configure --prefix=/usr \ + ./configure \ + --prefix=/usr \ --with-apxs=/usr/sbin/apxs \ --with-python=/usr/bin/python2 make diff --git a/community/mod_wsgi2/mod_wsgi2.install b/community/mod_wsgi2/mod_wsgi2.install index d26d61631..a7f0290c2 100644 --- a/community/mod_wsgi2/mod_wsgi2.install +++ b/community/mod_wsgi2/mod_wsgi2.install @@ -1,9 +1,9 @@ post_install() { -/bin/cat << ENDOFMESSAGE + cat << ENDOFMESSAGE ==> ==> ==> To install mod_wsgi, add the following line in -==> /etc/httpd/conf/httpd.conf file : +==> /etc/httpd/conf/httpd.conf file: ==> ==> LoadModule wsgi_module modules/mod_wsgi.so ==> @@ -12,3 +12,5 @@ post_install() { ==> ENDOFMESSAGE } + +# vim:set ts=2 sw=2 et: diff --git a/community/muffin/PKGBUILD b/community/muffin/PKGBUILD index ccf3aa3a9..5c0d9cde1 100644 --- a/community/muffin/PKGBUILD +++ b/community/muffin/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 89374 2013-04-29 01:14:49Z bgyorgy $ +# $Id: PKGBUILD 89819 2013-05-02 15:47:37Z bgyorgy $ # Maintainer: Alexandre Filgueira # Contributor: Adam Hani Schakaki # Contributor: Ner0 pkgname=muffin pkgver=1.7.4 -pkgrel=1 +pkgrel=2 pkgdesc="Cinnamon window manager based on Mutter" arch=('i686' 'x86_64') url="https://github.com/linuxmint/muffin" @@ -16,9 +16,11 @@ makedepends=('intltool' 'gnome-doc-utils' 'gnome-common') options=('!libtool' '!emptydirs') install=$pkgname.install source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxmint/muffin/tarball/$pkgver" - "switch-applications.patch") + "switch-applications.patch" + "fix-dnd.patch") md5sums=('d64bfe853e6fda5ec11a06581743f774' - 'a5d5d76dc281277a8afc83d7affdcc7b') + 'a5d5d76dc281277a8afc83d7affdcc7b' + '6d787466831def299360419cc3b5e47b') build() { cd linuxmint-muffin-* @@ -26,6 +28,9 @@ build() { # Fix windows switcher keybinding with default settings in GNOME 3.8 patch -Np1 -i ../switch-applications.patch + # Fix unresponsive panel on DND + patch -RNp1 -i ../fix-dnd.patch + PYTHON=python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib/muffin \ --localstatedir=/var --disable-static --disable-schemas-compile make @@ -36,5 +41,4 @@ package() { make DESTDIR="$pkgdir/" install } - # vim:set ts=2 sw=2 et: diff --git a/community/muffin/fix-dnd.patch b/community/muffin/fix-dnd.patch new file mode 100644 index 000000000..f30e22521 --- /dev/null +++ b/community/muffin/fix-dnd.patch @@ -0,0 +1,29 @@ +From fca9ce4a1218837aef1886f8d98c8e5a5d124843 Mon Sep 17 00:00:00 2001 +From: luyikei +Date: Wed, 16 Jan 2013 14:09:39 +0900 +Subject: [PATCH] Put the rest of redirect window types into the top window + group + +--- + src/compositor/meta-window-actor.c | 5 ++++- + 1 file changed, 4 insertions(+), 1 deletion(-) + +diff --git a/src/compositor/meta-window-actor.c b/src/compositor/meta-window-actor.c +index 4113e72..66ba3c4 100644 +--- a/src/compositor/meta-window-actor.c ++++ b/src/compositor/meta-window-actor.c +@@ -1513,7 +1513,10 @@ const char *meta_window_actor_get_description (MetaWindowActor *self) + + if (window->type == META_WINDOW_DROPDOWN_MENU || + window->type == META_WINDOW_POPUP_MENU || +- window->type == META_WINDOW_COMBO){ ++ window->type == META_WINDOW_COMBO || ++ window->type == META_WINDOW_NOTIFICATION || ++ window->type == META_WINDOW_DND || ++ window->type == META_WINDOW_OVERRIDE_OTHER){ + clutter_container_add_actor (CLUTTER_CONTAINER (info->top_window_group), + CLUTTER_ACTOR (self)); + } +-- +1.8.1.6 + diff --git a/community/openimageio/PKGBUILD b/community/openimageio/PKGBUILD index cf038c179..2505880c7 100644 --- a/community/openimageio/PKGBUILD +++ b/community/openimageio/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 88614 2013-04-20 16:45:07Z heftig $ +# $Id: PKGBUILD 89826 2013-05-02 16:18:15Z svenstaro $ # Contributor: SpepS # Maintainer: Sven-Hendrik Haase pkgname=openimageio -pkgver=1.1.9 -pkgrel=2 +pkgver=1.1.10 +pkgrel=1 pkgdesc="A library for reading and writing images, including classes, utilities, and applications" arch=(i686 x86_64) url="http://www.openimageio.org/" @@ -14,7 +14,7 @@ makedepends=('cmake' 'qt4' 'python2' 'boost' 'mesa') optdepends=('qt4: iv image viewer' 'python2: bindings support') source=(https://github.com/OpenImageIO/oiio/tarball/Release-$pkgver) -md5sums=('19ac43e2bf00e5b6b7f2dbc778ce9648') +md5sums=('e5c5cd77238f74c3a6a3610c211430f2') build() { cd "$srcdir"/$_pkgname* diff --git a/community/pekwm/PKGBUILD b/community/pekwm/PKGBUILD index 91bdd5575..e3fe0f3b4 100644 --- a/community/pekwm/PKGBUILD +++ b/community/pekwm/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 81762 2012-12-28 23:22:15Z arodseth $ +# $Id: PKGBUILD 89805 2013-05-02 12:32:13Z arodseth $ # Maintainer: Alexander Rødseth # Contributor: Kevin Piche # Contributor: Eddie Lozon pkgname=pekwm pkgver=0.1.16 -pkgrel=2 +pkgrel=4 pkgdesc='Small, fast, functional, and flexible window manager' arch=('x86_64' 'i686') license=('GPL') @@ -27,16 +27,20 @@ backup=(etc/pekwm/autoproperties etc/pekwm/mouse_system etc/pekwm/start etc/pekwm/vars) -source=("http://www.pekwm.org/projects/pekwm/files/${pkgname}-${pkgver}.tar.bz2" +source=("http://www.pekwm.org/projects/pekwm/files/$pkgname-$pkgver.tar.bz2" "${pkgname}_kdm.desktop") sha256sums=('899eef35d5d1f472dd65a08c180b9719935cb1f42eda7fada6f9b8b551c79c96' '4c1817d328dad84407c9ba7219015eb3be0345be9e98fc03fa693b6b443a8dc6') -build() { +prepare() { cd "$srcdir" + gendesk +} + +build() { + cd "$srcdir/$pkgname-$pkgver" - cd "$pkgname-$pkgver" ./configure --prefix=/usr --sysconfdir=/etc make } diff --git a/community/python-simplejson/PKGBUILD b/community/python-simplejson/PKGBUILD index 6fab1f149..7805c6889 100644 --- a/community/python-simplejson/PKGBUILD +++ b/community/python-simplejson/PKGBUILD @@ -1,39 +1,37 @@ -# $Id: PKGBUILD 82843 2013-01-25 00:09:28Z arodseth $ -# Maintainer: Jaroslav Lichtblau +# $Id: PKGBUILD 89809 2013-05-02 13:39:19Z arodseth $ +# Maintainer: Alexander Rødseth +# Contributor: Jaroslav Lichtblau # Contributor: Allan McRae # Contributor: David Moore pkgbase=python-simplejson -pkgname=(python-simplejson python2-simplejson) -pkgver=3.0.7 -pkgrel=2 -pkgdesc="Simple, fast, extensible JSON encoder/decoder for Python" +pkgname=("$pkgbase" 'python2-simplejson') +pkgver=3.2.0 +pkgrel=1 +pkgdesc='Simple, fast, extensible JSON encoder/decoder for Python' license=('MIT') -arch=('i686' 'x86_64') -url="http://undefined.org/python/#simplejson" +arch=('x86_64' 'i686') +url='http://undefined.org/python/#simplejson' makedepends=('python' 'python2-distribute') -changelog=python-simplejson.changelog -source=($pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}) -md5sums=('fc9013eab6330514196a7f19c2cff386') - -build() { - true -} +source=("$pkgname-$pkgver.tar.gz::https://github.com/simplejson/simplejson/tarball/v${pkgver}") +sha256sums=('507036d10039ccf437625437b2521c0f691c20c3911b2b7183d5a66c98d36432') package_python-simplejson() { depends=('python') - cd ${srcdir}/simplejson-simplejson-* - python setup.py install --root=${pkgdir} - install -Dm644 ${srcdir}/simplejson-simplejson-*/LICENSE.txt \ - ${pkgdir}/usr/share/licenses/$pkgname/LICENSE + cd "$srcdir/simplejson-simplejson-"* + python setup.py install --root="$pkgdir" + install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } package_python2-simplejson() { depends=('python2') - cd ${srcdir}/simplejson-simplejson-* - python2 setup.py install --root=${pkgdir} - install -Dm644 ${srcdir}/simplejson-simplejson-*/LICENSE.txt \ - ${pkgdir}/usr/share/licenses/$pkgname/LICENSE + cd "$srcdir/simplejson-simplejson-"* + python2 setup.py install --root="$pkgdir" + install -Dm644 "$srcdir/simplejson-simplejson"-*/LICENSE.txt \ + "$pkgdir/usr/share/licenses/$pkgname/LICENSE" } + +# vim:set ts=2 sw=2 et: diff --git a/community/setconf/PKGBUILD b/community/setconf/PKGBUILD index 6d0586f00..a2a9fbb34 100644 --- a/community/setconf/PKGBUILD +++ b/community/setconf/PKGBUILD @@ -1,16 +1,17 @@ -# $Id: PKGBUILD 86348 2013-03-15 13:28:26Z arodseth $ +# $Id: PKGBUILD 89807 2013-05-02 13:36:01Z arodseth $ # Maintainer: Alexander Rødseth pkgname=setconf pkgver=0.5.3 -pkgrel=1 +pkgrel=2 pkgdesc='Utility to easily change settings in configuration files or Makefiles' arch=('x86_64' 'i686') url='http://setconf.roboticoverlords.org/' license=('GPL2') depends=('pcre' 'gc') -# Comment out the makedepends if you're on a platform not supported by shedskin -makedepends=('shedskin') +if [ "$CARCH" == 'x86_64' ] || [ "$CARCH" == 'i686' ]; then + makedepends=('shedskin') +fi source=("http://setconf.roboticoverlords.org/$pkgname-$pkgver.tar.xz") sha256sums=('f063b308bcebefe139418587527262ffce776584b1952224ec9a41d0562d55b6') diff --git a/community/sqlheavy/PKGBUILD b/community/sqlheavy/PKGBUILD new file mode 100755 index 000000000..43f08fc60 --- /dev/null +++ b/community/sqlheavy/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 89815 2013-05-02 15:11:19Z alucryd $ +# Maintainer: Maxime Gauduin +# Contributor : sebikul + +pkgname=sqlheavy +pkgver=0.1.1 +pkgrel=6 +pkgdesc="GObject SQLite wrapper" +arch=('i686' 'x86_64') +url="https://code.google.com/p/sqlheavy/" +license=('LGPL') +conflicts=('sqlheavy-git') +depends=('gtk2' 'sqlite3') +makedepends=('gobject-introspection' 'vala') +options=('!libtool') +source=("https://sqlheavy.googlecode.com/files/${pkgname}-${pkgver}.tar.xz") +sha256sums=('e8689f5fd4e0baf98eada2b3811262bb99877c2e8586fd21ad2a7ad3acc59031') + +prepare() { + cd "${srcdir}"/${pkgname}-${pkgver} + + sed -i 's/libvala-0.16/libvala-0.20/' configure + sed -i '/examples/d + /utils/d' Makefile.in +} + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} + + ./configure --prefix=/usr --disable-static + make +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + + make DESTDIR="${pkgdir}" install +} + +# vim: ts=2 sw=2 et: diff --git a/community/stone-soup/PKGBUILD b/community/stone-soup/PKGBUILD index da7225f71..1092cda59 100644 --- a/community/stone-soup/PKGBUILD +++ b/community/stone-soup/PKGBUILD @@ -1,12 +1,12 @@ # Maintainer: Jakob Gruber pkgname=stone-soup -pkgver=0.11.2 -pkgrel=1 +pkgver=0.12.0 +pkgrel=2 pkgdesc='Open-source, single-player, role-playing roguelike game of exploration and treasure-hunting' arch=('i686' 'x86_64') url='http://crawl.develz.org/' -depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'libgl' 'glu' 'freetype2' 'ttf-dejavu') +depends=('lua51' 'ncurses' 'sdl_image' 'sqlite' 'glu' 'freetype2' 'ttf-dejavu') makedepends=('bison' 'flex' 'gendesk' 'mesa') conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git') license=('custom') @@ -64,5 +64,4 @@ package() { "${pkgdir}/usr/share/applications/${pkgname}.desktop" } - -md5sums=('84b5939d242fbaec4d9d8c64fa02156c') +md5sums=('38ed5bae81f6513cc898aa12efda2c38') diff --git a/community/teeworlds/PKGBUILD b/community/teeworlds/PKGBUILD index 51ee46ff9..508577be5 100644 --- a/community/teeworlds/PKGBUILD +++ b/community/teeworlds/PKGBUILD @@ -5,19 +5,19 @@ # Maintainer: Sven-Hendrik Haase pkgname=teeworlds -pkgver=0.6.1 -pkgrel=3 +pkgver=0.6.2 +pkgrel=1 pkgdesc="A multiplayer 2D shooter" arch=('i686' 'x86_64') -url="http://teeworlds.com" +url="https://www.teeworlds.com" license=('custom') depends=('alsa-lib' 'glu' 'sdl' 'freetype2') -makedepends=('python2' 'bam' 'mesa') +makedepends=('python' 'bam' 'mesa') replaces=('teewars') -source=(http://www.teeworlds.com/files/${pkgname}-${pkgver}-source.tar.gz +source=(https://www.teeworlds.com/files/${pkgname}-${pkgver}-source.tar.gz teeworlds.desktop teeworlds.png) -md5sums=('00de7195ecd1f23596dc3237341af512' +md5sums=('649f6c05a7b117096b238c07062edc39' '3944aaf7a8c19a83510b2b39c4cddf5f' '44f39e398409232a0e0a431ed46d8cc8') @@ -25,9 +25,6 @@ build() { # Build teeworlds cd ${srcdir}/${pkgname}-*-source - # Use Python 2 - sed -i 's/python /python2 /' bam.lua - bam server_release client_release } diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD index b7a741c64..c2fc7add7 100644 --- a/community/yaml-cpp/PKGBUILD +++ b/community/yaml-cpp/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 82853 2013-01-25 03:41:30Z svenstaro $ +# $Id: PKGBUILD 89824 2013-05-02 16:13:14Z svenstaro $ # Maintainer: Sven-Hendrik Haase # Contributor: Markus Martin pkgname=yaml-cpp -pkgver=0.5.0 +pkgver=0.5.1 pkgrel=1 pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec" url="http://code.google.com/p/yaml-cpp/" @@ -10,7 +10,7 @@ arch=('i686' 'x86_64') license=('MIT') makedepends=('cmake' 'boost') source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz) -md5sums=('c6d96190434d5959d814c603f98512c6') +md5sums=('0fa47a5ed8fedefab766592785c85ee7') build() { cd $srcdir/$pkgname-$pkgver -- cgit v1.2.3-54-g00ecf