Gentoo Archives: gentoo-commits

From: Alessandro Barbieri <lssndrbarbieri@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-misc/nonsense/
Date: Tue, 29 Jun 2021 22:32:13
Message-Id: 1625005927.2740051fd88956f7303d7835cd8631fb19c8bc54.Alessandro-Barbieri@gentoo
1 commit: 2740051fd88956f7303d7835cd8631fb19c8bc54
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Tue Jun 29 22:31:30 2021 +0000
4 Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
5 CommitDate: Tue Jun 29 22:32:07 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2740051f
7
8 app-misc/nonsense: add 0.7
9
10 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
11
12 app-misc/nonsense/Manifest | 1 +
13 app-misc/nonsense/metadata.xml | 2 ++
14 app-misc/nonsense/nonsense-0.7.ebuild | 24 ++++++++++++++++++++++++
15 3 files changed, 27 insertions(+)
16
17 diff --git a/app-misc/nonsense/Manifest b/app-misc/nonsense/Manifest
18 index 423ec8eb3..bdf6b2b91 100644
19 --- a/app-misc/nonsense/Manifest
20 +++ b/app-misc/nonsense/Manifest
21 @@ -1 +1,2 @@
22 DIST nonsense-0.6.tar.gz 125943 BLAKE2B 6037d8c052e3ff58ff29a7c5e9b31129020acf85f73724be82932b519069a04c0fc0a6e5773a304734dcd51c042acf00a1c6ad7c9afb4c9eb7bba19a6f460ffc SHA512 022d3d4c5535da7bc67b28259f95a99ca52cf71dd3cca36993f77d3175f37384caa3f387e4ddd3d3c27ee5000c86f574680365e8249d74375688508f64228d67
23 +DIST nonsense-0.7.tar.gz 132925 BLAKE2B 75748573c549f60eb48fcb23788600c44f9c97c3ba4dc6f271651d4cb717b044faa4f805a24c8d16daaa2f432bedf38f6ffee4a629a2231f59cac4e9f8dd2b66 SHA512 faefa857526312454e71cff4950149ce1623edbe129614c11d64f77305b71acd870171642b36d0fd8bef7e3dcecdbc68f2a1c77820c9f4c7ca756d8cce41fe1e
24
25 diff --git a/app-misc/nonsense/metadata.xml b/app-misc/nonsense/metadata.xml
26 index 914112026..1808911fe 100644
27 --- a/app-misc/nonsense/metadata.xml
28 +++ b/app-misc/nonsense/metadata.xml
29 @@ -18,6 +18,8 @@ write for Humorix. You might be able to use it as an alternative to fortune(6)
30 or as a way to add random content to your website.
31 </longdescription>
32 <upstream>
33 + <bugs-to>https://github.com/aduial/nonsense/issues</bugs-to>
34 + <remote-id type="github">aduial/nonsense</remote-id>
35 <remote-id type="sourceforge">nonsense</remote-id>
36 </upstream>
37 </pkgmetadata>
38
39 diff --git a/app-misc/nonsense/nonsense-0.7.ebuild b/app-misc/nonsense/nonsense-0.7.ebuild
40 new file mode 100644
41 index 000000000..4874390fc
42 --- /dev/null
43 +++ b/app-misc/nonsense/nonsense-0.7.ebuild
44 @@ -0,0 +1,24 @@
45 +# Copyright 1999-2021 Gentoo Authors
46 +# Distributed under the terms of the GNU General Public License v2
47 +
48 +EAPI=8
49 +
50 +COMMIT="766d34590e1fc0edddb381ad16fab57f5d20d299"
51 +
52 +DESCRIPTION="Generates random text from datafiles and templates"
53 +HOMEPAGE="
54 + https://github.com/aduial/nonsense
55 + https://nonsense.sourceforge.net
56 +"
57 +SRC_URI="https://github.com/aduial/nonsense/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
58 +S="${WORKDIR}/${PN}-${COMMIT}"
59 +LICENSE="GPL-3"
60 +SLOT="0"
61 +KEYWORDS="~amd64"
62 +
63 +src_install() {
64 + newbin nonsense.pl nonsense
65 + dodoc README.md CHANGELOG.md HOWTO.md
66 + insinto /usr/share/nonsense
67 + doins *.data *.html *.template
68 +}