readline-32: 8.1.1 -> 8.1.2

This commit is contained in:
Tim Biermann 2022-01-11 12:22:58 +01:00
parent bb3956a744
commit 80943e7d25
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 16 additions and 16 deletions

View File

@ -1,8 +1,8 @@
drwxr-xr-x root/root lib32/ drwxr-xr-x root/root lib32/
lrwxrwxrwx root/root lib32/libhistory.so.8 -> libhistory.so.8.1
-rwxr-xr-x root/root lib32/libhistory.so.8.1 -rwxr-xr-x root/root lib32/libhistory.so.8.1
lrwxrwxrwx root/root lib32/libreadline.so.8 -> libreadline.so.8.1 lrwxrwxrwx root/root lib32/libhistory.so.8 -> libhistory.so.8.1
-rwxr-xr-x root/root lib32/libreadline.so.8.1 -rwxr-xr-x root/root lib32/libreadline.so.8.1
lrwxrwxrwx root/root lib32/libreadline.so.8 -> libreadline.so.8.1
drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/lib32/ drwxr-xr-x root/root usr/lib32/
-rw-r--r-- root/root usr/lib32/libhistory.a -rw-r--r-- root/root usr/lib32/libhistory.a

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/compat-32.pub untrusted comment: verify with /etc/ports/compat-32.pub
RWSwxGo/zH7eXck+FqaUxwusVfTShVKedhvfNfNIpNvXq5vEj49b4R/tRGFXmp839ODggk2Xc/Gll0YjX3VTrSFPvPVOvLq/9AA= RWSwxGo/zH7eXVM+ZInlrb2bGQmjQ8FmOTh5FB2U1GE/D3ApQ65Y1z1zFQ9y6++UC8lKvxa39rTUUHUqqq+GGqRs3X3FGQu0Tww=
SHA256 (Pkgfile) = 30fbc915171a868ef7ada0be9bdc5a7122f66a8ce38e96b4a127788c26cf794a SHA256 (Pkgfile) = ac6743eb3154f6a441e6056f6e255ffabc8215519c7fc9e03162716b91768716
SHA256 (.footprint) = 609a24fac213a865229dc60c4a5a38f372b9bb6b2697669c2c4de52dca8089eb SHA256 (.footprint) = 751df7cc7364353ba6cc9e48dc5fd4fc605e761bd8b0e2ba10f276a376ef094f
SHA256 (readline-8.1.tar.gz) = f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02 SHA256 (readline-8.1.tar.gz) = f8ceb4ee131e3232226a17f51b164afc46cd0b9e6cef344be87c65962cb82b02

View File

@ -1,24 +1,24 @@
# Description: Lets users edit command lines as they are typed in # Description: Lets users edit command lines as they are typed in
# URL: https://tiswww.case.edu/php/chet/readline/rltop.html # URL: https://tiswww.case.edu/php/chet/readline/rltop.html
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
# Depends on: ncurses-32 # Depends on: ncurses-32
name=readline-32 name=readline-32
version=8.1.1 version=8.1.2
release=1 release=1
source=(https://ftp.gnu.org/gnu/${name%-*}/${name%-*}-${version:0:3}.tar.gz) source=(https://ftp.gnu.org/gnu/${name%-*}/${name%-*}-${version:0:3}.tar.gz)
build() { build() {
cd ${name%-*}-${version:0:3} cd ${name%-*}-${version:0:3}
./configure --prefix=/usr --libdir=/usr/lib32 ./configure --prefix=/usr --libdir=/usr/lib32
make -j1 SHLIB_LIBS=-lncurses make -j1 SHLIB_LIBS=-lncurses
make -j1 DESTDIR=$PKG install make -j1 DESTDIR=$PKG install
install -d $PKG/lib32 install -d $PKG/lib32
mv $PKG/usr/lib32/lib*.so.* $PKG/lib32 mv $PKG/usr/lib32/lib*.so.* $PKG/lib32
ln -sf ../../lib32/libhistory.so.${version:0:3} $PKG/usr/lib32/libhistory.so ln -sf ../../lib32/libhistory.so.${version:0:3} $PKG/usr/lib32/libhistory.so
ln -sf ../../lib32/libreadline.so.${version:0:3} $PKG/usr/lib32/libreadline.so ln -sf ../../lib32/libreadline.so.${version:0:3} $PKG/usr/lib32/libreadline.so
rm -r $PKG/usr/{bin,include,share/man,share} rm -r $PKG/usr/{bin,include,share/man,share}
} }