public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Georgy Yakovlev" <gyakovlev@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/minicoredumper/, sys-process/minicoredumper/files/
Date: Tue, 14 Jan 2020 03:58:49 +0000 (UTC)	[thread overview]
Message-ID: <1578974281.b80df23c42a129155440203e3b98e80116399e9e.gyakovlev@gentoo> (raw)

commit:     b80df23c42a129155440203e3b98e80116399e9e
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 14 03:47:26 2020 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Tue Jan 14 03:58:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80df23c

sys-process/minicoredumper: new package

utility to process coredump files, similar to systemd-coredump

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 sys-process/minicoredumper/Manifest                |  1 +
 .../minicoredumper/files/60-minicoredumper.conf    |  1 +
 sys-process/minicoredumper/metadata.xml            | 13 ++++++
 .../minicoredumper/minicoredumper-2.0.1.ebuild     | 47 ++++++++++++++++++++++
 4 files changed, 62 insertions(+)

diff --git a/sys-process/minicoredumper/Manifest b/sys-process/minicoredumper/Manifest
new file mode 100644
index 00000000000..2654ac98b7c
--- /dev/null
+++ b/sys-process/minicoredumper/Manifest
@@ -0,0 +1 @@
+DIST minicoredumper-2.0.1.tar.xz 292088 BLAKE2B 0286004b707b1c9559ef4078dbd1d39ac82123cf3a6ba194210674dff3462db1b922340705f9b5e30e821b84ed91429f6f86cb680d353363b8b6aac92885cba6 SHA512 1ffc8e763aa653e443b15d49ac229720afc5d7729d6c1edb728bee55a887cad3b780bca2e4ac7f34c2f36756b02bd15002286f65d8a21ba99778d722e5953bb2

diff --git a/sys-process/minicoredumper/files/60-minicoredumper.conf b/sys-process/minicoredumper/files/60-minicoredumper.conf
new file mode 100644
index 00000000000..e862e20e9cc
--- /dev/null
+++ b/sys-process/minicoredumper/files/60-minicoredumper.conf
@@ -0,0 +1 @@
+kernel.core_pattern = |/usr/sbin/minicoredumper %P %u %g %s %t %h %e

diff --git a/sys-process/minicoredumper/metadata.xml b/sys-process/minicoredumper/metadata.xml
new file mode 100644
index 00000000000..c514535249c
--- /dev/null
+++ b/sys-process/minicoredumper/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>gyakovlev@gentoo.org</email>
+		<name>Georgy Yakovlev</name>
+	</maintainer>
+	<longdescription lang="en">
+		minicoredumper is a program that handles the creation of core dump files on Linux.
+		It can produce much smaller core dump files by making use of sparse files, compression,
+		and allowing the user to configure what parts of the process memory image should be dumped. 
+	</longdescription>
+</pkgmetadata>

diff --git a/sys-process/minicoredumper/minicoredumper-2.0.1.ebuild b/sys-process/minicoredumper/minicoredumper-2.0.1.ebuild
new file mode 100644
index 00000000000..8795d2b0b94
--- /dev/null
+++ b/sys-process/minicoredumper/minicoredumper-2.0.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Core dump file processor"
+HOMEPAGE="https://linutronix.de/minicoredumper"
+SRC_URI="https://linutronix.de/minicoredumper/files/${P}.tar.xz"
+
+LICENSE="BSD BSD-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+DEPEND="
+	dev-libs/json-c:=
+	virtual/libelf
+"
+
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+	# TODO: regd daemon is disabled as there are no known consumers
+	local myconf=(
+		--runstatedir="${EPREFIX}/run"
+		--without-werror
+		--without-minicoredumper_trigger
+		--without-minicoredumper_regd
+		MCD_DUMP_PATH="${EPREFIX}/var/lib/${PN}"
+	)
+	econf ${myconf[@]}
+}
+
+src_install() {
+	default
+
+	keepdir /var/lib/minicoredumper
+
+	# systemd-coredump uses /usr/lib/sysctl.d/50-coredump.conf
+	insinto /usr/lib/sysctl.d
+	doins "${FILESDIR}"/60-minicoredumper.conf
+
+	# it installs some files/dirs we don't want
+	rmdir -v "${ED}/run" || die
+	rm -rv "${ED}"/etc/{init.d,default} || die
+}


             reply	other threads:[~2020-01-14  3:58 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-14  3:58 Georgy Yakovlev [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-01-04  0:31 [gentoo-commits] repo/gentoo:master commit in: sys-process/minicoredumper/, sys-process/minicoredumper/files/ Georgy Yakovlev
2024-03-21  2:41 Sam James

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=1578974281.b80df23c42a129155440203e3b98e80116399e9e.gyakovlev@gentoo \
    --to=gyakovlev@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