[arch-commits] Commit in haveged/repos (4 files)

Christian Hesse eworm at gemini.archlinux.org
Sat Jan 8 20:26:23 UTC 2022


    Date: Saturday, January 8, 2022 @ 20:26:23
  Author: eworm
Revision: 433975

archrelease: copy trunk to testing-x86_64

Added:
  haveged/repos/testing-x86_64/
  haveged/repos/testing-x86_64/PKGBUILD
    (from rev 433974, haveged/trunk/PKGBUILD)
  haveged/repos/testing-x86_64/initcpio-hook
    (from rev 433974, haveged/trunk/initcpio-hook)
  haveged/repos/testing-x86_64/initcpio-install
    (from rev 433974, haveged/trunk/initcpio-install)

------------------+
 PKGBUILD         |   52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 initcpio-hook    |    5 +++++
 initcpio-install |   17 +++++++++++++++++
 3 files changed, 74 insertions(+)

Copied: haveged/repos/testing-x86_64/PKGBUILD (from rev 433974, haveged/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-01-08 20:26:23 UTC (rev 433975)
@@ -0,0 +1,52 @@
+# Maintainer:  Christian Hesse <mail at eworm.de>
+# Contributor: Bartłomiej Piotrowski <bpiotrowski at archlinux.org>
+# Contributor: kfgz <kfgz at interia dot pl>
+# Contributor: pootzko <pootzko at gmail dot com>
+
+pkgname=haveged
+pkgver=1.9.17
+pkgrel=1
+pkgdesc='Entropy harvesting daemon using CPU timings'
+arch=('x86_64')
+url='https://github.com/jirka-h/haveged'
+license=('GPL')
+depends=('glibc')
+validpgpkeys=('8F6B7293B03E5AC5762B65CE2E2F252B05CCA168') # Jirka Hladky <hladky.jiri at gmail.com>
+source=("$pkgname-$pkgver.tar.gz::https://github.com/jirka-h/$pkgname/archive/v$pkgver.tar.gz"
+        'initcpio-hook'
+        'initcpio-install')
+sha256sums=('02d9b7c801fbcf16bed43c27bf6ece570b79f4d94561f3eb30883fb5f89c526d'
+            'a59ff95d521a860031693d1e1d65d37ffba58412f0199b029bd340e2f7f52a0b'
+            'befb42d418d13c832da6d67f50417f6bca9a1c754dbdc63175f1e2546ea29b51')
+
+prepare() {
+  cd $pkgname-$pkgver
+
+  sed -i 's/@SBIN_DIR@/\/usr\/bin/' contrib/Fedora/haveged*.service
+}
+
+build() {
+  cd $pkgname-$pkgver
+
+  ./configure \
+      --prefix=/usr \
+      --bindir=/usr/bin \
+      --sbindir=/usr/bin
+  make
+}
+
+check() {
+  cd ${pkgname}-${pkgver}
+  make check
+}
+
+package() {
+  cd $pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+
+  install -D -m0644 contrib/Fedora/haveged.service "$pkgdir"/usr/lib/systemd/system/haveged.service
+  install -D -m0644 contrib/Fedora/haveged-once.service "$pkgdir"/usr/lib/systemd/system/haveged-once.service
+  install -D -m0644 "${srcdir}/initcpio-hook" "$pkgdir"/usr/lib/initcpio/hooks/haveged
+  install -D -m0644 "${srcdir}/initcpio-install" "$pkgdir"/usr/lib/initcpio/install/haveged
+}

Copied: haveged/repos/testing-x86_64/initcpio-hook (from rev 433974, haveged/trunk/initcpio-hook)
===================================================================
--- testing-x86_64/initcpio-hook	                        (rev 0)
+++ testing-x86_64/initcpio-hook	2022-01-08 20:26:23 UTC (rev 433975)
@@ -0,0 +1,5 @@
+#!/usr/bin/ash
+
+run_earlyhook() {
+    haveged --once
+}

Copied: haveged/repos/testing-x86_64/initcpio-install (from rev 433974, haveged/trunk/initcpio-install)
===================================================================
--- testing-x86_64/initcpio-install	                        (rev 0)
+++ testing-x86_64/initcpio-install	2022-01-08 20:26:23 UTC (rev 433975)
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+build() {
+    if command -v add_systemd_unit >/dev/null; then
+        add_systemd_unit haveged-once.service
+	add_symlink /usr/lib/systemd/system/sysinit.target.wants/haveged-once.service ../haveged-once.service
+    else
+        add_binary 'haveged'
+        add_runscript
+    fi
+}
+
+help() {
+    cat <<HELPEOF
+Haveged for early entropy and fast crng initialization.
+HELPEOF
+}



More information about the arch-commits mailing list