- Initial commit, needed by acitoolkit

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask-Bootstrap?expand=0&rev=1
This commit is contained in:
Tomáš Chvátal 2018-10-18 08:46:42 +00:00 committed by Git OBS Bridge
commit 00c8d4a41b
5 changed files with 96 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
3.3.7.1.tar.gz Normal file
View File

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

View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Thu Oct 18 08:21:35 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>
- Initial commit, needed by acitoolkit

View File

@ -0,0 +1,65 @@
#
# spec file for package python-Flask-Bootstrap
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-Flask-Bootstrap
Version: 3.3.7.1
Release: 0
Summary: An extension that includes Bootstrap in your project, without any boilerplate code
License: BSD-2-Clause AND APACHE-2.0
Group: Development/Languages/Python
URL: http://github.com/mbr/flask-bootstrap
Source: https://github.com/mbr/flask-bootstrap/archive/%{version}.tar.gz
BuildRequires: %{python_module Flask >= 0.8}
BuildRequires: %{python_module dominate}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module visitor}
BuildRequires: %{python_module pytest}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Flask >= 0.8
Requires: python-dominate
Requires: python-visitor
BuildArch: noarch
%python_subpackages
%description
Flask-Bootstrap packages `Bootstrap
<http://getbootstrap.com>`_ into an extension that mostly consists
of a blueprint named 'bootstrap'. It can also create links to serve Bootstrap
from a CDN and works with no boilerplate code in your application.
%prep
%setup -q -n flask-bootstrap-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_bin_suffix} -v
%files %{python_files}
%license LICENSE
%doc README.rst CHANGES
%{python_sitelib}/*
%changelog