commit: 3332d95619388b245d7339789d5ea6c771e9f282 Author: Christopher Diaz Riveros <chrisadr <AT> gentoo <DOT> org> AuthorDate: Sat May 5 16:06:48 2018 +0000 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org> CommitDate: Sat May 5 20:52:07 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3332d956
app-admin/installer: new package installer is a software designed to aid in the Gentoo Linux installation process. Closes: https://github.com/gentoo/gentoo/pull/8272 app-admin/installer/Manifest | 1 + app-admin/installer/installer-0.1.1_beta.ebuild | 21 +++++++++++++++++++++ app-admin/installer/metadata.xml | 18 ++++++++++++++++++ 3 files changed, 40 insertions(+) diff --git a/app-admin/installer/Manifest b/app-admin/installer/Manifest new file mode 100644 index 00000000000..a3228855dd0 --- /dev/null +++ b/app-admin/installer/Manifest @@ -0,0 +1 @@ +DIST installer-0.1.1_beta.tar.gz 49946 BLAKE2B 845df010036446e65479affc3d901fe114248130627ce76583c42adc9ecf9c0e2585600106c1559c8d3dac8c086553fed1d48d00002ede9e9be509fc98632662 SHA512 940272cefed17bd6c370fe26b2941da611cbd0aa8fb1c7f51bfaef483c7f9189f10754fb7e3d84dc099ac687f4644e24ae22e7ec09c41f39efba30d5743c9163 diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild b/app-admin/installer/installer-0.1.1_beta.ebuild new file mode 100644 index 00000000000..0b585a450e7 --- /dev/null +++ b/app-admin/installer/installer-0.1.1_beta.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{3_4,3_5} ) +PYTHON_REQ_USE="ncurses(+)" + +inherit distutils-r1 + +MY_PV=${PV/_/-} + +DESCRIPTION="A software for Gentoo installation" +HOMEPAGE="https://github.com/ChrisADR/installer" +SRC_URI="mirror://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64" + +S="${WORKDIR}/${PN}-${MY_PV}" +DOCS=( README.md CONTRIBUTING.md ) diff --git a/app-admin/installer/metadata.xml b/app-admin/installer/metadata.xml new file mode 100644 index 00000000000..b6fd5038e01 --- /dev/null +++ b/app-admin/installer/metadata.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Christopher Díaz Riveros</name> + <description>Primary maintainer</description> + </maintainer> + <maintainer type="project"> + <email>[email protected]</email> + </maintainer> + <longdescription> + installer is designed to aid users during the installation + process of Gentoo Linux. It is capable of walk a beginner + user through the regular installation process following key + topics from the Gentoo Handbook. + </longdescription> +</pkgmetadata>
