wok rev 25077

updated openvswitch and openvswitch-dev (2.14.0 -> 2.17.1)
author Hans-G?nter Theisgen
date Wed Jun 15 14:50:09 2022 +0100 (22 months ago)
parents 17901f97b861
children c4b5fb10fb0e
files get-LibreOffice/stuff/get-LibreOffice openvswitch-dev/receipt openvswitch/description.txt openvswitch/receipt
line diff
     1.1 --- a/get-LibreOffice/stuff/get-LibreOffice	Tue Jun 14 08:17:07 2022 +0000
     1.2 +++ b/get-LibreOffice/stuff/get-LibreOffice	Wed Jun 15 14:50:09 2022 +0100
     1.3 @@ -8,6 +8,7 @@
     1.4  # modified by Hans-Günter Theisgen on 2019-04-07
     1.5  # modified by Hans-Günter Theisgen on 2020-03-17
     1.6  # modified by Hans-Günter Theisgen on 2020-07-24
     1.7 +# modified by Hans-Günter Theisgen on 2022-06-15
     1.8  #
     1.9  
    1.10  #	=== Initialisations ===
    1.11 @@ -46,6 +47,7 @@
    1.12  	echo "Available commandline options:
    1.13    $0
    1.14  	--version=<version>
    1.15 +	--lang=<language_package_required>
    1.16  	--root=<path_to_root>
    1.17  	--install=yes|no
    1.18  	--keep=no|yes
     2.1 --- a/openvswitch-dev/receipt	Tue Jun 14 08:17:07 2022 +0000
     2.2 +++ b/openvswitch-dev/receipt	Wed Jun 15 14:50:09 2022 +0100
     2.3 @@ -1,20 +1,19 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="openvswitch-dev"
     2.7 -VERSION="2.14.0"
     2.8 +VERSION="2.17.1"
     2.9  CATEGORY="development"
    2.10 -SHORT_DESC="Multilayer virtual switch development files."
    2.11 +SHORT_DESC="Multilayer virtual switch - development files."
    2.12  MAINTAINER="pascal.bellard@slitaz.org"
    2.13  LICENSE="Apache"
    2.14 -WEB_SITE="http://openvswitch.org/"
    2.15 +WEB_SITE="https://www.openvswitch.org/"
    2.16 +
    2.17 +DEPENDS="openvswitch pkg-config"
    2.18  WANTED="openvswitch"
    2.19  
    2.20 -DEPENDS="pkg-config openvswitch"
    2.21 -
    2.22  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.23  genpkg_rules()
    2.24  {
    2.25 -	mkdir -p $fs/usr
    2.26 -	cp -a $install/usr/lib $fs/usr
    2.27 -	cp -a $install/usr/include $fs/usr
    2.28 +	cook_copy_folders	include
    2.29 +	cook_copy_folders	lib
    2.30  }
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/openvswitch/description.txt	Wed Jun 15 14:50:09 2022 +0100
     3.3 @@ -0,0 +1,11 @@
     3.4 +Open vSwitch is a production quality, multilayer virtual switch
     3.5 +licensed under the open source Apache 2.0 license.
     3.6 +
     3.7 +It is designed to enable massive network automation through
     3.8 +programmatic extension, while still supporting standard management
     3.9 +interfaces and protocols (e.g. NetFlow, sFlow, IPFIX, RSPAN, CLI,
    3.10 +LACP, 802.1ag).
    3.11 +
    3.12 +In addition, it is designed to support distribution across multiple
    3.13 +physical servers similar to VMware's vNetwork distributed vswitch
    3.14 +or Cisco's Nexus 1000V.
     4.1 --- a/openvswitch/receipt	Tue Jun 14 08:17:07 2022 +0000
     4.2 +++ b/openvswitch/receipt	Wed Jun 15 14:50:09 2022 +0100
     4.3 @@ -1,17 +1,18 @@
     4.4  # SliTaz package receipt.
     4.5  
     4.6  PACKAGE="openvswitch"
     4.7 -VERSION="2.14.0"
     4.8 +VERSION="2.17.1"
     4.9  CATEGORY="network"
    4.10  SHORT_DESC="Multilayer virtual switch."
    4.11  MAINTAINER="pascal.bellard@slitaz.org"
    4.12  LICENSE="Apache"
    4.13 +WEB_SITE="https://www.openvswitch.org/"
    4.14 +
    4.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    4.16 -WEB_SITE="http://openvswitch.org/"
    4.17  WGET_URL="${WEB_SITE}releases/$TARBALL"
    4.18  
    4.19 -DEPENDS="libssl zlib py3k bash"
    4.20 -BUILD_DEPENDS="openssl-dev zlib-dev py3k"
    4.21 +DEPENDS="bash libssl py3k zlib"
    4.22 +BUILD_DEPENDS="openssl-dev py3k zlib-dev"
    4.23  
    4.24  # What is the latest version available today?
    4.25  current_version()
    4.26 @@ -23,22 +24,24 @@
    4.27  # Rules to configure and make the package.
    4.28  compile_rules()
    4.29  {
    4.30 -	./configure --prefix=/usr \
    4.31 -		--sysconfdir=/etc \
    4.32 -		--localstatedir=/var \
    4.33 -		--mandir=/usr/share/man \
    4.34 +	./configure			\
    4.35 +		--prefix=/usr		\
    4.36 +		--sysconfdir=/etc	\
    4.37 +		--localstatedir=/var	\
    4.38 +		--mandir=/usr/share/man	\
    4.39  		$CONFIGURE_ARGS &&
    4.40  	make &&
    4.41 -	make DESTDIR=$DESTDIR install
    4.42 +	make install DESTDIR=$DESTDIR
    4.43  }
    4.44  
    4.45  # Rules to gen a SliTaz package suitable for Tazpkg.
    4.46  genpkg_rules()
    4.47  {
    4.48  	mkdir -p $fs/usr
    4.49 -	cp -a $install/etc $fs/
    4.50 -	cp -a $install/var $fs/
    4.51 -	cp -a $install/usr/bin $fs/usr/
    4.52 -	cp -a $install/usr/sbin $fs/usr/
    4.53 -	cp -a $install/usr/share $fs/usr/
    4.54 +
    4.55 +	cp -a $install/etc		$fs
    4.56 +	cp -a $install/var		$fs
    4.57 +	cp -a $install/usr/bin		$fs/usr
    4.58 +	cp -a $install/usr/sbin		$fs/usr
    4.59 +	cp -a $install/usr/share	$fs/usr
    4.60  }