[Pkg-libvirt-commits] [libvirt-sandbox] branch debian/sid updated (184e246 -> 45218f6)

Guido Guenther agx at moszumanska.debian.org
Thu Sep 14 16:55:53 UTC 2017


This is an automated email from the git hooks/post-receive script.

agx pushed a change to branch debian/sid
in repository libvirt-sandbox.

      from  184e246   Suggest liguestfs-tools
      adds  6679777   Silence PyGIWarnings
      adds  70ac1bb   sandbox-builder: Don't try g_file_enumerator_next_file if enumerator is NULL
      adds  6c85dc0   tests: add file extension for host mounts
      adds  db89e7e   Allow to switch to a specific user id
      adds  d1ccf52   Ignore generated file
      adds  6731635   virt-sandbox: document how to pass arguments to commands
      adds  3f9208b   Fix minor typo
      adds  946a88f   pkgconfig: remove non-existent requirement on 'sandbox-2.0'
      adds  cf3263f   Disable Fedora hardened build since it breaks static linking
      adds  e34745f   Remove transfer annotations on scalar parameters
      adds  2fc51a5   Improve error message for unsupported URIs
      adds  51d97d1   init: search $PATH for user specified binary
      adds  05568d0   image: rename python source impl modules
      adds  db1a94c   image: remove execute permission from cli.py
      adds  cd6b00c   image: add support for --debug arg
      adds  3eef864   image: don't assume ValueError has a multi-line message
      adds  114d214   image: check for errors running mkfs / virt-sandbox
      adds  df6c4bd   virt-builder: check exit status of commands run
      adds  ef6fe70   virt-builder: disable setup of network for virt-builder
      adds  b1661e7   docker: check exit status of qemu-img command
      adds  0a3ef70   docker: rename destdir to templatedir
      adds  9cdfee1   docker: Remove duplicated call to download_template
      adds  91c12bb   docker: add missing hashlib import statement
      adds  9621e89   docker: fix download progress target value
      adds  de97339   docker: remove unused variables & code in download method
      adds  3d559de   docker: introduce a DockerImage class
      adds  aea26e0   docker: fix setting of Accept header
      adds  b20deaa   docker: refactor authentication method handling
      adds  a4b4fc3   docker: introduce a DockerRegistry class
      adds  f792ea0   docker: refactor download method exception handling
      adds  0e1bd37   docker: implement support for oauth
      adds  4dbc4c1   docker: add support for v2 registry server
      adds  20ba1c4   image: add 'list' command for viewing local templates
      adds  ad14f86   image: Rename 'create' and 'delete' to 'prepare' and 'purge'
      adds  d6f45b1   image: ignore OSError on listdir()
      adds  a4205dc   Merge commit 'd6f45b1' into debian/experimental
      adds  633cbba   Drop all patches
      adds  1322a0c   mkinitrd: Add missing fscrypto module
      adds  412071b   Enable hardening build flags
      adds  cee66c0   Update vcs-git URLs
      adds  bbbf872   Bump standards version to 3.9.8
      adds  db393db   Unbreak running from URLs given by "virt-sandbox-image list"
      adds  e1968fa   Document changes and release 0.5.1+git20160404-1
       new  45218f6   Exercise virt-sandbox-image as well

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                         |   1 +
 bin/virt-sandbox-service                           |   3 +
 bin/virt-sandbox.c                                 |  30 +-
 debian/changelog                                   |  12 +
 debian/control                                     |   6 +-
 .../Allow-to-switch-to-a-specific-user-id.patch    |  86 ---
 ...library-from-template-name-and-image-path.patch |  52 ++
 debian/patches/Silence-PyGIWarnings.patch          |  29 -
 .../docker-Don-t-ignore-qemu-img-errors.patch      |  21 +
 .../mkinitrd-Add-missing-fscrypto-module.patch     |  20 +
 ...Always-stop-in-case-of-failure-to-list-di.patch |  80 ---
 debian/patches/series                              |   8 +-
 .../tests-add-file-extension-for-host-mounts.patch |  24 -
 ...ocument-how-to-pass-arguments-to-commands.patch |  25 -
 debian/rules                                       |   8 +-
 debian/tests/help.sh                               |   7 +-
 libvirt-sandbox-1.0.pc.in                          |   1 -
 libvirt-sandbox.spec.in                            |   3 +
 libvirt-sandbox/image/cli.py                       | 104 ++--
 libvirt-sandbox/image/sources/DockerSource.py      | 407 ------------
 libvirt-sandbox/image/sources/Makefile.am          |   6 +-
 .../image/sources/{Source.py => base.py}           |  14 +-
 libvirt-sandbox/image/sources/docker.py            | 690 +++++++++++++++++++++
 .../{VirtBuilderSource.py => virtbuilder.py}       |  38 +-
 libvirt-sandbox/image/template.py                  |  32 +-
 libvirt-sandbox/libvirt-sandbox-builder.c          |  37 +-
 .../libvirt-sandbox-config-interactive.c           |   4 +-
 .../libvirt-sandbox-config-network-route.c         |   2 +-
 libvirt-sandbox/libvirt-sandbox-config.c           |  16 +-
 .../libvirt-sandbox-context-interactive.c          |   6 +-
 libvirt-sandbox/libvirt-sandbox-init-common.c      |   2 +-
 libvirt-sandbox/tests/test-config.c                |   2 +-
 32 files changed, 1018 insertions(+), 758 deletions(-)
 delete mode 100644 debian/patches/Allow-to-switch-to-a-specific-user-id.patch
 create mode 100644 debian/patches/Drop-library-from-template-name-and-image-path.patch
 delete mode 100644 debian/patches/Silence-PyGIWarnings.patch
 create mode 100644 debian/patches/docker-Don-t-ignore-qemu-img-errors.patch
 create mode 100644 debian/patches/mkinitrd-Add-missing-fscrypto-module.patch
 delete mode 100644 debian/patches/sandbox-builder-Always-stop-in-case-of-failure-to-list-di.patch
 delete mode 100644 debian/patches/tests-add-file-extension-for-host-mounts.patch
 delete mode 100644 debian/patches/virt-sandbox-document-how-to-pass-arguments-to-commands.patch
 mode change 100755 => 100644 libvirt-sandbox/image/cli.py
 delete mode 100644 libvirt-sandbox/image/sources/DockerSource.py
 rename libvirt-sandbox/image/sources/{Source.py => base.py} (93%)
 create mode 100755 libvirt-sandbox/image/sources/docker.py
 rename libvirt-sandbox/image/sources/{VirtBuilderSource.py => virtbuilder.py} (75%)
 mode change 100644 => 100755

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-libvirt/libvirt-sandbox.git



More information about the Pkg-libvirt-commits mailing list