*/*: Prune various old/obsolete ebuilds.
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

Signed-off-by: Manuel Friedli <manuel@fritteli.ch>
This commit is contained in:
Manuel Friedli 2024-12-17 21:35:04 +01:00
parent 98e4fdcd59
commit 84cabf877d
Signed by: manuel
GPG key ID: 41D08ABA75634DA1
21 changed files with 0 additions and 257 deletions

View file

@ -1,21 +0,0 @@
*gtk-sharp-3.22.2-r1 (23 Aug 2021)
23 Aug 2021; Manuel Friedli <manuel@gentoo.org> +gtk-sharp-3.22.2-r1.ebuild,
-gtk-sharp-3.22.2.ebuild:
dev-dotnet/gtk-sharp: Fix USE flag requirements.
22 Aug 2021; Manuel Friedli <manuel@gentoo.org> gtk-sharp-3.22.2.ebuild:
dev-dotnet/gtk-sharp:
*gtk-sharp-3.22.2 (22 Aug 2021)
22 Aug 2021; Manuel Friedli <manuel@gentoo.org>
+files/01-meson-build-gio.patch, +gtk-sharp-3.22.2.ebuild,
-gtk-sharp-2.12.45.ebuild, -gtk-sharp-3.24.24.34.ebuild, metadata.xml:
dev-dotnet/gtk-sharp: Add ebuild for gtk-sharp 3.22.2.
*gtk-sharp-2.12.45 (19 Mar 2020)
19 Mar 2020; Manuel Friedli <manuel@fritteli.ch> +gtk-sharp-2.12.45.ebuild,
+metadata.xml:
dev-dotnet/gtk-sharp: Add ebuild for version 2.12.45

View file

@ -1,5 +0,0 @@
AUX 01-meson-build-gio.patch 495 BLAKE2B 4e87dde4f08d1c5fc5c4531817a7e9c5aa2467c232e4f56c086df11025f66781f0cebabb5b3e44b2902213d96878b976fc8d3b540ada8dd25ae312373c0e9bcb SHA512 629fc63017ee0e7d45568d070bb5f61a0004b9e8eb92f6befa9dde108b13c03036444dae57e90ed3a9c839a558bacb825c2014ea829ed7a49b977d2437356d5c
DIST gtk-sharp-3.22.2.tar.gz 3297236 BLAKE2B ed6f9e19cc2db3e3a86a14107239b25ec4868222d5ef3d694372e824b8f323d70f5a4847c72a0c2a780cc474375fbf74c74ca3165fbed4255e68671614b9f9fc SHA512 8d4fdcbd54ec795dd5d8bd1fd9e4ec5ea5fff5169392891c99656d3fa1fffda28bbe6ac4e32f1201e7ed03b9702f37e85cd315946bf055efdd7b264d23e6007a
EBUILD gtk-sharp-3.22.2-r2.ebuild 1156 BLAKE2B b59340e5417fcb792bd9c925921139576f74b9864db6b3271db087578002cd44adbfd3494082df2a7e62b37503eec0a541e9095d6534c6ac7faf180a0d28d8b3 SHA512 8506f3d07d6f4e57d808da204b90568efd2568e1b7b9e3fd08be469f68465f525a186df89b5f265ec02897bfaa22edac1c0418f9c96ab884fd5ecbfafcc0be4b
MISC ChangeLog 754 BLAKE2B 0b1f7abb45fdbddb2f038ed04d899bd97e2ea654d18569f61397c71017ed905f200062c3cbe6269b355bd59a10f9112bdc14f02c16e5923161ebe4123d4717d8 SHA512 f30f4b736fa0744f5f4bff210672ce5006c5679fd6ee50a1976631a334ebc597ee1f89d295a708433ee3ef71697e1d6e6333bcb2ee701571077b744b51ccb692
MISC metadata.xml 500 BLAKE2B ed40c3992051fdea9daf967450f7cd084e80b8a81d2bf6b701709fe1b2567b052fd67851b15b0befffebcd017de6d3381850d318371e95c402e152198c2770b9 SHA512 69f503ae78ee8b83c1020914f8e9f4c670236c462e41651b0c33b0774c6e54ead5e8590f485d968f3b9fc44bdb4f23b101f8b60d0f25bea83ea9db18762ee869

View file

@ -1,11 +0,0 @@
diff --git a/Source/gio/generated/meson.build b/Source/gio/generated/meson.build
index f8e3978..416ed5c 100644
--- a/Source/gio/generated/meson.build
+++ b/Source/gio/generated/meson.build
@@ -413,5 +413,5 @@ pkgs += [pkg]
source_gen = files(generated_sources)
gio_api_includes = join_paths(meson.current_source_dir(), 'gio-api.xml')
if install
- install_data(gdk_api_includes, install_dir: gapi_xml_installdir)
+ install_data(gio_api_includes, install_dir: gapi_xml_installdir)
endif

View file

@ -1,61 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
#inherit dotnet autotools base
#inherit dotnet autotools
inherit meson
MY_PN="GtkSharp"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="gtk bindings for mono"
HOMEPAGE="https://github.com/GLibSharp/GtkSharp"
SRC_URI="https://github.com/GLibSharp/GtkSharp/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_P}"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
IUSE="+atk +cairo +gdk +gtk +pango"
REQUIRED_USE="
gdk? ( atk cairo pango )
gtk? ( atk cairo gdk pango )
pango? ( cairo )
"
RDEPEND="
>=dev-libs/glib-2.32
x11-libs/gtk+:3
"
DEPEND="${RDEPEND}
>=dev-lang/mono-6.12
atk? ( app-accessibility/at-spi2-core )
cairo? ( x11-libs/cairo )
gdk? ( x11-libs/gdk-pixbuf )
gtk? ( x11-libs/gtk+:3 )
pango? ( x11-libs/pango )"
PATCHES=( "${FILESDIR}/01-meson-build-gio.patch" )
src_configure() {
local emesonargs=(
$(meson_feature atk)
$(meson_feature cairo)
$(meson_feature gdk)
$(meson_feature gtk)
$(meson_feature pango)
-Dinstall=true
)
meson_src_configure
}
src_install() {
meson_src_install
}

View file

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>manuel@fritteli.ch</email>
<name>Manuel Friedli</name>
</maintainer>
<use>
<flag name="atk">Build the ATK bindings.</flag>
<flag name="gdk">Build the GDK bindings.</flag>
<flag name="pango">Build the Pango bindings.</flag>
</use>
<upstream>
<remote-id type="github">GLibSharp/GtkSharp</remote-id>
</upstream>
</pkgmetadata>