diff options
author | root <root@rshg054.dnsready.net> | 2012-07-22 00:04:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-07-22 00:04:51 +0000 |
commit | e4d2743138eaca146b1a01a7815facdb3d271d88 (patch) | |
tree | adfc39f3d6e7081629f4fb9ed391f3155617b021 | |
parent | 5d90c7e7b2760bbf7b048dca31384e9f53a97c61 (diff) |
Sun Jul 22 00:04:51 UTC 2012
-rw-r--r-- | community/flumotion/PKGBUILD | 6 | ||||
-rw-r--r-- | community/nodejs/PKGBUILD | 15 | ||||
-rw-r--r-- | community/pkgfile/PKGBUILD | 16 | ||||
-rw-r--r-- | community/xdebug/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/libtorrent-rasterbar/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/live-media/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/rhythmbox/PKGBUILD | 19 | ||||
-rw-r--r-- | extra/telepathy-mission-control/PKGBUILD | 6 | ||||
-rw-r--r-- | extra/vlc/PKGBUILD | 11 | ||||
-rw-r--r-- | extra/zile/PKGBUILD | 10 | ||||
-rw-r--r-- | libre/iceweasel-i18n/PKGBUILD | 175 | ||||
-rw-r--r-- | pcr/kervala_libsquish/PKGBUILD | 46 | ||||
-rw-r--r-- | pcr/minetest/PKGBUILD | 53 | ||||
-rw-r--r-- | pcr/ryzom-data/PKGBUILD | 43 | ||||
-rw-r--r-- | staging/libimobiledevice/PKGBUILD | 27 | ||||
-rw-r--r-- | staging/libimobiledevice/swig-version-check.patch | 14 | ||||
-rw-r--r-- | staging/usbmuxd/85-usbmuxd.rules | 9 | ||||
-rw-r--r-- | staging/usbmuxd/PKGBUILD | 42 | ||||
-rw-r--r-- | staging/usbmuxd/usbmuxd.install | 19 | ||||
-rw-r--r-- | staging/usbmuxd/usbmuxd.service | 5 | ||||
-rw-r--r-- | testing/systemd/PKGBUILD | 6 |
21 files changed, 402 insertions, 138 deletions
diff --git a/community/flumotion/PKGBUILD b/community/flumotion/PKGBUILD index 5157811c0..307d2e189 100644 --- a/community/flumotion/PKGBUILD +++ b/community/flumotion/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 58163 2011-11-07 13:53:24Z spupykin $ +# $Id: PKGBUILD 74096 2012-07-20 19:52:13Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr> # Contributor: William Rea <sillywilly@gmail.com> pkgname=flumotion -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A streaming media server" @@ -17,7 +17,7 @@ depends=('gtk2' 'pygtk' 'gstreamer0.10-python' 'kiwi' 'gstreamer0.10-good-plugin 'gstreamer0.10-base-plugins' 'python2-pyopenssl' 'twisted' 'gnome-vfs') makedepends=('perlxml') source=(http://www.flumotion.net/src/$pkgname/$pkgname-$pkgver.tar.bz2) -md5sums=('d7a34333346828f19f83b24886efde14') +md5sums=('fbbb2f4ccf0624742c5ca8238f3ec5e0') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD index 945ebab4a..84155cea3 100644 --- a/community/nodejs/PKGBUILD +++ b/community/nodejs/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 74081 2012-07-19 18:54:00Z bpiotrowski $ +# $Id: PKGBUILD 74092 2012-07-20 09:07:43Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl> # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: James Campos <james.r.campos@gmail.com> @@ -9,7 +9,7 @@ pkgname=nodejs pkgver=0.8.3 -pkgrel=1 +pkgrel=2 pkgdesc='Evented I/O for V8 javascript' arch=('i686' 'x86_64') url='http://nodejs.org/' @@ -24,13 +24,13 @@ md5sums=('53604d2e3773d62e90fa5a340a362e08') build() { cd node-v${pkgver} - msg 'fixing for python2 name' + # fs#30766 + sed -i "s|var npmDir = path.resolve(node_prefix, 'lib/node_modules/npm');|var npmDir = path.join(dest_dir, node_prefix, 'lib/node_modules/npm');|" tools/installer.js + + msg 'Fixing for python2 name' find -type f -exec sed -e 's_^#!/usr/bin/env python$_&2_' -e 's_^\(#!/usr/bin/python2\).[45]$_\1_' -e 's_^#!/usr/bin/python$_&2_' -e "s_'python'_'python2'_" -i {} \; find test -type f -exec sed -e "s|python |python2 |" -i {} \; - #sed -i "s|cmd_R = 'python |cmd_R = 'python2 |" wscript sed -i "s|python |python2 |" Makefile - #find test -type f -exec sed -e 's/python/&2/' -i {} \; - #sed -i "s/python/python2/" configure export PYTHON=python2 @@ -43,9 +43,6 @@ build() { check() { cd node-v${pkgver} - - # test failures in 0.6 are known - # specifically https://github.com/joyent/node/pull/1699 make test || true } diff --git a/community/pkgfile/PKGBUILD b/community/pkgfile/PKGBUILD index 7b79de3c0..294a6143a 100644 --- a/community/pkgfile/PKGBUILD +++ b/community/pkgfile/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 73970 2012-07-17 20:42:54Z dreisner $ +# $Id: PKGBUILD 74102 2012-07-20 22:53:30Z dreisner $ # Maintainer: Dave Reisner <dreisner@archlinux.org> pkgname=pkgfile -pkgver=1 -pkgrel=2 +pkgver=2 +pkgrel=1 pkgdesc="a pacman .files metadata explorer" arch=('i686' 'x86_64') url="http://github.com/falconindy/pkgfile" @@ -11,16 +11,18 @@ license=('MIT') depends=('libarchive' 'curl' 'pcre' 'pacman') conflicts=('pkgtools<24-2') makedepends=('perl') -source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz") +source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.xz") install=pkgfile.install -md5sums=('14e4e666fd6bfeae6fcb9313737c780d') +md5sums=('815ee5ad6ca3c1f6262389f423319fa9') build() { - make -C "$pkgname-$pkgver" + cd "$pkgname-$pkgver" + ./configure + make } package() { - make -C "$pkgname-$pkgver" PREFIX=/usr DESTDIR="$pkgdir" install + make -C "$pkgname-$pkgver" DESTDIR="$pkgdir" install } # vim: ft=sh syn=sh diff --git a/community/xdebug/PKGBUILD b/community/xdebug/PKGBUILD index 1318e46f8..683559441 100644 --- a/community/xdebug/PKGBUILD +++ b/community/xdebug/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 70507 2012-05-09 18:48:25Z pschmitz $ +# $Id: PKGBUILD 74088 2012-07-20 08:07:10Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Maintainer: Jonathan Wiersma <arch aur at jonw dot org> # Contributor: Jonathan Wiersma <arch aur at jonw dot org> # Contributor: sracker <smb.sac@gmail.com> pkgname=xdebug -pkgver=2.2.0 +pkgver=2.2.1 pkgrel=1 pkgdesc="PHP debugging extension" arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ backup=('etc/php/conf.d/xdebug.ini') source=(http://www.xdebug.org/files/$pkgname-$pkgver.tgz xdebug-5.2.ini xdebug.ini) -md5sums=('27d8ad8224ffab04d12eecb5997a4f5d' +md5sums=('5e5c467e920240c20f165687d7ac3709' '6b7fdbbe0bf381bda40e77e29981f439' '68de800943369d4c76bdf7eb35c8463b') diff --git a/extra/libtorrent-rasterbar/PKGBUILD b/extra/libtorrent-rasterbar/PKGBUILD index b24f672fe..ea71f0712 100644 --- a/extra/libtorrent-rasterbar/PKGBUILD +++ b/extra/libtorrent-rasterbar/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 163709 2012-07-18 01:05:39Z ibiru $ +# $Id: PKGBUILD 163820 2012-07-20 21:36:20Z ibiru $ # Maintainer : Ionut Biru <ibiru@archlinux.org> # Contributor: Hugo Doria <hugo@archlinux.org> pkgname=libtorrent-rasterbar -pkgver=0.16.1 +pkgver=0.16.2 pkgrel=1 epoch=1 pkgdesc="A C++ library that aims to be a good alternative to all the other bittorrent implementations around" @@ -14,7 +14,7 @@ depends=('boost-libs' 'geoip' 'python2') makedepends=('boost') options=('!libtool' '!emptydirs') source=(http://libtorrent.googlecode.com/files/$pkgname-$pkgver.tar.gz) -sha1sums=('798944301ee6ef8e0d8de3d944c59d184ef1a4d3') +sha1sums=('04da641d21d0867fc103f4f57ffd41b3fce19ead') build() { cd $pkgname-$pkgver diff --git a/extra/live-media/PKGBUILD b/extra/live-media/PKGBUILD index ad8015a92..8098226b9 100644 --- a/extra/live-media/PKGBUILD +++ b/extra/live-media/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 163534 2012-07-14 19:08:48Z giovanni $ +# $Id: PKGBUILD 163810 2012-07-20 10:44:25Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Gilles CHAUVIN <gcnweb@gmail.com> pkgname=live-media -pkgver=2012.07.14 +pkgver=2012.07.18 pkgrel=1 pkgdesc="A set of C++ libraries for multimedia streaming" arch=('i686' 'x86_64') @@ -11,7 +11,7 @@ license=('LGPL') url="http://live555.com/liveMedia" depends=('gcc-libs') source=("http://live555.com/liveMedia/public/live.${pkgver}.tar.gz") -md5sums=('9496fd1cf093be9a95f47ef0184bef03') +md5sums=('71e6624ed5114b8f9199500c01bef569') build() { cd ${srcdir}/live diff --git a/extra/rhythmbox/PKGBUILD b/extra/rhythmbox/PKGBUILD index 5df25b236..a37cda2b5 100644 --- a/extra/rhythmbox/PKGBUILD +++ b/extra/rhythmbox/PKGBUILD @@ -1,17 +1,20 @@ -# $Id: PKGBUILD 157417 2012-04-28 09:27:22Z allan $ +# $Id: PKGBUILD 163812 2012-07-20 12:21:50Z heftig $ # Maintainer: Jan de Groot <jgc@archlinux.org> # Contributor: Giovanni Scafora <giovanni@archlinux.org> pkgname=rhythmbox -pkgver=2.96 -pkgrel=3 +pkgver=2.97 +pkgrel=1 pkgdesc="An iTunes-like music playback and management application" arch=('i686' 'x86_64') license=('GPL') url="http://www.rhythmbox.org" -depends=('clutter' 'clutter-gtk' 'clutter-gst' 'dconf' 'desktop-file-utils' 'grilo' 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gvfs-afc' 'json-glib' 'libdmapsharing' 'libgpod' 'libmtp' 'libmusicbrainz3' - 'libnotify' 'libpeas' 'libwebkit3' 'lirc-utils' 'media-player-info' 'mx' 'python2-gobject' 'python2-mako' 'totem-plparser' 'tdb') -makedepends=('gnome-doc-utils' 'intltool' 'brasero' 'gobject-introspection') +depends=('clutter' 'clutter-gtk' 'clutter-gst' 'dconf' 'desktop-file-utils' 'grilo' + 'gstreamer0.10-base-plugins' 'gstreamer0.10-good-plugins' 'gvfs-afc' 'json-glib' + 'libdmapsharing' 'libgpod' 'libmtp' 'libmusicbrainz4' 'libnotify' 'libpeas' 'libwebkit3' + 'lirc-utils' 'media-player-info' 'mx' 'python2-gobject' 'python2-mako' 'totem-plparser' + 'tdb' 'libdiscid') +makedepends=('gnome-doc-utils' 'intltool' 'brasero' 'gobject-introspection' 'vala') optdepends=('gstreamer0.10-ugly-plugins: Extra media codecs' 'gstreamer0.10-bad-plugins: Extra media codecs' 'gstreamer0.10-ffmpeg: Extra media codecs' @@ -19,14 +22,14 @@ optdepends=('gstreamer0.10-ugly-plugins: Extra media codecs' options=('!libtool' '!emptydirs') install=rhythmbox.install source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/$pkgver/$pkgname-$pkgver.tar.xz) -sha256sums=('3f93c74b2f7f8d7e1002e288db9abf8f182684277dec0a106d5e38415084b2b6') +sha256sums=('b52567cf45bf13c0452593da7f907920bd4cf31916ca8dcd15d555336b4947e4') build() { cd "$pkgname-$pkgver" PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \ --libexecdir=/usr/lib/rhythmbox \ --localstatedir=/var --disable-static \ - --enable-daap --enable-python \ + --enable-daap --enable-python --enable-musicbrainz \ --with-mdns=avahi --disable-scrollkeeper make } diff --git a/extra/telepathy-mission-control/PKGBUILD b/extra/telepathy-mission-control/PKGBUILD index d7cba23ca..d95ae0461 100644 --- a/extra/telepathy-mission-control/PKGBUILD +++ b/extra/telepathy-mission-control/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 156980 2012-04-23 09:10:31Z ibiru $ +# $Id: PKGBUILD 163824 2012-07-20 23:07:42Z ibiru $ # Maintainer: Ionut Biru <ibiru@archlinux.org> # Contributor: Ju Liu <liuju86 at gmail dot com> # Contributor: Bjorn Lindeijer <bjorn lindeijer nl> # Contributor: Andreas Zwinkau <beza1e1@web.de> pkgname=telepathy-mission-control -pkgver=5.12.0 +pkgver=5.12.1 pkgrel=1 pkgdesc="A Telepathy component providing abstraction of some of the details of connection managers." arch=('i686' 'x86_64') @@ -16,7 +16,7 @@ makedepends=('libxslt' 'python2') install=telepathy-mission-control.install options=('!libtool') source=(http://telepathy.freedesktop.org/releases/$pkgname/$pkgname-$pkgver.tar.gz) -md5sums=('f39dcfef785a37dc21efa9af06be2e61') +md5sums=('79449fd2e1b02fc6cb5c6adc447e2bb6') build() { cd "$pkgname-$pkgver" diff --git a/extra/vlc/PKGBUILD b/extra/vlc/PKGBUILD index df5fd2a4f..1404df7f8 100644 --- a/extra/vlc/PKGBUILD +++ b/extra/vlc/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 163162 2012-07-08 09:32:43Z ibiru $ +# $Id: PKGBUILD 163786 2012-07-20 05:22:44Z giovanni $ # Maintainer: Giovanni Scafora <giovanni@archlinux.org> # Contributor: Sarah Hay <sarahhay@mb.sympatico.ca> # Contributor: Martin Sandsmark <martin.sandsmark@kde.org> pkgname=vlc -pkgver=2.0.2 -pkgrel=2 +pkgver=2.0.3 +pkgrel=1 pkgdesc="A multi-platform MPEG, VCD/DVD, and DivX player" arch=('i686' 'x86_64') url="http://www.videolan.org/vlc/" @@ -55,7 +55,7 @@ backup=('usr/share/vlc/lua/http/.hosts' options=('!libtool' '!emptydirs') install=vlc.install source=("http://download.videolan.org/pub/videolan/${pkgname}/${pkgver}/${pkgname}-${pkgver}.tar.xz") -md5sums=('93e729cc970a4535b3213dbef0e69528') +md5sums=('a7e79565e3df07dcf9abc6cad3ac26bb') build() { cd "${srcdir}/${pkgname}-${pkgver}" @@ -73,7 +73,8 @@ build() { --enable-realrtsp \ --enable-xosd \ --enable-aa \ - --enable-vcdx + --enable-vcdx \ + --enable-upnp make } diff --git a/extra/zile/PKGBUILD b/extra/zile/PKGBUILD index ce51713f4..c18d07110 100644 --- a/extra/zile/PKGBUILD +++ b/extra/zile/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 153982 2012-03-21 07:47:25Z eric $ +# $Id: PKGBUILD 163788 2012-07-20 05:26:57Z eric $ # Contributor: Tom Newsom <Jeepster@gmx.co.uk> # Maintainer: Kevin Piche <kevin@archlinux.org> pkgname=zile -pkgver=2.4.7 +pkgver=2.4.8 pkgrel=1 pkgdesc="A small, fast, and powerful Emacs clone" arch=('i686' 'x86_64') url="http://www.gnu.org/software/zile/" -license=('GPL') +license=('GPL3') depends=('acl' 'gc' 'ncurses') source=(http://ftp.gnu.org/gnu/${pkgname}/${pkgname}-${pkgver}.tar.gz{,.sig}) -sha1sums=('30c47a399b94b5dce68a178fe98807f86719a466' - 'e22de32794e34eb9e1409d1eecc7aa18b710cf5d') +sha1sums=('763224367472deecf71fb10d61806706a481fd48' + '3a3e0c039e12af62f0de1aae849c486606cd314a') build() { cd "${srcdir}"/${pkgname}-${pkgver} diff --git a/libre/iceweasel-i18n/PKGBUILD b/libre/iceweasel-i18n/PKGBUILD index 2f2c1be72..16f117255 100644 --- a/libre/iceweasel-i18n/PKGBUILD +++ b/libre/iceweasel-i18n/PKGBUILD @@ -10,11 +10,11 @@ _debname=iceweasel _debver=14.0.1 -_debrel=1 +_debrel=2 _debrepo=http://ftp.debian.org/debian/pool/main/ debfile() { echo $@|sed -r 's@(.).*@\1/&/&@'; } -_langpacks=(af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk kn ko ku lg lt lv mai mk ml mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta ta-LK te th tr uk vi zh-CN zh-TW zu) +_langpacks=(af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr fy-NL ga-IE gd gl gu-IN he hi-IN hr hu hy-AM id is it ja kk km kn ko ku lg lij lt lv mai mk ml mr nb-NO nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta-LK ta te th tr uk vi zh-CN zh-TW zu) pkgbase=iceweasel-i18n pkgname=($(for lang in ${_langpacks[@]} @@ -56,87 +56,90 @@ package_iceweasel-i18n-$(echo $lang | tr A-Z a-z)() { " done -md5sums=('8492bffee2bd98cb7d98a8a53e0f17ae' - '5497ed6ceb6e975eba24a5bf05f86a89' - '314f16038bdb82e59bf3522efe3a6b70' - '20d404c6f61846e7bf5c4d2474d3a394' - 'f80eefbad17d03ff38514f3bcc179f1a' - '8b2a7ec06160c973a323c38a7a0b25d5' - '8b5496a243674eb3960ac6dc5a2f6b88' - 'b75cae5fb01515ab9aeb8ca941ce88eb' - '89f20e820d1aaf08cef2a59ee3859239' - '4431e91bbbe395b86da48b66ac689fb9' - '9fab9ef9ad5dd46c8ae51973dfaffaaa' - '32f8d7861a46407d76b1310566845afe' - 'e000671c0b3fd89e76b763a7980f707e' - 'd14e72cddb190f0a58275624b1982e4c' - 'd55c847a44918c6fee6bbf4ac8d9e4a7' - 'c5a4568e1dac75a863f281bfeb000ead' - 'fe51ca24871979a37bcca24d7b3b2da1' - 'e702787ad3ff4c1d20dedf55321dc335' - 'dfcb47fda64599a5704da757c7c04377' - 'b0a1cbb9cfe5265989cf3b26e8109fd8' - 'cd060b883cd7586e249c541c26dd642e' - '5d23943dff2735703e4995fc8321bf3d' - 'e389f9cb80945608c198a890258377cb' - '32a1798b0e137097e7f00c27f0e6aa2a' - '9003c830b3f8ee4b8950b1f406acf0b0' - '5e7e3f5ff49d7070f6de4bc6d64875d6' - '891331124222b316a13ba45bc87a7c23' - '21aa289ad236bf6849d96b0b9d985fbe' - '64c9579f00c738bd824466a7212e76fe' - 'b89e729d09c3c54e9849f665bedf60db' - 'e40fda3e233e042447a9e10cc0cd0f76' - '8c813e20e712dc3d62cde69ee2df2d28' - '7fff1d836a0c4f8a5ef41c9f4b56b2a9' - '916f163b9e0814bc23f1545d18238c79' - '2cdab3c133f7d7d5abc54bed1ac654a9' - '2d9d97bbdb568296380cdee5ec61ba88' - '43e6ce7d51e734bf3aaff68504d8ebee' - 'af8f80eefcf1d795a7aaf25f694b6e97' - 'c4336d1a4eb59cc4e415a69d22a682a7' - 'be4a6850f76eb144079c7a47de678b66' - 'a4826c1b2e19216759224252f09ba552' - '47ee1757a64cdfcb9c0ba461fb934377' - '4f144397e5235862f90e09a6ebae1571' - '16e4bb054604c5cdb583a10456a35a2c' - '0dfaf8cc5efaf39b4ed2422497a3043f' - 'e5b809e55fe4e3b16229a7e1faa160b6' - '8f317ab44eed90cb59be734dd805287b' - '3797507f353a6978924a273802d178b9' - 'a1a7df582e476a7993ebbcb427835256' - 'a833481b7c6d26cc679f1a551014ab7c' - 'fb5d99c278d75c30891bae95f8337fd1' - '7f02751d991432d72c46247520d3ed67' - '96fde2477e2e661794c4ddabe1c9d024' - '7b1948761da836466f567ec35b54ff82' - '0d8cc6d0b2a53d15e32740a463cff1cc' - '571b6d2d461f7cb3ec95632b8d75c65c' - 'a01e65b75b8dd78dcaf0ff746fc71b92' - 'de2a327304a0f659944e7ae9e39fa877' - 'a12943272a14455a19761e4564c2f0f8' - '9eca996185f4995dc971f27c22447404' - 'cf248c1ea91e55c9aa306437abbcf212' - 'f2cbcdf897307bdd95f886d95504264b' - '2863ef939be42a0422d7e903122ee89c' - '2df4ff00f83b650cf69e8b3a27099c20' - 'cda3838e681f461c9ea833ed71fb72b8' - 'c6bf73b7e7357e050cbe772cf460f442' - '5f61a368a50280f0b293a8b11631c673' - '418d85a6fae1e9cdde6e8aaeea594b99' - 'e7e145a331920a2fcd1c00a80f3d9279' - 'b9bc820720e8fbb1c28229c66310dcbf' - 'bb9d826ead65c23bd45090206f0f6f25' - '7a72bd76a2087efca618c4cf7cd6ea60' - 'a06bf452b96c0dcef7d30a390b5c755d' - '0f6605afb8dddab2d2dc4110e3a62c3f' - '3dd7cc1afef4d2bfcfadb3093fe979c1' - '6a63bd1463f7d75172170e8e18c3443b' - '1c9887f019c8ffb71b3d9faa3b2120ba' - '38c750ddb41b8d61a2073d0cb67bc6d9' - 'e1d6e4b2f34af391c2037b331fd566f8' - 'a950f7a77c9ba4fb0142107afdcc4a01' - '0fe08f2659b34b1ee8ebd7debf2d9d13' - 'af8af0b941b1bd26ee4122f4e99f7f55' - 'e3d1f71617331226bbeb4cb829a2c0be' - '6623cab16c266630f9f56427d22cb5df') +md5sums=('5dbcf3c8505ea994eff5d0acb15212e2' + '093fb9d627ea2bcc39e95cda8308c07c' + '427f4163eae1095e0e3be610f5f846d0' + '50119c3ffdac18ae2df52a46e4655e5a' + 'd0707bb9946c0a27f2b33af081cef4a5' + '1ada65da05be04a6ad914fad2aa298bc' + '06d3ff7c4204f7b426168fe2d585770a' + 'd033fdd61508953a0722c6328fe075d8' + '67e56c4382d44040f30d2a0e9aa062aa' + 'e98bc2ddd0c4f14e03def6c2df3957a6' + '4b1859cd09bbeecb237c96489900e5cf' + '73b919dcf6ae7f99f720e1663d90ea6e' + '116c9ff17523c2f266534b525e37d9d6' + '7d3b4380052ff083fad73c1d67b5dd44' + '90ae8638c6ba5e206d723282e92e2b4a' + '382d425cecf79d03122700a49dc0a1e1' + '689264c005413858c23ba36d85bc70e9' + '296e06f04ad3a4ec08c782679c4648f5' + '144ffb16d13c246c1614ed4a47ddb91a' + '5a7189208bb083164a37294b0906df6b' + '324ce70af22e92d1f27899cb68f73045' + '7e8bd44385e0dd1b7fddd24763d53d0d' + '9f93cedb8c0944c84b9521d80a8f1df8' + 'bb86603af183212d7ea21850fc6b29de' + '407f885a228a9749f85f0196d91d2fc2' + '8d0d5d304b19476469a5e420a0f4cc6c' + '0a73d219723c014024adea95e16d1f05' + '948e672aecb65d8b106df4a07e69a81e' + '8ab485858ffb7d7a2318eb23cdbad9bc' + '6d1dece438ee2ef35e7cd18a48a04a6a' + 'cfb060a8b9587895c892b1741120bd30' + '7c9389eb1992d1b90bd3d13bad4ea99e' + '7ada62ede579765142804eb7fbf31556' + '068454a1f2e4e95a9ca6be00cb7ae679' + 'd24b9b2bb4924d179f2685735a823054' + '5e957199698370322cece21d774c7f68' + 'a60e60ac350a81b2ac547a7c1fe1c4a0' + 'd86486dee2f1a316c5a386b39b3bd717' + '054229f80d2df10247870c0b65330b67' + '1725e81231cc3ff6d95781e749f2b959' + 'ac404aa939294948ad3d6e70df1cede1' + '59c1192284bcbde4656b3319131e2eec' + '9f29e2ed16768b1d7a78bf5640ed2332' + 'd704d145dc15203ab0e5687d0aad8bfe' + '53b610ec98c5d8b956f2a893bec24e27' + 'bff195ac895b92333323c2bf22e1f61e' + '69f039841fbd31b32a583ad8737c3aca' + '95c70c4c5dd7d1c456ca36ec346a9c12' + '24e936478bcb8b8dfe7c905c3ca2a8dc' + '306172bd7802fb9d8da86101add3de9c' + 'c104bb81dd70d6ec3dfe864ef03474c1' + '2be0cce97e74762a01b47ee2c647ca4c' + '3b2cf401cbce2339f2b7c54bb817af1c' + '16815d1d5e2a8748a1074bc878f34919' + '231db84b5ef6ee4c1f72cf3eaa920952' + '84a5a5e773a9340557d8e4b92031d9f2' + 'cc8a65ce72f818ce2a65bcba592b5493' + 'a9e0f71ef5e221b78395da7581eca0c1' + '4b9c21aeccd082e2241987ea8a1885bc' + '5d7a0e8d58729c4263449044c23b5f09' + '7e42a0bf231e4935d3320b102a314da1' + '94f318cc46669eeaf67c4367f9701511' + '5c70c86327d806e58e6c5f204849ba51' + 'c569a5c51b711d7403e0f8c99647ea34' + '076ca5bc5b46894160e6015f0e888d0f' + '252851999ea99ce03cd9c50e6ab6c348' + '8db75829b397159116cd06c1992bbc5f' + '7516889bc11013f08b95ceea06e57aa2' + '915bfc417d1cfd7cb44c2ba571c9b152' + '356ba91ec47e31dc22a6898b72010a34' + 'bca1dcf5cd3be873b6a1e64e33f3c581' + 'b83cfa17f58a8394bd19253a304a1792' + 'b40cdb01f00b94ea3ca4d6bf29cf69ba' + '88b5c9176131ddf792b94e197094eef4' + 'a2903206a4b309636ec38d478b268946' + 'b4ad0c985f48c6fefb125bf7bfc853c6' + '764fcdff3486b68b724f0975d4f6451d' + '7dd864a7f81dc54534ce3ee4abf8c8e6' + 'b0dae765abfac086c464c8fe975219e9' + 'c5d5e5189b9c7bf705b18c8030d09b58' + '1bfaa781fe701baa51c9089571686cd1' + '27e8c25b11e9e305ca4c3b9f5661936d' + 'b2b8fbbd0b42bdc79c7abae3443da189' + '5210197343b334229fb8f07ad6aa33ea' + '06771b3e460077b5fb994d415168b548' + '9804d07cb3bc46c490c1c9e7d0d10edc' + '0917b254d82079138c76878d10ad631e') diff --git a/pcr/kervala_libsquish/PKGBUILD b/pcr/kervala_libsquish/PKGBUILD new file mode 100644 index 000000000..033dd19ec --- /dev/null +++ b/pcr/kervala_libsquish/PKGBUILD @@ -0,0 +1,46 @@ +# Maintainer: Jorge Araya <jorgean@lavabit.com> + +pkgname=kervala_libsquish-hg +pkgver=220 +pkgrel=1 +pkgdesc="Open source DXT compression library, kervala's version" +arch=('i686' 'x86_64') +url="http://code.google.com/p/libsquish/" +license=('MIT') +makedepends=('mercurial' 'gcc-libs') +provides=('libsquish') +conflicts=('libsquish') +source=() + +_hgroot="http://hg.kervala.net" +_hgrepo="packaging" + +build() { + cd "$srcdir" + msg "Connecting to Mercurial server...." + + if [[ -d "$_hgrepo" ]]; then + cd "$_hgrepo" + hg pull -u + msg "The local files are updated." + else + hg clone "${_hgroot}/${_hgrepo}" + fi + + msg "Mercurial checkout done or server timeout" + msg "Starting build..." + + rm -rf "$srcdir/$_hgrepo-build" + cp -r "$srcdir/$_hgrepo" "$srcdir/$_hgrepo-build" + cd "$srcdir/$_hgrepo-build/squish" + make +} + +package() { + cd "$srcdir/$_hgrepo-build/squish" + install -d -m 755 ${pkgdir}/usr/include + install -d -m 755 ${pkgdir}/usr/lib + make -e INSTALL_DIR="$pkgdir/usr/" install +} + +# vim:set ts=2 sw=2 et: diff --git a/pcr/minetest/PKGBUILD b/pcr/minetest/PKGBUILD new file mode 100644 index 000000000..8d11e3747 --- /dev/null +++ b/pcr/minetest/PKGBUILD @@ -0,0 +1,53 @@ +# Maintainer: Jorge Araya Navarro <jorgean@lavabit.com> +pkgname=minetest-git +pkgver=20120409 +pkgrel=1 +pkgdesc="An Infiniminer/Minecraft inspired game, git version." +arch=('i686' 'x86_64') +url="http://celeron.55.lt/~celeron55/minetest/" +license=('GPL') +makedepends=('git' 'cmake' 'irrlicht' 'mesa' 'libjpeg' 'bzip2' 'libpng' 'zlib' 'libvorbis') +depends=('libjpeg' 'bzip2' 'sqlite3' 'libgl' 'libxxf86vm' 'openal') +conflicts=('minetest' 'minetest-hg') + +_srcroot="https://github.com/celeron55/minetest.git" +_srcname="minetest" + +_gameroot="https://github.com/celeron55/minetest_game.git" +_gamename="minetest_game" + +build() { + cd "$srcdir" + + msg "Pulling sources..." + + if [ -d $_srcname ] ; then + cd $_srcname && git pull origin + msg "The local files are updated." + else + git clone $_srcroot $_gitname + fi + + msg "Pulling game..." + + cd "$srcdir/$_srcname/games/" + + if [ -d $_gamename ] ; then + cd $_gamename && git pull origin + msg "The local files are updated." + else + git clone $_gameroot $_gamename + fi + + + msg "GIT checkout done or server timeout" + msg "Starting make..." + + cd "$srcdir/$_srcname" + cmake . -DCMAKE_INSTALL_PREFIX=/usr + #install -d -m 755 ${pkgdir}/usr/share/applications + #install -d -m 755 ${pkgdir}/usr/share/icons/scalable/apps + #install -m 644 ${srcdir}/minetest.svg ${pkgdir}/usr/share/icons/scalable/apps + #install -m 644 ${srcdir}/minetest-git.desktop ${pkgdir}/usr/share/applications + make DESTDIR=${pkgdir} install +} diff --git a/pcr/ryzom-data/PKGBUILD b/pcr/ryzom-data/PKGBUILD new file mode 100644 index 000000000..272db5c07 --- /dev/null +++ b/pcr/ryzom-data/PKGBUILD @@ -0,0 +1,43 @@ +# Mantainer: Jorge Araya Navarro <jorgean@lavabit.com> +pkgname='ryzom-data' +group='ryzom' +pkgver=0.8.0 +pkgrel=1 +arch=('any') +url="http://media.ryzom.com/" +license=('CCPL:by-sa') +makedepends=('rsync' 'p7zip-libre') +conflicts=('ryzom-data') +pkgdesc="An awesome free software 3D MMORPG game. Game data." +source=("http://sourceforge.net/projects/ryzom/files/ryzom_client.7z/download") +noextract=("download") +sha256sums=('fa9e44e1014f4ae8639f1ec092391a41f69fc343ce48dd39b55ffae06ec3291f') + +package() { + cd "$srcdir/" + + if [[ -d "data" ]]; then + rm -rf data + fi + + mv "download" "ryzom_client.7z" + msg "Extracting game data..." + 7z x ryzom_client.7z ryzom/data/ >& /dev/null + cd ryzom/data/ + + msg "Updating the official Ryzom game data, this can take a while..." + rsync -rtzvu --progress --stats --recursive --timeout=30 www.ryzom.com::ryzom/data/ ./ >& /dev/null + msg 'Update completed...' + + cd "$srcdir/ryzom/data" + + # creating directories + install -d -m 755 "${pkgdir}/usr/share/ryzom/data/fonts/" + + # installing files + install -m 644 fonts/* "${pkgdir}/usr/share/ryzom/data/fonts/" + rm -rf fonts + + install -m 644 * "${pkgdir}/usr/share/ryzom/data/" +} + diff --git a/staging/libimobiledevice/PKGBUILD b/staging/libimobiledevice/PKGBUILD new file mode 100644 index 000000000..46ae8c1e2 --- /dev/null +++ b/staging/libimobiledevice/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 163816 2012-07-20 15:09:08Z tomegun $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Gabriel Martinez < reitaka at gmail dot com > + +pkgname=libimobiledevice +pkgver=1.1.4 +pkgrel=1 +pkgdesc="Is a software library that talks the protocols to support iPhone and iPod Touch devices on Linux" +url="http://libimobiledevice.org/" +arch=('i686' 'x86_64') +license=('GPL2' 'LGPL2.1') +depends=('usbmuxd' 'gnutls' 'libgcrypt') +options=('!libtool') +source=(http://libimobiledevice.org/downloads/$pkgname-$pkgver.tar.bz2) + +build() { + cd "$pkgname-$pkgver" + + PYTHON=/usr/bin/python2 ./configure --prefix=/usr + make +} + +package() { + cd "$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} +md5sums=('3f28cbc6a2e30d34685049c0abde5183') diff --git a/staging/libimobiledevice/swig-version-check.patch b/staging/libimobiledevice/swig-version-check.patch new file mode 100644 index 000000000..c56b095db --- /dev/null +++ b/staging/libimobiledevice/swig-version-check.patch @@ -0,0 +1,14 @@ +diff -Nur libimobiledevice-1.0.3.old/configure libimobiledevice-1.0.3/configure +--- libimobiledevice-1.0.3.old/configure 2010-10-04 07:38:37.000000000 -0700 ++++ libimobiledevice-1.0.3/configure 2010-10-08 05:43:05.466686656 -0700 +@@ -3477,9 +3477,7 @@ + if test -z "$available_patch" ; then + available_patch=0 + fi +- if test $available_major -ne $required_major \ +- -o $available_minor -ne $required_minor \ +- -o $available_patch -lt $required_patch ; then ++ if test $available_major -lt $required_major ; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: SWIG version >= 1.3.21 is required. You have $swig_version. You should look at http://www.swig.org" >&5 + $as_echo "$as_me: WARNING: SWIG version >= 1.3.21 is required. You have $swig_version. You should look at http://www.swig.org" >&2;} + SWIG=false diff --git a/staging/usbmuxd/85-usbmuxd.rules b/staging/usbmuxd/85-usbmuxd.rules new file mode 100644 index 000000000..ec9f72501 --- /dev/null +++ b/staging/usbmuxd/85-usbmuxd.rules @@ -0,0 +1,9 @@ +# usbmuxd ("Apple Mobile Device" muxer listening on /var/run/usbmuxd) + +# Forces iDevices to the last USB configuration and runs usbmuxd +TEST=="/sys/fs/cgroup/systemd", ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="05ac", ATTR{idProduct}=="12[9a][0-9a-f]", ENV{USBMUX_SUPPORTED}="1", ATTR{bConfigurationValue}!="$attr{bNumConfigurations}", ATTR{bConfigurationValue}="$attr{bNumConfigurations}", OWNER="usbmux", TAG+="systemd", ENV{SYSTEMD_WANTS}="usbmuxd.service", GOTO="usbmuxd_systemd_end" +ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="05ac", ATTR{idProduct}=="12[9a][0-9a-f]", ENV{USBMUX_SUPPORTED}="1", ATTR{bConfigurationValue}!="$attr{bNumConfigurations}", ATTR{bConfigurationValue}="$attr{bNumConfigurations}", OWNER="usbmux", RUN+="/usr/sbin/usbmuxd -u -U usbmux" +LABEL="usbmuxd_systemd_end" + +# Exit usbmuxd when the last device is removed +ACTION=="remove", SUBSYSTEM=="usb", ENV{PRODUCT}=="5ac/12[9a][0-9a-f]/*", ENV{INTERFACE}=="255/*", RUN+="/usr/sbin/usbmuxd -x" diff --git a/staging/usbmuxd/PKGBUILD b/staging/usbmuxd/PKGBUILD new file mode 100644 index 000000000..0b8e9b84b --- /dev/null +++ b/staging/usbmuxd/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 163814 2012-07-20 13:59:21Z tomegun $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Gabriel Martinez < reitaka at gmail dot com > + +pkgname=usbmuxd +pkgver=1.0.8 +pkgrel=1 +pkgdesc="USB Multiplex Daemon" +url="http://marcansoft.com/blog/iphonelinux/usbmuxd/" +arch=('i686' 'x86_64') +license=('GPL2' 'GPL3' 'LGPL2.1') +depends=('libusb' 'libplist') +makedepends=('cmake') +install=usbmuxd.install +source=("http://cgit.sukimashita.com/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.bz2" + 'usbmuxd.service' + '85-usbmuxd.rules') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + echo "${pkgver}" > version.tag + mkdir build + cd build + cmake ../ -DCMAKE_INSTALL_PREFIX:PATH=/usr -DLIB_SUFFIX="" + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}/build" + make DESTDIR="${pkgdir}" install + + # fix udev dir being hardcoded + mv "${pkgdir}/lib/udev" "${pkgdir}/usr/lib/" + rmdir "${pkgdir}/lib" + # install systemd service file + install -D -m644 ${srcdir}/usbmuxd.service ${pkgdir}/usr/lib/systemd/system/usbmuxd.service + # use udev rule that works with systemd + install -m644 ${srcdir}/85-usbmuxd.rules ${pkgdir}/usr/lib/udev/rules.d/ +} +md5sums=('87fd27773a84e97ac6e2dc28b08d682e' + 'dae0660f972510a6483992b5b81e1b5a' + 'dc4b2893651149eccbf7b2c8467cd288') diff --git a/staging/usbmuxd/usbmuxd.install b/staging/usbmuxd/usbmuxd.install new file mode 100644 index 000000000..1a4859674 --- /dev/null +++ b/staging/usbmuxd/usbmuxd.install @@ -0,0 +1,19 @@ +post_install() { + groupadd -g 140 usbmux &>/dev/null + useradd -c 'usbmux user' -u 140 -g usbmux -d / -s /sbin/nologin usbmux &>/dev/null + passwd -l usbmux &>/dev/null +} + +post_upgrade() { + getent group usbmux >/dev/null 2>&1 || groupadd -g 140 usbmux &>/dev/null + getent passwd usbmux >/dev/null 2>&1 || useradd -c 'usbmux user' -u 140 -g usbmux -d / -s /sbin/nologin usbmux &>/dev/null +} + +post_remove() { + if getent passwd usbmux >/dev/null 2>&1; then + userdel usbmux + fi + if getent group usbmux >/dev/null 2>&1; then + groupdel usbmux + fi +} diff --git a/staging/usbmuxd/usbmuxd.service b/staging/usbmuxd/usbmuxd.service new file mode 100644 index 000000000..fbebf65b9 --- /dev/null +++ b/staging/usbmuxd/usbmuxd.service @@ -0,0 +1,5 @@ +[Unit] +Description=iOS USB Muxer + +[Service] +ExecStart=/usr/sbin/usbmuxd -u -f -U usbmux diff --git a/testing/systemd/PKGBUILD b/testing/systemd/PKGBUILD index 338fd8f94..863850c92 100644 --- a/testing/systemd/PKGBUILD +++ b/testing/systemd/PKGBUILD @@ -3,8 +3,8 @@ pkgbase=systemd pkgname=('systemd' 'libsystemd' 'systemd-tools' 'systemd-sysvcompat') -pkgver=186 -pkgrel=2 +pkgver=187 +pkgrel=1 arch=('i686' 'x86_64') url="http://www.freedesktop.org/wiki/Software/systemd" license=('GPL2' 'LGPL2.1' 'MIT') @@ -17,7 +17,7 @@ source=("http://www.freedesktop.org/software/$pkgname/$pkgname-$pkgver.tar.xz" 'initcpio-install-timestamp' '0001-Reinstate-TIMEOUT-handling.patch' 'locale.sh') -md5sums=('17eff1d31e6e49bf82e129fe57efd59b' +md5sums=('26606e3c84448800ef0b3ffd57e6e8b6' 'e99e9189aa2f6084ac28b8ddf605aeb8' '59e91c4d7a69b7bf12c86a9982e37ced' 'df69615503ad293c9ddf9d8b7755282d' |