aur updates

This commit is contained in:
Kevin Mihelich 2013-03-17 21:07:51 +00:00
parent 189e512d98
commit 6f0c7da35d
16 changed files with 98 additions and 158 deletions

View file

@ -4,7 +4,7 @@
pkgname=chocolate-doom
pkgver=1.7.0
pkgrel=1
pkgrel=2
pkgdesc="A Doom port reproducing the behavior of the original DOS version"
arch=('i686' 'x86_64')
url="http://www.chocolate-doom.org/"
@ -28,6 +28,7 @@ build() {
-e 's| CFLAGS=|: # CFLAGS=|g' \
-i configure.in
autoupdate
autoreconf -i
./configure --prefix=/usr

View file

@ -1,15 +1,15 @@
# Maintainer: OK100 <ok100@lavabit.com>
# Maintainer: OK100 <ok100 at lavabit dot com>
# Previous Maintainer: Valère Monseur <valere dot monseur at ymail dot com>
pkgname=compton-git
pkgver=20121204
pkgrel=1
pkgver=20130304
pkgrel=2
pkgdesc="X Compositor (a fork of xcompmgr-dana)"
arch=(i686 x86_64)
url="https://github.com/chjj/compton"
license=('MIT')
depends=('libx11' 'libxcomposite' 'libxdamage' 'libxfixes' 'libxext' 'libxrender' 'xproto' 'bash' 'xorg-xprop' 'xorg-xwininfo' 'pcre' 'libconfig' 'mesa' 'libxrandr')
makedepends=('git' 'make' 'pkg-config' 'asciidoc')
depends=('libx11' 'libxcomposite' 'libxdamage' 'libxfixes' 'libxext' 'libxrender' 'libxrandr' 'xproto' 'bash' 'xorg-xprop' 'xorg-xwininfo' 'pcre' 'libconfig')
makedepends=('git' 'make' 'pkg-config' 'asciidoc' 'libgl')
_gitroot="git://github.com/chjj/compton.git"
_gitname="compton"

View file

@ -1,17 +1,17 @@
# Maintainer: Dave Reisner <d@falconindy.com>
pkgname=cower
pkgver=7
pkgrel=2
pkgver=8
pkgrel=1
pkgdesc="A simple AUR agent with a pretentious name"
arch=('i686' 'x86_64')
url="http://github.com/falconindy/cower"
license=('MIT')
depends=('curl' 'yajl' 'pacman')
makedepends=('perl')
source=("https://github.com/downloads/falconindy/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
md5sums=('d046a8a5278eb2788c8fb4019455be32'
'1cb4248bf4302bd152f69fff5ffaa457')
source=("http://code.falconindy.com/archive/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig})
md5sums=('fd64ed93a636a2766c09935c8dd9c355'
'acf83ef06997aa4c1dc276e24a51dff6')
build() {
make -C "$pkgname-$pkgver"

View file

@ -1,29 +1,26 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Maintainer: Bartlomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Jason Pierce <`echo 'moc tod liamg ta nosaj tod ecreip' | rev`>
# Contributor: Jeremy Cowgar <jeremy@cowgar.com>
plugrel=1
# Contributor: Simon Perry <aur [at] sanxion [dot] net>
pkgname=dropbear
pkgver=2012.55
pkgrel=1
pkgrel=2
pkgdesc="Lightweight replacement for sshd"
arch=('i686' 'x86_64')
url="http://matt.ucc.asn.au/dropbear/dropbear.html"
license=('custom')
license=('MIT')
depends=('zlib')
backup=(etc/conf.d/dropbear)
source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2 \
$pkgname-conf.d \
$pkgname-rc.d)
source=(http://matt.ucc.asn.au/$pkgname/releases/$pkgname-$pkgver.tar.bz2
$pkgname.service)
sha256sums=('04982af2a10b220fa940f9f72f276d612c9bb643cfbb5ee1416e5a0f00de9b0f'
'eaec8cecae4476a660351ba9079c91b7c379146a22df881bd24b81af8f50d74c'
'29ab5438d15bfa727620fc04ec52ff55d676577b903c9261ce00bb291ae171a8')
'f0158ba3c98e9b26ca0ef1f5a1047d72677ba5011f2e2d2014a12e48c2af09bf')
build() {
cd ${srcdir}/$pkgname-$pkgver
sed -i 's:usr/libexec/sftp:usr/lib/ssh/sftp:' options.h
sed -i 's|usr/libexec/sftp|usr/lib/ssh/sftp|' options.h
./configure --prefix=/usr
LIBS="-lcrypt" make
@ -34,16 +31,15 @@ package() {
make prefix=${pkgdir}/usr install
#man pages
#man pages
install -D -m644 dbclient.1 ${pkgdir}/usr/share/man/man1/dbclient.1
install -D -m644 $pkgname.8 ${pkgdir}/usr/share/man/man8/$pkgname.8
install -D -m644 dropbearkey.8 ${pkgdir}/usr/share/man/man8/dropbearkey.8
#configuration files
#configuration files
install -d ${pkgdir}/etc/$pkgname
install -D -m644 ${srcdir}/$pkgname-conf.d ${pkgdir}/etc/conf.d/$pkgname
install -D -m755 ${srcdir}/$pkgname-rc.d ${pkgdir}/etc/rc.d/$pkgname
install -D -m644 ${srcdir}/$pkgname.service ${pkgdir}/usr/lib/systemd/system/$pkgname.service
#license file
#license file
install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/$pkgname/LICENSE
}

View file

@ -1,88 +0,0 @@
#!/bin/bash
daemon_name=dropbear
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/$daemon_name
for port in $DROPBEAR_PORT; do
daemon_args="$daemon_args -p $port"
done
[ ! -z $DROPBEAR_BANNER ] && daemon_args="$daemon_args -b $DROPBEAR_BANNER"
[ ! -z $DROPBEAR_DSSKEY ] && daemon_args="$daemon_args -d $DROPBEAR_DSSKEY"
[ ! -z $DROPBEAR_RSAKEY ] && daemon_args="$daemon_args -r $DROPBEAR_RSAKEY"
[ ! -z $DROPBEAR_EXTRA_ARGS ] && daemon_args="$daemon_args $DROPBEAR_EXTRA_ARGS"
[ -z $DROPBEAR_PIDFILE ] && DROPBEAR_PIDFILE="/var/run/$daemon_name.pid"
daemon_args="$daemon_args -P $DROPBEAR_PIDFILE"
get_pid() {
PID=''
if [ -r $DROPBEAR_PIDFILE -a -f $DROPBEAR_PIDFILE -a -w $DROPBEAR_PIDFILE ]; then
if kill -0 "`< $DROPBEAR_PIDFILE`" &>/dev/null; then # kill -0 == "exit code indicates if a signal may be sent"
PID="`< $DROPBEAR_PIDFILE`"
else # may not send signals to dropbear, because it's probably not running => remove pidfile
rm -f $DROPBEAR_PIDFILE
fi
fi
}
case "$1" in
start)
stat_busy "Starting $daemon_name"
get_pid
if [ -z "$PID" ]; then
printhl "Checking for hostkeys"
if [ ! -z $DROPBEAR_DSSKEY ]; then
[ ! -f $DROPBEAR_DSSKEY ] && dropbearkey -t dss -f $DROPBEAR_DSSKEY
fi;
if [ ! -z $DROPBEAR_RSAKEY ]; then
[ ! -f $DROPBEAR_RSAKEY ] && dropbearkey -t rsa -f $DROPBEAR_RSAKEY
fi;
$daemon_name $daemon_args # Make it Go Joe!
if [ $? -gt 0 ]; then
stat_die
else
add_daemon $daemon_name
stat_done
fi
else
stat_die
fi
;;
stop)
stat_busy "Stopping $daemon_name"
get_pid
[ ! -z "$PID" ] && kill $PID &> /dev/null # Be dead (please), I say!
if [ $? -gt 0 ]; then
stat_die
else
rm_daemon $daemon_name
stat_done
fi
;;
restart)
$0 stop
sleep 3
$0 start
;;
fingerprint)
stat_busy "Fingerprinting $daemon_name hostkeys"
if [ ! -z $DROPBEAR_DSSKEY ]; then
printhl "DSS/DSA Key $(dropbearkey -y -f $DROPBEAR_DSSKEY | grep Fingerprint)"
fi;
if [ ! -z $DROPBEAR_RSAKEY ]; then
printhl "RSA Key $(dropbearkey -y -f $DROPBEAR_RSAKEY | grep Fingerprint)"
fi;
;;
*)
echo "usage: $0 {start|stop|restart|fingerprint}"
esac
exit 0

View file

@ -2,13 +2,13 @@
# Maintainer: Nathan Owe <ndowens.aur at gmail dot com>
pkgname=flexget
_pkgname=FlexGet
pkgver=1.0.3288
pkgrel=2
pkgver=1.0.3367
pkgrel=1
pkgdesc="Automate downloading or processing content (torrents, podcasts, etc.)"
arch=(any)
url="http://flexget.com/"
depends=('python2' 'python2-cherrypy' 'python2-progressbar' \
'python2-pynzb' 'pyrss2gen' 'python2-sqlalchemy' 'python2-html5lib' \
'python2-pynzb' 'python2-pyrss2gen' 'python2-sqlalchemy' 'python2-html5lib' \
'python2-beautifulsoup4>=4.1' 'python2-beautifulsoup3>=3.2' 'python2-yaml' 'python2-feedparser'
'python2-flask' 'python2-requests' 'python2-certifi>=0.0.7'
'python2-chardet>=1.0.0' 'python2-dateutil')
@ -16,7 +16,7 @@ optdepends=('pytransmissionrpc: Transmission support')
makedepends=('python2-distribute')
license=('MIT')
#install=('flexget.install')
source=("http://download.flexget.com/${_pkgname}-${pkgver}.tar.gz")
source=("http://download.flexget.com/archive/${_pkgname}-${pkgver}.tar.gz")
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
@ -29,4 +29,4 @@ package() {
}
md5sums=('34e7032ac1d76a35bbfd31f6335ca138')
md5sums=('8ba1c81fb7bbb1adcfdb52f8b57119fa')

View file

@ -3,14 +3,13 @@
pkgname=ldb
pkgver=1.1.15
pkgrel=1
pkgrel=2
pkgdesc="LDAP-like embedded database, not at all LDAP standards compliant"
arch=('arm')
arch=('i686' 'x86_64')
url="http://ldb.samba.org/"
source=(http://samba.org/ftp/${pkgname}/${pkgname}-${pkgver}.tar.gz)
license=('GPLv3')
depends=('talloc' 'tevent' 'tdb')
makedepends=('python2')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
@ -20,13 +19,16 @@ build() {
export PYTHON=/usr/bin/python2
./configure --prefix=/usr \
--disable-rpath --disable-rpath-install --bundled-libraries=NONE --builtin-libraries=NONE
--disable-rpath \
--disable-rpath-install \
--bundled-libraries=NONE \
--builtin-libraries=NONE
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make
make DESTDIR=${pkgdir}/ install
}

View file

@ -1,7 +1,7 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=lio-utils
pkgver=4.1
pkgrel=8
pkgrel=9
epoch=
pkgdesc="a simple low-level configuration tool set for LIO (Target and iSCSI)"
arch=('i686' 'x86_64')
@ -23,7 +23,7 @@ md5sums=('1afad3e324d0bdde01d0383b482fac5f'
build() {
if [ ! -e "$pkgname-$pkgver.tgz" ]; then
wget "http://www.risingtidesystems.com/git/?p=$pkgname.git;a=snapshot;h=595cd43e38ebd19813b91a3db35f3a707d2ba475;sf=tgz" -O "$pkgname-$pkgver.tgz"
curl -fLC - "http://www.risingtidesystems.com/git/?p=$pkgname.git;a=snapshot;h=595cd43e38ebd19813b91a3db35f3a707d2ba475;sf=tgz" -o "$pkgname-$pkgver.tgz"
fi
bsdtar -xf "$srcdir/$pkgname-$pkgver.tgz"

View file

@ -1,7 +1,7 @@
# Contributor: plut0nium <charles(DOT)fourneau(AT)gmail(DOT)com >
# tzervo <tzervo@gmail.com>
pkgname="owfs"
pkgver=2.8p21
pkgver=2.9p0
pkgrel=1
pkgdesc="An easy way to use the powerful 1-wire system of Dallas/Maxim."
arch=('any')
@ -11,7 +11,7 @@ groups=()
# Dependencies are not mandatory to build owserver, but:
# - fuse is needed for owfs
# - swig is needed for scripting languages bindings (perl, python...)
depends=('fuse' 'swig')
depends=('fuse' 'swig' 'python')
makedepends=()
provides=('owfs')
conflicts=('owfs')
@ -21,7 +21,7 @@ options=()
install=
source=(http://downloads.sourceforge.net/sourceforge/owfs/$pkgname-$pkgver.tar.gz)
noextract=()
md5sums=('372361dc6316fcadc80029626f6c3d7f')
md5sums=('226cb9a0e842f8ccfe339f3b9226b6c7')
build() {
cd "$srcdir/$pkgname-$pkgver"

View file

@ -0,0 +1,28 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
pkgname=python2-configshell-fb
_pkgname=configshell-fb
pkgver=1.1.fb5
pkgrel=1
epoch=
pkgdesc="python framework for building simple CLI applications (free branch)"
arch=('any')
url="https://github.com/agrover/configshell-fb"
license=('AGPL3')
depends=('python2-simpleparse' 'python2-urwid')
provides=('python2-configshell')
conflicts=('python2-configshell')
options=()
source=($_pkgname-$pkgver.tar.gz::https://github.com/agrover/$_pkgname/archive/v$pkgver.tar.gz)
md5sums=('93dff95676042227b95d0abbfc134ad8')
build() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py build
}
package() {
cd "$srcdir/$_pkgname-$pkgver"
python2 setup.py install --skip-build --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et:

View file

@ -1,10 +1,7 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
plugrel=1
pkgname=python2-configshell
pkgver=1.1
pkgrel=4
pkgrel=5
epoch=
pkgdesc="python framework for building simple CLI-based applications"
arch=('any')
@ -21,7 +18,7 @@ _pkgname=configshell
build() {
if [ ! -e "$_pkgname-$pkgver.tgz" ]; then
wget "http://www.risingtidesystems.com/git/?p=$_pkgname.git;a=snapshot;h=3ba5560219d7ae8545ce825f4ba778b5c2c90893;sf=tgz" -O "$_pkgname-$pkgver.tgz"
curl -flC - "http://www.risingtidesystems.com/git/?p=$_pkgname.git;a=snapshot;h=3ba5560219d7ae8545ce825f4ba778b5c2c90893;sf=tgz" -o "$_pkgname-$pkgver.tgz"
fi
bsdtar -xf "$srcdir/$_pkgname-$pkgver.tgz"
cd "$srcdir/$_pkgname"

View file

@ -1,17 +1,13 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - python-netifaces depend is now python2-netifaces
pkgname=python2-rtslib
pkgver=2.1
pkgrel=3.1
pkgrel=4
epoch=
pkgdesc="RisingTide Systems generic SCSI target API in python"
arch=('any')
url="http://www.risingtidesystems.com/git/?p=rtslib.git;a=summary"
license=('AGPL3')
depends=('python2-ipaddr' 'python2-netifaces' 'python-configobj')
depends=('python2-ipaddr' 'python2-netifaces' 'python2-configobj')
provides=()
conflicts=()
backup=()
@ -24,7 +20,7 @@ _pkgname=rtslib
build() {
if [ ! -e "$_pkgname-$pkgver.tgz" ]; then
wget "http://www.risingtidesystems.com/git/?p=$_pkgname.git;a=snapshot;h=c4ba14ff21f68e56d6a3a227a0220d1a6b6df958;sf=tgz" -O "$_pkgname-$pkgver.tgz"
curl -fLC - "http://www.risingtidesystems.com/git/?p=$_pkgname.git;a=snapshot;h=c4ba14ff21f68e56d6a3a227a0220d1a6b6df958;sf=tgz" -o "$_pkgname-$pkgver.tgz"
fi
bsdtar -xf "$srcdir/$_pkgname-$pkgver.tgz"

View file

@ -1,6 +1,6 @@
pkgname=sabnzbd
_pkgname=SABnzbd
pkgver=0.7.10
pkgver=0.7.11
pkgrel=1
pkgdesc="A web-interface based binary newsgrabber with NZB file support"
url="http://www.sabnzbd.org"
@ -14,7 +14,7 @@ install="${pkgname}.install"
backup=("etc/conf.d/sabnzbd" "opt/${pkgname}/${pkgname}.ini")
source=("http://downloads.sourceforge.net/sabnzbdplus/${_pkgname}-${pkgver}-src.tar.gz"
"${pkgname}" "${pkgname}.desktop" "addnzb.sh" "nzb-2.png" "sab2_64.png" "x-nzb.xml" "${pkgname}.service" "${pkgname}.confd")
md5sums=('fe5d40de2b3101c53266f2a854c1793d'
md5sums=('ce87a787b6275a627ef9b37e10b13a66'
'48d60a1c626503c7fef1bc5374390513'
'f9bd5485072714b11f8c30a28024dc4d'
'69b9bcbcf67ff3e7a4cdd9f26e001341'

View file

@ -1,21 +1,27 @@
# Contributor: Johannes Dewender arch at JonnyJD dot net
# Contributor: Kevin Mihelich <kevin@plugapps.com>
plugrel=1
pkgname=targetcli
pkgver=2.0rc1
pkgrel=2
pkgrel=3
epoch=
pkgdesc="The targetcli administration shell."
arch=('any')
url="http://linux-iscsi.org/wiki/RTSadmin"
license=('AGPL3')
groups=()
depends=('python2-rtslib' 'lio-utils' 'python2-configshell')
optdepends=()
replaces=('rtsadmin')
source=("http://archlinuxarm.org/builder/src/$pkgname-$pkgver.tgz")
md5sums=('378330268aefd18858955fd5f64857cf')
backup=()
options=()
install=
source=()
md5sums=()
build() {
if [ ! -e "$pkgname-$pkgver.tgz" ]; then
curl -fLC - "http://www.risingtidesystems.com/git/?p=$pkgname.git;a=snapshot;h=95cdcb7dd669d840d14bd099d68fce4dcdc9cc64;sf=tgz" -o "$pkgname-$pkgver.tgz"
fi
bsdtar -xf "$srcdir/$pkgname-$pkgver.tgz"
cd "$srcdir/$pkgname"
python2 setup.py build
}
@ -24,3 +30,5 @@ package() {
cd "$srcdir/$pkgname"
python2 setup.py install --skip-build --root="$pkgdir/" --optimize=1
}
# vim:set ts=2 sw=2 et:

View file

@ -4,10 +4,10 @@
# Contributor: Thomas Burdick <thomas.burdick@gmail.com>
pkgname=tevent
pkgver=0.9.17
pkgrel=2
pkgver=0.9.18
pkgrel=1
pkgdesc="Tevent is an event system based on the talloc memory management library"
arch=('arm')
arch=('i686' 'x86_64')
url="https://tevent.samba.org/"
source=("http://samba.org/ftp/tevent/${pkgname}-${pkgver}.tar.gz")
license=('GPLv3')
@ -31,4 +31,4 @@ package() {
make DESTDIR=${pkgdir}/ install
}
sha256sums=('9155a85e83b6df38d251c292ca70950dd3f2ba325aad2cb8429ae0a3ee1d6b6c')
sha256sums=('5c636a0c55a7b59745bae0d8ae3900b5ea8c09bfff6001dcd95f1db9cd06ea4f')

View file

@ -1,7 +1,7 @@
# Maintainer: Angel Velasquez <angvp@archlinux.org>
# Contributor: Vsevolod Balashov <vsevolod@balashov.name>, Kevin Zuber <uKev@knet.eu>
pkgname=uwsgi
pkgver=1.3
pkgver=1.4.5
pkgrel=1
pkgdesc="a fast (pure C), self-healing, developer-friendly WSGI server"
arch=(i686 x86_64)
@ -16,7 +16,7 @@ source=(http://projects.unbit.it/downloads/$pkgname-$pkgver.tar.gz
emperor.ini
emperor.uwsgi.service
uwsgid.conf)
md5sums=('0e83c1ef1b7b01a16c87884d23030ce2'
md5sums=('391ff016fe8d8dbd83e62e9b86e2406f'
'3dd03dce734b50910b3a5e12da0fc062'
'495afaafac6da631a859ab72c5983c36'
'85a7401c62dc4834259fc27d9c0703ee'