simp-rake-helpers 2.5.1 → 2.5.2
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/CHANGELOG.md +4 -0
- data/lib/simp/rake/build/pkg.rb +3 -1
- data/lib/simp/rake/helpers/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3d5e5187a25201e49a2f6da57bd47d4105a76c02
|
4
|
+
data.tar.gz: 3c27774897fac63c7106cc5943054bb7fab93686
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b48d503e6d9ea96bca82c00299256de75076cf2d1f38a62f9fc96a62177e8b917b896b9c766d360fbc35aa817e408d4b39eaac6761469aa476d9d23963852c09
|
7
|
+
data.tar.gz: 66874284e021080a71349879a8c738b7d76fcc203273d6d59a065bff53094989859f62ed6fc85b8fa5ee529a3a233b5d0d358bae6de113b85ef0e4d1285342f8
|
data/CHANGELOG.md
CHANGED
data/lib/simp/rake/build/pkg.rb
CHANGED
@@ -403,6 +403,8 @@ module Simp::Rake::Build
|
|
403
403
|
|
404
404
|
desc "Sign the RPMs."
|
405
405
|
task :signrpms,[:key,:rpm_dir,:force] => [:prep,:key_prep,:mock_prep] do |t,args|
|
406
|
+
which('rpmsign') || raise(Exception, 'Could not find rpmsign on your system. Exiting.')
|
407
|
+
|
406
408
|
args.with_defaults(:key => 'dev')
|
407
409
|
args.with_defaults(:rpm_dir => "#{@build_dir}/SIMP/*RPMS")
|
408
410
|
args.with_default(:force => false)
|
@@ -756,7 +758,7 @@ protect=1
|
|
756
758
|
# FIXME: unique_name is never called
|
757
759
|
# FIXME: which is fortunate, because PKGNAME is never defined
|
758
760
|
def mock_pre_check(chroot,unique_name=false,init=true)
|
759
|
-
raise(Exception,
|
761
|
+
which('mock') || raise(Exception, 'Could not find mock on your system, exiting')
|
760
762
|
|
761
763
|
mock_configs = get_mock_configs
|
762
764
|
|