diff options
Diffstat (limited to 'community')
33 files changed, 332 insertions, 156 deletions
diff --git a/community/bip/PKGBUILD b/community/bip/PKGBUILD new file mode 100644 index 000000000..52879dd91 --- /dev/null +++ b/community/bip/PKGBUILD @@ -0,0 +1,39 @@ +# $Id: PKGBUILD 104918 2014-01-28 11:06:38Z flexiondotorg $ +# Maintainer: Martin Wimpress <code@flexion.org> + +pkgname=bip +pkgver=0.8.9 +pkgrel=1 +pkgdesc="Multiuser IRC proxy that supports replaying of logged conversations." +arch=('i686' 'x86_64') +url="http://bip.milkypond.org/" +license=('GPL') +depends=('openssl') +source=("http://pkgs.fedoraproject.org/repo/pkgs/${pkgname}/${pkgname}-${pkgver}.tar.gz/04158ad020db221ed87cdc03660ef6c9//$pkgname-$pkgver.tar.gz" + ${pkgname}.service) +md5sums=('04158ad020db221ed87cdc03660ef6c9' + 'e9a445ed7b0cf12e57d77cf42021160c') +install=${pkgname}.install + +prepare() { + cd "${srcdir}/${pkgname}-${pkgver}" + # Don't treat warnings as errors. + sed -i 's/-Werror//g' Makefile.in + # Make the sample configuration reflect the PKGBUILD defaults + sed -i 's:/var/proxy/logs:/var/log/bip:' samples/$pkgname.conf +} + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -D -m755 ${srcdir}/${pkgname}-${pkgver}/scripts/bipgenconfig "${pkgdir}"/usr/bin/bipgenconfig + install -D -m644 ${srcdir}/${pkgname}-${pkgver}/samples/$pkgname.conf "${pkgdir}"/usr/share/$pkgname/$pkgname.conf.sample + install -D -m644 ${srcdir}/${pkgname}-${pkgver}/samples/$pkgname.vim "${pkgdir}"/usr/share/vim/syntax/$pkgname.vim + install -D -m 0644 ../${pkgname}.service "${pkgdir}/usr/lib/systemd/system/${pkgname}.service" +} diff --git a/community/bip/bip.install b/community/bip/bip.install new file mode 100644 index 000000000..5c7857aff --- /dev/null +++ b/community/bip/bip.install @@ -0,0 +1,27 @@ +post_install() { + if ! getent passwd bip > /dev/null; then + echo "==> Creating bip user" + usr/bin/useradd --comment "Bip IRC Proxy" --shell /bin/sh --home /var/lib/bip --system --user-group bip + fi + + mkdir -p /var/run/bip 2 > /dev/null + chown -R bip:bip /var/run/bip + + mkdir -p /var/log/bip 2 > /dev/null + chown -R bip:bip /var/log/bip + systemctl daemon-reload +} + +post_upgrade() { + post_install +} + +pre_remove() { + systemctl stop bip + echo "==> Removing bip user and group" + userdel bip + if getent group bip > /dev/null; then + groupdel bip + fi + rm -rf /var/run/bip +} diff --git a/community/bip/bip.service b/community/bip/bip.service new file mode 100644 index 000000000..299866088 --- /dev/null +++ b/community/bip/bip.service @@ -0,0 +1,13 @@ +[Unit] +Description=Bip IRC Proxy Server +After=network.target +ConditionPathExists=/etc/bip.conf + +[Service] +User=bip +Type=forking +PIDFile=/var/run/bip/bip.pid +ExecStart=/usr/bin/bip -f /etc/bip.conf + +[Install] +WantedBy=multi-user.target diff --git a/community/clearsilver/PKGBUILD b/community/clearsilver/PKGBUILD index 6113d7352..84a849fe2 100644 --- a/community/clearsilver/PKGBUILD +++ b/community/clearsilver/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 102895 2013-12-23 15:16:31Z spupykin $ +# $Id: PKGBUILD 104882 2014-01-28 03:34:09Z td123 $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer : Aaron Griffin <aaron@archlinux.org> # Contributor: William Rea <sillywilly@gmail.com> pkgname=clearsilver pkgver=0.10.5 -pkgrel=12 +pkgrel=13 pkgdesc="clearsilver is a fast, powerful, and language-neutral HTML template system" arch=('i686' 'x86_64') url='http://www.clearsilver.net' diff --git a/community/instead/PKGBUILD b/community/instead/PKGBUILD index e68815f34..2169587cd 100644 --- a/community/instead/PKGBUILD +++ b/community/instead/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 104835 2014-01-27 10:00:52Z spupykin $ +# $Id: PKGBUILD 104923 2014-01-28 11:19:00Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Peter Kosyh <p.kosyhgmail.com> pkgname=instead -pkgver=2.0.0 +pkgver=2.0.1 pkgrel=1 pkgdesc="a quest interpreter" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('GPL') depends=('sdl_image' 'sdl_mixer' 'sdl_ttf' 'lua') optdepends=('instead-launcher: install and update INSTEAD games from net') source=(http://downloads.sourceforge.net/project/instead/instead/${pkgver}/instead_${pkgver}.tar.gz) -md5sums=('3b65855cc0aa5040c881f2830e154365') +md5sums=('28adadd80c3726ebd3856aa3fa372ea3') build() { cd "${srcdir}/instead-${pkgver}" @@ -24,5 +24,5 @@ package() { cd "${srcdir}/instead-${pkgver}" make DESTDIR="${pkgdir}" PREFIX=/usr install - cp -a doc/*.{html,txt,pdf} doc/examples $pkgdir/usr/share/doc/instead/ + cp -a doc/*.{html,pdf} doc/instead.txt doc/examples $pkgdir/usr/share/doc/instead/ } diff --git a/community/libgit2-glib/PKGBUILD b/community/libgit2-glib/PKGBUILD index bb1484a33..9cc31aa13 100644 --- a/community/libgit2-glib/PKGBUILD +++ b/community/libgit2-glib/PKGBUILD @@ -1,21 +1,21 @@ -# $Id: PKGBUILD 99843 2013-10-31 02:02:27Z allan $ +# $Id: PKGBUILD 104880 2014-01-28 00:44:20Z eric $ # Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> pkgname=libgit2-glib -pkgver=0.0.6 +pkgver=0.0.10 pkgrel=1 pkgdesc="GLib wrapper for libgit2" -url="http://live.gnome.org/Libgit2-glib" +url="http://wiki.gnome.org/Projects/Libgit2-glib" license=(LGPL2.1) arch=(i686 x86_64) -depends=(glib2 libgit2 gobject-introspection) +depends=(glib2 libgit2) +makedepends=(gobject-introspection) source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz) -sha256sums=('bda84b5ab6fbe2922a4cf386b4e6d4401863dec7bea1879e86939d005cd521f6') +sha256sums=('3d9dc3c2ca7fab21aa005100b102e085f4d864e507c424d46de451e9d40bfeff') build() { cd $pkgname-$pkgver - ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \ - --disable-static + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var # https://bugzilla.gnome.org/show_bug.cgi?id=655517 sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool diff --git a/community/marisa/ChangeLog b/community/marisa/ChangeLog deleted file mode 100644 index b7f4b062d..000000000 --- a/community/marisa/ChangeLog +++ /dev/null @@ -1,10 +0,0 @@ -2013-05-28 ponsfoot <cabezon dot hashimoto at gmail dot com> - - * marisa 0.2.4-2 - - Separate bindings to another packages - -2013-05-27 ponsfoot <cabezon dot hashimoto at gmail dot com> - - * marisa 0.2.4-1 - - Initial release on AUR - diff --git a/community/marisa/PKGBUILD b/community/marisa/PKGBUILD index bceb59927..85b813490 100644 --- a/community/marisa/PKGBUILD +++ b/community/marisa/PKGBUILD @@ -1,15 +1,15 @@ +# $Id: PKGBUILD 104883 2014-01-28 03:34:13Z td123 $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: ponsfoot <cabezon dot hashimoto at gmail dot com> pkgbase=marisa pkgname=('marisa' 'perl-marisa' 'python2-marisa' 'ruby-marisa') pkgver=0.2.4 -pkgrel=2 +pkgrel=3 arch=('i686' 'x86_64') url="https://code.google.com/p/marisa-trie/" license=('BSD' 'LGPL') makedepends=('python2' 'ruby' 'perl') -changelog=ChangeLog source=(https://marisa-trie.googlecode.com/files/$pkgbase-$pkgver.tar.gz) sha1sums=('fb0ed7d993e84dff32ec456a79bd36a00022629d') @@ -95,8 +95,8 @@ package_ruby-marisa() { depends=('ruby' 'marisa') cd "${pkgbase}-${pkgver}/bindings/ruby" - _hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.0` - _arch=`pkg-config --variable=arch ruby-2.0` + _hdrdir=`pkg-config --variable=rubyhdrdir ruby-2.1` + _arch=`pkg-config --variable=arch ruby-2.1` make DESTDIR="$pkgdir" install \ hdrdir="$_hdrdir" \ arch_hdrdir="${_hdrdir}/${_arch}" \ diff --git a/community/mate-calc/PKGBUILD b/community/mate-calc/PKGBUILD index b29109c66..d48ea6d52 100644 --- a/community/mate-calc/PKGBUILD +++ b/community/mate-calc/PKGBUILD @@ -1,11 +1,9 @@ -# $Id: PKGBUILD 104222 2014-01-16 17:33:47Z flexiondotorg $ +# $Id: PKGBUILD 104914 2014-01-28 10:51:00Z flexiondotorg $ # Maintainer : Martin Wimpress <code@flexion.org> -# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> -# Contributor: Xpander <xpander0@gmail.com> pkgname=mate-calc -pkgver=1.6.0 -pkgrel=4 +pkgver=1.6.1 +pkgrel=1 pkgdesc="Calculator for the Mate desktop environment" url="http://mate-desktop.org" arch=('i686' 'x86_64') @@ -15,12 +13,12 @@ makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser') options=('!emptydirs') groups=('mate-extra') source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz") -sha1sums=('c793118595cd370ccca9875880e0e6760f6c5a08') +sha1sums=('dca1568748e42d4a019d7cf8effe1be80b20b82b') install=${pkgname}.install build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./autogen.sh \ + ./configure \ --prefix=/usr make } diff --git a/community/mate-document-viewer/PKGBUILD b/community/mate-document-viewer/PKGBUILD index 524ed6242..cb761aa84 100644 --- a/community/mate-document-viewer/PKGBUILD +++ b/community/mate-document-viewer/PKGBUILD @@ -1,11 +1,8 @@ -# $Id: PKGBUILD 104224 2014-01-16 17:39:19Z flexiondotorg $ # Maintainer : Martin Wimpress <code@flexion.org> -# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> -# Contributor: Xpander <xpander0@gmail.com> pkgname=mate-document-viewer -pkgver=1.6.1 -pkgrel=5 +pkgver=1.6.2 +pkgrel=1 pkgdesc="Simply a document viewer" url="http://mate-desktop.org" arch=('i686' 'x86_64') @@ -23,12 +20,12 @@ optdepends=('djvulibre: DjVu support' options=('!emptydirs') groups=('mate-extra') source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz") -sha1sums=('5b3d1643b7945d56214ec13dc38cb641dfb688e1') +sha1sums=('295a59e7b7babd86f42eebb2a9ac5405dd7b2997') install=${pkgname}.install build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./autogen.sh \ + ./configure \ --prefix=/usr \ --libexecdir=/usr/lib/${pkgname} \ --enable-gtk-doc \ diff --git a/community/mate-file-archiver/PKGBUILD b/community/mate-file-archiver/PKGBUILD index 33bf4e4d3..8f5f07026 100644 --- a/community/mate-file-archiver/PKGBUILD +++ b/community/mate-file-archiver/PKGBUILD @@ -1,13 +1,8 @@ -# $Id: PKGBUILD 104212 2014-01-16 17:08:48Z flexiondotorg $ # Maintainer : Martin Wimpress <code@flexion.org> -# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> -# Contributor: Alessio Sergi <asergi at archlinux dot us> -# Contributor: Xpander <xpander0@gmail.com> -# Contributor: hekel <hekel(at)archlinux.info> pkgname=mate-file-archiver -pkgver=1.6.0 -pkgrel=7 +pkgver=1.6.1 +pkgrel=1 pkgdesc="Archive manipulator for MATE" url="http://mate-desktop.org" arch=('i686' 'x86_64') @@ -15,15 +10,17 @@ license=('GPL') depends=('bzip2' 'desktop-file-utils' 'gtk2' 'gzip' 'libarchive' 'mate-file-manager' 'tar') makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser') -optdepends=('unrar: for RAR uncompression' -'zip: for ZIP archives' 'unzip: for ZIP archives' -'p7zip: 7zip compression utility' 'arj: for ARJ archives' -'unace: extraction tool for the proprietary ace archive format') +optdepends=('arj: for ARJ support' + 'p7zip: for 7zip support' + 'unrar: for RAR extract support' + 'unace: for ACE extract support' + 'unzip: for ZIP extract support' + 'zip: for ZIP support') options=('!emptydirs') groups=('mate-extra') source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz" fr-rpm-bsdtar.patch) -sha1sums=('c7df115b532a14fb7be193113da32cda4a2218e8' +sha1sums=('53a28d6fb559151c0b8d6f9a658113c77cdb938a' '219b05a979bf6f249aaae27964f02345fd81168d') install=${pkgname}.install @@ -35,7 +32,7 @@ prepare() { build() { cd "${srcdir}/${pkgname}-${pkgver}" - ./autogen.sh \ + ./configure \ --prefix=/usr \ --libexecdir=/usr/lib/${pkgname} \ --disable-static \ diff --git a/community/mate-nettool/PKGBUILD b/community/mate-nettool/PKGBUILD new file mode 100644 index 000000000..ca928d0e9 --- /dev/null +++ b/community/mate-nettool/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 104935 2014-01-28 14:00:49Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> + +pkgname=mate-nettool +pkgver=1.8.1 +pkgrel=6 +pkgdesc="MATE interface for various networking tools." +url="https://github.com/NiceandGently/mate-nettool" +arch=('i686' 'x86_64') +license=('GPL') +depends=('coreutils' 'gtk3' 'libgtop' 'net-tools') +makedepends=('mate-common' 'perl-xml-parser' 'yelp-tools') +optdepends=('dnsutils: Required for DNS queries' + 'iputils: Required for ping, traceroute and finger' + 'nmap: Required for network discovery and security audits' + 'whois: Required for WHOIS queries' + 'yelp: for reading help documents') +options=('!emptydirs') +source=("https://github.com/NiceandGently/${pkgname}/archive/v${pkgver}.tar.gz") +md5sums=('c05c525fee4d70c03ebad7e9bb9b7e4c') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./autogen.sh \ + --prefix=/usr \ + --disable-static \ + --disable-schemas-compile + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/community/mate-nettool/mate-nettool.install b/community/mate-nettool/mate-nettool.install new file mode 100644 index 000000000..bf6781f93 --- /dev/null +++ b/community/mate-nettool/mate-nettool.install @@ -0,0 +1,13 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas/ + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} diff --git a/community/notmuch/PKGBUILD b/community/notmuch/PKGBUILD index 9d83aa738..3ea81f29b 100644 --- a/community/notmuch/PKGBUILD +++ b/community/notmuch/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 95030 2013-08-03 23:12:06Z dwallace $ +# $Id: PKGBUILD 104884 2014-01-28 03:34:14Z td123 $ # Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> # Contributor: fauno <fauno at kiwwwi.com.ar> # Contributor: Olivier Ramonat <olivier at ramonat dot fr> @@ -6,7 +6,7 @@ pkgbase=notmuch pkgname=('notmuch' 'notmuch-vim' 'notmuch-mutt' 'notmuch-runtime') -pkgver=0.16 +pkgver=0.17 pkgrel=1 arch=('i686' 'x86_64') url="http://notmuchmail.org/" @@ -14,7 +14,7 @@ license=('GPL3') makedepends=('python2' 'python' 'emacs' 'gnupg' 'ruby' 'pkgconfig' 'xapian-core' 'gmime' 'talloc') options=(!distcc !makeflags) source=("http://notmuchmail.org/releases/${pkgname}-${pkgver}.tar.gz") -md5sums=('9de9f8a91eb2323d8503872a059c7f11') +md5sums=('65a6a6f1fe912803b60d5870132e2006') prepare(){ #cp -dpr --no-preserve=ownership "$srcdir/$pkgname-$pkgver" "$srcdir/$pkgname-runtime-$pkgver" diff --git a/community/obexftp/PKGBUILD b/community/obexftp/PKGBUILD index 0ed07065a..c8f4847f0 100644 --- a/community/obexftp/PKGBUILD +++ b/community/obexftp/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 102177 2013-12-06 12:11:56Z giovanni $ +# $Id: PKGBUILD 104885 2014-01-28 03:34:16Z td123 $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Alessio 'mOLOk' Bolognino <themolok@gmail.com> pkgname=obexftp pkgver=0.24 -pkgrel=1 +pkgrel=2 pkgdesc="A tool for transfer files to/from any OBEX enabled device" arch=('i686' 'x86_64') url="http://dev.zuckschwerdt.org/openobex/wiki/ObexFtp" diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD index 79ac5f1f6..3954a612a 100644 --- a/community/passenger/PKGBUILD +++ b/community/passenger/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 100819 2013-11-11 12:06:03Z spupykin $ +# $Id: PKGBUILD 104886 2014-01-28 03:34:17Z td123 $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=passenger pkgver=4.0.21 -pkgrel=2 +pkgrel=3 pkgdesc="mod_rails passenger" arch=('i686' 'x86_64') url="http://www.modrails.com" diff --git a/community/plan9port/PKGBUILD b/community/plan9port/PKGBUILD index d7082d675..cc69553ba 100644 --- a/community/plan9port/PKGBUILD +++ b/community/plan9port/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 102625 2013-12-16 21:54:40Z arodseth $ +# $Id: PKGBUILD 104876 2014-01-27 23:51:46Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: phrakture <aaronmgriffin--gmail--com> # Contributor: Fazlul Shahriar @@ -6,7 +6,7 @@ pkgname=plan9port pkgver=20131024 -pkgrel=2 +pkgrel=3 pkgdesc='Port of many programs from Plan 9 to Unix-like operating systems' arch=('x86_64' 'i686') url='http://swtch.com/plan9port/' @@ -45,10 +45,10 @@ package() { LICENSE # Fix hardcoded paths - #for f in `grep -H -r "$pkgdir$d/$pkgname" | cut -d: -f1`; do - # echo -n "\t$f" - # [ -e "$f" ] && sed -i "s:$pkgdir$d/$pkgname:$d/$pkgname:" "$f" || true - #done + for f in `grep -H -r "$pkgdir$d/$pkgname" | cut -d: -f1`; do + echo -n "\t$f" + [ -e "$f" ] && sed -i "s:$pkgdir$d/$pkgname:$d/$pkgname:" "$f" || true + done # Fix python scripts find "$pkgdir" -name '*.py' -print0 |xargs -0 \ diff --git a/community/python-greenlet/PKGBUILD b/community/python-greenlet/PKGBUILD new file mode 100644 index 000000000..5d123cf72 --- /dev/null +++ b/community/python-greenlet/PKGBUILD @@ -0,0 +1,45 @@ +# $Id: PKGBUILD 104937 2014-01-28 14:10:19Z fyan $ +# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> +# Maintainer: Felix Yan <felixonmars@gmail.com> +# Contributor: Ralf Schmitt <ralf@systemexit.de> + +pkgbase=python-greenlet +pkgname=(python-greenlet python2-greenlet) +pkgver=0.4.2 +pkgrel=2 +pkgdesc="Lightweight in-process concurrent programming" +license=("MIT") +url="http://pypi.python.org/pypi/greenlet" +makedepends=('python' 'python2') +source=("http://pypi.python.org/packages/source/g/greenlet/greenlet-${pkgver}.zip") +arch=('i686' 'x86_64') + +prepare() { + cp -r greenlet-$pkgver greenlet-$pkgver-py2 +} + +build() { + cd greenlet-$pkgver + python setup.py build + + cd ../greenlet-$pkgver-py2 + python2 setup.py build +} + +package_python-greenlet() { + depends=('python') + + cd greenlet-$pkgver + python setup.py install -O1 --root="$pkgdir" + install -Dm0644 LICENSE.PSF "$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF" +} + +package_python2-greenlet() { + depends=('python2') + + cd greenlet-$pkgver-py2 + python2 setup.py install -O1 --root="$pkgdir" + install -Dm0644 LICENSE.PSF "$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF" +} + +sha512sums=('9596b740921e4a80bcb43adb725a7a4ea428dadc10ba55f8840837ba685b010c273a4a2bd62c5ba4bfdf27ce87c914a83714d762bacafb8e0a3cd7e2a9675992') diff --git a/community/python-levenshtein/PKGBUILD b/community/python-levenshtein/PKGBUILD index b8af20113..f38df5c3f 100644 --- a/community/python-levenshtein/PKGBUILD +++ b/community/python-levenshtein/PKGBUILD @@ -1,4 +1,4 @@ -# $Id$ +# $Id: PKGBUILD 104954 2014-01-28 15:04:34Z fyan $ # Maintainer: Felix Yan <felixonmars@gmail.com> # Contributor: Thomas S Hatch <thatch45@gmail.com> # Contributor: shamrok <szamrok@gmail.com> @@ -7,7 +7,7 @@ pkgbase=python-levenshtein pkgname=(python-levenshtein python2-levenshtein) pkgver=0.11.1 -pkgrel=1 +pkgrel=2 pkgdesc="Python extension for computing string edit distances and similarities" url="http://pypi.python.org/pypi/python-Levenshtein/" license=("GPL") @@ -26,14 +26,14 @@ package_python-levenshtein() { depends=('python') cd python-Levenshtein-$pkgver - python setup.py build install --prefix=/usr --root="$pkgdir" + python setup.py build install -O1 --prefix=/usr --root="$pkgdir" } package_python2-levenshtein() { depends=('python2') cd python2-Levenshtein-$pkgver - python2 setup.py build install --prefix=/usr --root="$pkgdir" + python2 setup.py build install -O1 --prefix=/usr --root="$pkgdir" } sha512sums=('335f29253ec7bba8d54881dfe093ac194626cdaad0cc6ed08327917d6187cdfe1fbb3d003744f991587f8dc800aa1d361e3aa0b276b31ecfe7a43d83ea0d660b') diff --git a/community/python-numexpr/PKGBUILD b/community/python-numexpr/PKGBUILD index eb00378bb..c8d884ee8 100644 --- a/community/python-numexpr/PKGBUILD +++ b/community/python-numexpr/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 96812 2013-09-05 18:53:58Z aginiewicz $ +# $Id: PKGBUILD 104927 2014-01-28 11:43:36Z aginiewicz $ # Maintainer: Andrzej Giniewicz <gginiu@gmail.com> # Contributor: Sebastien Binet <binet@lblbox> pkgbase=python-numexpr pkgname=('python2-numexpr' 'python-numexpr') -pkgver=2.2 +pkgver=2.3 pkgrel=1 -pkgdesc="A JIT compiler for Python expressions" -url="http://code.google.com/p/numexpr/" +pkgdesc="Fast numerical array expression evaluator for Python, NumPy, PyTables, pandas" +url="https://github.com/pydata/numexpr" arch=('i686' 'x86_64') license=('MIT') makedepends=('python2-setuptools' 'python-setuptools' 'python-numpy' 'python2-numpy') -source=(http://numexpr.googlecode.com/files/numexpr-$pkgver.tar.gz) -md5sums=('1d83b13e69fff897a5bc588b7119506c') +source=(https://github.com/pydata/numexpr/archive/$pkgver.tar.gz) +md5sums=('fc9b5765c8ceda4a4c2e974e565b98cf') build() { cd "$srcdir" diff --git a/community/python-pybox2d/PKGBUILD b/community/python-pybox2d/PKGBUILD new file mode 100644 index 000000000..e82a9703e --- /dev/null +++ b/community/python-pybox2d/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 104878 2014-01-28 00:06:26Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Sven-Hendrik Haase <sh@lutzhaase.com> + +pkgbase=python-pybox2d +pkgname=('python2-pybox2d') +pkgver=370 +pkgrel=1 +arch=('x86_64' 'i686') +url='http://code.google.com/p/pybox2d' +license=('GPL') +makedepends=('subversion' 'python2' 'swig') +source=("$pkgbase::svn+http://pybox2d.googlecode.com/svn/trunk/") +md5sums=('SKIP') + +build() { + cd "$pkgbase" + + python2 setup.py build +} + +package_python2-pybox2d() { + depends=('python2') + pkgdesc='Python wrapper for Box2D' + + cd "$pkgbase" + + python2 setup.py install --root="$pkgdir" --optimize=1 + + # Fixes the warning about a missing dependency on python + sed -i 's:python:python2:g' \ + "$pkgdir/usr/lib/python2.7/site-packages/Box2D/__init__.py" +} + +# vim: sw=2 ts=2 et: diff --git a/community/python2-greenlet/PKGBUILD b/community/python2-greenlet/PKGBUILD deleted file mode 100644 index 5341f84a3..000000000 --- a/community/python2-greenlet/PKGBUILD +++ /dev/null @@ -1,27 +0,0 @@ -# $Id: PKGBUILD 70305 2012-05-04 08:21:08Z mtorromeo $ -# Maintainer: Massimiliano Torromeo <massimiliano.torromeo@gmail.com> -# Maintainer: Felix Yan <felixonmars@gmail.com> -# Contributor: Ralf Schmitt <ralf@systemexit.de> - -pkgname=python2-greenlet -pkgver=0.4.2 -pkgrel=1 -pkgdesc="Lightweight in-process concurrent programming" -license=("MIT") -url="http://pypi.python.org/pypi/greenlet" -depends=('python2') -source=(http://pypi.python.org/packages/source/g/greenlet/greenlet-$pkgver.zip) -arch=('i686' 'x86_64') - -build() { - cd greenlet-$pkgver - python2 setup.py build -} - -package() { - cd greenlet-$pkgver - python2 setup.py install --root="$pkgdir" - install -Dm0644 LICENSE.PSF "$pkgdir/usr/share/licenses/$pkgname/LICENSE.PSF" -} - -sha512sums=('9596b740921e4a80bcb43adb725a7a4ea428dadc10ba55f8840837ba685b010c273a4a2bd62c5ba4bfdf27ce87c914a83714d762bacafb8e0a3cd7e2a9675992') diff --git a/community/python2-m2crypto/LICENSE b/community/python2-m2crypto/LICENSE new file mode 100644 index 000000000..d2f636fdd --- /dev/null +++ b/community/python2-m2crypto/LICENSE @@ -0,0 +1,26 @@ +Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved. + +Portions copyright (c) 2004-2006 Open Source Applications Foundation. +All rights reserved. + +Portions copyright (c) 2005-2006 Vrije Universiteit Amsterdam. +All rights reserved. + +Copyright (c) 2008-2010 Heikki Toivonen. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation. + +THE AUTHOR PROVIDES THIS SOFTWARE ``AS IS'' AND ANY EXPRESSED OR +IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/community/python2-m2crypto/PKGBUILD b/community/python2-m2crypto/PKGBUILD index a68c5a35d..e3d68981f 100644 --- a/community/python2-m2crypto/PKGBUILD +++ b/community/python2-m2crypto/PKGBUILD @@ -4,16 +4,18 @@ # Contributor: William Rea <sillywilly@gmail.com> pkgname=python2-m2crypto -pkgver=0.21.1 -pkgrel=2 +pkgver=0.22.3 +pkgrel=1 pkgdesc="A crypto and SSL toolkit for Python" arch=('i686' 'x86_64') url="http://wiki.osafoundation.org/bin/view/Projects/MeTooCrypto" license=('BSD') depends=('python2' 'openssl') -makedepends=('swig') -source=("http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${pkgver}.tar.gz") -md5sums=('f93d8462ff7646397a9f77a2fe602d17') +makedepends=('swig' 'python2-setuptools') +source=("http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${pkgver}.tar.gz" + "LICENSE") +md5sums=('573f21aaac7d5c9549798e72ffcefedd' + 'b0e1f0b7d0ce8a62c18b1287b991800e') build() { cd "${srcdir}/M2Crypto-${pkgver}" @@ -23,5 +25,5 @@ build() { package() { cd "${srcdir}/M2Crypto-${pkgver}" python2 setup.py install --root="${pkgdir}/" --optimize=1 - install -D -m644 LICENCE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + install -D -m644 $srcdir/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } diff --git a/community/ruby-cairo/PKGBUILD b/community/ruby-cairo/PKGBUILD index e9c37cd9e..4687d69cb 100644 --- a/community/ruby-cairo/PKGBUILD +++ b/community/ruby-cairo/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 102505 2013-12-12 14:34:05Z arodseth $ +# $Id: PKGBUILD 104887 2014-01-28 03:34:18Z td123 $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: Jeremy <reebydobalina@yahoo.ca> pkgname=ruby-cairo -pkgver=1.12.6 +pkgver=1.12.8 pkgrel=1 pkgdesc='Ruby bindings for cairo' arch=('x86_64' 'i686') @@ -13,7 +13,7 @@ license=('GPL') depends=('ruby' 'cairo') makedepends=('ruby-pkgconfig') source=("http://cairographics.org/releases/rcairo-$pkgver.tar.gz") -sha256sums=('e7ff8d49a730662b3f999187fde45ac0b8651996fe7f9a952496be8b6e45800e') +sha256sums=('8a6a73c9c67eb0a5b6502483c8c39ffb6acbcadd2574123a6597271c2c25736d') build() { cd "$srcdir/rcairo-$pkgver" @@ -27,7 +27,7 @@ package() { make DESTDIR="$pkgdir" install install -Dm644 ext/cairo/cairo.so \ - "$pkgdir/usr/lib/ruby/vendor_ruby/2.0.0/$CARCH-linux/cairo.so" + "$pkgdir/usr/lib/ruby/vendor_ruby/2.1.0/$CARCH-linux/cairo.so" } # vim:set ts=2 sw=2 et: diff --git a/community/ruby-gtk2/PKGBUILD b/community/ruby-gtk2/PKGBUILD index ec03643ef..4476268c9 100644 --- a/community/ruby-gtk2/PKGBUILD +++ b/community/ruby-gtk2/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104632 2014-01-23 14:12:04Z arodseth $ +# $Id: PKGBUILD 104888 2014-01-28 03:34:19Z td123 $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Eric Bélanger <eric@archlinux.org> # Contributor: Brad Fanella <bradfanella@archlinux.us> @@ -8,14 +8,14 @@ pkgbase=ruby-gtk2 pkgname=('ruby-atk' 'ruby-gdkpixbuf2' 'ruby-gio2' 'ruby-glib2' 'ruby-gtk2' 'ruby-pango') -pkgver=2.0.0 -pkgrel=3 +pkgver=2.1.0 +pkgrel=2 arch=('x86_64' 'i686') url='http://ruby-gnome2.sourceforge.jp/' license=('LGPL') makedepends=('ruby-pkgconfig' 'ruby-cairo' 'gtk2' 'glib2') source=("http://downloads.sourceforge.net/ruby-gnome2/ruby-gtk2-$pkgver.tar.gz") -sha256sums=('6a36d2d4212e65f23d1c174b03006ea7fecaad1f3b82151dbfbe7ddf4268579f') +sha256sums=('939251c1f82b41c3cf657552396cf4e1198365316904957cfb7167d1298db204') prepare() { cd "ruby-gtk2-$pkgver" diff --git a/community/ruby-gtk3/PKGBUILD b/community/ruby-gtk3/PKGBUILD index 3a974c28a..4051be99e 100644 --- a/community/ruby-gtk3/PKGBUILD +++ b/community/ruby-gtk3/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104595 2014-01-23 10:58:45Z arodseth $ +# $Id: PKGBUILD 104889 2014-01-28 03:34:19Z td123 $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Eric Bélanger # Contributor: Brad Fanella <bradfanella@archlinux.us> @@ -7,7 +7,7 @@ pkgbase=ruby-gtk3 pkgver=2.1.0 -pkgrel=1 +pkgrel=2 pkgname=('ruby-gtk3' 'ruby-gdk3') depends=("ruby-atk=$pkgver" "ruby-gdkpixbuf2=$pkgver" "ruby-glib2=$pkgver" "ruby-pango=$pkgver") arch=('x86_64' 'i686') diff --git a/community/ruby-iconv/PKGBUILD b/community/ruby-iconv/PKGBUILD index 528fa5c14..6d5b0c9b8 100755 --- a/community/ruby-iconv/PKGBUILD +++ b/community/ruby-iconv/PKGBUILD @@ -1,41 +1,27 @@ -# $Id: PKGBUILD 100391 2013-11-03 11:24:29Z alucryd $ +# $Id: PKGBUILD 104890 2014-01-28 03:34:20Z td123 $ # Maintainer: Maxime Gauduin <alucryd@gmail.com> pkgname=ruby-iconv -pkgver=1.0.3 -pkgrel=6 -pkgdesc="Wrapper library for iconv" +pkgver=1.0.4 +pkgrel=2 +pkgdesc='Wrapper library for iconv' arch=('i686' 'x86_64') -url="https://github.com/nurse/iconv" +url='https://github.com/nurse/iconv' license=('BSD') depends=('ruby') +options=('!emptydirs') source=("http://rubygems.org/downloads/${pkgname#*-}-${pkgver}.gem") noextract=("${pkgname#*-}-${pkgver}.gem") -sha256sums=('94a9b62a56c96226b62b787cd45fdc48c03f4517f1e36e64db113b010fb012da') - -prepare() { - gem install --no-{document,user-install} --ignore-dependencies -i . ${pkgname#*-}-${pkgver}.gem - sed "s|iconv/iconv.so|$CARCH-linux/iconv.so|" -i gems/${pkgname#*-}-${pkgver}/lib/iconv.rb -} +sha256sums=('5bd4e387a2e8070baf3ebf8d91f545200db25c08686f82cde66f118d9f914f9b') package() { - cd gems/${pkgname#*-}-${pkgver} - - local _rubyver="$(ruby --version | sed 's/.* \(.*\..*\..*\)p.*/\1/')" - - install -dm 755 "${pkgdir}"/usr/lib/ruby/{gems/${_rubyver},vendor_ruby} - mv lib "${pkgdir}"/usr/lib/ruby/vendor_ruby/${_rubyver} - -# Native extension - install -dm 755 "${pkgdir}"/usr/lib/ruby/vendor_ruby/${_rubyver}/$CARCH-linux - mv "${pkgdir}"/usr/lib/ruby/vendor_ruby/${_rubyver}/{iconv,$CARCH-linux}/iconv.so + local _gemdir="$(ruby -e'puts Gem.default_dir')" -# Gem compatibility - mv ../../specifications "${pkgdir}"/usr/lib/ruby/gems/${_rubyver}/ + gem install --ignore-dependencies --no-user-install -N -i "${pkgdir}"/${_gemdir} ${pkgname#*-}-${pkgver}.gem + find "${pkgdir}" -type f -name *.gem -delete -# License install -dm 755 "${pkgdir}"/usr/share/licenses/${pkgname} - install -m 644 {,"${pkgdir}"/usr/share/licenses/${pkgname}/}BSDL + ln -s ${_gemdir}/gems/${pkgname#*-}-${pkgver}/BSDL "${pkgdir}"/usr/share/licenses/${pkgname}/ } # vim: ts=2 sw=2 et: diff --git a/community/ruby-ncurses/PKGBUILD b/community/ruby-ncurses/PKGBUILD index 4fa6eaac3..1feadffdb 100644 --- a/community/ruby-ncurses/PKGBUILD +++ b/community/ruby-ncurses/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 92582 2013-06-09 08:55:46Z arodseth $ +# $Id: PKGBUILD 104893 2014-01-28 03:34:24Z td123 $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: Brad Fanella <bradfanella@archlinux.us> # Contributor: Jeff Mickey <j@codemac.net> @@ -6,7 +6,7 @@ pkgname=ruby-ncurses pkgver=1.3.1 -pkgrel=5 +pkgrel=6 pkgdesc='Module for interactive text console applications (ncurses)' arch=('x86_64' 'i686') url='http://ncurses-ruby.berlios.de/' diff --git a/community/springlobby/PKGBUILD b/community/springlobby/PKGBUILD index 5f8e9a69a..02fda8147 100644 --- a/community/springlobby/PKGBUILD +++ b/community/springlobby/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 103804 2014-01-11 20:08:38Z eric $ +# $Id: PKGBUILD 104963 2014-01-28 18:12:41Z svenstaro $ # Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com> # Contributor: DuGi <dugi@irc.pl> pkgname=springlobby pkgver=0.180 -pkgrel=2 +pkgrel=3 pkgdesc="A free cross-platform lobby client for the Spring RTS project." arch=('i686' 'x86_64') url="http://springlobby.info/" diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD index 2d2f92115..399502a8f 100644 --- a/community/uwsgi/PKGBUILD +++ b/community/uwsgi/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 104119 2014-01-16 05:24:03Z dwallace $ +# $Id: PKGBUILD 104902 2014-01-28 03:34:34Z td123 $ # Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com> # Contributor: Valentin Hăloiu <vially.ichb+aur@gmail.com> # Contributor: Angel Velasquez <angvp@archlinux.org> @@ -24,7 +24,7 @@ pkgname=(uwsgi #uwsgi-plugin-erlang #uwsgi-plugin-admin pkgver=2.0 -pkgrel=1 +pkgrel=3 arch=(i686 x86_64) url="http://projects.unbit.it/$pkgbase" license=(GPL2) diff --git a/community/weston/PKGBUILD b/community/weston/PKGBUILD index 74d305e60..700cd7ec0 100644 --- a/community/weston/PKGBUILD +++ b/community/weston/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 104730 2014-01-25 02:24:17Z seblu $ +# $Id: PKGBUILD 104875 2014-01-27 23:38:12Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Joel Teichroeb <joel@teichroeb.net> pkgname=weston pkgver=1.4.0 -pkgrel=1 +pkgrel=2 pkgdesc='Reference implementation of a Wayland compositor' arch=('i686' 'x86_64') url='http://wayland.freedesktop.org' @@ -18,7 +18,7 @@ build() { ./configure \ --prefix=/usr \ --libexecdir=/usr/lib/weston \ - --enable-demo-clients + --enable-demo-clients-install make } diff --git a/community/xmms2/PKGBUILD b/community/xmms2/PKGBUILD index 692af5f31..571ed19af 100644 --- a/community/xmms2/PKGBUILD +++ b/community/xmms2/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 104378 2014-01-19 16:29:43Z bpiotrowski $ +# $Id: PKGBUILD 104903 2014-01-28 03:34:35Z td123 $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> pkgname=xmms2 pkgver=0.8DrO_o -pkgrel=22 +pkgrel=23 pkgdesc="complete rewrite of the popular music player" arch=('i686' 'x86_64') url="http://xmms2.org/" |