1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

deskutils/owncloudclient: update 1.8.4 -> 2.0.1

- Pass maintainer from ports@ to PR submitter
- Regenerate a patch for 2.0.1

PR:		203167
Submitted by:	Yonas Yanfa <yonas@fizk.net>
This commit is contained in:
Jason Unovitch 2015-09-21 12:29:36 +00:00
parent 5024dfbdae
commit e31df43b34
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=397491
3 changed files with 9 additions and 9 deletions

View File

@ -2,11 +2,11 @@
# $FreeBSD$
PORTNAME= owncloudclient
PORTVERSION= 1.8.4
PORTVERSION= 2.0.1
CATEGORIES= deskutils
MASTER_SITES= http://download.owncloud.com/desktop/stable/
MAINTAINER= ports@FreeBSD.org
MAINTAINER= yonas@fizk.net
COMMENT= OwnCloud Desktop Syncing Client
LICENSE= GPLv2

View File

@ -1,2 +1,2 @@
SHA256 (owncloudclient-1.8.4.tar.xz) = ebe5ec7e33de6f2072bcadcd2b316a09b9d583d7d41eb1caf467a48896d81cdb
SIZE (owncloudclient-1.8.4.tar.xz) = 11371640
SHA256 (owncloudclient-2.0.1.tar.xz) = 97e8fe888b8f59b0703fd9fbd54feecbf14c078ac14e9856bf0327f2b41bc287
SIZE (owncloudclient-2.0.1.tar.xz) = 11737332

View File

@ -1,14 +1,14 @@
--- src/gui/generalsettings.cpp.orig 2015-03-16 14:28:58 UTC
--- src/gui/generalsettings.cpp.orig 2015-09-01 13:50:21 UTC
+++ src/gui/generalsettings.cpp
@@ -85,6 +85,7 @@ void GeneralSettings::loadMiscSettings()
@@ -105,6 +105,7 @@ void GeneralSettings::loadMiscSettings()
void GeneralSettings::slotUpdateInfo()
{
+#if 0
if (OCUpdater *updater = dynamic_cast<OCUpdater*>(Updater::instance()))
{
if (OCUpdater *updater = dynamic_cast<OCUpdater*>(Updater::instance())) {
connect(updater, SIGNAL(downloadStateChanged()), SLOT(slotUpdateInfo()), Qt::UniqueConnection);
@@ -93,9 +94,12 @@ void GeneralSettings::slotUpdateInfo()
connect(_ui->restartButton, SIGNAL(clicked()), updater, SLOT(slotStartInstaller()), Qt::UniqueConnection);
@@ -112,9 +113,12 @@ void GeneralSettings::slotUpdateInfo()
_ui->updateStateLabel->setText(updater->statusString());
_ui->restartButton->setVisible(updater->downloadState() == OCUpdater::DownloadComplete);
} else {