diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-13 12:04:52 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-31 08:34:30 +0000 |
commit | b90d9bb0e213c04270b7bc6e8a3320bc2fdadf68 (patch) | |
tree | 0d2d6aa17c455df983dcf642ab896f9de5a08140 | |
parent | Adding upstream version 2.0.3. (diff) | |
download | 0xtools-debian.tar.xz 0xtools-debian.zip |
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 27 | ||||
-rw-r--r-- | debian/copyright | 14 | ||||
-rwxr-xr-x | debian/rules | 7 | ||||
-rw-r--r-- | debian/source/format | 1 | ||||
-rw-r--r-- | debian/watch | 3 |
6 files changed, 57 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..e712c11 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +0xtools (2.0.3-1) unstable; urgency=medium + + * Initial upload to sid. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sat, 13 Jul 2024 13:59:25 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..84696fa --- /dev/null +++ b/debian/control @@ -0,0 +1,27 @@ +Source: 0xtools +Section: admin +Priority: optional +Maintainer: Daniel Baumann <daniel.baumann@progress-linux.org> +Build-Depends: + debhelper-compat (= 13), +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://0x.tools +Vcs-Browser: https://git.progress-linux.org/users/daniel.baumann/debian/packages/0xtools +Vcs-Git: https://git.progress-linux.org/users/daniel.baumann/debian/packages/0xtools + +Package: 0xtools +Section: admin +Architecture: linux-any +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Suggests: + linux-cpupower, + python3-bpfcc, +Description: Tools for analyzing application performance + 0x.tools is a set of utilities for analyzing application performance. + . + They allow to measure individual thread level activity, like executed code, + sleep states, system calls and wait locations - by tracking (not tracing) and + then sampling the right events at the right time. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..b9e856e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,14 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: 0x.tools +Upstream-Contact: https://github.com/tanelpoder/0xtools/issues +Source: https://github.com/tanelpoder/0xtools/tags + +Files: * +Copyright: +License: + +Files: debian/* +Copyright: 2024 Daniel Baumann <daniel.baumann@progress-linux.org> +License: + +License: diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..28596cf --- /dev/null +++ b/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +%: + dh ${@} + +override_dh_auto_install: + dh_auto_install -- PREFIX=$(CURDIR)/debian/0xtools/usr diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..3e9a02b --- /dev/null +++ b/debian/watch @@ -0,0 +1,3 @@ +version=4 +opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/0xtools-$1\.tar\.gz/ \ +https://github.com/tanelpoder/0xtools/tags .*/v?(\d\S+)\.tar\.gz |