-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from yast/backport_sp6
Backport sp6
- Loading branch information
Showing
9 changed files
with
88 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
------------------------------------------------------------------- | ||
Fri Sep 01 19:57:03 UTC 2023 - Josef Reidinger <[email protected]> | ||
Mon Apr 3 10:46:37 UTC 2023 - Josef Reidinger <[email protected]> | ||
|
||
- Branch package for SP6 (bsc#1208913) | ||
- Improve YaST memory consumption related to import+publish (bsc#1210051) | ||
- 4.6.2 | ||
|
||
------------------------------------------------------------------- | ||
Thu Mar 9 10:36:23 UTC 2023 - Martin Vidner <[email protected]> | ||
|
||
- Use ruby-devel versioned to match the gems (bsc#1209098) | ||
- 4.6.1 | ||
|
||
------------------------------------------------------------------- | ||
Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <[email protected]> | ||
|
||
- Bump version to 4.6.0 (bsc#1208913) | ||
|
||
------------------------------------------------------------------- | ||
Mon Oct 24 12:51:30 UTC 2022 - Ladislav Slezák <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
require "memory_profiler" | ||
|
||
usage = <<CMD | ||
cd build # cmake ..; make | ||
# use the built version | ||
ruby -r ../tests/test_helper.rb ../profiling/yast_import.rb # | head -n2 | ||
# use the system version | ||
ruby ../profiling/yast_import.rb # | head -n2 | ||
CMD | ||
|
||
MemoryProfiler.report { | ||
require "yast" | ||
|
||
Yast.import "Pkg" | ||
Yast.import "Bootloader" | ||
Yast.import "UI" | ||
Yast.import "Lan" | ||
}.pretty_print |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
module Yast | ||
class InvalidTypeModuleClass < Module | ||
include Yast::Logger | ||
|
||
def a | ||
puts "Fail" | ||
end | ||
|