[Spice-commits] 7 commits - ChangeLog CHANGELOG.md configure.ac .gitlab-ci.yml Makefile.am NEWS README README.md

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Apr 12 13:59:42 UTC 2019


 .gitlab-ci.yml |   22 ++++++++++++++++++++++
 CHANGELOG.md   |   12 ++++++++++++
 Makefile.am    |    5 ++++-
 README         |   27 +++++++++++++++++++++++++++
 configure.ac   |    2 +-
 5 files changed, 66 insertions(+), 2 deletions(-)

New commits:
commit f72ece993aeaf23f77e2845562b20e5563e52ba0
Author: Victor Toso <me at victortoso.com>
Date:   Fri Apr 12 13:28:59 2019 +0000

    build-sys: add README.md and CHANGELOG.md to tarball
    
    Before renaming README to README.md and NEWS to CHANGELOG.md, we were
    shipping those files in the tarball.
    
    I'm fixing this in autotools because it is a 'regression' while
    meson.build never had those included.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/Makefile.am b/Makefile.am
index c464fa7..db2d5ba 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,6 +22,9 @@ MAINTAINERCLEANFILES =						\
 	`find "$(srcdir)" -type f -name Makefile.in -print`	\
 	$(NULL)
 
-EXTRA_DIST = meson.build
+EXTRA_DIST =							\
+	README.md						\
+	CHANGELOG.md						\
+	meson.build
 
 -include $(top_srcdir)/git.mk
commit f8114fc266469332331dfe5a9d2e4c7b27b7a8da
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 09:35:49 2019 +0000

    NEWS: prepare for 0.14.0 release
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c78a58b..596643a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,15 @@
+Major changes in 0.14.0
+=======================
+* Bumping minor to show that some types and values were removed
+* Regenerate enums.h (from spice.proto) which removes:
+ * SpicePubkeyType;
+ * SpiceTunnelServiceType;
+ * SpiceTunnelIpType;
+ * SPICE_MSG_TUNNEL_* and SPICE_MSGC_TUNNEL_*
+* Add VDAgentGraphicsDeviceInfo message
+* Add StreamMsgGraphicsDeviceInfo message
+* Add padding to SpiceStat structure
+
 Major changes in 0.12.15
 ========================
 * Add support for h265 video codec
commit 0f6b1848d947f6a3793c0e2f525c8329582b4639
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 09:30:26 2019 +0000

    README: Add basic info and .md prefix
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/README b/README
deleted file mode 100644
index e69de29..0000000
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..244712f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
+spice-protocol
+==============
+
+The protocol definition for [SPICE] project used by:
+* [spice-server]: A server side library used by [QEMU] and [x11spice];
+* [spice-gtk]: A client side library used by [virt-viewer and virt-manager] and
+  [GNOME Boxes];
+* [linux/vd-agent] and [win32/vd-agent]: Guest components for Linux and Windows
+* [xf86-video-qxl], [gpu/drm/qxl], [win32/qxl], [win32/qxl-wddm-dod]: Guest video
+  drivers;
+
+Please [report bugs] at Freedesktop's instance of Gitlab
+
+[SPICE]: https://spice-space.org
+[spice-server]: https://gitlab.freedesktop.org/spice/spice
+[QEMU]: https://www.qemu.org
+[x11spice]: https://gitlab.com/spice/x11spice
+[spice-gtk]: https://gitlab.freedesktop.org/spice/spice-gtk
+[virt-viewer and virt-manager]: https://virt-manager.org/
+[GNOME Boxes]: https://wiki.gnome.org/Apps/Boxes
+[linux/vd-agent]: https://gitlab.freedesktop.org/spice/linux/vd_agent
+[win32/vd-agent]: https://gitlab.freedesktop.org/spice/win32/vd_agent
+[xf86-video-qxl]: https://gitlab.freedesktop.org/xorg/driver/xf86-video-qxl
+[gpu/drm/qxl]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/gpu/drm/qxl
+[win32/qxl]: https://gitlab.freedesktop.org/spice/win32/qxl
+[win32/qxl-wddm-dod]: https://gitlab.freedesktop.org/spice/win32/qxl-wddm-dod
+[report bugs]: https://gitlab.freedesktop.org/spice/spice-protocol/issues/
commit 9bb75ff1d99a80a975b68929068115739dec8b2c
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 09:03:50 2019 +0000

    Rename NEWS to CHANGELOG.md
    
    Uppercase + prefix to make Gitlab happy and format it properly.
    This should also be the case for all other spice components in Gitlab.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/NEWS b/CHANGELOG.md
similarity index 100%
rename from NEWS
rename to CHANGELOG.md
commit fc8f8689490548440484f2b66d475eac8ddee58d
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 08:42:20 2019 +0000

    ChangeLog: remove old one
    
    Added 193c54c in 2010-02-04 by Alexander Larsson <alexl at redhat.com>
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/ChangeLog b/ChangeLog
deleted file mode 100644
index e69de29..0000000
commit 26ca56157caa6fcc0175ca61cdd6d5ee3d6fe82c
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 10:09:56 2019 +0000

    gitlab-ci: add fedora meson+autotools
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..b3fad64
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,22 @@
+image: fedora:latest
+
+variables:
+  DEPS_COMMON: git libtool make python3 python3-six redhat-rpm-config
+               python3-pyparsing meson ninja-build gtk-doc glib2-devel
+               gettext gettext-devel bzip2
+
+before_script:
+- dnf install -y $DEPS_COMMON
+
+fedora-autotools:
+  script:
+    # Run with default options
+    - ./autogen.sh
+    - make
+    - make distcheck
+
+fedora-meson:
+  script:
+    - meson --buildtype=release build-default
+    - ninja -C build-default
+    - ninja -C build-default dist
commit 2256fbe8f6577f0ab91eb93010ff52791ff94c67
Author: Victor Toso <me at victortoso.com>
Date:   Wed Apr 10 10:04:30 2019 +0000

    build-sys: automake: do not require NEWS and ChangeLog
    
    Following patches will rename NEWS to CHANGELOG.md due Gitlab
    integration and remove the currently empty ChangeLog.
    
    Signed-off-by: Victor Toso <victortoso at redhat.com>
    Acked-by: Eduardo Lima (Etrunko) <etrunko at redhat.com>

diff --git a/configure.ac b/configure.ac
index 22c6008..b56f414 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ AC_INIT(spice-protocol, [SPICE_MAJOR.SPICE_MINOR.SPICE_MICRO], [], spice-protoco
 AC_CONFIG_MACRO_DIR([m4])
 AM_CONFIG_HEADER([config.h])
 
-AM_INIT_AUTOMAKE([dist-bzip2])
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
 AM_MAINTAINER_MODE
 
 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])


More information about the Spice-commits mailing list