From c75e5a45461818970cde97c10656ccfea17529db Mon Sep 17 00:00:00 2001 From: Timothy Redaelli Date: Fri, 20 Jan 2012 08:04:04 +0000 Subject: [PATCH] updated on Fri Jan 20 08:04:04 UTC 2012 --- bitcoin-bin/PKGBUILD | 4 +-- bitcoin/PKGBUILD | 4 +-- cassandra/PKGBUILD | 4 +-- gnome-shell-extension-calc-git/PKGBUILD | 36 +++++++++++++++++++++++++++ gnome-shell-extension-hide-dash-git/PKGBUILD | 33 +++++++++++++++++++++++++ imhangul2/PKGBUILD | 10 ++++---- imhangul3/PKGBUILD | 19 ++++++++++++++ loic/PKGBUILD | 6 ++--- paest-cli-git/PKGBUILD | 37 ++++++++++++++++++++++++++++ pidgin-gfire-svn/PKGBUILD | 4 +-- pidgin-gfire/PKGBUILD | 4 +-- spinach/PKGBUILD | 10 ++++---- vusb-analyzer/PKGBUILD | 4 +-- 13 files changed, 150 insertions(+), 25 deletions(-) create mode 100644 gnome-shell-extension-calc-git/PKGBUILD create mode 100644 gnome-shell-extension-hide-dash-git/PKGBUILD create mode 100644 imhangul3/PKGBUILD create mode 100644 paest-cli-git/PKGBUILD diff --git a/bitcoin-bin/PKGBUILD b/bitcoin-bin/PKGBUILD index df53b716d..effb0bc1e 100644 --- a/bitcoin-bin/PKGBUILD +++ b/bitcoin-bin/PKGBUILD @@ -7,7 +7,7 @@ prog=bitcoin pkgname=${prog}-bin -pkgver=0.5.1 +pkgver=0.5.2 pkgrel=1 pkgdesc="Bitcoin is a peer-to-peer network based digital currency (precompiled binary official version, statically linked against libboost)" arch=('i686' 'x86_64') @@ -20,7 +20,7 @@ conflicts=('bitcoin') # install=${prog}-bin.install source=("http://downloads.sourceforge.net/sourceforge/${prog}/${prog}-${pkgver}-linux.tar.gz" "${prog}.desktop") -md5sums=('1edeb3082d41741b8d0e5f850818328f' +md5sums=('6d40f645ddc042de26d64e83656f38e0' '77139ce8a40f46bd7d7ad0a743672113') s1=$srcdir/${prog}-${pkgver}-linux src_qt=$s1/src diff --git a/bitcoin/PKGBUILD b/bitcoin/PKGBUILD index 8ed626680..64810db4b 100644 --- a/bitcoin/PKGBUILD +++ b/bitcoin/PKGBUILD @@ -7,7 +7,7 @@ name=bitcoin pkgname=$name -pkgver=0.5.1 +pkgver=0.5.2 pkgrel=1 pkgdesc="Bitcoin is a peer-to-peer network based digital currency." arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ conflicts=('bitcoin-bin' 'bitcoin-git' 'bitcoin-daemon') license=('MIT') source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}-linux.tar.gz" "${pkgname}.desktop") -md5sums=('1edeb3082d41741b8d0e5f850818328f' +md5sums=('6d40f645ddc042de26d64e83656f38e0' '77139ce8a40f46bd7d7ad0a743672113') s1=$srcdir/${pkgname}-${pkgver}-linux src_qt=$s1/src diff --git a/cassandra/PKGBUILD b/cassandra/PKGBUILD index 9fbe38ff4..0959b261b 100644 --- a/cassandra/PKGBUILD +++ b/cassandra/PKGBUILD @@ -7,7 +7,7 @@ # If you have problems with gpg, you can remove check() function, and all will be ok. pkgname=cassandra -pkgver=1.0.6 +pkgver=1.0.7 pkgrel=1 pkgdesc="NoSQL database (precompiled official version)" arch=('any') @@ -17,7 +17,7 @@ depends=('java-runtime') makedepends=('gnupg') url_tgz="http://apache.mirror.anlx.net/cassandra/$pkgver/apache-$pkgname-$pkgver-bin.tar.gz" source=($url_tgz cassandra) -md5sums=('1bd6be313368df878c67e9b9cdf19d27' +md5sums=('84eb69022080f6ffdfd5c8e9d9e286d6' '19d01c3e8c967fa4fc4456f53b36f9fd') ## to check gpg signature diff --git a/gnome-shell-extension-calc-git/PKGBUILD b/gnome-shell-extension-calc-git/PKGBUILD new file mode 100644 index 000000000..68bf62b84 --- /dev/null +++ b/gnome-shell-extension-calc-git/PKGBUILD @@ -0,0 +1,36 @@ +# Contributor: Nazarov Pavel + +pkgname=gnome-shell-extension-calc-git +pkgver=20120120 +pkgrel=1 +pkgdesc="A simple calculator in the search overview" +arch=('i686' 'x86_64') +url="https://github.com/eonpatapon/gnome-shell-extension-calc" +groups=('gnome-shell-extensions') +license=('GPL2') +depends=('gnome-shell') + +_gitroot="git://github.com/eonpatapon/gnome-shell-extension-calc.git" +_gitname="gnome-shell-extension-calc" + +build() { + msg "Connecting to GIT server...." + + if [ -d $startdir/src/$_gitname ] ; then + cd $_gitname && git pull origin + msg "The local files are updated." + else + git clone $_gitroot + fi + + msg "GIT checkout done or server timeout" +} + +package() { + cd $srcdir/$_gitname + install -Dm644 extension.js $pkgdir/usr/share/gnome-shell/extensions/calc@patapon.info/extension.js + install -Dm644 metadata.json $pkgdir/usr/share/gnome-shell/extensions/calc@patapon.info/metadata.json + install -Dm644 stylesheet.css $pkgdir/usr/share/gnome-shell/extensions/calc@patapon.info/activitiesbutton.css + install -Dm644 COPYING $pkgdir/usr/share/gnome-shell/extensions/calc@patapon.info/COPYING + install -Dm644 README.md $pkgdir/usr/share/gnome-shell/extensions/calc@patapon.info/README.md +} diff --git a/gnome-shell-extension-hide-dash-git/PKGBUILD b/gnome-shell-extension-hide-dash-git/PKGBUILD new file mode 100644 index 000000000..56240bb76 --- /dev/null +++ b/gnome-shell-extension-hide-dash-git/PKGBUILD @@ -0,0 +1,33 @@ +# Contributor: Nazarov Pavel + +pkgname=gnome-shell-extension-hide-dash-git +pkgver=20120120 +pkgrel=1 +pkgdesc="gnome-shell-extension-hide-dash is a simple extension that hides the dash from the activities overview" +arch=('i686' 'x86_64') +url="https://github.com/zacbarton/gnome-shell-extension-hide-dash" +groups=('gnome-shell-extensions') +license=('') +depends=('gnome-shell') + +_gitroot="git://github.com/zacbarton/gnome-shell-extension-hide-dash.git" +_gitname="gnome-shell-extension-hide-dash" + +build() { + msg "Connecting to GIT server...." + + if [ -d $startdir/src/$_gitname ] ; then + cd $_gitname && git pull origin + msg "The local files are updated." + else + git clone $_gitroot + fi + + msg "GIT checkout done or server timeout" +} + +package() { + cd $srcdir/$_gitname + install -Dm644 hide-dash@zacbarton.com/extension.js $pkgdir/usr/share/gnome-shell/extensions/hide-dash@zacbarton.com/extension.js + install -Dm644 hide-dash@zacbarton.com/metadata.json $pkgdir/usr/share/gnome-shell/extensions/hide-dash@zacbarton.com/metadata.json +} diff --git a/imhangul2/PKGBUILD b/imhangul2/PKGBUILD index d5d9b21c1..30ecf6b40 100644 --- a/imhangul2/PKGBUILD +++ b/imhangul2/PKGBUILD @@ -1,15 +1,15 @@ # Editor: zinc pkgname=imhangul2 -pkgver=2.0.0 +pkgver=2.1.0 pkgrel=1 pkgdesc="Hangul input module for GTK+ 2. This supports Korean Hangul input with several types of keyboards widely used in Korea." arch=(i686 x86_64) -url="http://imhangul.kldp.net/" -license=('GPL') +url="http://code.google.com/p/imhangul/" +license=('LGPL') depends=('gtk2' 'libhangul>=0.0.12') -source=(http://kldp.net/frs/download.php/5924/imhangul-$pkgver.tar.bz2) -md5sums=('b1894d59e3b9102af382159451d7236d') +source=(http://imhangul.googlecode.com/files/imhangul-2.1.0.tar.bz2) +sha1sums=('199d73c24fe1e4365089031a0bd06f049c167b2d') build() { cd ${startdir}/src/imhangul-${pkgver} diff --git a/imhangul3/PKGBUILD b/imhangul3/PKGBUILD new file mode 100644 index 000000000..3380c9d71 --- /dev/null +++ b/imhangul3/PKGBUILD @@ -0,0 +1,19 @@ +# Editor: zinc + +pkgname=imhangul3 +pkgver=3.1.0 +pkgrel=1 +pkgdesc="Hangul input module for GTK+ 3. This supports Korean Hangul input with several types of keyboards widely used in Korea." +arch=(i686 x86_64) +url="http://code.google.com/p/imhangul/" +license=('LGPL') +depends=('gtk3' 'libhangul>=0.0.12') +source=(http://imhangul.googlecode.com/files/imhangul-3.1.0.tar.bz2) +sha1sums=('8faff9153cb3cf69e1c2188f7d7b5411077b52b2') + +build() { + cd ${startdir}/src/imhangul-${pkgver} + ./configure -prefix=/usr + make || return 1 + make DESTDIR=${startdir}/pkg install +} diff --git a/loic/PKGBUILD b/loic/PKGBUILD index 96ae97cc5..bc09d075b 100644 --- a/loic/PKGBUILD +++ b/loic/PKGBUILD @@ -3,12 +3,12 @@ pkgname=loic pkgver=1.1.1.25 -pkgrel=2 +pkgrel=3 pkgdesc="Low Orbit Ion Cannon - An open source network stress tool for Windows. Based on Praetox's loic project at https://sourceforge.net/projects/loic/ and writen in C#." arch=('any') url="https://github.com/NewEraCracker/LOIC" -depends=('mono' 'monodevelop') -makedepends=('unzip') +depends=('mono') +makedepends=('unzip' 'monodevelop') license=('GPL') install=loic.install source=("https://github.com/NewEraCracker/LOIC/zipball/1.1.1.25" diff --git a/paest-cli-git/PKGBUILD b/paest-cli-git/PKGBUILD new file mode 100644 index 000000000..56401efec --- /dev/null +++ b/paest-cli-git/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: Spencer Judd + +pkgname="paest-cli-git" +pkgver=20120119 +pkgrel=1 +pkgdesc="A command-line interface for pae.st, the pastebin for hardcore programmers." +arch=('any') +url="https://github.com/scjudd/paestcli" +license=('GPL') +depends=('python2') +makedepends=('git') +provides="paest-cli" + +_gitroot="git://github.com/scjudd/paestcli.git" +_gitname="paestcli" + +build() { + cd ${srcdir} + msg "Connecting to GIT server...." + + if [ -d ${_gitname} ]; then + cd ${_gitname} && git pull origin + msg "The local files are updated." + else + git clone ${_gitroot} + fi + + msg "GIT checkout done or server timeout" + msg "Starting make..." + + rm -rf ${srcdir}/${_gitname}-build + git clone ${srcdir}/${_gitname} ${srcdir}/${_gitname}-build + cd ${srcdir}/${_gitname}-build + + install -D -m755 paest ${pkgdir}/usr/bin/paest || return 1 +} + diff --git a/pidgin-gfire-svn/PKGBUILD b/pidgin-gfire-svn/PKGBUILD index 03c3df959..4e1df8739 100644 --- a/pidgin-gfire-svn/PKGBUILD +++ b/pidgin-gfire-svn/PKGBUILD @@ -3,13 +3,13 @@ pkgname=pidgin-gfire-svn pkgver=547 -pkgrel=1 +pkgrel=2 pkgdesc="Plugin to Pidgin which adds Xfire network support (Dev/svn tree)" url="http://gfireproject.org/" arch=('i686' 'x86_64') license=('GPL3') depends=('glib2' 'libpurple' 'libnotify' 'gtk2') -makedepends=('subversion' 'pkgconfig' 'intltool') +makedepends=('subversion' 'pkgconfig' 'intltool' 'libtool') conflicts=('pidgin-gfire') provides=('pidgin-gfire') diff --git a/pidgin-gfire/PKGBUILD b/pidgin-gfire/PKGBUILD index 9fdb2421b..dc2b2b9a3 100644 --- a/pidgin-gfire/PKGBUILD +++ b/pidgin-gfire/PKGBUILD @@ -3,13 +3,13 @@ pkgname=pidgin-gfire pkgver=0.9.4 -pkgrel=2 +pkgrel=3 pkgdesc="Gfire is an Plugin for the Pidgin IM client which allows you to connect the Xfire network." arch=('i686' 'x86_64') url="http://gfireproject.org/" license=('GPL') depends=('glib2' 'libpurple' 'libnotify' 'gtk2') -makedepends=('pkgconfig' 'intltool') +makedepends=('pkgconfig' 'intltool' 'libtool') source=("http://downloads.sourceforge.net/gfire/pidgin-gfire-$pkgver.tar.bz2" "gfire-libnotify.patch") md5sums=('7167828fd77200603a318afdd4d9ebd2' '5d6fc2b98837fbebba6bef2648699d5e') diff --git a/spinach/PKGBUILD b/spinach/PKGBUILD index 594d37310..6d46a66ef 100644 --- a/spinach/PKGBUILD +++ b/spinach/PKGBUILD @@ -1,20 +1,20 @@ # Maintainer: Garrett pkgname=spinach pkgver=0.5.0 -pkgrel=1 +pkgrel=2 pkgdesc="A small AUR helper written in Bash." arch=('any') url="http://floft.net/wiki/Scripts/Spinach" license=('ISC') depends=('jshon') source=(http://www.floft.net/uploads/spinach/spinach.tar.gz) -md5sums=('8b6f313eea7e4a8d1ccb5d5f4c5ca8e1') -sha256sums=('245d8dae3ce40fbf443adfa0c0ee456e0488c58e74a4ff2fd93c21e8e7583a1a') +md5sums=('fc8df532f0bdfeb8de424c79933eaf0f') +sha256sums=('cdb74c933db127a9e280216158b938d9b7d3afbdab2f1f8eb4bf59459fab2677') install=spinach.install build() { - cd "$srcdir/$pkgname-$pkgver" + cd "$srcdir/$pkgname-$pkgver" install -Dm755 $pkgname "$pkgdir/usr/bin/$pkgname" install -Dm644 $pkgname.1 "$pkgdir/usr/share/man/man1/$pkgname.1" - install -Dm644 config "$pkgdir/usr/share/$pkgname/config" + install -Dm644 config "$pkgdir/usr/share/$pkgname/config" } diff --git a/vusb-analyzer/PKGBUILD b/vusb-analyzer/PKGBUILD index c9467fa22..36c41153b 100644 --- a/vusb-analyzer/PKGBUILD +++ b/vusb-analyzer/PKGBUILD @@ -2,9 +2,9 @@ pkgname=vusb-analyzer pkgver=1.1 -pkgrel=1 +pkgrel=2 pkgdesc="A tool for visualizing logs of USB packets, from sniffer tools like usbmon" -arch=('i686' 'x86_64') +arch=('any') url="http://vusb-analyzer.sourceforge.net/" license=('MIT') depends=('python2' 'pygtk') -- 2.11.4.GIT