X-Git-Url: http://git.pld-linux.org/?a=blobdiff_plain;f=python-pygments.spec;h=025664b903af6045b607b282ae36a93ee6118817;hb=HEAD;hp=3ca239d39d4c3034f406be51853143838b3359a8;hpb=2db7c8b8518b4c0ba403865dc46992c516a004be;p=packages%2Fpython-pygments.git diff --git a/python-pygments.spec b/python-pygments.spec index 3ca239d..025664b 100644 --- a/python-pygments.spec +++ b/python-pygments.spec @@ -1,39 +1,55 @@ -%bcond_without python2 -%bcond_without python3 -%define module pygments # -Summary: A generic syntax highlighter +# Conditional build: +%bcond_without python2 # CPython 2.x module +%bcond_with python3 # CPython 3.x module (built from python3-pygments.spec) +%bcond_without doc # Sphinx documentation +%bcond_without tests # unit tests + +%define module pygments +Summary: A generic syntax highlighter as Python 2.x module +Summary(pl.UTF-8): Moduł Pythona 2.x do ogólnego podświetlania składni Name: python-%{module} -Version: 1.4 -Release: 2 +Version: 2.5.2 +Release: 4 License: BSD Group: Development/Languages/Python -Source0: http://pypi.python.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz -# Source0-md5: d77ac8c93a7fb27545f2522abe9cc462 -URL: http://pygments.org/ +#Source0Download: https://pypi.org/simple/pygments/ +Source0: https://files.pythonhosted.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz +# Source0-md5: 465a35559863089d959d783a69f79b9f +Patch0: rpmspec.patch +URL: https://pygments.org/ +BuildRequires: rpmbuild(macros) >= 1.714 %if %{with python2} -BuildRequires: python -BuildRequires: python-devel -BuildRequires: python-modules +BuildRequires: python >= 1:2.7 +BuildRequires: python-devel >= 1:2.7 +BuildRequires: python-modules >= 1:2.7 +BuildRequires: python-setuptools +%if %{with tests} +BuildRequires: python-pytest +%endif %endif %if %{with python3} -BuildRequires: python3 -BuildRequires: python3-2to3 -BuildRequires: python3-devel -BuildRequires: python3-distribute -BuildRequires: python3-modules +BuildRequires: python3 >= 1:3.5 +BuildRequires: python3-devel >= 1:3.5 +BuildRequires: python3-modules >= 1:3.5 +BuildRequires: python3-setuptools +%if %{with tests} +BuildRequires: python3-pytest +%endif %endif BuildRequires: rpm-pythonprov -%pyrequires_eq python-modules -Provides: python-Pygments -Obsoletes: python-Pygments +%{?with_doc:BuildRequires: sphinx-pdg-2} +Requires: python-modules >= 1:2.7 +Requires: python-setuptools +Provides: python-Pygments = %{version}-%{release} +Obsoletes: python-Pygments < 1.5 BuildArch: noarch BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n) %description Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that -need to prettify source code. Highlights are +need to prettify source code. Highlights are: - a wide range of common languages and markup formats is supported - special attention is paid to details that increase highlighting quality @@ -44,9 +60,29 @@ need to prettify source code. Highlights are - it is usable as a command-line tool and as a library - ... and it highlights even Brainf*ck! +%description -l pl.UTF-8 +Pygments to moduł Pythona do podświetlania składni ogólnego +przeznaczenia we wszelkiego rodzaju programach, takich jaka systemy +forów, wiki i inne plikacje wymagające ładnego wyświetlania kodu +źródłowego. Zalety Pygments to: +- obsługiwany szeroki zakres popularnych języków i formatów znaczników +- zwrócenie szczególnej uwagi na szczegóły zwiększające jakość + podświetlania +- łatwa obsługa nowych języków i formatów; większość języków + wykorzystuje prosty mechanizm analizy leksykalnej oparty o wyrażenia + regularne +- dostępność wielu formatów wyjściowych, m.in. HTML, RTF, LaTeX i + sekwencje ANSI +- możliwość używania z linii poleceń oraz jako biblioteki +- ...a także - podświetla nawet Brainf*cka! + %package -n python3-%{module} -Summary: Generic syntax highlighter +Summary: Generic syntax highlighter as Python 3.x module +Summary(pl.UTF-8): Moduł Pythona 3.x do ogólnego podświetlania składni Group: Development/Languages/Python +Requires: python3-modules >= 1:3.5 +Requires: python3-setuptools +Conflicts: python-pygments < 2.5.2 %description -n python3-%{module} Pygments is a generic syntax highlighter for general use in all kinds @@ -62,47 +98,80 @@ need to prettify source code. Highlights are - it is usable as a command-line tool and as a library - ... and it highlights even Brainf*ck! +%description -n python3-%{module} -l pl.UTF-8 +Pygments to moduł Pythona do podświetlania składni ogólnego +przeznaczenia we wszelkiego rodzaju programach, takich jaka systemy +forów, wiki i inne plikacje wymagające ładnego wyświetlania kodu +źródłowego. Zalety Pygments to: +- obsługiwany szeroki zakres popularnych języków i formatów znaczników +- zwrócenie szczególnej uwagi na szczegóły zwiększające jakość + podświetlania +- łatwa obsługa nowych języków i formatów; większość języków + wykorzystuje prosty mechanizm analizy leksykalnej oparty o wyrażenia + regularne +- dostępność wielu formatów wyjściowych, m.in. HTML, RTF, LaTeX i + sekwencje ANSI +- możliwość używania z linii poleceń oraz jako biblioteki +- ...a także - podświetla nawet Brainf*cka! + +%package apidocs +Summary: API documentation for Python Pygments module +Summary(pl.UTF-8): Dokumentacja API modułu Pythona Pygments +Group: Documentation + +%description apidocs +API documentation for Python Pygments module. + +%description apidocs -l pl.UTF-8 +Dokumentacja API modułu Pythona Pygments. + %prep %setup -q -n Pygments-%{version} +%patch0 -p1 %build %if %{with python2} -%{__python} setup.py build -b build-2 +%py_build + +%if %{with tests} +%{__python} -m pytest tests +%endif %endif %if %{with python3} -%{__python3} setup.py build -b build-3 +%py3_build + +%if %{with tests} +%{__python3} -m pytest tests +%endif +%endif + +%if %{with doc} +PYTHONPATH=$(pwd) \ +%{__make} -C doc html \ + SPHINXBUILD=sphinx-build-2 %endif %install rm -rf $RPM_BUILD_ROOT %if %{with python2} -%{__python} setup.py \ - build -b build-2 \ - install \ - --optimize=2 \ - --root=$RPM_BUILD_ROOT - -mv $RPM_BUILD_ROOT%{_bindir}/pygmentize{,-2} +%py_install -%py_ocomp $RPM_BUILD_ROOT%{py_sitedir} -%py_comp $RPM_BUILD_ROOT%{py_sitedir} +%{__mv} $RPM_BUILD_ROOT%{_bindir}/pygmentize{,-2} %py_postclean %endif %if %{with python3} -%{__python3} setup.py \ - build -b build-3 \ - install \ - --optimize=2 \ - --root=$RPM_BUILD_ROOT +%py3_install -mv $RPM_BUILD_ROOT%{_bindir}/pygmentize{,-3} +%{__mv} $RPM_BUILD_ROOT%{_bindir}/pygmentize{,-3} %endif -ln -s pygmentize-2 $RPM_BUILD_ROOT%{_bindir}/pygmentize +%if %{with python3} +ln -sf pygmentize-3 $RPM_BUILD_ROOT%{_bindir}/pygmentize +%endif %clean rm -rf $RPM_BUILD_ROOT @@ -110,20 +179,24 @@ rm -rf $RPM_BUILD_ROOT %if %{with python2} %files %defattr(644,root,root,755) -%doc PKG-INFO TODO AUTHORS -%attr(755,root,root) %{_bindir}/pygmentize +%doc AUTHORS CHANGES LICENSE README.rst %attr(755,root,root) %{_bindir}/pygmentize-2 %{py_sitescriptdir}/%{module} -%if "%{py_ver}" > "2.4" -%{py_sitescriptdir}/*.egg-info -%endif +%{py_sitescriptdir}/Pygments-%{version}-py*.egg-info %endif %if %{with python3} %files -n python3-%{module} %defattr(644,root,root,755) -%doc PKG-INFO TODO AUTHORS +%doc AUTHORS CHANGES LICENSE README.rst +%attr(755,root,root) %{_bindir}/pygmentize %attr(755,root,root) %{_bindir}/pygmentize-3 %{py3_sitescriptdir}/%{module} -%{py3_sitescriptdir}/*.egg-info +%{py3_sitescriptdir}/Pygments-%{version}-py*.egg-info +%endif + +%if %{with doc} +%files apidocs +%defattr(644,root,root,755) +%doc doc/_build/html/{_static,docs,*.html,*.js} %endif