diff options
author | Matt Turner <mattst88@gentoo.org> | 2023-05-17 17:12:24 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2023-05-17 17:54:54 -0400 |
commit | 8a3c9d8be3c724f9e74177a71b33c800696043fb (patch) | |
tree | 946021c7ffcb59aa0e1f1856708cd90e92642c24 /gui-libs | |
parent | gui-libs/libadwaita: Drop old versions (diff) | |
download | gentoo-8a3c9d8be3c724f9e74177a71b33c800696043fb.tar.gz gentoo-8a3c9d8be3c724f9e74177a71b33c800696043fb.tar.bz2 gentoo-8a3c9d8be3c724f9e74177a71b33c800696043fb.zip |
gui-libs/libpanel: Drop old versions
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'gui-libs')
-rw-r--r-- | gui-libs/libpanel/Manifest | 1 | ||||
-rw-r--r-- | gui-libs/libpanel/libpanel-1.0.2.ebuild | 55 |
2 files changed, 0 insertions, 56 deletions
diff --git a/gui-libs/libpanel/Manifest b/gui-libs/libpanel/Manifest index cd854ae598ac..74f142a9ce60 100644 --- a/gui-libs/libpanel/Manifest +++ b/gui-libs/libpanel/Manifest @@ -1,2 +1 @@ -DIST libpanel-1.0.2.tar.xz 101032 BLAKE2B 965140df480b4d6aad1fb008b54ce4c46e78c50136c1bbe200430e97b1f9f2f399bedb8d8695ddfdaef80fdb544be181f3e1a97bd6a4ad7bcacc2a091e00448e SHA512 3c13d7842ba1f1dc1a4bbea3e47517fffe20205c6145812659c203d065523310f1a9b991d7a70454c1333332b25b3eb52835122df14b2993a395fd2aa6046dca DIST libpanel-1.2.0.tar.xz 131296 BLAKE2B ee999166748e1cab227a970a9cc3ab05f47a88e5e9431b0e25f9e1933c31d13de1ce9a4132658905d6e0a7d7a6cc1ed214ff41d61ff3722355e7bc11465dce8a SHA512 28277d9679b71d6ea9ec891db2fad371e7f152240114def3ad84a24a4abe7b4de0dcec18448cd397dc79083109fdf2d0c9dd45bb198f059869a30b0f51afdb2f diff --git a/gui-libs/libpanel/libpanel-1.0.2.ebuild b/gui-libs/libpanel/libpanel-1.0.2.ebuild deleted file mode 100644 index bf73f4bbc9ca..000000000000 --- a/gui-libs/libpanel/libpanel-1.0.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit gnome.org meson vala xdg - -DESCRIPTION="A dock/panel library for GTK 4" -HOMEPAGE="https://gitlab.gnome.org/GNOME/libpanel" - -LICENSE="LGPL-3+" -SLOT="1" -KEYWORDS="amd64" - -IUSE="examples gtk-doc +introspection +vala" -REQUIRED_USE=" - gtk-doc? ( introspection ) - vala? ( introspection ) -" - -RDEPEND=" - >=dev-libs/glib-2.72:2 - >=gui-libs/gtk-4.6:4[introspection?] - >=gui-libs/libadwaita-1.0:1 - introspection? ( >=dev-libs/gobject-introspection-1.54:= ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - gtk-doc? ( >=dev-util/gi-docgen-2021.1 ) - vala? ( $(vala_depend) ) -" - -src_prepare() { - default - use vala && vala_setup - xdg_environment_reset -} - -src_configure() { - local emesonargs=( - $(meson_use examples install-examples) - $(meson_feature introspection) - $(meson_feature gtk-doc docs) - $(meson_use vala vapi) - ) - meson_src_configure -} - -src_install() { - meson_src_install - if use gtk-doc; then - mkdir "${ED}"/usr/share/gtk-doc || die - mv "${ED}"/usr/share/doc/panel-1.0 "${ED}"/usr/share/gtk-doc/ || die - fi -} |