diff options
author | Guillermo Joandet <gjoandet@gmail.com> | 2023-06-29 20:25:56 -0300 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-07-19 17:03:44 -0400 |
commit | b77a5ac829edb38480094183aed1f71885fe44ec (patch) | |
tree | a1a422c1fa9f10c48c33477f501be8db209fe2d6 /games-puzzle | |
parent | sys-apps/xdg-desktop-portal-gnome: Version bump to 45_alpha (diff) | |
download | gentoo-b77a5ac829edb38480094183aed1f71885fe44ec.tar.gz gentoo-b77a5ac829edb38480094183aed1f71885fe44ec.tar.bz2 gentoo-b77a5ac829edb38480094183aed1f71885fe44ec.zip |
games-puzzle/gnome-sudoku: Version bump to 45_alpha
Signed-off-by: Guillermo Joandet <gjoandet@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31960
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'games-puzzle')
-rw-r--r-- | games-puzzle/gnome-sudoku/Manifest | 1 | ||||
-rw-r--r-- | games-puzzle/gnome-sudoku/gnome-sudoku-45_alpha.ebuild | 49 |
2 files changed, 50 insertions, 0 deletions
diff --git a/games-puzzle/gnome-sudoku/Manifest b/games-puzzle/gnome-sudoku/Manifest index 5aa94546dbbe..69a73a8bf7a5 100644 --- a/games-puzzle/gnome-sudoku/Manifest +++ b/games-puzzle/gnome-sudoku/Manifest @@ -1 +1,2 @@ DIST gnome-sudoku-44.0.tar.xz 391964 BLAKE2B f934c863dd648e606fd44db065dbd0ffb357501a24ea813fa435cee407807fc0546ee2180a53003f2e4e0eac22b394bb6ce281c393f424293305ee350fbfe961 SHA512 96c9cf66f14973d486cc7e2163ff50df442027814ab219f4a22f83a84454295d67bdb5d359613579951070a3e327855b45d039cfd1790e185e8aa92e86f81caf +DIST gnome-sudoku-45.alpha.tar.xz 392396 BLAKE2B 1b0a0918b0e82f8dc1f22674eda04d558e870e07c4147235a9700f850350222873ff70ec13b6c531fb901930d509c2e902252a99177fd6026b7b859f2de5f7eb SHA512 2b830e979394a7c474248a30721c407a695dcbffcd70deee7ce70acc84f49416aaeb064adc1962c59b3a1fb06276e4ac9cac990d68f86a40b4d00a4751a5715e diff --git a/games-puzzle/gnome-sudoku/gnome-sudoku-45_alpha.ebuild b/games-puzzle/gnome-sudoku/gnome-sudoku-45_alpha.ebuild new file mode 100644 index 000000000000..4bb3c2ccd3ac --- /dev/null +++ b/games-puzzle/gnome-sudoku/gnome-sudoku-45_alpha.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit gnome.org gnome2-utils meson vala xdg + +DESCRIPTION="Test your logic skills in this number grid puzzle" +HOMEPAGE="https://wiki.gnome.org/Apps/Sudoku https://gitlab.gnome.org/GNOME/gnome-sudoku" + +LICENSE="GPL-3+ CC-BY-SA-3.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86" + +RDEPEND=" + >=dev-libs/glib-2.40:2 + dev-libs/libgee:0.8=[introspection] + >=gui-libs/gtk-4.10.0[introspection] + >=gui-libs/libadwaita-1.4_alpha[introspection] + dev-libs/json-glib + >=dev-libs/qqwing-1.3.4:= + x11-libs/gdk-pixbuf:2[introspection] + x11-libs/pango[introspection] +" +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} + $(vala_depend) + dev-libs/appstream-glib + dev-util/itstool + >=sys-devel/gettext-0.19.8 + virtual/pkgconfig +" + +src_prepare() { + default + vala_setup + xdg_environment_reset +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_schemas_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_schemas_update +} |