wok-next rev 20623

Our udev is old, current udev is a part of systemd; use eudev instead of (old) udev
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 25 22:28:07 2018 +0300 (2018-04-25)
parents 59f5da8f2012
children bbddbb716008
files avrdude/receipt clamtk/receipt dahdi-linux/receipt gst0-plugins-base/receipt hal/receipt ldm/receipt libftdi/receipt libnjb/receipt lirc/receipt multipath-tools/receipt pcsc-lite/receipt spacefm/receipt udisks/receipt xorg-server-light/receipt xsane/receipt
line diff
     1.1 --- a/avrdude/receipt	Wed Apr 25 15:53:47 2018 +0300
     1.2 +++ b/avrdude/receipt	Wed Apr 25 22:28:07 2018 +0300
     1.3 @@ -12,8 +12,8 @@
     1.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     1.5  WGET_URL="http://download.savannah.gnu.org/releases/$PACKAGE/$TARBALL"
     1.6  
     1.7 -BUILD_DEPENDS="$DEPENDS libusb-compat-dev libusb-dev libftdi-dev elfutils-dev \
     1.8 -readline-dev udev-dev"
     1.9 +BUILD_DEPENDS="libusb-compat-dev libusb-dev libftdi-dev elfutils-dev \
    1.10 +readline-dev"
    1.11  
    1.12  compile_rules() {
    1.13  	./configure \
    1.14 @@ -26,5 +26,5 @@
    1.15  
    1.16  genpkg_rules() {
    1.17  	copy @std
    1.18 -	DEPENDS="libftdi libusb-compat libusb readline elfutils"
    1.19 +	DEPENDS="elfutils libftdi libusb libusb-compat readline"
    1.20  }
     2.1 --- a/clamtk/receipt	Wed Apr 25 15:53:47 2018 +0300
     2.2 +++ b/clamtk/receipt	Wed Apr 25 22:28:07 2018 +0300
     2.3 @@ -1,45 +1,42 @@
     2.4 -# SliTaz package receipt.
     2.5 +# SliTaz package receipt v2.
     2.6  
     2.7  PACKAGE="clamtk"
     2.8  VERSION="4.36"
     2.9  CATEGORY="network"
    2.10 -SHORT_DESC="ClamTk is a GUI front-end for ClamAV using gtk2-perl."
    2.11 +SHORT_DESC="ClamTk is a GUI front-end for ClamAV using gtk2-perl"
    2.12  MAINTAINER="slaxemulator@gmail.com"
    2.13  LICENSE="GPL"
    2.14  WEB_SITE="http://clamtk.sourceforge.net/"
    2.15 +
    2.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    2.17  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    2.18  
    2.19 -DEPENDS="clamav perl-gtk2 perl perl-date-calc perl-file-find-rule \
    2.20 -perl-libwww-perl perl-locale-gettext perl-net-dns udev"
    2.21 -BUILD_DEPENDS=""
    2.22 +compile_rules() {
    2.23 +	install -Dm755 $src/clamtk $install/usr/bin/clamtk
    2.24  
    2.25 -# Rules to configure and make the package.
    2.26 -compile_rules()
    2.27 -{
    2.28 +	# libs
    2.29 +	PERL_VER=$(. $WOK/perl/receipt; echo $VERSION)
    2.30 +	for n in $src/lib/*; do
    2.31 +		install -Dm644 $n $install/usr/lib/perl5/$PERL_VER/ClamTk/$(basename $n)
    2.32 +	done
    2.33 +
    2.34 +	#localization
    2.35 +	for n in $src/po/*.mo; do
    2.36 +		install -Dm644 $n $install/usr/share/locale/$(basename $n .mo)/LC_MESSAGES/clamtk.mo
    2.37 +	done
    2.38 +
    2.39 +	# pixmaps
    2.40 +	install -Dm644 $src/clamtk.xpm $install/usr/share/pixmaps/clamtk.xpm
    2.41 +	install -Dm644 $src/clamtk.png $install/usr/share/pixmaps/clamtk.png
    2.42 +
    2.43 +	# menu
    2.44 +	install -Dm644 $src/clamtk.desktop $install/usr/share/applications/clamtk.desktop
    2.45 +
    2.46  	cook_pick_manpages clamtk.1.gz
    2.47  }
    2.48  
    2.49 -# Rules to gen a SliTaz package suitable for Tazpkg.
    2.50 -genpkg_rules()
    2.51 -{
    2.52 -	install -Dm755  $src/clamtk $fs/usr/bin/clamtk
    2.53 -
    2.54 -	# libs
    2.55 -	PERL_VER=$(grep ^VERSION= $WOK/perl/receipt | cut -d "=" -f2 | sed -e 's/"//g')
    2.56 -	for n in $src/lib/* ; do
    2.57 -		install -Dm644 $n $fs/usr/lib/perl5/$PERL_VER/ClamTk/`basename $n`
    2.58 -	done
    2.59 -  
    2.60 -	#localization
    2.61 -	for n in $src/po/*.mo ; do
    2.62 -		install -Dm644 $n $fs/usr/share/locale/`basename $n .mo`/LC_MESSAGES/clamtk.mo
    2.63 -	done
    2.64 -
    2.65 -	# pixmaps
    2.66 -	install -Dm644 $src/clamtk.xpm $fs/usr/share/pixmaps/clamtk.xpm
    2.67 -	install -Dm644 $src/clamtk.png $fs/usr/share/pixmaps/clamtk.png
    2.68 -  
    2.69 -	# menu
    2.70 -	install -Dm644 $src/clamtk.desktop $fs/usr/share/applications/clamtk.desktop
    2.71 +genpkg_rules() {
    2.72 +	copy @std *.mo
    2.73 +	DEPENDS="clamav perl-gtk2 perl perl-date-calc perl-file-find-rule \
    2.74 +	perl-libwww-perl perl-locale-gettext perl-net-dns eudev"
    2.75  }
     3.1 --- a/dahdi-linux/receipt	Wed Apr 25 15:53:47 2018 +0300
     3.2 +++ b/dahdi-linux/receipt	Wed Apr 25 22:28:07 2018 +0300
     3.3 @@ -46,7 +46,7 @@
     3.4  {
     3.5  	case $PACKAGE in
     3.6  	dahdi-linux)
     3.7 -		DEPENDS="linux udev"
     3.8 +		DEPENDS="linux eudev"
     3.9  		cp -a $install/* $fs
    3.10  		rm -rf $fs/usr/include
    3.11  		;;
     4.1 --- a/gst0-plugins-base/receipt	Wed Apr 25 15:53:47 2018 +0300
     4.2 +++ b/gst0-plugins-base/receipt	Wed Apr 25 22:28:07 2018 +0300
     4.3 @@ -16,7 +16,7 @@
     4.4  libtheora-dev libtheora-enc libvorbis-dev udev-dev xorg-libXv-dev \
     4.5  xorg-libXvMC-dev util-linux-uuid-dev"
     4.6  BUILD_DEPENDS="gstreamer0-dev pango-dev alsa-lib-dev libogg-dev libtheora-dev \
     4.7 -libtheora-enc libvorbis-dev udev-dev xorg-libXv-dev xorg-libXvMC-dev \
     4.8 +libtheora-enc libvorbis-dev eudev-dev xorg-libXv-dev xorg-libXvMC-dev \
     4.9  util-linux-uuid-dev cdparanoia-III-dev orc-dev gobject-introspection-dev \
    4.10  xorg-dev gettext"
    4.11  SPLIT="gst0-plugins-base-dev"
     5.1 --- a/hal/receipt	Wed Apr 25 15:53:47 2018 +0300
     5.2 +++ b/hal/receipt	Wed Apr 25 22:28:07 2018 +0300
     5.3 @@ -11,7 +11,7 @@
     5.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     5.5  WGET_URL="http://hal.freedesktop.org/releases/$TARBALL"
     5.6  
     5.7 -BUILD_DEPENDS="dbus-dev dbus-glib dbus-glib-dev udev-dev pciutils \
     5.8 +BUILD_DEPENDS="dbus-dev dbus-glib dbus-glib-dev eudev-dev pciutils \
     5.9  util-linux-blkid-dev expat-dev util-linux-uuid-dev glib-dev v4l-utils-dev"
    5.10  SPLIT="hal-scripts hal-extra hal hal-dev"
    5.11  
    5.12 @@ -73,7 +73,7 @@
    5.13  			;;
    5.14  		hal)
    5.15  			copy @std @rm
    5.16 -			DEPENDS="dbus dbus-glib slitaz-base-files udev \
    5.17 +			DEPENDS="dbus dbus-glib slitaz-base-files eudev \
    5.18  			util-linux-blkid libusb-compat"
    5.19  			;;
    5.20  		hal-dev)
     6.1 --- a/ldm/receipt	Wed Apr 25 15:53:47 2018 +0300
     6.2 +++ b/ldm/receipt	Wed Apr 25 22:28:07 2018 +0300
     6.3 @@ -10,8 +10,8 @@
     6.4  WEB_SITE="http://github.com/LemonBoy/ldm"
     6.5  WGET_URL="https://github.com/LemonBoy/ldm/tarball/v${VERSION}"
     6.6  
     6.7 -DEPENDS="udev"
     6.8 -BUILD_DEPENDS="udev-dev util-linux-mount-dev util-linux-blkid wget"
     6.9 +DEPENDS="eudev"
    6.10 +BUILD_DEPENDS="eudev-dev util-linux-mount-dev util-linux-blkid"
    6.11  
    6.12  # Rules to configure and make the package.
    6.13  compile_rules()
     7.1 --- a/libftdi/receipt	Wed Apr 25 15:53:47 2018 +0300
     7.2 +++ b/libftdi/receipt	Wed Apr 25 22:28:07 2018 +0300
     7.3 @@ -11,7 +11,7 @@
     7.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     7.5  WGET_URL="http://www.intra2net.com/en/developer/libftdi/download/$TARBALL"
     7.6  
     7.7 -BUILD_DEPENDS="slitaz-toolchain libusb-dev libusb libusb-compat-dev udev-dev"
     7.8 +BUILD_DEPENDS="slitaz-toolchain libusb-dev libusb libusb-compat-dev eudev-dev"
     7.9  SPLIT="libftdi-dev"
    7.10  
    7.11  compile_rules() {
     8.1 --- a/libnjb/receipt	Wed Apr 25 15:53:47 2018 +0300
     8.2 +++ b/libnjb/receipt	Wed Apr 25 22:28:07 2018 +0300
     8.3 @@ -11,7 +11,7 @@
     8.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
     8.5  WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
     8.6  
     8.7 -BUILD_DEPENDS="libusb-compat libusb-compat-dev libusb-dev udev-dev"
     8.8 +BUILD_DEPENDS="libusb-compat libusb-compat-dev libusb-dev eudev-dev"
     8.9  SPLIT="libnjb-dev"
    8.10  
    8.11  compile_rules() {
     9.1 --- a/lirc/receipt	Wed Apr 25 15:53:47 2018 +0300
     9.2 +++ b/lirc/receipt	Wed Apr 25 22:28:07 2018 +0300
     9.3 @@ -14,7 +14,7 @@
     9.4  
     9.5  BUILD_DEPENDS="linux linux-module-headers python libusb-dev libirman-dev \
     9.6  portaudio-dev alsa-lib-dev libusb-compat-dev util-linux-uuid-dev \
     9.7 -libftdi-dev jack-dev libxslt python3 udev-dev"
     9.8 +libftdi-dev jack-dev libxslt python3 eudev-dev"
     9.9  SPLIT="lirc-dev"
    9.10  COOKOPTS="skip-log-errors"
    9.11  
    10.1 --- a/multipath-tools/receipt	Wed Apr 25 15:53:47 2018 +0300
    10.2 +++ b/multipath-tools/receipt	Wed Apr 25 22:28:07 2018 +0300
    10.3 @@ -11,7 +11,7 @@
    10.4  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    10.5  WGET_URL="http://christophe.varoqui.free.fr/multipath-tools/$TARBALL"
    10.6  
    10.7 -BUILD_DEPENDS="libdevmapper-dev udev-dev libaio-dev readline-dev"
    10.8 +BUILD_DEPENDS="libdevmapper-dev eudev-dev libaio-dev readline-dev"
    10.9  
   10.10  compile_rules() {
   10.11  	cd $src/kpartx
   10.12 @@ -22,6 +22,6 @@
   10.13  
   10.14  genpkg_rules() {
   10.15  	copy @std
   10.16 -	DEPENDS="libdevmapper udev libaio readline"
   10.17 +	DEPENDS="libdevmapper eudev libaio readline"
   10.18  	PROVIDE="kpartx"
   10.19  }
    11.1 --- a/pcsc-lite/receipt	Wed Apr 25 15:53:47 2018 +0300
    11.2 +++ b/pcsc-lite/receipt	Wed Apr 25 22:28:07 2018 +0300
    11.3 @@ -11,7 +11,7 @@
    11.4  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    11.5  WGET_URL="https://alioth.debian.org/frs/download.php/3741/$TARBALL"
    11.6  
    11.7 -BUILD_DEPENDS="udev-dev perl libtool"
    11.8 +BUILD_DEPENDS="eudev-dev perl libtool"
    11.9  SPLIT="pcsc-lite-dev"
   11.10  
   11.11  compile_rules() {
   11.12 @@ -31,7 +31,7 @@
   11.13  	case $PACKAGE in
   11.14  		pcsc-lite)
   11.15  			copy @std
   11.16 -			DEPENDS="udev"
   11.17 +			DEPENDS="eudev"
   11.18  			SUGGESTED="ccid"
   11.19  			;;
   11.20  		*-dev)
    12.1 --- a/spacefm/receipt	Wed Apr 25 15:53:47 2018 +0300
    12.2 +++ b/spacefm/receipt	Wed Apr 25 22:28:07 2018 +0300
    12.3 @@ -12,7 +12,7 @@
    12.4  WGET_URL="$SF_MIRROR/$PACKAGE/files/$TARBALL"
    12.5  
    12.6  BUILD_DEPENDS="gtk+-dev dbus-glib-dev dbus-dev startup-notification-dev \
    12.7 -xorg-libxcb-dev xorg-xcb-util-dev expat-dev gdk-pixbuf-dev intltool udev-dev \
    12.8 +xorg-libxcb-dev xorg-xcb-util-dev expat-dev gdk-pixbuf-dev intltool eudev-dev \
    12.9  coreutils-file-special"
   12.10  
   12.11  compile_rules() {
   12.12 @@ -39,6 +39,6 @@
   12.13  genpkg_rules() {
   12.14  	copy @std @ico
   12.15  	DEPENDS="glibc-base glib util-linux-uuid xorg-libxcb xorg-xcb-util expat \
   12.16 -	gtk+ startup-notification dbus dbus-glib gdk-pixbuf udev bash udevil"
   12.17 +	gtk+ startup-notification dbus dbus-glib gdk-pixbuf eudev bash udevil"
   12.18  	TAGS="file-manager"
   12.19  }
    13.1 --- a/udisks/receipt	Wed Apr 25 15:53:47 2018 +0300
    13.2 +++ b/udisks/receipt	Wed Apr 25 22:28:07 2018 +0300
    13.3 @@ -11,7 +11,7 @@
    13.4  TARBALL="$PACKAGE-$VERSION.tar.gz"
    13.5  WGET_URL="http://hal.freedesktop.org/releases/$TARBALL"
    13.6  
    13.7 -BUILD_DEPENDS="libatasmart-dev udev-dev sg3_utils-dev libgudev-dev \
    13.8 +BUILD_DEPENDS="libatasmart-dev eudev-dev sg3_utils-dev libgudev-dev \
    13.9  polkit-dev dbus-dev dbus-glib-dev pcre-dev dbus-dev parted-dev libdevmapper-dev \
   13.10  util-linux-blkid-dev util-linux-uuid-dev intltool"
   13.11  SPLIT="udisks-dev"
   13.12 @@ -45,7 +45,7 @@
   13.13  			#methods without password.
   13.14  			cp $stuff/org.freedesktop.udisks.pkla \
   13.15  				$fs/etc/polkit-1/localauthority/90-mandatory.d
   13.16 -			DEPENDS="libatasmart udev libsgutils2 sg3_utils libgudev polkit \
   13.17 +			DEPENDS="libatasmart eudev libsgutils2 sg3_utils libgudev polkit \
   13.18  			dbus util-linux-blkid dbus-helper parted libdevmapper glib \
   13.19  			util-linux-mount lsof"
   13.20  			;;
    14.1 --- a/xorg-server-light/receipt	Wed Apr 25 15:53:47 2018 +0300
    14.2 +++ b/xorg-server-light/receipt	Wed Apr 25 22:28:07 2018 +0300
    14.3 @@ -18,7 +18,7 @@
    14.4  xorg-videoproto xorg-xtrans libgpg-error-dev freetype-dev \
    14.5  xorg-libxcb-dev xorg-libXcomposite-dev xorg-libXxf86vm-dev xorg-libXv-dev \
    14.6  bzip2-dev udev-dev"
    14.7 -BUILD_DEPENDS="xorg-util-macros xorg-pixman-dev udev-dev libgcrypt-dev \
    14.8 +BUILD_DEPENDS="xorg-util-macros xorg-pixman-dev eudev-dev libgcrypt-dev \
    14.9  xorg-fixesproto xorg-damageproto xorg-xcmiscproto xorg-xtrans \
   14.10  xorg-bigreqsproto xorg-xproto xorg-randrproto xorg-renderproto xorg-xextproto \
   14.11  xorg-inputproto xorg-kbproto xorg-fontsproto xorg-videoproto \
    15.1 --- a/xsane/receipt	Wed Apr 25 15:53:47 2018 +0300
    15.2 +++ b/xsane/receipt	Wed Apr 25 22:28:07 2018 +0300
    15.3 @@ -11,7 +11,7 @@
    15.4  WGET_URL="http://www.xsane.org/download/$TARBALL"
    15.5  
    15.6  DEPENDS="sane-backends gtk+ tiff xorg-libXdamage lcms v4l-utils libltdl"
    15.7 -BUILD_DEPENDS="gtk+-dev sane-backends-dev lcms-dev udev"
    15.8 +BUILD_DEPENDS="gtk+-dev sane-backends-dev lcms-dev eudev"
    15.9  
   15.10  # Rules to configure and make the package.
   15.11  compile_rules()