# HG changeset patch # User Hans-G?nter Theisgen # Date 1645345427 -3600 # Node ID c444e37b547d2b8cd12fe8d593c0423e308690c9 # Parent d7522d21c4d3882a45633449394d177abb57a93f updated drbd-utils (9.11.0 -> 9.20.2) diff -r d7522d21c4d3 -r c444e37b547d drbd-utils/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/drbd-utils/description.txt Sun Feb 20 09:23:47 2022 +0100 @@ -0,0 +1,16 @@ +DRBD is a software-based, shared-nothing, replicated storage solution +mirroring the content of block devices (hard disks, partitions, logical +volumes etc.) between hosts. + +DRBD mirrors data + +* in real time. Replication occurs continuously while applications + modify the data on the device. +* transparently. Applications need not be aware that the data is stored + on multiple hosts. +* synchronously or asynchronously. With synchronous mirroring, + applications are notified of write completions after the writes have + been carried out on all (connected) hosts. With asynchronous mirroring, + applications are notified of write completions when the writes have + completed locally, which usually is before they have propagated to the + other hosts. diff -r d7522d21c4d3 -r c444e37b547d drbd-utils/receipt --- a/drbd-utils/receipt Sat Feb 19 19:01:32 2022 +0000 +++ b/drbd-utils/receipt Sun Feb 20 09:23:47 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="drbd-utils" -VERSION="9.11.0" +VERSION="9.20.2" CATEGORY="system-tools" SHORT_DESC="DRBD is a block device to build high availability clusters." MAINTAINER="pascal.bellard@slitaz.org" @@ -9,10 +9,10 @@ WEB_SITE="https://www.linbit.com/en/drbd-community/" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="https://www.linbit.com/downloads/drbd/utils/$TARBALL" +WGET_URL="https://pkg.linbit.com/downloads/drbd/utils/$TARBALL" DEPENDS="gcc83-lib-base" -BUILD_DEPENDS="autoconf automake flex gcc83 libxslt udev-dev" +BUILD_DEPENDS="flex gcc83 libxslt udev-dev" # What is the latest version available today? current_version() @@ -24,7 +24,6 @@ # Rules to configure and make the package. compile_rules() { - ./autogen.sh && ./configure \ CC=gcc-83 \ CXX=g++-83 \ @@ -33,13 +32,16 @@ --localstatedir=/var \ --with-systemdunitdir=none \ --with-prebuiltman \ - $CONFIGURE_ARGS + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/* $fs/ + cook_copy_folders etc + cook_copy_folders lib + cook_copy_folders sbin + cook_copy_folders var }