Gentoo Archives: gentoo-commits

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/clsync-docs/
Date: Wed, 06 May 2020 16:25:31
Message-Id: 1588782314.444a8e9858bddba62b329832c2b4c69262c06c87.bircoph@gentoo
1 commit: 444a8e9858bddba62b329832c2b4c69262c06c87
2 Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 6 16:23:08 2020 +0000
4 Commit: Andrew Savchenko <bircoph <AT> gentoo <DOT> org>
5 CommitDate: Wed May 6 16:25:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444a8e98
7
8 app-doc/clsync-docs: drop old
9
10 Package-Manager: Portage-2.3.82, Repoman-2.3.20
11 Signed-off-by: Andrew Savchenko <bircoph <AT> gentoo.org>
12
13 app-doc/clsync-docs/clsync-docs-0.4.4.ebuild | 39 ----------------------------
14 1 file changed, 39 deletions(-)
15
16 diff --git a/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild b/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild
17 deleted file mode 100644
18 index 2de567fcf95..00000000000
19 --- a/app-doc/clsync-docs/clsync-docs-0.4.4.ebuild
20 +++ /dev/null
21 @@ -1,39 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -MY_PN="${PN%-docs}"
28 -MY_P="${MY_PN}-${PV}"
29 -
30 -SRC_URI="https://github.com/clsync/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
31 -KEYWORDS="~amd64 ~x86"
32 -S="${WORKDIR}/${MY_P}"
33 -
34 -DESCRIPTION="Clsync and libclsync API documentation"
35 -HOMEPAGE="http://ut.mephi.ru/oss/clsync https://github.com/clsync/clsync"
36 -LICENSE="GPL-3+"
37 -SLOT="0"
38 -IUSE="api +examples"
39 -
40 -BDEPEND="api? ( app-doc/doxygen )"
41 -
42 -src_configure() {
43 - : # doxygen doesn't depend on configuration
44 -}
45 -
46 -src_compile() {
47 - if use api; then
48 - doxygen .doxygen || die "doxygen failed"
49 - fi
50 -}
51 -
52 -src_install() {
53 - dodoc CONTRIB DEVELOPING NOTES PROTOCOL README.md SHORTHANDS TODO
54 - if use api; then
55 - dodoc -r doc/doxygen/html doc/devel/*
56 - fi
57 - if use examples; then
58 - dodoc -r examples
59 - fi
60 -}