conjur-debify 1.10.0 → 1.10.1

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
  SHA256:
3
- metadata.gz: 88040281ebb6c9d449d4d1d76ad5a8336227ddf8c4fe5ec3753d413ff16b47d2
4
- data.tar.gz: 98cc9d92be782db60c56ee85c6cdea1eff52733eded68543964f510f37a69e17
3
+ metadata.gz: 979d401ca7fa9648f2633b05f2e0873a994c7b7d1193781c0721f6e7f2850082
4
+ data.tar.gz: 86bb4356509d977d921015b054aacf01c95d56ae0125311e16161a6be85f8515
5
5
  SHA512:
6
- metadata.gz: 5642578c564449462ec292c828a30fa0eeabee0e764bd47b7437564c4be3181808fda0f02fcd516d7aed617c98d50deb062a96b3fb9a5066fae5ba1e1eb130e1
7
- data.tar.gz: 05e3bb4cac1d4188b19e84adf42b93e875efd300d725efa04177f0366c1da4de25960fbe417757420406b09a78b895c51a599d8dcd02a602d77218bd72f1e800
6
+ metadata.gz: 5e43272868e7fbf8f6dd5935330c8711231cddc3e6e5e506d5d3798296216a2c4d893de75f93a0213e94811b93825bb1f786da972854c6d15af776b5cc802bc5
7
+ data.tar.gz: 1b361c89688eff80491cf661c43304f0ba98e7a2a2987160b1854552abaa875e8a282429b202dfac00d5b12dc384786c9a9071145c31b21d4501235297edf962
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.10.1
2
+
3
+ * Update fpm container to use Ruby 2.4, fixes `ruby-xz` dependency
4
+
1
5
  # 1.10.0
2
6
 
3
7
  * add `--net` support to `test` and `sandbox` subcommands
data/README.md CHANGED
@@ -66,7 +66,7 @@ GLOBAL OPTIONS
66
66
  COMMANDS
67
67
  clean - Clean current working directory of non-Git-managed files
68
68
  config - Show the given configuration
69
- detect-version - Auto-detect and print the repository verison
69
+ detect-version - Auto-detect and print the repository version
70
70
  help - Shows a list of commands or help for one command
71
71
  initconfig - Initialize the config file using current global options
72
72
  package - Build a debian package for a project
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.10.1
data/lib/conjur/debify.rb CHANGED
@@ -726,7 +726,7 @@ command "publish" do |c|
726
726
  end
727
727
  end
728
728
 
729
- desc "Auto-detect and print the repository verison"
729
+ desc "Auto-detect and print the repository version"
730
730
  command "detect-version" do |c|
731
731
  c.desc "Set the current working directory"
732
732
  c.flag [ :d, :dir ]
@@ -1,18 +1,13 @@
1
- # Build from the same version of ubuntu as phusion/baseimage
2
- FROM ubuntu:14.04
1
+ FROM ruby:2.4
3
2
 
4
3
  RUN apt-get update -y && \
5
- apt-get install -y software-properties-common && \
6
- apt-add-repository -y ppa:brightbox/ruby-ng && \
7
- apt-get update -y && \
8
- apt-get install -y build-essential git libpq5 libpq-dev ruby2.2 ruby2.2-dev libffi-dev
4
+ apt-get install -y build-essential git libpq5 libpq-dev libffi-dev && \
5
+ rm -rf /var/lib/apt/lists/*
9
6
 
10
-
11
- # Configure bundler and gem the way the ruby:2.2 Dockerfile does, as of
12
- # https://github.com/docker-library/ruby/commit/c88f3a67da720bfa9fb1717960d90fd5db11c757
13
7
  ENV BUNDLER_VERSION 1.11.2
8
+ ENV FPM_VERSION 1.9.3
14
9
 
15
- RUN gem install --no-rdoc --no-ri bundler:$BUNDLER_VERSION fpm
10
+ RUN gem install --no-rdoc --no-ri bundler:$BUNDLER_VERSION fpm:$FPM_VERSION
16
11
 
17
12
  ENV GEM_HOME /usr/local/bundle
18
13
  ENV BUNDLE_PATH="$GEM_HOME" \
@@ -20,13 +15,10 @@ ENV BUNDLE_PATH="$GEM_HOME" \
20
15
  BUNDLE_SILENCE_ROOT_WARNING=1 \
21
16
  BUNDLE_APP_CONFIG="$GEM_HOME"
22
17
  ENV PATH $BUNDLE_BIN:$PATH
23
- RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" \
18
+ RUN mkdir -p "$GEM_HOME" "$BUNDLE_BIN" /src \
24
19
  && chmod 777 "$GEM_HOME" "$BUNDLE_BIN"
25
20
 
26
- RUN mkdir /src
27
-
28
- ENTRYPOINT [ "/package.sh" ]
29
-
30
21
  COPY debify_utils.sh /
31
22
  COPY package.sh /
32
23
 
24
+ ENTRYPOINT [ "/package.sh" ]
data/secrets.yml CHANGED
@@ -1,3 +1,3 @@
1
1
  # Example of secrets.yml file needed for debify publish
2
- ARTIFACTORY_USERNAME: !var artifactory/users/jenkins/username
3
- ARTIFACTORY_PASSWORD: !var artifactory/users/jenkins/password
2
+ ARTIFACTORY_USERNAME: !var ci/artifactory/users/jenkins/username
3
+ ARTIFACTORY_PASSWORD: !var ci/artifactory/users/jenkins/password
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-debify
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.10.0
4
+ version: 1.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kevin Gilpin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-03-19 00:00:00.000000000 Z
11
+ date: 2018-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gli