Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/mt-st/
Date: Sun, 30 Aug 2020 11:37:29
Message-Id: 1598785365.03071b67da7e0ac88179ec82f9c6fd28e2634ce3.jer@gentoo
1 commit: 03071b67da7e0ac88179ec82f9c6fd28e2634ce3
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 30 11:02:28 2020 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 30 11:02:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03071b67
7
8 app-arch/mt-st: Version 1.4
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
12
13 app-arch/mt-st/Manifest | 1 +
14 app-arch/mt-st/mt-st-1.4.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/app-arch/mt-st/Manifest b/app-arch/mt-st/Manifest
18 index 2a76fd467c1..4e723aba2a5 100644
19 --- a/app-arch/mt-st/Manifest
20 +++ b/app-arch/mt-st/Manifest
21 @@ -1 +1,2 @@
22 DIST mt-st-1.3.tar.gz 35341 BLAKE2B c58eee9bd58a3fa5105fe3f8dfb56f1af1c5ed73f99e5179ea14bc11d66151d1e6b6c99f61194c700ed79ce10a7e7f75f78ffe9b7d2c45c85e620d4da1aaeb5c SHA512 1d026ae85e1ca367e72f1810042314070f592306d9ddec331b95ea4e1153dc3edee68d8798bdf7e055a4cf9c67ec8c539e5d188e87f0546f48b5f4ee4bc6a820
23 +DIST mt-st-1.4.tar.gz 37864 BLAKE2B 25ae656b6442e53570366405ba76da9150cf1d4fe33c612bf922d8be967ce6b60be191948507a62bb1881d4be63ed192f7d03f1d63c38f5772aec2f3d2fe455b SHA512 e6655a5957d3ac470c0cb0a1955a12397aa22f3ea1a427cf776f6bf2d6fd665439b2bfa54c3870b7974da537f0fe71d3be43126be1a7db903e6bc7be4cfb10ec
24
25 diff --git a/app-arch/mt-st/mt-st-1.4.ebuild b/app-arch/mt-st/mt-st-1.4.ebuild
26 new file mode 100644
27 index 00000000000..8677862cdc0
28 --- /dev/null
29 +++ b/app-arch/mt-st/mt-st-1.4.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +inherit toolchain-funcs
36 +
37 +DESCRIPTION="control magnetic tape drive operation"
38 +HOMEPAGE="https://github.com/iustin/mt-st"
39 +SRC_URI="https://github.com/iustin/mt-st/releases/download/v${PV}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
44 +
45 +src_configure() {
46 + tc-export CC
47 +}
48 +
49 +src_install() {
50 + dosbin mt stinit
51 + doman mt.1 stinit.8
52 + dodoc README* stinit.def.examples
53 +}