Install this version:
emerge -a =dev-vcs/git-merge-changelog-99999999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =dev-vcs/git-merge-changelog-99999999
Or alternatively:
emerge --autounmask-write -a =dev-vcs/git-merge-changelog-99999999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 99999999 | 8 | 0 |
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
EGIT_REPO_URI="git://git.savannah.gnu.org/gnulib.git
https://git.savannah.gnu.org/r/gnulib.git"
inherit git-r3
DESCRIPTION="Git merge driver for GNU style ChangeLog files"
HOMEPAGE="https://www.gnu.org/software/gnulib/"
LICENSE="GPL-3+"
SLOT="0"
src_prepare() {
default
S="${WORKDIR}/${PN}"
./gnulib-tool --create-testdir --without-tests --dir="${S}" ${PN} || die
cd "${S}" || die
sed -n '/README/{h;:x;n;/^#/!{H;bx};g;s/\n*$//;s:/usr/local:/usr:g;p;q}' \
gllib/git-merge-changelog.c >README || die
}