Skip to content

Commit

Permalink
New package: gammaray-2.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toluschr authored and Johnnynator committed Jul 14, 2020
1 parent ca0dafe commit f129dce
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
1 change: 1 addition & 0 deletions srcpkgs/gammaray-devel
4 changes: 4 additions & 0 deletions srcpkgs/gammaray/INSTALL.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
The gdb and lldb injectors require kernel.yama.ptrace_scope to be set to 0.
This might reduce system security, as it allows regular users to inject into a non-child process.

# echo "kernel.yama.ptrace_scope=0" >> /etc/sysctl.conf
22 changes: 22 additions & 0 deletions srcpkgs/gammaray/patches/fix-qt5.15.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
--- plugins/network/networksupport.cpp
+++ plugins/network/networksupport.cpp
@@ -89,7 +89,9 @@ Q_DECLARE_METATYPE(QNetworkInterface::InterfaceFlags)
#endif
Q_DECLARE_METATYPE(QNetworkProxy::Capabilities)
Q_DECLARE_METATYPE(QNetworkProxy::ProxyType)
+#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
Q_DECLARE_METATYPE(QSocketNotifier::Type)
+#endif
#ifndef QT_NO_SSL
Q_DECLARE_METATYPE(QSsl::KeyAlgorithm)
Q_DECLARE_METATYPE(QSsl::KeyType)
--- plugins/widgetinspector/overlaywidget.h
+++ plugins/widgetinspector/overlaywidget.h
@@ -30,6 +30,7 @@
#define GAMMARAY_WIDGETINSPECTOR_OVERLAYWIDGET_H

#include <QLayout>
+#include <QPainterPath>
#include <QPointer>
#include <QWidget>

33 changes: 33 additions & 0 deletions srcpkgs/gammaray/template
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Template file for 'gammaray'
pkgname=gammaray
version=2.11.1
revision=1
build_style=cmake
configure_args="-DGAMMARAY_INSTALL_QT_LAYOUT=true -DECM_MKSPECS_INSTALL_DIR=/usr/lib/qt5/mkspecs/modules -DPLUGIN_INSTALL_DIR=/usr/lib/qt5/plugins/gammaray"
hostmakedepends="qt5-host-tools qt5-devel"
makedepends="qt5-devel"
short_desc="Tool to poke around in a Qt-application"
maintainer="toluschr <toluschr@protonmail.com>"
license="GPL-2.0-or-later"
homepage="https://github.com/KDAB/GammaRay"
distfiles="${homepage}/releases/download/v${version}/gammaray-${version}.tar.gz"
checksum=87a1d72ad1ad6d1a0156c54a85b0976ab38c6a64136458ca7c4ee491566d25d0

LDFLAGS=" -Wl,-no-fatal-warnings"

post_patch() {
vsed -i CMakeLists.txt -e 's|plugins/gammaray|lib/qt5/plugins/gammaray|'
}

gammaray-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision} ${makedepends}"
pkg_install() {
vmove usr/include
vmove usr/lib/cmake
vmove usr/lib/qt5/mkspecs
cd "${DESTDIR}"
# unversioned probes should go in main package
for f in usr/lib/*.so; do [ -L "${f}" ] && { vmove "${f}"; }; done
}
}

0 comments on commit f129dce

Please sign in to comment.