Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0ad8c75
[tmva][doc] remove outdated txt file
ferdymercury Apr 7, 2026
4700119
[math][genvector] remove leftover Makefile
ferdymercury Apr 7, 2026
4b15d67
[gui] rescue fitpanel test by migrating to CMake
ferdymercury Apr 7, 2026
04e8d79
[mathcore] remove leftover Makefile
ferdymercury Apr 7, 2026
bec2eee
[math] rescue smatrix test by migrating to CMake
ferdymercury Apr 7, 2026
7fe560d
[tests] fix warnings
ferdymercury Apr 8, 2026
d864c8a
[test] fix compilation error due to max template depth reached
ferdymercury Apr 8, 2026
7fa1be7
[test] disable smatrix reflex test
ferdymercury Apr 8, 2026
c7eaef8
[test] rm leftover Makefile
ferdymercury Apr 8, 2026
54e5048
[test] rm leftover targets
ferdymercury Apr 8, 2026
40ed162
[test] fix RootIDE compilation
ferdymercury Apr 8, 2026
d50c2e1
[test] migrate RootIDE test to CMake
ferdymercury Apr 8, 2026
43fd7c8
[test] fix rhtml compilation
ferdymercury Apr 8, 2026
906e6cb
[test] migrate rhtml test to cmake
ferdymercury Apr 8, 2026
a3a8f88
[test] fix histviewer compilation
ferdymercury Apr 8, 2026
e0978cb
[test] migrate HistViewer to CMake
ferdymercury Apr 8, 2026
ef2e6c7
[etc] rm leftover Makefile
ferdymercury Apr 8, 2026
71c1356
[config] rm leftover Makefiles
ferdymercury Apr 8, 2026
3ccce77
[textinput] rm leftover makefile
ferdymercury Apr 8, 2026
a259154
[doc] fix compilation of Makefile based primer generation using uptod…
ferdymercury Apr 8, 2026
4908e45
[test] try without loading track lib
ferdymercury Apr 8, 2026
bf23203
[nfc] clarify bigaus order of params
ferdymercury Apr 8, 2026
b9da8f0
[gui] complete fitpanel missing tree generation script
ferdymercury Apr 8, 2026
e33a262
[gui] relax error limit
ferdymercury Apr 8, 2026
aa5a94e
[test] mark fitpanel test as expected to fail
ferdymercury Apr 10, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cmake/modules/RootConfiguration.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -577,8 +577,6 @@ configure_file(${CMAKE_SOURCE_DIR}/config/rootdaemonrc.in ${CMAKE_BINARY_DIR}/et
# file used in TROOT.cxx, not need in include/ dir and not need to install
configure_file(${CMAKE_SOURCE_DIR}/config/RConfigOptions.in ginclude/RConfigOptions.h NEWLINE_STYLE UNIX)

configure_file(${CMAKE_SOURCE_DIR}/config/Makefile-comp.in config/Makefile.comp NEWLINE_STYLE UNIX)
configure_file(${CMAKE_SOURCE_DIR}/config/Makefile.in config/Makefile.config NEWLINE_STYLE UNIX)
configure_file(${CMAKE_SOURCE_DIR}/config/mimes.unix.in ${CMAKE_BINARY_DIR}/etc/root.mimes NEWLINE_STYLE UNIX)
# We need to have class.rules during configuration time to avoid silent error during generation of dictionary:
# Error in <TClass::ReadRules()>: Cannot find rules
Expand Down
11 changes: 0 additions & 11 deletions config/Makefile-comp.in

This file was deleted.

295 changes: 0 additions & 295 deletions config/Makefile.in

This file was deleted.

21 changes: 0 additions & 21 deletions core/textinput/src/textinput/Makefile

This file was deleted.

10 changes: 5 additions & 5 deletions documentation/primer/rootDocPreprocessor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Those changes seem unrelated to this PR.

"""
A tool to preprocess root documentation in order to provide missing
functionality in the documentation tools like doxygen or pandoc.
Expand All @@ -8,14 +8,14 @@
"""


import sys
import os

Check failure on line 12 in documentation/primer/rootDocPreprocessor.py

View workflow job for this annotation

GitHub Actions / ruff

ruff (I001)

documentation/primer/rootDocPreprocessor.py:11:1: I001 Import block is un-sorted or un-formatted help: Organize imports

usage="Usage: %s fileToBeTreated.md\n" %__file__

def printErrAndUsage(msg):
print msg
print usage
print(msg)
print(usage)

def checkInvocation(argv):
"""
Expand Down Expand Up @@ -49,7 +49,7 @@
if line.startswith("@ROOT_INCLUDE_FILE"):
inclFileName = line.split()[1]
if not os.path.exists(inclFileName):
print "[includeFilter] Error: file %s does not exist." %inclFileName
print("[includeFilter] Error: file", inclFileName, "does not exist.")
retcode+=1
continue
for inclFileLine in open(inclFileName).readlines():
Expand Down Expand Up @@ -91,7 +91,7 @@
filename = argv[1]
retcode = applyFilters(filename)
if retcode != 0:
print "Errors during the preprocessing."
print("Errors during the preprocessing.")
return retcode

if __name__ == "__main__":
Expand Down
Loading
Loading