![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit ba21caa89c277cf5ee47662ec9caf26444167816 Author: Tim Biermann <tbier@posteo.de> Date: Sun Jan 9 03:49:21 2022 +0100 util-linux: disable raw (unsupported since linux 5.14), removed unneeded run dir diff --git a/util-linux/.footprint b/util-linux/.footprint index 1534df2e..ad3b290d 100644 --- a/util-linux/.footprint +++ b/util-linux/.footprint @@ -42,7 +42,6 @@ drwxr-xr-x root/root sbin/ -rwxr-xr-x root/root sbin/mkfs.cramfs -rwxr-xr-x root/root sbin/mkswap -rwxr-xr-x root/root sbin/pivot_root --rwxr-xr-x root/root sbin/raw -rwxr-xr-x root/root sbin/sfdisk -rwxr-xr-x root/root sbin/swaplabel -rwxr-xr-x root/root sbin/swapoff @@ -288,5 +287,3 @@ drwxr-xr-x root/root usr/share/man/man8/ drwxr-xr-x root/root var/ drwxr-xr-x root/root var/lib/ drwxr-xr-x root/root var/lib/libuuid/ -drwxr-xr-x root/root var/run/ -drwxr-xr-x root/root var/run/uuidd/ diff --git a/util-linux/.signature b/util-linux/.signature index c40c8e04..d154ba1f 100644 --- a/util-linux/.signature +++ b/util-linux/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeqpCqsvqVsL61wHEp+P8VFhRoVnnmGH9CVD9gPOTWUORmZxcf35NzamVXt9hh/I3ISLIcBfxwUtPfvgMj3Gx1ZAE= -SHA256 (Pkgfile) = 4bcd5e22430163c087440c81e577aee485b48561626c1bd0bdb92ba4ebaae530 -SHA256 (.footprint) = 0215b6634c6c33870c8541ea0327e0f7537999a50e236ad5f0f745ceb554fea8 +RWRJc1FUaeVeqhLdrX7QoRhXnQnP06IhVQnGZJwd/IdRIVfg969gmeKcSjxoZzrJZxr93NaQ+4ZVlLulWbnw36q4+diw3ca23gs= +SHA256 (Pkgfile) = 313d06abfaae8a657770bb9909015d05f3f2512a273efcaa1d43a6aa1d37aa4e +SHA256 (.footprint) = eef570ea79683451632929814c019d3435cb9535dff8a569114930772f377b2c SHA256 (util-linux-2.37.2.tar.xz) = 6a0764c1aae7fb607ef8a6dd2c0f6c47d5e5fd27aa08820abaad9ec14e28e9d9 SHA256 (util-linux-man-2.37.2.tar.xz) = 4a4782fecb65ea94417582bab89250ebb907e0c0f542cf1798891ffcfc81c780 diff --git a/util-linux/Pkgfile b/util-linux/Pkgfile index ac42b52f..1c01fe6d 100644 --- a/util-linux/Pkgfile +++ b/util-linux/Pkgfile @@ -5,7 +5,7 @@ name=util-linux version=2.37.2 -release=1 +release=2 source=(https://www.kernel.org/pub/linux/utils/$name/v${version:0:4}/$name-$version.tar.xz $name-man-$version.tar.xz) @@ -14,21 +14,22 @@ build() { ./configure \ --prefix=/usr \ + --enable-{write,kill} \ --disable-nls \ --disable-asciidoc \ - --disable-{login,su,sulogin,nologin,runuser} \ + --disable-{login,su,sulogin,nologin,runuser,raw} \ --disable-chfn-chsh \ - --enable-{write,raw,kill} \ --without-python make make DESTDIR=$PKG install - install -d $PKG/{etc,var/{lib/libuuid,run/uuidd}} + install -d $PKG/{etc,var/lib/libuuid} touch $PKG/etc/adjtime cp -r $SRC/man $PKG/usr/share - rm -r $PKG/usr/share/{doc,bash-completion} + prt-get isinst bash-completion || rm -r $PKG/usr/share/bash-completion + rm -r $PKG/usr/share/doc rm $PKG/sbin/{mkfs.bfs,mkfs.minix,fsck.minix} rm $PKG/usr/share/man/man8/{fsck.minix,mkfs.bfs,mkfs.minix}.8 }