From owner-svn-ports-head@freebsd.org Fri Oct 9 01:46:54 2020 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 E5ADA4362ED; Fri, 9 Oct 2020 01:46:54 +0000 (UTC) (envelope-from swills@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C6rXZ5cP9z3Tx6; Fri, 9 Oct 2020 01:46:54 +0000 (UTC) (envelope-from swills@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 85B1412194; Fri, 9 Oct 2020 01:46:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0991kshK035959; Fri, 9 Oct 2020 01:46:54 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0991krWu035954; Fri, 9 Oct 2020 01:46:53 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202010090146.0991krWu035954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Fri, 9 Oct 2020 01:46:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r551738 - in head/devel: . gammaray X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel: . gammaray X-SVN-Commit-Revision: 551738 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.33 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: Fri, 09 Oct 2020 01:46:55 -0000 Author: swills Date: Fri Oct 9 01:46:53 2020 New Revision: 551738 URL: https://svnweb.freebsd.org/changeset/ports/551738 Log: devel/gammaray: create port GammaRay is a software introspection tool for Qt applications developed by KDAB. Leveraging the QObject introspection mechanism it allows you to observe and manipulate your application at runtime. This works both locally on your workstation and remotely on an embedded target. WWW: https://www.kdab.com/development-resources/qt-tools/gammaray/ Added: head/devel/gammaray/ head/devel/gammaray/Makefile (contents, props changed) head/devel/gammaray/distinfo (contents, props changed) head/devel/gammaray/pkg-descr (contents, props changed) head/devel/gammaray/pkg-plist (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Oct 9 00:20:27 2020 (r551737) +++ head/devel/Makefile Fri Oct 9 01:46:53 2020 (r551738) @@ -698,6 +698,7 @@ SUBDIR += ga SUBDIR += gaa SUBDIR += gamin + SUBDIR += gammaray SUBDIR += gauche-readline SUBDIR += gaul SUBDIR += gb Added: head/devel/gammaray/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gammaray/Makefile Fri Oct 9 01:46:53 2020 (r551738) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= gammaray +PORTVERSION= 2.11.2 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= swills@FreeBSD.org +COMMENT= Debugging tool for Qt-application + +USES= cmake kde:5 pkgconfig qt:5 + +USE_QT= 3d concurrent core declarative designer gui help linguisttools \ + location network printsupport script scripttools svg uiplugin \ + webchannel webengine widgets xml buildtools_build qdoc_build \ + qmake_build +USE_KDE= coreaddons syntaxhighlighting + +USE_GITHUB= yes +GH_ACCOUNT= KDAB +GH_PROJECT= GammaRay + +PLIST_SUB+= ARCH=${ARCH} \ + PORTMAJMIN=${PORTVERSION:C/(.*)\..*/\1/} \ + PORTVERSION=${PORTVERSION} \ + QTVER=${QT5_VERSION:C/\./_/:C/\..*//} + +.include Added: head/devel/gammaray/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gammaray/distinfo Fri Oct 9 01:46:53 2020 (r551738) @@ -0,0 +1,3 @@ +TIMESTAMP = 1602181818 +SHA256 (KDAB-GammaRay-v2.11.2_GH0.tar.gz) = faaaa3354d6031b4796eaaf1699a04543d29875971a751c09c7d1775e1df7ce9 +SIZE (KDAB-GammaRay-v2.11.2_GH0.tar.gz) = 10334467 Added: head/devel/gammaray/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gammaray/pkg-descr Fri Oct 9 01:46:53 2020 (r551738) @@ -0,0 +1,6 @@ +GammaRay is a software introspection tool for Qt applications developed by +KDAB. Leveraging the QObject introspection mechanism it allows you to observe +and manipulate your application at runtime. This works both locally on your +workstation and remotely on an embedded target. + +WWW: https://www.kdab.com/development-resources/qt-tools/gammaray/ Added: head/devel/gammaray/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gammaray/pkg-plist Fri Oct 9 01:46:53 2020 (r551738) @@ -0,0 +1,179 @@ +bin/gammaray +include/gammaray/client/clientconnectionmanager.h +include/gammaray/client/gammaray_client_export.h +include/gammaray/client/processtracker.h +include/gammaray/common/commonutils.h +include/gammaray/common/endpoint.h +include/gammaray/common/enumdefinition.h +include/gammaray/common/enumrepository.h +include/gammaray/common/enumvalue.h +include/gammaray/common/gammaray_common_export.h +include/gammaray/common/metatypedeclarations.h +include/gammaray/common/modelroles.h +include/gammaray/common/objectbroker.h +include/gammaray/common/objectid.h +include/gammaray/common/objectidfilterproxymodel.h +include/gammaray/common/objectmodel.h +include/gammaray/common/paths.h +include/gammaray/common/probecontrollerinterface.h +include/gammaray/common/propertycontrollerinterface.h +include/gammaray/common/protocol.h +include/gammaray/common/sourcelocation.h +include/gammaray/common/translator.h +include/gammaray/core/enumrepositoryserver.h +include/gammaray/core/enumutil.h +include/gammaray/core/gammaray_core_export.h +include/gammaray/core/metaobject.h +include/gammaray/core/metaobjectrepository.h +include/gammaray/core/metaproperty.h +include/gammaray/core/objectdataprovider.h +include/gammaray/core/objectmodelbase.h +include/gammaray/core/objecttypefilterproxymodel.h +include/gammaray/core/probe.h +include/gammaray/core/probecontroller.h +include/gammaray/core/propertycontroller.h +include/gammaray/core/propertycontrollerextension.h +include/gammaray/core/signalspycallbackset.h +include/gammaray/core/singlecolumnobjectproxymodel.h +include/gammaray/core/toolfactory.h +include/gammaray/core/typetraits.h +include/gammaray/core/util.h +include/gammaray/core/varianthandler.h +include/gammaray/launcher/attachdialog.h +include/gammaray/launcher/connectpage.h +include/gammaray/launcher/gammaray_launcher_export.h +include/gammaray/launcher/gammaray_launcher_ui_export.h +include/gammaray/launcher/launcher.h +include/gammaray/launcher/launcherfinder.h +include/gammaray/launcher/launcherwindow.h +include/gammaray/launcher/launchoptions.h +include/gammaray/launcher/networkdiscoverymodel.h +include/gammaray/launcher/probeabi.h +include/gammaray/launcher/probeabidetector.h +include/gammaray/launcher/probefinder.h +include/gammaray/ui/clientdecorationidentityproxymodel.h +include/gammaray/ui/clienttoolmanager.h +include/gammaray/ui/gammaray_ui_export.h +include/gammaray/ui/propertyeditordelegate.h +include/gammaray/ui/propertywidget.h +include/gammaray/ui/propertywidgettab.h +include/gammaray/ui/tooluifactory.h +include/gammaray/ui/uiintegration.h +include/gammaray/ui/uiresources.h +include/gammaray/ui/uistatemanager.h +lib/cmake/GammaRay/GammaRayConfig.cmake +lib/cmake/GammaRay/GammaRayConfigVersion.cmake +lib/cmake/GammaRay/GammaRayMacros.cmake +lib/cmake/GammaRay/GammaRayTarget-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/GammaRay/GammaRayTarget.cmake +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_3dinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_3dinspector.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_actioninspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_actioninspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_codecbrowser_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_codecbrowser_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_eventmonitor_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_eventmonitor_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_fontbrowser_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_fontbrowser_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_guisupport_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_guisupport.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_inprocessui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_kjobtracker_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_kjobtracker_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_localeinspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_localeinspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_mimetypes_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_mimetypes.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_modelinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_modelinspector.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_network_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_network.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_objectvisualizer_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_positioning_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_positioning.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_probe.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_qmlsupport_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_qmlsupport.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_qtivi_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_quickinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_quickinspector.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_quickwidgetsupport.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_sceneinspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_sceneinspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_scriptenginedebugger_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_scriptenginedebugger_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_signalmonitor_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_signalmonitor.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_statemachineviewer_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_styleinspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_styleinspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_sysinfo_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_sysinfo_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_textdocumentinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_textdocumentinspector.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_timertop_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_timertop_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_translatorinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_translatorinspector.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_webinspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_webinspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_widgetinspector_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_widgetinspector_ui_plugin.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/gammaray_wlcompositorinspector_ui.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/libgammaray_widget_export_actions.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/styles/gammaray_injector_style.so +lib/gammaray/%%PORTMAJMIN%%/qt%%QTVER%%-%%ARCH%%/target/position/libgammaray_geopositioninfosource.so +lib/gammaray/libexec/gammaray-client +lib/gammaray/libexec/gammaray-launcher +lib/libgammaray_client.so +lib/libgammaray_client.so.%%PORTVERSION%% +lib/libgammaray_common-qt%%QTVER%%-%%ARCH%%.so +lib/libgammaray_common-qt%%QTVER%%-%%ARCH%%.so.%%PORTVERSION%% +lib/libgammaray_core-qt%%QTVER%%-%%ARCH%%.so +lib/libgammaray_core-qt%%QTVER%%-%%ARCH%%.so.%%PORTVERSION%% +lib/libgammaray_kitemmodels-qt%%QTVER%%-%%ARCH%%.so +lib/libgammaray_kitemmodels-qt%%QTVER%%-%%ARCH%%.so.%%PORTVERSION%% +lib/libgammaray_kuserfeedback.so +lib/libgammaray_kuserfeedback.so.%%PORTVERSION%% +lib/libgammaray_launcher_ui.so +lib/libgammaray_launcher_ui.so.%%PORTVERSION%% +lib/libgammaray_launcher.so +lib/libgammaray_launcher.so.%%PORTVERSION%% +lib/libgammaray_ui-qt%%QTVER%%-%%ARCH%%.so +lib/libgammaray_ui-qt%%QTVER%%-%%ARCH%%.so.%%PORTVERSION%% +mkspecs/modules/qt_GammaRayClient.pri +mkspecs/modules/qt_GammaRayCommon.pri +mkspecs/modules/qt_GammaRayCore.pri +mkspecs/modules/qt_GammaRayKItemModels.pri +mkspecs/modules/qt_GammaRayLauncher.pri +mkspecs/modules/qt_GammaRayLauncherUi.pri +mkspecs/modules/qt_GammaRayUi.pri +share/appdata/GammaRay.appdata.xml +share/applications/GammaRay.desktop +share/icons/hicolor/16x16/apps/GammaRay.png +share/icons/hicolor/16x16@2/apps/GammaRay.png +share/icons/hicolor/16x16@3/apps/GammaRay.png +share/icons/hicolor/24x24/apps/GammaRay.png +share/icons/hicolor/24x24@2/apps/GammaRay.png +share/icons/hicolor/24x24@3/apps/GammaRay.png +share/icons/hicolor/32x32/apps/GammaRay.png +share/icons/hicolor/32x32@2/apps/GammaRay.png +share/icons/hicolor/32x32@3/apps/GammaRay.png +share/icons/hicolor/48x48/apps/GammaRay.png +share/icons/hicolor/48x48@2/apps/GammaRay.png +share/icons/hicolor/48x48@3/apps/GammaRay.png +share/icons/hicolor/64x64/apps/GammaRay.png +share/icons/hicolor/64x64@2/apps/GammaRay.png +share/icons/hicolor/64x64@3/apps/GammaRay.png +share/icons/hicolor/128x128/apps/GammaRay.png +share/icons/hicolor/128x128@2/apps/GammaRay.png +share/icons/hicolor/128x128@3/apps/GammaRay.png +share/icons/hicolor/256x256/apps/GammaRay.png +share/icons/hicolor/256x256@2/apps/GammaRay.png +share/icons/hicolor/256x256@3/apps/GammaRay.png +share/icons/hicolor/512x512/apps/GammaRay.png +share/icons/hicolor/512x512@2/apps/GammaRay.png +share/man/man1/gammaray.1.gz +%%DATADIR%%/translations/gammaray_de.qm +%%DATADIR%%/translations/gammaray_en.qm