You are not logged in.
Is that my PKGBUILD unchanged or did you change something?
Offline
OK - cool - it builds! Here is an updated PKGBUILD for paku and libpypac-devel-svn
# Contributor: dibblethewrecker dibblethewrecker.at.jiwe.dot.org
pkgname=paku
pkgver=61
pkgrel=1
pkgdesc="A GUI alternative to pacman, it uses libpypac and pygtk"
url="http://home.gna.org/paku/"
depends=('pygtk' 'libpypac-devel-svn')
makedepends=('subversion')
source=()
md5sums=()
_svntrunk=http://svn.gna.org/svn/paku/trunk
_svnmod=paku
build() {
cd $startdir/src
svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
msg "SVN checkout done or server timeout"
msg "Starting make..."
cp -r $_svnmod $_svnmod-build
cd $_svnmod-build
python setup.py install --root=$startdir/pkg
rm -fr $startdir/src/$_svnmod-build
}
# vim:syntax=sh
# Contributor: dibblethewrecker <dibblethewrecker.at.jiwe.org>
pkgname=libpypac-devel-svn
pkgver=117
pkgrel=1
pkgdesc="Package management library framework that aims on beeing 100% compatible with Archlinux' default package manager Pacman"
url="http://home.gna.org/libpypac/"
license=""
depends=('python')
conflict=('libpypac-devel')
makedepends=('subversion')
source=()
md5sums=()
_svntrunk=http://svn.gna.org/svn/libpypac/trunk
_svnmod=libpypac
build() {
cd $startdir/src
svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
msg "SVN checkout done or server timeout"
msg "Starting make..."
cp -r $_svnmod $_svnmod-build
cd $_svnmod-build/libpypac_devel
python setup.py install --root=$startdir/pkg
rm -fr $startdir/src/$_svnmod-build
}
Easiest way to build both is with versionpkg from [community]
Simply install the script and run versionpkg instead of makepkg to checkout and build the latest code.
lunke - I ran paku but did noy use it - looks good
Offline
lunke wrote:tranquility wrote:I agree. I'm currently busy wrapping libalpm in python. It's the first time I've done such a thing but when I get it done, libalpm will have a python wrapper. Then whoever wants and is developing a front end in python/pygtk (like yours truly) will have no problem hacking a decent front end.
Really? I was thinking about the same thing. How's that coming along, far from a usefull release?
Yes and No. Yes because a lot of wrapping is still to be done, but no because I'm starting to grasp how things are done. So, expect updates.
Here they are http://bbs.archlinux.org/viewtopic.php?t=17039
Offline