commit:     d2c46ec7bc686312368c2cbc4de14bceae8953e8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 20 01:49:11 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 20 01:49:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/dotnet.git/commit/?id=d2c46ec7

dev-dotnet/gnome-sharp: treeclean

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .../gnome-sharp/gnome-sharp-2.24.2-r2.ebuild       | 44 ------------
 dev-dotnet/gnome-sharp/gnome-sharp-2.24.4.ebuild   | 82 ----------------------
 dev-dotnet/gnome-sharp/gnome-sharp-9999.ebuild     | 82 ----------------------
 dev-dotnet/gnome-sharp/metadata.xml                |  8 ---
 4 files changed, 216 deletions(-)

diff --git a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r2.ebuild 
b/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r2.ebuild
deleted file mode 100644
index 82bc6fd..0000000
--- a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r2.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit dotnet autotools
-
-SLOT="2"
-DESCRIPTION="gnome bindings for mono"
-HOMEPAGE="https://www.mono-project.com/GtkSharp";
-LICENSE="GPL-2"
-KEYWORDS="~amd64"
-SRC_URI="mirror://gnome/sources/gnome-sharp/2.24/${P}.tar.bz2"
-IUSE="debug"
-
-RESTRICT="test"
-
-RDEPEND="
-       >=dev-dotnet/gtk-sharp-2.12.21:2
-       gnome-base/gconf
-       gnome-base/libgnomecanvas
-       gnome-base/libgnomeui
-       media-libs/libart_lgpl
-       !dev-dotnet/gnomevfs-sharp
-       !dev-dotnet/gconf-sharp
-       !dev-dotnet/art-sharp
-       "
-DEPEND="${RDEPEND}
-       sys-devel/automake:1.11"
-
-src_prepare() {
-       default
-       eautoreconf
-       elibtoolize
-}
-
-src_configure() {
-       econf $(use_enable debug)
-}
-
-src_install() {
-       default
-       dotnet_multilib_comply
-}

diff --git a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.4.ebuild 
b/dev-dotnet/gnome-sharp/gnome-sharp-2.24.4.ebuild
deleted file mode 100644
index 73883b9..0000000
--- a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.4.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit dotnet autotools
-
-SLOT="2"
-DESCRIPTION="gnome bindings for mono"
-HOMEPAGE="https://www.mono-project.com/GtkSharp";
-LICENSE="GPL-2"
-
-# Taken from the bootstrap configure script to allow using portage
-# functions for building. Should be updated accordingly.
-GNOME_SHARP_VERSION=2.24.4 # Not using ${PV} because 9999 depends on this 
value. Must be bumped with every release.
-ASSEMBLY_VERSION=2.24.0.0
-POLICY_VERSIONS="2.4 2.6 2.8 2.16 2.20"
-GTK_REQUIRED_VERSION=2.13.0
-GTK_SHARP_REQUIRED_VERSION=2.12.2
-GNOME_REQUIRED_VERSION=2.23.0
-GNOMECANVAS_REQUIRED_VERSION=2.20.0
-VERSIONCSDEFINES="-define:GTK_SHARP_2_6 -define:GTK_SHARP_2_8 
-define:GNOME_SHARP_2_16 -define:GNOME_SHARP_2_20 -define:GNOME_SHARP_2_24"
-VERSIONCFLAGS="-DGTK_SHARP_2_6 -DGTK_SHARP_2_8 -DGNOME_SHARP_2_16 
-DGNOME_SHARP_2_20 -DGNOME_SHARP_2_24"
-GNOME_API_TAG=2.20
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/mono/gnome-sharp.git";
-       inherit git-r3
-else
-       KEYWORDS="~amd64"
-       SRC_URI="https://github.com/mono/${PN}/archive/${PV}.tar.gz";
-fi
-
-IUSE="debug"
-
-RESTRICT="test"
-
-RDEPEND="
-       >=dev-dotnet/gtk-sharp-2.12.21:2
-       gnome-base/gconf
-       gnome-base/libgnomecanvas
-       gnome-base/libgnomeui
-       media-libs/libart_lgpl
-       !dev-dotnet/gnomevfs-sharp
-       !dev-dotnet/gconf-sharp
-       !dev-dotnet/art-sharp
-       "
-DEPEND="${RDEPEND}
-       sys-devel/automake:1.11"
-
-pkg_pretend() {
-       if [[ ${PV} != "9999" ]] ; then
-               if [[ ${PV} > ${GNOME_SHARP_VERSION} ]] ; then
-                       die "Revision bumps must also update the 
GNOME_SHARP_VERSION variable."
-               fi
-       fi
-}
-
-src_prepare() {
-       sed -e "s/@GNOME_SHARP_VERSION@/$GNOME_SHARP_VERSION/" \
-               -e "s/@GTK_REQUIRED_VERSION@/$GTK_REQUIRED_VERSION/" \
-               -e 
"s/@GTK_SHARP_REQUIRED_VERSION@/$GTK_SHARP_REQUIRED_VERSION/" \
-               -e "s/@GNOME_REQUIRED_VERSION@/$GNOME_REQUIRED_VERSION/" \
-               -e 
"s/@GNOMECANVAS_REQUIRED_VERSION@/$GNOMECANVAS_REQUIRED_VERSION/" \
-               -e "s/@VERSIONCSDEFINES@/$VERSIONCSDEFINES/" \
-               -e "s/@VERSIONCFLAGS@/$VERSIONCFLAGS/" \
-           -e "s/@POLICY_VERSIONS@/$POLICY_VERSIONS/" \
-               -e "s/@ASSEMBLY_VERSION@/$ASSEMBLY_VERSION/" 
"$S/configure.in.in" > "$S/configure.in"
-
-       default
-       eautoreconf
-       elibtoolize
-}
-
-src_configure() {
-       econf $(use_enable debug)
-}
-
-src_install() {
-       default
-       dotnet_multilib_comply
-}

diff --git a/dev-dotnet/gnome-sharp/gnome-sharp-9999.ebuild 
b/dev-dotnet/gnome-sharp/gnome-sharp-9999.ebuild
deleted file mode 100644
index 73883b9..0000000
--- a/dev-dotnet/gnome-sharp/gnome-sharp-9999.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit dotnet autotools
-
-SLOT="2"
-DESCRIPTION="gnome bindings for mono"
-HOMEPAGE="https://www.mono-project.com/GtkSharp";
-LICENSE="GPL-2"
-
-# Taken from the bootstrap configure script to allow using portage
-# functions for building. Should be updated accordingly.
-GNOME_SHARP_VERSION=2.24.4 # Not using ${PV} because 9999 depends on this 
value. Must be bumped with every release.
-ASSEMBLY_VERSION=2.24.0.0
-POLICY_VERSIONS="2.4 2.6 2.8 2.16 2.20"
-GTK_REQUIRED_VERSION=2.13.0
-GTK_SHARP_REQUIRED_VERSION=2.12.2
-GNOME_REQUIRED_VERSION=2.23.0
-GNOMECANVAS_REQUIRED_VERSION=2.20.0
-VERSIONCSDEFINES="-define:GTK_SHARP_2_6 -define:GTK_SHARP_2_8 
-define:GNOME_SHARP_2_16 -define:GNOME_SHARP_2_20 -define:GNOME_SHARP_2_24"
-VERSIONCFLAGS="-DGTK_SHARP_2_6 -DGTK_SHARP_2_8 -DGNOME_SHARP_2_16 
-DGNOME_SHARP_2_20 -DGNOME_SHARP_2_24"
-GNOME_API_TAG=2.20
-
-if [[ ${PV} == "9999" ]] ; then
-       EGIT_REPO_URI="https://github.com/mono/gnome-sharp.git";
-       inherit git-r3
-else
-       KEYWORDS="~amd64"
-       SRC_URI="https://github.com/mono/${PN}/archive/${PV}.tar.gz";
-fi
-
-IUSE="debug"
-
-RESTRICT="test"
-
-RDEPEND="
-       >=dev-dotnet/gtk-sharp-2.12.21:2
-       gnome-base/gconf
-       gnome-base/libgnomecanvas
-       gnome-base/libgnomeui
-       media-libs/libart_lgpl
-       !dev-dotnet/gnomevfs-sharp
-       !dev-dotnet/gconf-sharp
-       !dev-dotnet/art-sharp
-       "
-DEPEND="${RDEPEND}
-       sys-devel/automake:1.11"
-
-pkg_pretend() {
-       if [[ ${PV} != "9999" ]] ; then
-               if [[ ${PV} > ${GNOME_SHARP_VERSION} ]] ; then
-                       die "Revision bumps must also update the 
GNOME_SHARP_VERSION variable."
-               fi
-       fi
-}
-
-src_prepare() {
-       sed -e "s/@GNOME_SHARP_VERSION@/$GNOME_SHARP_VERSION/" \
-               -e "s/@GTK_REQUIRED_VERSION@/$GTK_REQUIRED_VERSION/" \
-               -e 
"s/@GTK_SHARP_REQUIRED_VERSION@/$GTK_SHARP_REQUIRED_VERSION/" \
-               -e "s/@GNOME_REQUIRED_VERSION@/$GNOME_REQUIRED_VERSION/" \
-               -e 
"s/@GNOMECANVAS_REQUIRED_VERSION@/$GNOMECANVAS_REQUIRED_VERSION/" \
-               -e "s/@VERSIONCSDEFINES@/$VERSIONCSDEFINES/" \
-               -e "s/@VERSIONCFLAGS@/$VERSIONCFLAGS/" \
-           -e "s/@POLICY_VERSIONS@/$POLICY_VERSIONS/" \
-               -e "s/@ASSEMBLY_VERSION@/$ASSEMBLY_VERSION/" 
"$S/configure.in.in" > "$S/configure.in"
-
-       default
-       eautoreconf
-       elibtoolize
-}
-
-src_configure() {
-       econf $(use_enable debug)
-}
-
-src_install() {
-       default
-       dotnet_multilib_comply
-}

diff --git a/dev-dotnet/gnome-sharp/metadata.xml 
b/dev-dotnet/gnome-sharp/metadata.xml
deleted file mode 100644
index b1262f1..0000000
--- a/dev-dotnet/gnome-sharp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-       <maintainer type="project">
-               <email>[email protected]</email>
-               <description>Gentoo Dotnet Project</description>
-       </maintainer>
-</pkgmetadata>

Reply via email to