ZC buildout extension to checkout eggs from various vcs
Project description
What is gp.vcsdevelop ?
This package allow you to checkout some package and use them as developed eggs with zc.buildout.
Available options
develop-dir: a directory to checkout packages in
vcs-extend-develop: A list of vcs url. See pip’s editable parameter. Available schemes are ssh, svn, git, hg, bzr, sftp.
vcs-update:
If true on every run buildout try updating egg. As example for hg+https run hg pull -u
If always then remove existing code from filesystem and get a fresh checkout
Usage
Use this package as a zc.buildout extension and provide some vcs urls in the vcs-extend-develop option:
>>> write('buildout.cfg',''' ... [buildout] ... extensions=gp.vcsdevelop ... vcs-extend-develop=hg+https://gawel@bitbucket.org/ianb/pip/@tip#egg=pip ... parts= ... ''')
Then if you run buildout, the package will be checkout from the repository:
>>> print 'Start', system(buildout) Start... Cloning hg https://gawel@bitbucket.org/ianb/pip/ (to revision tip) to ./pip Found command 'hg' at '...' Develop: '/...buildout/pip' ...
Packages can be found in the develop-dir (default to .). You can override this:
>>> write('buildout.cfg',''' ... [buildout] ... extensions=gp.vcsdevelop ... develop-dir=./src ... vcs-extend-develop=hg+https://gawel@bitbucket.org/ianb/pip/@tip#egg=pip ... parts= ... ''') >>> print 'Start', system(buildout) Start... Cloning hg https://gawel@bitbucket.org/ianb/pip/ (to revision tip) to ./src/pip Found command 'hg' at '...' Develop: '/...buildout/./src/pip' ...
You can also checkout non-python packages but you’ll get a warning:
>>> write('buildout.cfg',''' ... [buildout] ... extensions=gp.vcsdevelop ... develop-dir=./src ... vcs-extend-develop=git+git://github.com/benoitc/couchbeam.git#egg=couchbeam ... parts= ... ''') >>> print 'Start', system(buildout).strip() Start... Cloning git://github.com/benoitc/couchbeam.git to ./src/couchbeam Found command 'git' at '...' Warning: ./src/couchbeam is not a python package
Bugs
Use the bitbucket tracker.
Changes
1.9.4 (04-05-2012)
python3 ready
1.9.2 (04-01-2011)
require pip>=0.8
1.9.1 (22-08-2010)
add mercurial in require
1.9 (22-08-2010)
support latest pip
1.8 (06-08-2010)
always add svn scheme
1.7 (06-08-2010)
fix pip 0.8 compat
1.6 (13-05-2010)
require pip>=0.7.1
1.5 (17-02-2010)
rename vcsdevelop-update to vcs-update. can be set to always
1.4 (24-01-2010)
pip 0.6.3 compat by Boris Kocherov
1.3 (13-09-2009)
add vcsdevelop-update by Boris Kocherov
1.2 (24-08-2009)
allow to fetch non-python package
1.1 (29-06-2009)
add svn to vcs.schemes
0.4 (04-05-2009)
allow to have existing develop directories
0.2 (27-01-2009)
only take care of urls starting with a valid available scheme.
0.1 (23-01-2009)
nothing change
Download
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
File details
Details for the file gp.vcsdevelop-1.9.4.zip
.
File metadata
- Download URL: gp.vcsdevelop-1.9.4.zip
- Upload date:
- Size: 11.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d785db82c06aa96c8a7bb4c2cefa86cf2f5624e1a0aa38908192b7401bd2ae9a |
|
MD5 | 686572ef8735ba3a5bde214424412ac5 |
|
BLAKE2b-256 | 25c8a0c850aa2fb532ccf297fb3d035c141728eba1936070543806088e41f219 |
Provenance
File details
Details for the file gp.vcsdevelop-1.9.4.tar.gz
.
File metadata
- Download URL: gp.vcsdevelop-1.9.4.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e89ca2929adb16b10eb7257000ddb0cf1d244d072f88b92ffb7a50efea57e3e |
|
MD5 | 5b443b271fe8feacad16c702a2b2f116 |
|
BLAKE2b-256 | a53f19d45cc1d8ae64f9a5d117aff6c49cc54dd7a595ef99baf65e55b8fd274a |