[Python-modules-commits] r8891 - in packages/petsc4py/trunk/debian (3 files)
dktrkranz-guest at users.alioth.debian.org
dktrkranz-guest at users.alioth.debian.org
Mon Jun 29 12:03:20 UTC 2009
Date: Monday, June 29, 2009 @ 12:03:09
Author: dktrkranz-guest
Revision: 8891
Bump Standards-Version to 3.8.2
Added:
packages/petsc4py/trunk/debian/README.source
Modified:
packages/petsc4py/trunk/debian/changelog
packages/petsc4py/trunk/debian/control
Added: packages/petsc4py/trunk/debian/README.source
===================================================================
--- packages/petsc4py/trunk/debian/README.source (rev 0)
+++ packages/petsc4py/trunk/debian/README.source 2009-06-29 12:03:09 UTC (rev 8891)
@@ -0,0 +1,57 @@
+This package uses quilt to manage all modifications to the upstream
+source. Changes are stored in the source package as diffs in
+debian/patches and applied during the build.
+
+To configure quilt to use debian/patches instead of patches, you want
+either to export QUILT_PATCHES=debian/patches in your environment
+or use this snippet in your ~/.quiltrc:
+
+ for where in ./ ../ ../../ ../../../ ../../../../ ../../../../../; do
+ if [ -e ${where}debian/rules -a -d ${where}debian/patches ]; then
+ export QUILT_PATCHES=debian/patches
+ fi
+ done
+
+To get the fully patched source after unpacking the source package, cd to
+the root level of the source package and run:
+
+ quilt push -a
+
+The last patch listed in debian/patches/series will become the current
+patch.
+
+To add a new set of changes, first run quilt push -a, and then run:
+
+ quilt new <patch>
+
+where <patch> is a descriptive name for the patch, used as the filename in
+debian/patches. Then, for every file that will be modified by this patch,
+run:
+
+ quilt add <file>
+
+before editing those files. You must tell quilt with quilt add what files
+will be part of the patch before making changes or quilt will not work
+properly. After editing the files, run:
+
+ quilt refresh
+
+to save the results as a patch.
+
+Alternately, if you already have an external patch and you just want to
+add it to the build system, run quilt push -a and then:
+
+ quilt import -P <patch> /path/to/patch
+ quilt push -a
+
+(add -p 0 to quilt import if needed). <patch> as above is the filename to
+use in debian/patches. The last quilt push -a will apply the patch to
+make sure it works properly.
+
+To remove an existing patch from the list of patches that will be applied,
+run:
+
+ quilt delete <patch>
+
+You may need to run quilt pop -a to unapply patches first before running
+this command.
Modified: packages/petsc4py/trunk/debian/changelog
===================================================================
--- packages/petsc4py/trunk/debian/changelog 2009-06-29 11:56:08 UTC (rev 8890)
+++ packages/petsc4py/trunk/debian/changelog 2009-06-29 12:03:09 UTC (rev 8891)
@@ -15,11 +15,13 @@
- refresh for new upstream release.
* debian/control:
- Replace libpetsc2.3.3-dev with petsc-dev (Closes: #529478, #522771).
+ + Bump Standards-Version to 3.8.2:
+ - Add debian/README.source to document quilt usage.
* debian/rules:
- Export PETSC_DIR and PETSC_ARCH environment variables.
- Change chrpath shared object path accordingly.
- -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Mon, 29 Jun 2009 11:55:32 +0000
+ -- Debian Python Modules Team <python-modules-team at lists.alioth.debian.org> Mon, 29 Jun 2009 12:02:36 +0000
petsc4py (0.7.5-5) unstable; urgency=low
Modified: packages/petsc4py/trunk/debian/control
===================================================================
--- packages/petsc4py/trunk/debian/control 2009-06-29 11:56:08 UTC (rev 8890)
+++ packages/petsc4py/trunk/debian/control 2009-06-29 12:03:09 UTC (rev 8891)
@@ -4,7 +4,7 @@
Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
Uploaders: Ondrej Certik <ondrej at certik.cz>
Build-Depends: cdbs (>=0.4.41), debhelper (>= 5), python-support (>= 0.7.5), python-all-dev (>=2.3.5-11), python-numpy (>=1:1.0.3-1), petsc-dev (>= 3.0.0.dfsg-1), chrpath (>= 0.13-2), quilt (>= 0.46-4)
-Standards-Version: 3.7.3
+Standards-Version: 3.8.2
Homepage: http://code.google.com/p/petsc4py/
Vcs-Svn: svn://svn.debian.org/python-modules/packages/petsc4py/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/petsc4py/trunk/
More information about the Python-modules-commits
mailing list