Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/glastree/
Date: Tue, 15 Sep 2020 00:53:36
Message-Id: 1600131203.e92fcd14a2d76daa9ae9ec7980c77ad17551abc0.sam@gentoo
1 commit: e92fcd14a2d76daa9ae9ec7980c77ad17551abc0
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 15 00:53:23 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 15 00:53:23 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e92fcd14
7
8 app-misc/glastree: bump to 20150525 snapshot
9
10 Closes: https://bugs.gentoo.org/623466
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 app-misc/glastree/Manifest | 1 +
15 app-misc/glastree/glastree-1.04_p20150525.ebuild | 34 ++++++++++++++++++++++++
16 2 files changed, 35 insertions(+)
17
18 diff --git a/app-misc/glastree/Manifest b/app-misc/glastree/Manifest
19 index 52afda376f2..a1675a5caca 100644
20 --- a/app-misc/glastree/Manifest
21 +++ b/app-misc/glastree/Manifest
22 @@ -1 +1,2 @@
23 DIST glastree-1.04.tar.gz 5846 BLAKE2B b380b577a712f08b0a3ec89627d9f8bd20c76244ab19c8e76d27ac2fa08b0242381c280430fafe8a43bef78de8954d4660051d7648550c4ecd789a8941b55a4d SHA512 81b819bc91780f42f945db13efc97faadd661c3272007dc0b90ed998776d3fc0fbe406249f069f0065271208c9f6ccd0488021d384e05d5b9da39311bec8f94d
24 +DIST glastree-1.04_p20150525.tar.gz 5716 BLAKE2B e248d607ce87f4e78d880c67415c8eb15325a15dca222d14bc9fbafbcfd30c356f71a73fcfc4c8df80c645741e8b0edeca71cfdd0d66b284facad23b5322d64b SHA512 cff2fc671265f7be62b098f9c0a6f8c7711f86c014b64bd0bc1dde4c1570e7707de735d2a421e78d15ff126bcd6cbf18c90ba96bf7a5b30c5f6135c2e4a03179
25
26 diff --git a/app-misc/glastree/glastree-1.04_p20150525.ebuild b/app-misc/glastree/glastree-1.04_p20150525.ebuild
27 new file mode 100644
28 index 00000000000..8e8a41a9631
29 --- /dev/null
30 +++ b/app-misc/glastree/glastree-1.04_p20150525.ebuild
31 @@ -0,0 +1,34 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +COMMIT="1dc111308356d999f2a32aa50b6a0737ec5e6b09"
38 +DESCRIPTION="glastree is a poor mans snapshot utility using hardlinks written in perl"
39 +HOMEPAGE="http://www.igmus.org/code/"
40 +SRC_URI="https://github.com/jeremywohl/glastree/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
41 +S="${WORKDIR}/${PN}-${COMMIT}"
42 +
43 +LICENSE="public-domain"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~x86"
46 +IUSE="test"
47 +RESTRICT="!test? ( test )"
48 +
49 +RDEPEND="
50 + dev-lang/perl
51 + dev-perl/Date-Calc
52 +"
53 +BDEPEND="test? ( ${RDEPEND} )"
54 +
55 +PATCHES=(
56 + "${FILESDIR}"/${PN}-posix-make.patch
57 +)
58 +
59 +src_compile() { :; }
60 +
61 +src_install() {
62 + dodir /usr/share/man/man1
63 + emake INSTROOT="${ED}"/usr INSTMAN=share/man install
64 + dodoc README CHANGES THANKS
65 +}