Gentoo Archives: gentoo-commits

From: "Jakov Smolić" <jsmolic@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/ncdu-bin/
Date: Mon, 22 Aug 2022 08:18:14
Message-Id: 1661156170.9fdfa8b2a4f06870747807474cd5e93dc4029544.jsmolic@gentoo
1 commit: 9fdfa8b2a4f06870747807474cd5e93dc4029544
2 Author: Eric Joldasov <bratishkaerik <AT> getgoogleoff <DOT> me>
3 AuthorDate: Tue Jul 26 21:38:45 2022 +0000
4 Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 22 08:16:10 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fdfa8b2
7
8 sys-fs/ncdu-bin: new package, add 2.1.2
9
10 Signed-off-by: Eric Joldasov <bratishkaerik <AT> getgoogleoff.me>
11 Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
12
13 sys-fs/ncdu-bin/Manifest | 4 ++++
14 sys-fs/ncdu-bin/metadata.xml | 14 ++++++++++++++
15 sys-fs/ncdu-bin/ncdu-bin-2.1.2.ebuild | 23 +++++++++++++++++++++++
16 3 files changed, 41 insertions(+)
17
18 diff --git a/sys-fs/ncdu-bin/Manifest b/sys-fs/ncdu-bin/Manifest
19 new file mode 100644
20 index 000000000000..112156e18dc2
21 --- /dev/null
22 +++ b/sys-fs/ncdu-bin/Manifest
23 @@ -0,0 +1,4 @@
24 +DIST ncdu-2.1.2-linux-aarch64.tar.gz 278374 BLAKE2B 32a8674f3878f404836473f41c35ac26e2eac6b5b48d61794c32ad5590550920cf5ef0b12fcbb9e7640c933504bcda0698649a31d28c31da3289c0f19577b8dd SHA512 bf954700bbd2d234ee69ce67f649463d9de770a543797e433411384e6212c3b12bb21d7854b8ead021e482094aec6f77755caa6699f9bb9d4e6ce656d332351b
25 +DIST ncdu-2.1.2-linux-arm.tar.gz 295485 BLAKE2B 0acc3095880ee012eb19f21e14a302b01a2d9c792dcb7e5779f517a214dc850bb78b7620e62a7a99369742a6d4f766d47de0f32ef30e98f38f31802c29fa1c47 SHA512 459a5f148687c68f58f419e767027e1254c4ff43f4848e83d2744198cd11a3dc98591502ff4339d28aa9ddc9a805d5567647788409e355eb73e31e16b9eb8a6c
26 +DIST ncdu-2.1.2-linux-i386.tar.gz 306261 BLAKE2B 493854be13382e8d3ba2e5ab5e4377a7ca26a3d932cd5e9894cf30664828714fa5d6a0c48bc5688ffd567d06bb314dc95ce1b372e590548816c0027d1185e1f4 SHA512 b4caebfbfb4ff804b87d5154866279735315c4f58f296064a986d7699414f3f0978d007f912fb2e3a0dd9f1c73688ff61d0c3faa599e70e2fe84be21134113bf
27 +DIST ncdu-2.1.2-linux-x86_64.tar.gz 299337 BLAKE2B e125be86fb8eb7195012379990b2de8868bfd80013e2206f313ebf32bd35c43d03fbe97b86f66fcfe2ca8fedd52287149618c7b2e3b147811bdee5cb51b25923 SHA512 3981bf773b1345e1075a2fdba43867f5524b7ad0d5100e5a5e37cffcd55a691163583f1316e37c3fa986759e29fdbe22b92992a0ecd4a92dbab4ad9eb2c99dce
28
29 diff --git a/sys-fs/ncdu-bin/metadata.xml b/sys-fs/ncdu-bin/metadata.xml
30 new file mode 100644
31 index 000000000000..c3151420b3a4
32 --- /dev/null
33 +++ b/sys-fs/ncdu-bin/metadata.xml
34 @@ -0,0 +1,14 @@
35 +<?xml version="1.0" encoding="UTF-8"?>
36 +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
37 +<pkgmetadata>
38 + <maintainer type="person">
39 + <email>jsmolic@g.o</email>
40 + <name>Jakov Smolić</name>
41 + </maintainer>
42 + <longdescription>
43 + As the name already suggests, ncdu is an NCurses version of the famous old 'du'
44 + unix command. It provides a fast and easy interface to your harddrive. Where is
45 + your disk space going? Why is your home directory that large? ncdu can answer
46 + those questions for you in just a matter of seconds!
47 + </longdescription>
48 +</pkgmetadata>
49
50 diff --git a/sys-fs/ncdu-bin/ncdu-bin-2.1.2.ebuild b/sys-fs/ncdu-bin/ncdu-bin-2.1.2.ebuild
51 new file mode 100644
52 index 000000000000..290db5ad4cc5
53 --- /dev/null
54 +++ b/sys-fs/ncdu-bin/ncdu-bin-2.1.2.ebuild
55 @@ -0,0 +1,23 @@
56 +# Copyright 2022 Gentoo Authors
57 +# Distributed under the terms of the GNU General Public License v2
58 +
59 +EAPI=8
60 +
61 +DESCRIPTION="NCurses Disk Usage"
62 +HOMEPAGE="https://dev.yorhel.nl/ncdu/"
63 +SRC_URI="
64 + amd64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-x86_64.tar.gz )
65 + arm? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-arm.tar.gz )
66 + arm64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-aarch64.tar.gz )
67 + x86? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-i386.tar.gz )"
68 +S="${WORKDIR}"
69 +
70 +LICENSE="MIT"
71 +SLOT="0"
72 +KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
73 +
74 +QA_PREBUILT="usr/bin/ncdu-bin"
75 +
76 +src_install() {
77 + newbin ncdu ncdu-bin
78 +}