diff options
author | Sam James <sam@gentoo.org> | 2022-07-20 01:50:16 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-20 01:50:16 +0000 |
commit | bff7152e6a33833a56e9ad397fe21c4078f34f36 (patch) | |
tree | b8e88e4646946989a704a17acada51961a52253e | |
parent | gtk-sharp-module.eclass: drop (diff) | |
download | dotnet-bff7152e6a33833a56e9ad397fe21c4078f34f36.tar.gz dotnet-bff7152e6a33833a56e9ad397fe21c4078f34f36.tar.bz2 dotnet-bff7152e6a33833a56e9ad397fe21c4078f34f36.zip |
dev-dotnet/notify-sharp: treeclean
Signed-off-by: Sam James <sam@gentoo.org>
6 files changed, 0 insertions, 174 deletions
diff --git a/dev-dotnet/notify-sharp/Manifest b/dev-dotnet/notify-sharp/Manifest deleted file mode 100644 index e275240..0000000 --- a/dev-dotnet/notify-sharp/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST 0.4.1.tar.gz 12106 BLAKE2B 3f91d0ab1871e74659315074368a1fe64624b58dc8f007cecb9e6bdba4ebdc9248fae961c9ca6b7092caf3f09367410045ac14607f29a62f7afd90504d5d9a6c SHA512 37a6b1a0b29e21692d05597bf80e9432ea95f4cb657c965cf918d774d9114abb01f50c82e4b9ccb7067e3df72562225c7b0a39b1c6eebbf34c8a4ebafeca54f3 -DIST 3.0.3.tar.gz 12482 BLAKE2B 4326d944b407ef481da5c0a68cffb814da3df2964d559dc70c413db72c74e589088f89e3b5bec2bd860dc42f9b13844962a257a2bd2b1aa176c150c738d30b33 SHA512 fb16dd07bf61f100ddbae57262f4aed07e1b28c61828704609e61d16eb181400f9a3bf901b02876906b13bb34a3bb7515a42b082a5d60f9a133fb6c2dc094186 diff --git a/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20080912-control-docs.patch b/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20080912-control-docs.patch deleted file mode 100644 index 44ff058..0000000 --- a/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20080912-control-docs.patch +++ /dev/null @@ -1,28 +0,0 @@ -diff -NrU5 notify-sharp-20080912.orig/configure.ac notify-sharp-20080912/configure.ac ---- notify-sharp-20080912.orig/configure.ac 2008-11-26 21:56:02.000000000 +0100 -+++ notify-sharp-20080912/configure.ac 2008-11-26 22:01:08.000000000 +0100 -@@ -34,16 +34,21 @@ - if test "x$GACUTIL" = "xno"; then - AC_MSG_ERROR([You need to install gacutil]) - fi - AC_SUBST(GACUTIL) - --AC_ARG_ENABLE(docs, AC_HELP_STRING([--disable-docs], -- [Do not build documentation]), with_docs=no, with_docs=yes) -+AC_ARG_ENABLE( [docs], -+ [AC_HELP_STRING( [--enable/disable-docs], -+ [Do (not) build documentation (default=yes)] -+ )], -+ [], -+ [enable_docs=yes] -+) - - MONODOC_REQ_VERSION=1.1.18 - --if test "x$with_docs" = "xyes"; then -+if test "x$enable_docs" = "xyes"; then - PKG_CHECK_MODULES(MONODOC, monodoc >= $MONODOC_REQ_VERSION,, - [AC_MSG_ERROR([You need to install monodoc, or pass --disable-docs to configure to skip documentation installation])]) - AC_PATH_PROG(MONODOCER, monodocer, no) - if test "x$MONODOCER" = "xno"; then - AC_MSG_ERROR([You need to install monodoc, or pass --disable-docs to configure to skip documentation installation]) diff --git a/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20090305-dbus-sharp.patch b/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20090305-dbus-sharp.patch deleted file mode 100644 index 28c6316..0000000 --- a/dev-dotnet/notify-sharp/files/notify-sharp-0.4.0_pre20090305-dbus-sharp.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff --git a/configure.ac b/configure.ac -index d2ff635..7200f06 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -71,11 +71,11 @@ GTK_SHARP_REQ_VERSION=2.10.1 - PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 >= $GTK_SHARP_REQ_VERSION) - AC_SUBST(GTK_SHARP_LIBS) - --NDESK_DBUS_REQ_VERSION=0.4 --NDESK_DBUS_GLIB_REQ_VERSION=0.3 --PKG_CHECK_MODULES(NDESK_DBUS, ndesk-dbus-1.0 >= $NDESK_DBUS_REQ_VERSION \ -- ndesk-dbus-glib-1.0 >= $NDESK_DBUS_GLIB_REQ_VERSION) --AC_SUBST(NDESK_DBUS_LIBS) -+DBUS_SHARP_REQ_VERSION=0.7 -+DBUS_SHARP_GLIB_REQ_VERSION=0.5 -+PKG_CHECK_MODULES(DBUS_SHARP, dbus-sharp-1.0 >= $DBUS_SHARP_REQ_VERSION \ -+ dbus-sharp-glib-1.0 >= $DBUS_SHARP_GLIB_REQ_VERSION) -+AC_SUBST(DBUS_SHARP_LIBS) - - required_assemblies="Mono.Posix" - -diff --git a/src/Global.cs b/src/Global.cs -index eedefbf..a0f80ed 100644 ---- a/src/Global.cs -+++ b/src/Global.cs -@@ -24,7 +24,7 @@ using System; - using System.Reflection; - using System.Collections.Generic; - --using NDesk.DBus; -+using DBus; - using org.freedesktop; - using org.freedesktop.DBus; - -diff --git a/src/Makefile.am b/src/Makefile.am -index 3b39c23..50bbb39 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -7,7 +7,7 @@ CSFLAGS = \ - LIBFLAGS = \ - -r:Mono.Posix \ - $(GTK_SHARP_LIBS) \ -- $(NDESK_DBUS_LIBS) -+ $(DBUS_SHARP_LIBS) - - CSFILES = \ - $(srcdir)/Global.cs \ -diff --git a/src/Notification.cs b/src/Notification.cs -index 09ef83e..e2ab72f 100644 ---- a/src/Notification.cs -+++ b/src/Notification.cs -@@ -28,7 +28,7 @@ using GLib; - using Gdk; - using Gtk; - --using NDesk.DBus; -+using DBus; - using org.freedesktop; - using org.freedesktop.DBus; - diff --git a/dev-dotnet/notify-sharp/metadata.xml b/dev-dotnet/notify-sharp/metadata.xml deleted file mode 100644 index b1262f1..0000000 --- a/dev-dotnet/notify-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>dotnet@gentoo.org</email> - <description>Gentoo Dotnet Project</description> - </maintainer> -</pkgmetadata> diff --git a/dev-dotnet/notify-sharp/notify-sharp-0.4.1.ebuild b/dev-dotnet/notify-sharp/notify-sharp-0.4.1.ebuild deleted file mode 100644 index 30da4cf..0000000 --- a/dev-dotnet/notify-sharp/notify-sharp-0.4.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools eutils dotnet - -MY_P=${PN}-${PV#*_pre} - -DESCRIPTION="a C# client implementation for Desktop Notifications" -HOMEPAGE="https://www.ndesk.org/NotifySharp" -#SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" -SRC_URI="https://github.com/meebey/notify-sharp/archive/${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc" - -RDEPEND=">=dev-lang/mono-4.0.2.5 - >=dev-dotnet/gtk-sharp-2.12.21:2 - >=dev-dotnet/dbus-sharp-0.7:* - >=dev-dotnet/dbus-sharp-glib-0.5:* - >=x11-libs/libnotify-0.4.5" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - sed -i "s@gmcs@mcs@g" configure.ac || die - sed -i "s@dbus-sharp-1.0@dbus-sharp-2.0@g" configure.ac || die - sed -i "s@dbus-sharp-glib-1.0@dbus-sharp-glib-2.0@g" configure.ac || die - eautoreconf - default -} - -src_configure() { - econf $(use_enable doc docs) -} diff --git a/dev-dotnet/notify-sharp/notify-sharp-3.0.3.ebuild b/dev-dotnet/notify-sharp/notify-sharp-3.0.3.ebuild deleted file mode 100644 index 1d171d2..0000000 --- a/dev-dotnet/notify-sharp/notify-sharp-3.0.3.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools eutils dotnet - -MY_P=${PN}-${PV#*_pre} - -DESCRIPTION="a C# client implementation for Desktop Notifications" -HOMEPAGE="https://www.ndesk.org/NotifySharp" -#SRC_URI="mirror://gentoo/${MY_P}.tar.bz2" -SRC_URI="https://github.com/meebey/notify-sharp/archive/${PV}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc" - -RDEPEND=">=dev-lang/mono-4.0.2.5 - >=dev-dotnet/gtk-sharp-2.12.21:2 - >=dev-dotnet/dbus-sharp-0.7:2.0 - >=dev-dotnet/dbus-sharp-glib-0.5:2.0 - >=x11-libs/libnotify-0.4.5" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/${MY_P} - -src_prepare() { - sed -i "s@gmcs@mcs@g" configure.ac || die - sed -i "s@dbus-sharp-1.0@dbus-sharp-2.0@g" configure.ac || die - sed -i "s@dbus-sharp-glib-1.0@dbus-sharp-glib-2.0@g" configure.ac || die - eautoreconf - default -} - -src_configure() { - econf $(use_enable doc docs) -} |