diff options
author | 2016-03-19 19:41:10 +0100 | |
---|---|---|
committer | 2016-03-19 22:47:15 +0000 | |
commit | 803b02d956be4bb28d1a27465e86ab9a0ef09eef (patch) | |
tree | 67a4c93d766f831b1fd39dc96400771860810979 /dev-db/sqlitestudio/files | |
parent | dev-perl/Perl-Tidy: Bump to version 20160302.0.0 (diff) | |
download | gentoo-803b02d956be4bb28d1a27465e86ab9a0ef09eef.tar.gz gentoo-803b02d956be4bb28d1a27465e86ab9a0ef09eef.tar.bz2 gentoo-803b02d956be4bb28d1a27465e86ab9a0ef09eef.zip |
dev-db/sqlitestudio: new package
Closes: https://github.com/gentoo/gentoo/pull/1088
Diffstat (limited to 'dev-db/sqlitestudio/files')
3 files changed, 63 insertions, 0 deletions
diff --git a/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-portable.patch b/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-portable.patch new file mode 100644 index 000000000000..558a84231b81 --- /dev/null +++ b/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-portable.patch @@ -0,0 +1,11 @@ +--- a/SQLiteStudio3/sqlitestudio/sqlitestudio.pro 2015-11-24 20:09:29.000000000 +0100 ++++ b/SQLiteStudio3/sqlitestudio/sqlitestudio.pro 2016-01-20 15:04:46.700926391 +0100 +@@ -25,7 +25,7 @@ + + CONFIG += c++11 + QMAKE_CXXFLAGS += -pedantic +-linux|portable { ++portable { + QMAKE_LFLAGS += -Wl,-rpath,./lib + } + diff --git a/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-qt5_5-QDataStream.patch b/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-qt5_5-QDataStream.patch new file mode 100644 index 000000000000..c42160c52f07 --- /dev/null +++ b/dev-db/sqlitestudio/files/sqlitestudio-3.0.6-qt5_5-QDataStream.patch @@ -0,0 +1,30 @@ +--- a/SQLiteStudio3/coreSQLiteStudio/db/db.cpp 2015-05-11 23:22:41.000000000 +0200 ++++ b/SQLiteStudio3/coreSQLiteStudio/db/db.cpp 2016-01-20 02:21:00.350160645 +0100 +@@ -1,6 +1,7 @@ + #include "db.h" + #include <QMetaEnum> + #include <QDebug> ++#include <QDataStream> + + Db::Db() + { +--- a/SQLiteStudio3/coreSQLiteStudio/common/utils.cpp 2015-05-11 23:22:41.000000000 +0200 ++++ b/SQLiteStudio3/coreSQLiteStudio/common/utils.cpp 2016-01-20 01:46:22.113263710 +0100 +@@ -11,6 +11,7 @@ + #include <QDebug> + #include <QRegularExpression> + #include <QDir> ++#include <QDataStream> + + #ifdef Q_OS_LINUX + #include <sys/utsname.h> +--- a/SQLiteStudio3/sqlitestudiocli/cli_config.h 2015-05-11 23:22:40.000000000 +0200 ++++ b/SQLiteStudio3/sqlitestudiocli/cli_config.h 2016-01-20 02:45:11.393819294 +0100 +@@ -2,6 +2,7 @@ + #define CLI_CONFIG_H + + #include "config_builder.h" ++#include <QDataStream> + + namespace CliResultsDisplay + { diff --git a/dev-db/sqlitestudio/files/sqlitestudio-3.0.7-paths.patch b/dev-db/sqlitestudio/files/sqlitestudio-3.0.7-paths.patch new file mode 100644 index 000000000000..59d8c0f187aa --- /dev/null +++ b/dev-db/sqlitestudio/files/sqlitestudio-3.0.7-paths.patch @@ -0,0 +1,22 @@ +--- a/Plugins/DbAndroid/DbAndroid.pro 2015-11-24 20:09:41.000000000 +0100 ++++ a/Plugins/DbAndroid/DbAndroid.pro 2016-01-20 13:39:02.436869035 +0100 +@@ -6,7 +6,7 @@ + + QT += widgets network + +-include($$PWD/../../../sqlitestudio/SQLiteStudio3/plugins.pri) ++include($$PWD/../../SQLiteStudio3/plugins.pri) + + TARGET = DbAndroid + TEMPLATE = lib +--- a/Plugins/ScriptingTcl/ScriptingTcl.pro ++++ b/Plugins/ScriptingTcl/ScriptingTcl.pro +@@ -35,7 +35,7 @@ linux: { + + # Find tclConfig.sh + TCL_CONFIG_DIR = $$system(echo "puts [info library]" | tclsh) +- TCL_CONFIG = $$TCL_CONFIG_DIR/tclConfig.sh ++ TCL_CONFIG = $$TCL_CONFIG_DIR/../tclConfig.sh + message("Looking for $$TCL_CONFIG") + !exists($$TCL_CONFIG) { + # Debian case |