Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
Date: Sat, 05 May 2018 20:52:19
Message-Id: 1525553527.3332d95619388b245d7339789d5ea6c771e9f282.bman@gentoo
1 commit: 3332d95619388b245d7339789d5ea6c771e9f282
2 Author: Christopher Diaz Riveros <chrisadr <AT> gentoo <DOT> org>
3 AuthorDate: Sat May 5 16:06:48 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat May 5 20:52:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3332d956
7
8 app-admin/installer: new package
9
10 installer is a software designed to aid in the
11 Gentoo Linux installation process.
12 Closes: https://github.com/gentoo/gentoo/pull/8272
13
14 app-admin/installer/Manifest | 1 +
15 app-admin/installer/installer-0.1.1_beta.ebuild | 21 +++++++++++++++++++++
16 app-admin/installer/metadata.xml | 18 ++++++++++++++++++
17 3 files changed, 40 insertions(+)
18
19 diff --git a/app-admin/installer/Manifest b/app-admin/installer/Manifest
20 new file mode 100644
21 index 00000000000..a3228855dd0
22 --- /dev/null
23 +++ b/app-admin/installer/Manifest
24 @@ -0,0 +1 @@
25 +DIST installer-0.1.1_beta.tar.gz 49946 BLAKE2B 845df010036446e65479affc3d901fe114248130627ce76583c42adc9ecf9c0e2585600106c1559c8d3dac8c086553fed1d48d00002ede9e9be509fc98632662 SHA512 940272cefed17bd6c370fe26b2941da611cbd0aa8fb1c7f51bfaef483c7f9189f10754fb7e3d84dc099ac687f4644e24ae22e7ec09c41f39efba30d5743c9163
26
27 diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild b/app-admin/installer/installer-0.1.1_beta.ebuild
28 new file mode 100644
29 index 00000000000..0b585a450e7
30 --- /dev/null
31 +++ b/app-admin/installer/installer-0.1.1_beta.ebuild
32 @@ -0,0 +1,21 @@
33 +# Copyright 1999-2018 Gentoo Foundation
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +PYTHON_COMPAT=( python{3_4,3_5} )
38 +PYTHON_REQ_USE="ncurses(+)"
39 +
40 +inherit distutils-r1
41 +
42 +MY_PV=${PV/_/-}
43 +
44 +DESCRIPTION="A software for Gentoo installation"
45 +HOMEPAGE="https://github.com/ChrisADR/installer"
46 +SRC_URI="mirror://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
47 +
48 +SLOT="0"
49 +LICENSE="GPL-2"
50 +KEYWORDS="~amd64"
51 +
52 +S="${WORKDIR}/${PN}-${MY_PV}"
53 +DOCS=( README.md CONTRIBUTING.md )
54
55 diff --git a/app-admin/installer/metadata.xml b/app-admin/installer/metadata.xml
56 new file mode 100644
57 index 00000000000..b6fd5038e01
58 --- /dev/null
59 +++ b/app-admin/installer/metadata.xml
60 @@ -0,0 +1,18 @@
61 +<?xml version="1.0" encoding="UTF-8"?>
62 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
63 +<pkgmetadata>
64 + <maintainer type="person">
65 + <email>chrisadr@g.o</email>
66 + <name>Christopher Díaz Riveros</name>
67 + <description>Primary maintainer</description>
68 + </maintainer>
69 + <maintainer type="project">
70 + <email>proxy-maint@g.o</email>
71 + </maintainer>
72 + <longdescription>
73 + installer is designed to aid users during the installation
74 + process of Gentoo Linux. It is capable of walk a beginner
75 + user through the regular installation process following key
76 + topics from the Gentoo Handbook.
77 + </longdescription>
78 +</pkgmetadata>