forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-puzzle/gnome-sudoku: Version bump to 45_alpha
Signed-off-by: Guillermo Joandet <[email protected]> Closes: gentoo#31960 Signed-off-by: Matt Turner <[email protected]>
- Loading branch information
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters