package created using the webbuild interface [release 2.3.0-1mamba;Mon Nov 07 2022]
This commit is contained in:
parent
c2c1d31375
commit
76da1a1244
@ -1,2 +1,4 @@
|
|||||||
# python-pylint-venv
|
# python-pylint-venv
|
||||||
|
|
||||||
|
A Pylint init-hook to use the same Pylint installation with different virtual environments.
|
||||||
|
|
||||||
|
56
python-pylint-venv.spec
Normal file
56
python-pylint-venv.spec
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
%define pkgname %(echo %name | cut -d- -f2- | tr - _)
|
||||||
|
Name: python-pylint-venv
|
||||||
|
Version: 2.3.0
|
||||||
|
Release: 1mamba
|
||||||
|
Summary: A Pylint init-hook to use the same Pylint installation with different virtual environments
|
||||||
|
Group: System/Libraries
|
||||||
|
Vendor: openmamba
|
||||||
|
Distribution: openmamba
|
||||||
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
|
URL: https://github.com/jgosmann/pylint-venv/
|
||||||
|
Source: http://pypi.debian.net/pylint-venv/pylint-venv-%{version}.tar.gz
|
||||||
|
License: MIT
|
||||||
|
## AUTOBUILDREQ-BEGIN
|
||||||
|
BuildRequires: libpython3-devel
|
||||||
|
## AUTOBUILDREQ-END
|
||||||
|
BuildRequires: python-poetry-core-py3
|
||||||
|
|
||||||
|
%description
|
||||||
|
%{summary}.
|
||||||
|
|
||||||
|
%if 0%{?with_pyver}
|
||||||
|
%pyver_package
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -q -n pylint-venv-%{version}
|
||||||
|
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags}" %{__python} -m build --no-isolation --wheel
|
||||||
|
|
||||||
|
%install
|
||||||
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
%{__python} -m installer --destdir=%{buildroot} dist/*.whl
|
||||||
|
|
||||||
|
mkdir %{buildroot}%{python_sitelib}/pylint_venv
|
||||||
|
mv %{buildroot}%{python_sitelib}/README.rst %{buildroot}%{python_sitelib}/pylint_venv/
|
||||||
|
mv %{buildroot}%{python_sitelib}/pylint_venv.py %{buildroot}%{python_sitelib}/pylint_venv/
|
||||||
|
mv %{buildroot}%{python_sitelib}/__pycache__ %{buildroot}%{python_sitelib}/pylint_venv/
|
||||||
|
|
||||||
|
#%if "%{?with_pyver}" != "3"
|
||||||
|
## Rename any conflicting file outside of python site packages tree
|
||||||
|
#for f in %{_bindir}/pdm; do
|
||||||
|
# mv %{buildroot}${f}{,-%{?pyappend}}
|
||||||
|
#done
|
||||||
|
#%endif
|
||||||
|
|
||||||
|
%files %{?pyappend}
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%dir %{python_sitelib}/%{pkgname}-%{version}.dist-info
|
||||||
|
%{python_sitelib}/%{pkgname}-%{version}.dist-info/*
|
||||||
|
%dir %{python_sitelib}/pylint_venv
|
||||||
|
%{python_sitelib}/pylint_venv/*
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Nov 07 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 2.3.0-1mamba
|
||||||
|
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user