Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/roswell/
Date: Thu, 01 Aug 2019 13:13:41
Message-Id: 1564665199.6b2e4dfcd97fc8d18a7796bfd44682c7235d7122.juippis@gentoo
1 commit: 6b2e4dfcd97fc8d18a7796bfd44682c7235d7122
2 Author: Danny YUE <sheepduke <AT> gmail <DOT> com>
3 AuthorDate: Thu Mar 14 14:51:26 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 1 13:13:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b2e4dfc
7
8 dev-lisp/roswell: Add roswell ebuild
9
10 Signed-off-by: YUE Daian <sheepduke <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/10684
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-lisp/roswell/Manifest | 1 +
15 dev-lisp/roswell/metadata.xml | 20 +++++++++++++++++++
16 dev-lisp/roswell/roswell-19.3.10.97.ebuild | 32 ++++++++++++++++++++++++++++++
17 3 files changed, 53 insertions(+)
18
19 diff --git a/dev-lisp/roswell/Manifest b/dev-lisp/roswell/Manifest
20 new file mode 100644
21 index 00000000000..8544f975e32
22 --- /dev/null
23 +++ b/dev-lisp/roswell/Manifest
24 @@ -0,0 +1 @@
25 +DIST roswell-19.3.10.97.tar.gz 159870 BLAKE2B 3a39f2606da3e45e752490eaba2b44f2dfc369c073e65d7556d078e6b6e4e1e620b24b5ef50375d01d5cd88a68c08825bf84b953965d1409f07ed2ba92ccf64c SHA512 53265610715dcc8d5b23d10e6dff18bf7e69fd4884e45741f9165647b6003f219e0a4b3ab21c9a5bb5dd3c72240aa6e0f091a4379c792d5ed40787fa382a71af
26
27 diff --git a/dev-lisp/roswell/metadata.xml b/dev-lisp/roswell/metadata.xml
28 new file mode 100644
29 index 00000000000..020c3a63528
30 --- /dev/null
31 +++ b/dev-lisp/roswell/metadata.xml
32 @@ -0,0 +1,20 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>sheepduke@×××××.com</email>
38 + <name>YUE Daian</name>
39 + </maintainer>
40 + <maintainer type="project">
41 + <email>proxy-maint@g.o</email>
42 + <name>Proxy Maintainers</name>
43 + </maintainer>
44 + <longdescription>
45 + Roswell is the de facto full-stack environment for Common Lisp
46 + development. It serves as a Lisp implementation installer, manager,
47 + launcher etc.
48 + </longdescription>
49 + <upstream>
50 + <remote-id type="github">roswell/roswell</remote-id>
51 + </upstream>
52 +</pkgmetadata>
53
54 diff --git a/dev-lisp/roswell/roswell-19.3.10.97.ebuild b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
55 new file mode 100644
56 index 00000000000..7c7198c265e
57 --- /dev/null
58 +++ b/dev-lisp/roswell/roswell-19.3.10.97.ebuild
59 @@ -0,0 +1,32 @@
60 +# Copyright 1999-2019 Gentoo Authors
61 +# Distributed under the terms of the GNU General Public License v2
62 +
63 +EAPI=7
64 +
65 +inherit autotools
66 +
67 +DESCRIPTION="A lisp installer and launcher for major environment"
68 +HOMEPAGE="https://github.com/roswell/roswell"
69 +SRC_URI="https://github.com/roswell/roswell/archive/v${PV}.tar.gz -> ${P}.tar.gz"
70 +
71 +SLOT="0"
72 +LICENSE="MIT"
73 +
74 +KEYWORDS="~amd64 ~x86"
75 +
76 +src_prepare() {
77 + default
78 + eautoreconf
79 +}
80 +
81 +src_compile() {
82 + emake -j1
83 +}
84 +
85 +src_test() {
86 + emake -j1 check
87 +}
88 +
89 +src_install() {
90 + emake DESTDIR="${D}" -j1 install
91 +}