Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/io-scheduler-udev-rules/
Date: Mon, 08 Apr 2019 21:26:42
Message-Id: 1554758778.92cc1af0b9bda6ce59aa51ffb37e5a954ae154a1.pacho@gentoo
1 commit: 92cc1af0b9bda6ce59aa51ffb37e5a954ae154a1
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 8 21:26:18 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 8 21:26:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92cc1af0
7
8 sys-block/io-scheduler-udev-rules: Alternative way to configure I/O schedulers
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 sys-block/io-scheduler-udev-rules/Manifest | 1 +
14 .../io-scheduler-udev-rules-0.ebuild | 25 ++++++++++++++++++++++
15 sys-block/io-scheduler-udev-rules/metadata.xml | 7 ++++++
16 3 files changed, 33 insertions(+)
17
18 diff --git a/sys-block/io-scheduler-udev-rules/Manifest b/sys-block/io-scheduler-udev-rules/Manifest
19 new file mode 100644
20 index 00000000000..c27802d020b
21 --- /dev/null
22 +++ b/sys-block/io-scheduler-udev-rules/Manifest
23 @@ -0,0 +1 @@
24 +DIST io-scheduler-udev-rules-0.tar.bz2 7465 BLAKE2B cc82d81081fd21ccc5714874b02d70206bcf40311070f916ee1312106687e0a8566a1a906e6660f6a508704814f667a58cf547bec54cc88bab4a070616ddb6ba SHA512 c68430a4a3ee78ec34947e225be911c0e61db83f2ae078e1ea21a9c0148c668c0ebbb0fe798c89b8ab14b414a4c6b2e2d77bd5b1abf800a21db0320971134f43
25
26 diff --git a/sys-block/io-scheduler-udev-rules/io-scheduler-udev-rules-0.ebuild b/sys-block/io-scheduler-udev-rules/io-scheduler-udev-rules-0.ebuild
27 new file mode 100644
28 index 00000000000..f30dece6dc0
29 --- /dev/null
30 +++ b/sys-block/io-scheduler-udev-rules/io-scheduler-udev-rules-0.ebuild
31 @@ -0,0 +1,25 @@
32 +# Copyright 2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +inherit udev
37 +
38 +DESCRIPTION="Udev rules to allow easier customization of kernel I/O schedulers"
39 +HOMEPAGE="https://gitlab.com/pachoramos/io-scheduler-udev-rules"
40 +SRC_URI="https://gitlab.com/pachoramos/${PN}/-/archive/${PV}/${P}.tar.bz2"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND=""
48 +RDEPEND=""
49 +BDEPEND=""
50 +
51 +src_install() {
52 + insinto /etc/default
53 + doins etc/default/io-scheduler
54 + udev_dorules udev/rules.d/60-io-scheduler.rules
55 + einstalldocs
56 +}
57
58 diff --git a/sys-block/io-scheduler-udev-rules/metadata.xml b/sys-block/io-scheduler-udev-rules/metadata.xml
59 new file mode 100644
60 index 00000000000..020b40648ee
61 --- /dev/null
62 +++ b/sys-block/io-scheduler-udev-rules/metadata.xml
63 @@ -0,0 +1,7 @@
64 +<?xml version="1.0" encoding="UTF-8"?>
65 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
66 +<pkgmetadata>
67 + <maintainer type="person">
68 + <email>pacho@g.o</email>
69 + </maintainer>
70 +</pkgmetadata>