diff --git a/README.md b/README.md index 8879220..5282eec 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # python-pylint-venv +A Pylint init-hook to use the same Pylint installation with different virtual environments. + diff --git a/python-pylint-venv.spec b/python-pylint-venv.spec new file mode 100644 index 0000000..bc00d4e --- /dev/null +++ b/python-pylint-venv.spec @@ -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 +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 2.3.0-1mamba +- package created using the webbuild interface