diff options
author | Fredrik Rinnestam <fredrik@crux.nu> | 2016-09-19 19:25:26 +0200 |
---|---|---|
committer | Fredrik Rinnestam <fredrik@crux.nu> | 2016-09-19 19:25:26 +0200 |
commit | aeba6745f5567c9c30c7d46fbb8acba50b1f9d88 (patch) | |
tree | ab5c0044b3d1de005867ae79cd05e52e9fc1644d /readline | |
parent | 369433dc32b930f1296e04a4585d135123d8fa80 (diff) | |
download | core-aeba6745f5567c9c30c7d46fbb8acba50b1f9d88.tar.gz core-aeba6745f5567c9c30c7d46fbb8acba50b1f9d88.tar.xz |
Revert "readline: updated to 7.0. Removed old workaround symlinks"
This reverts commit 19329fe8336edfdead6276b4b0432ca9562f6a27.
Diffstat (limited to 'readline')
-rw-r--r-- | readline/.footprint | 2 | ||||
-rw-r--r-- | readline/.md5sum | 2 | ||||
-rw-r--r-- | readline/.signature | 8 | ||||
-rw-r--r-- | readline/Pkgfile | 8 |
4 files changed, 13 insertions, 7 deletions
diff --git a/readline/.footprint b/readline/.footprint index a589ebad..5827f0c9 100644 --- a/readline/.footprint +++ b/readline/.footprint @@ -1,8 +1,10 @@ drwxr-xr-x root/root etc/ -rw-r--r-- root/root etc/inputrc drwxr-xr-x root/root lib/ +lrwxrwxrwx root/root lib/libhistory.so.6 -> libhistory.so.7.0 lrwxrwxrwx root/root lib/libhistory.so.7 -> libhistory.so.7.0 -r-xr-xr-x root/root lib/libhistory.so.7.0 +lrwxrwxrwx root/root lib/libreadline.so.6 -> libreadline.so.7.0 lrwxrwxrwx root/root lib/libreadline.so.7 -> libreadline.so.7.0 -r-xr-xr-x root/root lib/libreadline.so.7.0 drwxr-xr-x root/root usr/ diff --git a/readline/.md5sum b/readline/.md5sum index a9ba7054..82c2f211 100644 --- a/readline/.md5sum +++ b/readline/.md5sum @@ -1,2 +1,2 @@ 553cf04fdeec54dca12062864c3ffba3 inputrc -205b03a87fc83dab653b628c59b9fc91 readline-7.0.tar.gz +28ce5630b43fe24833392acc7c4dc863 readline-7.0-rc2.tar.gz diff --git a/readline/.signature b/readline/.signature index fe26f53e..ffb04a6c 100644 --- a/readline/.signature +++ b/readline/.signature @@ -1,6 +1,6 @@ untrusted comment: verify with /etc/ports/core.pub -RWRJc1FUaeVeqjkIp30X9YYftWPPn2VnNElf9tdjDMj6YFen9ghgz15vdvYM8dcv3/FORQC3+18UmQ5vutXo9TiAhKdRSkVjAgM= -SHA256 (Pkgfile) = ade65949a0beeb997922f57a3c57590c0015d7e19399dee202cf2c72b3233048 -SHA256 (.footprint) = 8991ab5f5f6a696fcb05a266f7a74f28f24845f7ca84886e9b7f3cd47571052a -SHA256 (readline-7.0.tar.gz) = 750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334 +RWRJc1FUaeVeqkorQrDERqEl7vS3lYoOAQGQ+GPdLT9NU2rVsTQhN+6D8ZZC68P1tXDXaK9xA0SIi4mehYmrMgDUw5Swjz2yagU= +SHA256 (Pkgfile) = a71b9b4b7660478fcdc49e9393b2090a43e917a9d0029f5df58bdbe38710ac26 +SHA256 (.footprint) = 96f930304c7bfe4504ce018b5b63c579fe31a7047cbf5fe8aa43e25b68876c57 +SHA256 (readline-7.0-rc2.tar.gz) = 80c6e492f813bb8886e6342e294fd67362973fbb4fe281b31dcd25e22d872fe8 SHA256 (inputrc) = 9119a95d4b1407e3c4ad2b6fb92e840353e65ae9d7ec77fed75cab293cb81bcb diff --git a/readline/Pkgfile b/readline/Pkgfile index 0369a76c..c9b576dc 100644 --- a/readline/Pkgfile +++ b/readline/Pkgfile @@ -4,9 +4,9 @@ # Depends on: ncurses name=readline -version=7.0 +version=7.0-rc2 release=1 -source=(http://ftp.gnu.org/gnu/readline/$name-$version.tar.gz \ +source=(http://ftp.gnu.org/gnu/bash/$name-$version.tar.gz \ inputrc) build() { @@ -21,6 +21,10 @@ build() { ln -sf ../../lib/libhistory.so.${version:0:3} $PKG/usr/lib/libhistory.so ln -sf ../../lib/libreadline.so.${version:0:3} $PKG/usr/lib/libreadline.so + # Compatibility symlinks, remove later + ln -s libreadline.so.7.0 $PKG/lib/libreadline.so.6 + ln -s libhistory.so.7.0 $PKG/lib/libhistory.so.6 + install -D -m 644 $SRC/inputrc $PKG/etc/inputrc rm -r $PKG/usr/share/{doc,info} } |