A revision control independent dependency and sub-repository management package.
Project description
Dipr (Dipper)
Dipr is a repository management tool meant to provide a revision control independent way of managing dependencies and sub-repositories. It is modeled strongly after guestrepo with numerous improvements to support multiple revision control systems and additional functionality.
Dependencies
A read-only repository that may be pulled and set to a specific revision but should not be modified as part of the root repo's code base.
Sub-Repositories
A living part of the root repository and may change along with the contents of the root repository. Sub-repositories may be operated on using the bulk revision control commands below.
Requirements
Supported OS:
- Windows
- Linux
- OSX
It has not been tested extensively across multiple revisions of these operating systems.
Prerequisites:
- Python >= 3.7
- gitpython >= 2.1
- ruamel-yaml >= 0.15
- git >= 2.0
- hg >= 4.0
Dipr is developed, tested, and built (pyinstaller) in a conda environment. See DEVELOPER.md for details.
License
Dipr is MIT licensed. See the LICENSE.md for details.
Credential Storage
Dipr assumes that credentials are cached as appropriate for the revision control systems that will be used. Dipr does no provide any way to specify or store credential information for the dependencies and sub-repositories. To setup safe credential caching read some of the following:
Git: Git Tools Credential Storage
Mercurial: Mercurial Keyring Extension
Implementation of the above may vary depending on platform (Windows, Linux, OSX). Be sure to read into the various options to make sure a secure one is chosen.
Installation
It is available via pip:
> pip install dipr
Or using the included setup.py:
> python setup.py install
Examples
General
All the available commands are documented in the built in command line help system:
> dipr -h
Dipr may act upon directories other than the current one:
> dipr -p "/path/to/the repo" status
Dependency and Sub-Repository Management
Initialize the current folder or repo with the dipr YAML files:
> dipr init
Add some repo sources:
> dipr sources add hg HGDEP1 http://example.com/hg/hgdep1
> dipr sources add git GITSUB1 http://example.com/git/gitsub1
> dipr depends add HGDEP1 Depends/HgDep1
> dipr subrepos add GITSUB1 SubRepos/GitSub1
Pull the repos into their folders:
> dipr pull
Update the repos to their specified revisions:
> dipr update
Check the status of the pulled repos:
> dipr status
Begin development!
Import Existing Dependencies or Sub-Repositories
Git submodules:
> dipr init
> dipr import submodules --clean
> dipr pull
> dipr update
Mercurial guestrepos:
> dipr init
> dipr import guestrepos --clean
> dipr pull
> dipr update
Revision Management
Bulk revision management is available for both dependencies and sub-repositories.
Freeze repos at their current revision:
> dipr depends freeze
Upgrade repos to their latest tags:
> dipr depends upgrade --check
<... list of available upgrades ...>
> dipr depends upgrade
> dipr update
Unfreeze repos to their latest revisions in the default branch:
> dipr depends unfreeze
> dipr update
Set a repo to a specific revision:
> dipr depends rev --path Depends/HgDep1 --branch DevBranch
> dipr update
Revision Control Commands
Bulk revision control commands can be executed on the root repo (Where .dipr folder is located) and all sub-repositories.
Commit root repo and all sub-repositories (adding or removing files as necessary):
> dipr rcs commit -m "A commit message." --add-remove
Tag just the sub-repositories:
> dipr rcs tag "Release_V1.1.1" -m "A release tag" --exclude-root
Push root repo and all sub-repositories to their upstream:
> dipr rcs push
Discard changes in root repo and all sub-repositories:
> dipr rcs discard
Changes in the dependencies may be discarded as well:
> dipr rcs discard --only-depends
Dipr Data Storage
All data for dipr is stored in the .dipr directory initialized via the dipr init
command. The data files are YAML
formatted and documented with examples of how to add or modify entries manually.
Sample diprsrc.yaml:
DIPSUB1:
PROTOCOL: GIT
URL: https://example.com/git/dipsub1.git
HGSUB1:
PROTOCOL: HG
URL: https://example.com/hg/hgsub1
DIPDEP1:
PROTOCOL: GIT
URL: https://example.com/git/dipdep1.git
Sample diprdep.yaml:
A repo that will update to a specified tag:
"Depends/DipDep1":
KEY: DIPDEP1
TAG: Release_V1.0.3
A repo that will update to the tip of the default branch:
"Depends\DiprStuff":
KEY: DIPRSTUFF
A repo that will update to the tip of DevelBranch:
"Depends/SubFolder/ODiprStuff":
KEY: ODIPRTUFF
BRANCH: DevelBranch
A repo that will update to the specific revision hash:
"Depends/FinalDiprStuff":
KEY: FDIPRSTUFF
REVISION: 234d395
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 Distribution
Built Distributions
File details
Details for the file dipr-1.0.dev12.tar.gz
.
File metadata
- Download URL: dipr-1.0.dev12.tar.gz
- Upload date:
- Size: 55.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d4717480923a295d5f7202a6c57f2dd076c79619485ad97abd1968d93085d96d |
|
MD5 | e0a5a8cb0b8dfdf9023435cce86c0f4a |
|
BLAKE2b-256 | afd2ef2b8fe6e30ae6e1a7022f90aa1fb409b8fc36ba4362a10c07a080e54a52 |
File details
Details for the file dipr-1.0.dev12-py3.7.egg
.
File metadata
- Download URL: dipr-1.0.dev12-py3.7.egg
- Upload date:
- Size: 72.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f1ddc31d1e68c39ed924ffd08bec02bf7df9e2f72cb75d652a4fe557f956298 |
|
MD5 | cfe05275592e7b48f1ec639633050e72 |
|
BLAKE2b-256 | 305114724abdf21f498e1eab297e00517b8b0e78738f0fd067f4d2532f16fe8f |
File details
Details for the file dipr-1.0.dev12-py3-none-any.whl
.
File metadata
- Download URL: dipr-1.0.dev12-py3-none-any.whl
- Upload date:
- Size: 76.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 718c8ec6654d6120fcd9a1554e6c5916293708ccb346560e21e0623f1046fb43 |
|
MD5 | cb194d39ae3ec0ad5268d4deb95859ec |
|
BLAKE2b-256 | c959234afbae4519af77c1af494ec1303664c5a47862787c4603ebd2d5cab4c5 |