Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ttytter/
Date: Fri, 02 Jun 2017 17:31:30
Message-Id: 1496423658.d12d8da3a8519e604db3c4d0f293ff3358f89373.soap@gentoo
1 commit: d12d8da3a8519e604db3c4d0f293ff3358f89373
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 2 17:14:18 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 2 17:14:18 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d12d8da3
7
8 net-misc/ttytter: [QA] Use proper distfile name
9
10 Bug: https://bugs.gentoo.org/show_bug.cgi?id=619854
11 Package-Manager: Portage-2.3.6, Repoman-2.3.2
12
13 net-misc/ttytter/Manifest | 2 +-
14 net-misc/ttytter/ttytter-2.1.00.ebuild | 30 +++++++++++++++---------------
15 2 files changed, 16 insertions(+), 16 deletions(-)
16
17 diff --git a/net-misc/ttytter/Manifest b/net-misc/ttytter/Manifest
18 index 859954b473e..e05e8c08500 100644
19 --- a/net-misc/ttytter/Manifest
20 +++ b/net-misc/ttytter/Manifest
21 @@ -1 +1 @@
22 -DIST 2.1.00.txt 238284 SHA256 6292ada5d238009c74345c48a66e59b3c0e4e084a733715953e408bb18191898 SHA512 79629d62ab2a9fd7de82347795f75f9dc850bb6051682af112f4db1362b174f2b4c3df9331483c40461fd5ba7f8dcb325aaee605d2b850f0f7b635afa8fab7b6 WHIRLPOOL 9e4a0fe5e535a79e8065238909ad049b4b6330f7444b2292fd1d0c3fb235a72cdfa60334c1f23f8415503b2224f70ed5ecf4472694bdbcb0791100683c8ee172
23 +DIST ttytter-2.1.00.txt 238320 SHA256 86c6e7767c65e3179d4ed6368e27df5c4b200285207c3df3164c5a84a73517b1 SHA512 06b52275c454b7ad772baddcc64c311633fa35cc038e5a62895bbe056bc117e60feaae5a3e83917ec506ca3411e66619c84fbcb8cc7db6428082d14182813cc4 WHIRLPOOL df83cb418635eedd0bb4cd9aefe8af5057d36bf9776d701a4e541fc933c89ed108e0f8e501a30fd20626c32ca55eb5d44631344a0ffd70c6e2db75afa4398e38
24
25 diff --git a/net-misc/ttytter/ttytter-2.1.00.ebuild b/net-misc/ttytter/ttytter-2.1.00.ebuild
26 index f659a1db7f1..585c023d30e 100644
27 --- a/net-misc/ttytter/ttytter-2.1.00.ebuild
28 +++ b/net-misc/ttytter/ttytter-2.1.00.ebuild
29 @@ -1,35 +1,35 @@
30 -# Copyright 1999-2013 Gentoo Foundation
31 +# Copyright 1999-2017 Gentoo Foundation
32 # Distributed under the terms of the GNU General Public License v2
33
34 -EAPI="5"
35 +EAPI=6
36
37 -inherit readme.gentoo
38 +inherit readme.gentoo-r1
39
40 DESCRIPTION="A multi-functional, console-based Twitter client"
41 HOMEPAGE="http://www.floodgap.com/software/ttytter/"
42 -SRC_URI="http://www.floodgap.com/software/ttytter/dist2/${PV}.txt"
43 +SRC_URI="http://www.floodgap.com/software/ttytter/dist2/${PV}.txt -> ${P}.txt"
44
45 LICENSE="FFSL"
46 SLOT="0"
47 KEYWORDS="amd64 x86"
48 IUSE=""
49 +
50 DEPEND=""
51 RDEPEND=">=dev-lang/perl-5.8
52 || ( net-misc/curl www-client/lynx )"
53
54 -pkg_setup() {
55 - DOC_CONTENTS="Please consult the following webpage on how to
56 - configure your client.
57 - http://www.floodgap.com/software/ttytter/dl.html"
58 -}
59 +S=${WORKDIR}
60
61 -S="${WORKDIR}"
62 +src_install() {
63 + newbin "${DISTDIR}/${A}" ${PN}
64
65 -src_unpack() {
66 - cp "${DISTDIR}"/${A} ${WORKDIR}/${PN} || die
67 + local DOC_CONTENTS="
68 + Please consult the following webpage on how to
69 + configure your client.
70 + http://www.floodgap.com/software/ttytter/dl.html"
71 + readme.gentoo_create_doc
72 }
73
74 -src_install() {
75 - dobin ${PN}
76 - readme.gentoo_create_doc
77 +pkg_postinst() {
78 + readme.gentoo_print_elog
79 }