Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-doc/stdman/
Date: Tue, 05 Jul 2022 07:14:22
Message-Id: 1657005214.3fafa148e95a433a5a3ed1029209f5fafa92cf85.flow@gentoo
1 commit: 3fafa148e95a433a5a3ed1029209f5fafa92cf85
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 5 07:13:34 2022 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 5 07:13:34 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3fafa148
7
8 app-doc/stdman: add 2021.12.21
9
10 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
11
12 app-doc/stdman/Manifest | 1 +
13 app-doc/stdman/stdman-2021.12.21.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-doc/stdman/Manifest b/app-doc/stdman/Manifest
17 index 58e23117d..9a6a50d6e 100644
18 --- a/app-doc/stdman/Manifest
19 +++ b/app-doc/stdman/Manifest
20 @@ -1,2 +1,3 @@
21 DIST stdman-2019.08.27.tar.gz 3382896 BLAKE2B 9c2665a80658b4a4023a259c183c2cb81ba8d6bc60b22e4fc7246d8eff28f9ed96f5acae1a7ce6cd1c6e7f4c7e57719b76d0e840b92d2c6cefa03ed380a66ef8 SHA512 8024117fb16ba65e6d5721f4c74701f683c032e758806ddb40a7a35bd0478379a925517cd2ee9ad2c74d30a6ce1df279393e43b9361fabb9a631cf91dacb4821
22 DIST stdman-2020.11.17.tar.gz 3392741 BLAKE2B b6cec71bf4d0c3640a083356a0a1380adfaba9df237d694cbbcac54fde4ea943234760a83246e1310e29f672cd923e666f348d4740df8f6f3d6c8e8fb3469f00 SHA512 54a01c7831c9ccb42c15eeb203fbdce7fd1c64e9b81951a8934d7a16c7ead176289ce6bdd916872910959d0fa995f5906d328ec51ea5f4a8d9ffaca855d372e5
23 +DIST stdman-2021.12.21.tar.gz 4018867 BLAKE2B 068246adfaa1c660fc4c852f1256de7fee1355ba5719096ff9d9fa15bbfb2b70bce4f66fbc2beb11525323b74914358260396f0ff442e74b3aa01705405317f1 SHA512 ac49aeb49aac57f9b8838cf3933f1ee8c5a9689475a0e5332741c79976c889c39ce384951650db57c43a144d27c0505b4313307036cfd8f79b6a26d7cbd9c050
24
25 diff --git a/app-doc/stdman/stdman-2021.12.21.ebuild b/app-doc/stdman/stdman-2021.12.21.ebuild
26 new file mode 100644
27 index 000000000..925be0cbc
28 --- /dev/null
29 +++ b/app-doc/stdman/stdman-2021.12.21.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +DESCRIPTION="Formatted C++ stdlib man pages (cppreference)"
37 +HOMEPAGE="https://github.com/jeaye/stdman"
38 +
39 +if [[ ${PV} == 9999 ]]; then
40 + inherit git-r3
41 + EGIT_REPO_URI="https://github.com/jeaye/stdman.git"
42 +else
43 + KEYWORDS="~amd64"
44 + SRC_URI="https://github.com/jeaye/stdman/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +fi
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +
50 +src_prepare() {
51 + default
52 + # Avoid compressing files
53 + sed -i '/gzip/d' do_install || die
54 +}
55 +
56 +src_compile() {
57 + :
58 +}