[git] GnuPG - branch, master, updated. gnupg-2.1.21-86-g1455b40

by Marcus Brinkmann cvs at cvs.gnupg.org
Mon Jul 10 14:27:40 CEST 2017


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  1455b406e63dd262938e49da5f83c05c17c60a8d (commit)
      from  243b2a570c30586e19b8c88e43b282d62d8eb77c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1455b406e63dd262938e49da5f83c05c17c60a8d
Author: Marcus Brinkmann <marcus.brinkmann at ruhr-uni-bochum.de>
Date:   Mon Jul 10 14:25:59 2017 +0200

    speedo: Provide a vagrantfile to test speedo in an isolated VM.
    
    * build-aux/Vagrantfile: New file.
    
    Signed-off-by: Marcus Brinkmann <mb at g10code.com>

diff --git a/build-aux/Vagrantfile b/build-aux/Vagrantfile
new file mode 100644
index 0000000..e4252aa
--- /dev/null
+++ b/build-aux/Vagrantfile
@@ -0,0 +1,36 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+# This Vagrantfile installs all build dependencies for speedo and runs it to compile all of gnupg.
+
+$script = <<SCRIPT
+echo I am provisioning...
+export DEBIAN_FRONTEND noninteractive
+apt-get update -q -q
+apt-get install --yes rsync build-essential git gpg automake autoconf gettext libtool
+apt-get install --yes libz-dev libbz2-dev libldap2-dev libsqlite3-dev libgnutls28-dev libcurl4-gnutls-dev libreadline-dev librsvg2-bin libusb-1.0-0-dev
+apt-get install --yes texinfo transfig fig2dev imagemagick file ghostscript swig doxygen graphviz
+apt-get install --yes pkg-config autopoint python-all-dev python3-all-dev qtbase5-dev
+(cd /tmp; rsync -rvazp /vagrant .)
+(cd /tmp/vagrant; autoreconf -f -i)
+(cd /tmp/vagrant/build-aux; make -f speedo.mk native INSTALL_PREFIX=/tmp/install SELFCHECK=0)
+(cd /tmp/vagrant/build-aux/PLAY/build/gnupg; make check-all)
+SCRIPT
+
+Vagrant.configure("2") do |config|
+  config.vm.box = "debian/stretch64"
+
+  # Use .. for mount.  Also, Force NFS vers=3 (instead vers=4) for Debian 8.
+  config.vm.synced_folder "..", "/vagrant", :mount_options => ['nolock,vers=3,tcp,noatime']
+
+  config.vm.provider "libvirt" do |libvirt|
+    libvirt.nested = true
+    libvirt.cpus = 1
+    libvirt.cpu_mode = "host-model"
+    libvirt.memory = 1024
+    libvirt.storage :file, :path => 'vms.qcow2', :size => '1G'
+  end
+
+  config.vm.provision "shell", inline: $script
+
+end

-----------------------------------------------------------------------

Summary of changes:
 build-aux/Vagrantfile | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 build-aux/Vagrantfile


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list