[gentoo-commits] repo/gentoo:master commit in: dev-util/bless/files/, dev-util/bless/, profiles/

2021-05-23 Thread David Seifert
commit: dd2bcacd10903f2c0efac7e6a4b2381e94a157a8
Author: Jakov Smolic  sartura  hr>
AuthorDate: Sun May 23 12:35:37 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun May 23 12:35:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd2bcacd

dev-util/bless: Remove last-rited pkg

Closes: https://bugs.gentoo.org/769083
Closes: https://bugs.gentoo.org/772371
Signed-off-by: Jakov Smolic  sartura.hr>
Signed-off-by: David Seifert  gentoo.org>

 dev-util/bless/Manifest|   2 -
 dev-util/bless/bless-0.6.2-r1.ebuild   |  54 --
 dev-util/bless/bless-0.6.3.ebuild  |  47 -
 .../files/bless-0.6.2-range-disambiguation.patch   | 202 -
 dev-util/bless/metadata.xml|   8 -
 profiles/package.mask  |   7 -
 6 files changed, 320 deletions(-)

diff --git a/dev-util/bless/Manifest b/dev-util/bless/Manifest
deleted file mode 100644
index 86019b44a9d..000
--- a/dev-util/bless/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST bless-0.6.2.tar.gz 514695 BLAKE2B 
2c9681e03992d42b20d0073e9107e5bd83d6f1699235b49fb6cf14fb5f9bc87e682e96b4f8bab2b45a3211515a8990e72b80922a62198c7ad603aeb5f3d3c406
 SHA512 
3fef715ed138323af50437ef8cda3d9f53987498042f1b4df2d9ce23f00dade68147cbdf28b85aed8b9c594fb5c43839c9dedbc14a994ad609fd4cedd89bfcf5
-DIST bless-0.6.3.tar.gz 532687 BLAKE2B 
ce710ba1883fff9f0f77ca08c02573a3de756e9a2b6cdfad9dffd8d00c1d89648fc68218dd322f9e1ab6e0b42d205148c4a1d99546ba42b58689fe58511b7ed8
 SHA512 
22841b6f1b923ebfc7952ad9233cffb30df4ecb22a655f6461ff3cc97066a8c68ffc6bbd88e4fd83c345226928ed08c557f2f322942766da61bcd2b2c7f7d3cb

diff --git a/dev-util/bless/bless-0.6.2-r1.ebuild 
b/dev-util/bless/bless-0.6.2-r1.ebuild
deleted file mode 100644
index 92feecfe962..000
--- a/dev-util/bless/bless-0.6.2-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools gnome2 mono-env
-
-DESCRIPTION="GTK# Hex Editor"
-HOMEPAGE="https://github.com/afrantzis/Bless/;
-SRC_URI="https://github.com/afrantzis/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-# EGIT_REPO_URI="https://github.com/afrantzis/bless/;
-# EGIT_COMMIT="v${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND="
-   >=dev-lang/mono-1.1.14
-   >=dev-dotnet/gtk-sharp-2.12.21:2
-"
-DEPEND="${RDEPEND}
-   app-text/rarian
-   >=sys-devel/gettext-0.15
-   virtual/pkgconfig
-"
-
-# See bug 278162
-# Waiting on nunit ebuild entering the tree
-RESTRICT="test"
-PATCHES=("${FILESDIR}/bless-0.6.2-range-disambiguation.patch")
-
-pkg_setup() {
-   mono-env_pkg_setup
-}
-
-src_prepare() {
-   eautoreconf
-   # The autoreconf expects INSTALL to have been copied over by autoconf
-   touch "${S}/INSTALL"
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-unix-specific \
-   $(use_enable debug)
-}
-
-src_install() {
-   default
-
-   mv "${D}/usr/share/doc/${PN}" "${D}/usr/share/doc/${P}" || die "Unable 
to make documentation version-specific."
-}

diff --git a/dev-util/bless/bless-0.6.3.ebuild 
b/dev-util/bless/bless-0.6.3.ebuild
deleted file mode 100644
index 1d4264121f8..000
--- a/dev-util/bless/bless-0.6.3.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit meson gnome2
-
-DESCRIPTION="GTK# Hex Editor"
-HOMEPAGE="https://github.com/afrantzis/Bless/;
-SRC_URI="https://github.com/afrantzis/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-# EGIT_REPO_URI="https://github.com/afrantzis/bless/;
-# EGIT_COMMIT="v${PV}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug test"
-
-RDEPEND="
-   >=dev-util/meson-0.46
-   >=dev-lang/mono-1.1.14
-   >=dev-dotnet/gtk-sharp-2.12.21:2
-"
-DEPEND="${RDEPEND}
-   app-text/rarian
-   >=sys-devel/gettext-0.15
-   virtual/pkgconfig
-"
-
-# See bug 278162
-# Waiting on nunit ebuild entering the tree
-RESTRICT="test"
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use test tests)
-   )
-
-   meson_src_configure
-}
-
-src_compile() {
-   meson_src_compile
-}
-
-src_install() {
-   meson_src_install
-}

diff --git a/dev-util/bless/files/bless-0.6.2-range-disambiguation.patch 
b/dev-util/bless/files/bless-0.6.2-range-disambiguation.patch
deleted file mode 100644
index 788a57866cb..000
--- a/dev-util/bless/files/bless-0.6.2-range-disambiguation.patch
+++ /dev/null
@@ -1,202 +0,0 @@
-From 84801988f908e51d9843c3e0ee8f2cd05c0a2d97 Mon Sep 17 00:00:00 2001
-From: davidcim 
-Date: Thu, 3 Oct 2019 12:38:25 +0200
-Subject: [PATCH] Fix building error CS0104: 'Range' is an ambiguous reference
-

- src/buffers/ByteBuffer.cs|  2 +-
- 

[gentoo-commits] repo/gentoo:master commit in: dev-util/bless/files/

2016-11-08 Thread Mike Auty
commit: d0fb126a36d2f0f92d113f5de149f86a3db1741a
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Nov  8 20:19:15 2016 +
Commit: Mike Auty  gentoo  org>
CommitDate: Tue Nov  8 21:09:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0fb126a

dev-util/bless: remove unused patch

Signed-off-by: Mike Auty  gentoo.org>

 dev-util/bless/files/bless-0.5.2-mono-2.patch | 118 --
 1 file changed, 118 deletions(-)

diff --git a/dev-util/bless/files/bless-0.5.2-mono-2.patch 
b/dev-util/bless/files/bless-0.5.2-mono-2.patch
deleted file mode 100644
index 4271046..
--- a/dev-util/bless/files/bless-0.5.2-mono-2.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-diff -Naur blessbroken/src/gui/plugins/BitwiseOperationsPlugin.cs 
bless-0.5.2/src/gui/plugins/BitwiseOperationsPlugin.cs
 blessbroken/src/gui/plugins/BitwiseOperationsPlugin.cs 2007-08-25 
09:54:21.0 +0200
-+++ bless-0.5.2/src/gui/plugins/BitwiseOperationsPlugin.cs 2008-07-08 
01:33:38.352260344 +0200
-@@ -102,7 +102,7 @@
-   uim.InsertActionGroup(group, 0);
-   uim.AddUiFromString(uiXml);
- 
--  performAction = 
(Action)uim.GetAction("/DefaultAreaPopup/ExtraAreaPopupItems/PerformBitwiseOperation");
-+  performAction = 
(Gtk.Action)uim.GetAction("/DefaultAreaPopup/ExtraAreaPopupItems/PerformBitwiseOperation");
- 
-   uim.EnsureUpdate();
- 
-diff -Naur blessbroken/src/gui/plugins/EditOperationsPlugin.cs 
bless-0.5.2/src/gui/plugins/EditOperationsPlugin.cs
 blessbroken/src/gui/plugins/EditOperationsPlugin.cs2007-08-25 
09:54:21.0 +0200
-+++ bless-0.5.2/src/gui/plugins/EditOperationsPlugin.cs2008-07-08 
01:35:00.027629029 +0200
-@@ -151,12 +151,12 @@
-   void ConnectEditAccelerators(bool v)
-   {
-   if (editAccelCount == 0 && v == true) {
--  foreach(Action a in editActionGroup.ListActions())
-+  foreach(Gtk.Action a in editActionGroup.ListActions())
-   a.ConnectAccelerator();
-   editAccelCount = 1;
-   }
-   else if (editAccelCount == 1 && v == false) {
--  foreach(Action a in editActionGroup.ListActions())
-+  foreach(Gtk.Action a in editActionGroup.ListActions())
-   a.DisconnectAccelerator();
-   editAccelCount = 0;
-   }
-@@ -207,15 +207,15 @@
-   uim.InsertActionGroup(miscActionGroup, 0);
- 
-   uim.AddUiFromString(uiXml);
--  UndoAction = (Action)uim.GetAction("/menubar/Edit/Undo");
--  RedoAction = (Action)uim.GetAction("/menubar/Edit/Redo");
--  CutAction = (Action)uim.GetAction("/menubar/Edit/Cut");
--  CopyAction = (Action)uim.GetAction("/menubar/Edit/Copy");
--  PasteAction = (Action)uim.GetAction("/menubar/Edit/Paste");
--  DeleteAction = (Action)uim.GetAction("/menubar/Edit/Delete");
-+  UndoAction = (Gtk.Action)uim.GetAction("/menubar/Edit/Undo");
-+  RedoAction = (Gtk.Action)uim.GetAction("/menubar/Edit/Redo");
-+  CutAction = (Gtk.Action)uim.GetAction("/menubar/Edit/Cut");
-+  CopyAction = (Gtk.Action)uim.GetAction("/menubar/Edit/Copy");
-+  PasteAction = (Gtk.Action)uim.GetAction("/menubar/Edit/Paste");
-+  DeleteAction = 
(Gtk.Action)uim.GetAction("/menubar/Edit/Delete");
- 
- 
--  foreach (Action a in editActionGroup.ListActions()) {
-+  foreach (Gtk.Action a in editActionGroup.ListActions()) {
-   // for some reason the accelerators are connected twice
-   // ... so disconnect them twice
-   for (int i = 0; i < 2; i++)
-diff -Naur blessbroken/src/gui/plugins/FileOperationsPlugin.cs 
bless-0.5.2/src/gui/plugins/FileOperationsPlugin.cs
 blessbroken/src/gui/plugins/FileOperationsPlugin.cs2007-08-25 
09:54:21.0 +0200
-+++ bless-0.5.2/src/gui/plugins/FileOperationsPlugin.cs2008-07-08 
01:35:48.083280812 +0200
-@@ -159,11 +159,11 @@
- 
-   uim.InsertActionGroup(group, 0);
-   uim.AddUiFromString(uiXml);
--  SaveAction = (Action)uim.GetAction("/menubar/File/Save");
--  SaveAsAction = (Action)uim.GetAction("/menubar/File/SaveAs");
--  CloseAction = (Action)uim.GetAction("/menubar/File/Close");
--  QuitAction = (Action)uim.GetAction("/menubar/File/Quit");
--  RevertAction = (Action)uim.GetAction("/menubar/File/Revert");
-+  SaveAction = (Gtk.Action)uim.GetAction("/menubar/File/Save");
-+  SaveAsAction = 
(Gtk.Action)uim.GetAction("/menubar/File/SaveAs");
-+  CloseAction = (Gtk.Action)uim.GetAction("/menubar/File/Close");
-+  QuitAction =