public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Göktürk Yüksek" <gokturk@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/jitterentropy/
Date: Sat, 12 Feb 2022 09:29:19 +0000 (UTC)	[thread overview]
Message-ID: <1644658110.954fb687a5a2de94284f984a20846aac8dac84e1.gokturk@gentoo> (raw)

commit:     954fb687a5a2de94284f984a20846aac8dac84e1
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 12 09:24:17 2022 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sat Feb 12 09:28:30 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=954fb687

app-crypt/jitterentropy: bump to 3.3.1

Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>

 app-crypt/jitterentropy/Manifest                   |  1 +
 app-crypt/jitterentropy/jitterentropy-3.3.1.ebuild | 46 ++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/app-crypt/jitterentropy/Manifest b/app-crypt/jitterentropy/Manifest
index f39d50927dae..4084568a38ba 100644
--- a/app-crypt/jitterentropy/Manifest
+++ b/app-crypt/jitterentropy/Manifest
@@ -1,2 +1,3 @@
 DIST jitterentropy-2.2.0.tar.gz 25556 BLAKE2B d0a8faa9131e9fd5712fad4179725ac29ba813e0d77e5ae9dc905841b92f67fc51e79c407142b2e8c3473f92a59a5b03f03d2013bd7e5d1ae07110da52461255 SHA512 4701a7e0a82ee583cbde5edfdacb737a5f588b42c61b16434b5a11bdfb1a108e7b9df8b8b38d9e92290e702b33f2ae8774580d6a71e6e8ac3af295ffc8ff5ff9
 DIST jitterentropy-3.0.1.tar.gz 31212 BLAKE2B 522e9b88e96ed1e6f57e793779c46f7799185f9d25390268f628eb309239a3522ac13277a037acf54dcce7e7b1364b2ec6e15d21a5f13aaa5a87ece7690d57fd SHA512 fd195e150ea861fcd5ff72a84f48ef8b7d0d8a3d44aae51f0fe5c39a1d1409ca98271a6cf06140fa8b6aba08d8bbbddf097cd7d99b5c1b698db08f056236e547
+DIST jitterentropy-3.3.1.tar.gz 81596 BLAKE2B ad8bf87d5a30b4bc98a3af7c1dcff442516c0330050aea90f2f05d68c4c2f1e9fe4b8db885f00dcd138ae7cb5a6ca58800686ae507f0e41596c95176a33e2b96 SHA512 7dc17c377cf90d38057bbc135e00730a3f84bc66aeed83eca1ad1b0e1c2fb89c5346ec20bdf25d3ce27f1d21893d44e52c08e96175554c18dfa1934a8d4fd9f7

diff --git a/app-crypt/jitterentropy/jitterentropy-3.3.1.ebuild b/app-crypt/jitterentropy/jitterentropy-3.3.1.ebuild
new file mode 100644
index 000000000000..c089421d22ee
--- /dev/null
+++ b/app-crypt/jitterentropy/jitterentropy-3.3.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="Hardware RNG based on CPU timing jitter"
+HOMEPAGE="https://github.com/smuellerDD/jitterentropy-library"
+SRC_URI="https://github.com/smuellerDD/jitterentropy-library/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+# For future reference, tests/raw-entropy/validation-{restart,runtime}
+# have a weird license clause where it says:
+#   The licensee IS NOT granted permission to redistribute the source code or
+#   derivatives of the source code, and the binaries compiled from the source
+#   code or its derivatives to any third parties.
+# Do not package these two components!
+LICENSE="BSD"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~x86"
+IUSE="static-libs"
+
+S="${WORKDIR}/${PN}-library-${PV}"
+
+src_prepare() {
+	default
+
+	# Disable man page compression on install
+	sed -e '/\tgzip.*man/ d' -i Makefile || die
+}
+
+src_compile() {
+	# Upstream defines some of CFLAGS in the Makefile using '?='
+	# This allows those default flags to be overwritten by
+	# user-defined CFLAGS. Restore some of the defaults.
+	append-cflags '-fwrapv' '-fvisibility=hidden' '-fPIE'
+	emake AR="$(tc-getAR)" CC="$(tc-getCC)"
+}
+
+src_install() {
+	emake PREFIX="${EPREFIX}/usr" \
+		  LIBDIR="$(get_libdir)" \
+		  DESTDIR="${D}" \
+		  INSTALL_STRIP="install" \
+		  install $(usex static-libs install-static '')
+}


             reply	other threads:[~2022-02-12  9:29 UTC|newest]

Thread overview: 49+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-12  9:29 Göktürk Yüksek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-07-18 14:46 [gentoo-commits] repo/gentoo:master commit in: app-crypt/jitterentropy/ Petr Vaněk
2025-07-04  8:45 Arthur Zamarin
2025-07-03  8:51 Sam James
2025-06-22 17:10 Arthur Zamarin
2025-06-22 15:53 Sam James
2024-10-07  7:41 Göktürk Yüksek
2023-12-14  4:15 Sam James
2023-09-09 13:17 David Seifert
2023-09-09 13:17 David Seifert
2023-01-05  0:19 Sam James
2023-01-05  0:19 Sam James
2023-01-05  0:19 Sam James
2023-01-05  0:19 Sam James
2023-01-05  0:19 Sam James
2023-01-05  0:19 Sam James
2022-09-19  3:05 Sam James
2022-06-28  6:41 Agostino Sarubbo
2022-06-27  7:37 Agostino Sarubbo
2022-06-27  7:36 Agostino Sarubbo
2022-06-27  7:36 Agostino Sarubbo
2022-06-27  7:35 Agostino Sarubbo
2022-06-27  7:35 Agostino Sarubbo
2022-02-15 20:17 Göktürk Yüksek
2021-03-06  6:04 Göktürk Yüksek
2021-03-06  6:04 Göktürk Yüksek
2020-10-06 13:43 Sam James
2020-10-04 16:59 Sam James
2020-09-30  1:49 Sam James
2020-09-26 10:06 Sergei Trofimovich
2020-09-26  9:18 Sergei Trofimovich
2020-09-25  8:46 Agostino Sarubbo
2020-04-05 20:06 Mart Raudsepp
2020-03-30 12:20 Göktürk Yüksek
2019-11-13  7:39 Agostino Sarubbo
2019-11-12 15:08 Agostino Sarubbo
2019-11-04  9:22 Agostino Sarubbo
2019-11-03 13:40 Mikle Kolyada
2019-11-03  9:13 Piotr Karbowski
2019-08-11 21:38 Matt Turner
2019-08-08 23:57 Matt Turner
2019-08-08 16:01 Matt Turner
2019-08-06 17:50 Matt Turner
2019-08-05 23:55 Göktürk Yüksek
2019-08-05 23:34 Aaron Bauman
2019-08-05  5:08 Matt Turner
2019-08-05  5:08 Matt Turner
2019-06-12 22:59 Göktürk Yüksek
2019-06-12 22:59 Göktürk Yüksek

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=1644658110.954fb687a5a2de94284f984a20846aac8dac84e1.gokturk@gentoo \
    --to=gokturk@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

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

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