gui-libs/libadwaita: Drop version 1.5.2

Signed-off-by: Lukas Schmelting <lschmelting@posteo.com>
Part-of: https://github.com/gentoo/gentoo/pull/42234
Closes: https://github.com/gentoo/gentoo/pull/42234
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Lukas Schmelting 2025-05-24 00:28:23 +02:00 committed by Sam James
parent 23bbcc04d9
commit fc95e076c6
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 69 deletions

View File

@ -1,4 +1,3 @@
DIST libadwaita-1.5.2.tar.xz 4456060 BLAKE2B 671f169f645a2ff06d707bd35c30a839b20d1dd37f0a3c8f1ea5970b7a4692989a36e4b770f544a65f6a658f16bf3682209f2b7f9f49985d5dee24d518ae74db SHA512 34655efe515711e131e5c1c5e1c16c40b3fa76d84ecda2d9c529b060ef2801858f963fd647d9be7e736d3ff01aca7bdc983e076163c4740a928e234ef4aee453
DIST libadwaita-1.5.3.tar.xz 4457392 BLAKE2B f852f94bb61424aae7aef1219b7354d90bb41175ea0cb3e55fa50609a0b5c6ab8c8a689819dadb0d4f55471655549542142412fae9a5ff18eeea04c0da5b1541 SHA512 0b92cd9376a97c1683248a39eb42f1ddfe8b1dcb0f013e8c8b8d63e0d6bafebd63e429353471d378d9fb80db17627b407d0e789794e45c665a56b1536ff6afc0
DIST libadwaita-1.5.5.tar.xz 4460668 BLAKE2B 30174e5b911b7583505f4103d4586e3cfa4f9d6cef6518f3fe5223700a4a520ce8c99561bfe54ba1b2f9bb4471b18896e7f7a3e4fb8a5bcdb2a15d5faa410e6c SHA512 0474b5152c42e114b78025e0cf0cee56d8195e5d5b69901149510165feef6d41772c334460fc07a9146254009e9419213ab6b6fbf45a6a242f6f448da5c09fbb
DIST libadwaita-1.6.2.tar.xz 4740588 BLAKE2B 91197a072a3763c03e05635505719a3cee0b5f80c5b93a938a6693c084927f6b1d06041ac5a27baa7ea568a8b83224d56016e4d9d0433b426af7b37f28c91b04 SHA512 033b3bd40798108df31ad5196b178b09f8e61687594323cfcbbd4c4e6a532fbd29ec0366a3379e06790ad9c3620079d8f27b8e38d539adba1c78c9ab297f2757

View File

@ -1,68 +0,0 @@
# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} python3_{13..14}{,t} )
inherit gnome.org meson python-any-r1 vala virtualx xdg
DESCRIPTION="Building blocks for modern GNOME applications"
HOMEPAGE="https://gnome.pages.gitlab.gnome.org/libadwaita/ https://gitlab.gnome.org/GNOME/libadwaita"
LICENSE="LGPL-2.1+"
SLOT="1"
KEYWORDS="amd64 ~arm arm64 ~loong ppc ppc64 ~riscv x86"
IUSE="+introspection test +vala"
REQUIRED_USE="vala? ( introspection )"
RDEPEND="
>=dev-libs/glib-2.76:2
>=gui-libs/gtk-4.13.4:4[introspection?]
dev-libs/appstream:=
dev-libs/fribidi
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
BDEPEND="
${PYTHON_DEPS}
vala? ( $(vala_depend) )
dev-util/glib-utils
sys-devel/gettext
virtual/pkgconfig
"
src_prepare() {
default
use vala && vala_setup
xdg_environment_reset
}
src_configure() {
local emesonargs=(
# Never use gi-docgen subproject
--wrap-mode nofallback
-Dprofiling=false
$(meson_feature introspection)
$(meson_use vala vapi)
-Dgtk_doc=false # we ship pregenerated docs
$(meson_use test tests)
-Dexamples=false
)
meson_src_configure
}
src_test() {
addwrite /dev/dri
virtx meson_src_test --timeout-multiplier 2
}
src_install() {
meson_src_install
insinto /usr/share/gtk-doc/html
# This will install libadwaita API docs unconditionally, but this is intentional
doins -r "${S}"/doc/libadwaita-1
}