diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:25:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 14:25:59 +0000 |
commit | 71c8e3fa1da12677d26f6e578ac23367a1a680ec (patch) | |
tree | 2c992a1eb8ecca529ca914603d899dac43d6f3f2 /debian | |
parent | Adding upstream version 6.3.0. (diff) | |
download | geekbench-amd64-progress-linux.tar.xz geekbench-amd64-progress-linux.zip |
Adding progress-linux version 6.3.0-0progress7.99u1.HEADprogress-linux/6.3.0-0progress7.99u1progress-linux
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/control | 24 | ||||
-rw-r--r-- | debian/copyright | 20 | ||||
-rwxr-xr-x | debian/local/bin/geekbench6 | 8 | ||||
l--------- | debian/local/bin/geekbench_avx2 | 1 | ||||
l--------- | debian/local/bin/geekbench_x86_64 | 1 | ||||
-rwxr-xr-x | debian/rules | 29 | ||||
-rw-r--r-- | debian/source/format | 1 |
8 files changed, 89 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..7c294f9 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +geekbench-amd64 (6.3.0-0progress7.99u1) graograman-backports-extras; urgency=low + + * Initial reupload to graograman-backports-extras. + + -- Daniel Baumann <daniel.baumann@progress-linux.org> Sun, 21 Apr 2024 16:23:42 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..203a516 --- /dev/null +++ b/debian/control @@ -0,0 +1,24 @@ +Source: geekbench-amd64 +Section: restricted/admin +Priority: optional +Maintainer: Progress Linux Maintainers <maintainers@lists.progress-linux.org> +XSBC-Uploaders: Daniel Baumann <daniel.baumann@progress-linux.org> +Bugs: mailto:bugs@lists.progress-linux.org +Build-Depends: + debhelper-compat (= 13), +Rules-Requires-Root: no +Standards-Version: 4.7.0 +Homepage: https://www.geekbench.com +Vcs-Browser: https://git.progress-linux.org/packages/graograman-backports-extras/geekbench-amd64 +Vcs-Git: https://git.progress-linux.org/packages/graograman-backports-extras/geekbench-amd64 + +Package: geekbench +Section: restricted/admin +Architecture: amd64 +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Provides: + geekbench6, +Description: cross-platform benchmark + Geekbench is a cross-platform benchmark that measures your system's performance. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..4ba3bc7 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,20 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Geekbench +Upstream-Contact: n/a +Source: https://www.geekbench.com/download + +Files: * +Copyright: n/a +License: n/a + +Files: debian/* +Copyright: 2010-2024 Daniel Baumann <daniel.baumann@progress-linux.org> +License: PD + +License: PD + This program is free software: you have unlimited permission + to copy, distribute and modify it. + . + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. diff --git a/debian/local/bin/geekbench6 b/debian/local/bin/geekbench6 new file mode 100755 index 0000000..b383a8f --- /dev/null +++ b/debian/local/bin/geekbench6 @@ -0,0 +1,8 @@ +#!/bin/sh + +set -e + +PROGRAM="$(basename "${0}")" + +cd /usr/lib/geekbench +exec ./"${PROGRAM}" "${@}" diff --git a/debian/local/bin/geekbench_avx2 b/debian/local/bin/geekbench_avx2 new file mode 120000 index 0000000..77cf9c6 --- /dev/null +++ b/debian/local/bin/geekbench_avx2 @@ -0,0 +1 @@ +geekbench6
\ No newline at end of file diff --git a/debian/local/bin/geekbench_x86_64 b/debian/local/bin/geekbench_x86_64 new file mode 120000 index 0000000..77cf9c6 --- /dev/null +++ b/debian/local/bin/geekbench_x86_64 @@ -0,0 +1 @@ +geekbench6
\ No newline at end of file diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..ecbc9f7 --- /dev/null +++ b/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +include /usr/share/dpkg/architecture.mk + +%: + dh ${@} + +execute_after_dh_auto_clean: + rm -rf build + +override_dh_auto_build: + mkdir -p build + tar -C build -xf *.tar.gz + +override_dh_auto_install: + mkdir -p debian/geekbench/usr/lib + cp -a build/Geekbench* debian/geekbench/usr/lib/geekbench + + mkdir -p debian/geekbench/usr + cp -a debian/local/bin debian/geekbench/usr/bin + +override_dh_dwz: + # disabled + +override_dh_strip: + # disabled + +override_dh_strip_nondeterminism: + # disabled 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) |