add media-sound/sacd-extract package; bump net-misc/netplan version 0.106; bump sys-kernel/hardened-kernel version 6.1.13

This commit is contained in:
2023-02-24 17:15:33 +03:00
parent 438d57b433
commit d329d62aae
8 changed files with 70 additions and 148 deletions

View File

@@ -0,0 +1,2 @@
DIST sacd-ripper-0.3.9.3.tar.gz 4719544 BLAKE2B 889a57225471b85e37c4f0baf6f9cece7aebc2464485488e440033ebcccf559472ac9f35106569499513f60cf02dab58dd82ac956324c08d70614bbc6ccb8159 SHA512 60b051950eb4aa8ad2acba99212741c50be6e7634de22482f1c0f47943a49cd37a041fc38a62d87a78f6dffa0bb1b6a0aec6af6a1b497082b28b4560fbb32b45
EBUILD sacd-extract-0.3.9.3.ebuild 766 BLAKE2B 7f18571fd0a6c950b0b7ac936e733e3b05a7a8301554a896fce048a5f0e5695f8b2afef6933baf2028106414b9fb15aa7630d0b00c0fbe3e7d4e69d9af761ed4 SHA512 3058e70bd7570d7fe4e5027bc672f9379fd4bac5001cc683a527416030f1ccd8f0dabe80dee2082d97de79f9fe6340e5050086ea9764950b9f89dfe6399c6158

View File

@@ -0,0 +1,33 @@
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PN=sacd-ripper
P=${PN}-${PV}
inherit cmake
DESCRIPTION="SACD ripping software using a PS3"
HOMEPAGE="https://github.com/sacd-ripper/sacd-ripper"
if [[ ${PV} == *9999 ]] ; then
EGIT_REPO_URI="https://github.com/sacd-ripper/${PN}.git"
inherit git-r3
else
SRC_URI="https://github.com/sacd-ripper/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
fi
LICENSE="GPL-2.0"
SLOT="0"
DEPEND="dev-libs/libxml2"
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/${P}/tools/sacd_extract"
src_install(){
dobin "${S}"_build/sacd_extract
}