wok rev 25637

node: set max open files limit
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Dec 25 09:36:30 2023 +0000 (4 months ago)
parents d89a2e6e8212
children a53fb9732833
files collectd/receipt ddd/receipt ecofont/receipt node/receipt obconf/receipt
line diff
     1.1 --- a/collectd/receipt	Sun Dec 24 16:48:59 2023 +0000
     1.2 +++ b/collectd/receipt	Mon Dec 25 09:36:30 2023 +0000
     1.3 @@ -9,7 +9,7 @@
     1.4  WEB_SITE="https://collectd.org"
     1.5  
     1.6  TARBALL="$PACKAGE-$VERSION.tar.bz2"
     1.7 -WGET_URL="https://collectd.org/files/$TARBALL"
     1.8 +WGET_URL="https://github.com/collectd/collectd/releases/download/$PACKAGE-$VERSION/$TARBALL"
     1.9  
    1.10  DEPENDS="flex perl rrdtool"
    1.11  BUILD_DEPENDS="rrdtool-dev slitaz-toolchain"
     2.1 --- a/ddd/receipt	Sun Dec 24 16:48:59 2023 +0000
     2.2 +++ b/ddd/receipt	Mon Dec 25 09:36:30 2023 +0000
     2.3 @@ -9,7 +9,7 @@
     2.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     2.5  WEB_SITE="http://www.gnu.org/software/ddd/"
     2.6  #WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
     2.7 -WGET_URL="https://fossies.org/linux/misc/old/$TARBALL"
     2.8 +WGET_URL="https://web.archive.org/web/20230113073930/https://ftp.gnu.org/gnu/ddd/$TARBALL"
     2.9  TAGS="debugger"
    2.10  
    2.11  DEPENDS="glibc-base gcc-lib-base ncurses freetype zlib util-linux-uuid \
     3.1 --- a/ecofont/receipt	Sun Dec 24 16:48:59 2023 +0000
     3.2 +++ b/ecofont/receipt	Mon Dec 25 09:36:30 2023 +0000
     3.3 @@ -7,8 +7,8 @@
     3.4  MAINTAINER="pascal.bellard@slitaz.org"
     3.5  LICENSE="other"
     3.6  TARBALL="spranq_eco_sans_regular.zip"
     3.7 -WEB_SITE="https://www.ecofont.eu/"
     3.8 -WGET_URL="https://www.ecofont.eu/assets/files/$TARBALL"
     3.9 +WEB_SITE="https://web.archive.org/web/20150801161738/https://www.ecofont.eu/"
    3.10 +WGET_URL="https://web.archive.org/web/20150801161739/https://www.ecofont.eu/assets/files/$TARBALL"
    3.11  
    3.12  BUILD_DEPENDS="unzip"
    3.13  
     4.1 --- a/node/receipt	Sun Dec 24 16:48:59 2023 +0000
     4.2 +++ b/node/receipt	Mon Dec 25 09:36:30 2023 +0000
     4.3 @@ -31,6 +31,7 @@
     4.4  	export	LDFLAGS="$LDFLAGS -latomic"
     4.5  	export	CC=gcc-83
     4.6  	export	CXX=g++-83
     4.7 +	ulimit -n 1048576
     4.8  
     4.9  	./configure --prefix=/usr &&
    4.10  	make &&
     5.1 --- a/obconf/receipt	Sun Dec 24 16:48:59 2023 +0000
     5.2 +++ b/obconf/receipt	Mon Dec 25 09:36:30 2023 +0000
     5.3 @@ -7,16 +7,19 @@
     5.4  MAINTAINER="pankso@slitaz.org"
     5.5  LICENSE="GPL2"
     5.6  TARBALL="$PACKAGE-$VERSION.tar.gz"
     5.7 -WEB_SITE="http://openbox.org/wiki/ObConf:About"
     5.8 -WGET_URL="http://openbox.org/dist/obconf/$TARBALL"
     5.9 +#WEB_SITE="http://openbox.org/wiki/ObConf:About"
    5.10 +WEB_SITE="https://github.com/danakj/obconf"
    5.11 +#WGET_URL="http://openbox.org/dist/obconf/$TARBALL"
    5.12 +WGET_URL="https://github.com/danakj/obconf/archive/refs/tags/release-$VERSION.tar.gz"
    5.13  TAGS="openbox"
    5.14  HOST_ARCH="i486 arm"
    5.15  
    5.16  DEPENDS="openbox gtk+ libglade shared-mime-info xorg-libXdamage \
    5.17  startup-notification slitaz-boot-scripts desktop-file-utils"
    5.18  BUILD_DEPENDS="gtk+-dev libglade-dev openbox-dev gdk-pixbuf-dev \
    5.19 -startup-notification-dev xorg-libXft-dev"
    5.20 +startup-notification-dev xorg-libXft-dev automake"
    5.21  
    5.22 +# What is the latest version available today?
    5.23  current_version()
    5.24  {
    5.25  	wget -O - http://openbox.org/wiki/Openbox:Download 2>/dev/null | \
    5.26 @@ -26,6 +29,7 @@
    5.27  # Rules to configure and make the package.
    5.28  compile_rules()
    5.29  {
    5.30 +	./bootstrap
    5.31  	msgfmt -o $src/po/ru.gmo $stuff/ru.po
    5.32  
    5.33  	./configure $CONFIGURE_ARGS &&