Python
Clone or download
Pull request Compare This branch is 6 commits ahead, 39 commits behind bjoernricks:master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
doc
quilt
tests
.gitignore
.travis.yml
Changes
LICENSE
MANIFEST.in
README
README.rst
pquilt
requirements.txt
setup.cfg
setup.py

README.rst

python-quilt

https://travis-ci.org/bjoernricks/python-quilt.svg?branch=master

python-quilt is a python implementation of the well-known tool quilt to manage a series of patches.

It's intended to be used within a python application or framework but also provides a console client interface called pquilt.

python-quilt requires the six package for python 2/3 compatibility. It also requires patch and diff tools for creating and applying diffs.

Source code of python-quilt can be found at https://github.com/bjoernricks/python-quilt

Supported quilt commands

Currently the following quilt commands have been implemented already (but might still miss some features).

  • add
  • applied
  • delete
  • edit
  • import
  • new
  • next
  • pop
  • previous
  • push
  • top
  • refresh
  • revert
  • series
  • unapplied

Currently unsupported commands

  • diff
  • files
  • header
  • rename

Unlikely to be supported

The following quilt commands are unlikely to be implemented either because they they don't make much sense in a python package or nobody has stepped up to implement its feature.

  • annotate
  • fold
  • fork
  • graph
  • grep
  • mail
  • patches
  • setup
  • shell
  • snapshot
  • upgrade