forked from pool/python-sge-pygame
Accepting request 834127 from home:mnhauke:games
- Update to version 1.7 Specification additions: * sge.gfx.Font.linesize * sge.gfx.Sprite.size Specification misc changes: * Added an outline and outline_thickness argument to sge.gfx.Sprite.draw_text and related methods. * Added use of an argument by the pixelate transition to control rate of pixelation updates. * Specified that extending sge.s with additional string variables is allowed. * Removed the warning about use of MP3 files in the documentation since MP3 patents expired a couple years ago. Specification bugfixes: * Missing documentation for sge.gfx.Sprite.get_spritelist * Missing documentation for sge.gfx.Color.__init__ * sge.gfx.Sprite.scale docs talking about rotation rather than scaling - Update to version 1.7 Specification additions: * sge.s.isometric * sge.s.orthogonal * sge.gfx.Sprite.get_spritelist Specification misc changes: * Full name changed from "SGE Game Engine" to "Seclusion Game Engine" Specification bugfixes: * Misspelling of "backgrounds" as "bckgrounds" OBS-URL: https://build.opensuse.org/request/show/834127 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sge-pygame?expand=0&rev=9
This commit is contained in:
committed by
Git OBS Bridge
parent
35dbad8fc7
commit
3c55b99c37
@@ -1,3 +1,34 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Sep 13 14:00:35 UTC 2020 - Martin Hauke <mardnh@gmx.de>
|
||||||
|
|
||||||
|
- Update to version 1.7
|
||||||
|
Specification additions:
|
||||||
|
* sge.gfx.Font.linesize
|
||||||
|
* sge.gfx.Sprite.size
|
||||||
|
Specification misc changes:
|
||||||
|
* Added an outline and outline_thickness argument to
|
||||||
|
sge.gfx.Sprite.draw_text and related methods.
|
||||||
|
* Added use of an argument by the pixelate transition to control
|
||||||
|
rate of pixelation updates.
|
||||||
|
* Specified that extending sge.s with additional string variables
|
||||||
|
is allowed.
|
||||||
|
* Removed the warning about use of MP3 files in the documentation
|
||||||
|
since MP3 patents expired a couple years ago.
|
||||||
|
Specification bugfixes:
|
||||||
|
* Missing documentation for sge.gfx.Sprite.get_spritelist
|
||||||
|
* Missing documentation for sge.gfx.Color.__init__
|
||||||
|
* sge.gfx.Sprite.scale docs talking about rotation rather than
|
||||||
|
scaling
|
||||||
|
- Update to version 1.7
|
||||||
|
Specification additions:
|
||||||
|
* sge.s.isometric
|
||||||
|
* sge.s.orthogonal
|
||||||
|
* sge.gfx.Sprite.get_spritelist
|
||||||
|
Specification misc changes:
|
||||||
|
* Full name changed from "SGE Game Engine" to "Seclusion Game Engine"
|
||||||
|
Specification bugfixes:
|
||||||
|
* Misspelling of "backgrounds" as "bckgrounds"
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 5 19:35:36 UTC 2018 - mardnh@gmx.de
|
Wed Dec 5 19:35:36 UTC 2018 - mardnh@gmx.de
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-sge-pygame
|
# spec file for package python-sge-pygame
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2020 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -12,20 +12,19 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
%define major_version 1.5
|
|
||||||
Name: python-sge-pygame
|
Name: python-sge-pygame
|
||||||
Version: 1.5.1
|
Version: 1.7
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A 2-D game engine for Python
|
Summary: A 2-D game engine for Python
|
||||||
License: LGPL-3.0-or-later
|
License: LGPL-3.0-or-later
|
||||||
Group: Development/Languages/Python
|
Group: Development/Languages/Python
|
||||||
Url: http://stellarengine.nongnu.org
|
URL: https://python-sge.github.io
|
||||||
Source: http://download.savannah.gnu.org/releases/stellarengine/%{major_version}/sge-pygame-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/s/sge/sge-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-pygame >= 1.9.1
|
Requires: python-pygame >= 1.9.1
|
||||||
@@ -43,7 +42,7 @@ detection, parallax scrolling, image transformation.
|
|||||||
This implementation of the SGE uses Pygame as a backend.
|
This implementation of the SGE uses Pygame as a backend.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n sge-pygame-%{version}
|
%setup -q -n sge-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%python_build
|
||||||
@@ -53,7 +52,7 @@ This implementation of the SGE uses Pygame as a backend.
|
|||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%doc README README.pygame
|
%doc README README.pygame WHATSNEW WHATSNEW.pygame
|
||||||
%license sge/COPYING sge/COPYING.LESSER
|
%license sge/COPYING sge/COPYING.LESSER
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/*
|
||||||
|
|
||||||
|
3
sge-1.7.tar.gz
Normal file
3
sge-1.7.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9b03054ad88d9b19a7b5089a7e3ab454829be9aba34dd2f8b37accbecc36d609
|
||||||
|
size 1376110
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:edb2f99dab7907698fe5ee0a7de0d869a7fbd8a119d13eb00654a303bfec83e6
|
|
||||||
size 2113165
|
|
Reference in New Issue
Block a user