14
0

Accepting request 666562 from home:jayvdb:soe

- Enabled test suite using GitHub tag source tarball
- Added %license and %doc
- Initial revision for v0.9.6

OBS-URL: https://build.opensuse.org/request/show/666562
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pybars3?expand=0&rev=1
This commit is contained in:
2019-01-22 08:56:27 +00:00
committed by Git OBS Bridge
commit 83d3a4aa4c
5 changed files with 97 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
0.9.6.tar.gz Normal file
View File

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

10
python-pybars3.changes Normal file
View File

@@ -0,0 +1,10 @@
-------------------------------------------------------------------
Thu Jan 17 00:14:12 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Enabled test suite using GitHub tag source tarball
- Added %license and %doc
-------------------------------------------------------------------
Tue Jan 8 03:48:17 UTC 2019 - John Vandenberg <jayvdb@gmail.com>
- Initial revision for v0.9.6

60
python-pybars3.spec Normal file
View File

@@ -0,0 +1,60 @@
#
# spec file for package python-pybars3
#
# Copyright (c) 2019 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 http://bugs.opensuse.org/
%define base_name pybars3
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-%{base_name}
Version: 0.9.6
Release: 0
License: LGPL-3.0
Summary: Handlebarsjs templating for Python 3 and 2
Url: https://github.com/wbond/%{base_name}
Group: Development/Languages/Python
Source: https://github.com/wbond/%{base_name}/archive/%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module PyMeta3 >= 0.5.1}
BuildRequires: fdupes
Requires: python-PyMeta3 >= 0.5.1
BuildArch: noarch
%python_subpackages
%description
Pybars3 provides a template system for Python which is compatible with
Handlebars.js. It is a fork of the pybars project that adds Python 3
compatibility and numerous features from Handlebars.js 2.0.
%prep
%setup -q -n pybars3-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec tests.py
%files %{python_files}
%license LICENSE
%doc readme.md changelog.md
%{python_sitelib}/*
%changelog