]> git.pld-linux.org Git - packages/python3-pygments.git/commitdiff
- based on sphinx-pdg.spec
authorwrobell <wrobell@pld-linux.org>
Thu, 16 Oct 2008 19:47:37 +0000 (19:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    python-pygments.spec -> 1.1

python-pygments.spec [new file with mode: 0644]

diff --git a/python-pygments.spec b/python-pygments.spec
new file mode 100644 (file)
index 0000000..5122acb
--- /dev/null
@@ -0,0 +1,53 @@
+
+%define module pygments
+Summary:       Generic syntax highlighter
+Name:          python-%{module}
+Version:       0.11.1
+Release:       1
+License:       BSD
+Group:         Development/Languages/Python
+Source0:       http://pypi.python.org/packages/source/P/Pygments/Pygments-%{version}.tar.gz
+# Source0-md5: a7dc555f316437ba5241855ac306209a
+URL:           http://jinja.pocoo.org/1/
+BuildRequires: python-devel
+%pyrequires_eq python-modules
+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
+- a wide range of common languages and markup formats is supported
+- special attention is paid to details that increase highlighting quality
+- support for new languages and formats are added easily; most languages
+  use a simple regex-based lexing mechanism
+- a number of output formats is available, among them HTML, RTF, LaTeX and
+  ANSI sequences
+- it is usable as a command-line tool and as a library
+- ... and it highlights even Brainf*ck!
+
+%prep
+%setup -q -n Pygments-%{version}
+
+%build
+%{__python} setup.py build
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+%{__python} setup.py install \
+               --optimize=2 \
+               --root=$RPM_BUILD_ROOT
+
+%py_postclean
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(644,root,root,755)
+%doc PKG-INFO TODO AUTHORS
+%attr(755,root,root) %{_bindir}/*
+%{py_sitescriptdir}/%{module}
+%{py_sitescriptdir}/*Pygments*.egg*
This page took 0.076174 seconds and 4 git commands to generate.