From owner-svn-ports-head@freebsd.org Wed Mar 10 14:21:23 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CFE7456A59C; Wed, 10 Mar 2021 14:21:23 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4DwZ4z5bF2z3MqB; Wed, 10 Mar 2021 14:21:23 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2AA410BCE; Wed, 10 Mar 2021 14:21:23 +0000 (UTC) (envelope-from nivit@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12AELNjN000922; Wed, 10 Mar 2021 14:21:23 GMT (envelope-from nivit@FreeBSD.org) Received: (from nivit@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12AELMUE000918; Wed, 10 Mar 2021 14:21:22 GMT (envelope-from nivit@FreeBSD.org) Message-Id: <202103101421.12AELMUE000918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nivit set sender to nivit@FreeBSD.org using -f From: Nicola Vitale Date: Wed, 10 Mar 2021 14:21:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568004 - in head/deskutils/flameshot: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nivit X-SVN-Commit-Paths: in head/deskutils/flameshot: . files X-SVN-Commit-Revision: 568004 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Mar 2021 14:21:23 -0000 Author: nivit Date: Wed Mar 10 14:21:22 2021 New Revision: 568004 URL: https://svnweb.freebsd.org/changeset/ports/568004 Log: - Update to 0.9.0 - Fix path to executable program in dbus service, which prevented from starting flameshot via a subcommand such as gui (see PR https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=253276 ) - Update WWW address in pkg-descr - Remove files/patch-data_dbus_org.flameshot.Flameshot.service.in Changes: https://github.com/flameshot-org/flameshot/releases/tag/v0.9.0 Deleted: head/deskutils/flameshot/files/ Modified: head/deskutils/flameshot/Makefile head/deskutils/flameshot/distinfo head/deskutils/flameshot/pkg-descr (contents, props changed) head/deskutils/flameshot/pkg-plist Modified: head/deskutils/flameshot/Makefile ============================================================================== --- head/deskutils/flameshot/Makefile Wed Mar 10 14:10:24 2021 (r568003) +++ head/deskutils/flameshot/Makefile Wed Mar 10 14:21:22 2021 (r568004) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flameshot -PORTVERSION= 0.8.3 +PORTVERSION= 0.9.0 #PORTREVISION= 0 DISTVERSIONPREFIX= v CATEGORIES= deskutils @@ -17,11 +17,15 @@ USES= cmake compiler:c++11-lang gl qmake qt:5 CMAKE_INSTALL_PREFIX= ${STAGEDIR}/${PREFIX} -GH_ACCOUNT= lupoDharkael +GH_ACCOUNT= flameshot-org USE_GITHUB= yes USE_GL= gl USE_QT= core dbus gui linguist network svg widgets \ buildtools_build + +post-patch: + @${REINPLACE_CMD} -e 's,$${CMAKE_INSTALL_FULL_BINDIR},${LOCALBASE}/bin,1' \ + ${WRKSRC}/data/dbus/org.flameshot.Flameshot.service.in .include Modified: head/deskutils/flameshot/distinfo ============================================================================== --- head/deskutils/flameshot/distinfo Wed Mar 10 14:10:24 2021 (r568003) +++ head/deskutils/flameshot/distinfo Wed Mar 10 14:21:22 2021 (r568004) @@ -1,3 +1,3 @@ -TIMESTAMP = 1601370363 -SHA256 (lupoDharkael-flameshot-v0.8.3_GH0.tar.gz) = 73b0e52d389518b58e4488931e14ef40d611a2bd8661c06e187c211fb947fd05 -SIZE (lupoDharkael-flameshot-v0.8.3_GH0.tar.gz) = 2216752 +TIMESTAMP = 1615299396 +SHA256 (flameshot-org-flameshot-v0.9.0_GH0.tar.gz) = 67e0b578ef8a68228e758cb59395bb7404b5c176e9dbc3ca2d83a63f154a6f22 +SIZE (flameshot-org-flameshot-v0.9.0_GH0.tar.gz) = 7659641 Modified: head/deskutils/flameshot/pkg-descr ============================================================================== --- head/deskutils/flameshot/pkg-descr Wed Mar 10 14:10:24 2021 (r568003) +++ head/deskutils/flameshot/pkg-descr Wed Mar 10 14:21:22 2021 (r568004) @@ -8,4 +8,4 @@ Features: * DBus interface. * Upload to Imgur. -WWW: https://github.com/lupoDharkael/flameshot +WWW: https://flameshot.org/ Modified: head/deskutils/flameshot/pkg-plist ============================================================================== --- head/deskutils/flameshot/pkg-plist Wed Mar 10 14:10:24 2021 (r568003) +++ head/deskutils/flameshot/pkg-plist Wed Mar 10 14:21:22 2021 (r568004) @@ -1,5 +1,5 @@ bin/flameshot -share/applications/flameshot.desktop +share/applications/org.flameshot.Flameshot.desktop share/bash-completion/completions/flameshot share/dbus-1/interfaces/org.flameshot.Flameshot.xml share/dbus-1/services/org.flameshot.Flameshot.service @@ -7,7 +7,7 @@ share/dbus-1/services/org.flameshot.Flameshot.service %%DATADIR%%/translations/Internationalization_cs.qm %%DATADIR%%/translations/Internationalization_de_DE.qm %%DATADIR%%/translations/Internationalization_es.qm -%%DATADIR%%/translations/Internationalization_eu_ES.qm +%%DATADIR%%/translations/Internationalization_eu.qm %%DATADIR%%/translations/Internationalization_fr.qm %%DATADIR%%/translations/Internationalization_hu.qm %%DATADIR%%/translations/Internationalization_it_IT.qm @@ -25,9 +25,13 @@ share/dbus-1/services/org.flameshot.Flameshot.service %%DATADIR%%/translations/Internationalization_tr.qm %%DATADIR%%/translations/Internationalization_uk.qm %%DATADIR%%/translations/Internationalization_zh_CN.qm +%%DATADIR%%/translations/Internationalization_zh_HK.qm %%DATADIR%%/translations/Internationalization_zh_TW.qm share/icons/hicolor/128x128/apps/flameshot.png +share/icons/hicolor/128x128/apps/org.flameshot.Flameshot.png share/icons/hicolor/48x48/apps/flameshot.png +share/icons/hicolor/48x48/apps/org.flameshot.Flameshot.png share/icons/hicolor/scalable/apps/flameshot.svg -share/metainfo/flameshot.metainfo.xml +share/icons/hicolor/scalable/apps/org.flameshot.Flameshot.svg +share/metainfo/org.flameshot.Flameshot.metainfo.xml share/zsh/site-functions/_flameshot