wok rev 24501

updated drbd-utils (9.11.0 -> 9.20.2)
author Hans-G?nter Theisgen
date Sun Feb 20 09:23:47 2022 +0100 (2022-02-20)
parents d7522d21c4d3
children 0f4a853f36b4
files drbd-utils/description.txt drbd-utils/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/drbd-utils/description.txt	Sun Feb 20 09:23:47 2022 +0100
     1.3 @@ -0,0 +1,16 @@
     1.4 +DRBD is a software-based, shared-nothing, replicated storage solution
     1.5 +mirroring the content of block devices (hard disks, partitions, logical
     1.6 +volumes etc.) between hosts.
     1.7 +
     1.8 +DRBD mirrors data
     1.9 +
    1.10 +* in real time. Replication occurs continuously while applications
    1.11 +  modify the data on the device.
    1.12 +* transparently. Applications need not be aware that the data is stored
    1.13 +  on multiple hosts.
    1.14 +* synchronously or asynchronously. With synchronous mirroring,
    1.15 +  applications are notified of write completions after the writes have
    1.16 +  been carried out on all (connected) hosts. With asynchronous mirroring,
    1.17 +  applications are notified of write completions when the writes have
    1.18 +  completed locally, which usually is before they have propagated to the
    1.19 +  other hosts.
     2.1 --- a/drbd-utils/receipt	Sat Feb 19 19:01:32 2022 +0000
     2.2 +++ b/drbd-utils/receipt	Sun Feb 20 09:23:47 2022 +0100
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="drbd-utils"
     2.7 -VERSION="9.11.0"
     2.8 +VERSION="9.20.2"
     2.9  CATEGORY="system-tools"
    2.10  SHORT_DESC="DRBD is a block device to build high availability clusters."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12 @@ -9,10 +9,10 @@
    2.13  WEB_SITE="https://www.linbit.com/en/drbd-community/"
    2.14  
    2.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.16 -WGET_URL="https://www.linbit.com/downloads/drbd/utils/$TARBALL"
    2.17 +WGET_URL="https://pkg.linbit.com/downloads/drbd/utils/$TARBALL"
    2.18  
    2.19  DEPENDS="gcc83-lib-base"
    2.20 -BUILD_DEPENDS="autoconf automake flex gcc83 libxslt udev-dev"
    2.21 +BUILD_DEPENDS="flex gcc83 libxslt udev-dev"
    2.22  
    2.23  # What is the latest version available today?
    2.24  current_version()
    2.25 @@ -24,7 +24,6 @@
    2.26  # Rules to configure and make the package.
    2.27  compile_rules()
    2.28  {
    2.29 -	./autogen.sh &&
    2.30  	./configure				\
    2.31  		CC=gcc-83			\
    2.32  		CXX=g++-83			\
    2.33 @@ -33,13 +32,16 @@
    2.34  		--localstatedir=/var		\
    2.35  		--with-systemdunitdir=none	\
    2.36  		--with-prebuiltman		\
    2.37 -		$CONFIGURE_ARGS
    2.38 +		$CONFIGURE_ARGS &&
    2.39  	make &&
    2.40 -	make DESTDIR=$DESTDIR install
    2.41 +	make install DESTDIR=$DESTDIR
    2.42  }
    2.43  
    2.44  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.45  genpkg_rules()
    2.46  {
    2.47 -	cp -a $install/*	$fs/
    2.48 +	cook_copy_folders	etc
    2.49 +	cook_copy_folders	lib
    2.50 +	cook_copy_folders	sbin
    2.51 +	cook_copy_folders	var
    2.52  }