media-radio/adifmerg: add 31_p20250112

Signed-off-by: Banana <mail@bananas-playground.net>
Part-of: https://github.com/gentoo/gentoo/pull/45158
Closes: https://github.com/gentoo/gentoo/pull/45158
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
This commit is contained in:
Banana
2026-01-06 10:44:30 +01:00
committed by Thomas Beierlein
parent 043d7b5bfc
commit 708be71c52
2 changed files with 30 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST adifmerg-31_p20250112.tar.gz 74371 BLAKE2B b561d0b4f69ecf51352dc2911d57cedf2cee52885f406890c4fff032adfbd52913ae507764ce77146619cd03fd0788f6f246a6af8bbc84166355f092f273ca4c SHA512 81b641f5e22f4e0db664ec60fec98bf6a9f3844615bbdabd18c2eff56fab0127cbdd121de55371b86923f9f8a890d8f522f87c671b7016c9d2da32c74542cf66
DIST adifmerg31.tgz 47460 BLAKE2B 14bf6a85ba5a22972e1cf1fae068a4eaa92bf0e205904c3e11bcbe83aab800f2da02d9dc4835e75189b49590c005aa3412f19170b8f6abb39d84000d006f7384 SHA512 851a90d4269d79359eb76168d67f980fcbc551ee8ef221e4caaf9ba6fde756aebe03d80670b7cb5e91e20aa5ef81d772ddaedc204b3cf57cfdbb62d593575fa7

View File

@@ -0,0 +1,29 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A small conversion and check utility for ADIF files"
HOMEPAGE="https://github.com/oh7bf/adifmerg"
COMMIT="4b5dec2c9437e2b7a9a31a97f80c11216f8790d2"
SRC_URI="https://github.com/oh7bf/adifmerg/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${PN}-${COMMIT}"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="examples"
RDEPEND="dev-lang/perl"
src_install() {
dobin adifmerg
doman doc/adifmerg.1
dodoc CHANGELOG README.md
if use examples; then
insinto /usr/share/${PN}
doins -r script
fi
}