mirror of
https://github.com/flatcar/scripts.git
synced 2026-02-19 06:32:25 +01:00
sys-libs/readline: Sync with Gentoo
It's from Gentoo commit c77f7eb0db8aed7234abbfeee8750cd855453154. Signed-off-by: Mathieu Tortuyaux <mtortuyaux@microsoft.com>
This commit is contained in:
parent
68e609884a
commit
4ebcbe52b0
@ -29,3 +29,5 @@ DIST readline82-012 2824 BLAKE2B 02f5351cdeaf818d809a3d40596ef7c7d83ab397e28486a
|
||||
DIST readline82-012.sig 95 BLAKE2B c9d69070ebff6b1996cfb5d1559dfdaa56d2e34770f142f9771cf8b99a68dfd55933cbcbadf589f490db4c7bdc57e43cd657d43ce72c185a46b802e61175470e SHA512 d9c0cedd012fe5a1e2236f072aefca3b1c9c66c6eedef1842f22d80c860d1e48a4f0a10711f52316e6c57d221ee32e00172002f53a3931574a03891873c0ed1e
|
||||
DIST readline82-013 5757 BLAKE2B 5af309dc331cdc2fc9c47f8a53c78731885cf70ba22c135929a30c3ab0c6c0a786d1a58b607a7aca9a6522e70aa0e9dc182ad21854d87299e48bf207ee9b02e2 SHA512 9a768946c91e4af31e872fb856b017662cdd5a12ed432d84ba13013fbac327673b655a034dbcfab52da2ff9e45eb1fdb562c3e26c224a5f4e86bff23df25175e
|
||||
DIST readline82-013.sig 95 BLAKE2B 388b707e863c6047fdc92bb29e2c172292b497f53926f6e2534016e5cdb621fd7feb9418c6edd4a693869ea61c16cb64815bf2159d6af0bb3eec5d5dc666e525 SHA512 85bd30dc816d62a2e339c95bf9f243a60a960264e14bc396b34f586afdded2cc43ecc307a7f1a2c03c7eba2d11d2f3a0028107a59c4b2bc8d6dbe77fe9fb81cd
|
||||
DIST readline83-001 1846 BLAKE2B b0953458a18b8b06b0086567abd3c9ca3efceb5e4c38271e62137e126c106b938945d956394de0e955ecea5d48f8b261a4f2f3db2ee1d2cbc3b4cfdcf213ca46 SHA512 ced50af353ed527f6ec0eac5f65261f2ed208825ec72fe2acf5f0217f34f84f33dcbf01b895325f6b33664b5a426bac99506193e2ddb6eea8c79ccad37364b89
|
||||
DIST readline83-001.sig 95 BLAKE2B 7fbf8bf9974239872fd14d8484e7425ad7f86c934183cb26aa4bbfec18f8888c07fb9ec510441258e3b89aecacbf4dff1b18e45b0972a1a667721f0053d8466b SHA512 aea02ce216da1a47035207a67d8eaa5fd07c41b74d9809bce0fd50114abd201ff78d33c74df101c70fb49fdbf4f8651252b520d2e4071f4a1423a557fd0046a0
|
||||
|
||||
@ -0,0 +1,35 @@
|
||||
https://lists.gnu.org/archive/html/bug-readline/2025-07/msg00012.html
|
||||
|
||||
*** a/input.c Fri May 2 09:29:05 2025
|
||||
--- b/input.c Tue Jul 8 15:37:13 2025
|
||||
***************
|
||||
*** 262,266 ****
|
||||
tty = fileno (rl_instream);
|
||||
|
||||
! /* Move this up here to give it first shot, but it can't set chars_avail */
|
||||
/* XXX - need rl_chars_available_hook? */
|
||||
if (rl_input_available_hook)
|
||||
--- 262,267 ----
|
||||
tty = fileno (rl_instream);
|
||||
|
||||
! /* Move this up here to give it first shot, but it can't set chars_avail,
|
||||
! so we assume a single character is available. */
|
||||
/* XXX - need rl_chars_available_hook? */
|
||||
if (rl_input_available_hook)
|
||||
***************
|
||||
*** 269,272 ****
|
||||
--- 270,275 ----
|
||||
if (result == 0)
|
||||
result = -1;
|
||||
+ else
|
||||
+ chars_avail = 1;
|
||||
}
|
||||
|
||||
***************
|
||||
*** 286,289 ****
|
||||
--- 289,293 ----
|
||||
if (result <= 0)
|
||||
return 0; /* Nothing to read. */
|
||||
+ result = -1; /* there is something, so check how many chars below */
|
||||
}
|
||||
#endif
|
||||
@ -0,0 +1,19 @@
|
||||
https://lists.gnu.org/archive/html/bug-readline/2025-07/msg00007.html
|
||||
https://gitlab.archlinux.org/archlinux/packaging/packages/readline/-/issues/1
|
||||
|
||||
*** a/display.c Fri May 2 09:20:32 2025
|
||||
--- b/display.c Sun Jul 6 17:16:28 2025
|
||||
***************
|
||||
*** 784,788 ****
|
||||
/* Useful shorthand used by rl_redisplay, update_line, rl_move_cursor_relative */
|
||||
#define INVIS_FIRST() (local_prompt_invis_chars[0])
|
||||
! #define WRAP_OFFSET(line, offset) ((line <= prompt_last_screen_line) ? local_prompt_invis_chars[line] : 0)
|
||||
|
||||
#define W_OFFSET(line, offset) ((line) == 0 ? offset : 0)
|
||||
--- 784,788 ----
|
||||
/* Useful shorthand used by rl_redisplay, update_line, rl_move_cursor_relative */
|
||||
#define INVIS_FIRST() (local_prompt_invis_chars[0])
|
||||
! #define WRAP_OFFSET(line, offset) ((line <= prompt_last_screen_line && local_prompt_invis_chars) ? local_prompt_invis_chars[line] : 0)
|
||||
|
||||
#define W_OFFSET(line, offset) ((line) == 0 ? offset : 0)
|
||||
|
||||
258
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3-r1.ebuild
vendored
Normal file
258
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3-r1.ebuild
vendored
Normal file
@ -0,0 +1,258 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# There's no standard way of versioning the point releases upstream
|
||||
# make anyway, so while this was added for RC versions, it's fine
|
||||
# in general.
|
||||
QA_PKGCONFIG_VERSION=$(ver_cut 1-2)
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/chetramey.asc
|
||||
inherit flag-o-matic multilib multilib-minimal preserve-libs toolchain-funcs verify-sig
|
||||
|
||||
# Official patches
|
||||
# See ftp://ftp.cwru.edu/pub/bash/readline-8.1-patches/
|
||||
PLEVEL="${PV##*_p}"
|
||||
MY_PV="${PV/_p*}"
|
||||
MY_PV="${MY_PV/_/-}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
MY_PATCHES=()
|
||||
|
||||
# Determine the patchlevel.
|
||||
case ${PV} in
|
||||
9999|*_alpha*|*_beta*|*_rc*)
|
||||
# Set a negative patchlevel to indicate that it's a pre-release.
|
||||
PLEVEL=-1
|
||||
;;
|
||||
*_p*)
|
||||
PLEVEL=${PV##*_p}
|
||||
;;
|
||||
*)
|
||||
PLEVEL=0
|
||||
esac
|
||||
|
||||
DESCRIPTION="Another cute console display library"
|
||||
HOMEPAGE="https://tiswww.case.edu/php/chet/readline/rltop.html https://git.savannah.gnu.org/cgit/readline.git"
|
||||
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
EGIT_REPO_URI="https://git.savannah.gnu.org/git/readline.git"
|
||||
EGIT_BRANCH=devel
|
||||
inherit git-r3
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
# It can be useful to have snapshots in the pre-release period once
|
||||
# the first alpha is out, as various bugs get reported and fixed from
|
||||
# the alpha, and the next pre-release is usually quite far away.
|
||||
#
|
||||
# i.e. if it's worth packaging the alpha, it's worth packaging a followup.
|
||||
READLINE_COMMIT="7cf2d923617659d216db3210f6247740f7dde1d8"
|
||||
SRC_URI="https://git.savannah.gnu.org/cgit/readline.git/snapshot/readline-${READLINE_COMMIT}.tar.gz -> ${P}-${READLINE_COMMIT}.tar.gz"
|
||||
S=${WORKDIR}/${PN}-${READLINE_COMMIT}
|
||||
else
|
||||
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
|
||||
SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${MY_P}.tar.gz.sig )"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
if [[ ${PLEVEL} -gt 0 ]] ; then
|
||||
# bash-5.1 -> bash51
|
||||
my_p=${PN}$(ver_rs 1-2 '' $(ver_cut 1-2))
|
||||
|
||||
patch_url=
|
||||
my_patch_index=
|
||||
|
||||
upstream_url_base="mirror://gnu/readline"
|
||||
|
||||
for ((my_patch_index=1; my_patch_index <= ${PLEVEL} ; my_patch_index++)) ; do
|
||||
printf -v mangled_patch_ver ${my_p}-%03d ${my_patch_index}
|
||||
patch_url="${upstream_url_base}/${MY_P}-patches/${mangled_patch_ver}"
|
||||
|
||||
SRC_URI+=" ${patch_url}"
|
||||
SRC_URI+=" verify-sig? ( ${patch_url}.sig )"
|
||||
|
||||
MY_PATCHES+=( "${DISTDIR}"/${mangled_patch_ver} )
|
||||
done
|
||||
|
||||
unset my_p patch_url my_patch_index upstream_url_base
|
||||
fi
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0/8" # subslot matches SONAME major
|
||||
if (( PLEVEL >= 0 )); then
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||
fi
|
||||
IUSE="static-libs +unicode utils"
|
||||
|
||||
RDEPEND=">=sys-libs/ncurses-5.9-r3:=[static-libs?,unicode(+)?,${MULTILIB_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
verify-sig? ( sec-keys/openpgp-keys-chetramey )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-5.0-no_rpath.patch
|
||||
"${FILESDIR}"/${PN}-7.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.3-iwd-crash.patch
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
local patch
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
git-r3_src_unpack
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
default
|
||||
else
|
||||
if use verify-sig; then
|
||||
verify-sig_verify_detached "${DISTDIR}/${MY_P}.tar.gz"{,.sig}
|
||||
|
||||
for patch in "${MY_PATCHES[@]}"; do
|
||||
verify-sig_verify_detached "${patch}"{,.sig}
|
||||
done
|
||||
fi
|
||||
|
||||
unpack "${MY_P}.tar.gz"
|
||||
|
||||
if [[ ${GENTOO_PATCH_VER} ]]; then
|
||||
unpack "${PN}-${GENTOO_PATCH_VER}-patches.tar.xz"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
(( PLEVEL > 0 )) && eapply -p0 "${MY_PATCHES[@]}"
|
||||
|
||||
default
|
||||
|
||||
#(( PLEVEL < 0 )) && eautoreconf
|
||||
|
||||
if use prefix && [[ ! -x "${BROOT}"/usr/bin/pkg-config ]] ; then
|
||||
# If we're bootstrapping, make a guess. We don't have pkg-config
|
||||
# around yet. bug #818103.
|
||||
# Incorrectly populating this leads to underlinked libreadline.
|
||||
local ncurses_libs
|
||||
local ncurses_libs_suffix=$(usex unicode w '')
|
||||
|
||||
ncurses_libs="-lncurses${ncurses_libs_suffix}"
|
||||
|
||||
if has_version "sys-libs/ncurses[tinfo(+)]" ; then
|
||||
ncurses_libs+=" -ltinfo${ncurses_libs_suffix}"
|
||||
fi
|
||||
else
|
||||
# Force ncurses linking, bug #71420.
|
||||
# Use pkg-config to get the right values, bug #457558.
|
||||
local ncurses_libs=$($(tc-getPKG_CONFIG) ncurses$(usex unicode w '') --libs)
|
||||
fi
|
||||
|
||||
sed -i \
|
||||
-e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \
|
||||
support/shobj-conf || die
|
||||
sed -i \
|
||||
-e "/[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
examples/rlfe/configure || die
|
||||
|
||||
# Fix building under Gentoo/FreeBSD; upstream FreeBSD deprecated
|
||||
# objformat for years, so we don't want to rely on that.
|
||||
sed -i -e '/objformat/s:if .*; then:if true; then:' support/shobj-conf || die
|
||||
|
||||
# For local readline headers
|
||||
ln -s ../.. examples/rlfe/readline || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Fix implicit decls with widechar funcs
|
||||
append-cppflags -D_GNU_SOURCE
|
||||
# https://lists.gnu.org/archive/html/bug-readline/2010-07/msg00013.html
|
||||
append-cppflags -Dxrealloc=_rl_realloc -Dxmalloc=_rl_malloc -Dxfree=_rl_free
|
||||
|
||||
# Make sure configure picks a better ar than `ar`, bug #484866
|
||||
export ac_cv_prog_AR="$(tc-getAR)"
|
||||
|
||||
# Force the test since we used sed above to force it.
|
||||
export bash_cv_termcap_lib=ncurses
|
||||
|
||||
# Control cross-compiling cases when we know the right answer.
|
||||
# In cases where the C library doesn't support wide characters, readline
|
||||
# itself won't work correctly, so forcing the answer below should be OK.
|
||||
if tc-is-cross-compiler ; then
|
||||
export bash_cv_func_sigsetjmp="present"
|
||||
export bash_cv_func_ctype_nonascii="yes"
|
||||
# bug #503312
|
||||
export bash_cv_wcwidth_broken="no"
|
||||
fi
|
||||
|
||||
# This is for rlfe, but we need to make sure LDFLAGS doesn't change
|
||||
# so we can re-use the config cache file between the two.
|
||||
append-ldflags -L.
|
||||
|
||||
multilib-minimal_src_configure
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myeconfargs=(
|
||||
--cache-file="${BUILD_DIR}"/config.cache
|
||||
--with-curses
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
|
||||
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
mkdir -p examples/rlfe || die
|
||||
cd examples/rlfe || die
|
||||
|
||||
ECONF_SOURCE="${S}"/examples/rlfe econf --cache-file="${BUILD_DIR}"/config.cache
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
emake
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
cd examples/rlfe || die
|
||||
local l
|
||||
for l in readline history ; do
|
||||
ln -s ../../shlib/lib${l}$(get_libname)* lib${l}$(get_libname) || die
|
||||
ln -s ../../lib${l}.a lib${l}.a || die
|
||||
done
|
||||
emake
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
default
|
||||
|
||||
if multilib_is_native_abi ; then
|
||||
if use utils && ! tc-is-cross-compiler; then
|
||||
dobin examples/rlfe/rlfe
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
HTML_DOCS="doc/history.html doc/readline.html doc/rluserman.html" einstalldocs
|
||||
|
||||
dodoc USAGE
|
||||
docinto ps
|
||||
dodoc doc/*.ps
|
||||
}
|
||||
pkg_preinst() {
|
||||
# bug #29865
|
||||
# Reappeared in bug #595324 with paludis so keeping this for now...
|
||||
preserve_old_lib \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
preserve_old_lib_notify \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
259
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3-r2.ebuild
vendored
Normal file
259
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3-r2.ebuild
vendored
Normal file
@ -0,0 +1,259 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# There's no standard way of versioning the point releases upstream
|
||||
# make anyway, so while this was added for RC versions, it's fine
|
||||
# in general.
|
||||
QA_PKGCONFIG_VERSION=$(ver_cut 1-2)
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/chetramey.asc
|
||||
inherit flag-o-matic multilib multilib-minimal preserve-libs toolchain-funcs verify-sig
|
||||
|
||||
# Official patches
|
||||
# See ftp://ftp.cwru.edu/pub/bash/readline-8.1-patches/
|
||||
PLEVEL="${PV##*_p}"
|
||||
MY_PV="${PV/_p*}"
|
||||
MY_PV="${MY_PV/_/-}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
MY_PATCHES=()
|
||||
|
||||
# Determine the patchlevel.
|
||||
case ${PV} in
|
||||
9999|*_alpha*|*_beta*|*_rc*)
|
||||
# Set a negative patchlevel to indicate that it's a pre-release.
|
||||
PLEVEL=-1
|
||||
;;
|
||||
*_p*)
|
||||
PLEVEL=${PV##*_p}
|
||||
;;
|
||||
*)
|
||||
PLEVEL=0
|
||||
esac
|
||||
|
||||
DESCRIPTION="Another cute console display library"
|
||||
HOMEPAGE="https://tiswww.case.edu/php/chet/readline/rltop.html https://git.savannah.gnu.org/cgit/readline.git"
|
||||
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
EGIT_REPO_URI="https://git.savannah.gnu.org/git/readline.git"
|
||||
EGIT_BRANCH=devel
|
||||
inherit git-r3
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
# It can be useful to have snapshots in the pre-release period once
|
||||
# the first alpha is out, as various bugs get reported and fixed from
|
||||
# the alpha, and the next pre-release is usually quite far away.
|
||||
#
|
||||
# i.e. if it's worth packaging the alpha, it's worth packaging a followup.
|
||||
READLINE_COMMIT="7cf2d923617659d216db3210f6247740f7dde1d8"
|
||||
SRC_URI="https://git.savannah.gnu.org/cgit/readline.git/snapshot/readline-${READLINE_COMMIT}.tar.gz -> ${P}-${READLINE_COMMIT}.tar.gz"
|
||||
S=${WORKDIR}/${PN}-${READLINE_COMMIT}
|
||||
else
|
||||
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
|
||||
SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${MY_P}.tar.gz.sig )"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
if [[ ${PLEVEL} -gt 0 ]] ; then
|
||||
# bash-5.1 -> bash51
|
||||
my_p=${PN}$(ver_rs 1-2 '' $(ver_cut 1-2))
|
||||
|
||||
patch_url=
|
||||
my_patch_index=
|
||||
|
||||
upstream_url_base="mirror://gnu/readline"
|
||||
|
||||
for ((my_patch_index=1; my_patch_index <= ${PLEVEL} ; my_patch_index++)) ; do
|
||||
printf -v mangled_patch_ver ${my_p}-%03d ${my_patch_index}
|
||||
patch_url="${upstream_url_base}/${MY_P}-patches/${mangled_patch_ver}"
|
||||
|
||||
SRC_URI+=" ${patch_url}"
|
||||
SRC_URI+=" verify-sig? ( ${patch_url}.sig )"
|
||||
|
||||
MY_PATCHES+=( "${DISTDIR}"/${mangled_patch_ver} )
|
||||
done
|
||||
|
||||
unset my_p patch_url my_patch_index upstream_url_base
|
||||
fi
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0/8" # subslot matches SONAME major
|
||||
if (( PLEVEL >= 0 )); then
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||
fi
|
||||
IUSE="static-libs +unicode utils"
|
||||
|
||||
RDEPEND=">=sys-libs/ncurses-5.9-r3:=[static-libs?,unicode(+)?,${MULTILIB_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
verify-sig? ( sec-keys/openpgp-keys-chetramey )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-5.0-no_rpath.patch
|
||||
"${FILESDIR}"/${PN}-7.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.3-iwd-crash.patch
|
||||
"${FILESDIR}"/${PN}-8.3-event_hook.patch
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
local patch
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
git-r3_src_unpack
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
default
|
||||
else
|
||||
if use verify-sig; then
|
||||
verify-sig_verify_detached "${DISTDIR}/${MY_P}.tar.gz"{,.sig}
|
||||
|
||||
for patch in "${MY_PATCHES[@]}"; do
|
||||
verify-sig_verify_detached "${patch}"{,.sig}
|
||||
done
|
||||
fi
|
||||
|
||||
unpack "${MY_P}.tar.gz"
|
||||
|
||||
if [[ ${GENTOO_PATCH_VER} ]]; then
|
||||
unpack "${PN}-${GENTOO_PATCH_VER}-patches.tar.xz"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
(( PLEVEL > 0 )) && eapply -p0 "${MY_PATCHES[@]}"
|
||||
|
||||
default
|
||||
|
||||
#(( PLEVEL < 0 )) && eautoreconf
|
||||
|
||||
if use prefix && [[ ! -x "${BROOT}"/usr/bin/pkg-config ]] ; then
|
||||
# If we're bootstrapping, make a guess. We don't have pkg-config
|
||||
# around yet. bug #818103.
|
||||
# Incorrectly populating this leads to underlinked libreadline.
|
||||
local ncurses_libs
|
||||
local ncurses_libs_suffix=$(usex unicode w '')
|
||||
|
||||
ncurses_libs="-lncurses${ncurses_libs_suffix}"
|
||||
|
||||
if has_version "sys-libs/ncurses[tinfo(+)]" ; then
|
||||
ncurses_libs+=" -ltinfo${ncurses_libs_suffix}"
|
||||
fi
|
||||
else
|
||||
# Force ncurses linking, bug #71420.
|
||||
# Use pkg-config to get the right values, bug #457558.
|
||||
local ncurses_libs=$($(tc-getPKG_CONFIG) ncurses$(usex unicode w '') --libs)
|
||||
fi
|
||||
|
||||
sed -i \
|
||||
-e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \
|
||||
support/shobj-conf || die
|
||||
sed -i \
|
||||
-e "/[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
examples/rlfe/configure || die
|
||||
|
||||
# Fix building under Gentoo/FreeBSD; upstream FreeBSD deprecated
|
||||
# objformat for years, so we don't want to rely on that.
|
||||
sed -i -e '/objformat/s:if .*; then:if true; then:' support/shobj-conf || die
|
||||
|
||||
# For local readline headers
|
||||
ln -s ../.. examples/rlfe/readline || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Fix implicit decls with widechar funcs
|
||||
append-cppflags -D_GNU_SOURCE
|
||||
# https://lists.gnu.org/archive/html/bug-readline/2010-07/msg00013.html
|
||||
append-cppflags -Dxrealloc=_rl_realloc -Dxmalloc=_rl_malloc -Dxfree=_rl_free
|
||||
|
||||
# Make sure configure picks a better ar than `ar`, bug #484866
|
||||
export ac_cv_prog_AR="$(tc-getAR)"
|
||||
|
||||
# Force the test since we used sed above to force it.
|
||||
export bash_cv_termcap_lib=ncurses
|
||||
|
||||
# Control cross-compiling cases when we know the right answer.
|
||||
# In cases where the C library doesn't support wide characters, readline
|
||||
# itself won't work correctly, so forcing the answer below should be OK.
|
||||
if tc-is-cross-compiler ; then
|
||||
export bash_cv_func_sigsetjmp="present"
|
||||
export bash_cv_func_ctype_nonascii="yes"
|
||||
# bug #503312
|
||||
export bash_cv_wcwidth_broken="no"
|
||||
fi
|
||||
|
||||
# This is for rlfe, but we need to make sure LDFLAGS doesn't change
|
||||
# so we can re-use the config cache file between the two.
|
||||
append-ldflags -L.
|
||||
|
||||
multilib-minimal_src_configure
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myeconfargs=(
|
||||
--cache-file="${BUILD_DIR}"/config.cache
|
||||
--with-curses
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
|
||||
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
mkdir -p examples/rlfe || die
|
||||
cd examples/rlfe || die
|
||||
|
||||
ECONF_SOURCE="${S}"/examples/rlfe econf --cache-file="${BUILD_DIR}"/config.cache
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
emake
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
cd examples/rlfe || die
|
||||
local l
|
||||
for l in readline history ; do
|
||||
ln -s ../../shlib/lib${l}$(get_libname)* lib${l}$(get_libname) || die
|
||||
ln -s ../../lib${l}.a lib${l}.a || die
|
||||
done
|
||||
emake
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
default
|
||||
|
||||
if multilib_is_native_abi ; then
|
||||
if use utils && ! tc-is-cross-compiler; then
|
||||
dobin examples/rlfe/rlfe
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
HTML_DOCS="doc/history.html doc/readline.html doc/rluserman.html" einstalldocs
|
||||
|
||||
dodoc USAGE
|
||||
docinto ps
|
||||
dodoc doc/*.ps
|
||||
}
|
||||
pkg_preinst() {
|
||||
# bug #29865
|
||||
# Reappeared in bug #595324 with paludis so keeping this for now...
|
||||
preserve_old_lib \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
preserve_old_lib_notify \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
@ -148,7 +148,7 @@ src_prepare() {
|
||||
-e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \
|
||||
support/shobj-conf || die
|
||||
sed -i \
|
||||
-e "/^[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
-e "/[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
examples/rlfe/configure || die
|
||||
|
||||
# Fix building under Gentoo/FreeBSD; upstream FreeBSD deprecated
|
||||
|
||||
258
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3_p1.ebuild
vendored
Normal file
258
sdk_container/src/third_party/portage-stable/sys-libs/readline/readline-8.3_p1.ebuild
vendored
Normal file
@ -0,0 +1,258 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# There's no standard way of versioning the point releases upstream
|
||||
# make anyway, so while this was added for RC versions, it's fine
|
||||
# in general.
|
||||
QA_PKGCONFIG_VERSION=$(ver_cut 1-2)
|
||||
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/chetramey.asc
|
||||
inherit flag-o-matic multilib multilib-minimal preserve-libs toolchain-funcs verify-sig
|
||||
|
||||
# Official patches
|
||||
# See ftp://ftp.cwru.edu/pub/bash/readline-8.1-patches/
|
||||
PLEVEL="${PV##*_p}"
|
||||
MY_PV="${PV/_p*}"
|
||||
MY_PV="${MY_PV/_/-}"
|
||||
MY_P="${PN}-${MY_PV}"
|
||||
MY_PATCHES=()
|
||||
|
||||
# Determine the patchlevel.
|
||||
case ${PV} in
|
||||
9999|*_alpha*|*_beta*|*_rc*)
|
||||
# Set a negative patchlevel to indicate that it's a pre-release.
|
||||
PLEVEL=-1
|
||||
;;
|
||||
*_p*)
|
||||
PLEVEL=${PV##*_p}
|
||||
;;
|
||||
*)
|
||||
PLEVEL=0
|
||||
esac
|
||||
|
||||
DESCRIPTION="Another cute console display library"
|
||||
HOMEPAGE="https://tiswww.case.edu/php/chet/readline/rltop.html https://git.savannah.gnu.org/cgit/readline.git"
|
||||
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
EGIT_REPO_URI="https://git.savannah.gnu.org/git/readline.git"
|
||||
EGIT_BRANCH=devel
|
||||
inherit git-r3
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
# It can be useful to have snapshots in the pre-release period once
|
||||
# the first alpha is out, as various bugs get reported and fixed from
|
||||
# the alpha, and the next pre-release is usually quite far away.
|
||||
#
|
||||
# i.e. if it's worth packaging the alpha, it's worth packaging a followup.
|
||||
READLINE_COMMIT="7cf2d923617659d216db3210f6247740f7dde1d8"
|
||||
SRC_URI="https://git.savannah.gnu.org/cgit/readline.git/snapshot/readline-${READLINE_COMMIT}.tar.gz -> ${P}-${READLINE_COMMIT}.tar.gz"
|
||||
S=${WORKDIR}/${PN}-${READLINE_COMMIT}
|
||||
else
|
||||
SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
|
||||
SRC_URI+=" verify-sig? ( mirror://gnu/${PN}/${MY_P}.tar.gz.sig )"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
if [[ ${PLEVEL} -gt 0 ]] ; then
|
||||
# bash-5.1 -> bash51
|
||||
my_p=${PN}$(ver_rs 1-2 '' $(ver_cut 1-2))
|
||||
|
||||
patch_url=
|
||||
my_patch_index=
|
||||
|
||||
upstream_url_base="mirror://gnu/readline"
|
||||
|
||||
for ((my_patch_index=1; my_patch_index <= ${PLEVEL} ; my_patch_index++)) ; do
|
||||
printf -v mangled_patch_ver ${my_p}-%03d ${my_patch_index}
|
||||
patch_url="${upstream_url_base}/${MY_P}-patches/${mangled_patch_ver}"
|
||||
|
||||
SRC_URI+=" ${patch_url}"
|
||||
SRC_URI+=" verify-sig? ( ${patch_url}.sig )"
|
||||
|
||||
MY_PATCHES+=( "${DISTDIR}"/${mangled_patch_ver} )
|
||||
done
|
||||
|
||||
unset my_p patch_url my_patch_index upstream_url_base
|
||||
fi
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3+"
|
||||
SLOT="0/8" # subslot matches SONAME major
|
||||
if (( PLEVEL >= 0 )); then
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
|
||||
fi
|
||||
IUSE="static-libs +unicode utils"
|
||||
|
||||
RDEPEND=">=sys-libs/ncurses-5.9-r3:=[static-libs?,unicode(+)?,${MULTILIB_USEDEP}]"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="
|
||||
virtual/pkgconfig
|
||||
verify-sig? ( sec-keys/openpgp-keys-chetramey )
|
||||
"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-5.0-no_rpath.patch
|
||||
"${FILESDIR}"/${PN}-7.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.0-headers.patch
|
||||
"${FILESDIR}"/${PN}-8.3-iwd-crash.patch
|
||||
)
|
||||
|
||||
src_unpack() {
|
||||
local patch
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
git-r3_src_unpack
|
||||
elif (( PLEVEL < 0 )) && [[ ${PV} == *_p* ]] ; then
|
||||
default
|
||||
else
|
||||
if use verify-sig; then
|
||||
verify-sig_verify_detached "${DISTDIR}/${MY_P}.tar.gz"{,.sig}
|
||||
|
||||
for patch in "${MY_PATCHES[@]}"; do
|
||||
verify-sig_verify_detached "${patch}"{,.sig}
|
||||
done
|
||||
fi
|
||||
|
||||
unpack "${MY_P}.tar.gz"
|
||||
|
||||
if [[ ${GENTOO_PATCH_VER} ]]; then
|
||||
unpack "${PN}-${GENTOO_PATCH_VER}-patches.tar.xz"
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
(( PLEVEL > 0 )) && eapply -p0 "${MY_PATCHES[@]}"
|
||||
|
||||
default
|
||||
|
||||
#(( PLEVEL < 0 )) && eautoreconf
|
||||
|
||||
if use prefix && [[ ! -x "${BROOT}"/usr/bin/pkg-config ]] ; then
|
||||
# If we're bootstrapping, make a guess. We don't have pkg-config
|
||||
# around yet. bug #818103.
|
||||
# Incorrectly populating this leads to underlinked libreadline.
|
||||
local ncurses_libs
|
||||
local ncurses_libs_suffix=$(usex unicode w '')
|
||||
|
||||
ncurses_libs="-lncurses${ncurses_libs_suffix}"
|
||||
|
||||
if has_version "sys-libs/ncurses[tinfo(+)]" ; then
|
||||
ncurses_libs+=" -ltinfo${ncurses_libs_suffix}"
|
||||
fi
|
||||
else
|
||||
# Force ncurses linking, bug #71420.
|
||||
# Use pkg-config to get the right values, bug #457558.
|
||||
local ncurses_libs=$($(tc-getPKG_CONFIG) ncurses$(usex unicode w '') --libs)
|
||||
fi
|
||||
|
||||
sed -i \
|
||||
-e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \
|
||||
support/shobj-conf || die
|
||||
sed -i \
|
||||
-e "/[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
examples/rlfe/configure || die
|
||||
|
||||
# Fix building under Gentoo/FreeBSD; upstream FreeBSD deprecated
|
||||
# objformat for years, so we don't want to rely on that.
|
||||
sed -i -e '/objformat/s:if .*; then:if true; then:' support/shobj-conf || die
|
||||
|
||||
# For local readline headers
|
||||
ln -s ../.. examples/rlfe/readline || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# Fix implicit decls with widechar funcs
|
||||
append-cppflags -D_GNU_SOURCE
|
||||
# https://lists.gnu.org/archive/html/bug-readline/2010-07/msg00013.html
|
||||
append-cppflags -Dxrealloc=_rl_realloc -Dxmalloc=_rl_malloc -Dxfree=_rl_free
|
||||
|
||||
# Make sure configure picks a better ar than `ar`, bug #484866
|
||||
export ac_cv_prog_AR="$(tc-getAR)"
|
||||
|
||||
# Force the test since we used sed above to force it.
|
||||
export bash_cv_termcap_lib=ncurses
|
||||
|
||||
# Control cross-compiling cases when we know the right answer.
|
||||
# In cases where the C library doesn't support wide characters, readline
|
||||
# itself won't work correctly, so forcing the answer below should be OK.
|
||||
if tc-is-cross-compiler ; then
|
||||
export bash_cv_func_sigsetjmp="present"
|
||||
export bash_cv_func_ctype_nonascii="yes"
|
||||
# bug #503312
|
||||
export bash_cv_wcwidth_broken="no"
|
||||
fi
|
||||
|
||||
# This is for rlfe, but we need to make sure LDFLAGS doesn't change
|
||||
# so we can re-use the config cache file between the two.
|
||||
append-ldflags -L.
|
||||
|
||||
multilib-minimal_src_configure
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local myeconfargs=(
|
||||
--cache-file="${BUILD_DIR}"/config.cache
|
||||
--with-curses
|
||||
$(use_enable static-libs static)
|
||||
)
|
||||
|
||||
ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
mkdir -p examples/rlfe || die
|
||||
cd examples/rlfe || die
|
||||
|
||||
ECONF_SOURCE="${S}"/examples/rlfe econf --cache-file="${BUILD_DIR}"/config.cache
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_compile() {
|
||||
emake
|
||||
|
||||
if use utils && multilib_is_native_abi && ! tc-is-cross-compiler ; then
|
||||
# Code is full of AC_TRY_RUN()
|
||||
cd examples/rlfe || die
|
||||
local l
|
||||
for l in readline history ; do
|
||||
ln -s ../../shlib/lib${l}$(get_libname)* lib${l}$(get_libname) || die
|
||||
ln -s ../../lib${l}.a lib${l}.a || die
|
||||
done
|
||||
emake
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install() {
|
||||
default
|
||||
|
||||
if multilib_is_native_abi ; then
|
||||
if use utils && ! tc-is-cross-compiler; then
|
||||
dobin examples/rlfe/rlfe
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
HTML_DOCS="doc/history.html doc/readline.html doc/rluserman.html" einstalldocs
|
||||
|
||||
dodoc USAGE
|
||||
docinto ps
|
||||
dodoc doc/*.ps
|
||||
}
|
||||
pkg_preinst() {
|
||||
# bug #29865
|
||||
# Reappeared in bug #595324 with paludis so keeping this for now...
|
||||
preserve_old_lib \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
preserve_old_lib_notify \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 4) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 5) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 6) \
|
||||
/$(get_libdir)/lib{history,readline}$(get_libname 7)
|
||||
}
|
||||
@ -148,7 +148,7 @@ src_prepare() {
|
||||
-e "/^SHLIB_LIBS=/s:=.*:='${ncurses_libs}':" \
|
||||
support/shobj-conf || die
|
||||
sed -i \
|
||||
-e "/^[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
-e "/[[:space:]]*LIBS=.-lncurses/s:-lncurses:${ncurses_libs}:" \
|
||||
examples/rlfe/configure || die
|
||||
|
||||
# Fix building under Gentoo/FreeBSD; upstream FreeBSD deprecated
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user