Git Product home page Git Product logo

python-repoman's Introduction

Repoman

Repoman is a python library designed to automate repository operations in release processes.

It provides a unified API to work with different SCMs, and the mechanisms to quickly have ready and clean working copies. It currently supports git and mercurial.

There are some basic concepts that are needed to start working with Repoman:

  • A Repository is an instance with the usual operations of a SCM.
  • A Depot contains a repository, and the operations to interact with Repoman managers.
  • A DepotManager provides Depots with an specific code, each DepotManager is intended to manage Depots of the same project.
  • Each Depot is locked to the task that requests it to the manager and belongs to this task till it's freed.

But the best way to see how it works is with an example:

from repoman import depot_manager

repo_kind = 'git'
repo_url = 'https://github.com/tuenti/python-repoman.git'

manager = depot_manager.DepotManager(repo_kind=repo_kind)

depot = manager.give_me_depot('task_id', 'Owner task name')

try:
    depot.request_refresh({ repo_url: ['master'] })

    # Do work...
    depot.repository.tag('example')
    # ...

    # If you were going to continue the task in other process,
    # it needs to receive the path of the depot to request it
    depot = manager.give_me_depot_from_path(depot.path)
    assert 'example' in depot.repository.tags()

finally:
    # And when the repository is not needed anymore, free its depot
    manager.free_depot(depot, 'task_id')

You can know more by looking to the examples in the doc/examples directory, and to the full API reference.

VERSION DOWNLOADS TESTS COVERAGE
Latest PyPI version Number of PyPI downloads Travis results Coveralls results_

Installation

Repoman is intended to be used as part of a more complex release automation infrastructure, it requires a quite specific set of dependencies, see Requirements section to know more about this.

To install it in your development environment, you can use pip:

pip install -e git+https://github.com/tuenti/[email protected]#egg=repoman

To install it in your production environment, it's recommended to generate your own packages, usual tools can be used for that, e.g:

python setup.py bdist_egg

Requirements

Repoman should play well with any Linux distribution with Python > 2.6, it's daily used in Debian, and has been also tested in Ubuntu and Fedora.

As a general rule, pip install -r requirements.txt is able to install everything, but some things need to be taken into account.

mercurial > 2.1 is also required, as well as python-hglib, the version specified in the requirements.txt file should be fine.

Some Dockerfiles are provided in the docker directory that can serve as examples about how to prepare an environment to work with repoman in different distributions.

Credits & Contact

Repoman was created by Tuenti Technologies S.L.. You can follow Tuenti engineering team on Twitter @tuentieng.

License

Repoman is available under the Apache License, Version 2.0. See LICENSE file for more info.

python-repoman's People

Contributors

jforcada avatar jplana avatar jsoriano avatar magmax avatar mrodm avatar oscarsj avatar tuentisre avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.