Skip to content

Commit 75e86a6

Browse files
committed
Update packagig examples even though nearly all will be replaced if/when script runs
Signed-off-by: tldahlgren <dahlgren1@llnl.gov>
1 parent 9dd4c3b commit 75e86a6

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

tutorial/examples/packaging/1.package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"

tutorial/examples/packaging/2.package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"

tutorial/examples/packaging/3.package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"

tutorial/examples/packaging/4.package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"
@@ -21,7 +21,7 @@ class TutorialMpileaks(AutotoolsPackage):
2121
variant(
2222
"stackstart",
2323
values=int,
24-
default=0,
24+
default="0",
2525
description="Specify the number of stack frames to truncate",
2626
)
2727

tutorial/examples/packaging/5.package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"
@@ -23,7 +23,7 @@ class TutorialMpileaks(AutotoolsPackage):
2323
variant(
2424
"stackstart",
2525
values=int,
26-
default=0,
26+
default="0",
2727
description="Specify the number of stack frames to truncate",
2828
)
2929

tutorial/examples/packaging/6.package.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class TutorialMpileaks(AutotoolsPackage):
10-
"""Tool to detect and report MPI objects like MPI_Requests and MPI_Datatypes."""
10+
"""Tool to detect and report leaked MPI objects like MPI_Requests and MPI_Datatypes."""
1111

1212
homepage = "https://github.com/LLNL/mpileaks"
1313
url = "https://github.com/LLNL/mpileaks/archive/refs/tags/v1.0.tar.gz"
@@ -23,7 +23,7 @@ class TutorialMpileaks(AutotoolsPackage):
2323
variant(
2424
"stackstart",
2525
values=int,
26-
default=0,
26+
default="0",
2727
description="Specify the number of stack frames to truncate",
2828
)
2929

0 commit comments

Comments
 (0)