# HG changeset patch # User Hans-G?nter Theisgen # Date 1659454524 -3600 # Node ID a2287a3e06b68d01be9b102fc387fc505a321aad # Parent 1730124f1afa904f72b30f6423e4aeaeda96d5db updated vzctl (3.0.25.1 -> 4.11.1) diff -r 1730124f1afa -r a2287a3e06b6 vzctl/receipt --- a/vzctl/receipt Tue Aug 02 15:22:50 2022 +0100 +++ b/vzctl/receipt Tue Aug 02 16:35:24 2022 +0100 @@ -1,16 +1,17 @@ # SliTaz package receipt. PACKAGE="vzctl" -VERSION="3.0.25.1" +VERSION="4.11.1" CATEGORY="system-tools" -SHORT_DESC="OpenVZ containers control utility" +SHORT_DESC="OpenVZ containers control utility." MAINTAINER="erjo@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://wiki.openvz.org/Main_Page" + TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://openvz.livejournal.com/" -WGET_URL="http://download.openvz.org/utils/${PACKAGE}/${VERSION}/src/${TARBALL}" +WGET_URL="https://download.openvz.org/utils/${PACKAGE}/${VERSION}/src/${TARBALL}" -DEPENDS="udev bash procmail bridge-utils logrotate tar gzip" +DEPENDS="bash bridge-utils gzip logrotate procmail tar udev" BUILD_DEPENDS="sed" # What is the latest version available today? @@ -23,49 +24,54 @@ # Rules to configure and make the package. compile_rules() { - cd $src - # Apply patches - while read patch_file; do - if [ -f done.$patch_file ]; then + while read patch_file + do + if [ -f done.$patch_file ] + then echo "Skipping $patch_file" continue fi echo "Apply $patch_file" patch -p1 < $stuff/$patch_file || return 1 touch done.$patch_file - done <