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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8fc1ab361956a0cdd8344167a5bf16a9972b53ec
4
- data.tar.gz: c669ea2bbc9bc97d6b970c758fb249ddeb100fe3
3
+ metadata.gz: dd5ccd49b9c4003f85cb287126d16b62852c75a7
4
+ data.tar.gz: e86e09902321fdbccb9e782b67d8da8513a97773
5
5
  SHA512:
6
- metadata.gz: d855b8f6b5206109e7da6e8020a16dd631e61bf4916599a3e38ef5c51631c66b16639ee750791cb36e30e61cd4f2dfdea96f764db8acb17050baa3655c5f38dd
7
- data.tar.gz: 04635f5fa7a5c678e20c389f2843f490451049822bc24aa7899d7255ba6d47fa6faec6827fd56a2521b063a8875b12b2086af25702bad0e130ee147c4b8bfea4
6
+ metadata.gz: 249f2c948b1f4981a4f78d82db31688bc3d0cf94207250e77c170ca30250de82eada5e75f1b3ac1312473ebd596cfc6c10178bbddb487602fed15d4e63392647
7
+ data.tar.gz: 3c6701d543e1f6ef4b9cc4c910f0257b7cdd012fc2d60a7261e6954c6019cedda273154e3004f1199a8556fcdfb9f0b692115e0454c5797cf1be73864c0ffe78
@@ -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
 
@@ -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
- run("yum -y install gcc make git")
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
@@ -1,3 +1,3 @@
1
1
  module AppbundleUpdater
2
- VERSION = "0.2.12"
2
+ VERSION = "0.3.0"
3
3
  end
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.2.12
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-05-17 00:00:00.000000000 Z
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: