public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Robin H. Johnson" <robbat2@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/minicom/
Date: Tue, 18 Apr 2017 17:20:26 +0000 (UTC)	[thread overview]
Message-ID: <1492536022.2bb44964467c8e15a9f38db895418ccd4ee60762.robbat2@gentoo> (raw)

commit:     2bb44964467c8e15a9f38db895418ccd4ee60762
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 18 17:20:01 2017 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Tue Apr 18 17:20:22 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bb44964

net-dialup/minicom: bump.

Package-Manager: portage-2.3.3
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>

 net-dialup/minicom/Manifest             |  1 +
 net-dialup/minicom/minicom-2.7.1.ebuild | 60 +++++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/net-dialup/minicom/Manifest b/net-dialup/minicom/Manifest
index 6a7bb67ca2a..63f915767f5 100644
--- a/net-dialup/minicom/Manifest
+++ b/net-dialup/minicom/Manifest
@@ -1,2 +1,3 @@
 DIST minicom-2.6.tar.gz 830255 SHA256 ea5fe79c22dcb115cf5ed287b0e7a69e069bedd39889aa89b1a23f64f53fceb3 SHA512 96345e0c7b5991d3320fb4478b26717efdcdde307cd1cd065be424456bd90e528405c889a8aebaf6a67f3c614e4858825ec7f32769f2069f1b2e3ec5a2556023 WHIRLPOOL 7bfcb9a9609dc85585c808c8027f14406c1ff72771262d3c5beee9209078db9a58396d272333eb1ec6f97c0013b6a3792e0a1444cb737db4c202ccc90b8b1483
+DIST minicom-2.7.1.tar.gz 863544 SHA256 9ac3a663b82f4f5df64114b4792b9926b536c85f59de0f2d2b321c7626a904f4 SHA512 eb9679ac3a3d3585ea06c54407567898e50b981378656e7f8a241071c91054ff0928cc9023d2c79d1936588cdffa9426f4962b556e8daa1783add0c5ac59b5af WHIRLPOOL f93642d6cc3c8dee987d461a67e4a98b55d0ebea1a0c1b2dc8564a9af66dbf9aaad3e4cb2e161d127b965d955637882eda601034b863b32ee776925db969418e
 DIST minicom-2.7.tar.gz 863544 SHA256 9ac3a663b82f4f5df64114b4792b9926b536c85f59de0f2d2b321c7626a904f4 SHA512 eb9679ac3a3d3585ea06c54407567898e50b981378656e7f8a241071c91054ff0928cc9023d2c79d1936588cdffa9426f4962b556e8daa1783add0c5ac59b5af WHIRLPOOL f93642d6cc3c8dee987d461a67e4a98b55d0ebea1a0c1b2dc8564a9af66dbf9aaad3e4cb2e161d127b965d955637882eda601034b863b32ee776925db969418e

diff --git a/net-dialup/minicom/minicom-2.7.1.ebuild b/net-dialup/minicom/minicom-2.7.1.ebuild
new file mode 100644
index 00000000000..c5d934c68bf
--- /dev/null
+++ b/net-dialup/minicom/minicom-2.7.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils autotools
+
+STUPID_NUM="3977"
+DESCRIPTION="Serial Communication Program"
+HOMEPAGE="http://alioth.debian.org/projects/minicom"
+SRC_URI="https://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
+IUSE="nls"
+
+COMMON_DEPEND="sys-libs/ncurses:="
+DEPEND="${COMMON_DEPEND}
+	nls? ( sys-devel/gettext )"
+RDEPEND="${COMMON_DEPEND}
+	net-dialup/lrzsz"
+
+DOCS="AUTHORS ChangeLog NEWS README doc/minicom.FAQ"
+S="${WORKDIR}/${PN}-2.7" # 2.7.1 specific
+
+# Supported languages and translated documentation
+# Be sure all languages are prefixed with a single space!
+MY_AVAILABLE_LINGUAS=" cs da de es fi fr hu id ja nb pl pt_BR ro ru rw sv vi zh_TW"
+IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-2.3-gentoo-runscript.patch
+	"${FILESDIR}"/${PN}-2.7-lockdir.patch
+)
+
+src_prepare() {
+	default
+	mv "${S}"/configure.{in,ac}
+	eautoreconf
+}
+
+src_configure() {
+	# Lockdir must exist if not manually specified.
+	# /var/lock is created by openrc.
+	LOCKDIR=/var/lock
+	econf \
+		--sysconfdir="${EPREFIX}"/etc/${PN} \
+		--enable-lock-dir="${LOCKDIR}" \
+		$(use_enable nls)
+}
+
+src_install() {
+	default
+	insinto /etc/minicom
+	doins "${FILESDIR}"/minirc.dfl
+}
+
+pkg_preinst() {
+	[[ -s ${EROOT}/etc/minicom/minirc.dfl ]] && rm -f "${ED}"/etc/minicom/minirc.dfl
+}


             reply	other threads:[~2017-04-18 17:20 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-18 17:20 Robin H. Johnson [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-11-29 13:45 [gentoo-commits] repo/gentoo:master commit in: net-dialup/minicom/ Arthur Zamarin
2023-11-29 13:18 Arthur Zamarin
2023-11-29 11:45 Arthur Zamarin
2023-11-26 12:38 Arthur Zamarin
2023-11-26 12:38 Arthur Zamarin
2023-11-26 12:38 Arthur Zamarin
2023-11-26 12:38 Arthur Zamarin
2023-08-25  7:49 Viorel Munteanu
2023-08-20  6:24 Viorel Munteanu
2023-04-19 11:14 Viorel Munteanu
2023-04-19 11:07 Sam James
2023-04-19 10:16 Arthur Zamarin
2023-04-19  9:46 Sam James
2023-04-19  9:45 Sam James
2023-04-19  9:45 Sam James
2023-04-19  9:45 Sam James
2023-04-19  9:43 Sam James
2023-03-19  6:51 Viorel Munteanu
2023-03-02 16:49 Arthur Zamarin
2023-03-02 16:49 Arthur Zamarin
2023-03-02 16:48 Arthur Zamarin
2023-03-01 17:57 Arthur Zamarin
2023-03-01 17:33 Arthur Zamarin
2023-03-01 17:33 Arthur Zamarin
2023-03-01 16:36 Arthur Zamarin
2022-01-17  5:48 Sam James
2021-09-27 16:36 Marek Szuba
2021-05-04 19:13 Sam James
2021-05-01 14:06 Sam James
2021-04-30 23:39 Sam James
2021-04-30 23:37 Sam James
2021-04-30 23:29 Sam James
2021-04-30 20:28 Sergei Trofimovich
2021-04-30 15:23 Agostino Sarubbo
2020-01-19 12:58 Sergei Trofimovich
2018-01-05 22:02 Ulrich Müller
2017-10-12 17:01 Tim Harder
2017-10-12 17:01 Tim Harder
2017-10-12 17:01 Tim Harder
2017-05-04 20:03 Markus Meier
2017-04-30  9:37 Agostino Sarubbo
2017-04-24 12:44 Tobias Klausmann
2017-04-22 13:19 Jeroen Roovers
2017-01-29 19:33 Fabian Groffen
2016-01-22  8:28 Michael Palimaka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1492536022.2bb44964467c8e15a9f38db895418ccd4ee60762.robbat2@gentoo \
    --to=robbat2@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox