public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Dave Love <loveshack@fedoraproject.org>
To: git-commits@fedoraproject.org
Subject: [rpms/scorep] rawhide: - Update to version 10.1 (resolves #2493585)
Date: Thu, 27 Aug 2026 11:58:44 GMT	[thread overview]
Message-ID: <178783192493.1.5131829988813004560.rpms-scorep-aa660ab16a45@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/scorep
Branch : rawhide
Commit : aa660ab16a45263025d68a0afbb7f3cbb07d3ded
Author : Dave Love <loveshack@fedoraproject.org>
Date   : 2026-08-24T16:12:59+00:00
Stats  : +8/-64 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/scorep/c/aa660ab16a45263025d68a0afbb7f3cbb07d3ded?branch=rawhide

Log:
- Update to version 10.1 (resolves #2493585)

---
diff --git a/.gitignore b/.gitignore
index 41902b6..e986107 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,4 @@
 /scorep-9.2.tar.gz
 /scorep-9.4.tar.gz
 /scorep-10.0.tar.gz
+/scorep-10.1.tar.gz

diff --git a/gcc16.diff b/gcc16.diff
deleted file mode 100644
index 8afb527..0000000
--- a/gcc16.diff
+++ /dev/null
@@ -1,60 +0,0 @@
-diff --git a/OPEN_ISSUES b/OPEN_ISSUES
-index 9a7c6c1c0f3c0c25a1cae09e5cfec2680c180f7b..8173ea396f27426abe27225e9f5529a43eb9f509 100644
---- a/OPEN_ISSUES
-+++ b/OPEN_ISSUES
-@@ -132,10 +132,10 @@ various Score-P components.
-     Filtering of MPI, SHMEM, and OpenMP runtime functions is always
-     ineffective.
- 
--  - The GCC plug-in is supported from GCC 4.9 onwards. Though due to
--    constant changes in the plug-in API of the GNU compiler
--    infrastructure, it is unlikely that the Score-P instrumentation
--    plug-in builds with versions newer than GCC snapshot 11-20210307.
-+  - The GCC plug-in is supported from GCC 7 onwards. Though due to constant
-+    changes in the plug-in API of the GNU compiler infrastructure, it is
-+    unlikely that the Score-P instrumentation plug-in builds with GCC versions
-+    released after this Score-P release.
- 
-   - The pgCC compiler versions 13.9 and higher preinclude omp.h for
-     OpenMP codes. This results in multiple defined symbols if the
-diff --git a/build-config/m4/scorep_gcc_plugin.m4 b/build-config/m4/scorep_gcc_plugin.m4
-index e331a7f358d8a8a0354a1928c8d3d9bf8c275423..f10482fcf3f53a59295db5e063d30e929e4f0b32 100644
---- a/build-config/m4/scorep_gcc_plugin.m4
-+++ b/build-config/m4/scorep_gcc_plugin.m4
-@@ -123,6 +123,7 @@ AS_IF([test "x${scorep_gcc_have_plugin_headers}" = "xyes"], [
- #undef PACKAGE_URL
- #include "gcc-plugin.h"
- #include "tree.h"
-+#include "diagnostic.h"
- 
- int plugin_is_GPL_compatible = 1;
- 
-diff --git a/build-gcc-plugin/configure.ac b/build-gcc-plugin/configure.ac
-index 71ec57e1b49ccef1aee5e8e6cb2c85c82d9e2881..c093fe560f276494e1ecf35435a58b8f3d21ff46 100644
---- a/build-gcc-plugin/configure.ac
-+++ b/build-gcc-plugin/configure.ac
-@@ -106,7 +106,7 @@ SCOREP_GCC_PLUGIN_VENDORS
- 
- # Checks for programs.
- AFS_PROG_CC([99])
--AFS_PROG_CXX([11], [noext])
-+AFS_PROG_CXX([14], [noext])
- 
- LT_PREREQ([2.4.6])
- LT_INIT([shared disable-static])
-diff --git a/src/adapters/compiler/gcc-plugin/scorep_plugin_gcc_version_compatibility.h b/src/adapters/compiler/gcc-plugin/scorep_plugin_gcc_version_compatibility.h
-index 6fabf5d01c4f537b5d6638b8d464da166e15d86c..b71214e83aa4ffd85b93361f84e174991beee844 100644
---- a/src/adapters/compiler/gcc-plugin/scorep_plugin_gcc_version_compatibility.h
-+++ b/src/adapters/compiler/gcc-plugin/scorep_plugin_gcc_version_compatibility.h
-@@ -26,6 +26,11 @@
- #define varpool_finalize_decl( decl ) varpool_node::finalize_decl( decl )
- #define cgraph_get_node( decl ) cgraph_node::get( decl )
- #define cgraph_function_body_availability( node ) ( node )->get_availability()
-+#endif
-+
-+#if SCOREP_GCC_PLUGIN_TARGET_VERSION >= 16000
-+#define TODO_verify_ssa 0
-+#elif SCOREP_GCC_PLUGIN_TARGET_VERSION >= 5000
- #define TODO_verify_ssa TODO_verify_il
- #endif
- 

diff --git a/scorep.spec b/scorep.spec
index 48b10bf..cb8d327 100644
--- a/scorep.spec
+++ b/scorep.spec
@@ -1,4 +1,3 @@
-%global useroc 0
 %ifarch x86_64
 %if 0%{?fedora} || 0%{?rhel} >= 10
 %global useroc 1
@@ -6,7 +5,7 @@
 %endif
 
 Name:           scorep
-Version:        10.0
+Version:        10.1
 Release:        1%{?dist}
 Summary:        Scalable Performance Measurement Infrastructure for Parallel Codes
 # Various doc files are CC0-1.0
@@ -193,7 +192,7 @@ popd
 
 %global _configure ../configure
 # Fixme: --disable-silent-rules or V=1 doesn't work in all parts of the build
-%global configure_opts --enable-shared --disable-static --disable-silent-rules --with-libunwind=yes %{useroc:--with-libroctracer64=yes}
+%global configure_opts --enable-shared --disable-static --disable-silent-rules --with-libunwind=yes %{?useroc:--with-libroctracer64=yes}
 # Workaround for #2493579
 export LIBBFD_EXTRA_LIBS=-lzstd
 
@@ -295,6 +294,7 @@ make -C serial check V=1
 %exclude %{_defaultdocdir}/scorep/*.txt
 %exclude %{_defaultdocdir}/scorep/REUSE.toml
 %exclude %{_defaultdocdir}/scorep/README.LICENSES.md
+%exclude %{_defaultdocdir}/scorep/LICENSES
 
 %files doc
 %license %licence_files
@@ -384,6 +384,9 @@ make -C serial check V=1
 %endif
 
 %changelog
+* Tue Aug 11 2026 Dave Love <loveshack@fedoraproject.org> - 10.1-1
+- Update to version 10.1 (resolves #2493585)
+
 * Mon Jul 20 2026 Dave Love <loveshack@fedoraproject.org> - 10.0-1
 - Update to version 10.0 (resolves #2493585)
 - BR otf2 >= 3.2

diff --git a/sources b/sources
index 3edb9ed..d56026d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (scorep-10.0.tar.gz) = f778258efe35fb9eadb617d1caa3c53503cfe98aa1b83db95f311a06357d7d186a88d1a6e252b00f09ad23157d7896bc26a920bf7714e7ab30439a2a79f945c3
+SHA512 (scorep-10.1.tar.gz) = 90fa45ed3b339fb63cd0f75c47948ec9993201c98716aea6ac5a78553155865abe44ff5aaa001272ecc1ab91a2acf93bb6d0b414d3bce08f7b490ab50dd198b5

                 reply	other threads:[~2026-08-27 11:58 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178783192493.1.5131829988813004560.rpms-scorep-aa660ab16a45@fedoraproject.org \
    --to=loveshack@fedoraproject.org \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox