summaryrefslogtreecommitdiff
path: root/gui-libs/libwlembed
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /gui-libs/libwlembed
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'gui-libs/libwlembed')
-rw-r--r--gui-libs/libwlembed/Manifest2
-rw-r--r--gui-libs/libwlembed/libwlembed-0.0.0_pre20250715.ebuild67
-rw-r--r--gui-libs/libwlembed/libwlembed-9999.ebuild52
-rw-r--r--gui-libs/libwlembed/metadata.xml7
4 files changed, 0 insertions, 128 deletions
diff --git a/gui-libs/libwlembed/Manifest b/gui-libs/libwlembed/Manifest
deleted file mode 100644
index 60476520e9b0..000000000000
--- a/gui-libs/libwlembed/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST libwlembed-4d37dc9da9a1f699b86d4e6b05f4619b8eee4ee8.tar.bz2 97184 BLAKE2B 0914c7e3e88776bfc695968d57d5ec3f65a7447f74c7bd7a03256b1538ed53027ecb62a343b9a1b47b4da97da2ed753e10acf3cb872b51d3e6c9efdce986ea4d SHA512 a7bc40ed1b47a94ca3e0b6ff1b4029bb6458e6d56e4eb64e908f23e04ba30a69448a0a90674234bb7e8f8edf9e38268ab37098ec4e9a2c8de1329304ed5becef
-DIST wlr-protocols-4264185db3b7e961e7f157e1cc4fd0ab75137568.tar.bz2 19574 BLAKE2B 65666095f186857e3c5274b23d5c40b40b0ba5d945c7b34331a06320128cb69a36a76baf2381b635858736ca6ed438c2ed67c03fac1c20e1ec4d71de27037e42 SHA512 0e6afde055d9b76bcb8c717433b78814f2cf9338ead451d3119f62463198ef272029767898e8f7d32896f2732be3aaa2a0373c671d8196e745d62f6116cd1583
diff --git a/gui-libs/libwlembed/libwlembed-0.0.0_pre20250715.ebuild b/gui-libs/libwlembed/libwlembed-0.0.0_pre20250715.ebuild
deleted file mode 100644
index 4e907d7bd18b..000000000000
--- a/gui-libs/libwlembed/libwlembed-0.0.0_pre20250715.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 2025-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit meson python-any-r1
-
-EGIT_COMMIT=4d37dc9da9a1f699b86d4e6b05f4619b8eee4ee8
-WLR_COMMIT=4264185db3b7e961e7f157e1cc4fd0ab75137568
-MY_P=libwlembed-${EGIT_COMMIT}
-DESCRIPTION="A library for easily adding embedded Wayland compositor functionality"
-HOMEPAGE="https://gitlab.xfce.org/kelnos/libwlembed"
-SRC_URI="
- https://gitlab.xfce.org/kelnos/libwlembed/-/archive/${EGIT_COMMIT}/${MY_P}.tar.bz2
- https://gitlab.freedesktop.org/wlroots/wlr-protocols/-/archive/${WLR_COMMIT}/wlr-protocols-${WLR_COMMIT}.tar.bz2
-
-"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~loong ppc ppc64 ~riscv x86"
-IUSE="gtk gtk-doc +introspection"
-
-DEPEND="
- >=dev-libs/glib-2.72
- >=dev-libs/wayland-1.20
- >=dev-util/wayland-scanner-1.20
- x11-libs/libxkbcommon
- gtk? (
- >=gui-libs/gtk-layer-shell-0.7.0
- >=x11-libs/gtk+-3.24:3[wayland]
- )
- introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2 )
-"
-RDEPEND="
- ${DEPEND}
-"
-DEPEND+="
- >=dev-libs/wayland-protocols-1.25
-"
-BDEPEND="
- ${PYTHON_DEPS}
- dev-build/xfce4-dev-tools
- virtual/pkgconfig
- gtk-doc? ( dev-util/gtk-doc )
-"
-
-src_unpack() {
- default
- mv "${WORKDIR}/wlr-protocols-${WLR_COMMIT}"/* \
- "${S}/protocol/wlr-protocols" || die
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_feature gtk gtk3)
- $(meson_feature gtk gtk3-layer-shell)
- $(meson_use introspection)
- $(meson_use gtk-doc)
- -Dexamples=false
- )
-
- meson_src_configure
-}
diff --git a/gui-libs/libwlembed/libwlembed-9999.ebuild b/gui-libs/libwlembed/libwlembed-9999.ebuild
deleted file mode 100644
index a383120daf78..000000000000
--- a/gui-libs/libwlembed/libwlembed-9999.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{13..14} )
-
-inherit git-r3 meson python-any-r1
-
-DESCRIPTION="A library for easily adding embedded Wayland compositor functionality"
-HOMEPAGE="https://gitlab.xfce.org/kelnos/libwlembed"
-EGIT_REPO_URI="https://gitlab.xfce.org/kelnos/libwlembed"
-
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="gtk gtk-doc +introspection"
-
-DEPEND="
- >=dev-libs/glib-2.72
- >=dev-libs/wayland-1.20
- >=dev-util/wayland-scanner-1.20
- x11-libs/libxkbcommon
- gtk? (
- >=gui-libs/gtk-layer-shell-0.7.0
- >=x11-libs/gtk+-3.24:3[wayland]
- )
- introspection? ( >=dev-libs/gobject-introspection-1.82.0-r2 )
-"
-RDEPEND="
- ${DEPEND}
-"
-DEPEND+="
- >=dev-libs/wayland-protocols-1.25
-"
-BDEPEND="
- ${PYTHON_DEPS}
- dev-build/xfce4-dev-tools
- virtual/pkgconfig
- gtk-doc? ( dev-util/gtk-doc )
-"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature gtk gtk3)
- $(meson_feature gtk gtk3-layer-shell)
- $(meson_use introspection)
- $(meson_use gtk-doc)
- -Dexamples=false
- )
-
- meson_src_configure
-}
diff --git a/gui-libs/libwlembed/metadata.xml b/gui-libs/libwlembed/metadata.xml
deleted file mode 100644
index f05a5a518f4f..000000000000
--- a/gui-libs/libwlembed/metadata.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>xfce@gentoo.org</email>
- </maintainer>
-</pkgmetadata>