Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/djbdns-logparse/
Date: Thu, 22 Sep 2022 20:07:37
Message-Id: 1663877180.bba2c91a04e8c3149195e333852b5e1325efeb05.mjo@gentoo
1 commit: bba2c91a04e8c3149195e333852b5e1325efeb05
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 19:32:58 2022 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 20:06:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bba2c91a
7
8 app-admin/djbdns-logparse: new package, add 0.0.1
9
10 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
11
12 app-admin/djbdns-logparse/Manifest | 1 +
13 .../djbdns-logparse/djbdns-logparse-0.0.1.ebuild | 31 ++++++++++++++++++++++
14 app-admin/djbdns-logparse/metadata.xml | 7 +++++
15 3 files changed, 39 insertions(+)
16
17 diff --git a/app-admin/djbdns-logparse/Manifest b/app-admin/djbdns-logparse/Manifest
18 new file mode 100644
19 index 000000000000..debe5329f77f
20 --- /dev/null
21 +++ b/app-admin/djbdns-logparse/Manifest
22 @@ -0,0 +1 @@
23 +DIST djbdns-logparse-0.0.1.tar.gz 23317 BLAKE2B d44b2af042990dc1632746e111ecb53dcd16cd0a245a778f198163afb7de26a5f41cf624c81fe06dbffad94c9370e24267bb3c69176b4afb2e26a71fa5fa1afc SHA512 e066875d3718ab7780c6a82ed022106bd26b454827532beb2f6f2ef5e38d2619b71067250b9ed22eea03380da2f0e68b26931ceb99d9300e15be77d070d7fdf2
24
25 diff --git a/app-admin/djbdns-logparse/djbdns-logparse-0.0.1.ebuild b/app-admin/djbdns-logparse/djbdns-logparse-0.0.1.ebuild
26 new file mode 100644
27 index 000000000000..a37424d8def8
28 --- /dev/null
29 +++ b/app-admin/djbdns-logparse/djbdns-logparse-0.0.1.ebuild
30 @@ -0,0 +1,31 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Make tinydns and dnscache logs human-readable"
40 +HOMEPAGE="http://michael.orlitzky.com/code/djbdns-logparse.xhtml"
41 +SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.gz"
42 +LICENSE="AGPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE="test"
46 +RESTRICT="!test? ( test )"
47 +
48 +# djbdns-logparse pipes the logs through the "tai64nlocal" program
49 +# that comes with sys-process/daemontools.
50 +RDEPEND="sys-process/daemontools"
51 +BDEPEND="test? ( ${RDEPEND} )"
52 +
53 +python_install_all() {
54 + doman "doc/man1/${PN}.1"
55 + local DOCS=( doc/README )
56 + distutils-r1_python_install_all
57 +}
58 +
59 +python_test() {
60 + esetup.py test
61 +}
62
63 diff --git a/app-admin/djbdns-logparse/metadata.xml b/app-admin/djbdns-logparse/metadata.xml
64 new file mode 100644
65 index 000000000000..c6418674131d
66 --- /dev/null
67 +++ b/app-admin/djbdns-logparse/metadata.xml
68 @@ -0,0 +1,7 @@
69 +<?xml version="1.0" encoding="UTF-8"?>
70 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
71 +<pkgmetadata>
72 + <maintainer type="person">
73 + <email>mjo@g.o</email>
74 + </maintainer>
75 +</pkgmetadata>