summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorb08x2023-02-27 11:53:51 -0500
committerb08x2023-02-27 11:53:51 -0500
commit2095f1cc13e876cb7184d6349b976b4dc404b989 (patch)
tree36b843e016c4688a66f14e75172825e8a2e28cee
parent57db86782e3749a685f3b26361726aca3cf55c2a (diff)
downloadaur-2095f1cc13e876cb7184d6349b976b4dc404b989.tar.gz
removing old patches
-rw-r--r--bipscript-ide-v0.4.patch24
-rw-r--r--bipscript-ide-v0.5.patch28
-rw-r--r--bipscript-ide-v0.7.patch11
3 files changed, 0 insertions, 63 deletions
diff --git a/bipscript-ide-v0.4.patch b/bipscript-ide-v0.4.patch
deleted file mode 100644
index 648ee8248bff..000000000000
--- a/bipscript-ide-v0.4.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -ur ./bipscript-ide-0.4/mainwindow.cpp ./bipscript-ide/mainwindow.cpp
---- ./bipscript-ide-0.4/mainwindow.cpp 2019-01-30 09:43:32.000000000 -0800
-+++ ./bipscript-ide/mainwindow.cpp 2019-02-03 13:08:55.929997909 -0800
-@@ -206,7 +206,7 @@
- QString path(url.path());
- createOrOpenEditor(path);
- if(url.hasQuery()) {
-- int column = QString(url.encodedQuery()).toInt();
-+ int column = QString(url.query()).toInt();
- currentEditor()->focusLine(url.port(), column);
- } else {
- currentEditor()->focusLine(url.port());
-diff -ur ./bipscript-ide-0.4/outputwidget.cpp ./bipscript-ide/outputwidget.cpp
---- ./bipscript-ide-0.4/outputwidget.cpp 2019-01-30 09:43:32.000000000 -0800
-+++ ./bipscript-ide/outputwidget.cpp 2019-02-03 13:08:55.929997909 -0800
-@@ -82,7 +82,7 @@
- href.setHost("[parse]");
- href.setPort(perrorExp.cap(2).toInt());
- href.setPath(perrorExp.cap(1));
-- href.setEncodedQuery(perrorExp.cap(3).toAscii());
-+ href.setQuery(perrorExp.cap(3));
- anchorFormat.setAnchorHref(href.toString());
- // add link to document
- QTextCursor cursor(ui->stdoutBrowser->document());
diff --git a/bipscript-ide-v0.5.patch b/bipscript-ide-v0.5.patch
deleted file mode 100644
index 2827a4611a1b..000000000000
--- a/bipscript-ide-v0.5.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -ur --new-file ./bipscript-ide-0.5/bipscript-ide.pro ./bipscript-ide/bipscript-ide.pro
---- ./bipscript-ide-0.5/bipscript-ide.pro 2019-03-15 22:05:43.799996951 -0700
-+++ ./bipscript-ide/bipscript-ide.pro 2019-03-15 22:21:29.773330279 -0700
-@@ -49,14 +49,6 @@
- synhighlighter.h \
- version.h
-
--# version header
--version.target = version.h
--version.commands = '$$PWD/version.sh'
--version.depends = FORCE
--
--PRE_TARGETDEPS += version.h
--QMAKE_EXTRA_TARGETS += version
--
- unix {
- INCLUDEPATH += $$PWD/jack
- HEADERS += \
-diff -ur --new-file ./bipscript-ide-0.5/version.h ./bipscript-ide/version.h
---- ./bipscript-ide-0.5/version.h 1969-12-31 16:00:00.000000000 -0800
-+++ ./bipscript-ide/version.h 2019-03-15 22:22:48.196663613 -0700
-@@ -0,0 +1,6 @@
-+#ifndef VERSION_H
-+#define VERSION_H
-+
-+#define BIPSCRIPT_IDE_VERSION "v0.5"
-+
-+#endif
diff --git a/bipscript-ide-v0.7.patch b/bipscript-ide-v0.7.patch
deleted file mode 100644
index 3065ee2fc642..000000000000
--- a/bipscript-ide-v0.7.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./bipscript-ide-0.7/version.sh 2019-04-24 09:56:03.000000000 -0700
-+++ ../bipscript-ide/version.sh 2019-04-24 16:11:58.923333312 -0700
-@@ -4,7 +4,7 @@
-
- version = `git describe --tags`.chomp
- if version.empty? then
-- version = `cat version`.chomp
-+ version = ARGV[0]
- end
-
- template = "#ifndef VERSION_H