commit:     b5747d5f440528fca42000a3871bbc6990841948
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 14 13:55:57 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Nov 14 13:58:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5747d5f

dev-dotnet/dbus-sharp: treeclean

Closes: https://bugs.gentoo.org/643452
Closes: https://bugs.gentoo.org/688404
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-dotnet/dbus-sharp/Manifest                     |  2 --
 dev-dotnet/dbus-sharp/dbus-sharp-0.7.0-r2.ebuild   | 31 ----------------------
 dev-dotnet/dbus-sharp/dbus-sharp-0.8.1.ebuild      | 30 ---------------------
 .../files/dbus-sharp-0.7.0-fix-signals.patch       | 28 -------------------
 .../files/dbus-sharp-0.7.0-fix-signals2.patch      | 26 ------------------
 dev-dotnet/dbus-sharp/metadata.xml                 |  8 ------
 profiles/package.mask                              |  6 -----
 7 files changed, 131 deletions(-)

diff --git a/dev-dotnet/dbus-sharp/Manifest b/dev-dotnet/dbus-sharp/Manifest
deleted file mode 100644
index 0535d03d84fd..000000000000
--- a/dev-dotnet/dbus-sharp/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST dbus-sharp-0.7.0.tar.gz 127651 BLAKE2B 
ab89cc44a77d7d7b8783da5bde5e278b01560ac54d5a10960c0b58afe38ebdb4d8ce1384d10b37750bb5d58c2a48c9572beba056d7480e463afe81de1d9a9b9f
 SHA512 
76d9c83aae227476e40efee1e987a03a8b1da29def79657365906a8220d2cceabe433f4b4679a87dd74e77431382b6c2857ca5498b0671b679d5ddd566d0229d
-DIST dbus-sharp-0.8.1.tar.gz 148177 BLAKE2B 
ca522730e75a433cb4e6ba794eadaa8420fc6d9e067be66c818e326139bae2070a1962adc563f17bbfe56d53355c312410b333690224f62657d27922bdc39d68
 SHA512 
da5f6cb9fb653a2303eb99865100cc959b0b27d463dee744459666c3a5851f87e30fcb229da08505be45fcc28f4a44629e707073944b321556478f9c7b5c20d3

diff --git a/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0-r2.ebuild 
b/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0-r2.ebuild
deleted file mode 100644
index f693eb3659f1..000000000000
--- a/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0-r2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools mono-env epatch
-
-DESCRIPTION="D-Bus for .NET"
-HOMEPAGE="https://github.com/mono/dbus-sharp";
-SRC_URI="https://github.com/downloads/mono/${PN}/${P}.tar.gz";
-
-LICENSE="MIT"
-SLOT="1.0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-lang/mono
-       sys-apps/dbus"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-pkg_setup() {
-       DOCS="AUTHORS README"
-}
-
-src_prepare() {
-       # Fix signals, bug #387097
-       epatch "${FILESDIR}/${P}-fix-signals.patch"
-       epatch "${FILESDIR}/${P}-fix-signals2.patch"
-       sed -i -e 's/gmcs/mcs/' configure.ac || die
-       eautoreconf
-}

diff --git a/dev-dotnet/dbus-sharp/dbus-sharp-0.8.1.ebuild 
b/dev-dotnet/dbus-sharp/dbus-sharp-0.8.1.ebuild
deleted file mode 100644
index baa798eacbf0..000000000000
--- a/dev-dotnet/dbus-sharp/dbus-sharp-0.8.1.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools mono-env
-
-DESCRIPTION="D-Bus for .NET"
-HOMEPAGE="https://github.com/mono/dbus-sharp";
-SRC_URI="https://github.com/mono/${PN}/releases/download/v${PV}/${P}.tar.gz";
-
-LICENSE="MIT"
-SLOT="2.0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="dev-lang/mono
-       sys-apps/dbus"
-DEPEND="${RDEPEND}
-       virtual/pkgconfig"
-
-DOCS=( AUTHORS README )
-
-pkg_setup() {
-       mono-env_pkg_setup
-}
-
-src_prepare() {
-       sed -i -e 's/gmcs/mcs/' configure.ac || die
-       eautoreconf
-}

diff --git a/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals.patch 
b/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals.patch
deleted file mode 100644
index 934d7630d164..000000000000
--- a/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 608328ba1e0ccc8d0387c244793b229bcc184648 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Laval?= <[email protected]>
-Date: Fri, 10 Dec 2010 15:03:12 +0000
-Subject: [PATCH] Disable broken matching on sender for signals. Fix issue #8.
-
----
- src/BusObject.cs |    5 ++++-
- 1 files changed, 4 insertions(+), 1 deletions(-)
-
-diff --git a/src/BusObject.cs b/src/BusObject.cs
-index e12207e..fe32b72 100644
---- a/src/BusObject.cs
-+++ b/src/BusObject.cs
-@@ -56,7 +56,10 @@ public void ToggleSignal (string iface, string member, 
Delegate dlg, bool adding
-                       rule.Fields.Add (FieldCode.Interface, new MatchTest 
(iface));
-                       rule.Fields.Add (FieldCode.Member, new MatchTest 
(member));
-                       rule.Fields.Add (FieldCode.Path, new MatchTest 
(object_path));
--                      rule.Fields.Add (FieldCode.Sender, new MatchTest 
(alt_bus_name ?? bus_name));
-+                      // FIXME: Cause a regression compared to 0.6 as name 
wasn't matched before
-+                      // the problem arises because busname is not used by 
DBus daemon and
-+                      // instead it uses the canonical name of the sender 
(i.e. similar to ':1.13')
-+                      //rule.Fields.Add (FieldCode.Sender, new MatchTest 
(alt_bus_name ?? bus_name));
- 
-                       if (adding) {
-                               if (conn.Handlers.ContainsKey (rule))
--- 
-1.7.5.4
-

diff --git a/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals2.patch 
b/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals2.patch
deleted file mode 100644
index d74361c08019..000000000000
--- a/dev-dotnet/dbus-sharp/files/dbus-sharp-0.7.0-fix-signals2.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From 76f43e6cc25eae25b658831111b37b10376311d2 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Laval?= <[email protected]>
-Date: Thu, 10 Feb 2011 17:31:38 +0000
-Subject: [PATCH] Remove sender match check on receiving side too. Properly
- fix issue 8.
-
----
- src/Connection.cs |    2 +-
- 1 files changed, 1 insertions(+), 1 deletions(-)
-
-diff --git a/src/Connection.cs b/src/Connection.cs
-index b414994..e593db9 100644
---- a/src/Connection.cs
-+++ b/src/Connection.cs
-@@ -278,7 +278,7 @@ internal void HandleSignal (Message msg)
-                       rule.MessageType = MessageType.Signal;
-                       rule.Fields.Add (FieldCode.Interface, new MatchTest 
(signal.Interface));
-                       rule.Fields.Add (FieldCode.Member, new MatchTest 
(signal.Member));
--                      rule.Fields.Add (FieldCode.Sender, new MatchTest 
(signal.Sender));
-+                      //rule.Fields.Add (FieldCode.Sender, new MatchTest 
(signal.Sender));
-                       rule.Fields.Add (FieldCode.Path, new MatchTest 
(signal.Path));
- 
-                       Delegate dlg;
--- 
-1.7.5.4
-

diff --git a/dev-dotnet/dbus-sharp/metadata.xml 
b/dev-dotnet/dbus-sharp/metadata.xml
deleted file mode 100644
index c81714a4f53f..000000000000
--- a/dev-dotnet/dbus-sharp/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <!-- maintainer-needed -->
-  <upstream>
-    <remote-id type="github">mono/dbus-sharp</remote-id>
-  </upstream>
-</pkgmetadata>

diff --git a/profiles/package.mask b/profiles/package.mask
index 69ce74f86757..5b471f9b11c5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -557,12 +557,6 @@ mail-filter/spamdyke
 # Removal in 30 days.
 dev-java/netty-tcnative
 
-# David Seifert <[email protected]> (2021-10-16)
-# EAPI 5, fails to compile, QA issues, .NET team is
-# abandoned, bug #643452, bug #688404.
-# Removal in 30 days.
-dev-dotnet/dbus-sharp
-
 # Sam James <[email protected]> (2021-10-10)
 # Needs upstream build system fixes (currently in progress).
 # Python toggles don't work correctly right now.

Reply via email to