Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/conspy/, sys-apps/conspy/files/
Date: Thu, 31 Oct 2019 10:38:13
Message-Id: 1572518284.b4fd1e856700840d04a0ce75d6d339bac4f6391e.jer@gentoo
1 commit: b4fd1e856700840d04a0ce75d6d339bac4f6391e
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 31 10:37:40 2019 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 31 10:38:04 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4fd1e85
7
8 sys-apps/conspy: Version 1.14
9
10 Package-Manager: Portage-2.3.78, Repoman-2.3.17
11 Fixes: https://bugs.gentoo.org/690238
12 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>
13
14 sys-apps/conspy/Manifest | 1 +
15 sys-apps/conspy/conspy-1.14.ebuild | 35 +++++++++++++++++++++++++++
16 sys-apps/conspy/files/conspy-1.14-tinfo.patch | 10 ++++++++
17 3 files changed, 46 insertions(+)
18
19 diff --git a/sys-apps/conspy/Manifest b/sys-apps/conspy/Manifest
20 index 1ff2956ea3e..1cf2e9873c2 100644
21 --- a/sys-apps/conspy/Manifest
22 +++ b/sys-apps/conspy/Manifest
23 @@ -1 +1,2 @@
24 DIST conspy-1.10.tar.gz 25211 BLAKE2B 2cb2d2c02bc38ab26bc2f08737c7e2f87dacb4fd04240bda63900e0b9018f98d28b2ee2fa00dba5ca931d59b823a72f2e0dd282828b081b31d91dd64c652dbef SHA512 f22ddff140935f767bff34c8c274ff088ebae049ac61c543ad37fa126bbab2e1cec72bdd93f51cb513d00368b909935491d06a36dbff215f17cdea7a658dbad2
25 +DIST conspy-1.14.tar.gz 26637 BLAKE2B 6fd4e3c35bf978ca7041aac0de23745a5c7cb200e4b29ec841cc195ea75194ed9a65ef46c85fc40b549ca68593ddab1af39499725880da403a602f97650982cd SHA512 46c25770e399c46de5aadcfbf4cff4ab5bc0f83771d6930b5752b9493f8c6864cc86d787ef6f297a00944e65987a56f6bf2cf99975eff689864745c0eef45b0d
26
27 diff --git a/sys-apps/conspy/conspy-1.14.ebuild b/sys-apps/conspy/conspy-1.14.ebuild
28 new file mode 100644
29 index 00000000000..1185be89bd3
30 --- /dev/null
31 +++ b/sys-apps/conspy/conspy-1.14.ebuild
32 @@ -0,0 +1,35 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +inherit autotools
38 +
39 +DESCRIPTION="Remote control for Linux virtual consoles"
40 +HOMEPAGE="http://conspy.sourceforge.net/"
41 +SRC_URI="mirror://sourceforge/${PN}/${P}-1/${P}.tar.gz"
42 +
43 +LICENSE="AGPL-3"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +RDEPEND="
48 + sys-libs/ncurses:0=
49 +"
50 +DEPEND="
51 + ${RDEPEND}
52 +"
53 +PATCHES=(
54 + "${FILESDIR}"/${PN}-1.14-tinfo.patch
55 +)
56 +DOCS=(
57 + ChangeLog.txt README.txt ${PN}.html
58 +)
59 +
60 +src_prepare() {
61 + default
62 + eautoreconf
63 +}
64 +
65 +src_install() {
66 + default
67 +}
68
69 diff --git a/sys-apps/conspy/files/conspy-1.14-tinfo.patch b/sys-apps/conspy/files/conspy-1.14-tinfo.patch
70 new file mode 100644
71 index 00000000000..55ee90b61a1
72 --- /dev/null
73 +++ b/sys-apps/conspy/files/conspy-1.14-tinfo.patch
74 @@ -0,0 +1,10 @@
75 +--- a/configure.ac
76 ++++ b/configure.ac
77 +@@ -11,6 +11,7 @@
78 + AC_HEADER_STDC
79 + AC_CHECK_HEADERS([fcntl.h getopt.h stdarg.h stdlib.h string.h sys/ioctl.h sys/time.h termios.h unistd.h])
80 + AC_CHECK_LIB(ncurses, initscr)
81 ++AC_SEARCH_LIBS(putp, tinfo)
82 +
83 + # Checks for typedefs, structures, and compiler characteristics.
84 + AC_HEADER_TIME