databases/redisdesktopmanager: update to 0.9.9

This commit is contained in:
Steve Wills 2018-12-04 19:22:07 +00:00
parent a5a18c2816
commit 7d9723f2da
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=486631
6 changed files with 41 additions and 27 deletions

View file

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= redisdesktopmanager
PORTVERSION= 0.9.6
PORTREVISION= 1
PORTVERSION= 0.9.9
CATEGORIES= databases
MAINTAINER= swills@FreeBSD.org
@ -27,8 +26,7 @@ GH_TUPLE= \
uglide:RedisDesktopManager:${PORTVERSION}:DEFAULT/RedisDesktopManager-${PORTVERSION} \
benlau:asyncfuture:4579d53:asyncfuture/3rdparty/asyncfuture \
RedisDesktop:CrashReporter:0202f9b:crashreporter/3rdparty/crashreporter \
easylogging:easyloggingpp:f926802:easylogging/3rdparty/easyloggingpp \
uglide:qredisclient:bede971:qredisclient/3rdparty/qredisclient \
uglide:qredisclient:e645999:qredisclient/3rdparty/qredisclient \
sijk:qt-unix-signals:d6a1d12:qtunixsignals/3rdparty/qt-unix-signals \
uglide:qsshclient:6fa7fb7:qsshclient/3rdparty/qredisclient/3rdparty/qsshclient \
redis:hiredis:53c3243:hiredis/3rdparty/qredisclient/3rdparty/hiredis \

View file

@ -1,18 +1,14 @@
TIMESTAMP = 1537573499
SHA256 (uglide-RedisDesktopManager-0.9.6_GH0.tar.gz) = 672681d7a923d627f462be8bf8c3f0872d808e042503b2a5fe727fa878e520b1
SIZE (uglide-RedisDesktopManager-0.9.6_GH0.tar.gz) = 1997779
TIMESTAMP = 1543593147
SHA256 (uglide-RedisDesktopManager-0.9.9_GH0.tar.gz) = 8f7244813d5a82bc686a3af9f98e1372479c9861d724ba7e7a2b162ccf35d9bb
SIZE (uglide-RedisDesktopManager-0.9.9_GH0.tar.gz) = 1980287
SHA256 (benlau-asyncfuture-4579d53_GH0.tar.gz) = ce5a3a4bc61f22f182eb8f932a3736289fc541e7487244fd57c93a141a038fe4
SIZE (benlau-asyncfuture-4579d53_GH0.tar.gz) = 31928
SHA256 (RedisDesktop-CrashReporter-0202f9b_GH0.tar.gz) = 4b0745dd12449716279a618eab0c8706422a0f67af680d0bf71471f9dbd371cb
SIZE (RedisDesktop-CrashReporter-0202f9b_GH0.tar.gz) = 14232
SHA256 (easylogging-easyloggingpp-f926802_GH0.tar.gz) = 362294c79de7a5dfa76a56cbfcdcaf99e21bbd05b19ef5b76700fd576a2e1ff2
SIZE (easylogging-easyloggingpp-f926802_GH0.tar.gz) = 463948
SHA256 (uglide-qredisclient-bede971_GH0.tar.gz) = 37b1e76ca89ca45fd0dcf56df4f2c90b3e5f4c2b441276937f7581804d952a16
SIZE (uglide-qredisclient-bede971_GH0.tar.gz) = 215454
SHA256 (uglide-qredisclient-e645999_GH0.tar.gz) = ceda742955aa46d7cd32334c610b608f5274fa022eb5d2044a36577caadaa640
SIZE (uglide-qredisclient-e645999_GH0.tar.gz) = 214348
SHA256 (sijk-qt-unix-signals-d6a1d12_GH0.tar.gz) = 8bbc578430ab2fd6665ff2f2f6fcf402b3346b6d3cdfcc16e8c1d8f5a8f75ea2
SIZE (sijk-qt-unix-signals-d6a1d12_GH0.tar.gz) = 3792
SHA256 (google-breakpad-9fecc95_GH0.tar.gz) = e4bd6118f84f4a0cf89a035ff9e4ac65542fb12d3e69e89c80d5ba3f127d2ed6
SIZE (google-breakpad-9fecc95_GH0.tar.gz) = 5208769
SHA256 (uglide-qsshclient-6fa7fb7_GH0.tar.gz) = b9eaed71f8cae6d4fa1e6cf7de979ba8a5d1a14e2681cf1a0f2bfc42d5960ea1
SIZE (uglide-qsshclient-6fa7fb7_GH0.tar.gz) = 10446
SHA256 (redis-hiredis-53c3243_GH0.tar.gz) = 38e38efff19715d5e2f49c77b9db35f7cd005d66ae3d0944630424c64cf3950d

View file

@ -1,6 +1,6 @@
--- 3rdparty/3rdparty.pri.orig 2018-09-22 00:19:48 UTC
--- 3rdparty/3rdparty.pri.orig 2018-11-30 15:24:26 UTC
+++ 3rdparty/3rdparty.pri
@@ -81,15 +81,11 @@ unix:!macx { # ubuntu & debian
@@ -88,15 +88,11 @@ unix:!macx { # ubuntu & debian
#QMAKE_LFLAGS = -Wl,-rpath=/home/user/Qt5.9.3/5.9.3/gcc_64/lib
}

View file

@ -1,11 +1,20 @@
--- src/app/app.cpp.orig 2018-08-31 12:53:12 UTC
--- src/app/app.cpp.orig 2018-11-27 08:26:54 UTC
+++ src/app/app.cpp
@@ -224,8 +224,6 @@ void Application::initConnectionsManager()
void Application::initUpdater()
{
- m_updater = QSharedPointer<Updater>(new Updater());
- connect(m_updater.data(), SIGNAL(updateUrlRetrived(QString &)), this, SLOT(OnNewUpdateAvailable(QString &)));
@@ -37,7 +37,6 @@ Application::Application(int& argc, char** argv)
processCmdArgs();
initAppFonts();
initRedisClient();
- initUpdater();
installTranslator();
}
void Application::installTranslator()
@@ -203,9 +202,6 @@ void Application::initQml() {
}
void Application::initUpdater() {
- m_updater = QSharedPointer<Updater>(new Updater());
- connect(m_updater.data(), SIGNAL(updateUrlRetrived(QString&)), this,
- SLOT(OnNewUpdateAvailable(QString&)));
}
void Application::installTranslator() {

View file

@ -0,0 +1,11 @@
--- src/modules/server-stats/serverstatsmodel.cpp.orig 2018-11-30 15:43:21 UTC
+++ src/modules/server-stats/serverstatsmodel.cpp
@@ -21,7 +21,7 @@ ServerStats::Model::Model(QSharedPointer<RedisClient::
return;
}
- m_serverInfo = RedisClient::ServerInfo::fromString(r.toRawString(-1))
+ m_serverInfo = RedisClient::ServerInfo::fromString(r.toRawString())
.parsed.toVariantMap();
emit serverInfoChanged();
});

View file

@ -1,6 +1,6 @@
--- src/rdm.pro.orig 2018-08-31 12:53:12 UTC
--- src/rdm.pro.orig 2018-11-27 08:26:54 UTC
+++ src/rdm.pro
@@ -26,8 +26,6 @@ SOURCES += \
@@ -25,8 +25,6 @@ SOURCES += \
$$PWD/modules/connections-tree/items/*.cpp \
$$PWD/modules/console/*.cpp \
$$PWD/modules/value-editor/*.cpp \
@ -9,7 +9,7 @@
$$PWD/modules/bulk-operations/*.cpp \
$$PWD/modules/common/*.cpp \
$$PWD/modules/server-stats/*.cpp \
@@ -42,8 +40,6 @@ HEADERS += \
@@ -41,8 +39,6 @@ HEADERS += \
$$PWD/modules/connections-tree/items/*.h \
$$PWD/modules/console/*.h \
$$PWD/modules/value-editor/*.h \
@ -18,7 +18,7 @@
$$PWD/modules/*.h \
$$PWD/modules/bulk-operations/*.h \
$$PWD/modules/common/*.h \
@@ -97,8 +93,8 @@ unix:!macx { # ubuntu & debian
@@ -96,8 +92,8 @@ unix:!macx { # ubuntu & debian
QMAKE_CXXFLAGS += -Wno-sign-compare