git: 595b8a8a03d1 - main - www/nextcloud: Update to 34.0.3
Bernard Spil <[email protected]>
| Newsgroups | gmane.os.freebsd.devel.cvs.ports |
|---|---|
| Message-ID | <[email protected]> |
The branch main has been updated by brnrd: URL: https://cgit.FreeBSD.org/ports/commit/?id=595b8a8a03d1af83e2f77d1551ade32a6e0b8e69 commit 595b8a8a03d1af83e2f77d1551ade32a6e0b8e69 Author: Bernard Spil <[email protected]> AuthorDate: 2026-08-13 19:26:19 +0000 Commit: Bernard Spil <[email protected]> CommitDate: 2026-08-13 19:26:19 +0000 www/nextcloud: Update to 34.0.3 --- www/nextcloud/Makefile | 3 +-- www/nextcloud/distinfo | 6 +++--- www/nextcloud/files/patch-PR296323 | 25 ------------------------- 3 files changed, 4 insertions(+), 30 deletions(-) diff --git a/www/nextcloud/Makefile b/www/nextcloud/Makefile index ebb832b3db84..704dfcbd099d 100644 --- a/www/nextcloud/Makefile +++ b/www/nextcloud/Makefile @@ -1,6 +1,5 @@ PORTNAME= nextcloud -PORTVERSION= 34.0.2 -PORTREVISION= 1 +PORTVERSION= 34.0.3 CATEGORIES= www MASTER_SITES= https://github.com/nextcloud-releases/server/releases/download/v${PORTVERSION}/ \ https://download.nextcloud.com/server/releases/ diff --git a/www/nextcloud/distinfo b/www/nextcloud/distinfo index ca26b6bd04ec..e25bfc5d32e2 100644 --- a/www/nextcloud/distinfo +++ b/www/nextcloud/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1784880502 -SHA256 (nextcloud/nextcloud-34.0.2.tar.bz2) = 41ce31df12cc81090c3d07fe0e8b90bde61c92b18ae80e4d648bad43d7991101 -SIZE (nextcloud/nextcloud-34.0.2.tar.bz2) = 280702344 +TIMESTAMP = 1786648900 +SHA256 (nextcloud/nextcloud-34.0.3.tar.bz2) = d7ed36ac0e14a2d9bbd167d6f6d4fc498f0f39fcccdf304e67e35bfc42e4506d +SIZE (nextcloud/nextcloud-34.0.3.tar.bz2) = 281124243 diff --git a/www/nextcloud/files/patch-PR296323 b/www/nextcloud/files/patch-PR296323 deleted file mode 100644 index d0b30bb2248c..000000000000 --- a/www/nextcloud/files/patch-PR296323 +++ /dev/null @@ -1,25 +0,0 @@ ---- core/BackgroundJobs/CleanupBackgroundJobsJob.php.orig 2026-06-25 12:29:12 UTC -+++ core/BackgroundJobs/CleanupBackgroundJobsJob.php -@@ -47,10 +47,8 @@ class CleanupBackgroundJobsJob extends TimedJob { - if ($job->serverId !== $currentServerId) { - continue; - } -- $output = []; -- $result = 0; -- exec('ps -p ' . escapeshellarg((string)$job->pid) . ' -o cmd', $output, $result); -- if (count($output) === 1 && current($output) === 'CMD' && $result === 1) { -+ $processExists = posix_kill($job->pid, 0) || posix_get_last_error() === 1 /* EPERM */; -+ if (!$processExists) { - // Process doesn't exists anymore - $maxDuration = (new DateTimeImmutable())->diff($job->startedAt); - $maxDuration ---- lib/private/BackgroundJob/JobRuns.php.orig 2026-06-29 20:06:31 UTC -+++ lib/private/BackgroundJob/JobRuns.php -@@ -63,7 +63,6 @@ final readonly class JobRuns implements IJobRuns { - - public function deleteBefore(int $timestamp): int { - $beforeSnowflake = $this->snowflakeGenerator->minForTimeId($timestamp); -- $beforeSnowflake = '91480652934574081'; - $qb = $this->connection->getQueryBuilder(); - $result = $qb - ->delete(self::TABLE)