Hello community, here is the log from the commit of package ski for openSUSE:Factory checked in at 2015-03-18 13:04:32 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ski (Old) and /work/SRC/openSUSE:Factory/.ski.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ski" Changes: -------- --- /work/SRC/openSUSE:Factory/ski/ski.changes 2015-01-09 20:50:15.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ski.new/ski.changes 2015-03-18 13:04:38.000000000 +0100 @@ -1,0 +2,21 @@ +Sat Mar 14 18:42:53 UTC 2015 - nemy...@gmx.ch + +- Remove obsolete patch ski-6.8-Makefile.patch, Upstream have + accepted changes + +------------------------------------------------------------------- +Sat Mar 14 18:27:13 UTC 2015 - nemy...@gmx.ch + +- Remove obsolete patch ski-6.8-ski.desktop.patch, use instead + ski-6.9-ski.desktop.patch + +------------------------------------------------------------------- +Sat Mar 14 18:02:22 UTC 2015 - nemy...@gmx.ch + +- Update to 6.9, announce message: + BSD port patch. + +- Remove obsolete patch sky-6.8-Makefile.patch, + Upstream have accepted changes + +------------------------------------------------------------------- Old: ---- ski-6.8-Makefile.patch ski-6.8-ski.desktop.patch ski-6.8.tar.gz New: ---- ski-6.9-ski.desktop.patch ski-6.9.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ski.spec ++++++ --- /var/tmp/diff_new_pack.VelguV/_old 2015-03-18 13:04:39.000000000 +0100 +++ /var/tmp/diff_new_pack.VelguV/_new 2015-03-18 13:04:39.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package ski # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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,17 +17,15 @@ Name: ski -Version: 6.8 +Version: 6.9 Release: 0 Summary: Skiing simulation with curses interface in python License: BSD-3-Clause Group: Amusements/Games/Action/Race Url: http://catb.org/~esr/ski/ Source0: http://www.catb.org/~esr/%{name}/%{name}-%{version}.tar.gz -# PATCH-FIX-UPSTREAM - ski-6.8-Makefile.patch -- Fix installation and uninstallation handling -Patch0: %{name}-6.8-Makefile.patch # PATCH-FIX-UPSTREAM - ski-6.8-ski.desktop.patch -- Adjust to Desktop Menu Specification -Patch1: %{name}-6.8-%{name}.desktop.patch +Patch0: %{name}-6.9-%{name}.desktop.patch %if 0%{?suse_version} BuildRequires: update-desktop-files %endif @@ -51,7 +49,6 @@ %prep %setup -q %patch0 -%patch1 %build make %{?_smp_mflags} CFLAGS="%{optflags}" ++++++ ski-6.8-ski.desktop.patch -> ski-6.9-ski.desktop.patch ++++++ --- /work/SRC/openSUSE:Factory/ski/ski-6.8-ski.desktop.patch 2015-01-09 20:50:15.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ski.new/ski-6.9-ski.desktop.patch 2015-03-18 13:04:38.000000000 +0100 @@ -1,5 +1,5 @@ ---- ski.desktop.orig 2014-05-21 13:36:38.000000000 +0200 -+++ ski.desktop 2014-12-15 15:15:04.000000000 +0100 +--- ski.desktop.orig 2014-12-16 04:38:40.000000000 +0100 ++++ ski.desktop 2015-03-14 18:52:05.463150699 +0100 @@ -1,10 +1,9 @@ [Desktop Entry] -Type=Application ++++++ ski-6.8.tar.gz -> ski-6.9.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ski-6.8/Makefile new/ski-6.9/Makefile --- old/ski-6.8/Makefile 2014-05-21 14:10:19.000000000 +0200 +++ new/ski-6.9/Makefile 2014-12-16 04:39:12.000000000 +0100 @@ -17,15 +17,35 @@ clean: rm -f *~ *.6 *.html *.rpm *.lsm MANIFEST +install: ski.6 uninstall + install -m 0755 -d $(DESTDIR)/usr/bin + install -m 0755 -d $(DESTDIR)/usr/share/man/man6 + install -m 0755 -d $(DESTDIR)//usr/share/applications/ + install -m 0755 -d $(DESTDIR)/usr/share/pixmaps/ + install -m 0755 -d $(DESTDIR)/usr/share/appdata + install -m 0755 ski $(DESTDIR)/usr/bin/ + install -m 0644 ski.6 $(DESTDIR)/usr/share/man/man6/ + install -m 0644 ski.desktop $(DESTDIR)/usr/share/applications + install -m 0644 ski.png $(DESTDIR)/usr/share/pixmaps/ + install -m 0644 ski.xml $(DESTDIR)/usr/share/appdata/ + +uninstall: + rm -f /usr/bin/ski /usr/share/man/man6/ski.6 + rm -f /usr/share/applications/ski.desktop + rm -f /usr/share/pixmaps/ski.png + rm -f /usr/share/appdata/ski.xml + pychecker: @ln -f ski ski.py @-pychecker --only --limit 50 ski.py @rm -f ski.py* -COMMON_PYLINT = --rcfile=/dev/null --reports=n --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" -PYLINTOPTS = $(COMMON_PYLINT) --disable="C0103,C0111,C0301,C0325,C0326,C1001,R0902,R0911,R0912,W0621" +PYLINTOPTS = --rcfile=/dev/null --reports=n \ + --msg-template="{path}:{line}: [{msg_id}({symbol}), {obj}] {msg}" \ + --dummy-variables-rgx='^_' +SUPPRESSIONS = "C0103,C0111,C0301,C0325,C0326,C1001,R0902,R0911,R0912,W0621" pylint: - @pylint $(PYLINTOPTS) ski + @pylint $(PYLINTOPTS) --disable=$(SUPPRESSIONS) ski version: @echo $(VERS) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ski-6.8/NEWS new/ski-6.9/NEWS --- old/ski-6.8/NEWS 2014-05-21 13:47:38.000000000 +0200 +++ new/ski-6.9/NEWS 2015-01-09 06:27:19.000000000 +0100 @@ -1,5 +1,8 @@ ski project history +6.9: 2015-01-09 + BSD port patch. + 6.8: 2014-05-20 Fix a minor bug revealed by pychecker. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ski-6.8/control new/ski-6.9/control --- old/ski-6.8/control 2013-12-01 16:35:52.000000000 +0100 +++ new/ski-6.9/control 2015-01-09 06:25:11.000000000 +0100 @@ -14,10 +14,12 @@ skillfully outmaneuver them. A fun and very silly game that proves you don't need fancy graphical user interfaces to have a good time. -XBS-Destinations: freecode +#XBS-Destinations: freecode Homepage: http://www.catb.org/~esr/ski +#XBS-Gitorious-URL: https://gitorious.org/ski + XBS-HTML-Target: index.html XBS-Logo: ski.png diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/ski-6.8/ski new/ski-6.9/ski --- old/ski-6.8/ski 2014-05-21 14:08:07.000000000 +0200 +++ new/ski-6.9/ski 2015-01-09 06:27:34.000000000 +0100 @@ -13,7 +13,7 @@ ? = print this help message. """ -version = "6.8" +version = "6.9" import time, random, curses, copy, sys, os REP_SNOW = '.' -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org