Accepting request 755141 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/755141
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bottle?expand=0&rev=16
This commit is contained in:
Dominique Leuenberger 2019-12-11 11:10:47 +00:00 committed by Git OBS Bridge
commit 622fdac876
6 changed files with 40 additions and 8 deletions

19
LICENSE Normal file
View File

@ -0,0 +1,19 @@
Copyright (c) 2012, Marcel Hellkamp.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e9eaa412a60cc3d42ceb42f58d15864d9ed1b92e9d630b8130c871c5bb16107c
size 72283

3
bottle-0.12.18.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0819b74b145a7def225c0e83b16a4d5711fde751cd92bae467a69efce720f69e
size 71557

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ef9624c59e2d48b731819d08cf98e1f2eee5ae3d4e6ecf31911fa29a2f52cea2
size 464433
oid sha256:ffb46ffb2590738db12a2cdf0900df7af76d15886f33e4a46c25063c39e0bf2e
size 464808

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sun Dec 8 16:56:51 UTC 2019 - Benoît Monin <benoit.monin@gmx.fr>
- update to version 0.12.18:
* Bugfix release to improve Python 3.8+ support
- add the missing LICENSE file
- update the documentation pdf
- remove the executable bit from egg-info files
-------------------------------------------------------------------
Sun Jul 28 16:13:23 UTC 2019 - Arun Persaud <arun@gmx.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-bottle
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-bottle
Version: 0.12.17
Version: 0.12.18
Release: 0
Summary: WSGI framework for small web applications
License: MIT
@ -26,6 +26,7 @@ Group: Development/Languages/Python
URL: https://bottlepy.org/
Source: https://files.pythonhosted.org/packages/source/b/bottle/bottle-%{version}.tar.gz
Source1: http://bottlepy.org/docs/0.12/bottle-docs.pdf
Source2: https://raw.githubusercontent.com/bottlepy/bottle/release-0.12/LICENSE
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
BuildArch: noarch
@ -55,7 +56,10 @@ This subpackage contains the PDF documentation for %{name}.
%prep
%setup -q -n bottle-%{version}
cp %{SOURCE1} .
cp %{SOURCE1} %{SOURCE2} .
# remove executable bit, those are not scripts
chmod -x bottle.egg-info/*
%build
%python_build