require nodejs [release 1.5.1-2mamba;Tue May 12 2020]
This commit is contained in:
parent
fede17c0d8
commit
51a68ee181
@ -1,2 +1,4 @@
|
|||||||
# python-PyExecJS
|
# python-PyExecJS
|
||||||
|
|
||||||
|
Run JavaScript code from Python.
|
||||||
|
|
||||||
|
73
python-PyExecJS.spec
Normal file
73
python-PyExecJS.spec
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
Name: python-PyExecJS
|
||||||
|
Version: 1.5.1
|
||||||
|
Release: 2mamba
|
||||||
|
Summary: Run JavaScript code from Python
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: https://github.com/doloopwhile/PyExecJS
|
||||||
|
Source: https://pypi.debian.net/PyExecJS/PyExecJS-%{version}.tar.gz
|
||||||
|
License: MIT
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: libpython3-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%if "%?with_pyver"
|
||||||
|
%define pyver %{with_pyver}
|
||||||
|
%define pyappend py%{with_pyver}
|
||||||
|
%define __python %(rpm --eval %{__python%{with_pyver}})
|
||||||
|
%define python_sitearch %(rpm --eval %{python%{with_pyver}_sitearch})
|
||||||
|
%define python_sitelib %(rpm --eval %{python%{with_pyver}_sitelib})
|
||||||
|
%define python_inc %(rpm --eval %{python%{with_pyver}_inc})
|
||||||
|
%define python_version %(rpm --eval %{python%{with_pyver}_version})
|
||||||
|
%define python_provides %(rpm --eval %{python%{with_pyver}_provides})
|
||||||
|
%define python_requires %(rpm --eval %{python%{with_pyver}_requires})
|
||||||
|
%define py_requires %(rpm --eval %{py%{with_pyver}_requires})
|
||||||
|
|
||||||
|
%package py%{pyver}
|
||||||
|
Group: System/Libraries/Python
|
||||||
|
Summary: %{summary}.
|
||||||
|
Requires: nodejs
|
||||||
|
%py_requires
|
||||||
|
|
||||||
|
%description py%{pyver}
|
||||||
|
%{summary}.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n PyExecJS-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags}" %{__python} setup.py build
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%{__python} setup.py install \
|
||||||
|
-O1 --skip-build \
|
||||||
|
--root="%{buildroot}" \
|
||||||
|
--install-headers=%{python_inc} \
|
||||||
|
--install-lib=%{python_sitearch} \
|
||||||
|
--record=%{name}.filelist
|
||||||
|
|
||||||
|
sed -i "s,.*/man/.*,&.gz," %{name}.filelist
|
||||||
|
|
||||||
|
%files %{?pyappend} -f %{name}.filelist
|
||||||
|
%defattr(-,root,root)
|
||||||
|
## note: this list is just an example; modify as required
|
||||||
|
# %{python_sitearch}/%{name}.py*
|
||||||
|
# %{python_sitearch}/%{name}.so
|
||||||
|
%doc LICENSE
|
||||||
|
## note: add extra documentation (if any)
|
||||||
|
# %doc README.md README.rst
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Tue May 12 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.1-2mamba
|
||||||
|
- require nodejs
|
||||||
|
|
||||||
|
* Fri May 08 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.5.1-1mamba
|
||||||
|
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user