public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/frandom/
@ 2016-04-06 18:10 Richard Farina
  0 siblings, 0 replies; 2+ messages in thread
From: Richard Farina @ 2016-04-06 18:10 UTC (permalink / raw
  To: gentoo-commits

commit:     694a094a77a9e2a57b9ecf8428ef7cdb93cff37a
Author:     Zero_Chaos <zerochaos <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  6 18:10:10 2016 +0000
Commit:     Richard Farina <zerochaos <AT> gentoo <DOT> org>
CommitDate: Wed Apr  6 18:10:27 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694a094a

sys-apps/frandom: initial commit of frandom from bug #325541, minor modifications of ebuild to bring up to date

Package-Manager: portage-2.2.28

 sys-apps/frandom/Manifest           |  1 +
 sys-apps/frandom/frandom-1.1.ebuild | 32 ++++++++++++++++++++++++++++++++
 sys-apps/frandom/metadata.xml       | 11 +++++++++++
 3 files changed, 44 insertions(+)

diff --git a/sys-apps/frandom/Manifest b/sys-apps/frandom/Manifest
new file mode 100644
index 0000000..b5c38d5
--- /dev/null
+++ b/sys-apps/frandom/Manifest
@@ -0,0 +1 @@
+DIST frandom-1.1.tar.gz 8146 SHA256 9ad27d13cb5087e4c061b03da46963d9581b26ed625e1dfe79982b07c9f42f97 SHA512 f64bd1bc1482d223f84f344554b04a4a413be32cf6c348e006b831e68eea0165f1231e194536bb6867450dfc901e80e765e71ba6369209ce579597ad1cdfdeaf WHIRLPOOL 9eb8226348627b2f2ab7d36fc8f240b8860e00446b1b12a96fee77a8d8d90b02f9c5f6621f539d000ef561d333a7adaf065930fe7858ce7af2b4fd8b90b036fa

diff --git a/sys-apps/frandom/frandom-1.1.ebuild b/sys-apps/frandom/frandom-1.1.ebuild
new file mode 100644
index 0000000..277faaf
--- /dev/null
+++ b/sys-apps/frandom/frandom-1.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit linux-mod udev
+
+DESCRIPTION="Fast kernel-land pseudo-random number generator using the RC4 algorithm"
+HOMEPAGE="http://billauer.co.il/frandom.html"
+SRC_URI="mirror://sourceforge/project/frandom//${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RESTRICT="strip"
+
+BUILD_TARGETS="default"
+BUILD_TARGET_ARCH="${ARCH}"
+MODULE_NAMES="frandom(misc)"
+
+src_prepare() {
+	sed -i -e "s:\$(shell uname -r):${KV_FULL}:" "${S}"/Makefile || die "sed failed"
+}
+
+src_install() {
+	linux-mod_src_install
+
+	udev_dorules "${S}"/10-${PN}.rules
+}

diff --git a/sys-apps/frandom/metadata.xml b/sys-apps/frandom/metadata.xml
new file mode 100644
index 0000000..3d7c3da
--- /dev/null
+++ b/sys-apps/frandom/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="person">
+    <email>zerochaos@gentoo.org</email>
+    <name>Rick Farina</name>
+    <description>maintainer</description>
+  </maintainer>
+<longdescription lang="en">
+</longdescription>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/frandom/
@ 2020-08-08 12:18 Mikle Kolyada
  0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada @ 2020-08-08 12:18 UTC (permalink / raw
  To: gentoo-commits

commit:     40bfb335c87b388d90b4921d529860752b7609af
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Aug  7 11:05:34 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Aug  8 12:18:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40bfb335

sys-apps/frandom: migrate to sys-apps/kmod

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 sys-apps/frandom/{frandom-1.1.ebuild => frandom-1.1-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/frandom/frandom-1.1.ebuild b/sys-apps/frandom/frandom-1.1-r1.ebuild
similarity index 94%
rename from sys-apps/frandom/frandom-1.1.ebuild
rename to sys-apps/frandom/frandom-1.1-r1.ebuild
index 50c0b257f58..45a10e79afc 100644
--- a/sys-apps/frandom/frandom-1.1.ebuild
+++ b/sys-apps/frandom/frandom-1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-08 12:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-06 18:10 [gentoo-commits] repo/gentoo:master commit in: sys-apps/frandom/ Richard Farina
  -- strict thread matches above, loose matches on Subject: below --
2020-08-08 12:18 Mikle Kolyada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox