* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2015-09-01 18:25 Jauhien Piatlicki
0 siblings, 0 replies; 36+ messages in thread
From: Jauhien Piatlicki @ 2015-09-01 18:25 UTC (permalink / raw
To: gentoo-commits
commit: 5a9daf5acbe1add25c42fa5528c177c1c883b0da
Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 1 18:27:00 2015 +0000
Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
CommitDate: Tue Sep 1 18:28:01 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9daf5a
sys-block/zram-init: version bump, sync with mv overlay
Package-Manager: portage-2.2.20.1
sys-block/zram-init/Manifest | 1 +
sys-block/zram-init/zram-init-3.4.ebuild | 52 ++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index f788715..a3e881d 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,2 +1,3 @@
DIST zram-init-2.7.tar.gz 4821 SHA256 205765243bd36bf62c471363c4fddf8173275d37f5f919716b5b71afea0fe94d SHA512 db8dc5580b8405752d58996e5927573b687795b598c94948ccc51d038f7c7dfc47b64651d9554c1807d8f6453498c3f1efe6f2d34b82eb6b1df2d8f7e84980a5 WHIRLPOOL 1c677453567836db416b933e675df9c30f61797f8c5d32570693372df85729798aa3aa056dbee78ca5a3cf2a44c80ce4f8f54481751f35e03e01dbb0679dfc79
DIST zram-init-3.0.tar.gz 5578 SHA256 a1b4bf7f90497a44388f349c3c766e13e575ff7b52168f74058e9b352244b71a SHA512 f962aaa9c5d7f8f7566e9e405de4709fcfd0b659c7dcf79008ca5b7b18ab44545f363e8a695bfff07068e0889ec79ce54af578493f82be3848ca306865d6555a WHIRLPOOL 6304d5192b81490e33962e3162f18729e5a8438bb3f10b90744045014c3ef91a18c2a65538b97f02811cc793d88fb7eddc7efa3129c3b150e70cddfb3694305f
+DIST zram-init-3.4.tar.gz 5825 SHA256 39e121d209a03a29f98bbb0be47ce666bf6c0ef7185af30f118976fbe68a8788 SHA512 985cbe5dd63c900ce88bf8f8989bc04f982b27104dbc40e9c4cf504310aca335efafba842d801e0b9250e8b6925d063bcd2c555122fc7c7295128687ccd4080f WHIRLPOOL 086426e0f334c500f9dc65273afad1acdbd7696882cd0a9f54f7b27fac347777f8dea0899a2719626648da9dee1c837f6f3ccebd8cf1e1c9dc550624c2eb9416
diff --git a/sys-block/zram-init/zram-init-3.4.ebuild b/sys-block/zram-init/zram-init-3.4.ebuild
new file mode 100644
index 0000000..1146afa
--- /dev/null
+++ b/sys-block/zram-init/zram-init-3.4.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils linux-info readme.gentoo systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ epatch_user
+}
+
+src_install() {
+ dosbin sbin/*
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+ if kernel_is -lt 3 15 ; then
+ ewarn "Your kernel version is ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}"
+ ewarn "sys-block/zram-init default config starting from version 3.0"
+ ewarn "requires a kernel >= 3.15.0."
+ ewarn "Make sure you have edited it, so it uses only functions"
+ ewarn "available for your kernel version (bug 525302)."
+ fi
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-01-01 21:28 Jauhien Piatlicki
0 siblings, 0 replies; 36+ messages in thread
From: Jauhien Piatlicki @ 2016-01-01 21:28 UTC (permalink / raw
To: gentoo-commits
commit: 4f18181e42b159d872fe574b77085f4fe0a06717
Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 1 21:24:43 2016 +0000
Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
CommitDate: Fri Jan 1 21:26:35 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f18181e
sys-block/zram-init: version bump, sync with mv overlay
Package-Manager: portage-2.2.26
sys-block/zram-init/Manifest | 1 +
sys-block/zram-init/zram-init-3.6.ebuild | 47 ++++++++++++++++++++++++++++++++
2 files changed, 48 insertions(+)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index a3e881d..f3aa8ce 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,3 +1,4 @@
DIST zram-init-2.7.tar.gz 4821 SHA256 205765243bd36bf62c471363c4fddf8173275d37f5f919716b5b71afea0fe94d SHA512 db8dc5580b8405752d58996e5927573b687795b598c94948ccc51d038f7c7dfc47b64651d9554c1807d8f6453498c3f1efe6f2d34b82eb6b1df2d8f7e84980a5 WHIRLPOOL 1c677453567836db416b933e675df9c30f61797f8c5d32570693372df85729798aa3aa056dbee78ca5a3cf2a44c80ce4f8f54481751f35e03e01dbb0679dfc79
DIST zram-init-3.0.tar.gz 5578 SHA256 a1b4bf7f90497a44388f349c3c766e13e575ff7b52168f74058e9b352244b71a SHA512 f962aaa9c5d7f8f7566e9e405de4709fcfd0b659c7dcf79008ca5b7b18ab44545f363e8a695bfff07068e0889ec79ce54af578493f82be3848ca306865d6555a WHIRLPOOL 6304d5192b81490e33962e3162f18729e5a8438bb3f10b90744045014c3ef91a18c2a65538b97f02811cc793d88fb7eddc7efa3129c3b150e70cddfb3694305f
DIST zram-init-3.4.tar.gz 5825 SHA256 39e121d209a03a29f98bbb0be47ce666bf6c0ef7185af30f118976fbe68a8788 SHA512 985cbe5dd63c900ce88bf8f8989bc04f982b27104dbc40e9c4cf504310aca335efafba842d801e0b9250e8b6925d063bcd2c555122fc7c7295128687ccd4080f WHIRLPOOL 086426e0f334c500f9dc65273afad1acdbd7696882cd0a9f54f7b27fac347777f8dea0899a2719626648da9dee1c837f6f3ccebd8cf1e1c9dc550624c2eb9416
+DIST zram-init-3.6.tar.gz 6207 SHA256 cfd611395ffd808108921059a93db7c84c80b3ecbfcd92bbc17d450519189e1d SHA512 535104beca6de225aeb482ebb7a01a2498c841784a68d60e8e09f04ab193e6a8ae3ea55797308c89d54f3ce66bdac3f8c535059561ea6ccf848582c594b7f667 WHIRLPOOL 6cac97687f121d307992420f4fd71cefe76bae13bf9541b0ff803ad91b3ce7479229a640fb9c8eb5a37f9e9dff63e32abc0c708c586b10aa74c330b2607642d5
diff --git a/sys-block/zram-init/zram-init-3.6.ebuild b/sys-block/zram-init/zram-init-3.6.ebuild
new file mode 100644
index 0000000..ab1468e
--- /dev/null
+++ b/sys-block/zram-init/zram-init-3.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+RESTRICT="mirror"
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ eapply_user
+}
+
+src_install() {
+ dosbin sbin/*
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-01-24 18:34 Jauhien Piatlicki
0 siblings, 0 replies; 36+ messages in thread
From: Jauhien Piatlicki @ 2016-01-24 18:34 UTC (permalink / raw
To: gentoo-commits
commit: 31330aa766861ee7852fd927f780bb56c94d1643
Author: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 18:35:05 2016 +0000
Commit: Jauhien Piatlicki <jauhien <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 18:36:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31330aa7
sys-block/zram-init: remove RESTRICT=mirror
Gentoo-Bug: 572740
Thanks to Jeroen Roovers
Package-Manager: portage-2.2.26
sys-block/zram-init/zram-init-3.6.ebuild | 1 -
1 file changed, 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-3.6.ebuild b/sys-block/zram-init/zram-init-3.6.ebuild
index ab1468e..665d820 100644
--- a/sys-block/zram-init/zram-init-3.6.ebuild
+++ b/sys-block/zram-init/zram-init-3.6.ebuild
@@ -3,7 +3,6 @@
# $Id$
EAPI=6
-RESTRICT="mirror"
inherit readme.gentoo-r1 systemd
DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-03-04 3:16 Stephen Klimaszewski
0 siblings, 0 replies; 36+ messages in thread
From: Stephen Klimaszewski @ 2016-03-04 3:16 UTC (permalink / raw
To: gentoo-commits
commit: efbbbd06be351445fe1ddd2cee0d22713307aac8
Author: Steev Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 4 03:15:40 2016 +0000
Commit: Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Fri Mar 4 03:16:11 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efbbbd06
sys-block/zram-init: Keyword 2.7-r1 for ~arm64
Tested on Cortex-A53.
The vendor kernel for the ODROID-C2 is 3.14 based, so this is the only version that can be tested, which is why not all versions are keyworded.
Package-Manager: portage-2.2.27
sys-block/zram-init/zram-init-2.7-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-2.7-r1.ebuild b/sys-block/zram-init/zram-init-2.7-r1.ebuild
index 6f2cf7a..659c9ed 100644
--- a/sys-block/zram-init/zram-init-2.7-r1.ebuild
+++ b/sys-block/zram-init/zram-init-2.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
DISABLE_AUTOFORMATTING="true"
DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-08-07 8:28 Pacho Ramos
0 siblings, 0 replies; 36+ messages in thread
From: Pacho Ramos @ 2016-08-07 8:28 UTC (permalink / raw
To: gentoo-commits
commit: 180bf26c0e51399aa8b89fbc5c117b3b35d2ba28
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 7 08:18:39 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Aug 7 08:18:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=180bf26c
sys-block/zram-init: Cleanup per bug #498492
Package-Manager: portage-2.3.0
sys-block/zram-init/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sys-block/zram-init/metadata.xml b/sys-block/zram-init/metadata.xml
index 8ba6cde..2585f70 100644
--- a/sys-block/zram-init/metadata.xml
+++ b/sys-block/zram-init/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>jauhien@gentoo.org</email>
- <name>Jauhien Piatlicki</name>
- </maintainer>
<upstream>
<remote-id type="github">vaeth/zram-init</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-08-10 12:01 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2016-08-10 12:01 UTC (permalink / raw
To: gentoo-commits
commit: 79198b2445c5b6a89a40b19054af7807ec065188
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 11:42:28 2016 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 12:00:37 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79198b24
sys-block/zram-init: add myself as maintainer
Package-Manager: portage-2.2.28
sys-block/zram-init/metadata.xml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/sys-block/zram-init/metadata.xml b/sys-block/zram-init/metadata.xml
index 2585f70..fdbc0f6 100644
--- a/sys-block/zram-init/metadata.xml
+++ b/sys-block/zram-init/metadata.xml
@@ -1,6 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <maintainer type="person">
+ <email>perfinion@gentoo.org</email>
+ <name>Jason Zaman</name>
+ </maintainer>
+
<upstream>
<remote-id type="github">vaeth/zram-init</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2016-08-10 12:01 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2016-08-10 12:01 UTC (permalink / raw
To: gentoo-commits
commit: 51116fa2944f0fb872cd635086cee015e175c890
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 10 11:59:17 2016 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Wed Aug 10 12:00:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51116fa2
sys-block/zram-init: bump to 3.8
Package-Manager: portage-2.2.28
sys-block/zram-init/Manifest | 1 +
sys-block/zram-init/zram-init-3.8.ebuild | 46 ++++++++++++++++++++++++++++++++
2 files changed, 47 insertions(+)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index f3aa8ce..7593acc 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -2,3 +2,4 @@ DIST zram-init-2.7.tar.gz 4821 SHA256 205765243bd36bf62c471363c4fddf8173275d37f5
DIST zram-init-3.0.tar.gz 5578 SHA256 a1b4bf7f90497a44388f349c3c766e13e575ff7b52168f74058e9b352244b71a SHA512 f962aaa9c5d7f8f7566e9e405de4709fcfd0b659c7dcf79008ca5b7b18ab44545f363e8a695bfff07068e0889ec79ce54af578493f82be3848ca306865d6555a WHIRLPOOL 6304d5192b81490e33962e3162f18729e5a8438bb3f10b90744045014c3ef91a18c2a65538b97f02811cc793d88fb7eddc7efa3129c3b150e70cddfb3694305f
DIST zram-init-3.4.tar.gz 5825 SHA256 39e121d209a03a29f98bbb0be47ce666bf6c0ef7185af30f118976fbe68a8788 SHA512 985cbe5dd63c900ce88bf8f8989bc04f982b27104dbc40e9c4cf504310aca335efafba842d801e0b9250e8b6925d063bcd2c555122fc7c7295128687ccd4080f WHIRLPOOL 086426e0f334c500f9dc65273afad1acdbd7696882cd0a9f54f7b27fac347777f8dea0899a2719626648da9dee1c837f6f3ccebd8cf1e1c9dc550624c2eb9416
DIST zram-init-3.6.tar.gz 6207 SHA256 cfd611395ffd808108921059a93db7c84c80b3ecbfcd92bbc17d450519189e1d SHA512 535104beca6de225aeb482ebb7a01a2498c841784a68d60e8e09f04ab193e6a8ae3ea55797308c89d54f3ce66bdac3f8c535059561ea6ccf848582c594b7f667 WHIRLPOOL 6cac97687f121d307992420f4fd71cefe76bae13bf9541b0ff803ad91b3ce7479229a640fb9c8eb5a37f9e9dff63e32abc0c708c586b10aa74c330b2607642d5
+DIST zram-init-3.8.tar.gz 6619 SHA256 4a43c424739dda6c4ffe62b5431b6fb1f476afd9f8b9b9149eb32314cd34a3a6 SHA512 c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f WHIRLPOOL e4fdcdd49c8eb5eb74faa0200af7fa1db5e6e0128a531d9b4a1e02d57ced03c36bce00313e6ddc6de16c9fc6bac25b0f803f3160c20029bdaa4d3558f00124f6
diff --git a/sys-block/zram-init/zram-init-3.8.ebuild b/sys-block/zram-init/zram-init-3.8.ebuild
new file mode 100644
index 0000000..665d820
--- /dev/null
+++ b/sys-block/zram-init/zram-init-3.8.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ eapply_user
+}
+
+src_install() {
+ dosbin sbin/*
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2017-05-24 8:00 Michael Weber
0 siblings, 0 replies; 36+ messages in thread
From: Michael Weber @ 2017-05-24 8:00 UTC (permalink / raw
To: gentoo-commits
commit: 422931a9e50330fc38e2c6ae6265ba26f5341e0a
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed May 24 08:00:02 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed May 24 08:00:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422931a9
sys-block/zram-init: add ~arm64 keyword (bug 594204).
Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"
sys-block/zram-init/zram-init-3.0.ebuild | 4 ++--
sys-block/zram-init/zram-init-3.4.ebuild | 4 ++--
sys-block/zram-init/zram-init-3.6.ebuild | 4 ++--
sys-block/zram-init/zram-init-3.8.ebuild | 4 ++--
4 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/sys-block/zram-init/zram-init-3.0.ebuild b/sys-block/zram-init/zram-init-3.0.ebuild
index 46352cee825..8b70fde5356 100644
--- a/sys-block/zram-init/zram-init-3.0.ebuild
+++ b/sys-block/zram-init/zram-init-3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
DISABLE_AUTOFORMATTING="true"
DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
diff --git a/sys-block/zram-init/zram-init-3.4.ebuild b/sys-block/zram-init/zram-init-3.4.ebuild
index d63dbe5a46a..2b710a99600 100644
--- a/sys-block/zram-init/zram-init-3.4.ebuild
+++ b/sys-block/zram-init/zram-init-3.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13"
diff --git a/sys-block/zram-init/zram-init-3.6.ebuild b/sys-block/zram-init/zram-init-3.6.ebuild
index ec9841cab62..ffe264d34b1 100644
--- a/sys-block/zram-init/zram-init-3.6.ebuild
+++ b/sys-block/zram-init/zram-init-3.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13"
diff --git a/sys-block/zram-init/zram-init-3.8.ebuild b/sys-block/zram-init/zram-init-3.8.ebuild
index ec9841cab62..ffe264d34b1 100644
--- a/sys-block/zram-init/zram-init-3.8.ebuild
+++ b/sys-block/zram-init/zram-init-3.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2017-05-24 8:10 Michael Weber
0 siblings, 0 replies; 36+ messages in thread
From: Michael Weber @ 2017-05-24 8:10 UTC (permalink / raw
To: gentoo-commits
commit: 96f8f2a0e6786020a951b7dd446e8ae6a056f06f
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Wed May 24 08:08:09 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Wed May 24 08:08:09 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f8f2a0
sys-block/zram-init: add ~ppc keyword (bug 594204).
Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"
sys-block/zram-init/zram-init-3.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-3.8.ebuild b/sys-block/zram-init/zram-init-3.8.ebuild
index ffe264d34b1..37f6525fb9f 100644
--- a/sys-block/zram-init/zram-init-3.8.ebuild
+++ b/sys-block/zram-init/zram-init-3.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2017-10-09 14:44 Sergei Trofimovich
0 siblings, 0 replies; 36+ messages in thread
From: Sergei Trofimovich @ 2017-10-09 14:44 UTC (permalink / raw
To: gentoo-commits
commit: ce7525c42dec0dea89af6ee841b4659ea3613eb4
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 9 14:39:24 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Oct 9 14:44:38 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7525c4
sys-block/zram-init: keyworded 3.8 for ppc64, bug #633320 (thanks to ernsteiswuerfel)
Package-Manager: Portage-2.3.10, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"
sys-block/zram-init/zram-init-3.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-3.8.ebuild b/sys-block/zram-init/zram-init-3.8.ebuild
index 37f6525fb9f..5884a6fcbd0 100644
--- a/sys-block/zram-init/zram-init-3.8.ebuild
+++ b/sys-block/zram-init/zram-init-3.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
IUSE=""
RDEPEND="!<sys-apps/openrc-0.13"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2018-06-05 4:33 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2018-06-05 4:33 UTC (permalink / raw
To: gentoo-commits
commit: 88639a8b7164915a31a0dcea93518bcf78ee7ee9
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 5 04:21:41 2018 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Tue Jun 5 04:31:59 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88639a8b
sys-block/zram-init: bump 7.1
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-block/zram-init/Manifest | 1 +
sys-block/zram-init/zram-init-7.1.ebuild | 45 ++++++++++++++++++++++++++++++++
2 files changed, 46 insertions(+)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 114812cf695..9a78d829a8f 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -3,3 +3,4 @@ DIST zram-init-3.0.tar.gz 5578 BLAKE2B 980ae8a2df219d087e6a5ec0895b5b6c52b932079
DIST zram-init-3.4.tar.gz 5825 BLAKE2B aa4ec0f311a79f69b1954f469baf546733864e31dd457b7b406408a0d6a768176d37d2f1bed93f1d87696c41681555c8bb871f5432964da29d3782122f034743 SHA512 985cbe5dd63c900ce88bf8f8989bc04f982b27104dbc40e9c4cf504310aca335efafba842d801e0b9250e8b6925d063bcd2c555122fc7c7295128687ccd4080f
DIST zram-init-3.6.tar.gz 6207 BLAKE2B 13d97889495c19b03ec190168b71072bf6f5e1664e98708ebff0cd746d3b574c519124847dac67b81f05367b95972a08b841fd65cdd2b645ca1c4577278e5c4e SHA512 535104beca6de225aeb482ebb7a01a2498c841784a68d60e8e09f04ab193e6a8ae3ea55797308c89d54f3ce66bdac3f8c535059561ea6ccf848582c594b7f667
DIST zram-init-3.8.tar.gz 6619 BLAKE2B c22482a619e5b0137c2d3eb45babee82ff36778a32caaed959beaf6ed3683e0010ef42328f8c4db7956696ca9c6a80c9e676c9db7d533f7283832036203beb34 SHA512 c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f
+DIST zram-init-7.1.tar.gz 9054 BLAKE2B 70c1aee839db3c4599fa59a0ecda7bb7a905a18cbbd90872865f266364da0602bd6ada85c35d7da5f8e6f4c6f9da122abf01abd57080a0728d4314fc2ed03c0d SHA512 6a9a6568d1c439f941401cb5638645a034a3cb29aaafa0d7595ad19fe7c50296e72c6751393eaa5cd8877b0d2bd0376339fb0f596c9517f9b17d425cc9c5ed53
diff --git a/sys-block/zram-init/zram-init-7.1.ebuild b/sys-block/zram-init/zram-init-7.1.ebuild
new file mode 100644
index 00000000000..e27e24d952b
--- /dev/null
+++ b/sys-block/zram-init/zram-init-7.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="!<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ eapply_user
+}
+
+src_install() {
+ dosbin sbin/*
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2018-06-05 4:33 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2018-06-05 4:33 UTC (permalink / raw
To: gentoo-commits
commit: 2de3688ca1261fd3eb7af1b0dd1d76c5e048194d
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 5 04:23:46 2018 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Tue Jun 5 04:32:02 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2de3688c
sys-block/zram-init: drop old
Package-Manager: Portage-2.3.40, Repoman-2.3.9
sys-block/zram-init/Manifest | 4 ---
sys-block/zram-init/zram-init-2.7-r1.ebuild | 38 ---------------------
sys-block/zram-init/zram-init-3.0.ebuild | 48 ---------------------------
sys-block/zram-init/zram-init-3.4.ebuild | 51 -----------------------------
sys-block/zram-init/zram-init-3.6.ebuild | 45 -------------------------
5 files changed, 186 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 9a78d829a8f..8ddf1cc1b00 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,6 +1,2 @@
-DIST zram-init-2.7.tar.gz 4821 BLAKE2B d1dc1aac5537f92b868daa4b113bf5e68a990439c4aa71d9f48cf2a8637c2054d2b158d4107a608362da2f3c0daf6a957eaab75947f21fcfb93ff9201533a509 SHA512 db8dc5580b8405752d58996e5927573b687795b598c94948ccc51d038f7c7dfc47b64651d9554c1807d8f6453498c3f1efe6f2d34b82eb6b1df2d8f7e84980a5
-DIST zram-init-3.0.tar.gz 5578 BLAKE2B 980ae8a2df219d087e6a5ec0895b5b6c52b9320793a296e9f3582931b92afd226da2083b4f625423c951125d4587b86482407ed4413b1f0dea8a47ed3a02246f SHA512 f962aaa9c5d7f8f7566e9e405de4709fcfd0b659c7dcf79008ca5b7b18ab44545f363e8a695bfff07068e0889ec79ce54af578493f82be3848ca306865d6555a
-DIST zram-init-3.4.tar.gz 5825 BLAKE2B aa4ec0f311a79f69b1954f469baf546733864e31dd457b7b406408a0d6a768176d37d2f1bed93f1d87696c41681555c8bb871f5432964da29d3782122f034743 SHA512 985cbe5dd63c900ce88bf8f8989bc04f982b27104dbc40e9c4cf504310aca335efafba842d801e0b9250e8b6925d063bcd2c555122fc7c7295128687ccd4080f
-DIST zram-init-3.6.tar.gz 6207 BLAKE2B 13d97889495c19b03ec190168b71072bf6f5e1664e98708ebff0cd746d3b574c519124847dac67b81f05367b95972a08b841fd65cdd2b645ca1c4577278e5c4e SHA512 535104beca6de225aeb482ebb7a01a2498c841784a68d60e8e09f04ab193e6a8ae3ea55797308c89d54f3ce66bdac3f8c535059561ea6ccf848582c594b7f667
DIST zram-init-3.8.tar.gz 6619 BLAKE2B c22482a619e5b0137c2d3eb45babee82ff36778a32caaed959beaf6ed3683e0010ef42328f8c4db7956696ca9c6a80c9e676c9db7d533f7283832036203beb34 SHA512 c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f
DIST zram-init-7.1.tar.gz 9054 BLAKE2B 70c1aee839db3c4599fa59a0ecda7bb7a905a18cbbd90872865f266364da0602bd6ada85c35d7da5f8e6f4c6f9da122abf01abd57080a0728d4314fc2ed03c0d SHA512 6a9a6568d1c439f941401cb5638645a034a3cb29aaafa0d7595ad19fe7c50296e72c6751393eaa5cd8877b0d2bd0376339fb0f596c9517f9b17d425cc9c5ed53
diff --git a/sys-block/zram-init/zram-init-2.7-r1.ebuild b/sys-block/zram-init/zram-init-2.7-r1.ebuild
deleted file mode 100644
index 17216d168a8..00000000000
--- a/sys-block/zram-init/zram-init-2.7-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils readme.gentoo systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- epatch_user
-}
-
-src_install() {
- dosbin sbin/*
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- readme.gentoo_create_doc
-}
diff --git a/sys-block/zram-init/zram-init-3.0.ebuild b/sys-block/zram-init/zram-init-3.0.ebuild
deleted file mode 100644
index 8b70fde5356..00000000000
--- a/sys-block/zram-init/zram-init-3.0.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info readme.gentoo systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- epatch_user
-}
-
-src_install() {
- dosbin sbin/*
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- if kernel_is -lt 3 15 ; then
- ewarn "Your kernel version is ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}"
- ewarn "sys-block/zram-init default config starting from version 3.0"
- ewarn "requires a kernel >= 3.15.0."
- ewarn "Make sure you have edited it, so it uses only functions"
- ewarn "available for your kernel version (bug 525302)."
- fi
-}
diff --git a/sys-block/zram-init/zram-init-3.4.ebuild b/sys-block/zram-init/zram-init-3.4.ebuild
deleted file mode 100644
index 2b710a99600..00000000000
--- a/sys-block/zram-init/zram-init-3.4.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info readme.gentoo systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="!<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- epatch_user
-}
-
-src_install() {
- dosbin sbin/*
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- if kernel_is -lt 3 15 ; then
- ewarn "Your kernel version is ${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}"
- ewarn "sys-block/zram-init default config starting from version 3.0"
- ewarn "requires a kernel >= 3.15.0."
- ewarn "Make sure you have edited it, so it uses only functions"
- ewarn "available for your kernel version (bug 525302)."
- fi
-}
diff --git a/sys-block/zram-init/zram-init-3.6.ebuild b/sys-block/zram-init/zram-init-3.6.ebuild
deleted file mode 100644
index ffe264d34b1..00000000000
--- a/sys-block/zram-init/zram-init-3.6.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE=""
-
-RDEPEND="!<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- eapply_user
-}
-
-src_install() {
- dosbin sbin/*
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2018-06-08 9:56 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2018-06-08 9:56 UTC (permalink / raw
To: gentoo-commits
commit: 99fe9fe295ed09cd4b0e88bad39314d48dcefe8f
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 8 08:19:30 2018 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Fri Jun 8 09:56:14 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99fe9fe2
sys-block/zram-init: install into /sbin
Closes: https://bugs.gentoo.org/657480
Package-Manager: Portage-2.3.40, Repoman-2.3.9
.../zram-init/{zram-init-7.1.ebuild => zram-init-7.1-r1.ebuild} | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/sys-block/zram-init/zram-init-7.1.ebuild b/sys-block/zram-init/zram-init-7.1-r1.ebuild
similarity index 91%
rename from sys-block/zram-init/zram-init-7.1.ebuild
rename to sys-block/zram-init/zram-init-7.1-r1.ebuild
index e27e24d952b..e3dedd90a01 100644
--- a/sys-block/zram-init/zram-init-7.1.ebuild
+++ b/sys-block/zram-init/zram-init-7.1-r1.ebuild
@@ -13,7 +13,8 @@ SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
IUSE=""
-RDEPEND="!<sys-apps/openrc-0.13"
+RDEPEND=">=app-shells/push-2.0
+ !<sys-apps/openrc-0.13"
DISABLE_AUTOFORMATTING="true"
DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
@@ -25,11 +26,10 @@ src_prepare() {
use prefix || sed -i \
-e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
-- sbin/* || die
- eapply_user
+ default
}
src_install() {
- dosbin sbin/*
doinitd openrc/init.d/*
doconfd openrc/conf.d/*
systemd_dounit systemd/system/*
@@ -37,7 +37,10 @@ src_install() {
doins modprobe.d/*
insinto /usr/share/zsh/site-functions
doins zsh/*
+ dodoc AUTHORS ChangeLog README.md
readme.gentoo_create_doc
+ into /
+ dosbin sbin/*
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2018-10-05 9:44 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2018-10-05 9:44 UTC (permalink / raw
To: gentoo-commits
commit: 5e07e98d7a7ae7434914ccaa03b891251099f60a
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 5 09:32:03 2018 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Fri Oct 5 09:44:32 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e07e98d
sys-block/zram-init: stable amd64 x86
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
sys-block/zram-init/zram-init-7.1-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-7.1-r1.ebuild b/sys-block/zram-init/zram-init-7.1-r1.ebuild
index e3dedd90a01..14b7900f485 100644
--- a/sys-block/zram-init/zram-init-7.1-r1.ebuild
+++ b/sys-block/zram-init/zram-init-7.1-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
IUSE=""
RDEPEND=">=app-shells/push-2.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-03-20 15:29 Craig Andrews
0 siblings, 0 replies; 36+ messages in thread
From: Craig Andrews @ 2019-03-20 15:29 UTC (permalink / raw
To: gentoo-commits
commit: b470a79e58cb2b630812ab8635dc7864d14b7b1a
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 19 18:39:34 2019 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 15:29:43 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b470a79e
sys-block/zram-init: -9999 live version
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
sys-block/zram-init/zram-init-9999.ebuild | 54 +++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
new file mode 100644
index 00000000000..2b9aa4db74d
--- /dev/null
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+RDEPEND=">=app-shells/push-2.0
+ !<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ default
+}
+
+src_install() {
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ dodoc AUTHORS ChangeLog README.md
+ readme.gentoo_create_doc
+ into /
+ dosbin sbin/*
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-03-20 15:29 Craig Andrews
0 siblings, 0 replies; 36+ messages in thread
From: Craig Andrews @ 2019-03-20 15:29 UTC (permalink / raw
To: gentoo-commits
commit: f8b26eb06c84b49e3aa40a0f37921ae779c7cbf8
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 19 18:38:48 2019 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Mar 20 15:29:32 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b26eb0
sys-block/zram-init: 8.1 version bump, EAPI=7
Closes: https://bugs.gentoo.org/663898
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
sys-block/zram-init/Manifest | 1 +
sys-block/zram-init/zram-init-8.1.ebuild | 54 ++++++++++++++++++++++++++++++++
2 files changed, 55 insertions(+)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 8ddf1cc1b00..7eacb8ce0fd 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,2 +1,3 @@
DIST zram-init-3.8.tar.gz 6619 BLAKE2B c22482a619e5b0137c2d3eb45babee82ff36778a32caaed959beaf6ed3683e0010ef42328f8c4db7956696ca9c6a80c9e676c9db7d533f7283832036203beb34 SHA512 c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f
DIST zram-init-7.1.tar.gz 9054 BLAKE2B 70c1aee839db3c4599fa59a0ecda7bb7a905a18cbbd90872865f266364da0602bd6ada85c35d7da5f8e6f4c6f9da122abf01abd57080a0728d4314fc2ed03c0d SHA512 6a9a6568d1c439f941401cb5638645a034a3cb29aaafa0d7595ad19fe7c50296e72c6751393eaa5cd8877b0d2bd0376339fb0f596c9517f9b17d425cc9c5ed53
+DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
new file mode 100644
index 00000000000..2b9aa4db74d
--- /dev/null
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit readme.gentoo-r1 systemd
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+if [[ ${PV} == *9999 ]] ; then
+ EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
+ inherit git-r3
+else
+ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+RDEPEND=">=app-shells/push-2.0
+ !<sys-apps/openrc-0.13"
+
+DISABLE_AUTOFORMATTING="true"
+DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
+ rc-config add zram default
+If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
+You might need to modify /etc/modprobe.d/zram.conf"
+
+src_prepare() {
+ use prefix || sed -i \
+ -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
+ -- sbin/* || die
+ default
+}
+
+src_install() {
+ doinitd openrc/init.d/*
+ doconfd openrc/conf.d/*
+ systemd_dounit systemd/system/*
+ insinto /etc/modprobe.d
+ doins modprobe.d/*
+ insinto /usr/share/zsh/site-functions
+ doins zsh/*
+ dodoc AUTHORS ChangeLog README.md
+ readme.gentoo_create_doc
+ into /
+ dosbin sbin/*
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-04-29 14:24 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2019-04-29 14:24 UTC (permalink / raw
To: gentoo-commits
commit: 8928deaa4eaae250ef4e0e35bbb59ab13f874f2d
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 13:48:44 2019 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 14:22:53 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8928deaa
sys-block/zram-init: drop old
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
sys-block/zram-init/Manifest | 2 --
sys-block/zram-init/zram-init-3.8.ebuild | 45 ---------------------------
sys-block/zram-init/zram-init-7.1-r1.ebuild | 48 -----------------------------
3 files changed, 95 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 7eacb8ce0fd..8963ed2869d 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,3 +1 @@
-DIST zram-init-3.8.tar.gz 6619 BLAKE2B c22482a619e5b0137c2d3eb45babee82ff36778a32caaed959beaf6ed3683e0010ef42328f8c4db7956696ca9c6a80c9e676c9db7d533f7283832036203beb34 SHA512 c083f34bba6031f8e247f61a1451343e14cc4bc5c4731ad3a32a5f0eea265936a83b27ad0e3cbd2ba0e05e2bec1e6ae739b6e4149d120dafbcc057437188f07f
-DIST zram-init-7.1.tar.gz 9054 BLAKE2B 70c1aee839db3c4599fa59a0ecda7bb7a905a18cbbd90872865f266364da0602bd6ada85c35d7da5f8e6f4c6f9da122abf01abd57080a0728d4314fc2ed03c0d SHA512 6a9a6568d1c439f941401cb5638645a034a3cb29aaafa0d7595ad19fe7c50296e72c6751393eaa5cd8877b0d2bd0376339fb0f596c9517f9b17d425cc9c5ed53
DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
diff --git a/sys-block/zram-init/zram-init-3.8.ebuild b/sys-block/zram-init/zram-init-3.8.ebuild
deleted file mode 100644
index 5884a6fcbd0..00000000000
--- a/sys-block/zram-init/zram-init-3.8.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="!<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- eapply_user
-}
-
-src_install() {
- dosbin sbin/*
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- readme.gentoo_create_doc
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/sys-block/zram-init/zram-init-7.1-r1.ebuild b/sys-block/zram-init/zram-init-7.1-r1.ebuild
deleted file mode 100644
index 14b7900f485..00000000000
--- a/sys-block/zram-init/zram-init-7.1-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
-IUSE=""
-
-RDEPEND=">=app-shells/push-2.0
- !<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- default
-}
-
-src_install() {
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- dodoc AUTHORS ChangeLog README.md
- readme.gentoo_create_doc
- into /
- dosbin sbin/*
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-04-29 14:24 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2019-04-29 14:24 UTC (permalink / raw
To: gentoo-commits
commit: be9d3f177dec1c3d6ec6f6f69818c3bf1377e3e3
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 29 13:47:50 2019 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Apr 29 14:22:51 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be9d3f17
sys-block/zram-init: stable 8.1
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11
sys-block/zram-init/zram-init-8.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
index 2b9aa4db74d..5b7cd477df6 100644
--- a/sys-block/zram-init/zram-init-8.1.ebuild
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
fi
RDEPEND=">=app-shells/push-2.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-07-18 13:06 Agostino Sarubbo
0 siblings, 0 replies; 36+ messages in thread
From: Agostino Sarubbo @ 2019-07-18 13:06 UTC (permalink / raw
To: gentoo-commits
commit: 31cae4a1b172675ee0a6520a304094357b5e018e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 13:06:31 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 13:06:31 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31cae4a1
sys-block/zram-init: ppc stable wrt bug #689900
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc"
sys-block/zram-init/zram-init-8.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
index 5b7cd477df6..4e486d3ad51 100644
--- a/sys-block/zram-init/zram-init-8.1.ebuild
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86"
+ KEYWORDS="amd64 ~arm64 ppc ~ppc64 x86"
fi
RDEPEND=">=app-shells/push-2.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2019-07-18 13:07 Agostino Sarubbo
0 siblings, 0 replies; 36+ messages in thread
From: Agostino Sarubbo @ 2019-07-18 13:07 UTC (permalink / raw
To: gentoo-commits
commit: 0923adc8062821becc32bb4d52a7d1684179fe60
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 18 13:07:37 2019 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jul 18 13:07:37 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0923adc8
sys-block/zram-init: ppc64 stable wrt bug #689900
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="ppc64"
sys-block/zram-init/zram-init-8.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
index 4e486d3ad51..8eb1a1f409a 100644
--- a/sys-block/zram-init/zram-init-8.1.ebuild
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64 ppc ~ppc64 x86"
+ KEYWORDS="amd64 ~arm64 ppc ppc64 x86"
fi
RDEPEND=">=app-shells/push-2.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2020-02-16 13:35 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2020-02-16 13:35 UTC (permalink / raw
To: gentoo-commits
commit: ccba6ee861c716a8e0ca1123a36ab2b1cf2ab1f6
Author: Felix Neumärker <xdch47 <AT> posteo <DOT> de>
AuthorDate: Fri Jan 17 22:41:51 2020 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 13:34:12 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccba6ee8
sys-block/zram-init: bump to 9.1 and fix push.sh reference
Closes: https://github.com/gentoo/gentoo/pull/14371
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Felix Neumärker <xdch47 <AT> posteo.de>
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
sys-block/zram-init/Manifest | 1 +
.../zram-init/{zram-init-9999.ebuild => zram-init-8.1-r1.ebuild} | 5 +++--
sys-block/zram-init/{zram-init-9999.ebuild => zram-init-9.1.ebuild} | 6 ++++--
sys-block/zram-init/zram-init-9999.ebuild | 6 ++++--
4 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 8963ed2869d..f0102627e4b 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1 +1,2 @@
DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
+DIST zram-init-9.1.tar.gz 11414 BLAKE2B d7f7d1fd49594882a043322b905c02ac9e1f6ea78a626fb35ab0939096a062ef384e759d62e2cc4a990946e124317d70a4325b145e38612ebad173752209fa55 SHA512 4e3c76a389d188df98479f3f70af28405144b065df60ba191777cbec88d9bfe94be472d94bbb16314c0eefd41d177105cba74b45d1f13e82a741ff21a4d69c6a
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-8.1-r1.ebuild
similarity index 89%
copy from sys-block/zram-init/zram-init-9999.ebuild
copy to sys-block/zram-init/zram-init-8.1-r1.ebuild
index 2b9aa4db74d..74cb80aa210 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-8.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -31,7 +31,8 @@ You might need to modify /etc/modprobe.d/zram.conf"
src_prepare() {
use prefix || sed -i \
-e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
+ -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
+ -- sbin/zram-init || die
default
}
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9.1.ebuild
similarity index 87%
copy from sys-block/zram-init/zram-init-9999.ebuild
copy to sys-block/zram-init/zram-init-9.1.ebuild
index 2b9aa4db74d..87a6d31eaf2 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -31,7 +31,8 @@ You might need to modify /etc/modprobe.d/zram.conf"
src_prepare() {
use prefix || sed -i \
-e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
+ -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
+ -- sbin/zram-init || die
default
}
@@ -47,6 +48,7 @@ src_install() {
readme.gentoo_create_doc
into /
dosbin sbin/*
+ doman man/${PN}.8
}
pkg_postinst() {
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index 2b9aa4db74d..87a6d31eaf2 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -31,7 +31,8 @@ You might need to modify /etc/modprobe.d/zram.conf"
src_prepare() {
use prefix || sed -i \
-e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
+ -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
+ -- sbin/zram-init || die
default
}
@@ -47,6 +48,7 @@ src_install() {
readme.gentoo_create_doc
into /
dosbin sbin/*
+ doman man/${PN}.8
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2020-10-26 16:57 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2020-10-26 16:57 UTC (permalink / raw
To: gentoo-commits
commit: fa40f39c92332e55c02c67a68ab4fee1b3f8cb82
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Mon Oct 26 10:34:41 2020 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 16:56:40 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa40f39c
sys-block/zram-init: adoption
Closes: https://github.com/gentoo/gentoo/pull/18039
Bug: https://bugs.gentoo.org/691120
Allowed-by: Jason Zaman <perfinion <AT> gentoo.org>
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.1
sys-block/zram-init/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sys-block/zram-init/metadata.xml b/sys-block/zram-init/metadata.xml
index fdbc0f6b02d..b8a5b3e6784 100644
--- a/sys-block/zram-init/metadata.xml
+++ b/sys-block/zram-init/metadata.xml
@@ -1,6 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
+ <maintainer type="person">
+ <email>beatussum@protonmail.com</email>
+ <name>Mattéo Rossillol‑‑Laruelle</name>
+ </maintainer>
<maintainer type="person">
<email>perfinion@gentoo.org</email>
<name>Jason Zaman</name>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2020-10-26 17:09 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2020-10-26 17:09 UTC (permalink / raw
To: gentoo-commits
commit: 109be7e6b9f524f6290b76e15f2b284c3ea43eb9
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Tue Jun 2 09:30:48 2020 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 17:09:28 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109be7e6
sys-block/zram-init: version bump
Closes: https://bugs.gentoo.org/732176
Closes: https://github.com/gentoo/gentoo/pull/16049
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
sys-block/zram-init/Manifest | 2 +-
sys-block/zram-init/metadata.xml | 7 ++-
sys-block/zram-init/zram-init-10.5.ebuild | 73 +++++++++++++++++++++++++++++
sys-block/zram-init/zram-init-9.1.ebuild | 56 ----------------------
sys-block/zram-init/zram-init-9999.ebuild | 77 +++++++++++++++++++------------
5 files changed, 127 insertions(+), 88 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index f0102627e4b..cc5be001e1a 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,2 +1,2 @@
+DIST zram-init-10.5.tar.gz 20496 BLAKE2B a28ba9e3813be7ca571ac033ca7b4bdf7c95624f9be72288d8478a2fffa950f7bb18fe865b9933fd209dabc705366af8f825fa7ee8a16be364e1d71c7062067c SHA512 97591549aa9b678b0b12efcc27136826c19b42cc0cf027a3f251843ef5678425568c9eb573d24661ce795eede1d136243fcccbf4dcd62e9d61eb7d775f84f1c1
DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
-DIST zram-init-9.1.tar.gz 11414 BLAKE2B d7f7d1fd49594882a043322b905c02ac9e1f6ea78a626fb35ab0939096a062ef384e759d62e2cc4a990946e124317d70a4325b145e38612ebad173752209fa55 SHA512 4e3c76a389d188df98479f3f70af28405144b065df60ba191777cbec88d9bfe94be472d94bbb16314c0eefd41d177105cba74b45d1f13e82a741ff21a4d69c6a
diff --git a/sys-block/zram-init/metadata.xml b/sys-block/zram-init/metadata.xml
index b8a5b3e6784..013ba527f06 100644
--- a/sys-block/zram-init/metadata.xml
+++ b/sys-block/zram-init/metadata.xml
@@ -9,8 +9,13 @@
<email>perfinion@gentoo.org</email>
<name>Jason Zaman</name>
</maintainer>
-
<upstream>
+ <maintainer status="active">
+ <name>Martin Väth</name>
+ <email>martin@mvath.de</email>
+ </maintainer>
+ <changelog>https://raw.githubusercontent.com/vaeth/zram-init/master/ChangeLog</changelog>
+ <bugs-to>https://github.com/vaeth/zram-init/issues/</bugs-to>
<remote-id type="github">vaeth/zram-init</remote-id>
</upstream>
</pkgmetadata>
diff --git a/sys-block/zram-init/zram-init-10.5.ebuild b/sys-block/zram-init/zram-init-10.5.ebuild
new file mode 100644
index 00000000000..adc7997651c
--- /dev/null
+++ b/sys-block/zram-init/zram-init-10.5.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit prefix readme.gentoo-r1
+
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zRAM"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
+
+if [[ ${PV} == *9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
+else
+ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+BDEPEND="sys-devel/gettext"
+
+RDEPEND="
+ >=app-shells/push-2.0
+ virtual/libintl
+ || ( sys-apps/openrc sys-apps/systemd )
+"
+
+DISABLE_AUTOFORMATTING=true
+DOC_CONTENTS="\
+To use zram-init, activate it in your kernel and add it to the default
+runlevel:
+ rc-update add zram-init default
+If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
+systemctl. You might need to modify the following file depending on the
+number of devices that you want to create:
+ ${EROOT}/etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zRAM device with OpenRC, you should add zram-init
+to the boot runlevel:
+ rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file
+for the services using \$TMPDIR the following line:
+ rc_need=\"zram-init\""
+
+src_prepare() {
+ default
+
+ hprefixify "${S}/man/${PN}.8"
+
+ hprefixify -e "s%(}|:)(/(usr/)?sbin)%\1${EPREFIX}\2%g" \
+ "${S}/sbin/${PN}.in"
+
+ hprefixify -e "s%( |=)(/tmp)%\1${EPREFIX}\2%g" \
+ "${S}/systemd/system"/* \
+ "${S}/openrc"/*/*
+}
+
+src_compile() {
+ emake PREFIX="${EPREFIX}/usr" MODIFY_SHEBANG=FALSE
+}
+
+src_install() {
+ einstalldocs
+ readme.gentoo_create_doc
+
+ emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
+ BINDIR="${ED}/sbin" install
+}
+
+pkg_postinst() {
+ readme.gentoo_print_elog
+}
diff --git a/sys-block/zram-init/zram-init-9.1.ebuild b/sys-block/zram-init/zram-init-9.1.ebuild
deleted file mode 100644
index 87a6d31eaf2..00000000000
--- a/sys-block/zram-init/zram-init-9.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-RDEPEND=">=app-shells/push-2.0
- !<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
- -- sbin/zram-init || die
- default
-}
-
-src_install() {
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- dodoc AUTHORS ChangeLog README.md
- readme.gentoo_create_doc
- into /
- dosbin sbin/*
- doman man/${PN}.8
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index 87a6d31eaf2..adc7997651c 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -2,53 +2,70 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit readme.gentoo-r1 systemd
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
+inherit prefix readme.gentoo-r1
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
+DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zRAM"
+HOMEPAGE="https://github.com/vaeth/zram-init/"
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
+if [[ ${PV} == *9999 ]]; then
inherit git-r3
+ EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
fi
-RDEPEND=">=app-shells/push-2.0
- !<sys-apps/openrc-0.13"
+LICENSE="GPL-2"
+SLOT="0"
+
+BDEPEND="sys-devel/gettext"
+
+RDEPEND="
+ >=app-shells/push-2.0
+ virtual/libintl
+ || ( sys-apps/openrc sys-apps/systemd )
+"
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
+DISABLE_AUTOFORMATTING=true
+DOC_CONTENTS="\
+To use zram-init, activate it in your kernel and add it to the default
+runlevel:
+ rc-update add zram-init default
+If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
+systemctl. You might need to modify the following file depending on the
+number of devices that you want to create:
+ ${EROOT}/etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zRAM device with OpenRC, you should add zram-init
+to the boot runlevel:
+ rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file
+for the services using \$TMPDIR the following line:
+ rc_need=\"zram-init\""
src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
- -- sbin/zram-init || die
default
+
+ hprefixify "${S}/man/${PN}.8"
+
+ hprefixify -e "s%(}|:)(/(usr/)?sbin)%\1${EPREFIX}\2%g" \
+ "${S}/sbin/${PN}.in"
+
+ hprefixify -e "s%( |=)(/tmp)%\1${EPREFIX}\2%g" \
+ "${S}/systemd/system"/* \
+ "${S}/openrc"/*/*
+}
+
+src_compile() {
+ emake PREFIX="${EPREFIX}/usr" MODIFY_SHEBANG=FALSE
}
src_install() {
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- dodoc AUTHORS ChangeLog README.md
+ einstalldocs
readme.gentoo_create_doc
- into /
- dosbin sbin/*
- doman man/${PN}.8
+
+ emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
+ BINDIR="${ED}/sbin" install
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2020-10-26 17:27 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2020-10-26 17:27 UTC (permalink / raw
To: gentoo-commits
commit: eb6daf8a46f5c32e87da3c610938666a8feab6fd
Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 26 17:26:36 2020 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 17:26:42 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb6daf8a
sys-block/zram-init: Fix repoman style issues
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
sys-block/zram-init/zram-init-10.5.ebuild | 19 +++++++++----------
sys-block/zram-init/zram-init-9999.ebuild | 19 +++++++++----------
2 files changed, 18 insertions(+), 20 deletions(-)
diff --git a/sys-block/zram-init/zram-init-10.5.ebuild b/sys-block/zram-init/zram-init-10.5.ebuild
index adc7997651c..c591f149b38 100644
--- a/sys-block/zram-init/zram-init-10.5.ebuild
+++ b/sys-block/zram-init/zram-init-10.5.ebuild
@@ -29,19 +29,18 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default
-runlevel:
- rc-update add zram-init default
-If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the
+To use zram-init, activate it in your kernel and add it to the default runlevel:
+ rc-update add zram-init default
+If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
+systemctl. You might need to modify the following file depending on the
number of devices that you want to create:
- ${EROOT}/etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zRAM device with OpenRC, you should add zram-init
+ /etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init
to the boot runlevel:
- rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file
+ rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file
for the services using \$TMPDIR the following line:
- rc_need=\"zram-init\""
+ rc_need=\"zram-init\""
src_prepare() {
default
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index adc7997651c..c591f149b38 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -29,19 +29,18 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default
-runlevel:
- rc-update add zram-init default
-If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the
+To use zram-init, activate it in your kernel and add it to the default runlevel:
+ rc-update add zram-init default
+If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
+systemctl. You might need to modify the following file depending on the
number of devices that you want to create:
- ${EROOT}/etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zRAM device with OpenRC, you should add zram-init
+ /etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init
to the boot runlevel:
- rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file
+ rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file
for the services using \$TMPDIR the following line:
- rc_need=\"zram-init\""
+ rc_need=\"zram-init\""
src_prepare() {
default
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2021-02-26 19:02 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2021-02-26 19:02 UTC (permalink / raw
To: gentoo-commits
commit: 2e2219152e34e9e2bdb17fc676323a6988b25ad0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 19:02:31 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 19:02:31 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e221915
sys-block/zram-init: Stabilize 8.1 arm64, #773109
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/zram-init-8.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
index 8eb1a1f409a..5b003d0c4a3 100644
--- a/sys-block/zram-init/zram-init-8.1.ebuild
+++ b/sys-block/zram-init/zram-init-8.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -16,7 +16,7 @@ if [[ ${PV} == *9999 ]] ; then
inherit git-r3
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm64 ppc ppc64 x86"
+ KEYWORDS="amd64 arm64 ppc ppc64 x86"
fi
RDEPEND=">=app-shells/push-2.0
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2021-03-04 4:24 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2021-03-04 4:24 UTC (permalink / raw
To: gentoo-commits
commit: 59c0fa1c3d9d035373c80c8f23ae5555f6d0a1f0
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 4 04:24:47 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 4 04:24:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c0fa1c
sys-block/zram-init: Keyword 10.5 arm, #773115
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/zram-init-10.5.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-10.5.ebuild b/sys-block/zram-init/zram-init-10.5.ebuild
index c591f149b38..505a3654394 100644
--- a/sys-block/zram-init/zram-init-10.5.ebuild
+++ b/sys-block/zram-init/zram-init-10.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2021-06-20 22:05 Jason Zaman
0 siblings, 0 replies; 36+ messages in thread
From: Jason Zaman @ 2021-06-20 22:05 UTC (permalink / raw
To: gentoo-commits
commit: 90df28b9f0653d914d9f5e498497a0be974ca212
Author: Marco Scardovi <marco <AT> scardovi <DOT> com>
AuthorDate: Thu Jun 17 18:56:02 2021 +0000
Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
CommitDate: Sun Jun 20 22:04:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90df28b9
sys-block/zram-init: bump to version 11.0
Closes: https://github.com/gentoo/gentoo/pull/18042
Closes: https://bugs.gentoo.org/787821
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco <AT> scardovi.com>
Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
sys-block/zram-init/Manifest | 1 +
...zram-init-9999.ebuild => zram-init-11.0.ebuild} | 25 ++++++++++------------
sys-block/zram-init/zram-init-9999.ebuild | 25 ++++++++++------------
3 files changed, 23 insertions(+), 28 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index cc5be001e1a..cbce8d6f025 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,2 +1,3 @@
DIST zram-init-10.5.tar.gz 20496 BLAKE2B a28ba9e3813be7ca571ac033ca7b4bdf7c95624f9be72288d8478a2fffa950f7bb18fe865b9933fd209dabc705366af8f825fa7ee8a16be364e1d71c7062067c SHA512 97591549aa9b678b0b12efcc27136826c19b42cc0cf027a3f251843ef5678425568c9eb573d24661ce795eede1d136243fcccbf4dcd62e9d61eb7d775f84f1c1
+DIST zram-init-11.0.tar.gz 21069 BLAKE2B f1a41cad3aad89bde2343a079e31d66de15d051c8431edc08999965993c6f894959289a01415259a93c8691dfec5316ebcb28d0a81844e985395ca5592654f12 SHA512 f11c7ad4e684701ab7c89cb1e859c6ee58ff6795f03b584884f64341d511a8c2de375fc43463318220fab2e16632807d8a13e9b6ac502fa933d406996bf4d115
DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-11.0.ebuild
similarity index 74%
copy from sys-block/zram-init/zram-init-9999.ebuild
copy to sys-block/zram-init/zram-init-11.0.ebuild
index c591f149b38..21f87df5e84 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-11.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
fi
@@ -29,18 +29,15 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default runlevel:
- rc-update add zram-init default
+To use zram-init, activate it in your kernel and add it to the default
+runlevel: rc-update add zram-init default
If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the
-number of devices that you want to create:
- /etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init
-to the boot runlevel:
- rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file
-for the services using \$TMPDIR the following line:
- rc_need=\"zram-init\""
+systemctl. You might need to modify the following file depending on the number
+of devices that you want to create: /etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init to
+the boot runlevel: rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file for
+the services using \$TMPDIR the following line: rc_need=\"zram-init\""
src_prepare() {
default
@@ -64,7 +61,7 @@ src_install() {
readme.gentoo_create_doc
emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" install
+ BINDIR="${ED}/sbin" SYSTEMDDIR="${ED}/lib/systemd/system" install
}
pkg_postinst() {
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index c591f149b38..21f87df5e84 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
fi
@@ -29,18 +29,15 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default runlevel:
- rc-update add zram-init default
+To use zram-init, activate it in your kernel and add it to the default
+runlevel: rc-update add zram-init default
If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the
-number of devices that you want to create:
- /etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init
-to the boot runlevel:
- rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file
-for the services using \$TMPDIR the following line:
- rc_need=\"zram-init\""
+systemctl. You might need to modify the following file depending on the number
+of devices that you want to create: /etc/modprobe.d/zram.conf.
+If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init to
+the boot runlevel: rc-update add zram-init boot
+Still for the same case, you should add in the OpenRC configuration file for
+the services using \$TMPDIR the following line: rc_need=\"zram-init\""
src_prepare() {
default
@@ -64,7 +61,7 @@ src_install() {
readme.gentoo_create_doc
emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" install
+ BINDIR="${ED}/sbin" SYSTEMDDIR="${ED}/lib/systemd/system" install
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2021-06-21 21:21 Marek Szuba
0 siblings, 0 replies; 36+ messages in thread
From: Marek Szuba @ 2021-06-21 21:21 UTC (permalink / raw
To: gentoo-commits
commit: ec5372da57aa45418c03581d5e465508036b48cb
Author: Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 21 21:20:41 2021 +0000
Commit: Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Mon Jun 21 21:21:47 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec5372da
sys-block/zram-init: keyword for ~riscv
Builds, installs and runs fine.
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>
sys-block/zram-init/zram-init-11.0.ebuild | 2 +-
sys-block/zram-init/zram-init-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-11.0.ebuild b/sys-block/zram-init/zram-init-11.0.ebuild
index 21f87df5e84..e6b8db2062e 100644
--- a/sys-block/zram-init/zram-init-11.0.ebuild
+++ b/sys-block/zram-init/zram-init-11.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index 21f87df5e84..e6b8db2062e 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2021-08-06 20:49 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2021-08-06 20:49 UTC (permalink / raw
To: gentoo-commits
commit: 1eaa55445274b56849bc3edc2f7c51920b32ee10
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 6 20:49:08 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 6 20:49:08 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eaa5544
sys-block/zram-init: Keyword 11.0 arm, #804330
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/zram-init-11.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-11.0.ebuild b/sys-block/zram-init/zram-init-11.0.ebuild
index e6b8db2062e..78ccfd943a5 100644
--- a/sys-block/zram-init/zram-init-11.0.ebuild
+++ b/sys-block/zram-init/zram-init-11.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2023-06-24 1:18 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-06-24 1:18 UTC (permalink / raw
To: gentoo-commits
commit: 1cc69b7de3d8bf222cf398e22432ec0dba61834a
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Wed Jun 21 19:31:35 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 01:13:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cc69b7d
sys-block/zram-init: mark ALLARCHES
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31566
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-block/zram-init/metadata.xml b/sys-block/zram-init/metadata.xml
index 22d5c4b7b609..99ae16ce1fab 100644
--- a/sys-block/zram-init/metadata.xml
+++ b/sys-block/zram-init/metadata.xml
@@ -9,6 +9,7 @@
<email>perfinion@gentoo.org</email>
<name>Jason Zaman</name>
</maintainer>
+ <stabilize-allarches/>
<upstream>
<maintainer status="active">
<name>Martin Väth</name>
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2023-06-24 1:18 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-06-24 1:18 UTC (permalink / raw
To: gentoo-commits
commit: 785ca73c91f26ac53fcff8d753f5569916877168
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Wed Jun 21 19:31:18 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 01:13:38 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785ca73c
sys-block/zram-init: add 11.1
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/Manifest | 1 +
...zram-init-9999.ebuild => zram-init-11.1.ebuild} | 23 +++++++++++++---------
sys-block/zram-init/zram-init-9999.ebuild | 23 +++++++++++++---------
3 files changed, 29 insertions(+), 18 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index cbce8d6f025f..0663bc8a1502 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,3 +1,4 @@
DIST zram-init-10.5.tar.gz 20496 BLAKE2B a28ba9e3813be7ca571ac033ca7b4bdf7c95624f9be72288d8478a2fffa950f7bb18fe865b9933fd209dabc705366af8f825fa7ee8a16be364e1d71c7062067c SHA512 97591549aa9b678b0b12efcc27136826c19b42cc0cf027a3f251843ef5678425568c9eb573d24661ce795eede1d136243fcccbf4dcd62e9d61eb7d775f84f1c1
DIST zram-init-11.0.tar.gz 21069 BLAKE2B f1a41cad3aad89bde2343a079e31d66de15d051c8431edc08999965993c6f894959289a01415259a93c8691dfec5316ebcb28d0a81844e985395ca5592654f12 SHA512 f11c7ad4e684701ab7c89cb1e859c6ee58ff6795f03b584884f64341d511a8c2de375fc43463318220fab2e16632807d8a13e9b6ac502fa933d406996bf4d115
+DIST zram-init-11.1.tar.gz 21117 BLAKE2B c6e99e9df97fe44b4081ce304dd2cd72fbdfa3c705f6cc02787df0376dd04a93cd8fbbf327c05f2f96ad8b6383f4c155e2859c0718c81a6bff50d0b91fb93322 SHA512 dcbfe9bb085e1bb1856f53fb5722fc008a8b7b8099423be174f02fcaa4093c19e24c33f08deeec9d1525b9512b7c5640c4ac396c60f7b6016b56edeb38a64285
DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-11.1.ebuild
similarity index 73%
copy from sys-block/zram-init/zram-init-9999.ebuild
copy to sys-block/zram-init/zram-init-11.1.ebuild
index e6b8db2062ea..8bf1b864bb46 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-11.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit prefix readme.gentoo-r1
@@ -12,12 +12,13 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
- SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
+RESTRICT="binchecks strip test"
BDEPEND="sys-devel/gettext"
@@ -30,14 +31,18 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
To use zram-init, activate it in your kernel and add it to the default
-runlevel: rc-update add zram-init default
+runlevel:
+ rc-update add zram-init default
If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
systemctl. You might need to modify the following file depending on the number
-of devices that you want to create: /etc/modprobe.d/zram.conf.
+of devices that you want to create:
+ /etc/modprobe.d/zram.conf.
If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init to
-the boot runlevel: rc-update add zram-init boot
+the boot runlevel:
+ rc-update add zram-init boot
Still for the same case, you should add in the OpenRC configuration file for
-the services using \$TMPDIR the following line: rc_need=\"zram-init\""
+the services using \$TMPDIR the following line:
+ rc_need=\"zram-init\""
src_prepare() {
default
@@ -60,8 +65,8 @@ src_install() {
einstalldocs
readme.gentoo_create_doc
- emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" SYSTEMDDIR="${ED}/lib/systemd/system" install
+ emake DESTDIR="${ED}" PREFIX="/usr" BINDIR="${ED}/sbin" SYSCONFDIR="/etc" \
+ SYSTEMDDIR="${ED}/lib/systemd/system" install
}
pkg_postinst() {
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index e6b8db2062ea..8bf1b864bb46 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
inherit prefix readme.gentoo-r1
@@ -12,12 +12,13 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
- SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+ SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
SLOT="0"
+RESTRICT="binchecks strip test"
BDEPEND="sys-devel/gettext"
@@ -30,14 +31,18 @@ RDEPEND="
DISABLE_AUTOFORMATTING=true
DOC_CONTENTS="\
To use zram-init, activate it in your kernel and add it to the default
-runlevel: rc-update add zram-init default
+runlevel:
+ rc-update add zram-init default
If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
systemctl. You might need to modify the following file depending on the number
-of devices that you want to create: /etc/modprobe.d/zram.conf.
+of devices that you want to create:
+ /etc/modprobe.d/zram.conf.
If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init to
-the boot runlevel: rc-update add zram-init boot
+the boot runlevel:
+ rc-update add zram-init boot
Still for the same case, you should add in the OpenRC configuration file for
-the services using \$TMPDIR the following line: rc_need=\"zram-init\""
+the services using \$TMPDIR the following line:
+ rc_need=\"zram-init\""
src_prepare() {
default
@@ -60,8 +65,8 @@ src_install() {
einstalldocs
readme.gentoo_create_doc
- emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" SYSTEMDDIR="${ED}/lib/systemd/system" install
+ emake DESTDIR="${ED}" PREFIX="/usr" BINDIR="${ED}/sbin" SYSCONFDIR="/etc" \
+ SYSTEMDDIR="${ED}/lib/systemd/system" install
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2023-06-24 1:18 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-06-24 1:18 UTC (permalink / raw
To: gentoo-commits
commit: 5cf6341f380a8e3f5a0f6a6692a2c3f93d1ceaa3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun 24 01:17:30 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun 24 01:17:30 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cf6341f
sys-block/zram-init: forward ~arm
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/zram-init-11.1.ebuild | 2 +-
sys-block/zram-init/zram-init-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-11.1.ebuild b/sys-block/zram-init/zram-init-11.1.ebuild
index 8bf1b864bb46..f8d4f93e9610 100644
--- a/sys-block/zram-init/zram-init-11.1.ebuild
+++ b/sys-block/zram-init/zram-init-11.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index 8bf1b864bb46..f8d4f93e9610 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2023-06-26 8:19 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-06-26 8:19 UTC (permalink / raw
To: gentoo-commits
commit: cca625246a9d977c2b24084fc85d16a7476d442c
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 26 08:18:31 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 26 08:18:31 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cca62524
sys-block/zram-init: Stabilize 11.1 ALLARCHES, #909149
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/zram-init-11.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-block/zram-init/zram-init-11.1.ebuild b/sys-block/zram-init/zram-init-11.1.ebuild
index f8d4f93e9610..5a98219d9bd6 100644
--- a/sys-block/zram-init/zram-init-11.1.ebuild
+++ b/sys-block/zram-init/zram-init-11.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+ KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2023-06-26 14:42 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2023-06-26 14:42 UTC (permalink / raw
To: gentoo-commits
commit: aff22017cd2b98313ceaf079a31ff7854c8cbdbd
Author: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail <DOT> com>
AuthorDate: Mon Jun 26 13:36:53 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 26 14:42:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aff22017
sys-block/zram-init: drop 8.1, 8.1-r1, 10.5, 11.0
Closes: https://bugs.gentoo.org/852959
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum <AT> protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31617
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-block/zram-init/Manifest | 3 --
sys-block/zram-init/zram-init-10.5.ebuild | 72 -----------------------------
sys-block/zram-init/zram-init-11.0.ebuild | 69 ---------------------------
sys-block/zram-init/zram-init-8.1-r1.ebuild | 55 ----------------------
sys-block/zram-init/zram-init-8.1.ebuild | 54 ----------------------
5 files changed, 253 deletions(-)
diff --git a/sys-block/zram-init/Manifest b/sys-block/zram-init/Manifest
index 0663bc8a1502..44b7b6381bf1 100644
--- a/sys-block/zram-init/Manifest
+++ b/sys-block/zram-init/Manifest
@@ -1,4 +1 @@
-DIST zram-init-10.5.tar.gz 20496 BLAKE2B a28ba9e3813be7ca571ac033ca7b4bdf7c95624f9be72288d8478a2fffa950f7bb18fe865b9933fd209dabc705366af8f825fa7ee8a16be364e1d71c7062067c SHA512 97591549aa9b678b0b12efcc27136826c19b42cc0cf027a3f251843ef5678425568c9eb573d24661ce795eede1d136243fcccbf4dcd62e9d61eb7d775f84f1c1
-DIST zram-init-11.0.tar.gz 21069 BLAKE2B f1a41cad3aad89bde2343a079e31d66de15d051c8431edc08999965993c6f894959289a01415259a93c8691dfec5316ebcb28d0a81844e985395ca5592654f12 SHA512 f11c7ad4e684701ab7c89cb1e859c6ee58ff6795f03b584884f64341d511a8c2de375fc43463318220fab2e16632807d8a13e9b6ac502fa933d406996bf4d115
DIST zram-init-11.1.tar.gz 21117 BLAKE2B c6e99e9df97fe44b4081ce304dd2cd72fbdfa3c705f6cc02787df0376dd04a93cd8fbbf327c05f2f96ad8b6383f4c155e2859c0718c81a6bff50d0b91fb93322 SHA512 dcbfe9bb085e1bb1856f53fb5722fc008a8b7b8099423be174f02fcaa4093c19e24c33f08deeec9d1525b9512b7c5640c4ac396c60f7b6016b56edeb38a64285
-DIST zram-init-8.1.tar.gz 9177 BLAKE2B 229a469aeeb0b22b80f48d946d4ff746c7bd5d7b58ea9290db0da011df6d618c7c55ad95810b0be74ff81350182057d9067e834ecba688eb4ffa668521468a8b SHA512 8f688accb7a4231f705f694c4b4e7344bbb338b2b1f09a6dacd900020a4e8583105b25fef5b40f39630db88db6fcc8ec79824945ceaee95ea1279d09d081a994
diff --git a/sys-block/zram-init/zram-init-10.5.ebuild b/sys-block/zram-init/zram-init-10.5.ebuild
deleted file mode 100644
index 505a36543945..000000000000
--- a/sys-block/zram-init/zram-init-10.5.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit prefix readme.gentoo-r1
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zRAM"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
-else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-BDEPEND="sys-devel/gettext"
-
-RDEPEND="
- >=app-shells/push-2.0
- virtual/libintl
- || ( sys-apps/openrc sys-apps/systemd )
-"
-
-DISABLE_AUTOFORMATTING=true
-DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default runlevel:
- rc-update add zram-init default
-If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the
-number of devices that you want to create:
- /etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init
-to the boot runlevel:
- rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file
-for the services using \$TMPDIR the following line:
- rc_need=\"zram-init\""
-
-src_prepare() {
- default
-
- hprefixify "${S}/man/${PN}.8"
-
- hprefixify -e "s%(}|:)(/(usr/)?sbin)%\1${EPREFIX}\2%g" \
- "${S}/sbin/${PN}.in"
-
- hprefixify -e "s%( |=)(/tmp)%\1${EPREFIX}\2%g" \
- "${S}/systemd/system"/* \
- "${S}/openrc"/*/*
-}
-
-src_compile() {
- emake PREFIX="${EPREFIX}/usr" MODIFY_SHEBANG=FALSE
-}
-
-src_install() {
- einstalldocs
- readme.gentoo_create_doc
-
- emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" install
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/sys-block/zram-init/zram-init-11.0.ebuild b/sys-block/zram-init/zram-init-11.0.ebuild
deleted file mode 100644
index 78ccfd943a55..000000000000
--- a/sys-block/zram-init/zram-init-11.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit prefix readme.gentoo-r1
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zRAM"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
-else
- SRC_URI="https://github.com/vaeth/zram-init/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-BDEPEND="sys-devel/gettext"
-
-RDEPEND="
- >=app-shells/push-2.0
- virtual/libintl
- || ( sys-apps/openrc sys-apps/systemd )
-"
-
-DISABLE_AUTOFORMATTING=true
-DOC_CONTENTS="\
-To use zram-init, activate it in your kernel and add it to the default
-runlevel: rc-update add zram-init default
-If you use systemd enable zram_swap, zram_tmp, and/or zram_var_tmp with
-systemctl. You might need to modify the following file depending on the number
-of devices that you want to create: /etc/modprobe.d/zram.conf.
-If you use the \$TMPDIR as zram device with OpenRC, you should add zram-init to
-the boot runlevel: rc-update add zram-init boot
-Still for the same case, you should add in the OpenRC configuration file for
-the services using \$TMPDIR the following line: rc_need=\"zram-init\""
-
-src_prepare() {
- default
-
- hprefixify "${S}/man/${PN}.8"
-
- hprefixify -e "s%(}|:)(/(usr/)?sbin)%\1${EPREFIX}\2%g" \
- "${S}/sbin/${PN}.in"
-
- hprefixify -e "s%( |=)(/tmp)%\1${EPREFIX}\2%g" \
- "${S}/systemd/system"/* \
- "${S}/openrc"/*/*
-}
-
-src_compile() {
- emake PREFIX="${EPREFIX}/usr" MODIFY_SHEBANG=FALSE
-}
-
-src_install() {
- einstalldocs
- readme.gentoo_create_doc
-
- emake DESTDIR="${ED}" PREFIX="/usr" SYSCONFDIR="/etc" \
- BINDIR="${ED}/sbin" SYSTEMDDIR="${ED}/lib/systemd/system" install
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/sys-block/zram-init/zram-init-8.1-r1.ebuild b/sys-block/zram-init/zram-init-8.1-r1.ebuild
deleted file mode 100644
index 74cb80aa2101..000000000000
--- a/sys-block/zram-init/zram-init-8.1-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
-fi
-
-RDEPEND=">=app-shells/push-2.0
- !<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -e 's#PushA_=`push.sh 2>/dev/null`#PushA_=`cat '"${EPREFIX}"'/usr/share/push/push.sh`#' \
- -- sbin/zram-init || die
- default
-}
-
-src_install() {
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- dodoc AUTHORS ChangeLog README.md
- readme.gentoo_create_doc
- into /
- dosbin sbin/*
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
diff --git a/sys-block/zram-init/zram-init-8.1.ebuild b/sys-block/zram-init/zram-init-8.1.ebuild
deleted file mode 100644
index 5b003d0c4a3e..000000000000
--- a/sys-block/zram-init/zram-init-8.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit readme.gentoo-r1 systemd
-
-DESCRIPTION="Scripts to support compressed swap devices or ramdisks with zram"
-HOMEPAGE="https://github.com/vaeth/zram-init/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 arm64 ppc ppc64 x86"
-fi
-
-RDEPEND=">=app-shells/push-2.0
- !<sys-apps/openrc-0.13"
-
-DISABLE_AUTOFORMATTING="true"
-DOC_CONTENTS="To use zram, activate it in your kernel and add it to default runlevel:
- rc-config add zram default
-If you use systemd enable zram_swap, tmp, and/or var_tmp with systemctl.
-You might need to modify /etc/modprobe.d/zram.conf"
-
-src_prepare() {
- use prefix || sed -i \
- -e '1s"^#!/usr/bin/env sh$"#!'"${EPREFIX}/bin/sh"'"' \
- -- sbin/* || die
- default
-}
-
-src_install() {
- doinitd openrc/init.d/*
- doconfd openrc/conf.d/*
- systemd_dounit systemd/system/*
- insinto /etc/modprobe.d
- doins modprobe.d/*
- insinto /usr/share/zsh/site-functions
- doins zsh/*
- dodoc AUTHORS ChangeLog README.md
- readme.gentoo_create_doc
- into /
- dosbin sbin/*
-}
-
-pkg_postinst() {
- readme.gentoo_print_elog
-}
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2024-03-12 20:42 Arthur Zamarin
0 siblings, 0 replies; 36+ messages in thread
From: Arthur Zamarin @ 2024-03-12 20:42 UTC (permalink / raw
To: gentoo-commits
commit: e3dbc0912d99ef5296a59fe8e46af87f637196ed
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 12 20:42:03 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 12 20:42:03 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3dbc091
sys-block/zram-init: Stabilize 11.1 arm, #926855
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
sys-block/zram-init/zram-init-11.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-block/zram-init/zram-init-11.1.ebuild b/sys-block/zram-init/zram-init-11.1.ebuild
index 5a98219d9bd6..d90e78958f98 100644
--- a/sys-block/zram-init/zram-init-11.1.ebuild
+++ b/sys-block/zram-init/zram-init-11.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
EGIT_REPO_URI="https://github.com/vaeth/${PN}.git"
else
SRC_URI="https://github.com/vaeth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 ~arm arm64 ppc ppc64 ~riscv x86"
+ KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
fi
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 36+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/
@ 2024-07-21 0:31 Sam James
0 siblings, 0 replies; 36+ messages in thread
From: Sam James @ 2024-07-21 0:31 UTC (permalink / raw
To: gentoo-commits
commit: f54123a3db367be40d6acacf10906d612a5f4a76
Author: Anna (navi) Figueiredo Gomes <navi <AT> vlhl <DOT> dev>
AuthorDate: Sun Jul 21 00:05:35 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 21 00:29:52 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f54123a3
sys-block/zram-init: add sys-apps/openrc-navi dependency
Signed-off-by: Anna (navi) Figueiredo Gomes <navi <AT> vlhl.dev>
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../zram-init/{zram-init-11.1.ebuild => zram-init-11.1-r1.ebuild} | 2 +-
sys-block/zram-init/zram-init-9999.ebuild | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-block/zram-init/zram-init-11.1.ebuild b/sys-block/zram-init/zram-init-11.1-r1.ebuild
similarity index 96%
rename from sys-block/zram-init/zram-init-11.1.ebuild
rename to sys-block/zram-init/zram-init-11.1-r1.ebuild
index d90e78958f98..6ec7a8c16b6c 100644
--- a/sys-block/zram-init/zram-init-11.1.ebuild
+++ b/sys-block/zram-init/zram-init-11.1-r1.ebuild
@@ -25,7 +25,7 @@ BDEPEND="sys-devel/gettext"
RDEPEND="
>=app-shells/push-2.0
virtual/libintl
- || ( sys-apps/openrc sys-apps/systemd )
+ || ( sys-apps/openrc sys-apps/openrc-navi sys-apps/systemd )
"
DISABLE_AUTOFORMATTING=true
diff --git a/sys-block/zram-init/zram-init-9999.ebuild b/sys-block/zram-init/zram-init-9999.ebuild
index f8d4f93e9610..605e0486adaa 100644
--- a/sys-block/zram-init/zram-init-9999.ebuild
+++ b/sys-block/zram-init/zram-init-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -25,7 +25,7 @@ BDEPEND="sys-devel/gettext"
RDEPEND="
>=app-shells/push-2.0
virtual/libintl
- || ( sys-apps/openrc sys-apps/systemd )
+ || ( sys-apps/openrc sys-apps/openrc-navi sys-apps/systemd )
"
DISABLE_AUTOFORMATTING=true
^ permalink raw reply related [flat|nested] 36+ messages in thread
end of thread, other threads:[~2024-07-21 0:31 UTC | newest]
Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-09 14:44 [gentoo-commits] repo/gentoo:master commit in: sys-block/zram-init/ Sergei Trofimovich
-- strict thread matches above, loose matches on Subject: below --
2024-07-21 0:31 Sam James
2024-03-12 20:42 Arthur Zamarin
2023-06-26 14:42 Sam James
2023-06-26 8:19 Sam James
2023-06-24 1:18 Sam James
2023-06-24 1:18 Sam James
2023-06-24 1:18 Sam James
2021-08-06 20:49 Sam James
2021-06-21 21:21 Marek Szuba
2021-06-20 22:05 Jason Zaman
2021-03-04 4:24 Sam James
2021-02-26 19:02 Sam James
2020-10-26 17:27 Jason Zaman
2020-10-26 17:09 Jason Zaman
2020-10-26 16:57 Jason Zaman
2020-02-16 13:35 Jason Zaman
2019-07-18 13:07 Agostino Sarubbo
2019-07-18 13:06 Agostino Sarubbo
2019-04-29 14:24 Jason Zaman
2019-04-29 14:24 Jason Zaman
2019-03-20 15:29 Craig Andrews
2019-03-20 15:29 Craig Andrews
2018-10-05 9:44 Jason Zaman
2018-06-08 9:56 Jason Zaman
2018-06-05 4:33 Jason Zaman
2018-06-05 4:33 Jason Zaman
2017-05-24 8:10 Michael Weber
2017-05-24 8:00 Michael Weber
2016-08-10 12:01 Jason Zaman
2016-08-10 12:01 Jason Zaman
2016-08-07 8:28 Pacho Ramos
2016-03-04 3:16 Stephen Klimaszewski
2016-01-24 18:34 Jauhien Piatlicki
2016-01-01 21:28 Jauhien Piatlicki
2015-09-01 18:25 Jauhien Piatlicki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox