commit 00c8d4a41b91c1e0a6e7abf4078d985eecdd16532ffa2d4a50e4085d3052e36c Author: Tomáš Chvátal Date: Thu Oct 18 08:46:42 2018 +0000 - Initial commit, needed by acitoolkit OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask-Bootstrap?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/3.3.7.1.tar.gz b/3.3.7.1.tar.gz new file mode 100644 index 0000000..5e34bc2 --- /dev/null +++ b/3.3.7.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c188cebd80eabe94f3ea2189429a9070cdbf102d2ae31aa007883d86d25f16 +size 490821 diff --git a/python-Flask-Bootstrap.changes b/python-Flask-Bootstrap.changes new file mode 100644 index 0000000..c369fcc --- /dev/null +++ b/python-Flask-Bootstrap.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Thu Oct 18 08:21:35 UTC 2018 - Tomáš Chvátal + +- Initial commit, needed by acitoolkit diff --git a/python-Flask-Bootstrap.spec b/python-Flask-Bootstrap.spec new file mode 100644 index 0000000..9820daa --- /dev/null +++ b/python-Flask-Bootstrap.spec @@ -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 +`_ 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