# HG changeset patch # User paulb # Date 1134058943 0 # Node ID 16b6c63b580ee3b5016548395dc032118227aa06 # Parent a1756c86c06ccfdf430e5fabb1a377db36656a0c [project @ 2005-12-08 16:22:23 by paulb] Updated release information. diff -r a1756c86c06c -r 16b6c63b580e PKG-INFO --- a/PKG-INFO Wed Oct 15 23:17:50 2008 +0200 +++ b/PKG-INFO Thu Dec 08 16:22:23 2005 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: desktop -Version: 0.2 +Version: 0.2.1 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.python.org/sf?id=1301512 -Download-url: http://www.boddie.org.uk/python/downloads/desktop-0.2.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/desktop-0.2.1.tar.gz Summary: Simple desktop integration for Python License: Academic Free License version 2.1 Description: This module provides desktop environment detection and resource diff -r a1756c86c06c -r 16b6c63b580e README.txt --- a/README.txt Wed Oct 15 23:17:50 2008 +0200 +++ b/README.txt Thu Dec 08 16:22:23 2005 +0000 @@ -3,7 +3,10 @@ The desktop module provides desktop environment detection and resource opening support for a selection of common and standardised desktop environments. See -the module docstring for a more extensive introduction. +the module docstring for a more extensive introduction. See also the following +patch registered in the Python SourceForge project: + +http://www.python.org/sf?id=1301512 Contact, Copyright and Licence Information ------------------------------------------ @@ -33,8 +36,44 @@ ROX-Filer Supports file opening using "rox " but not URL opening. +New in desktop 0.2.1 (Changes since desktop 0.2) +------------------------------------------------ + + * Added Debian/Ubuntu package support. + New in desktop 0.2 (Changes since desktop 0.1) ---------------------------------------------- * Added support for waiting for launcher processes. * Added a tests directory. + +Release Procedures +------------------ + +Update the desktop __version__ attribute. +Change the version number and package filename/directory in the documentation. +Update the release notes (see above). +Update the package information. +Check the release information in the PKG-INFO file. +Check the setup.py file. +Tag, export. +Archive, upload. +Update PyPI, PythonInfo Wiki, Vaults of Parnassus entries. + +Making Packages +--------------- + +To make Debian-based packages: + + 1. Create new package directories under packages if necessary. + 2. Make a symbolic link in the distribution's root directory to keep the + Debian tools happy: + + ln -s packages/ubuntu-hoary/python2.4-desktop/debian/ + + 3. Run the package builder: + + dpkg-buildpackage -rfakeroot + + 4. Locate and tidy up the packages in the parent directory of the + distribution's root directory. diff -r a1756c86c06c -r 16b6c63b580e desktop.py --- a/desktop.py Wed Oct 15 23:17:50 2008 +0200 +++ b/desktop.py Thu Dec 08 16:22:23 2005 +0000 @@ -56,7 +56,7 @@ http://lists.freedesktop.org/archives/xdg/2004-August/004489.html """ -__version__ = "0.2" +__version__ = "0.2.1" import os import sys diff -r a1756c86c06c -r 16b6c63b580e setup.py --- a/setup.py Wed Oct 15 23:17:50 2008 +0200 +++ b/setup.py Thu Dec 08 16:22:23 2005 +0000 @@ -9,7 +9,7 @@ description = "Simple desktop integration for Python.", author = "Paul Boddie", author_email = "paul@boddie.org.uk", - url = "http://www.python.org/sf?id=1301512", + url = "http://www.python.org/pypi/desktop", version = desktop.__version__, py_modules = ["desktop"] )