public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jonathan Vasquez" <fearedbliss@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/bliss-initramfs/
Date: Wed, 19 Apr 2017 01:45:37 +0000 (UTC)	[thread overview]
Message-ID: <1492566224.81eb110bc12d4c193258dbefe4445dc241261dc0.fearedbliss@gentoo> (raw)

commit:     81eb110bc12d4c193258dbefe4445dc241261dc0
Author:     Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 19 01:43:44 2017 +0000
Commit:     Jonathan Vasquez <fearedbliss <AT> gentoo <DOT> org>
CommitDate: Wed Apr 19 01:43:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81eb110b

sys-kernel/bliss-initramfs: ported ebuilds to python-single-r1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../bliss-initramfs-6.8.3-r2.ebuild                | 44 +++++++++++++++++++++
 .../bliss-initramfs-7.0.2-r1.ebuild                | 45 ++++++++++++++++++++++
 2 files changed, 89 insertions(+)

diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-6.8.3-r2.ebuild b/sys-kernel/bliss-initramfs/bliss-initramfs-6.8.3-r2.ebuild
new file mode 100644
index 00000000000..cee9e46df21
--- /dev/null
+++ b/sys-kernel/bliss-initramfs/bliss-initramfs-6.8.3-r2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5} )
+inherit python-single-r1
+
+GITHUB_USER="fearedbliss"
+GITHUB_REPO="bliss-initramfs"
+GITHUB_TAG="${PV}"
+
+DESCRIPTION="Boot your system's rootfs from ZFS, LVM, RAID, or a variety of other configs."
+HOMEPAGE="https://github.com/${GITHUB_USER}/${GITHUB_REPO}"
+SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/${GITHUB_TAG}.tar.gz -> ${P}.tar.gz"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="strip"
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-arch/cpio
+	virtual/udev"
+
+S="${WORKDIR}/${GITHUB_REPO}-${GITHUB_TAG}"
+
+src_install() {
+	# Copy the main executable
+	local executable="mkinitrd.py"
+	exeinto "/opt/${PN}"
+	doexe "${executable}"
+
+	# Copy the libraries required by this executable
+	cp -r "${S}/files" "${D}/opt/${PN}" || die
+	cp -r "${S}/pkg" "${D}/opt/${PN}" || die
+
+	# Copy documentation files
+	dodoc CHANGES README USAGE
+
+	# Make a symbolic link: /sbin/bliss-initramfs
+	dosym "/opt/${PN}/${executable}" "/sbin/${PN}"
+}

diff --git a/sys-kernel/bliss-initramfs/bliss-initramfs-7.0.2-r1.ebuild b/sys-kernel/bliss-initramfs/bliss-initramfs-7.0.2-r1.ebuild
new file mode 100644
index 00000000000..c772363314b
--- /dev/null
+++ b/sys-kernel/bliss-initramfs/bliss-initramfs-7.0.2-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5} )
+inherit python-single-r1
+
+GITHUB_USER="fearedbliss"
+GITHUB_REPO="bliss-initramfs"
+GITHUB_TAG="${PV}"
+
+DESCRIPTION="Boot your system's rootfs from ZFS, LVM, RAID, or a variety of other configs."
+HOMEPAGE="https://github.com/${GITHUB_USER}/${GITHUB_REPO}"
+SRC_URI="https://github.com/${GITHUB_USER}/${GITHUB_REPO}/archive/${GITHUB_TAG}.tar.gz -> ${P}.tar.gz"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+RESTRICT="strip"
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RDEPEND="
+	${PYTHON_DEPS}
+	app-arch/cpio
+	virtual/udev"
+
+S="${WORKDIR}/${GITHUB_REPO}-${GITHUB_TAG}"
+
+src_install() {
+	# Copy the main executable
+	local executable="mkinitrd.py"
+	exeinto "/opt/${PN}"
+	doexe "${executable}"
+
+	# Copy the libraries required by this executable
+	cp -r "${S}/files" "${D}/opt/${PN}" || die
+	cp -r "${S}/pkg" "${D}/opt/${PN}" || die
+
+	# Copy documentation files
+	dodoc README USAGE
+
+	# Make a symbolic link: /sbin/bliss-initramfs
+	dosym "/opt/${PN}/${executable}" "/sbin/${PN}"
+}


             reply	other threads:[~2017-04-19  1:45 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-19  1:45 Jonathan Vasquez [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-31  9:24 [gentoo-commits] repo/gentoo:master commit in: sys-kernel/bliss-initramfs/ Pacho Ramos
2023-05-03  5:20 Michał Górny
2022-04-17 19:17 Sam James
2021-12-26  0:20 Sam James
2021-05-24 18:52 Michał Górny
2020-09-20 13:25 Jonathan Vasquez
2020-09-06 20:29 Jonathan Vasquez
2020-09-03 16:38 Jonathan Vasquez
2020-09-03 16:38 Jonathan Vasquez
2020-07-18 16:35 Jonathan Vasquez
2020-07-18 16:35 Jonathan Vasquez
2020-07-18 16:35 Jonathan Vasquez
2020-07-18 16:35 Jonathan Vasquez
2020-07-13 23:52 Jonathan Vasquez
2020-07-13 15:10 Jonathan Vasquez
2020-02-23 22:10 Jonathan Vasquez
2020-02-11 14:11 Mikle Kolyada
2018-03-26  0:36 Jonathan Vasquez
2018-03-26  0:36 Jonathan Vasquez
2018-02-27  1:12 Jonathan Vasquez
2018-01-08 22:22 Jonathan Vasquez
2017-11-17 16:54 Jonathan Vasquez
2017-08-12 14:12 Jonathan Vasquez
2017-07-27 12:41 Jonathan Vasquez
2017-07-01 16:38 Jonathan Vasquez
2017-04-19  1:45 Jonathan Vasquez
2017-03-14 20:06 Jonathan Vasquez
2017-03-14 18:32 Jonathan Vasquez
2017-03-14 18:32 Jonathan Vasquez
2017-03-14 18:32 Jonathan Vasquez
2017-02-09 14:40 Jonathan Vasquez
2017-02-09 14:38 Jonathan Vasquez
2017-02-09 14:38 Jonathan Vasquez
2017-02-09 14:38 Jonathan Vasquez
2017-01-27  2:20 Jonathan Vasquez
2017-01-27  2:18 Jonathan Vasquez
2016-11-25 20:34 Jonathan Vasquez
2016-11-08  4:53 Jonathan Vasquez
2016-11-05 19:25 Jonathan Vasquez
2016-11-05 18:46 Jonathan Vasquez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1492566224.81eb110bc12d4c193258dbefe4445dc241261dc0.fearedbliss@gentoo \
    --to=fearedbliss@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox