litbuild 1.0.16 → 1.0.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/litbuild/bash_script_visitor.rb +4 -1
- data/lib/litbuild/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3fdf64e3774cac3d1e67cd815c79d78e048bdc76fd4ea95ea83225f28bbe1779
|
4
|
+
data.tar.gz: a4e2e13fdebdbb7d7c069a93b10b255c511dae2f2818a81c3aaf9067a6404594
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f5e42e9df787b906f49770dac68b7de9f43b4fc18f9d75e3bd275a8a1efc7b4edf037d492220ea6557885be95ee66e3edc923cbe38ebc4f949754883b5e2465
|
7
|
+
data.tar.gz: 6107bb2f698c7644d96241b45d570d82bf66897e40148055cc1af4330578a8e00d2f7f75230f03a3846861c8c9cf688198e89dd9d8c84a1050bd66a73309e7aa
|
@@ -176,6 +176,7 @@ module Litbuild
|
|
176
176
|
@written[location].map do |target|
|
177
177
|
script.puts("echo \"At $(#{DATECMD}): Beginning #{target}:\"")
|
178
178
|
script.puts("./#{target}")
|
179
|
+
script.puts("echo \"At $(#{DATECMD}): Completed #{target}:\"")
|
179
180
|
end
|
180
181
|
end
|
181
182
|
|
@@ -390,6 +391,8 @@ module Litbuild
|
|
390
391
|
options.puts("cat > ~#{package.pkgusr_name}/options <<'LBEOF'")
|
391
392
|
options.puts("export version=#{package.version}")
|
392
393
|
options.puts("export LB_SOURCE_DIR=#{quote(srcdir)}")
|
394
|
+
phase = package.active_phase || 'default'
|
395
|
+
options.puts("export LB_PHASE=#{quote(phase)}")
|
393
396
|
environment_commands(package).each { |cmd| options.puts(cmd) }
|
394
397
|
package.build_dir && options.puts("export build_dir=#{package.build_dir}")
|
395
398
|
render_intree_commands(package, options)
|
@@ -580,7 +583,7 @@ module Litbuild
|
|
580
583
|
end
|
581
584
|
render_command(script, 'cfggit stageall', log)
|
582
585
|
bp = "#{blueprint.class.name.split('::').last} #{blueprint.name}"
|
583
|
-
cmd = "cfggit as-
|
586
|
+
cmd = "cfggit as-lb -m 'Configuration files for #{bp}'"
|
584
587
|
render_command(script, cmd, log)
|
585
588
|
end
|
586
589
|
|
data/lib/litbuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: litbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.19
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Neumeier
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: A build system based on Knuth's idea of literate programming.
|
14
14
|
email:
|
@@ -45,10 +45,10 @@ files:
|
|
45
45
|
- lib/litbuild/visitor.rb
|
46
46
|
homepage: http://git.freesa.org/freesa/litbuild
|
47
47
|
licenses:
|
48
|
-
- GPL-3.0
|
48
|
+
- GPL-3.0-only
|
49
49
|
metadata:
|
50
50
|
rubygems_mfa_required: 'true'
|
51
|
-
post_install_message:
|
51
|
+
post_install_message:
|
52
52
|
rdoc_options: []
|
53
53
|
require_paths:
|
54
54
|
- lib
|
@@ -63,8 +63,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: '0'
|
65
65
|
requirements: []
|
66
|
-
rubygems_version: 3.
|
67
|
-
signing_key:
|
66
|
+
rubygems_version: 3.5.9
|
67
|
+
signing_key:
|
68
68
|
specification_version: 4
|
69
69
|
summary: A literate build system
|
70
70
|
test_files: []
|