app-cdr/cdemu: Bump to 3.3.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-02-16 06:57:27 +01:00
parent a10ee30e21
commit af0bd1b7eb
2 changed files with 66 additions and 0 deletions
+1
View File
@@ -1 +1,2 @@
DIST cdemu-client-3.2.5.tar.xz 41596 BLAKE2B 5b3e5a16f9daa0ab2c670a8cba54af380894e668c87a64a5e2126777d6725420d9bb7f41290ca69eba12e20db97b00cc74aea3df9694ef331e7a571b913820b1 SHA512 d143705607507503cd7828f02e7a0fbe5d33f15e28ce61f453567d8635ed863c5b508ed2b1964f034d846ecdea752bd3dfb565350174db3e06cf7d29c2f828bf
DIST cdemu-client-3.3.0.tar.xz 47820 BLAKE2B f4420454e87782b11e8a6d253acc495e1d4cc0038197a2541df24a6f772ec5500d1c6cf898dccaed0183f72fb5d6bbe1add235ca535e2a4030593cbeb630ec96 SHA512 c90ae661fb121e5333d70fcf3e93a7958eb32d3982f7fc9c709b2b7a133597b2c78167b892a8bb9b6dc86ae6af1338e1d2601c07d54976907fba0be77b71eb30
+65
View File
@@ -0,0 +1,65 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..14} )
inherit bash-completion-r1 cmake python-single-r1 xdg-utils
MY_P=cdemu-client-${PV}
DESCRIPTION="Command-line tool for controlling cdemu-daemon"
HOMEPAGE="https://cdemu.sourceforge.io"
SRC_URI="https://download.sourceforge.net/cdemu/cdemu-client/${MY_P}.tar.xz"
S=${WORKDIR}/${MY_P}
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+cdemu-daemon"
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 )
"
BDEPEND="
${PYTHON_DEPS}
dev-util/desktop-file-utils
>=dev-util/intltool-0.21
>=sys-devel/gettext-0.18
virtual/pkgconfig
"
DOCS=( AUTHORS README )
src_prepare() {
cmake_src_prepare
python_fix_shebang src/cdemu
}
src_configure() {
local mycmakeargs=(
-DPOST_INSTALL_HOOKS=OFF
# requires bash-completion as BDEPEND, better install it manually
-DENABLE_BASH_COMPLETION=OFF
)
cmake_src_configure
}
src_install() {
cmake_src_install
newbashcomp data/cdemu-bash-completion.sh cdemu
}
pkg_postinst() {
xdg_desktop_database_update
}
pkg_postrm() {
xdg_desktop_database_update
}