simp-rake-helpers 5.13.1 → 5.13.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/simp/rake/build/iso.rb +4 -1
- data/lib/simp/rake/helpers/version.rb +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34a577aa7249f7f21146cedc2a72eb0c922ade1d4cf12ec152097297d8c36ec9
|
4
|
+
data.tar.gz: 7cdefe54c3206c33da6fab2a1bdefb7e68ea1806f2905405a0edc3c4b6a6cce1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 063ea6a2ab7f471532b948400460587835b3e98497a33c682113cd216216fb0e362ed24f301edff42972ea79903c28ae8cdad81b56e6cc8834fc4ad48d19ee76
|
7
|
+
data.tar.gz: 2d05c1877803b352a2c85cf473c8a79b520159d23e023c9b69c13776e8d59209f79d13ae2eadb674bbf0aa96d71c00af168269f6914334f35db802c28609c637
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
### 5.13.2 / 2022-05-13
|
2
|
+
- Fixed:
|
3
|
+
- SIMP_BUILD_reposync_only now properly unpacks the tarball
|
4
|
+
|
1
5
|
### 5.13.1 / 2022-05-01
|
2
6
|
- Fixed:
|
3
7
|
- Aligned wtih an API change in the `dirty?` method in `r10k`
|
@@ -5,6 +9,8 @@
|
|
5
9
|
### 5.13.0 / 2021-11-14
|
6
10
|
- Added:
|
7
11
|
- Output the full `mkisofs` command when building an ISO
|
12
|
+
- Added SIMP_BUILD_reposync_only to ignore the built tarball if a reposync
|
13
|
+
directory is present
|
8
14
|
|
9
15
|
### 5.12.7 / 2021-10-26
|
10
16
|
- Added:
|
data/lib/simp/rake/build/iso.rb
CHANGED
@@ -266,8 +266,11 @@ module Simp::Rake::Build
|
|
266
266
|
puts
|
267
267
|
puts '-'*80
|
268
268
|
puts
|
269
|
+
|
270
|
+
# Only add the ISO modifications
|
271
|
+
system(%(tar --no-same-permissions --exclude="SIMP" -C #{dir} -xzf #{tball}))
|
269
272
|
else
|
270
|
-
# Add the SIMP code
|
273
|
+
# Add the SIMP code and ISO modifications
|
271
274
|
system("tar --no-same-permissions -C #{dir} -xzf #{tball}")
|
272
275
|
|
273
276
|
# Pop the SIMP directory from the tarball into the correct spot
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simp-rake-helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.13.
|
4
|
+
version: 5.13.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Chris Tessmer
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-05-
|
12
|
+
date: 2022-05-13 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: simp-beaker-helpers
|
@@ -265,7 +265,7 @@ dependencies:
|
|
265
265
|
version: '0'
|
266
266
|
description: ' "simp-rake-helpers provides common methods for SIMP Rake Tasks"
|
267
267
|
|
268
|
-
'
|
268
|
+
'
|
269
269
|
email: simp@simp-project.org
|
270
270
|
executables: []
|
271
271
|
extensions: []
|
@@ -592,7 +592,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
592
592
|
- !ruby/object:Gem::Version
|
593
593
|
version: '0'
|
594
594
|
requirements: []
|
595
|
-
|
595
|
+
rubyforge_project:
|
596
|
+
rubygems_version: 2.7.6.3
|
596
597
|
signing_key:
|
597
598
|
specification_version: 4
|
598
599
|
summary: SIMP rake helpers
|