From 83d3a4aa4c1350992abebb1e5657186fdca53f352cd6754aa796d8d9f9a703b0 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Tue, 22 Jan 2019 08:56:27 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++++ .gitignore | 1 + 0.9.6.tar.gz | 3 +++ python-pybars3.changes | 10 +++++++ python-pybars3.spec | 60 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 97 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 0.9.6.tar.gz create mode 100644 python-pybars3.changes create mode 100644 python-pybars3.spec 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/0.9.6.tar.gz b/0.9.6.tar.gz new file mode 100644 index 0000000..ad0d459 --- /dev/null +++ b/0.9.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:544c1d6a1d73d62706bf9aafa53587e251d159e136fe0697a0410a008efd2582 +size 29049 diff --git a/python-pybars3.changes b/python-pybars3.changes new file mode 100644 index 0000000..fa94eec --- /dev/null +++ b/python-pybars3.changes @@ -0,0 +1,10 @@ +------------------------------------------------------------------- +Thu Jan 17 00:14:12 UTC 2019 - John Vandenberg + +- Enabled test suite using GitHub tag source tarball +- Added %license and %doc + +------------------------------------------------------------------- +Tue Jan 8 03:48:17 UTC 2019 - John Vandenberg + +- Initial revision for v0.9.6 diff --git a/python-pybars3.spec b/python-pybars3.spec new file mode 100644 index 0000000..4c17422 --- /dev/null +++ b/python-pybars3.spec @@ -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