* [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
@ 2018-05-05 20:52 Aaron Bauman
0 siblings, 0 replies; 5+ messages in thread
From: Aaron Bauman @ 2018-05-05 20:52 UTC (permalink / raw
To: gentoo-commits
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>chrisadr@gentoo.org</email>
+ <name>Christopher Díaz Riveros</name>
+ <description>Primary maintainer</description>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</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>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
@ 2018-05-06 23:48 Aaron Bauman
0 siblings, 0 replies; 5+ messages in thread
From: Aaron Bauman @ 2018-05-06 23:48 UTC (permalink / raw
To: gentoo-commits
commit: 778050e47602b05e905c8975a080569449729601
Author: Christopher Diaz Riveros <chrisadr <AT> gentoo <DOT> org>
AuthorDate: Sun May 6 23:24:12 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 6 23:47:53 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778050e4
app-admin/installer: fix SRC_URI bug #655038
Fixes alert:
Couldn't download 'installer-0.1.1_beta.tar.gz'. Aborting.
Change SRC_URI to https: protocol instead of mirror:
Closes: https://github.com/gentoo/gentoo/pull/8293
app-admin/installer/installer-0.1.1_beta.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild b/app-admin/installer/installer-0.1.1_beta.ebuild
index 0b585a450e7..cf7c24cab88 100644
--- a/app-admin/installer/installer-0.1.1_beta.ebuild
+++ b/app-admin/installer/installer-0.1.1_beta.ebuild
@@ -11,7 +11,7 @@ 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"
+SRC_URI="https://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
@ 2018-05-23 2:33 Aaron Bauman
0 siblings, 0 replies; 5+ messages in thread
From: Aaron Bauman @ 2018-05-23 2:33 UTC (permalink / raw
To: gentoo-commits
commit: 5524a94fe7cf582e6e8a1881cbd0d177125c6d02
Author: Christopher Diaz Riveros <chrisadr <AT> gentoo <DOT> org>
AuthorDate: Wed May 23 02:08:37 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed May 23 02:33:18 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5524a94f
app-admin/installer: Add 3_6 to PYTHON_COMPAT
Package-Manager: Portage-2.3.37, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/8527
app-admin/installer/installer-0.1.1_beta.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild b/app-admin/installer/installer-0.1.1_beta.ebuild
index cf7c24cab88..2a162d1aeaa 100644
--- a/app-admin/installer/installer-0.1.1_beta.ebuild
+++ b/app-admin/installer/installer-0.1.1_beta.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-PYTHON_COMPAT=( python{3_4,3_5} )
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
PYTHON_REQ_USE="ncurses(+)"
inherit distutils-r1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
@ 2018-05-24 14:31 Agostino Sarubbo
0 siblings, 0 replies; 5+ messages in thread
From: Agostino Sarubbo @ 2018-05-24 14:31 UTC (permalink / raw
To: gentoo-commits
commit: 54b69f19a1b3a4295ae3e9afc93604b4d7c6a36c
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 24 14:28:42 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 24 14:28:42 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54b69f19
app-admin/installer: amd64 stable wrt bug #656304
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"
app-admin/installer/installer-0.1.1_beta.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/installer/installer-0.1.1_beta.ebuild b/app-admin/installer/installer-0.1.1_beta.ebuild
index 2a162d1aeaa..17bc218aa0e 100644
--- a/app-admin/installer/installer-0.1.1_beta.ebuild
+++ b/app-admin/installer/installer-0.1.1_beta.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/ChrisADR/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
S="${WORKDIR}/${PN}-${MY_PV}"
DOCS=( README.md CONTRIBUTING.md )
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/
@ 2019-09-02 12:29 Michał Górny
0 siblings, 0 replies; 5+ messages in thread
From: Michał Górny @ 2019-09-02 12:29 UTC (permalink / raw
To: gentoo-commits
commit: 54dcc603d7d10779a143339537929125ec127c01
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 2 12:28:48 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Sep 2 12:29:12 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54dcc603
app-admin/installer: The maintainer is retiring
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-admin/installer/metadata.xml | 9 +--------
1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/app-admin/installer/metadata.xml b/app-admin/installer/metadata.xml
index b6fd5038e01..f846e48fd95 100644
--- a/app-admin/installer/metadata.xml
+++ b/app-admin/installer/metadata.xml
@@ -1,14 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>chrisadr@gentoo.org</email>
- <name>Christopher Díaz Riveros</name>
- <description>Primary maintainer</description>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- </maintainer>
+ <!-- maintainer-needed -->
<longdescription>
installer is designed to aid users during the installation
process of Gentoo Linux. It is capable of walk a beginner
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-09-02 12:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-24 14:31 [gentoo-commits] repo/gentoo:master commit in: app-admin/installer/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2019-09-02 12:29 Michał Górny
2018-05-23 2:33 Aaron Bauman
2018-05-06 23:48 Aaron Bauman
2018-05-05 20:52 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox