# HG changeset patch # User Hans-G?nter Theisgen # Date 1578241179 -3600 # Node ID 514eef4b898eeac31a7f02bc6869523c054aaa47 # Parent 5261e289a47fca295e6152e27e4cd48dd97b667f updated buildbot (0.8.5 -> 2.5.1) diff -r 5261e289a47f -r 514eef4b898e buildbot/receipt --- a/buildbot/receipt Sun Jan 05 17:11:40 2020 +0100 +++ b/buildbot/receipt Sun Jan 05 17:19:39 2020 +0100 @@ -1,30 +1,30 @@ # SliTaz package receipt. PACKAGE="buildbot" -VERSION="0.8.5" +VERSION="2.5.1" CATEGORY="development" -SHORT_DESC="Tool to automate the compile/test cycle of code source." +TAGS="python buildtools" +SHORT_DESC="Tool to automate the compile and test cycle of source code." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" -WEB_SITE="http://buildbot.net/" +WEB_SITE="https://www.buildbot.net/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://buildbot.googlecode.com/files/$TARBALL" -TAGS="python buildtools" +WGET_URL="https://github.com/$PACKAGE/$PACKAGE/releases/download/v$VERSION/$TARBALL" -DEPENDS="python twisted" -BUILD_DEPENDS="python python-dev" +DEPENDS="py3k twisted" +BUILD_DEPENDS="py3k py3k-dev python-setuptools" # Rules to configure and make the package. compile_rules() { - python setup.py install --root=$DESTDIR - + python3 setup.py install --root=$DESTDIR cook_pick_manpages docs/buildbot.1 } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs - rm -r $fs/usr/share/man + cp -a $install/* $fs + rm -r $fs/usr/share/man }