commit: f8787a0e6453d7a5c5eec07257549d4621bf3c98
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 16 05:58:10 2026 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Feb 16 06:05:24 2026 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8787a0e
app-cdr/gcdemu: Bump to 3.3.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-cdr/gcdemu/Manifest | 1 +
app-cdr/gcdemu/gcdemu-3.3.0.ebuild | 59 ++++++++++++++++++++++++++++++++++++++
2 files changed, 60 insertions(+)
diff --git a/app-cdr/gcdemu/Manifest b/app-cdr/gcdemu/Manifest
index 8baf622dbbbc..e070ab349a59 100644
--- a/app-cdr/gcdemu/Manifest
+++ b/app-cdr/gcdemu/Manifest
@@ -1 +1,2 @@
DIST gcdemu-3.2.6.tar.xz 47968 BLAKE2B
edbe8cb46ce020eec20b2740da99c35d3fd9727a1c65a5e6992de7876d55e24527c8c524e2ccc479a7ca01a0e68bff1488db2746838fc56ea29d424928c2338f
SHA512
1ed08c159f5de9ed5ad850508356998ad17f4bbb17b111ba385c913f2058daa32d8e9cd7ae04cdeacca9c7f3004f29c3c6e995cfd14a7eb60bdb32489f49515e
+DIST gcdemu-3.3.0.tar.xz 51616 BLAKE2B
837bd48b628313f8b3b1c9638e2217997dcc5543c27ef55c2e7d3f0479c409a961010a71d92e405c33ce264ab879f7ac828a5095a6e3adfb27c456c2aa1bd4b5
SHA512
6f3e9314bde41299faf6252055d6edcc7147d29c5c0dfc0efcf0e0adceb032a52b1b8b49bcaa2da56fb09e12e2b1d07541b75a9f6adb99eb95e7a9723fe0c9c4
diff --git a/app-cdr/gcdemu/gcdemu-3.3.0.ebuild
b/app-cdr/gcdemu/gcdemu-3.3.0.ebuild
new file mode 100644
index 000000000000..0db5050e688f
--- /dev/null
+++ b/app-cdr/gcdemu/gcdemu-3.3.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{11..14} )
+
+inherit cmake gnome2-utils python-single-r1 xdg-utils
+
+DESCRIPTION="Gtk+ GUI for controlling cdemu-daemon"
+HOMEPAGE="https://cdemu.sourceforge.io"
+SRC_URI="https://download.sourceforge.net/cdemu/gcdemu/${P}.tar.xz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# librsvg for pixbuf-loader
+RDEPEND="
+ ${PYTHON_DEPS}
+ app-cdr/cdemu-daemon:0/7
+ $(python_gen_cond_dep '
+ dev-python/pygobject:3[${PYTHON_USEDEP}]
+ ')
+ gnome-base/librsvg:2
+ x11-libs/gdk-pixbuf[introspection]
+ x11-libs/gtk+:3[introspection]
+ x11-libs/libnotify[introspection]
+"
+BDEPEND="
+ ${PYTHON_DEPS}
+ dev-util/desktop-file-utils
+ >=dev-util/intltool-0.21
+ sys-devel/gettext
+ virtual/pkgconfig
+"
+
+DOCS=( AUTHORS README )
+
+src_prepare() {
+ cmake_src_prepare
+ python_fix_shebang src/gcdemu
+}
+
+src_configure() {
+ local mycmakeargs=( -DPOST_INSTALL_HOOKS=OFF )
+ cmake_src_configure
+}
+
+pkg_postinst() {
+ xdg_desktop_database_update
+ gnome2_schemas_update
+}
+
+pkg_postrm() {
+ xdg_desktop_database_update
+ gnome2_schemas_update
+}