[Python-modules-commits] r1432 - in /packages/pygments/trunk/debian: ./ changelog compat control copyright docs rules

pox-guest at users.alioth.debian.org pox-guest at users.alioth.debian.org
Tue Oct 24 19:18:13 UTC 2006


Author: pox-guest
Date: Tue Oct 24 19:18:13 2006
New Revision: 1432

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1432
Log:
Load newtrunk into packages/pygments/trunk.

Added:
    packages/pygments/trunk/debian/
    packages/pygments/trunk/debian/changelog
    packages/pygments/trunk/debian/compat
    packages/pygments/trunk/debian/control
    packages/pygments/trunk/debian/copyright
    packages/pygments/trunk/debian/docs
    packages/pygments/trunk/debian/rules   (with props)

Added: packages/pygments/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/changelog?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/changelog (added)
+++ packages/pygments/trunk/debian/changelog Tue Oct 24 19:18:13 2006
@@ -1,0 +1,6 @@
+pygments (0.1~svn2258-1) UNRELEASED; urgency=low
+
+  * Initial release (closes: #395064)
+
+ -- Piotr Ozarowski <ozarow at gmail.com>  Tue, 24 Oct 2006 17:54:36 +0200
+

Added: packages/pygments/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/compat?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/compat (added)
+++ packages/pygments/trunk/debian/compat Tue Oct 24 19:18:13 2006
@@ -1,0 +1,1 @@
+5

Added: packages/pygments/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/control?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/control (added)
+++ packages/pygments/trunk/debian/control Tue Oct 24 19:18:13 2006
@@ -1,0 +1,28 @@
+Source: pygments
+Section: python
+Priority: optional
+Maintainer: Piotr Ozarowski <ozarow at gmail.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5.0.38)
+Build-Depends-Indep: python (>= 2.3.5-11), python-all-dev, python-central (>= 0.5.6), python-setuptools (>= 0.6b3-1)
+Standards-Version: 3.7.2
+XS-Python-Version: >= 2.3
+
+Package: python-pygments
+Architecture: all
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: syntax highlighting package written in Python
+ Pygments aims to be 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, increasing quality by a fair amount
+   * support for new languages and formats are added easily
+   * a number of output formats, presently HTML, LaTeX and ANSI sequences
+   * it is usable as a command-line tool and as a library
+   * ... and it highlights even Brainfuck!
+ .
+  Homepage: http://pygments.pocoo.org/

Added: packages/pygments/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/copyright?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/copyright (added)
+++ packages/pygments/trunk/debian/copyright Tue Oct 24 19:18:13 2006
@@ -1,0 +1,35 @@
+This package was debianized by Piotr Ozarowski <ozarow at gmail.com> on
+Tue, 24 Oct 2006 17:54:36 +0200.
+
+It was downloaded from SVN repository:
+svn export http://trac.pocoo.org/repos/pygments/trunk pygments
+
+Copyright Holder: Georg Brandl <g.brandl at gmx.net>
+
+License:
+
+ Pygments - Python syntax highlighting package
+ Copyright (C) 2006 by the respective authors (see AUTHORS)
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Lesser General Public
+ License as published by the Free Software Foundation; either
+ version 2.1 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ Lesser General Public License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with this library; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+
+On Debian systems, the complete text of the LGPL
+can be found in `/usr/share/common-licenses/LGPL'
+
+The Debian packaging is (C) 2006, Piotr Ozarowski <ozarow at gmail.com> and
+is licensed under the GPL.
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in `/usr/share/common-licenses/GPL'.

Added: packages/pygments/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/docs?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/docs (added)
+++ packages/pygments/trunk/debian/docs Tue Oct 24 19:18:13 2006
@@ -1,0 +1,1 @@
+docs/src/*

Added: packages/pygments/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/pygments/trunk/debian/rules?rev=1432&op=file
==============================================================================
--- packages/pygments/trunk/debian/rules (added)
+++ packages/pygments/trunk/debian/rules Tue Oct 24 19:18:13 2006
@@ -1,0 +1,44 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+UPSTREAM_VERSION=$(shell dpkg-parsechangelog \
+	| grep ^Version: | cut -d ' ' -f 2 | cut -d '-' -f 1 | cut -d '~' -f 1)
+
+PYVERS=$(shell pyversions -vr)
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -rf build Pygments.egg-info
+	find . -name "*\.py[co]" -exec rm {} \;
+	dh_clean
+
+build:
+
+install: build $(PYVERS:%=install-python%)
+install-python%:
+	python$* setup.py install --single-version-externally-managed \
+		--root debian/python-pygments
+	mv debian/python-pygments/usr/lib/python$*/site-packages/Pygments-${UPSTREAM_VERSION}-py$*.egg-info \
+	   debian/python-pygments/usr/lib/python$*/site-packages/Pygments-${UPSTREAM_VERSION}.egg-info
+	sed -i -e '1 s/python.*/python/' debian/python-pygments/usr/bin/pygmentize
+
+binary-indep: build install
+	dh_testdir -i
+	dh_testroot -i
+	dh_installchangelogs -i
+	dh_installdocs -i
+	dh_pycentral -i
+	dh_compress -i -X.py
+	dh_fixperms -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+binary-arch:
+
+binary: binary-indep binary-arch
+
+.PHONY: build clean binary-indep binary-arch binary install configure

Propchange: packages/pygments/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




More information about the Python-modules-commits mailing list