appbundle-updater 0.2.12 → 0.3.0
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 +22 -0
- data/bin/appbundle-updater +6 -2
- data/lib/appbundle_updater/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd5ccd49b9c4003f85cb287126d16b62852c75a7
|
|
4
|
+
data.tar.gz: e86e09902321fdbccb9e782b67d8da8513a97773
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 249f2c948b1f4981a4f78d82db31688bc3d0cf94207250e77c170ca30250de82eada5e75f1b3ac1312473ebd596cfc6c10178bbddb487602fed15d4e63392647
|
|
7
|
+
data.tar.gz: 3c6701d543e1f6ef4b9cc4c910f0257b7cdd012fc2d60a7261e6954c6019cedda273154e3004f1199a8556fcdfb9f0b692115e0454c5797cf1be73864c0ffe78
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [Unreleased](https://github.com/chef/appbundle-updater/tree/HEAD)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.12...HEAD)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- add some dnf and zlib-dev [\#17](https://github.com/chef/appbundle-updater/pull/17) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
10
|
+
|
|
11
|
+
## [v0.2.12](https://github.com/chef/appbundle-updater/tree/v0.2.12) (2016-05-17)
|
|
12
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.11...v0.2.12)
|
|
13
|
+
|
|
14
|
+
**Merged pull requests:**
|
|
15
|
+
|
|
16
|
+
- fix PATH issues [\#16](https://github.com/chef/appbundle-updater/pull/16) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
17
|
+
|
|
18
|
+
## [v0.2.11](https://github.com/chef/appbundle-updater/tree/v0.2.11) (2016-02-17)
|
|
19
|
+
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.10...v0.2.11)
|
|
20
|
+
|
|
21
|
+
**Merged pull requests:**
|
|
22
|
+
|
|
23
|
+
- add support for installing git stuff on suse [\#15](https://github.com/chef/appbundle-updater/pull/15) ([lamont-granquist](https://github.com/lamont-granquist))
|
|
24
|
+
|
|
3
25
|
## [v0.2.10](https://github.com/chef/appbundle-updater/tree/v0.2.10) (2016-01-19)
|
|
4
26
|
[Full Changelog](https://github.com/chef/appbundle-updater/compare/v0.2.9...v0.2.10)
|
|
5
27
|
|
data/bin/appbundle-updater
CHANGED
|
@@ -68,9 +68,13 @@ def install_package_dependencies
|
|
|
68
68
|
when /debian/
|
|
69
69
|
ENV["DEBIAN_FRONTEND"] = "noninteractive"
|
|
70
70
|
run("apt-get -y update")
|
|
71
|
-
run("apt-get -q -y install build-essential git")
|
|
71
|
+
run("apt-get -q -y install build-essential git liblzma-dev zlib1g-dev")
|
|
72
72
|
when /fedora/, /rhel/
|
|
73
|
-
|
|
73
|
+
if File.exist?("/usr/bin/dnf")
|
|
74
|
+
run("dnf -y install gcc make git zlib-devel lzma-devel")
|
|
75
|
+
else
|
|
76
|
+
run("yum -y install gcc make git zlib-devel lzma-devel")
|
|
77
|
+
end
|
|
74
78
|
when /suse/
|
|
75
79
|
run("zypper --non-interactive install gcc make git")
|
|
76
80
|
else
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appbundle-updater
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- lamont-granquist
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Updates appbundled apps in Chef's omnibus packages
|
|
14
14
|
email:
|