15
0
Files
python-jsbeautifier/python-jsbeautifier.spec
Dirk Mueller 12432e8431 - update to 1.14.11:
* Editor not working https://beautifier.io/ (#2201)
  * Set nodejs minimum to v14 (#2169)
  * Invalid prettification of object with unicode escape character
    as object key (#2159)
  * invalid json being generated with wrap_line_length (#1932)
  * Require nodejs v12 or greater (#2151)
  * CSS insideNonNestedAtRule generic variable (#2147)
  * Update dependencies (#2145)
  * Fix CI build (#2144)
  * Fixed #2133 Theme Toggle on without_codemirror Mode (#2138)
  * use correct variable name (#2135)
  * docs: Fix a few typos (#2127)
  * Add support for new record types (cont.) (#2118)
  * fix - semicolon followed by block statement doesnt have new line (#2117)
  * Fix formatting related to the element (#2114)
  * issue prettifying (function(){code();{code}})() (#1852)
- Update to v1.14.7
  * Add brace_style option for CSS (#1259)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-jsbeautifier?expand=0&rev=21
2023-12-07 22:02:31 +00:00

77 lines
2.4 KiB
RPMSpec

#
# spec file for package python-jsbeautifier
#
# 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-%{**}}
Name: python-jsbeautifier
Version: 1.14.11
Release: 0
Summary: JavaScript unobfuscator and beautifier
License: MIT
URL: https://jsbeautifier.org
Source0: https://files.pythonhosted.org/packages/source/j/jsbeautifier/jsbeautifier-%{version}.tar.gz
# https://github.com/beautify-web/js-beautify/issues/1674
Source1: https://raw.githubusercontent.com/beautify-web/js-beautify/master/LICENSE
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-EditorConfig >= 0.12.2
Requires: python-setuptools
Requires: python-six >= 1.13.0
Requires(post): update-alternatives
Requires(postun):update-alternatives
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module EditorConfig >= 0.12.2}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module six >= 1.13.0}
# /SECTION
%python_subpackages
%description
Beautify, unpack or deobfuscate JavaScript. Handles popular online obfuscators.
%prep
%setup -q -n jsbeautifier-%{version}
cp %{SOURCE1} .
%build
%python_build
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/js-beautify
%{python_expand %fdupes %{buildroot}%{$python_sitelib}}
%check
%pytest jsbeautifier/tests/testindentation.py
%pytest jsbeautifier/tests/generated/tests.py
%post
%python_install_alternative js-beautify
%postun
%python_uninstall_alternative js-beautify
%files %{python_files}
%license LICENSE
%python_alternative %{_bindir}/js-beautify
%{python_sitelib}/jsbeautifier
%{python_sitelib}/jsbeautifier-%{version}-py*.egg-info
%changelog