mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
dev-build/remake: add 4.3.1.1.6
Just filter LTO for now, it's fixed upstream in make/gnulib, wait until remake picks up that fix on its next rebase. Closes: https://bugs.gentoo.org/830810 Closes: https://bugs.gentoo.org/863827 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
9747881549
commit
634511769e
@ -1 +1,2 @@
|
||||
DIST remake-4.3+dbg-1.5.tar.gz 2546056 BLAKE2B c5c1b254d0533e0d9787d408f79e8aba93cab5185de76519dabef7ddca5c9d2021671099f9ff80df345732552f859ce31d1131b89cd56fb185bae4cee676b412 SHA512 90aa9674ed5d88b72fda5a99a103d0b1a643d10b18c1de1186478b026f6b4da73628bff75a180df880157b5cbfff1bfd782f4ee81880e0635d79113fcc0f7497
|
||||
DIST remake-4.3+dbg-1.6.tar.gz 2596911 BLAKE2B 4d4e90bc9b6e0c36eea3b8b2c419ea1af8e37b3dc575969fe853f683da983e0ea73a0a3668adf448dfdf4b2dffc079f197fcb66139cac382df551cf34ea4d813 SHA512 d4f0ed0afa0bebf49e0cf6ef3fcfb0915fd457477424b6ffb5f06c6d2faf8d79bbdc9119a736c24c0787b23ceaeccf072e03a654dc01d05c08c88e030ae33539
|
||||
|
||||
43
dev-build/remake/remake-4.3.1.1.6.ebuild
Normal file
43
dev-build/remake/remake-4.3.1.1.6.ebuild
Normal file
@ -0,0 +1,43 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_MAKE_BASE=$(ver_cut 1-2)
|
||||
MY_REMAKE_PATCH=$(ver_cut 4-)
|
||||
MY_P="${PN}-${MY_MAKE_BASE}+dbg-${MY_REMAKE_PATCH}"
|
||||
|
||||
inherit flag-o-matic
|
||||
|
||||
DESCRIPTION="Patched version of GNU Make with improved error reporting, tracing and debugging"
|
||||
HOMEPAGE="http://bashdb.sourceforge.net/remake/"
|
||||
SRC_URI="https://github.com/rocky/remake/releases/download/${MY_P}/${MY_P}.tar.gz"
|
||||
S="${WORKDIR}"/${MY_P}
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
|
||||
IUSE="guile readline"
|
||||
|
||||
DEPEND="readline? ( sys-libs/readline:0= )"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
guile? ( >=dev-scheme/guile-1.8:= )
|
||||
"
|
||||
BDEPEND="guile? ( >=dev-scheme/guile-1.8 )"
|
||||
|
||||
src_configure() {
|
||||
# Fixed in upstream make/gnulib, just not yet propagated into remake (bug #863827)
|
||||
filter-lto
|
||||
|
||||
use readline || export vl_cv_lib_readline=no
|
||||
econf $(use_with guile)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# delete files GNU make owns and remake doesn't care about.
|
||||
rm -r "${ED}"/usr/include || die
|
||||
rm "${ED}"/usr/share/info/make.info* || die
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user