Sync from SUSE:ALP:Source:Standard:1.0 python-pyjsparser revision e331fdf196bbbaff45785e40b454929c

This commit is contained in:
Adrian Schröter 2023-05-17 14:55:37 +02:00
commit 2dc29a0e0f
6 changed files with 145 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

21
LICENSE Normal file
View File

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2017 Piotr Dabkowski
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

13
fix_version.patch Normal file
View File

@ -0,0 +1,13 @@
Index: pyjsparser-2.7.1/pyjsparser/__init__.py
===================================================================
--- pyjsparser-2.7.1.orig/pyjsparser/__init__.py
+++ pyjsparser-2.7.1/pyjsparser/__init__.py
@@ -1,5 +1,5 @@
__all__ = ['PyJsParser', 'parse', 'JsSyntaxError', 'pyjsparserdata']
__author__ = 'Piotr Dabkowski'
-__version__ = '2.2.0'
+__version__ = '2.7.1'
from .parser import PyJsParser, parse, JsSyntaxError
-from . import pyjsparserdata
\ No newline at end of file
+from . import pyjsparserdata

BIN
pyjsparser-2.7.1.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

27
python-pyjsparser.changes Normal file
View File

@ -0,0 +1,27 @@
-------------------------------------------------------------------
Fri Apr 21 12:30:56 UTC 2023 - Dirk Müller <dmueller@suse.com>
- add sle15_python_module_pythons (jsc#PED-68)
-------------------------------------------------------------------
Thu Apr 13 22:43:44 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Make calling of %{sle15modernpython} optional.
-------------------------------------------------------------------
Sat May 25 13:09:24 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Update to 2.7.1:
* no upstream changelog
- Rebase fix_version.patch
-------------------------------------------------------------------
Thu Mar 14 16:38:43 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
- Trim bias from description.
-------------------------------------------------------------------
Wed Mar 13 15:47:24 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- Initial commit
- add fix_version.patch

58
python-pyjsparser.spec Normal file
View File

@ -0,0 +1,58 @@
#
# spec file for package python-pyjsparser
#
# Copyright (c) 2023 SUSE LLC
#
# 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-%{**}}
%{?sle15_python_module_pythons}
Name: python-pyjsparser
Version: 2.7.1
Release: 0
Summary: Javascript parser based on esprimajs
License: MIT
Group: Development/Languages/Python
URL: https://github.com/PiotrDabkowski/pyjsparser
Source: https://files.pythonhosted.org/packages/source/p/pyjsparser/pyjsparser-%{version}.tar.gz
Source1: https://raw.githubusercontent.com/PiotrDabkowski/pyjsparser/master/LICENSE
Patch0: fix_version.patch
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildArch: noarch
%python_subpackages
%description
A JavaScript parser - a manual translation of esprima.js to Python.
It supports the whole of ECMAScript 5.1 and parts of ECMAScript 6.
%prep
%setup -q -n pyjsparser-%{version}
%patch0 -p1
cp %{SOURCE1} .
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog