Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dtach/
Date: Thu, 03 Mar 2022 15:21:25
Message-Id: 1646320826.93f52b75819903bbd4374b6a9a4d839146967edf.conikost@gentoo
1 commit: 93f52b75819903bbd4374b6a9a4d839146967edf
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 3 15:20:26 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 3 15:20:26 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93f52b75
7
8 app-misc/dtach: update EAPI 6 -> 8
9
10 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
11
12 app-misc/dtach/dtach-0.9-r1.ebuild | 18 ++++++++++++++++++
13 1 file changed, 18 insertions(+)
14
15 diff --git a/app-misc/dtach/dtach-0.9-r1.ebuild b/app-misc/dtach/dtach-0.9-r1.ebuild
16 new file mode 100644
17 index 000000000000..91555efd05b3
18 --- /dev/null
19 +++ b/app-misc/dtach/dtach-0.9-r1.ebuild
20 @@ -0,0 +1,18 @@
21 +# Copyright 1999-2022 Gentoo Authors
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=8
25 +
26 +DESCRIPTION="Emulates the detach feature of screen"
27 +HOMEPAGE="http://dtach.sourceforge.net/ https://github.com/crigler/dtach"
28 +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
29 +
30 +SLOT="0"
31 +LICENSE="GPL-2+"
32 +KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos"
33 +
34 +src_install() {
35 + dobin dtach
36 + doman dtach.1
37 + einstalldocs
38 +}