diff options
author | root <root@rshg054.dnsready.net> | 2011-10-21 23:14:54 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-21 23:14:54 +0000 |
commit | d3d0811e23787b5c66edf94b3351a1555eb5010f (patch) | |
tree | 5fb14b5a2d0bd5b526a58d27e6fb81f04977855a /community | |
parent | 1b21445a8e9097b0bb0542ed847fbb1eb832848f (diff) |
Fri Oct 21 23:14:53 UTC 2011
Diffstat (limited to 'community')
-rw-r--r-- | community/cclive/PKGBUILD | 8 | ||||
-rw-r--r-- | community/clamz/PKGBUILD | 10 | ||||
-rw-r--r-- | community/clamz/unencrypted-amz.patch | 27 | ||||
-rw-r--r-- | community/gedit-plugins/PKGBUILD | 6 | ||||
-rw-r--r-- | community/kadu/PKGBUILD | 8 | ||||
-rw-r--r-- | community/libquvi/PKGBUILD | 27 | ||||
-rw-r--r-- | community/mxml/PKGBUILD | 22 | ||||
-rw-r--r-- | community/puzzles/PKGBUILD | 4 | ||||
-rw-r--r-- | community/quvi/PKGBUILD | 8 | ||||
-rw-r--r-- | community/root/PKGBUILD | 4 | ||||
-rw-r--r-- | community/vhba-module/PKGBUILD | 8 | ||||
-rw-r--r-- | community/vhba-module/vhba-module.install | 4 |
12 files changed, 98 insertions, 38 deletions
diff --git a/community/cclive/PKGBUILD b/community/cclive/PKGBUILD index 7fd861848..101f4950e 100644 --- a/community/cclive/PKGBUILD +++ b/community/cclive/PKGBUILD @@ -1,19 +1,19 @@ -# $Id: PKGBUILD 55940 2011-09-26 09:58:23Z lfleischer $ +# $Id: PKGBUILD 57078 2011-10-20 17:07:27Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: joyfulgirl@archlinux.us # Contributor: nathan owe ndowens04 at gmail dot com pkgname=cclive -pkgver=0.7.6 +pkgver=0.7.7 pkgrel=1 pkgdesc='Commandline downloader for popular video websites.' arch=('i686' 'x86_64') url='http://cclive.sourceforge.net/' license=('GPL3') -depends=('boost-libs' 'quvi') +depends=('boost-libs' 'pcre' 'curl' 'libquvi') makedepends=('boost') source=("http://downloads.sourceforge.net/project/${pkgname}/0.7/${pkgname}-${pkgver}.tar.gz") -md5sums=('714ecd9952f79ac9d2c954e5e84fb843') +md5sums=('8265be865a22fb477bcc050f0dc310dc') build() { cd "$pkgname-$pkgver" diff --git a/community/clamz/PKGBUILD b/community/clamz/PKGBUILD index 3b784be5d..d08c07921 100644 --- a/community/clamz/PKGBUILD +++ b/community/clamz/PKGBUILD @@ -1,18 +1,20 @@ -# $Id: PKGBUILD 53892 2011-08-09 12:18:03Z lfleischer $ +# $Id: PKGBUILD 57080 2011-10-20 17:17:06Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: Daniel J Griffiths <ghost1227@archlinux.us> pkgname=clamz pkgver=0.4 -pkgrel=2 +pkgrel=3 pkgdesc="Command-line program to download MP3 files from Amazon.com's music store." arch=('i686' 'x86_64') url='http://code.google.com/p/clamz/' license=('GPL3') depends=('libgcrypt' 'curl' 'expat' 'shared-mime-info' 'desktop-file-utils') install='clamz.install' -source=("http://clamz.googlecode.com/files/clamz-${pkgver}.tar.gz") -md5sums=('ab7661340ee27d206f36064cfbd5bfa4') +source=("http://clamz.googlecode.com/files/clamz-${pkgver}.tar.gz" + 'unencrypted-amz.patch') +md5sums=('ab7661340ee27d206f36064cfbd5bfa4' + '603ef334d297614edabbd1bf5bfe585d') build() { cd "${srcdir}/${pkgname}-${pkgver}" diff --git a/community/clamz/unencrypted-amz.patch b/community/clamz/unencrypted-amz.patch new file mode 100644 index 000000000..49b03ba8a --- /dev/null +++ b/community/clamz/unencrypted-amz.patch @@ -0,0 +1,27 @@ +--- playlist.c 2010-04-19 16:01:59.000000000 -0700 ++++ clamz-0.4/playlist.c 2011-10-18 20:35:39.850146353 -0700 +@@ -499,12 +499,21 @@ + { + struct parseinfo pi; + unsigned char *decrypted, *xml; +- unsigned long decrypted_len; ++ unsigned long decrypted_len, i; + int xerr; + + decrypted = decrypt_amz_file(b64data, b64len, fname); +- if (!decrypted) +- return 1; ++ if (!decrypted){ ++ // XXX Perhaps the code file is unencrypted already. ++ decrypted = malloc((b64len + 1) * sizeof(char)); ++ if (!decrypted) { ++ print_error("Out of memory"); ++ return 1; ++ } ++ for (i = 0; i < b64len; i++) { ++ decrypted[i] = b64data[i]; ++ } ++ } + decrypted_len = strlen((char*) decrypted); + + pi.parser = XML_ParserCreate(NULL); diff --git a/community/gedit-plugins/PKGBUILD b/community/gedit-plugins/PKGBUILD index a4dbf7ccb..967663b78 100644 --- a/community/gedit-plugins/PKGBUILD +++ b/community/gedit-plugins/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 56108 2011-10-01 18:56:09Z ibiru $ +# $Id: PKGBUILD 57063 2011-10-20 05:50:26Z ibiru $ #Maintainer: Ionut Biru <ibiru@archlinux.org> #Contributor: Hugo Doria <hugo@archlinux.org> #Contributor: Sergej Chodarev <sergejx@centrum.sk> #Contributor: zhuqin <zhuqin83@gmail.com> pkgname=gedit-plugins -pkgver=3.2.0 +pkgver=3.2.1 pkgrel=1 pkgdesc="Set of plugins for gedit" arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ makedepends=('intltool' 'gnome-doc-utils') options=('!libtool' '!emptydirs') install=gedit-plugins.install source=(ftp://ftp.gnome.org/pub/gnome/sources/gedit-plugins/3.2/$pkgname-$pkgver.tar.xz) -sha256sums=('c8d617a107478dba6ef0ab16e87707c5526e97eefab24a65891dbf9aa32e7839') +sha256sums=('45dee01a196a7d5e87027187e76d57643b146ea1c313cad2686ebd369890f841') build() { cd $srcdir/$pkgname-$pkgver diff --git a/community/kadu/PKGBUILD b/community/kadu/PKGBUILD index 10d1a3ac6..0c116b3cd 100644 --- a/community/kadu/PKGBUILD +++ b/community/kadu/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 55999 2011-09-28 14:40:31Z mherych $ +# $Id: PKGBUILD 57067 2011-10-20 15:00:52Z bpiotrowski $ # Maintainer: Mateusz Herych # Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org> pkgname=kadu -pkgver=0.10.0 +pkgver=0.10.1 pkgrel=1 pkgdesc="A Qt-based Jabber/XMPP and Gadu-Gadu client" arch=('i686' 'x86_64') url="http://www.kadu.net/" license=('GPL') -depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn') +depends=('libgadu' 'libxss' 'aspell' 'phonon' 'qca-ossl' 'libidn' 'libmpdclient') makedepends=('cmake' 'libao' 'libsndfile' 'libxtst' 'curl') source=(http://www.kadu.net/download/stable/$pkgname-$pkgver.tar.bz2) -md5sums=('6d3e9889f53cf10c2cd9499aabbff67a') +md5sums=('6211a9a9e02d645268cbf055892601a0') build() { cd $srcdir/kadu-$pkgver diff --git a/community/libquvi/PKGBUILD b/community/libquvi/PKGBUILD new file mode 100644 index 000000000..1f0d35065 --- /dev/null +++ b/community/libquvi/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 57076 2011-10-20 17:03:18Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> + +pkgname=libquvi +pkgver=0.4.0 +pkgrel=2 +pkgdesc='Library for parsing video download links.' +arch=('i686' 'x86_64') +url='http://quvi.sourceforge.net/' +license=('LGPL') +depends=('libquvi-scripts' 'curl' 'lua') +conflicts=('quvi<0.4.0') +options=('!libtool') +source=("http://downloads.sourceforge.net/sourceforge/quvi/${pkgname}-${pkgver}.tar.gz") +md5sums=('85c47035105b6b523a28793d4f6da9f1') + +build() { + cd "${pkgname}-${pkgver}" + + ./configure --prefix=/usr + make +} + +package() { + cd "${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/community/mxml/PKGBUILD b/community/mxml/PKGBUILD index e6ca08f12..45614fd8c 100644 --- a/community/mxml/PKGBUILD +++ b/community/mxml/PKGBUILD @@ -1,22 +1,26 @@ -# $Id: PKGBUILD 4277 2009-10-19 20:28:23Z giovanni $ +# $Id: PKGBUILD 57065 2011-10-20 07:22:50Z andrea $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Roman Kyrylych <roman@archlinux.org> # Contributor: Johannes Sjolund <j.sjolund@gmail.com> pkgname=mxml pkgver=2.6 -pkgrel=1 -pkgdesc="A small XML parsing library " +pkgrel=2 +pkgdesc="A small XML parsing library" arch=('i686' 'x86_64') url="http://www.minixml.org/" license=('LGPL') -depends=('glibc') -source=(http://ftp.easysw.com/pub/mxml/$pkgver/$pkgname-$pkgver.tar.gz) +source=("http://ftp.easysw.com/pub/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz") md5sums=('68977789ae64985dddbd1a1a1652642e') build() { - cd $srcdir/$pkgname-$pkgver + cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr - make || return 1 - make DSTROOT=$pkgdir install - chmod -x $pkgdir/usr/lib/libmxml.a + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DSTROOT="$pkgdir" install + chmod -x "$pkgdir/usr/lib/libmxml.a" } diff --git a/community/puzzles/PKGBUILD b/community/puzzles/PKGBUILD index b10a7dde9..234666119 100644 --- a/community/puzzles/PKGBUILD +++ b/community/puzzles/PKGBUILD @@ -3,7 +3,7 @@ # Maintainer: schuay <jakob.gruber@gmail.com> pkgname=puzzles -pkgver=9179 +pkgver=9306 pkgrel=1 pkgdesc="Simon Tatham's Portable Puzzle Collection" arch=('i686' 'x86_64') @@ -12,7 +12,7 @@ license=('MIT') makedepends=('pkgconfig') depends=('gtk2') source=("http://www.chiark.greenend.org.uk/~sgtatham/${pkgname}/${pkgname}-r${pkgver}.tar.gz") -md5sums=('f724413049ff2a3cc00799793190b1d0') +md5sums=('30eac18bcfe1e202003709a8281a81bc') build() { cd ${srcdir}/${pkgname}-r${pkgver} diff --git a/community/quvi/PKGBUILD b/community/quvi/PKGBUILD index 4194f970b..d90b7e798 100644 --- a/community/quvi/PKGBUILD +++ b/community/quvi/PKGBUILD @@ -1,18 +1,18 @@ -# $Id: PKGBUILD 53820 2011-08-08 14:10:47Z lfleischer $ +# $Id: PKGBUILD 57074 2011-10-20 16:44:35Z lfleischer $ # Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> # Contributor: joyfulgirl@archlinux.us pkgname=quvi -pkgver=0.2.19 +pkgver=0.4.0 pkgrel=1 pkgdesc='Command-line tool for parsing video download links.' arch=('i686' 'x86_64') url='http://quvi.sourceforge.net/' license=('LGPL') -depends=('curl' 'pcre' 'lua') +depends=('libquvi') options=('!libtool') source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.gz") -md5sums=('c96627374377b049ac60e7642eb7f838') +md5sums=('302652f7e3d97051d7250e3a7bc04250') build() { cd "${pkgname}-${pkgver}" diff --git a/community/root/PKGBUILD b/community/root/PKGBUILD index 08160bda1..d45cbd58d 100644 --- a/community/root/PKGBUILD +++ b/community/root/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Sebastian Voecking <voeck@web.de> pkgname=root -pkgver=5.30.02 +pkgver=5.30.03 pkgrel=1 pkgdesc='C++ data analysis framework and interpreter from CERN.' arch=('i686' 'x86_64') @@ -17,7 +17,7 @@ source=("ftp://root.cern.ch/root/root_v${pkgver}.source.tar.gz" 'rootd' 'root.desktop' 'root.xml') -md5sums=('8a5a5451ddaae276abc9d2e263b29b88' +md5sums=('d2c39bf7640bdd26d4645c52c504cc24' '0e883ad44f99da9bc7c23bc102800b62' 'efd06bfa230cc2194b38e0c8939e72af' 'ac61b17395d75a2705fefa2ef841a6bf' diff --git a/community/vhba-module/PKGBUILD b/community/vhba-module/PKGBUILD index 5904f5ef7..4e2739fb2 100644 --- a/community/vhba-module/PKGBUILD +++ b/community/vhba-module/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 53809 2011-08-08 10:37:58Z jelle $ +# $Id: PKGBUILD 57058 2011-10-20 04:40:39Z bpiotrowski $ # Maintainer: Mateusz Herych <heniekk@gmail.com> # Contributor: Charles Lindsay <charles@chaoslizard.org> pkgname=vhba-module -pkgver=20110416 +pkgver=20110915 _kernver='3.0-ARCH' -pkgrel=2 +pkgrel=1 pkgdesc="Kernel module that emulates SCSI devices" arch=('i686' 'x86_64') url="http://cdemu.sourceforge.net/" @@ -14,7 +14,7 @@ depends=('linux>=3.0' 'linux<3.1') makedepends=('linux-headers>=3.0') install=vhba-module.install source=(http://downloads.sourceforge.net/cdemu/$pkgname-$pkgver.tar.gz) -md5sums=('2f91dd4ee8648da92d625221d4275b60') +md5sums=('fb90cd8fc4cd74d08c92e8235f99f1f4') build() { cd "$srcdir/$pkgname-$pkgver" diff --git a/community/vhba-module/vhba-module.install b/community/vhba-module/vhba-module.install index edb9e8d2b..75669d1a5 100644 --- a/community/vhba-module/vhba-module.install +++ b/community/vhba-module/vhba-module.install @@ -1,7 +1,7 @@ post_install() { echo ">> Place 'vhba' in MODULES= in /etc/rc.conf to enable vhba on system boot." echo ">> This module needs to be recompiled for every kernel version upgrade." - KERNEL_VERSION='2.6.39-ARCH' + KERNEL_VERSION='3.0-ARCH' depmod $KERNEL_VERSION > /dev/null 2>&1 } @@ -10,7 +10,7 @@ post_upgrade() { } post_remove() { - KERNEL_VERSION='2.6.39-ARCH' + KERNEL_VERSION='3.0-ARCH' depmod $KERNEL_VERSION > /dev/null 2>&1 } |