{ "info": { "author": "Peter Odding", "author_email": "peter@peterodding.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: POSIX", "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Version Control", "Topic :: System :: Archiving :: Packaging", "Topic :: System :: Software Distribution", "Topic :: System :: Systems Administration", "Topic :: Utilities" ], "description": "vcs-repo-mgr: Version control repository manager\n================================================\n\n.. image:: https://travis-ci.org/xolox/python-vcs-repo-mgr.svg?branch=master\n :target: https://travis-ci.org/xolox/python-vcs-repo-mgr\n\n.. image:: https://coveralls.io/repos/xolox/python-vcs-repo-mgr/badge.png?branch=master\n :target: https://coveralls.io/r/xolox/python-vcs-repo-mgr?branch=master\n\nThe Python package `vcs-repo-mgr` provides a command line program and Python\nAPI to perform common operations (in the context of packaging/deployment) on\n`version control`_ repositories. It's currently tested on Python 2.6, 2.7, 3.4,\n3.5 and 3.6 on Linux and Mac OS X. Bazaar_, Mercurial_ and Git_ repositories\nare supported.\n\n.. contents::\n :local:\n\nInstallation\n------------\n\nThe `vcs-repo-mgr` package is available on PyPI_ which means installation\nshould be as simple as:\n\n.. code-block:: sh\n\n $ pip install vcs-repo-mgr\n\nThere's actually a multitude of ways to install Python packages (e.g. the `per\nuser site-packages directory`_, `virtual environments`_ or just installing\nsystem wide) and I have no intention of getting into that discussion here, so\nif this intimidates you then read up on your options before returning to these\ninstructions ;-).\n\nYou will also need Bazaar_, Mercurial_ and/or Git_ installed (depending on the\ntype of repositories you want to work with). Here's how you install them on\nDebian and Ubuntu based systems:\n\n.. code-block:: sh\n\n $ sudo apt-get install bzr mercurial git-core\n\nUsage\n-----\n\nThere are two ways to use the `vcs-repo-mgr` package: As the command line\nprogram ``vcs-tool`` and as a Python API. For details about the Python API\nplease refer to the API documentation available on `Read the Docs`_. The\ncommand line interface is described below.\n\n.. A DRY solution to avoid duplication of the `vcs-tool --help' text:\n..\n.. [[[cog\n.. from humanfriendly.usage import inject_usage\n.. inject_usage('vcs_repo_mgr.cli')\n.. ]]]\n\n**Usage:** `vcs-tool [OPTIONS] [ARGS]`\n\nCommand line program to perform common operations (in the context of\npackaging/deployment) on version control repositories. Supports Bazaar,\nMercurial and Git repositories.\n\n**Supported options:**\n\n.. csv-table::\n :header: Option, Description\n :widths: 30, 70\n\n\n \"``-r``, ``--repository=REPOSITORY``\",\"Select a repository to operate on by providing the name of a repository\n defined in one of the configuration files ~/.vcs-repo-mgr.ini and\n /etc/vcs-repo-mgr.ini.\n\n Alternatively the location of a remote repository can be given. The\n location should be prefixed by the type of the repository (with a \"\"+\"\" in\n between) unless the location ends in \"\".git\"\" in which case the prefix is\n optional.\"\n \"``--rev``, ``--revision=REVISION``\",\"Select a revision to operate on. Accepts any string that's supported by the\n VCS system that manages the repository, which means you can provide branch\n names, tag names, exact revision ids, etc. This option is used in\n combination with the ``--find-revision-number``, ``--find-revision-id`` and\n ``--export`` options.\n\n If this option is not provided a default revision is selected: \"\"last:1\"\" for\n Bazaar repositories, \"\"master\"\" for git repositories and \"\"default\"\" (not\n \"\"tip\"\"!) for Mercurial repositories.\"\n ``--release=RELEASE_ID``,\"Select a release to operate on. This option works in the same way as the\n ``--revision`` option. Please refer to the vcs-repo-mgr documentation for\n details on \"\"releases\"\".\n\n Although release identifiers are based on branch or tag names they\n may not correspond literally, this is why the release identifier you\n specify here is translated to a global revision id before being passed to\n the VCS system.\"\n \"``-n``, ``--find-revision-number``\",\"Print the local revision number (an integer) of the revision given with the\n ``--revision`` option. Revision numbers are useful as a build number or when a\n simple, incrementing version number is required. Revision numbers should\n not be used to unambiguously refer to a revision (use revision ids for that\n instead). This option is used in combination with the ``--repository`` and\n ``--revision`` options.\"\n \"``-i``, ``--find-revision-id``\",\"Print the global revision id (a string) of the revision given with the\n ``--revision`` option. Global revision ids are useful to unambiguously refer to\n a revision. This option is used in combination with the ``--repository`` and\n ``--revision`` options.\"\n ``--list-releases``,\"Print the identifiers of the releases in the repository given with the\n ``--repository`` option. The release identifiers are printed on standard\n output (one per line), ordered using natural order comparison.\"\n ``--select-release=RELEASE_ID``,\"Print the identifier of the newest release that is not newer than\n ``RELEASE_ID`` in the repository given with the ``--repository`` option.\n The release identifier is printed on standard output.\"\n \"``-s``, ``--sum-revisions``\",\"Print the summed revision numbers of multiple repository/revision pairs.\n The repository/revision pairs are taken from the positional arguments to\n vcs-repo-mgr.\n\n This is useful when you're building a package based on revisions from\n multiple VCS repositories. By taking changes in all repositories into\n account when generating version numbers you can make sure that your version\n number is bumped with every single change.\"\n ``--vcs-control-field``,\"Print a line containing a Debian control file field and value. The field\n name will be one of \"\"Vcs-Bzr\"\", \"\"Vcs-Hg\"\" or \"\"Vcs-Git\"\". The value will be the\n repository's remote location and the selected revision (separated by a \"\"#\"\"\n character).\"\n \"``-u``, ``--update``\",\"Create/update the local clone of a remote repository by pulling the latest\n changes from the remote repository. This option is used in combination with\n the ``--repository`` option.\"\n \"``-m``, ``--merge-up``\",\"Merge a change into one or more release branches and the default branch.\n\n By default merging starts from the current branch. You can explicitly\n select the branch where merging should start using the ``--rev``, ``--revision``\n and ``--release`` options.\n\n You can also start by merging a feature branch into the selected release\n branch before merging the change up through later release branches and the\n default branch. To do so you pass the name of the feature branch as a\n positional argument.\n\n If the feature branch is located in a different repository you can prefix\n the location of the repository to the name of the feature branch with a \"\"#\"\"\n token in between, to delimit the location from the branch name.\"\n \"``-e``, ``--export=DIRECTORY``\",\"Export the contents of a specific revision of a repository to a local\n directory. This option is used in combination with the ``--repository`` and\n ``--revision`` options.\"\n \"``-d``, ``--find-directory``\",\"Print the absolute pathname of a local repository. This option is used in\n combination with the ``--repository`` option.\"\n \"``-v``, ``--verbose``\",Increase logging verbosity (can be repeated).\n \"``-q``, ``--quiet``\",Decrease logging verbosity (can be repeated).\n \"``-h``, ``--help``\",Show this message and exit.\n\n.. [[[end]]]\n\nThe primary way to use the ``vcs-tool`` command requires you to create a\nconfiguration file:\n\n.. code-block:: sh\n\n $ cat > ~/.vcs-repo-mgr.ini << EOF\n [coloredlogs]\n type = git\n local = /tmp/coloredlogs\n remote = git@github.com:xolox/python-coloredlogs.git\n EOF\n\nBecause the ``-r``, ``--repository`` option accepts remote repository locations\nin addition to names it's not actually required to create a configuration file.\nOf course this depends on your use case(s).\n\nBelow are some examples of the command line interface. If you're interested in\nusing the Python API please refer to the `online documentation`_.\n\nUpdating repositories\n~~~~~~~~~~~~~~~~~~~~~\n\nIf the configuration file defines a local *and* remote repository and the local\nrepository doesn't exist yet it will be created the first time you update it:\n\n.. code-block:: sh\n\n $ vcs-tool --repository coloredlogs --update\n 2014-05-04 18:55:54 INFO Creating Git clone of git@github.com:xolox/python-coloredlogs.git at /tmp/coloredlogs ..\n Cloning into bare repository '/tmp/coloredlogs'...\n remote: Reusing existing pack: 96, done.\n remote: Counting objects: 5, done.\n remote: Compressing objects: 100% (5/5), done.\n remote: Total 101 (delta 0), reused 0 (delta 0)\n Receiving objects: 100% (101/101), 28.11 KiB, done.\n Resolving deltas: 100% (44/44), done.\n\nLater runs will pull the latest changes instead of performing a full clone:\n\n.. code-block:: sh\n\n $ vcs-tool --repository coloredlogs --update\n 2014-05-04 18:55:56 INFO Updating Git clone of git@github.com:xolox/python-coloredlogs.git at /tmp/coloredlogs ..\n From github.com:xolox/python-coloredlogs\n * branch HEAD -> FETCH_HEAD\n\nFinding revision numbers/ids\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nRevision numbers are integer numbers that increment with every added revision.\nThey're very useful during packaging/deployment:\n\n.. code-block:: sh\n\n $ vcs-tool --repository coloredlogs --revision master --find-revision-number\n 24\n\nRevision ids (hashes) are hexadecimal strings that uniquely identify revisions.\nThey are useful to unambiguously refer to a revision and its history (e.g while\nbuilding a package you can embed the revision id as a hint about the origins of\nthe package):\n\n.. code-block:: sh\n\n $ vcs-tool --repository coloredlogs --revision master --find-revision-id\n bce75c1eea88ebd40135cd45de716fe9591e348c\n\nExporting revisions\n~~~~~~~~~~~~~~~~~~~\n\nBy default the repositories created by `vcs-repo-mgr` do not contain a working tree,\njust the version control files (in Git_ terminology this is called a \"bare\nrepository\"). This has two reasons:\n\n1. Bare repositories help conserve disk space. This is insignificant for small\n repositories, but on large repositories it can make a noticeable difference.\n Especially if you're using a lot of them :-)\n\n2. Bare repositories enforce the principle that the working tree shouldn't be\n used during packaging (instead you should export the tree at a specific\n revision to a temporary directory and use that). This insistence on not\n using the working tree during packaging has two reasons:\n\n 1. The working tree can contain files which are not under version control.\n Such files should certainly *not* be included in a package\n unintentionally.\n\n 2. If the working tree of a repository is used, this makes it impossible to\n safely perform parallel builds from the same repository (the builds can\n corrupt each other's working tree).\n\nThis means that if you want to do something with the files in the repository\nyou have to export a revision to a (temporary) directory:\n\n.. code-block:: sh\n\n $ vcs-tool --repository coloredlogs --export /tmp/coloredlogs-snapshot\n 2014-05-04 19:17:24 INFO Exporting revision master of /tmp/coloredlogs to /tmp/coloredlogs-snapshot ..\n\n $ ls -l /tmp/coloredlogs-snapshot\n total 28K\n drwxrwxr-x 2 peter peter 4.0K May 3 14:31 coloredlogs\n drwxrwxr-x 3 peter peter 4.0K May 3 14:31 vim\n -rw-rw-r-- 1 peter peter 1.1K May 3 14:31 LICENSE.txt\n -rw-rw-r-- 1 peter peter 56 May 3 14:31 MANIFEST.in\n -rw-rw-r-- 1 peter peter 5.4K May 3 14:31 README.rst\n -rwxrwxr-x 1 peter peter 1.1K May 3 14:31 setup.py\n\nFuture improvements\n-------------------\n\nThis section is currently a \"braindump\" which means I haven't committed to any\nof these improvements, I'm just thinking out loud ;-).\n\n**Improve interactive repository selection**\n Two improvements for interactive usage of the ``vcs-tool`` program:\n\n - Automatically load a repository's configuration when a pathname is given\n that matches an entry in a configuration file (right now you need to give\n the repository's name in order to load its configuration).\n\n - Do the obvious thing when no repository is specified on the command line but\n the working directory matches a configured repository.\n\n**Wildcard matching in configuration files**\n It might be interesting to support shell wildcard matching against local\n directory names to apply a default configuration to a group of repositories?\n\n**Enable more extensive customization**\n Right now the version control commands are hard coded and not easy to\n customize for those cases where the existing API gets you 90% of where you\n want to be but makes that last 10% impossible. Technically this is already\n possible through subclassing, but a more lightweight solution would\n certainly be nice to have :-).\n\nKnown issues\n------------\n\nThis section documents known issues that users may run into.\n\nProblematic dependencies\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nBazaar and Mercurial are both written in Python and available on PyPI and as\nsuch I included them in the installation requirements of `vcs-repo-mgr`,\nbecause I couldn't think of a good reason not to.\n\nAdding support for Python 3 to `vcs-repo-mgr` made things more complicated\nbecause Bazaar and Mercurial didn't support Python 3, leading to installation\nerrors. To cope with this problem the Bazaar and Mercurial requirements were\nmade conditional on the Python version:\n\n- On Python 2 the Bazaar and Mercurial packages would be installed together\n with `vcs-repo-mgr`.\n\n- On Python 3 the user was instead responsible for making sure that Bazaar and\n Mercurial were installed (for example using system packages).\n\nThis works fine because `vcs-repo-mgr` only invokes Bazaar and Mercurial using\nthe command line interfaces so it doesn't matter whether the version control\nsystem is using the same version of Python as `vcs-repo-mgr`.\n\nSince then the installation of the Bazaar package has started failing on PyPy,\nunfortunately this time there is no reliable and backwards compatible way to\nmake the Bazaar dependency optional in wheel distributions `due to bugs in\nsetuptools `_.\n\nWhen I investigated support for environment markers that match Python\nimplementations (refer to the link above) I decided that instead of writing a\nsetup script full of nasty and fragile hacks I'd rather just drop official\n(tested) support for PyPy, as silly as the reason for it may be.\n\nContact\n-------\n\nThe latest version of `vcs-repo-mgr` is available on PyPI_ and GitHub_. The\ndocumentation is hosted on `Read the Docs`_ and includes a changelog_. For bug\nreports please create an issue on GitHub_. If you have questions, suggestions,\netc. feel free to send me an e-mail at `peter@peterodding.com`_.\n\n\nLicense\n-------\n\nThis software is licensed under the `MIT license`_.\n\n\u00a9 2018 Peter Odding.\n\n.. External references:\n.. _Bazaar: http://bazaar.canonical.com/en/\n.. _changelog: https://vcs-repo-mgr.readthedocs.org/en/latest/changelog.html\n.. _executor.contexts: http://executor.readthedocs.org/en/latest/api.html#module-executor.contexts\n.. _Git: http://git-scm.com/\n.. _GitHub: https://github.com/xolox/python-vcs-repo-mgr\n.. _Mercurial: http://mercurial.selenic.com/\n.. _MIT license: http://en.wikipedia.org/wiki/MIT_License\n.. _online documentation: https://vcs-repo-mgr.readthedocs.org/en/latest/\n.. _per user site-packages directory: https://www.python.org/dev/peps/pep-0370/\n.. _peter@peterodding.com: peter@peterodding.com\n.. _PyPI: https://pypi.python.org/pypi/vcs-repo-mgr\n.. _Read the Docs: https://vcs-repo-mgr.readthedocs.org/en/latest/\n.. _version control: http://en.wikipedia.org/wiki/Revision_control\n.. _virtual environments: http://docs.python-guide.org/en/latest/dev/virtualenvs/\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/xolox/python-vcs-repo-mgr", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "vcs-repo-mgr", "package_url": "https://pypi.org/project/vcs-repo-mgr/", "platform": "", "project_url": "https://pypi.org/project/vcs-repo-mgr/", "project_urls": { "Homepage": "https://github.com/xolox/python-vcs-repo-mgr" }, "release_url": "https://pypi.org/project/vcs-repo-mgr/4.2/", "requires_dist": [ "coloredlogs (>=6.1)", "executor (>=1.2)", "humanfriendly (>=4.8)", "naturalsort (>=1.3)", "property-manager (>=2.2)", "six (>=1.8.0)", "bzr (>=2.6.0); python_version == \"2.6\"", "mercurial (<4.3,>=2.9); python_version == \"2.6\"", "bzr (>=2.6.0); python_version == \"2.7\"", "mercurial (>=2.9); python_version == \"2.7\"" ], "requires_python": "", "summary": "Version control repository manager", "version": "4.2" }, "last_serial": 3809629, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "347430cb7b7e1b63818514002a976885", "sha256": "6616f8d6257b2a60ce690dc4c285fe75fee85c41d009f0f3c289b7eadbcd64d9" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.tar.gz", "has_sig": false, "md5_digest": "347430cb7b7e1b63818514002a976885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9787, "upload_time": "2014-05-04T17:58:57", "url": "https://files.pythonhosted.org/packages/cc/08/ddb1239a50585f3a7b865adc388071b4b357be9abe5ecb0dea490b2bfd9f/vcs-repo-mgr-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "5540825cb38c758e122790764a546a36", "sha256": "e70c4c6048d0b199c9058e37d7066c5ebd1ec549ff03b7a412a0c6b238e5cc4f" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.1.tar.gz", "has_sig": false, "md5_digest": "5540825cb38c758e122790764a546a36", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9799, "upload_time": "2014-05-04T18:07:25", "url": "https://files.pythonhosted.org/packages/3f/80/232f51ed339b56dec66f3ad40c9ed10973e5479461a6d615cb57c74f15a8/vcs-repo-mgr-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "3c63de0466911db16933a2ad11dec7ad", "sha256": "e071d044d6e843f56ec6683f6a695322846ae5b139d82dce83aa77dde1a1fa0d" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.2.tar.gz", "has_sig": false, "md5_digest": "3c63de0466911db16933a2ad11dec7ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9955, "upload_time": "2014-05-04T18:32:16", "url": "https://files.pythonhosted.org/packages/1c/7e/7cc4f377e89981e906ec40704a005716285b527eb98ae8bbc69c23314d0a/vcs-repo-mgr-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "889c1d579af0c028ce137a64e8da0095", "sha256": "e8638dc34cc54d4fe6258d2901921a0eb22f639c618eabb915c0f9c6a349bcc7" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.3.tar.gz", "has_sig": false, "md5_digest": "889c1d579af0c028ce137a64e8da0095", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10145, "upload_time": "2014-05-04T18:37:41", "url": "https://files.pythonhosted.org/packages/4c/b1/4c2d7ead9ddc9687c0f592eaa393168baa091699359dc5cd1da2beb4f88f/vcs-repo-mgr-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "0477a7b4f341a3ab5a77f7fc8d6ccddf", "sha256": "f80bf60ef52e7abf60d3b30f702373be4688fb6017375296475d1defc6547a44" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.4.tar.gz", "has_sig": false, "md5_digest": "0477a7b4f341a3ab5a77f7fc8d6ccddf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10259, "upload_time": "2014-05-05T21:08:08", "url": "https://files.pythonhosted.org/packages/5f/5e/8648e26f05e80ad88f7163a7972bd2ee814317275bcc8ffe12065b97390e/vcs-repo-mgr-0.1.4.tar.gz" } ], "0.1.5": [ { "comment_text": "", "digests": { "md5": "b0a1bc606233baf6b32f702119c6153c", "sha256": "f0ed5f1f8ece788933ec810c42943c223727dbb5bd5fbe45885983573c020881" }, "downloads": -1, "filename": "vcs-repo-mgr-0.1.5.tar.gz", "has_sig": false, "md5_digest": "b0a1bc606233baf6b32f702119c6153c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10331, "upload_time": "2014-05-05T21:38:10", "url": "https://files.pythonhosted.org/packages/fc/18/96eb74316c9a75a6ced4248ed36b4f167c0ca8cca0f2c533b6fbb72f61e5/vcs-repo-mgr-0.1.5.tar.gz" } ], "0.10": [ { "comment_text": "", "digests": { "md5": "aff5080f3601ade75fdd3c0721c5c270", "sha256": "0ab4a52678f93426ad44926ab252ca3a28c877f5441c8b86b3796b24a7727c95" }, "downloads": -1, "filename": "vcs-repo-mgr-0.10.tar.gz", "has_sig": false, "md5_digest": "aff5080f3601ade75fdd3c0721c5c270", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22250, "upload_time": "2015-02-19T14:02:09", "url": "https://files.pythonhosted.org/packages/9f/d7/741a2319bced9a7b88164872ffb657e7ad4338f8e8d3b646e7d29798432a/vcs-repo-mgr-0.10.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "5c3664e9e7d3924d542ed628d783fa53", "sha256": "66be88a59699f0aab4cea19b3884cc931329feec965adffe8c12ddbbe84607f7" }, "downloads": -1, "filename": "vcs-repo-mgr-0.12.tar.gz", "has_sig": false, "md5_digest": "5c3664e9e7d3924d542ed628d783fa53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23177, "upload_time": "2015-03-16T21:46:20", "url": "https://files.pythonhosted.org/packages/16/9b/ff08c3ed5865ae8a3cc72e45775ab2231cdc703872914ef2b78c4bcfcffb/vcs-repo-mgr-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "9f8db7b8048f970192a0d6530359e126", "sha256": "153ab6a34d108118b910403265f2e04ee9451a99ee6952945aa24755f74fdd9c" }, "downloads": -1, "filename": "vcs-repo-mgr-0.13.tar.gz", "has_sig": false, "md5_digest": "9f8db7b8048f970192a0d6530359e126", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25728, "upload_time": "2015-05-08T13:24:17", "url": "https://files.pythonhosted.org/packages/af/dc/d9e39eb8fd2d57e71a2be6661e89341612b77fd793160a5a92d4664b842e/vcs-repo-mgr-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "f434622d1186372544f2704b426c4c7c", "sha256": "049ce6421f5125be4c2bebc425f55b7b47bf5764047216d3869fe5d3496c7f5f" }, "downloads": -1, "filename": "vcs-repo-mgr-0.14.tar.gz", "has_sig": false, "md5_digest": "f434622d1186372544f2704b426c4c7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27591, "upload_time": "2015-05-08T15:29:50", "url": "https://files.pythonhosted.org/packages/c9/61/56635d7ff1ad6898a2181d99663cd6aeeb36d95918b8e2abca5820b61133/vcs-repo-mgr-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "b11381ddb578846f72fce298446c43ba", "sha256": "18a3b9f90df205653feb4d5501ba087871a5f3e634cc357538fc92b7602f699b" }, "downloads": -1, "filename": "vcs-repo-mgr-0.15.tar.gz", "has_sig": false, "md5_digest": "b11381ddb578846f72fce298446c43ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24477, "upload_time": "2015-06-25T17:53:18", "url": "https://files.pythonhosted.org/packages/5a/7f/33bc8304b0a05ffd222f2b88892465df636c91dec25a4e92a6aab203feca/vcs-repo-mgr-0.15.tar.gz" } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "f0a1bdd2352d10be9e62e2a3707d1b3c", "sha256": "7564300d39ddc76986942bb8d8a0b5442c8be99f6d5f46cb4cdc42292b856786" }, "downloads": -1, "filename": "vcs-repo-mgr-0.15.1.tar.gz", "has_sig": false, "md5_digest": "f0a1bdd2352d10be9e62e2a3707d1b3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24501, "upload_time": "2015-08-19T18:02:21", "url": "https://files.pythonhosted.org/packages/ef/24/ee4465a68056ebfbb1ca49aaa177c9af4c334403d4ca5d20109a6d21ced2/vcs-repo-mgr-0.15.1.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "26061dc2f4bc197838e7a5a97ae959c0", "sha256": "c5d37f0b4ea0dcc9948f6010451d05e3eda68be42f16c5ea628f235bda573e97" }, "downloads": -1, "filename": "vcs-repo-mgr-0.2.1.tar.gz", "has_sig": false, "md5_digest": "26061dc2f4bc197838e7a5a97ae959c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10997, "upload_time": "2014-05-10T21:09:08", "url": "https://files.pythonhosted.org/packages/6b/f5/e1d51d4ea660a8e313aa742ebba0b4b640345b104041aaf24d044525c284/vcs-repo-mgr-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "e1ab065387cd16429f77f1fbb6a4ccc6", "sha256": "a24d2fde504fec9631600ee7abb8ac6d06d263ab015df0a24bfab9304e9f97c3" }, "downloads": -1, "filename": "vcs-repo-mgr-0.2.2.tar.gz", "has_sig": false, "md5_digest": "e1ab065387cd16429f77f1fbb6a4ccc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11093, "upload_time": "2014-05-10T23:40:03", "url": "https://files.pythonhosted.org/packages/69/53/204e605fab60beb9a3db4ffd8df1a945f2db586dcfec3669451765b6319b/vcs-repo-mgr-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "16e4dba9e547da43d55038ea316b9ec3", "sha256": "13c3e9660a799325acbe6ee598218b692a801c66b557ca1fb17d8024d722b1db" }, "downloads": -1, "filename": "vcs-repo-mgr-0.2.3.tar.gz", "has_sig": false, "md5_digest": "16e4dba9e547da43d55038ea316b9ec3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11342, "upload_time": "2014-05-11T00:08:15", "url": "https://files.pythonhosted.org/packages/77/e7/9838ec3c6a4d79579506527b2cf86c015cad23fcd22a66dc03e1d1fc110a/vcs-repo-mgr-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "7aa13d320514d8de976a9bb6980dea66", "sha256": "cdf4dfccf2f0430f3dbec045756f5c9bb8bc30fb11a3986e962eb28de1955027" }, "downloads": -1, "filename": "vcs-repo-mgr-0.2.4.tar.gz", "has_sig": false, "md5_digest": "7aa13d320514d8de976a9bb6980dea66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11454, "upload_time": "2014-05-31T03:28:01", "url": "https://files.pythonhosted.org/packages/b1/e4/f374af9c0e2904b18cd3300849c91df0208bbbaed46a9c1a7ec39243a9bd/vcs-repo-mgr-0.2.4.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "307af9a267cab13218f6fb24e32c98b7", "sha256": "642972d9eb3b4a0584da4928f2da9b6f03d8a265aa06a0819eee0531e290c78a" }, "downloads": -1, "filename": "vcs-repo-mgr-0.3.1.tar.gz", "has_sig": false, "md5_digest": "307af9a267cab13218f6fb24e32c98b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12136, "upload_time": "2014-06-22T15:43:27", "url": "https://files.pythonhosted.org/packages/4c/71/500540c2b226c74c91364a2032503174a25433d9bedef01283461cd19cf6/vcs-repo-mgr-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "ba6ccc3ee86e4712abd2ae743d0dffb5", "sha256": "a9841e7246e908f245f5ebfe25075d198bbf6aae2e8b1e635ab1fafbcd336b39" }, "downloads": -1, "filename": "vcs-repo-mgr-0.3.2.tar.gz", "has_sig": false, "md5_digest": "ba6ccc3ee86e4712abd2ae743d0dffb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12422, "upload_time": "2014-06-22T17:28:30", "url": "https://files.pythonhosted.org/packages/ab/3e/72d8a45d1fd9190f1db941716edafce78231e014c20d1daac7d12120264c/vcs-repo-mgr-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "0a98134bba2ad37e80f7053461110933", "sha256": "df92e67f82d33bf1724e5e24c6346ef634e1e48b512ce80cd13fc5463f5dc795" }, "downloads": -1, "filename": "vcs-repo-mgr-0.3.3.tar.gz", "has_sig": false, "md5_digest": "0a98134bba2ad37e80f7053461110933", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12780, "upload_time": "2014-06-25T10:18:26", "url": "https://files.pythonhosted.org/packages/c3/14/a0972e0f41a9e814860f2a0c005cfcaf8f9f3fdd081d956eefd7d9582fb8/vcs-repo-mgr-0.3.3.tar.gz" } ], "0.30": [ { "comment_text": "", "digests": { "md5": "7c08339547527fd10ea4636d105ee879", "sha256": "3812f42986f278e342e38196e2de20246f2df4e4e4c583ca636b21ed54375922" }, "downloads": -1, "filename": "vcs-repo-mgr-0.30.tar.gz", "has_sig": false, "md5_digest": "7c08339547527fd10ea4636d105ee879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40401, "upload_time": "2016-04-15T15:45:40", "url": "https://files.pythonhosted.org/packages/89/27/e2e66c9ea36319ff8553d8256895739fd543bb78f4e12fb67b3d9bd8c790/vcs-repo-mgr-0.30.tar.gz" } ], "0.31": [ { "comment_text": "", "digests": { "md5": "f63b389b17e9ceb8aaeea73fadd8d854", "sha256": "ee8d68adaf77390132613fe86ae0e1287a9ff523176fae73fd938e6cf3a9eea0" }, "downloads": -1, "filename": "vcs-repo-mgr-0.31.tar.gz", "has_sig": false, "md5_digest": "f63b389b17e9ceb8aaeea73fadd8d854", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41419, "upload_time": "2016-04-20T18:01:02", "url": "https://files.pythonhosted.org/packages/a0/f9/130dace8ffe2ad3b9aa1b17f63f8e504002762cd5cc8762279d03be82a38/vcs-repo-mgr-0.31.tar.gz" } ], "0.32": [ { "comment_text": "", "digests": { "md5": "0d6889caa351de8ecebe4eca660310bd", "sha256": "83fcdac0d282e0c0f35b85dc1f54d62a30924d652203a8cb8c2bd166428fd807" }, "downloads": -1, "filename": "vcs-repo-mgr-0.32.tar.gz", "has_sig": false, "md5_digest": "0d6889caa351de8ecebe4eca660310bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41519, "upload_time": "2016-04-20T18:39:21", "url": "https://files.pythonhosted.org/packages/97/58/7d3c08b56649189222299bab91d4ef1d789f8a55ed0177c9ff27c42a6c14/vcs-repo-mgr-0.32.tar.gz" } ], "0.32.1": [ { "comment_text": "", "digests": { "md5": "e376e075f7c98edf325597f97f72a6d5", "sha256": "9e5223434699e5cd08a085c42f91c0db2db0226324e54b7ec9f52c883d6f437b" }, "downloads": -1, "filename": "vcs_repo_mgr-0.32.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e376e075f7c98edf325597f97f72a6d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 47031, "upload_time": "2016-08-04T20:19:36", "url": "https://files.pythonhosted.org/packages/2b/8e/6ca781ae7aef8ff54137dfd0a07d917cc3ef10736f8512b54e5013bc996e/vcs_repo_mgr-0.32.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6456db5372d4060280c9b831099f1a98", "sha256": "c927e5f1b6e404dd6573b6e71f55f107dc7def97f02c3ea151b7694562b7436e" }, "downloads": -1, "filename": "vcs-repo-mgr-0.32.1.tar.gz", "has_sig": false, "md5_digest": "6456db5372d4060280c9b831099f1a98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42611, "upload_time": "2016-08-04T19:18:19", "url": "https://files.pythonhosted.org/packages/10/12/37e58033428d88c48a7df9677143b2699bbda3371ef3dcf26d944e768be5/vcs-repo-mgr-0.32.1.tar.gz" } ], "0.33": [ { "comment_text": "", "digests": { "md5": "59de417c093ba8e00a4ee446d6322744", "sha256": "33c0958dee5cbe853e09b6d5779e4561c2009a4e88cf96b0b890937123db4d7d" }, "downloads": -1, "filename": "vcs_repo_mgr-0.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59de417c093ba8e00a4ee446d6322744", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49298, "upload_time": "2016-10-25T23:24:06", "url": "https://files.pythonhosted.org/packages/e9/66/300c9ac4b8879443dfaf7d21bd3dcbff8c483a920f1a12b9971392119b0a/vcs_repo_mgr-0.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aa7a76ceac0efc32ff3f0730c09cb664", "sha256": "2798721f386d3238237d49201bedb4062247b026ac4e91fb79ae7e7c2c5e047b" }, "downloads": -1, "filename": "vcs-repo-mgr-0.33.tar.gz", "has_sig": false, "md5_digest": "aa7a76ceac0efc32ff3f0730c09cb664", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44786, "upload_time": "2016-10-25T23:24:09", "url": "https://files.pythonhosted.org/packages/92/4c/b66448ea12e26ace13a318c93b436cd348e20272f9b6463b1eafc094396f/vcs-repo-mgr-0.33.tar.gz" } ], "0.33.1": [ { "comment_text": "", "digests": { "md5": "155c5e6c6de3beb66a17a5029908bad5", "sha256": "f3d766efaf89606b8a6fe925839839d3704e238dfbecd2c1f3a43b2ffae3abc2" }, "downloads": -1, "filename": "vcs_repo_mgr-0.33.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "155c5e6c6de3beb66a17a5029908bad5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49333, "upload_time": "2016-11-30T22:29:35", "url": "https://files.pythonhosted.org/packages/fa/8c/8c20b9602e0153404168441b5cf155fbf46f5f32db5608701e525a536045/vcs_repo_mgr-0.33.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a45f4b77e8869e0bdf8c23e962cf493c", "sha256": "c02f694dcf7481e51298f2b534a9ad5c26d0db90926423c1b4bd29193ae4d856" }, "downloads": -1, "filename": "vcs-repo-mgr-0.33.1.tar.gz", "has_sig": false, "md5_digest": "a45f4b77e8869e0bdf8c23e962cf493c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44926, "upload_time": "2016-11-30T22:29:38", "url": "https://files.pythonhosted.org/packages/ef/7a/0c6f8bd40a35e17c605b38c13b4addeaa0e8e5445f5cd88baf262ec43516/vcs-repo-mgr-0.33.1.tar.gz" } ], "0.34": [ { "comment_text": "", "digests": { "md5": "8cc43ef7a5da14cb881fc1128c1a39dc", "sha256": "e1decb33ef0697993882f57d1fd6aa93c3a1e52efa1cf54806bd7342e7ce1e49" }, "downloads": -1, "filename": "vcs_repo_mgr-0.34-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8cc43ef7a5da14cb881fc1128c1a39dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 49563, "upload_time": "2017-04-28T23:25:33", "url": "https://files.pythonhosted.org/packages/7e/cc/8f8759fa763bc0de429ccf0d0e84931d40c50a9666288b019c360edc9a6e/vcs_repo_mgr-0.34-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1afc78f55e550a2fcfbda6c374406ce", "sha256": "7da7ff9d33b41b3560a785fc1d3bc150b753ee154d437b4275a4a724b29e544a" }, "downloads": -1, "filename": "vcs-repo-mgr-0.34.tar.gz", "has_sig": false, "md5_digest": "c1afc78f55e550a2fcfbda6c374406ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44043, "upload_time": "2017-04-28T23:25:35", "url": "https://files.pythonhosted.org/packages/0b/0a/17f5326ca577e2282e1a4a7ee2c537c8b4f907fc012eb43b6a0bb2c0e79d/vcs-repo-mgr-0.34.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "45242af22724220c08a6a1001de8f61b", "sha256": "06d854712d6dcf2242f927941f9754d404f57f96743d4af74d65ad809374a070" }, "downloads": -1, "filename": "vcs-repo-mgr-0.5.tar.gz", "has_sig": false, "md5_digest": "45242af22724220c08a6a1001de8f61b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13031, "upload_time": "2014-09-14T14:37:39", "url": "https://files.pythonhosted.org/packages/88/71/a853a212b29a5181cceba1b99e98053f35cdfcf0f5f01d8c53a9ed29bb0f/vcs-repo-mgr-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "bdc8960973c9d168e9f21beee8890d19", "sha256": "53ec9d66417553e349e9439002cf052a6c085abbdca0bc0f00c68d25d6930d1e" }, "downloads": -1, "filename": "vcs-repo-mgr-0.6.tar.gz", "has_sig": false, "md5_digest": "bdc8960973c9d168e9f21beee8890d19", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14317, "upload_time": "2014-09-14T15:42:55", "url": "https://files.pythonhosted.org/packages/79/9b/6eb5690055fd3afae49101309a8d7e8ba5cda1ce5c6a350e1f696fd1c1eb/vcs-repo-mgr-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "945d1067d22077bb057aadda454489df", "sha256": "2ed2aa075db9399f55b4a3175ead81935c6a276be28ed6c29a2583d0035fb1c2" }, "downloads": -1, "filename": "vcs-repo-mgr-0.6.1.tar.gz", "has_sig": false, "md5_digest": "945d1067d22077bb057aadda454489df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15712, "upload_time": "2014-09-14T18:08:30", "url": "https://files.pythonhosted.org/packages/b9/e1/f24cb8a744ca86c5e8426e012b7eb46eea4df58add84fb1987b830112193/vcs-repo-mgr-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "5653ee48211bb0194a2705580857c78d", "sha256": "c668ea249f65c260365a1acbb5e7e0932828c152bc9e4b3823b84a7696f15986" }, "downloads": -1, "filename": "vcs-repo-mgr-0.6.2.tar.gz", "has_sig": false, "md5_digest": "5653ee48211bb0194a2705580857c78d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15725, "upload_time": "2014-09-14T18:19:13", "url": "https://files.pythonhosted.org/packages/1e/ef/0b1c36a7dc55befbec09e6e37059072b42c974b91039eda10ef64864e429/vcs-repo-mgr-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "7ef8b007e933399e3d70214c04329aa5", "sha256": "ad0c75912e1b9e4c57d384da96bf394886bbecb0b69de75cd53664b1b9c5a1ad" }, "downloads": -1, "filename": "vcs-repo-mgr-0.6.3.tar.gz", "has_sig": false, "md5_digest": "7ef8b007e933399e3d70214c04329aa5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15721, "upload_time": "2014-09-14T18:29:09", "url": "https://files.pythonhosted.org/packages/b7/c7/652d2cb9a847066ffb3046fa8085dcb9fc4a4915a30effb078513a17141d/vcs-repo-mgr-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "9e280037db34b5bcdcfb4de519d31edb", "sha256": "85675654f36153277227f5f6196a4cc550a8f4c1fac9f5c73c834998d5415751" }, "downloads": -1, "filename": "vcs-repo-mgr-0.6.4.tar.gz", "has_sig": false, "md5_digest": "9e280037db34b5bcdcfb4de519d31edb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16011, "upload_time": "2014-09-14T19:22:15", "url": "https://files.pythonhosted.org/packages/d6/88/04b8b9eb21aae056ce923ffbd5740954564b2f97ed05a8b0a60b13266258/vcs-repo-mgr-0.6.4.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "92268392f4af11a45f1d0701f38a422a", "sha256": "8b2ecead6e20101c46b773a860e51ee84ff72084e10707ba2984ac3e150c92e0" }, "downloads": -1, "filename": "vcs-repo-mgr-0.7.tar.gz", "has_sig": false, "md5_digest": "92268392f4af11a45f1d0701f38a422a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18131, "upload_time": "2014-11-02T01:53:01", "url": "https://files.pythonhosted.org/packages/c0/8f/5ceb38e1c2a2b7de92600afb2afa3ee53978b4879de69768da0a22246989/vcs-repo-mgr-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "62d6a986a52a896700aac61f4961bb3b", "sha256": "79e3e9591c8c94b2d0b55c9d6e694fd9fb4822d2ca44d3866ba66bfeeac02bad" }, "downloads": -1, "filename": "vcs-repo-mgr-0.8.tar.gz", "has_sig": false, "md5_digest": "62d6a986a52a896700aac61f4961bb3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21344, "upload_time": "2015-02-19T10:04:16", "url": "https://files.pythonhosted.org/packages/73/15/e0296b2fd8b591dd6d07cdb9a49f0290b85012ecb3344b64ec88b5b935e1/vcs-repo-mgr-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "d6469c1eeefc7dd0ede7ef17a44c6ee3", "sha256": "ae1a249abac2319f6246ac6c8cc9ac80a7a14ce067e5a466e929e2625ff67202" }, "downloads": -1, "filename": "vcs-repo-mgr-0.9.tar.gz", "has_sig": false, "md5_digest": "d6469c1eeefc7dd0ede7ef17a44c6ee3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21691, "upload_time": "2015-02-19T12:08:26", "url": "https://files.pythonhosted.org/packages/90/8a/40ed29dac007879cf6bdb91130effe92706d258cbb8f66d01b2456a8a076/vcs-repo-mgr-0.9.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "b5b851aca96c5f214ac5b88131f44f43", "sha256": "32a31af44a43f46c8aa64b702c58ee01146781becdbb26fa9b57852147f804dd" }, "downloads": -1, "filename": "vcs_repo_mgr-1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b5b851aca96c5f214ac5b88131f44f43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 57252, "upload_time": "2017-07-02T22:31:15", "url": "https://files.pythonhosted.org/packages/b4/88/4c8005e9bd7f245b4d524c7ae73479875bff8efce314abe4215017c9aac5/vcs_repo_mgr-1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da4f73830311852704804c7cf2fde21d", "sha256": "06f4170b4f8f836034a81e6142db4f26090807fb5bfdcbdcc16cbe8f4803e1a2" }, "downloads": -1, "filename": "vcs-repo-mgr-1.0.tar.gz", "has_sig": false, "md5_digest": "da4f73830311852704804c7cf2fde21d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51646, "upload_time": "2017-07-02T22:31:16", "url": "https://files.pythonhosted.org/packages/dd/11/779bac0958134c48eae1ae6c73a2ef5d0b87c694bec4790ff92add0aaa29/vcs-repo-mgr-1.0.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "e691cef109daf7d58d7817005c72a982", "sha256": "2dc72dfb59ad60c5129428356a27e74457e4a6323cd1a2e25604943b4b846ce1" }, "downloads": -1, "filename": "vcs_repo_mgr-2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e691cef109daf7d58d7817005c72a982", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 58150, "upload_time": "2017-07-14T00:07:29", "url": "https://files.pythonhosted.org/packages/82/f0/4cac76ab1406ec27be6ee180ad4e98b43891abfdb7c37b584a172c996613/vcs_repo_mgr-2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "597c279de6367ddcc316e3413ecdd808", "sha256": "f6228e5059aef8a08a6d365ec90decff6146d5dc1adbe3b455de80158a79876a" }, "downloads": -1, "filename": "vcs-repo-mgr-2.0.tar.gz", "has_sig": false, "md5_digest": "597c279de6367ddcc316e3413ecdd808", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48492, "upload_time": "2017-07-14T00:07:31", "url": "https://files.pythonhosted.org/packages/60/ca/01181924450d22b56a24ec1443c4d1776c719131080c96e6c37d025d8d03/vcs-repo-mgr-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "51005796a5ad1f95a7c46f42d0557d97", "sha256": "ac4d7a57ffe3088668f9c2a32e62c8df73536f183e533444fb874f0216841434" }, "downloads": -1, "filename": "vcs_repo_mgr-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "51005796a5ad1f95a7c46f42d0557d97", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 58380, "upload_time": "2017-08-02T15:24:30", "url": "https://files.pythonhosted.org/packages/bd/aa/f27c1d717a48e89b6f6821facd82d9b449d4787bb66f61702bf9ef6dd0b1/vcs_repo_mgr-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "aea8934b5c1ca579f5faefa9c90691db", "sha256": "742932493745900cc48591b7bfe50d6e8ca345f1be062365ad63889cf569293e" }, "downloads": -1, "filename": "vcs-repo-mgr-2.0.1.tar.gz", "has_sig": false, "md5_digest": "aea8934b5c1ca579f5faefa9c90691db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48702, "upload_time": "2017-08-02T15:24:31", "url": "https://files.pythonhosted.org/packages/a1/af/4123079260daa6d93279677f72ca6f7496e69ec602c3795a6d8e5e15cebb/vcs-repo-mgr-2.0.1.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "f32e871c311aa95fbe864dfb6039ba26", "sha256": "95970a7633ecca7d7a005d331116fe2aae33a70ca655e587ecddf06e3fd1c646" }, "downloads": -1, "filename": "vcs_repo_mgr-3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f32e871c311aa95fbe864dfb6039ba26", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 58853, "upload_time": "2018-03-05T20:26:09", "url": "https://files.pythonhosted.org/packages/d4/66/e9c536fd05ae4d43a9557a3264eb2cf33c8a9e26f9316f9445dc079e2501/vcs_repo_mgr-3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe22bccc727c31cac397d86e3481a82a", "sha256": "91af0044d01dbb483183beb549bb40c55d65f10c62f840e673c3f5502978834f" }, "downloads": -1, "filename": "vcs-repo-mgr-3.0.tar.gz", "has_sig": false, "md5_digest": "fe22bccc727c31cac397d86e3481a82a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50813, "upload_time": "2018-03-05T20:26:10", "url": "https://files.pythonhosted.org/packages/c0/2c/45a33efea4fa40d6fe11d48573337fc30bc037e4ce05443a474da2f6006f/vcs-repo-mgr-3.0.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "b530facaf7bfd9b1c8e773dcedc257ba", "sha256": "52affad987e05665d578f30258672afe5b66be9d01440d7dcfa0952b096816aa" }, "downloads": -1, "filename": "vcs_repo_mgr-4.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b530facaf7bfd9b1c8e773dcedc257ba", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59045, "upload_time": "2018-03-05T21:08:19", "url": "https://files.pythonhosted.org/packages/5e/f4/61ea76c581630fb4f1e54bccd78d0e5dfd9021512524ae89b43724ba5cd3/vcs_repo_mgr-4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7304712a602282423c1a82922433d01a", "sha256": "4abb838fa863e6a9a044dc6161fe97604c1c289996047f900c1a4b7a2ad0cf9c" }, "downloads": -1, "filename": "vcs-repo-mgr-4.0.tar.gz", "has_sig": false, "md5_digest": "7304712a602282423c1a82922433d01a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50987, "upload_time": "2018-03-05T21:08:22", "url": "https://files.pythonhosted.org/packages/7c/f8/ec608676c9f9258ca92bf44779d7a9870b535a2a43dba0beb9cb5ef6d0c0/vcs-repo-mgr-4.0.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "6eff55ed9d1a48d9ce693e398bbfe6aa", "sha256": "79bf9237d941f7092e8ab84b3b850d71eb53c317788d6ab67fb7640c067a2b41" }, "downloads": -1, "filename": "vcs_repo_mgr-4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6eff55ed9d1a48d9ce693e398bbfe6aa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 59586, "upload_time": "2018-03-07T23:17:23", "url": "https://files.pythonhosted.org/packages/1e/42/1337d09fb25639725894c4e2942f0c19603ca75a4f12739f8ebfe6207e23/vcs_repo_mgr-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e36498d2e349909b3857206a5ee0da72", "sha256": "a74b0708f064e252c470726b9a2c64b3e2839c2508815602f5df2b93e103fcd7" }, "downloads": -1, "filename": "vcs-repo-mgr-4.1.tar.gz", "has_sig": false, "md5_digest": "e36498d2e349909b3857206a5ee0da72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51562, "upload_time": "2018-03-07T23:17:25", "url": "https://files.pythonhosted.org/packages/9b/7e/cd194478ce7282882f66c46195cb8b629647b613805ec1479903d3958d4a/vcs-repo-mgr-4.1.tar.gz" } ], "4.1.1": [ { "comment_text": "", "digests": { "md5": "4a2db738a95ffbc69538f93606e20264", "sha256": "2e99946a78baadb08fe534548d6e6579d03111b17ce93057b09436180c8fc484" }, "downloads": -1, "filename": "vcs_repo_mgr-4.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4a2db738a95ffbc69538f93606e20264", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60406, "upload_time": "2018-03-08T18:21:53", "url": "https://files.pythonhosted.org/packages/cb/0e/51e2ed07b20ed08237a7c63a2557250334a0a34fe6e2179c42360ef18f59/vcs_repo_mgr-4.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b07debff1b138c001034b0c9394baa26", "sha256": "7bbdd71a7294424cef4c5ad40b330c5a614051a30e35a3c9444aa8550c79d0fb" }, "downloads": -1, "filename": "vcs-repo-mgr-4.1.1.tar.gz", "has_sig": false, "md5_digest": "b07debff1b138c001034b0c9394baa26", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52358, "upload_time": "2018-03-08T18:21:55", "url": "https://files.pythonhosted.org/packages/0d/d3/860793945c43fdb84f3eb84b8cccb3b85554650cb99d985cd1ba23673bf2/vcs-repo-mgr-4.1.1.tar.gz" } ], "4.1.2": [ { "comment_text": "", "digests": { "md5": "d93fd34da3b8df384d782138fe026652", "sha256": "585ddad3f798d4b14b8fe635e0c7da5073ab20126e26c1bcaee5914a9c874328" }, "downloads": -1, "filename": "vcs_repo_mgr-4.1.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d93fd34da3b8df384d782138fe026652", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60670, "upload_time": "2018-03-28T16:02:32", "url": "https://files.pythonhosted.org/packages/61/12/ff93b55b0ee5b6b666f71f5960593f40a8ebbc0d2aa59ab57c69bfed3da2/vcs_repo_mgr-4.1.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7d937739f208dd6af98f335202bf9589", "sha256": "27b833b2287f1a0c20439972df4cdcdab6f4d3211cba80b198e1d4c886d135cf" }, "downloads": -1, "filename": "vcs-repo-mgr-4.1.2.tar.gz", "has_sig": false, "md5_digest": "7d937739f208dd6af98f335202bf9589", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52590, "upload_time": "2018-03-28T16:02:34", "url": "https://files.pythonhosted.org/packages/b4/4d/7e46f4f9edd3667e0cbdf2c6aba7bd20545700d96efa89e25e715c847498/vcs-repo-mgr-4.1.2.tar.gz" } ], "4.1.3": [ { "comment_text": "", "digests": { "md5": "446ff2c25db1254d127624358a722069", "sha256": "4a444ef2966dcfe20b5982c1ed6b37c0dbe73372df4b477b99f12dcc8aa54d13" }, "downloads": -1, "filename": "vcs_repo_mgr-4.1.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "446ff2c25db1254d127624358a722069", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60867, "upload_time": "2018-03-28T16:32:53", "url": "https://files.pythonhosted.org/packages/b0/31/611fb75b0be09c10cb284eb73c10762f29cee2c2c33bc58772bbe45a190d/vcs_repo_mgr-4.1.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6ea47ff5083dc8d0d47da96dfa0d299d", "sha256": "c0b6aa95213023db95573eff673569e211e05cacde0dc77626b80e4bee43d99c" }, "downloads": -1, "filename": "vcs-repo-mgr-4.1.3.tar.gz", "has_sig": false, "md5_digest": "6ea47ff5083dc8d0d47da96dfa0d299d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52772, "upload_time": "2018-03-28T16:32:55", "url": "https://files.pythonhosted.org/packages/a1/0e/8d6cb0742a51fbec117c564d96b63ee7fc2bbb54b5d35416a8599595a1ba/vcs-repo-mgr-4.1.3.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "fcc30ed5b6d2e263a729f2282dd356da", "sha256": "d8b29214130bc26acae1df881c9132b29eff599add2af796c92a499d49f79be2" }, "downloads": -1, "filename": "vcs_repo_mgr-4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fcc30ed5b6d2e263a729f2282dd356da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60907, "upload_time": "2018-04-26T09:31:06", "url": "https://files.pythonhosted.org/packages/ba/95/44fc5e24892a08da8a05378d06072f9130f01b73a6a8e275644a94d73fce/vcs_repo_mgr-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dce4fc38574d10ce48dcf232aec7eed3", "sha256": "d420f52eaf8abe130ddff08b03ac8cedee087920abd4dde425044ba6710f0a27" }, "downloads": -1, "filename": "vcs-repo-mgr-4.2.tar.gz", "has_sig": false, "md5_digest": "dce4fc38574d10ce48dcf232aec7eed3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59105, "upload_time": "2018-04-26T09:31:07", "url": "https://files.pythonhosted.org/packages/f4/a1/8d0488632c93cd0cdfb532ef7710079f929e064c86c1bc0c4a7440fab507/vcs-repo-mgr-4.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "fcc30ed5b6d2e263a729f2282dd356da", "sha256": "d8b29214130bc26acae1df881c9132b29eff599add2af796c92a499d49f79be2" }, "downloads": -1, "filename": "vcs_repo_mgr-4.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fcc30ed5b6d2e263a729f2282dd356da", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 60907, "upload_time": "2018-04-26T09:31:06", "url": "https://files.pythonhosted.org/packages/ba/95/44fc5e24892a08da8a05378d06072f9130f01b73a6a8e275644a94d73fce/vcs_repo_mgr-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dce4fc38574d10ce48dcf232aec7eed3", "sha256": "d420f52eaf8abe130ddff08b03ac8cedee087920abd4dde425044ba6710f0a27" }, "downloads": -1, "filename": "vcs-repo-mgr-4.2.tar.gz", "has_sig": false, "md5_digest": "dce4fc38574d10ce48dcf232aec7eed3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59105, "upload_time": "2018-04-26T09:31:07", "url": "https://files.pythonhosted.org/packages/f4/a1/8d0488632c93cd0cdfb532ef7710079f929e064c86c1bc0c4a7440fab507/vcs-repo-mgr-4.2.tar.gz" } ] }