simp-rake-helpers 5.1.4 → 5.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +18 -0
  3. data/lib/simp/componentinfo.rb +227 -0
  4. data/lib/simp/rake/helpers/version.rb +1 -1
  5. data/lib/simp/rake/pkg.rb +115 -0
  6. data/lib/simp/rake/pupmod/helpers.rb +2 -2
  7. data/lib/simp/relchecks.rb +172 -0
  8. data/lib/simp/rpm.rb +2 -0
  9. data/spec/acceptance/nodesets/default.yml +2 -0
  10. data/spec/acceptance/pkg_rpm_spec.rb +42 -133
  11. data/spec/lib/simp/componentinfo_changelog_regex_spec.rb +120 -0
  12. data/spec/lib/simp/componentinfo_spec.rb +278 -0
  13. data/spec/lib/simp/files/componentinfo_spec/asset_missing_release/build/asset_missing_release.spec +36 -0
  14. data/spec/lib/simp/files/componentinfo_spec/asset_missing_version/build/asset_missing_version.spec +36 -0
  15. data/spec/lib/simp/files/componentinfo_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec +31 -0
  16. data/spec/lib/simp/files/componentinfo_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec +64 -0
  17. data/spec/lib/simp/files/componentinfo_spec/asset_with_single_package/build/asset_with_single_package.spec +37 -0
  18. data/spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/asseta.spec +43 -0
  19. data/spec/lib/simp/files/componentinfo_spec/asset_with_two_spec_files/build/assetb.spec +43 -0
  20. data/spec/lib/simp/files/componentinfo_spec/asset_without_spec_file/build/README +1 -0
  21. data/spec/lib/simp/files/componentinfo_spec/module/CHANGELOG +14 -0
  22. data/spec/lib/simp/files/componentinfo_spec/module/metadata.json +44 -0
  23. data/spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/CHANGELOG +14 -0
  24. data/spec/lib/simp/files/componentinfo_spec/module_missing_version_metadata/metadata.json +43 -0
  25. data/spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/CHANGELOG +14 -0
  26. data/spec/lib/simp/files/componentinfo_spec/module_with_date_misordered_entries/metadata.json +44 -0
  27. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/CHANGELOG +8 -0
  28. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_entries/metadata.json +44 -0
  29. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/CHANGELOG +14 -0
  30. data/spec/lib/simp/files/componentinfo_spec/module_with_invalid_weekday_entry/metadata.json +44 -0
  31. data/spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/CHANGELOG +14 -0
  32. data/spec/lib/simp/files/componentinfo_spec/module_with_malformed_metadata/metadata.json +44 -0
  33. data/spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/CHANGELOG +14 -0
  34. data/spec/lib/simp/files/componentinfo_spec/module_with_version_misordered_entries/metadata.json +44 -0
  35. data/spec/lib/simp/files/componentinfo_spec/module_without_changelog/metadata.json +44 -0
  36. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/CHANGELOG +5 -0
  37. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module/metadata.json +44 -0
  38. data/spec/lib/simp/files/relchecks_compare_latest_tag_spec/module_without_changelog/metadata.json +44 -0
  39. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_mismatched_release/build/asset_mismatched_release.spec +35 -0
  40. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_missing_changelog/build/asset_missing_changelog.spec +27 -0
  41. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_dist_in_release/build/asset_with_dist_in_release.spec +31 -0
  42. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_multiple_packages/build/asset_with_multiple_packages.spec +64 -0
  43. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_with_single_package/build/asset_with_single_package.spec +35 -0
  44. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/asset_without_spec_file/build/README +1 -0
  45. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/CHANGELOG +14 -0
  46. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_misordered_entries/metadata.json +44 -0
  47. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/CHANGELOG +14 -0
  48. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_multiple_entries/metadata.json +44 -0
  49. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/CHANGELOG +14 -0
  50. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_newer_changelog_entry/metadata.json +44 -0
  51. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/CHANGELOG +14 -0
  52. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_no_entry_for_version/metadata.json +44 -0
  53. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/CHANGELOG +7 -0
  54. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_with_single_entry/metadata.json +44 -0
  55. data/spec/lib/simp/files/relchecks_create_tag_changelog_spec/module_without_changelog/metadata.json +44 -0
  56. data/spec/lib/simp/relchecks_compare_latest_tag_spec.rb +89 -0
  57. data/spec/lib/simp/relchecks_create_tag_changelog_spec.rb +143 -0
  58. metadata +51 -2
@@ -0,0 +1,36 @@
1
+ Summary: SIMP Utils
2
+ Name: asset_missing_release
3
+ Version: 1.0.0
4
+ #OOPS
5
+ #Release: 0
6
+ License: Apache License, Version 2.0
7
+ Group: Applications/System
8
+ Source: %{name}-%{version}-%{release}.tar.gz
9
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
10
+ BuildArch: noarch
11
+
12
+ %description
13
+ Asset with single entry
14
+
15
+ %prep
16
+
17
+ %build
18
+
19
+ %install
20
+
21
+ %clean
22
+
23
+ %files
24
+
25
+ %post
26
+
27
+ %postun
28
+
29
+ %changelog
30
+
31
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
32
+ - Single package
33
+
34
+ * Wed Nov 04 2009 Maintenance
35
+ 0.1-0
36
+ - Added the man page
@@ -0,0 +1,36 @@
1
+ Summary: SIMP Utils
2
+ Name: asset_missing_version
3
+ #OOPS
4
+ #Version: 1.0.0
5
+ Release: 0
6
+ License: Apache License, Version 2.0
7
+ Group: Applications/System
8
+ Source: %{name}-%{version}-%{release}.tar.gz
9
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
10
+ BuildArch: noarch
11
+
12
+ %description
13
+ Asset with single entry
14
+
15
+ %prep
16
+
17
+ %build
18
+
19
+ %install
20
+
21
+ %clean
22
+
23
+ %files
24
+
25
+ %post
26
+
27
+ %postun
28
+
29
+ %changelog
30
+
31
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
32
+ - Single package
33
+
34
+ * Wed Nov 04 2009 Maintenance
35
+ 0.1-0
36
+ - Added the man page
@@ -0,0 +1,31 @@
1
+ Summary: SIMP Utils
2
+ Name: asset_with_dist_in_release
3
+ Version: 1.0.0
4
+ Release: 0%{?dist}
5
+ License: Apache License, Version 2.0
6
+ Group: Applications/System
7
+ Source: %{name}-%{version}-%{release}.tar.gz
8
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
9
+ BuildArch: noarch
10
+
11
+ %description
12
+ Asset with single entry
13
+
14
+ %prep
15
+
16
+ %build
17
+
18
+ %install
19
+
20
+ %clean
21
+
22
+ %files
23
+
24
+ %post
25
+
26
+ %postun
27
+
28
+ %changelog
29
+
30
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
31
+ - Package with distribution in release tag
@@ -0,0 +1,64 @@
1
+ %global gemname main
2
+
3
+ %global gemdir /usr/share/simp/ruby
4
+ %global geminstdir %{gemdir}/gems/%{gemname}-%{version}
5
+ %global main_version 4.0.3
6
+ %global sub_version 1.7.8
7
+
8
+ Summary: a main package
9
+ Name: main
10
+ Version: %{main_version}
11
+ Release: 0
12
+ Group: Development/Languages
13
+ License: Apache-2.0
14
+ Source0: %{name}-%{main_version}-%{release}.tar.gz
15
+ Source1: %{gemname}-%{main_version}.gem
16
+ BuildArch: noarch
17
+ Provides: rubygem(%{gemname}) = %{main_version}
18
+
19
+ %description
20
+ main package
21
+
22
+ %package doc
23
+ Summary: Documentation for %{name}
24
+ Group: Documentation
25
+ BuildArch: noarch
26
+
27
+ %description doc
28
+ Documentation for %{name}
29
+
30
+ %package sub
31
+ Summary: A sub package
32
+ Version: %{sub_version}
33
+ Release: 0
34
+ License: GPL-2.0
35
+ Source11: sub-%{sub_version}.gem
36
+ BuildArch: noarch
37
+ Provides: rubygem(%{gemname}-sub) = %{sub_version}
38
+
39
+ %description sub
40
+ sub is required for the proper functionality of main
41
+
42
+ %prep
43
+
44
+ %build
45
+
46
+ %install
47
+
48
+ %files
49
+
50
+ %files sub
51
+
52
+ %files doc
53
+
54
+ %changelog
55
+ * Thu Aug 31 2017 Jane Doe <jane.doe@simp.com> - 4.0.3
56
+ - Fix bug Z
57
+ - Thanks to Lilia Smith for the PR!
58
+
59
+ * Mon Jun 12 2017 Jane Doe <jane.doe@simp.com> - 4.0.3
60
+ - Prompt user for new input
61
+
62
+ * Fri Jun 02 2017 Jim Jones <jim.jones@simp.com> - 4.0.2-0
63
+ - Expand X
64
+ - Fix Y
@@ -0,0 +1,37 @@
1
+ Summary: SIMP Utils
2
+ Name: asset_with_single_package
3
+ Version: 1.0.0
4
+ Release: 1
5
+ License: Apache License, Version 2.0
6
+ Group: Applications/System
7
+ Source: %{name}-%{version}-%{release}.tar.gz
8
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
9
+ BuildArch: noarch
10
+
11
+ %description
12
+ Asset with single entry
13
+
14
+ %prep
15
+
16
+ %build
17
+
18
+ %install
19
+
20
+ %clean
21
+
22
+ %files
23
+
24
+ %post
25
+
26
+ %postun
27
+
28
+ %changelog
29
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-1
30
+ - Fix installed file permissions
31
+
32
+ * Wed Oct 18 2017 Jane Doe <jane.doe@simp.com> - 1.0.0-0
33
+ - Single package
34
+
35
+ * Wed Nov 04 2009 Maintenance
36
+ 0.1-0
37
+ - Added the man page
@@ -0,0 +1,43 @@
1
+ Summary: SIMP Utils
2
+ Name: asseta
3
+ Version: 1.1.0
4
+ Release: 0
5
+ License: Apache License, Version 2.0
6
+ Group: Applications/System
7
+ Source: %{name}-%{version}-%{release}.tar.gz
8
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
9
+ BuildArch: noarch
10
+
11
+ %description
12
+ AssetA
13
+
14
+ %prep
15
+ %setup -q
16
+
17
+ %build
18
+
19
+ %install
20
+
21
+ %clean
22
+
23
+ %files
24
+
25
+ %post
26
+
27
+ %postun
28
+
29
+ %changelog
30
+
31
+ * Wed Oct 18 2017 Lois Lane <lois.lane@example.com> - 1.1.0-0
32
+ - Added script A2
33
+
34
+ * Wed Oct 04 2017 Super Man <super.man@example.com> - 1.0.2-0
35
+ - Fixed an incorrect dependency
36
+
37
+ * Fri Jan 18 2013 Maintenance
38
+ 1.0.1-0
39
+ - Fixed script A1
40
+
41
+ * Tue Nov 20 2012 Maintenance
42
+ 1.0.0-0
43
+ - First version
@@ -0,0 +1,43 @@
1
+ Summary: SIMP Utils
2
+ Name: assetb
3
+ Version: 1.1.0
4
+ Release: 0
5
+ License: Apache License, Version 2.0
6
+ Group: Applications/System
7
+ Source: %{name}-%{version}-%{release}.tar.gz
8
+ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
9
+ BuildArch: noarch
10
+
11
+ %description
12
+ AssetB
13
+
14
+ %prep
15
+ %setup -q
16
+
17
+ %build
18
+
19
+ %install
20
+
21
+ %clean
22
+
23
+ %files
24
+
25
+ %post
26
+
27
+ %postun
28
+
29
+ %changelog
30
+
31
+ * Wed Oct 18 2017 Lois Lane <lois.lane@example.com> - 1.1.0-0
32
+ - Added script A2
33
+
34
+ * Wed Oct 04 2017 Super Man <super.man@example.com> - 1.0.2-0
35
+ - Fixed an incorrect dependency
36
+
37
+ * Fri Jan 18 2013 Maintenance
38
+ 1.0.1-0
39
+ - Fixed script A1
40
+
41
+ * Tue Nov 20 2012 Maintenance
42
+ 1.0.0-0
43
+ - First version
@@ -0,0 +1,14 @@
1
+ * Wed Nov 15 2017 Mary Jones <mary.jones@simp.com> - 3.8.0-0
2
+ - Disable deprecation warnings by default
3
+
4
+ * Mon Nov 06 2017 Tom Smith <tom.smith@simp.com> - 3.8.0-0
5
+ - Fixes split failure when "findmnt" does not exist on Linux
6
+
7
+ * Thu Oct 26 2017 Mary Jones <mary.jones@simp.com> - 3.7.0-0
8
+ - Add Mod::Macaddress data type
9
+
10
+ * Tue Sep 26 2017 Joe Brown <joe.brown@simp.com> - 3.6.0-0
11
+ - Convert all 'sysctl' 'kernel.shm*' entries to Strings
12
+ - shmall and shmmax were causing Facter and newer versions of Puppet to crash
13
+ - See FACT-1732 for additional information
14
+ - Add Puppet function `mod::assert_metadata_os()`
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "simp-module",
3
+ "version": "3.8.0",
4
+ "author": "SIMP Team",
5
+ "summary": "A collection of common SIMP functions, facts, and types",
6
+ "license": "Apache-2.0",
7
+ "source": "https://github.com/simp/pupmod-simp-simplib",
8
+ "project_page": "https://github.com/simp/pupmod-simp-simplib",
9
+ "issues_url": "https://simp-project.atlassian.net",
10
+ "tags": [
11
+ "simp",
12
+ "functions",
13
+ "facts",
14
+ "types",
15
+ "alias",
16
+ "library"
17
+ ],
18
+ "dependencies": [
19
+
20
+ ],
21
+ "operatingsystem_support": [
22
+ {
23
+ "operatingsystem": "RedHat",
24
+ "operatingsystemrelease": [
25
+ "6",
26
+ "7"
27
+ ]
28
+ },
29
+ {
30
+ "operatingsystem": "CentOS",
31
+ "operatingsystemrelease": [
32
+ "6",
33
+ "7"
34
+ ]
35
+ }
36
+ ],
37
+ "requirements": [
38
+ {
39
+ "name": "puppet",
40
+ "version_requirement": ">= 4.7.0 < 6.0.0"
41
+ }
42
+ ],
43
+ "package_release_version": "0"
44
+ }
@@ -0,0 +1,14 @@
1
+ * Wed Nov 15 2017 Mary Jones <mary.jones@simp.com> - 3.8.0-0
2
+ - Disable deprecation warnings by default
3
+
4
+ * Mon Nov 06 2017 Tom Smith <tom.smith@simp.com> - 3.8.0-0
5
+ - Fixes split failure when "findmnt" does not exist on Linux
6
+
7
+ * Thu Oct 26 2017 Mary Jones <mary.jones@simp.com> - 3.7.0-0
8
+ - Add Mod::Macaddress data type
9
+
10
+ * Tue Sep 26 2017 Joe Brown <joe.brown@simp.com> - 3.6.0-0
11
+ - Convert all 'sysctl' 'kernel.shm*' entries to Strings
12
+ - shmall and shmmax were causing Facter and newer versions of Puppet to crash
13
+ - See FACT-1732 for additional information
14
+ - Add Puppet function `mod::assert_metadata_os()`
@@ -0,0 +1,43 @@
1
+ {
2
+ "name": "simp-module_missing_version_metadata",
3
+ "author": "SIMP Team",
4
+ "summary": "A collection of common SIMP functions, facts, and types",
5
+ "license": "Apache-2.0",
6
+ "source": "https://github.com/simp/pupmod-simp-simplib",
7
+ "project_page": "https://github.com/simp/pupmod-simp-simplib",
8
+ "issues_url": "https://simp-project.atlassian.net",
9
+ "tags": [
10
+ "simp",
11
+ "functions",
12
+ "facts",
13
+ "types",
14
+ "alias",
15
+ "library"
16
+ ],
17
+ "dependencies": [
18
+
19
+ ],
20
+ "operatingsystem_support": [
21
+ {
22
+ "operatingsystem": "RedHat",
23
+ "operatingsystemrelease": [
24
+ "6",
25
+ "7"
26
+ ]
27
+ },
28
+ {
29
+ "operatingsystem": "CentOS",
30
+ "operatingsystemrelease": [
31
+ "6",
32
+ "7"
33
+ ]
34
+ }
35
+ ],
36
+ "requirements": [
37
+ {
38
+ "name": "puppet",
39
+ "version_requirement": ">= 4.7.0 < 6.0.0"
40
+ }
41
+ ],
42
+ "package_release_version": "0"
43
+ }
@@ -0,0 +1,14 @@
1
+ * Mon Nov 06 2017 Tom Smith <tom.smith@simp.com> - 3.8.0-0
2
+ - Fixes split failure when "findmnt" does not exist on Linux
3
+
4
+ * Wed Nov 15 2017 Mary Jones <mary.jones@simp.com> - 3.8.0-0
5
+ - Disable deprecation warnings by default
6
+
7
+ * Thu Oct 26 2017 Mary Jones <mary.jones@simp.com> - 3.7.0-0
8
+ - Add Mod::Macaddress data type
9
+
10
+ * Tue Sep 26 2017 Joe Brown <joe.brown@simp.com> - 3.6.0-0
11
+ - Convert all 'sysctl' 'kernel.shm*' entries to Strings
12
+ - shmall and shmmax were causing Facter and newer versions of Puppet to crash
13
+ - See FACT-1732 for additional information
14
+ - Add Puppet function `mod::assert_metadata_os()`
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "simp-module_with_date_misordered_entries",
3
+ "version": "3.8.0",
4
+ "author": "SIMP Team",
5
+ "summary": "A collection of common SIMP functions, facts, and types",
6
+ "license": "Apache-2.0",
7
+ "source": "https://github.com/simp/pupmod-simp-simplib",
8
+ "project_page": "https://github.com/simp/pupmod-simp-simplib",
9
+ "issues_url": "https://simp-project.atlassian.net",
10
+ "tags": [
11
+ "simp",
12
+ "functions",
13
+ "facts",
14
+ "types",
15
+ "alias",
16
+ "library"
17
+ ],
18
+ "dependencies": [
19
+
20
+ ],
21
+ "operatingsystem_support": [
22
+ {
23
+ "operatingsystem": "RedHat",
24
+ "operatingsystemrelease": [
25
+ "6",
26
+ "7"
27
+ ]
28
+ },
29
+ {
30
+ "operatingsystem": "CentOS",
31
+ "operatingsystemrelease": [
32
+ "6",
33
+ "7"
34
+ ]
35
+ }
36
+ ],
37
+ "requirements": [
38
+ {
39
+ "name": "puppet",
40
+ "version_requirement": ">= 4.7.0 < 6.0.0"
41
+ }
42
+ ],
43
+ "package_release_version": "0"
44
+ }