[gentoo-commits] repo/gentoo:master commit in: app-editors/scite/files/

2019-11-11 Thread Joonas Niilola
commit: e61235526d1d6a6332bd369fcda46321d4231778
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Sun Nov 10 15:53:19 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Nov 11 15:27:20 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6123552

app-editors/scite: remove unused file

Signed-off-by: Michael Mair-Keimberger  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13598
Signed-off-by: Joonas Niilola  gentoo.org>

 app-editors/scite/files/scite.desktop | 8 
 1 file changed, 8 deletions(-)

diff --git a/app-editors/scite/files/scite.desktop 
b/app-editors/scite/files/scite.desktop
deleted file mode 100644
index 757e9f4e71d..000
--- a/app-editors/scite/files/scite.desktop
+++ /dev/null
@@ -1,8 +0,0 @@
-[Desktop Entry]
-Name=SciTE Text Editor
-Comment=Text Editor
-Exec=scite
-Icon=Sci48M
-Terminal=false
-Type=Application
-Categories=Development;



[gentoo-commits] repo/gentoo:master commit in: app-editors/scite/files/

2016-07-07 Thread Patrice Clement
commit: 1b1d131cb7d9688e15bd42e4b4e300560d24fb83
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Jul  4 19:28:21 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jul  7 07:19:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b1d131c

app-editor/scite: remove unused patch

Closes: https://github.com/gentoo/gentoo/pull/1826

Signed-off-by: Patrice Clement  gentoo.org>

 app-editors/scite/files/scite-3.0.1-no-lua.patch | 16 
 1 file changed, 16 deletions(-)

diff --git a/app-editors/scite/files/scite-3.0.1-no-lua.patch 
b/app-editors/scite/files/scite-3.0.1-no-lua.patch
deleted file mode 100644
index d63416a..000
--- a/app-editors/scite/files/scite-3.0.1-no-lua.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -Nru 3.0.1.vanilla/scite/src/SciTEProps.cxx 3.0.1/scite/src/SciTEProps.cxx
 3.0.1.vanilla/scite/src/SciTEProps.cxx 2011-11-30 19:39:41.059801342 
+0100
-+++ 3.0.1/scite/src/SciTEProps.cxx 2011-11-30 19:39:53.211835004 +0100
-@@ -1702,10 +1702,12 @@
- 
- // return the int value of the command name passed in.
- int SciTEBase::GetMenuCommandAsInt(SString commandName) {
-+#ifndef NO_LUA
-   int i = IFaceTable::FindConstant(commandName.c_str());
-   if (i != -1) {
-   return IFaceTable::constants[i].value;
-   }
-+#endif
-   // Otherwise we might have entered a number as command to access a 
"SCI_" command
-   return commandName.value();
- }