Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-html5/
Date: Sat, 20 Apr 2019 23:27:17
Message-Id: 1555723935.96cd35d52dcff5e6b2a7280b8ed190638f5f18ac.prometheanfire@gentoo
1 commit: 96cd35d52dcff5e6b2a7280b8ed190638f5f18ac
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 20 01:28:45 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 20 01:32:15 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96cd35d5
7
8 app-emulation/spice-html5: adding for nova
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 app-emulation/spice-html5/Manifest | 1 +
14 app-emulation/spice-html5/metadata.xml | 15 ++++++++++++
15 app-emulation/spice-html5/spice-html5-0.2.1.ebuild | 28 ++++++++++++++++++++++
16 3 files changed, 44 insertions(+)
17
18 diff --git a/app-emulation/spice-html5/Manifest b/app-emulation/spice-html5/Manifest
19 new file mode 100644
20 index 00000000000..0d427219c72
21 --- /dev/null
22 +++ b/app-emulation/spice-html5/Manifest
23 @@ -0,0 +1 @@
24 +DIST spice-html5-spice-html5-0.2.1.tar.gz 486871 BLAKE2B 4b44ad772ab5abf13e8d3fe7c651169b340c8978f4163b9b679046efaa554f86d5919d154f16262ea28ddb512ac55ea7b6651ae63f64cf6b69033d8306191dc3 SHA512 c6e17aa465da1a0b882184bb19f2560f43fd3b345fdc00ec71774c7aec37c3453fd87b2448202011e217dda21b602d20dd4d552d49d9a52b64cb91aff092eff7
25
26 diff --git a/app-emulation/spice-html5/metadata.xml b/app-emulation/spice-html5/metadata.xml
27 new file mode 100644
28 index 00000000000..86afbba5af5
29 --- /dev/null
30 +++ b/app-emulation/spice-html5/metadata.xml
31 @@ -0,0 +1,15 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <maintainer type="person">
36 + <email>prometheanfire@g.o</email>
37 + <name>Matthew Thode</name>
38 + </maintainer>
39 + <maintainer type="project">
40 + <email>openstack@g.o</email>
41 + <name>Openstack</name>
42 + </maintainer>
43 + <longdescription lang="en">
44 + Spice Javascript client
45 + </longdescription>
46 +</pkgmetadata>
47
48 diff --git a/app-emulation/spice-html5/spice-html5-0.2.1.ebuild b/app-emulation/spice-html5/spice-html5-0.2.1.ebuild
49 new file mode 100644
50 index 00000000000..96b0048f7bd
51 --- /dev/null
52 +++ b/app-emulation/spice-html5/spice-html5-0.2.1.ebuild
53 @@ -0,0 +1,28 @@
54 +# Copyright 2019 Gentoo Authors
55 +# Distributed under the terms of the GNU General Public License v2
56 +
57 +EAPI=7
58 +
59 +DESCRIPTION="Spice Javascript client"
60 +HOMEPAGE="https://gitlab.freedesktop.org/spice/spice-html5"
61 +SRC_URI="https://gitlab.freedesktop.org/spice/${PN}/-/archive/${P}/${PN}-${P}.tar.gz"
62 +S="${WORKDIR}/${PN}-${P}"
63 +
64 +LICENSE="LGPL-3"
65 +SLOT="0"
66 +KEYWORDS="~amd64 ~arm64 ~x86"
67 +IUSE=""
68 +
69 +DEPEND=""
70 +RDEPEND="${DEPEND}"
71 +BDEPEND=""
72 +
73 +# no compiling
74 +src_compile() {
75 + true
76 +}
77 +
78 +src_install() {
79 + insinto /usr/share/spice-html5
80 + doins -r src apache.conf.sample spice.css spice.html spice_auto.html
81 +}