~ubuntu-branches/ubuntu/maverick/python3.1/maverick

« back to all changes in this revision

Viewing changes to debian/PVER-doc.postinst.in

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2009-03-23 00:01:27 UTC
  • Revision ID: james.westby@ubuntu.com-20090323000127-mr2oo53y4j8vpldi
Tags: 3.1~a1+20090322-1
* Python 3.1 alpha1 release.
* Update to the trunk, 20090322.
* Update installation schemes: LP: #338395.
  - When the --prefix option is used for setup.py install, Use the
    `unix_prefix' scheme.
  - Use the `deb_system' scheme if --install-layout=deb is specified.
  - Use the the `unix_local' scheme if neither --install-layout=deb
    nor --prefix is specified.
* Use the information in /etc/lsb-release for platform.dist(). LP: #196526.
* pydoc: Fix detection of local documentation files.
* Build a shared library configured --with-pydebug. LP: #322580.
* Fix some lintian warnings.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh -e
 
2
 
 
3
info=@INFO@
 
4
if [ -n "$info" ] && [ -x /usr/sbin/install-info ]; then
 
5
    install-info --quiet --section "Python" "Python" \
 
6
        --description="Python @VER@ Library Reference" \
 
7
        /usr/share/info/@PVER@-lib.info
 
8
    install-info --quiet --section "Python" "Python" \
 
9
        --description="Python @VER@ Reference Manual" \
 
10
        /usr/share/info/@PVER@-ref.info
 
11
    install-info --quiet --section "Python" "Python" \
 
12
        --description="Python/C @VER@ API Reference Manual" \
 
13
        /usr/share/info/@PVER@-api.info
 
14
    install-info --quiet --section "Python" "Python" \
 
15
        --description="Extending & Embedding Python @VER@" \
 
16
        /usr/share/info/@PVER@-ext.info
 
17
    install-info --quiet --section "Python" "Python" \
 
18
        --description="Python @VER@ Tutorial" \
 
19
        /usr/share/info/@PVER@-tut.info
 
20
    install-info --quiet --section "Python" "Python" \
 
21
        --description="Distributing Python Modules (@VER@)" \
 
22
        /usr/share/info/@PVER@-dist.info
 
23
fi
 
24
 
 
25
#DEBHELPER#
 
26
 
 
27
exit 0