[SCM] ci-tooling packaging branch, master, updated. 44ccc7958ee5847557e5a4267de3da3e9fd1782f

Rohan Garg rohangarg-guest at moszumanska.debian.org
Mon Oct 19 16:37:18 UTC 2015


Gitweb-URL: http://git.debian.org/?p=pkg-kde/ci-tooling.git;a=commitdiff;h=44ccc79

The following commit has been merged in the master branch:
commit 44ccc7958ee5847557e5a4267de3da3e9fd1782f
Author: Rohan Garg <rohan at garg.io>
Date:   Mon Oct 19 18:33:46 2015 +0200

    Make sure we include the right things
    
    CI::Source gets dumped to YAML, when reading back from YAML, we
    can just include the source class and straightaway read the YAML.
    
    CI::Source uses the CI::BuildVersion class but doesn't include it.
    
    CI::BuildVersion uses the Changelog class but doesn't include it.
---
 lib/ci/build_version.rb | 1 +
 lib/ci/source.rb        | 3 +++
 2 files changed, 4 insertions(+)

diff --git a/lib/ci/build_version.rb b/lib/ci/build_version.rb
index 46dc34f..18c43dc 100644
--- a/lib/ci/build_version.rb
+++ b/lib/ci/build_version.rb
@@ -1,6 +1,7 @@
 require 'date'
 
 require_relative '../os'
+require_relative '../debian/changelog'
 
 module CI
   # Wraps a debian changelog to construct a build specific version based on the
diff --git a/lib/ci/source.rb b/lib/ci/source.rb
index 23532b6..8a70584 100644
--- a/lib/ci/source.rb
+++ b/lib/ci/source.rb
@@ -1,4 +1,7 @@
 require 'json'
+require 'yaml'
+
+require_relative 'build_version'
 
 module CI
   # Build source descriptor

-- 
ci-tooling packaging



More information about the pkg-kde-commits mailing list