Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/picocom/
Date: Mon, 25 Jul 2016 22:17:46
Message-Id: 1469485036.56c2a875e44e938015ea92ed1df760f51b90bf7c.radhermit@gentoo
1 commit: 56c2a875e44e938015ea92ed1df760f51b90bf7c
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 25 22:15:44 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 25 22:17:16 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56c2a875
7
8 net-dialup/picocom: version bump to 2.1
9
10 net-dialup/picocom/Manifest | 1 +
11 net-dialup/picocom/picocom-2.1.ebuild | 30 ++++++++++++++++++++++++++++++
12 2 files changed, 31 insertions(+)
13
14 diff --git a/net-dialup/picocom/Manifest b/net-dialup/picocom/Manifest
15 index df6fb7c..66403da 100644
16 --- a/net-dialup/picocom/Manifest
17 +++ b/net-dialup/picocom/Manifest
18 @@ -1 +1,2 @@
19 DIST picocom-1.7.tar.gz 42857 SHA256 d0f31c8f7a215a76922d30c81a52b9a2348c89e02a84935517002b3bc2c1129e SHA512 a222cc61be1e3e9759d8d6269348f6ac13159089e41b5a6aade3dc15abab8d76571a91c970f14af89244055f8bb9adf1ad5b336d7a9b4db5a9449558b86577ec WHIRLPOOL 1bb3b05e2fa111a55611e2586d93b16adeca397f368f1c6f3309f36490405afabbc9875dce262e548aa105c5f128ee004eaa7ec47772908e69689ff1ef68838f
20 +DIST picocom-2.1.tar.gz 89281 SHA256 6b152fc5f816eaef6b86336a4cec7cf1496b7c712061e5aea5a36f143a0b09ed SHA512 0df692118e3cfa27edd8ff9d5abbde8a9dc02fb015476ab1469337d616eb69411db125a967107276fb50bc58e7b9748429b9ded4943712a082a10827d595c03e WHIRLPOOL 6c0a3e1080dd49ad2fd9863fd3c5cb21d9bbaca4b580145ffd20b76566109a4a18ee6b837bd192254848370206319e963cd07fe93955f85a2459297ad228c641
21
22 diff --git a/net-dialup/picocom/picocom-2.1.ebuild b/net-dialup/picocom/picocom-2.1.ebuild
23 new file mode 100644
24 index 0000000..9fb2b22
25 --- /dev/null
26 +++ b/net-dialup/picocom/picocom-2.1.ebuild
27 @@ -0,0 +1,30 @@
28 +# Copyright 1999-2016 Gentoo Foundation
29 +# Distributed under the terms of the GNU General Public License v2
30 +# $Id$
31 +
32 +EAPI=6
33 +
34 +inherit toolchain-funcs
35 +
36 +DESCRIPTION="minimal dumb-terminal emulation program"
37 +HOMEPAGE="https://github.com/npat-efault/picocom"
38 +SRC_URI="https://github.com/npat-efault/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
39 +
40 +LICENSE="GPL-2"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
43 +IUSE=""
44 +
45 +src_compile() {
46 + # CPPFLAGS is shared between CFLAGS and CXXFLAGS, but there is no
47 + # C++ file, and the pre-processor is never called directly, this
48 + # is easier than patching it out.
49 + emake LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS} ${CPPFLAGS} -Wall" \
50 + CC="$(tc-getCC)"
51 +}
52 +
53 +src_install() {
54 + dobin picocom pc{asc,xm,ym,zm}
55 + doman picocom.1
56 + dodoc CHANGES.old CONTRIBUTORS README.md
57 +}