* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2018-03-30 18:50 Aaron Bauman
0 siblings, 0 replies; 6+ messages in thread
From: Aaron Bauman @ 2018-03-30 18:50 UTC (permalink / raw
To: gentoo-commits
commit: f3a5a38c420bf1dc234c3c9d5eba8903bc11e992
Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Fri Mar 30 07:50:26 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Mar 30 18:50:46 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3a5a38c
app-benchmarks/cpuburn: Clean up old
Package-Manager: Portage-2.3.27, Repoman-2.3.7
Closes: https://github.com/gentoo/gentoo/pull/7705
app-benchmarks/cpuburn/cpuburn-1.4a.ebuild | 29 -----------------------------
1 file changed, 29 deletions(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild
deleted file mode 100644
index 8d719d7385f..00000000000
--- a/app-benchmarks/cpuburn/cpuburn-1.4a.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils flag-o-matic toolchain-funcs
-
-MY_P="${PV/./_}"
-
-DESCRIPTION="Designed to heavily load CPU chips [testing purposes]"
-HOMEPAGE="http://pages.sbcglobal.net/redelm/"
-#SRC_URI="http://pages.sbcglobal.net/redelm/cpuburn_${MY_P}_tar.gz -> ${P}.tar.gz"
-SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE=""
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-flags.patch
- use amd64 && append-flags -m32 #65719
- tc-export CC
-}
-
-src_install() {
- dodoc Design README
- dobin burn{BX,K6,K7,MMX,P5,P6}
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2018-06-03 8:32 Michał Górny
0 siblings, 0 replies; 6+ messages in thread
From: Michał Górny @ 2018-06-03 8:32 UTC (permalink / raw
To: gentoo-commits
commit: 8588318f93b994fb5a1ef8df1060807417655e6d
Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
AuthorDate: Sun May 6 20:15:43 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jun 3 08:32:26 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8588318f
app-benchmarks/cpuburn: Add arm support and fix QA warnings
Closes: https://bugs.gentoo.org/650058
Closes: https://bugs.gentoo.org/654966
Closes: https://github.com/gentoo/gentoo/pull/8274
Package-Manager: Portage-2.3.36, Repoman-2.3.9
app-benchmarks/cpuburn/cpuburn-1.4a-r2.ebuild | 57 +++++++++++++++++++++++++++
app-benchmarks/cpuburn/metadata.xml | 16 ++++++--
2 files changed, 69 insertions(+), 4 deletions(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a-r2.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a-r2.ebuild
new file mode 100644
index 00000000000..db1f520822b
--- /dev/null
+++ b/app-benchmarks/cpuburn/cpuburn-1.4a-r2.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_PV="${PV/./_}"
+
+DESCRIPTION="CPU testing utilities in optimized assembler for maximum loading"
+HOMEPAGE="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/"
+SRC_URI="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/${PN}_${MY_PV}_tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="-* ~amd64 ~arm ~x86"
+LICENSE="GPL-2"
+SLOT="0"
+
+PATCHES=( "${FILESDIR}/01-variables.patch" )
+
+QA_FLAGS_IGNORED="usr/bin/burnBX
+ usr/bin/burnK6
+ usr/bin/burnK7
+ usr/bin/burnMMX
+ usr/bin/burnP5
+ usr/bin/burnP6"
+
+QA_TEXTRELS="${QA_FLAGS_IGNORED}"
+
+src_prepare() {
+ default
+
+ # Respect users compiler and users CFLAGS and LDFLAGS on x86/amd64
+ # Must be always compiled in 32-bit on amd64 arch
+ # See https://bugs.gentoo.org/65719
+ sed -i -e 's/gcc -s/$(CC) $(CFLAGS) -m32 $(LDFLAGS)/' Makefile || die
+
+ # Respect users compiler and users CFLAGS and LDFLAGS on arm
+ sed -i -e '/CC :=/d' -e 's/^.*-mfloat-abi=softfp/ $(CC) $(CFLAGS) -nostdlib $(LDFLAGS)/' ARM/Makefile || die
+}
+
+src_compile() {
+ if use arm; then
+ cd "${S}"/ARM || die
+ fi
+
+ default
+}
+
+src_install() {
+ if use arm; then
+ dobin ARM/burnCortexA8 ARM/burnCortexA9
+ local DOCS=( "ARM/Design" "README" )
+ else
+ dobin burnBX burnK6 burnK7 burnMMX burnP5 burnP6
+ local DOCS=( "Design" "README" )
+ fi
+
+ einstalldocs
+}
diff --git a/app-benchmarks/cpuburn/metadata.xml b/app-benchmarks/cpuburn/metadata.xml
index 5aa5eacd888..140c5aa589a 100644
--- a/app-benchmarks/cpuburn/metadata.xml
+++ b/app-benchmarks/cpuburn/metadata.xml
@@ -1,10 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <!-- maintainer-needed -->
+ <maintainer type="person">
+ <email>ck+gentoo@bl4ckb0x.de</email>
+ <name>Conrad Kostecki</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
<longdescription>
- CPUBurn is the ultimate stability testing tool for overclockers. The
- program heats up any x86 CPU to the maximum possible operating
- temperature that is achievable by using ordinary software.
+ CPU testing utilities in optimized assembler for maximum loading
+ P6 (Intel Pentium Pro/II/III and Celeron TM),
+ AMD K7 (Athlon/Duron/Thunderbird TM),
+ AMD K6, and Intel P5 Pentium chips.
</longdescription>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2019-08-02 8:17 Mikle Kolyada
0 siblings, 0 replies; 6+ messages in thread
From: Mikle Kolyada @ 2019-08-02 8:17 UTC (permalink / raw
To: gentoo-commits
commit: a284c3ce1ca187721c4ecdecac449aa9e03915e6
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 2 08:14:48 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Aug 2 08:14:48 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a284c3ce
app-benchmarks/cpuburn: arm stable wrt bug #682714
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm"
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
index df7d1c48a38..93e6f0dda68 100644
--- a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
+++ b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="CPU testing utilities in optimized assembler for maximum loading"
HOMEPAGE="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/"
SRC_URI="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/${PN}_${MY_PV}_tar.gz -> ${P}.tar.gz"
-KEYWORDS="-* amd64 ~arm x86"
+KEYWORDS="-* amd64 arm x86"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2019-12-04 23:44 Conrad Kostecki
0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2019-12-04 23:44 UTC (permalink / raw
To: gentoo-commits
commit: ba422c8c0fbc16d653a1ba1662a18829bb23d5ad
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 4 23:24:59 2019 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Wed Dec 4 23:43:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba422c8c
app-benchmarks/cpuburn: update HOMEPAGE and SRC_URI
Updating homepage from my private server to archive.org.
Moving source file from my private server to devbox.
Package-Manager: Portage-2.3.80, Repoman-2.3.19
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
index 93e6f0dda68..ed2a072e468 100644
--- a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
+++ b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
@@ -6,8 +6,8 @@ EAPI="7"
MY_PV="${PV/./_}"
DESCRIPTION="CPU testing utilities in optimized assembler for maximum loading"
-HOMEPAGE="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/"
-SRC_URI="https://downloads.bl4ckb0x.de/pages.sbcglobal.net/redelm/${PN}_${MY_PV}_tar.gz -> ${P}.tar.gz"
+HOMEPAGE="https://web.archive.org/web/20110623074500/pages.sbcglobal.net/redelm/"
+SRC_URI="https://dev.gentoo.org/~conikost/files/${PN}_${MY_PV}_tar.gz -> ${P}.tar.gz"
KEYWORDS="-* amd64 arm x86"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2020-08-09 15:53 Conrad Kostecki
0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2020-08-09 15:53 UTC (permalink / raw
To: gentoo-commits
commit: e514c46a103d804c529894be5409b498efba3694
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 9 13:24:10 2020 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Aug 9 15:52:32 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e514c46a
app-benchmarks/cpuburn: don't quote EAPI
In order to make all my packages consistent,
don't quote EAPI version number.
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
index ed2a072e468..0026ef70327 100644
--- a/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
+++ b/app-benchmarks/cpuburn/cpuburn-1.4a-r3.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
+EAPI=7
MY_PV="${PV/./_}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/
@ 2023-09-17 21:41 Conrad Kostecki
0 siblings, 0 replies; 6+ messages in thread
From: Conrad Kostecki @ 2023-09-17 21:41 UTC (permalink / raw
To: gentoo-commits
commit: 251d1062dd347520c0bcbf72a9722779b406f106
Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 21:21:43 2023 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 21:40:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=251d1062
app-benchmarks/cpuburn: fix dynamic relocations
Closes: https://bugs.gentoo.org/913410
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../cpuburn/{cpuburn-1.4a-r4.ebuild => cpuburn-1.4a-r5.ebuild} | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/app-benchmarks/cpuburn/cpuburn-1.4a-r4.ebuild b/app-benchmarks/cpuburn/cpuburn-1.4a-r5.ebuild
similarity index 91%
rename from app-benchmarks/cpuburn/cpuburn-1.4a-r4.ebuild
rename to app-benchmarks/cpuburn/cpuburn-1.4a-r5.ebuild
index 7c532a610978..37e9bf82a74d 100644
--- a/app-benchmarks/cpuburn/cpuburn-1.4a-r4.ebuild
+++ b/app-benchmarks/cpuburn/cpuburn-1.4a-r5.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_PV="${PV/./_}"
+inherit flag-o-matic
+
DESCRIPTION="CPU testing utilities in optimized assembler for maximum loading"
HOMEPAGE="https://web.archive.org/web/20110623074500/pages.sbcglobal.net/redelm/"
SRC_URI="https://dev.gentoo.org/~conikost/files/${PN}_${MY_PV}_tar.gz -> ${P}.tar.gz"
@@ -39,6 +41,9 @@ src_prepare() {
}
src_compile() {
+ # See bug 913410 for more information.
+ append-ldflags -z notext
+
if use arm; then
cd "${S}"/ARM || die
fi
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-09-17 21:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-03-30 18:50 [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/cpuburn/ Aaron Bauman
-- strict thread matches above, loose matches on Subject: below --
2018-06-03 8:32 Michał Górny
2019-08-02 8:17 Mikle Kolyada
2019-12-04 23:44 Conrad Kostecki
2020-08-09 15:53 Conrad Kostecki
2023-09-17 21:41 Conrad Kostecki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox