mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
dev-libs/editline: bump to 2.1.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST editline-1.17.1_p20240527.tar.gz 45801 BLAKE2B d9a529f72a6b0f5e70b12f96902405c0600c187a21a6af328763e9bfc7b47fcde862e523380ccc3fb3472f131a8f6c51adbd41c54ef4c2d681cf7f46a809f8c1 SHA512 e12221864432f2da75715737a2fe687eb5af17fb96f689c69e17a728802140ff908355017627a0e5ff9fcc2e78376a3f9bd1fdb335394140016c6e2939c5a77b
|
||||
DIST editline-2.0.0.tar.gz 57591 BLAKE2B fe2f4182a94041c853d151ebbd2cf82642299da1e46e368db94549665c1965aea8ab9b3ccb5f44540e33c56f68879c47ec1c5c18e8e4f9da276b89f1323eb7e7 SHA512 452b485054becff1510e0ea2a4fad63b1ea4514a25a9e575a049d77323230db0c8d0798a249ef4c5f1958b69d4e8c4c29a7429384c18fd5e3d4d99d0f6e2aff3
|
||||
DIST editline-2.1.0.tar.gz 58988 BLAKE2B 50ccfd9a78a5762be3567ec90d873d7c91fc2703dac1af4f7220c8c1d5fa204f1d0491913b9d76aab4bec58e834cb9d2b21075ffffc0a4c282d02c2736252644 SHA512 16fec1ac37f08e688b132d1791847318d5f7114d7b6225d57a52b4a1e194219c8ba82e79e893ea0b3258fc54ef16509afbfba55d55bac7ea865af80c11f21a60
|
||||
|
||||
43
dev-libs/editline/editline-2.1.0.ebuild
Normal file
43
dev-libs/editline/editline-2.1.0.ebuild
Normal file
@@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=9
|
||||
|
||||
inherit autotools
|
||||
|
||||
DESCRIPTION="line editing library for UNIX call compatible with the FSF readline"
|
||||
HOMEPAGE="https://troglobit.com/projects/editline/
|
||||
https://github.com/troglobit/editline/"
|
||||
|
||||
if [[ "${PV}" == *9999* ]] ; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/troglobit/${PN}"
|
||||
else
|
||||
SRC_URI="https://github.com/troglobit/${PN}/archive/${PV}.tar.gz
|
||||
-> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0/1.1.1"
|
||||
|
||||
PATCHES=( "${FILESDIR}/${PN}-1.17.1_p20240527-rename-man.patch" )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
|
||||
# To avoid collision with dev-libs/libedit we rename to man/libeditline.3
|
||||
mv man/editline.3 man/libeditline.3 || die
|
||||
|
||||
echo "" > ./test/wrap-tmux.sh || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf --disable-static
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
find "${D}" -type f -name "*.la" -delete || die
|
||||
}
|
||||
Reference in New Issue
Block a user