From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-906143-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2E99138330 for <garchives@archives.gentoo.org>; Wed, 12 Oct 2016 19:13:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6CEB4E0A41; Wed, 12 Oct 2016 19:13:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3A534E0A41 for <gentoo-commits@lists.gentoo.org>; Wed, 12 Oct 2016 19:13:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80AFD3413C7 for <gentoo-commits@lists.gentoo.org>; Wed, 12 Oct 2016 19:13:26 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9195B2F0 for <gentoo-commits@lists.gentoo.org>; Wed, 12 Oct 2016 19:13:24 +0000 (UTC) From: "Richard Farina" <zerochaos@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" <zerochaos@gentoo.org> Message-ID: <1476299536.5c01f7b02ef2d064d17f0ba921c91afdd93c7699.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lorax/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lorax/Manifest dev-util/lorax/lorax-26.0.ebuild dev-util/lorax/metadata.xml X-VCS-Directories: dev-util/lorax/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: 5c01f7b02ef2d064d17f0ba921c91afdd93c7699 X-VCS-Branch: master Date: Wed, 12 Oct 2016 19:13:24 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 7f182d8d-dfd8-4c73-bedd-538db6886cb6 X-Archives-Hash: 981fa4a79add6f5f8d586c7449979bd3 commit: 5c01f7b02ef2d064d17f0ba921c91afdd93c7699 Author: Zero_Chaos <zerochaos <AT> gentoo <DOT> org> AuthorDate: Wed Oct 12 19:11:54 2016 +0000 Commit: Richard Farina <zerochaos <AT> gentoo <DOT> org> CommitDate: Wed Oct 12 19:12:16 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c01f7b0 dev-util/lorax: I am the lorax and I speak for the trees! Also a tool that redhat uses for release engineering that has some very useful uefi tools which I intend to use Package-Manager: portage-2.3.1 dev-util/lorax/Manifest | 1 + dev-util/lorax/lorax-26.0.ebuild | 21 +++++++++++++++++++++ dev-util/lorax/metadata.xml | 10 ++++++++++ 3 files changed, 32 insertions(+) diff --git a/dev-util/lorax/Manifest b/dev-util/lorax/Manifest new file mode 100644 index 00000000..a3c960e --- /dev/null +++ b/dev-util/lorax/Manifest @@ -0,0 +1 @@ +DIST lorax-26.0-1.tar.gz 2481389 SHA256 984c7ad3c863a3f600400a2798a4688aebb98aaedf35b19f2398908dc19c0734 SHA512 9d6b833f2cb8e23625c6cd69b69eb9156cb460ecae2634db065109d2e0fc0b0d7fb6648a0d260ff475a31276b63e7115d69b39dbc90def05147449bcd8a49c5b WHIRLPOOL dbfb5aab8e723a48fb08949209386f1824699371c3e172df08d8a7638735783e3cb24aa6a9659f79023172e2d32fe2b2e7df8a37a19a6f0f3512efcc356e0164 diff --git a/dev-util/lorax/lorax-26.0.ebuild b/dev-util/lorax/lorax-26.0.ebuild new file mode 100644 index 00000000..b051c1e --- /dev/null +++ b/dev-util/lorax/lorax-26.0.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +inherit distutils-r1 + +DESCRIPTION="Redhat Tools for creating disk, filesystem, and iso images" +HOMEPAGE="https://github.com/rhinstaller/lorax" +SRC_URI="https://github.com/rhinstaller/lorax/archive/${P}-1.tar.gz -> ${P}-1.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}"/"${PN}-${P}-1" + +DEPEND="" +RDEPEND="${DEPEND}" diff --git a/dev-util/lorax/metadata.xml b/dev-util/lorax/metadata.xml new file mode 100644 index 00000000..f513208 --- /dev/null +++ b/dev-util/lorax/metadata.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>zerochaos@gentoo.org</email> + <name>Rick Farina</name> + </maintainer> + <longdescription lang="en"> + </longdescription> +</pkgmetadata>