commit 23b8f950f8cf48acfd7e3e78aab3afe1760e9677c0f2fd27fd07810adbe04615 Author: Todd R Date: Mon Jul 29 03:08:04 2019 +0000 Accepting request 719460 from home:TheBlackCat:branches:devel:languages:python:jupyter A Python implementation of the JSON5 data format Required by the latest version of jupyter-jupyterlab-server OBS-URL: https://build.opensuse.org/request/show/719460 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-json5?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/pyjson5-0.8.5.tar.gz b/pyjson5-0.8.5.tar.gz new file mode 100644 index 0000000..607aa1e --- /dev/null +++ b/pyjson5-0.8.5.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6fccabcdc609899b0eb69a1c8d790b722c054b4aae0fc4b95cc63fd9a72ceb6 +size 106674 diff --git a/python-json5.changes b/python-json5.changes new file mode 100644 index 0000000..eb59366 --- /dev/null +++ b/python-json5.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Mon Jul 29 02:39:50 UTC 2019 - Todd R + +- Initial version diff --git a/python-json5.spec b/python-json5.spec new file mode 100644 index 0000000..3d5ae13 --- /dev/null +++ b/python-json5.spec @@ -0,0 +1,66 @@ +# +# spec file for package python-json5 +# +# 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/ + + +%{?!python_module:%define python_module() python-%{**} python3-%{**}} +Name: python-json5 +Version: 0.8.5 +Release: 0 +License: Apache-2.0 +Summary: A Python implementation of the JSON5 data format +Url: https://github.com/dpranke/pyjson5 +Group: Development/Languages/Python +Source: https://github.com/dpranke/pyjson5/archive/v%{version}.tar.gz#/pyjson5-%{version}.tar.gz +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: python-rpm-macros +BuildArch: noarch + +%python_subpackages + +%description +A Python implementation of the JSON5 data format. + +JSON5 extends the JSON data interchange format to make it +slightly more usable as a configuration language: + + * JavaScript-style comments (both single and multi-line) are legal. + * Object keys may be unquoted if they are legal ECMAScript identifiers + * Objects and arrays may end with trailing commas. + * Strings can be single-quoted, and multi-line string literals are allowed. + + +%prep +%setup -q -n pyjson5-%{version} + +%build +%python_build + +%install +%python_install +%python_expand rm -rf %{buildroot}%{$python_sitelib}/tests +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +%python_exec setup.py test + +%files %{python_files} +%doc README.md +%license LICENSE +%python3_only %{_bindir}/pyjson5 +%{python_sitelib}/* + +%changelog