Hello community,

here is the log from the commit of package yast2-schema for openSUSE:Factory 
checked in at 2018-02-12 10:16:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-schema (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-schema.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-schema"

Mon Feb 12 10:16:18 2018 rev:37 rq:575503 version:4.0.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-schema/yast2-schema.changes        
2016-11-07 13:25:43.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-schema.new/yast2-schema.changes   
2018-02-12 10:16:19.251114193 +0100
@@ -1,0 +2,6 @@
+Fri Feb  9 14:42:12 UTC 2018 - knut.anders...@suse.com
+
+- Drop yast2-inetd (fate#323373)
+- 4.0.0
+
+-------------------------------------------------------------------

Old:
----
  yast2-schema-3.2.0.tar.bz2

New:
----
  yast2-schema-4.0.0.tar.bz2

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

Other differences:
------------------
++++++ yast2-schema.spec ++++++
--- /var/tmp/diff_new_pack.QyrEqe/_old  2018-02-12 10:16:20.267077582 +0100
+++ /var/tmp/diff_new_pack.QyrEqe/_new  2018-02-12 10:16:20.275077293 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-schema
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,7 +17,7 @@
 
 
 Name:           yast2-schema
-Version:        3.2.0
+Version:        4.0.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -53,7 +53,6 @@
 BuildRequires:  yast2-firstboot
 BuildRequires:  yast2-ftp-server
 BuildRequires:  yast2-http-server
-BuildRequires:  yast2-inetd
 BuildRequires:  yast2-installation
 BuildRequires:  yast2-iscsi-client
 BuildRequires:  yast2-kdump

++++++ yast2-schema-3.2.0.tar.bz2 -> yast2-schema-4.0.0.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-schema-3.2.0/.travis.yml 
new/yast2-schema-4.0.0/.travis.yml
--- old/yast2-schema-3.2.0/.travis.yml  1970-01-01 01:00:00.000000000 +0100
+++ new/yast2-schema-4.0.0/.travis.yml  2018-02-12 09:30:05.000000000 +0100
@@ -0,0 +1,14 @@
+sudo: required
+language: bash
+services:
+  - docker
+
+before_install:
+  - docker build -t yast-schema-image .
+  # list the installed packages (just for easier debugging)
+  - docker run --rm -it yast-schema-image rpm -qa | sort
+
+script:
+  # 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-schema-image yast-travis-ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-schema-3.2.0/.yardopts 
new/yast2-schema-4.0.0/.yardopts
--- old/yast2-schema-3.2.0/.yardopts    1970-01-01 01:00:00.000000000 +0100
+++ new/yast2-schema-4.0.0/.yardopts    2018-02-12 09:30:05.000000000 +0100
@@ -0,0 +1,7 @@
+--no-private
+--markup markdown
+--protected
+--readme README.md
+--output-dir ./doc/autodocs
+--files *.md
+src/**/*.rb
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-schema-3.2.0/Dockerfile 
new/yast2-schema-4.0.0/Dockerfile
--- old/yast2-schema-3.2.0/Dockerfile   1970-01-01 01:00:00.000000000 +0100
+++ new/yast2-schema-4.0.0/Dockerfile   2018-02-12 09:30:05.000000000 +0100
@@ -0,0 +1,33 @@
+FROM yastdevel/ruby
+RUN zypper --gpg-auto-import-keys --non-interactive in --no-recommends \
+  autoyast2 \
+  trang \
+  yast2 \
+  yast2-add-on \
+  yast2-audit-laf \
+  yast2-auth-client \
+  yast2-auth-server \
+  yast2-bootloader \
+  yast2-ca-management \
+  yast2-country \
+  yast2-dhcp-server \
+  yast2-dns-server \
+  yast2-firewall \
+  yast2-firstboot \
+  yast2-ftp-server \
+  yast2-http-server \
+  yast2-installation \
+  yast2-iscsi-client \
+  yast2-kdump \
+  yast2-mail \
+  yast2-network \
+  yast2-nfs-client \
+  yast2-nfs-server \
+  yast2-nis-client \
+  yast2-nis-server \
+  yast2-ntp-client \
+  yast2-online-update-configuration \
+  yast2-printer \
+  yast2-proxy \
+  && zypper clean -a
+COPY . /usr/src/app
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-schema-3.2.0/package/yast2-schema.changes 
new/yast2-schema-4.0.0/package/yast2-schema.changes
--- old/yast2-schema-3.2.0/package/yast2-schema.changes 2016-11-07 
10:25:47.445208472 +0100
+++ new/yast2-schema-4.0.0/package/yast2-schema.changes 2018-02-12 
09:30:05.000000000 +0100
@@ -1,4 +1,10 @@
 -------------------------------------------------------------------
+Fri Feb  9 14:42:12 UTC 2018 - knut.anders...@suse.com
+
+- Drop yast2-inetd (fate#323373)
+- 4.0.0
+
+-------------------------------------------------------------------
 Fri Nov  4 10:12:24 UTC 2016 - igonzalezs...@suse.com
 
 - Add support to enable copy-on-write for Btrfs subvolumes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-schema-3.2.0/package/yast2-schema.spec 
new/yast2-schema-4.0.0/package/yast2-schema.spec
--- old/yast2-schema-3.2.0/package/yast2-schema.spec    2016-11-07 
10:25:47.445208472 +0100
+++ new/yast2-schema-4.0.0/package/yast2-schema.spec    2018-02-12 
09:30:05.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-schema
-Version:        3.2.0
+Version:        4.0.0
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -54,7 +54,6 @@
 BuildRequires: yast2-firstboot
 BuildRequires: yast2-ftp-server
 BuildRequires: yast2-http-server
-BuildRequires: yast2-inetd
 BuildRequires: yast2-installation
 BuildRequires: yast2-iscsi-client
 BuildRequires: yast2-kdump


Reply via email to