python-vagrant 0.5.15-4 source package in Ubuntu

Changelog

python-vagrant (0.5.15-4) unstable; urgency=medium

  [ Ondřej Nový ]
  * Bump Standards-Version to 4.4.1.
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Debian Janitor ]
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Bump debhelper from old 12 to 13.
  * Update standards version to 4.5.1, no changes needed.

 -- Sandro Tosi <email address hidden>  Sat, 04 Jun 2022 16:02:05 -0400

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-vagrant_0.5.15-4.dsc 2.0 KiB 9fdbb9b77fc67fb1eb3437c8252a40edd8dc61ee092280cf3e4deb40c8ee1631
python-vagrant_0.5.15.orig.tar.gz 28.5 KiB af9a8a9802d382d45dbea96aa3cfbe77c6e6ad65b3fe7b7c799d41ab988179c6
python-vagrant_0.5.15-4.debian.tar.xz 3.2 KiB c8197bc86e3998c004d4ceb61c801c78d6d8ddf93cb055d67946b687074664e2

Available diffs

No changes file available.

Binary packages built by this source

python3-vagrant: Python 3 bindings for interacting with Vagrant virtual machines

 python-vagrant is a Python module that provides a _thin_ wrapper
 around the `vagrant` command line executable, allowing programmatic
 control of Vagrant virtual machines (boxes). This project began to
 create Python bindings for Vagrant to programmatically access vagrant
 boxes using Fabric. This module is useful for:
 .
  - Starting a Vagrant virtual machine (VM) (`up`)
  - Terminating a Vagrant VM (`destroy`)
  - Halting a Vagrant VM without destroying it (`halt`)
  - Querying the status of a VM or VMs (`status`)
  - Getting ssh configuration information useful for SSHing into the
    VM (`host`, `port`, ...)
  - Running `vagrant` commands in a multi-VM environment
    (http://vagrantup.com/v1/docs/multivm.html) by using `vm_name`
    parameter
  - Initializing the VM based on a named base box, using init().
  - Adding, Removing, and Listing boxes (`box add`, `box remove`,
    `box list`)
  - Provisioning VMs - up() accepts options like `no_provision`,
    `provision`, and `provision_with`, and there is a `provision()`
    method
  - Using sandbox mode from the Sahara gem:
    https://github.com/jedi4ever/sahara
 .
 This package is _beta_ and its API is not guaranteed to be
 stable. The API attempts to be congruent with the `vagrant` API
 terminology, to facilitate knowledge transfer for users already
 familiar with Vagrant. Over time, the python-vagrant API has changed
 to better match the underling `vagrant` CLI and to evolve with the
 changes in that CLI.
 .
 The package version numbering is in the form `0.X.Y`. The initial `0`
 reflects the _beta_ nature of this project. The number `X` is
 incremented when backwards-incompatible changes occur. The number `Y`
 is incremented when backwards-compatible features or bug fixes are
 added.
 .
 This package provides the Python 3.x module.