[Python-modules-commits] r10263 - in packages/python-pip/trunk/debian (5 files)
chaica-guest at users.alioth.debian.org
chaica-guest at users.alioth.debian.org
Tue Nov 3 22:09:20 UTC 2009
Date: Tuesday, November 3, 2009 @ 22:09:20
Author: chaica-guest
Revision: 10263
* New upstream release
* Using dh7 + rules.tiny
* Clearer debian/copyright
* debian/control
- Removing python-central
- python-setuptools is mandatory at runtime. Closes: #536698.
* Removed debian/dirs
* Replacing pip.xml by pip.1
Added:
packages/python-pip/trunk/debian/pip.1
Modified:
packages/python-pip/trunk/debian/changelog
packages/python-pip/trunk/debian/control
packages/python-pip/trunk/debian/python-pip.manpages
Deleted:
packages/python-pip/trunk/debian/pip.xml
Modified: packages/python-pip/trunk/debian/changelog
===================================================================
--- packages/python-pip/trunk/debian/changelog 2009-11-03 21:12:27 UTC (rev 10262)
+++ packages/python-pip/trunk/debian/changelog 2009-11-03 22:09:20 UTC (rev 10263)
@@ -1,4 +1,4 @@
-python-pip (0.3.1-2) unstable; urgency=low
+python-pip (0.5.1-1) unstable; urgency=low
* New upstream release
* Using dh7 + rules.tiny
@@ -7,8 +7,9 @@
- Removing python-central
- python-setuptools is mandatory at runtime. Closes: #536698.
* Removed debian/dirs
+ * Replacing pip.xml by pip.1
- -- Carl Chenet <chaica at ohmytux.com> Wed, 28 Oct 2009 00:09:50 +0100
+ -- Carl Chenet <chaica at ohmytux.com> Tue, 03 Nov 2009 22:36:36 +0100
python-pip (0.3.1-1) unstable; urgency=low
Modified: packages/python-pip/trunk/debian/control
===================================================================
--- packages/python-pip/trunk/debian/control 2009-11-03 21:12:27 UTC (rev 10262)
+++ packages/python-pip/trunk/debian/control 2009-11-03 22:09:20 UTC (rev 10263)
@@ -4,8 +4,7 @@
Maintainer: Carl Chenet <chaica at ohmytux.com>
Uploaders: Jeff Licquia <licquia at debian.org>, Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Homepage: http://pip.openplans.org/
-Build-Depends: debhelper (>= 7.0.50~), python-all-dev
-Build-Depends-Indep: python (>= 2.3.5-7), python-support, python-setuptools (>= 0.6c1), xsltproc, docbook-xsl
+Build-Depends: debhelper (>= 7.0.50~), python-all-dev, python (>= 2.3.5-7), python-support, python-setuptools (>= 0.6c1)
Standards-Version: 3.8.3
XS-Python-Version: all
Vcs-Svn: svn://svn.debian.org/svn/python-modules/packages/python-pip/trunk/
@@ -13,9 +12,7 @@
Package: python-pip
Architecture: all
-Section: python
-Depends: ${python:Depends}, python-pkg-resources, python-setuptools (>= 0.6c1)
-XB-Python-Version: ${python:Versions}
+Depends: ${python:Depends}, ${misc:Depends}, python-pkg-resources, python-setuptools (>= 0.6c1)
Description: Alternative Python package installer
pip installs packages. Python packages. An easy_install replacement.
.
Added: packages/python-pip/trunk/debian/pip.1
===================================================================
--- packages/python-pip/trunk/debian/pip.1 (rev 0)
+++ packages/python-pip/trunk/debian/pip.1 2009-11-03 22:09:20 UTC (rev 10263)
@@ -0,0 +1,133 @@
+'\" t
+.\" Title: pip
+.\" Author: [see the "AUTHORS" section]
+.\" Generator: DocBook XSL Stylesheets v1.75.1 <http://docbook.sf.net/>
+.\" Date: 11/03/2009
+.\" Manual: [FIXME: manual]
+.\" Source: [FIXME: source]
+.\" Language: English
+.\"
+.TH "PIP" "1" "11/03/2009" "[FIXME: source]" "[FIXME: manual]"
+.\" -----------------------------------------------------------------
+.\" * set default formatting
+.\" -----------------------------------------------------------------
+.\" disable hyphenation
+.nh
+.\" disable justification (adjust text to left margin only)
+.ad l
+.\" -----------------------------------------------------------------
+.\" * MAIN CONTENT STARTS HERE *
+.\" -----------------------------------------------------------------
+.SH "NAME"
+pip \- install Python packages
+.SH "SYNOPSIS"
+.sp
+\fBpip\fR [\fIcommand\fR] [\fIoptions\fR]
+.SH "DESCRIPTION"
+.sp
+pip is an alternative Python package installer\&. It performs the same basic job as easy_install, but with some extra features\&. It can work with version control repositories (currently only Git, Mercurial, and Bazaar repositories), logs output extensively, and prevents partial installs by downloading all requirements before starting installation\&.
+.sp
+It has some disadvantages when compared to easy_install\&. It does not use egg files, although it does preserve egg metadata\&. Some setuptools features are not yet supported, and some custom setup\&.py features won\(aat work\&.
+.sp
+pip is designed to work with virtualenv, in that it can be given the path to a virtualenv environment (with \-E or \-\-environment) and it will know to install to that environment instead of the system locations\&.
+.SH "COMMANDS"
+.sp
+The command comes before any options\&. The following commands are recognized:
+.PP
+\fB\-help\fR
+.RS 4
+Show the help text\&.
+.RE
+.PP
+\fB\-bundle\fR
+.RS 4
+Create "bundles" which can be used by pip to install the group of Python packages in multiple places\&.
+.RE
+.PP
+\fB\-freeze\fR
+.RS 4
+Write the current list of installed packages to a requirements file, which can be used by pip to reinstall the same set of packages\&.
+.RE
+.PP
+\fB\-install\fR
+.RS 4
+Install packages\&.
+.RE
+.PP
+\fB\-unzip\fR
+.RS 4
+Unzip an individual package\&.
+.RE
+.PP
+\fB\-zip\fR
+.RS 4
+Zip an individual package\&.
+.RE
+.SH "OPTIONS"
+.PP
+\fB\-h, \-\-help\fR
+.RS 4
+Show summary of options\&.
+.RE
+.PP
+\fB\-\-version\fR
+.RS 4
+Show the version of the program\&.
+.RE
+.PP
+\fB\-v, \-\-verbose\fR
+.RS 4
+Be more verbose\&.
+.RE
+.PP
+\fB\-q, \-\-quiet\fR
+.RS 4
+Be less verbose; suppress unimportant output\&.
+.RE
+.PP
+\fB\-E, \-\-environment\fR=\fIDIR\fR
+.RS 4
+When using pip with a virtual environment created by virtualenv, use this option to specify either the path to the environment or the path to its Python interpreter\&.
+.RE
+.PP
+\fB\-\-log\fR=\fIFILENAME\fR
+.RS 4
+Log file where a complete (maximum verbosity) record will be kept\&.
+.RE
+.PP
+\fB\-\-proxy\fR=\fIPROXY\fR
+.RS 4
+Have pip use a proxy server to access sites\&. This can be specified using "user:password at proxy\&.server:port" notation\&. If the password is left out, pip will ask for it\&.
+.RE
+.PP
+\fB\-s, \-\-enable\-site\-packages\fR
+.RS 4
+Include site\-packages in virtualenv if one is to be created\&. Ignored if \-\-environment is not used or the virtualenv already exists\&.
+.RE
+.PP
+\fB\-\-timeout\fR=\fITIMEOUT\fR
+.RS 4
+Set the timeout for connecting to download sites, in seconds\&. This defaults to 15 seconds if not given\&.
+.RE
+.SH "AUTHORS"
+.sp
+.if n \{\
+.RS 4
+.\}
+.nf
+This manual page was originally written by Jeff Licquia <licquia at debian\&.org>, later rewritten by Carl Chenet <chaica at ohmytux\&.com>\&.
+.fi
+.if n \{\
+.RE
+.\}
+.SH "LICENSE"
+.sp
+.if n \{\
+.RS 4
+.\}
+.nf
+Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, version 3 or any later version published by the Free Software Foundation\&.
+.fi
+.if n \{\
+.RE
+.\}
Deleted: packages/python-pip/trunk/debian/pip.xml
===================================================================
--- packages/python-pip/trunk/debian/pip.xml 2009-11-03 21:12:27 UTC (rev 10262)
+++ packages/python-pip/trunk/debian/pip.xml 2009-11-03 22:09:20 UTC (rev 10263)
@@ -1,256 +0,0 @@
-<?xml version='1.0' encoding='ISO-8859-1'?>
-<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
-"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
-
-<!--
-
-Process this file with an XSLT processor: `xsltproc \
--''-nonet /usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\
-manpages/docbook.xsl manpage.dbk'. A manual page
-<package>.<section> will be generated. You may view the
-manual page with: nroff -man <package>.<section> | less'. A
-typical entry in a Makefile or Makefile.am is:
-
-DB2MAN=/usr/share/sgml/docbook/stylesheet/xsl/nwalsh/\
-manpages/docbook.xsl
-XP=xsltproc -''-nonet
-
-manpage.1: manpage.dbk
- $(XP) $(DB2MAN) $<
-
-The xsltproc binary is found in the xsltproc package. The
-XSL files are in docbook-xsl. Please remember that if you
-create the nroff version in one of the debian/rules file
-targets (such as build), you will need to include xsltproc
-and docbook-xsl in your Build-Depends control field.
-
--->
-
- <!-- Fill in your name for FIRSTNAME and SURNAME. -->
- <!ENTITY dhfirstname "<firstname>Jeff</firstname>">
- <!ENTITY dhsurname "<surname>Licquia</surname>">
- <!-- Please adjust the date whenever revising the manpage. -->
- <!ENTITY dhdate "<date>March 31, 2009</date>">
- <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
- allowed: see man(7), man(1). -->
- <!ENTITY dhsection "<manvolnum>1</manvolnum>">
- <!ENTITY dhemail "<email>licquia at debian.org</email>">
- <!ENTITY dhusername "Jeff Licquia">
- <!ENTITY dhucpackage "<refentrytitle>PIP</refentrytitle>">
- <!ENTITY dhpackage "pip">
-
- <!ENTITY debian "<productname>Debian</productname>">
- <!ENTITY gnu "<acronym>GNU</acronym>">
- <!ENTITY gpl "&gnu; <acronym>GPL</acronym>">
-]>
-
-<refentry>
- <refentryinfo>
- <address>
- &dhemail;
- </address>
- <copyright>
- <year>2009</year>
- <holder>&dhusername;</holder>
- </copyright>
- &dhdate;
- </refentryinfo>
- <refmeta>
- &dhucpackage;
-
- &dhsection;
- </refmeta>
- <refnamediv>
- <refname>&dhpackage;</refname>
-
- <refpurpose>install Python packages</refpurpose>
- </refnamediv>
- <refsynopsisdiv>
- <cmdsynopsis>
- <command>&dhpackage;</command>
-
- <arg>command</arg>
-
- <arg>options</arg>
- </cmdsynopsis>
- </refsynopsisdiv>
- <refsect1>
- <title>DESCRIPTION</title>
-
- <para>This manual page documents briefly the
- <command>&dhpackage;</command>
- command.</para>
-
- <para>This manual page was written for the &debian; distribution
- because the original program does not have a manual page.</para>
-
- <para><command>&dhpackage;</command> is an alternative Python package installer. It performs
- the same basic job as easy_install, but with some extra features.
- It can work with version control repositories (currently only Git,
- Mercurial, and Bazaar repositories), logs output extensively,
- and prevents partial installs by downloading all requirements before
- starting installation.</para>
-
- <para>It has some disadvantages when compared to easy_install. It
- does not use egg files, although it does preserve egg metadata.
- Some setuptools features are not yet supported, and some custom
- setup.py features won't work.</para>
-
- <para><command>&dhpackage;</command> is designed to work with virtualenv, in that it can be
- given the path to a virtualenv environment (with -E or
- --environment) and it will know to install to that environment
- instead of the system locations.</para>
-
- </refsect1>
- <refsect1>
- <title>COMMANDS</title>
-
- <para>The command comes before any options. The following
- commands are recognized:</para>
-
- <variablelist>
- <varlistentry>
- <term>help</term>
- <listitem>
- <para>Show the help text.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>bundle</term>
- <listitem>
- <para>Create "bundles" which can be used by <command>&dhpackage;</command> to install
- the group of Python packages in multiple places.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>freeze</term>
- <listitem>
- <para>Write the current list of installed packages to a
- requirements file, which can be used by <command>&dhpackage;</command> to reinstall the
- same set of packages.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>install</term>
- <listitem>
- <para>Install packages.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>unzip</term>
- <listitem>
- <para>Unzip an individual package.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>zip</term>
- <listitem>
- <para>Zip an individual package.</para>
- </listitem>
- </varlistentry>
- </variablelist>
-
- </refsect1>
- <refsect1>
- <title>OPTIONS</title>
-
- <para>These programs follow the usual &gnu; command line syntax,
- with long options starting with two dashes (`-'). A summary of
- options is included below.</para>
-
- <variablelist>
- <varlistentry>
- <term><option>-h</option>
- <option>--help</option>
- </term>
- <listitem>
- <para>Show summary of options.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <option>--version</option>
- </term>
- <listitem>
- <para>Show version of program.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><option>-v</option>
- <option>--verbose</option>
- </term>
- <listitem>
- <para>Be more verbose.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><option>-q</option>
- <option>--quiet</option>
- </term>
- <listitem>
- <para>Be less verbose; suppress unimportant output.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term><option>-E</option>
- <option>--environment</option>
- </term>
- <listitem>
- <para>When using <command>&dhpackage;</command> with a virtual environment created by
- virtualenv, use this option to specify either the path to
- the environment or the path to its Python interpreter.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <option>--log</option>
- </term>
- <listitem>
- <para>Output a log file describing the actions taken to the
- specified file.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <option>--proxy</option>
- </term>
- <listitem>
- <para>Have <command>&dhpackage;</command> use a proxy server to access sites. This can
- be specified using "user:password at proxy.server:port"
- notation. If the password is left out, <command>&dhpackage;</command> will ask for
- it.</para>
- </listitem>
- </varlistentry>
- <varlistentry>
- <term>
- <option>--timeout</option>
- </term>
- <listitem>
- <para>Set the timeout for connecting to download sites, in
- seconds. This defaults to 15 seconds if not given.</para>
- </listitem>
- </varlistentry>
- </variablelist>
- </refsect1>
- <refsect1>
- <title>SEE ALSO</title>
-
- <para>The upstream documentation, stored in
- /usr/share/doc/python-pip.</para>
- </refsect1>
- <refsect1>
- <title>AUTHOR</title>
-
- <para>This manual page was written by &dhusername; &dhemail; for
- the &debian; system (but may be used by others). Permission is
- granted to copy, distribute and/or modify this document under
- the terms of the &gnu; General Public License, Version 2 any
- later version published by the Free Software Foundation.
- </para>
- <para>
- On Debian systems, the complete text of the GNU General Public
- License can be found in /usr/share/common-licenses/GPL.
- </para>
-
- </refsect1>
-</refentry>
Modified: packages/python-pip/trunk/debian/python-pip.manpages
===================================================================
--- packages/python-pip/trunk/debian/python-pip.manpages 2009-11-03 21:12:27 UTC (rev 10262)
+++ packages/python-pip/trunk/debian/python-pip.manpages 2009-11-03 22:09:20 UTC (rev 10263)
@@ -1 +1 @@
-debian/pip.1.gz
+debian/pip.1
More information about the Python-modules-commits
mailing list