Hello community,

here is the log from the commit of package yast2-ca-management for 
openSUSE:Factory checked in at 2017-01-31 12:35:35
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-ca-management (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-ca-management.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-ca-management"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-ca-management/yast2-ca-management.changes  
2016-06-10 23:59:38.000000000 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-ca-management.new/yast2-ca-management.changes 
    2017-02-03 20:07:41.728504769 +0100
@@ -1,0 +2,7 @@
+Fri Jan 20 15:00:03 UTC 2017 - lsle...@suse.cz
+
+- Removed some obsolete BuildRequires (doxygen, etc... are not
+  needed after disabling the autodocs generation) (fate#320356)
+- 3.2.0
+
+-------------------------------------------------------------------

Old:
----
  yast2-ca-management-3.1.9.tar.bz2

New:
----
  yast2-ca-management-3.2.0.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-ca-management.spec ++++++
--- /var/tmp/diff_new_pack.KMw7Lq/_old  2017-02-03 20:07:42.504395556 +0100
+++ /var/tmp/diff_new_pack.KMw7Lq/_new  2017-02-03 20:07:42.508394992 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-ca-management
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,16 +17,12 @@
 
 
 Name:           yast2-ca-management
-Version:        3.1.9
+Version:        3.2.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 Source0:        %{name}-%{version}.tar.bz2
 
-BuildRequires:  docbook-xsl-stylesheets
-BuildRequires:  dosfstools
-BuildRequires:  doxygen
-BuildRequires:  libxslt
 BuildRequires:  perl-Date-Calc
 BuildRequires:  perl-URI
 BuildRequires:  perl-X500-DN

++++++ yast2-ca-management-3.1.9.tar.bz2 -> yast2-ca-management-3.2.0.tar.bz2 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ca-management-3.1.9/.travis.sh 
new/yast2-ca-management-3.2.0/.travis.sh
--- old/yast2-ca-management-3.1.9/.travis.sh    1970-01-01 01:00:00.000000000 
+0100
+++ new/yast2-ca-management-3.2.0/.travis.sh    2017-01-27 09:57:45.319612397 
+0100
@@ -0,0 +1,65 @@
+#! /bin/bash
+
+# TODO: This is a modified copy of the
+# https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
+# file which runs the tests builds the package as the "nobody" user.
+# 
+# The problem is that the tests are silently skipped for non-root users
+# and for root they fail. (They are probably broken for long time
+# but very likely nobody noticed that...)
+
+###########################################################################
+
+# This is a CI build script for running inside the Travis builds.
+# It's designed for the YaST packages written in Ruby.
+
+# exit on error immediately, print the executed commands
+set -e -x
+
+rake check:pot
+
+if [ -e .rubocop.yml ]; then
+  rubocop
+else
+  # if rubocop is not used then at least check the syntax
+  rake check:syntax
+fi;
+
+if [ -e .spell.yml ]; then
+  rake check:spelling
+fi
+
+yardoc
+
+chown -R nobody:nobody /usr/src/app
+
+# autotools based package
+if [ -e Makefile.cvs ]; then
+  make -f Makefile.cvs
+  make -s
+  make -s install
+  su nobody -c "make -s check VERBOSE=1 Y2DIR=`pwd`"
+fi
+
+# enable coverage reports
+COVERAGE=1 CI=1 rake test:unit
+
+# build the binary package locally, use plain "rpmbuild" to make it simple
+rake tarball > /dev/null 2>&1
+
+PKG_DIR=~nobody/rpmbuild
+
+mkdir -p $PKG_DIR/SOURCES/
+cp package/* $PKG_DIR/SOURCES/
+chown -R nobody:nobody $PKG_DIR
+
+# Build the binary package, skip the %check section,
+# the tests have been already executed outside RPM build.
+su nobody -c "rpmbuild -bb --nocheck package/*.spec"
+
+# test the %pre/%post scripts by installing/updating/removing the built 
packages
+# ignore the dependencies to make the test easier, as a smoke test it's good 
enough
+rpm -iv --force --nodeps $PKG_DIR/RPMS/*/*.rpm
+rpm -Uv --force --nodeps $PKG_DIR/RPMS/*/*.rpm
+# get the plain package names and remove all packages at once
+rpm -ev --nodeps `rpm -q --qf '%{NAME} ' -p $PKG_DIR/RPMS/*/*.rpm`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ca-management-3.1.9/.travis.yml 
new/yast2-ca-management-3.2.0/.travis.yml
--- old/yast2-ca-management-3.1.9/.travis.yml   2016-06-07 12:51:34.698920987 
+0200
+++ new/yast2-ca-management-3.2.0/.travis.yml   2017-01-27 09:57:45.319612397 
+0100
@@ -1,14 +1,11 @@
-language: cpp
-compiler:
-    - gcc
+sudo: required
+language: bash
+services:
+  - docker
+
 before_install:
-    # disable rvm, use system Ruby
-    - rvm reset
-    - wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
-    - sh ./travis_setup.sh -p "yast2-devtools yast2-testsuite yast2"
+  - docker build -t yast-ca-management-image .
 script:
-    - make -f Makefile.cvs
-    - make
-    - sudo make install
-    - make check
-
+  # the "yast-travis-ruby" script is included in the base yastdevel/ruby image
+  # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
+  - docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-ca-management-image ./.travis.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ca-management-3.1.9/CONTRIBUTING.md 
new/yast2-ca-management-3.2.0/CONTRIBUTING.md
--- old/yast2-ca-management-3.1.9/CONTRIBUTING.md       2016-06-07 
12:51:34.698920987 +0200
+++ new/yast2-ca-management-3.2.0/CONTRIBUTING.md       2017-01-27 
09:57:45.319612397 +0100
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 ------------
 
@@ -44,15 +42,22 @@
      to the [Ruby style
      guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+     `rake version:bump`) and add a new entry to the `package/*.changes` file
+     (by `osc vc package`).  
+     For bigger changes or changes which need longer discussion it is advised 
to
+     add this as a separate last commit so it can be easily updated when 
another
+     change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
      (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
      Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-ca-management-3.1.9/Dockerfile 
new/yast2-ca-management-3.2.0/Dockerfile
--- old/yast2-ca-management-3.1.9/Dockerfile    1970-01-01 01:00:00.000000000 
+0100
+++ new/yast2-ca-management-3.2.0/Dockerfile    2017-01-27 09:57:45.327612397 
+0100
@@ -0,0 +1,9 @@
+FROM yastdevel/ruby
+RUN zypper --gpg-auto-import-keys --non-interactive in --no-recommends \
+  perl-Date-Calc \
+  perl-URI \
+  perl-X500-DN \
+  perl-XML-Writer \
+  perl-camgm
+COPY . /usr/src/app
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ca-management-3.1.9/package/yast2-ca-management.changes 
new/yast2-ca-management-3.2.0/package/yast2-ca-management.changes
--- old/yast2-ca-management-3.1.9/package/yast2-ca-management.changes   
2016-06-07 12:51:34.702920987 +0200
+++ new/yast2-ca-management-3.2.0/package/yast2-ca-management.changes   
2017-01-27 09:57:45.355612397 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Fri Jan 20 15:00:03 UTC 2017 - lsle...@suse.cz
+
+- Removed some obsolete BuildRequires (doxygen, etc... are not
+  needed after disabling the autodocs generation) (fate#320356)
+- 3.2.0
+
+-------------------------------------------------------------------
 Tue Jun  7 09:18:07 UTC 2016 - igonzalezs...@suse.com
 
 - Stop generating autodocs (fate#320356)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-ca-management-3.1.9/package/yast2-ca-management.spec 
new/yast2-ca-management-3.2.0/package/yast2-ca-management.spec
--- old/yast2-ca-management-3.1.9/package/yast2-ca-management.spec      
2016-06-07 12:51:34.702920987 +0200
+++ new/yast2-ca-management-3.2.0/package/yast2-ca-management.spec      
2017-01-27 09:57:45.355612397 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-ca-management
-Version:        3.1.9
+Version:        3.2.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -25,10 +25,6 @@
 
 Group:          System/YaST
 License:        GPL-2.0
-BuildRequires:  docbook-xsl-stylesheets
-BuildRequires:  dosfstools
-BuildRequires:  doxygen
-BuildRequires:  libxslt
 BuildRequires:  perl-Date-Calc
 BuildRequires:  perl-URI
 BuildRequires:  perl-X500-DN


Reply via email to