public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2015-08-12 15:56 Mike Frysinger
  0 siblings, 0 replies; 33+ messages in thread
From: Mike Frysinger @ 2015-08-12 15:56 UTC (permalink / raw
  To: gentoo-commits

commit:     444fe3c9574385c754d4f36805a15e77e4b81ae8
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 12 15:56:06 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Aug 12 15:56:38 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=444fe3c9

net-misc/netkit-telnetd: fix build when /bin/sh->dash

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
index 7e7f7a2..e8fdf32 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
@@ -44,6 +44,11 @@ src_prepare() {
 	# gnu source. This is needed for gcc-3.4.x (needs to be pushed
 	# back to the deb folk?)
 	epatch "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch
+
+	# Fix portability issues.
+	sed -i \
+		-e 's:echo -n:printf %s:' \
+		configure || die
 }
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2015-08-12 15:56 Mike Frysinger
  0 siblings, 0 replies; 33+ messages in thread
From: Mike Frysinger @ 2015-08-12 15:56 UTC (permalink / raw
  To: gentoo-commits

commit:     56962507dace3d8a5f32c250c72dfe11af2e1c82
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 12 15:55:34 2015 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Wed Aug 12 15:56:37 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56962507

net-misc/netkit-telnetd: update to EAPI=5

This way we can use subslots w/ncurses.

 .../netkit-telnetd/netkit-telnetd-0.17-r10.ebuild  | 45 ++++++++++++----------
 1 file changed, 24 insertions(+), 21 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
index a02cf27..7e7f7a2 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
@@ -2,6 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+EAPI="5"
+
 inherit eutils toolchain-funcs
 
 PATCHLEVEL=36
@@ -21,15 +23,13 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86"
 IUSE=""
 
-DEPEND=">=sys-libs/ncurses-5.2
+DEPEND=">=sys-libs/ncurses-5.2:=
 	!net-misc/telnet-bsd"
 RDEPEND="${DEPEND}"
 
 S=${WORKDIR}/netkit-telnet-${PV}
 
-src_unpack() {
-	unpack ${A}
-	cd "${S}"
+src_prepare() {
 	# Patch: [0]
 	# Gentoo lacks a maintainer for this package right now. And a
 	# security problem arose. While reviewing our options for how
@@ -46,9 +46,10 @@ src_unpack() {
 	epatch "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch
 }
 
-src_compile() {
+src_configure() {
 	tc-export CC CXX
 
+	# Not a real autoconf script.
 	./configure --prefix=/usr || die
 
 	sed -i \
@@ -56,26 +57,28 @@ src_compile() {
 		-e "s:^\(LDFLAGS=\).*:\1${LDFLAGS}:" \
 		-e "s:-Wpointer-arith::" \
 		MCONFIG || die
+}
 
-	emake || die
-	cd telnetlogin && emake || die
+src_compile() {
+	emake
+	emake -C telnetlogin
 }
 
 src_install() {
-	dobin telnet/telnet || die
+	dobin telnet/telnet
 
-	dosbin telnetd/telnetd || die
-	dosym telnetd /usr/sbin/in.telnetd || die
-	dosbin telnetlogin/telnetlogin || die
-	doman telnet/telnet.1 || die
-	doman telnetd/*.8 || die
-	doman telnetd/issue.net.5 || die
-	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8 || die
-	doman telnetlogin/telnetlogin.8 || die
-	dodoc BUGS ChangeLog README || die
-	dodoc "${FILESDIR}"/net.issue.sample || die
-	newdoc telnet/README README.telnet || die
-	newdoc telnet/TODO TODO.telnet || die
+	dosbin telnetd/telnetd
+	dosym telnetd /usr/sbin/in.telnetd
+	dosbin telnetlogin/telnetlogin
+	doman telnet/telnet.1
+	doman telnetd/*.8
+	doman telnetd/issue.net.5
+	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
+	doman telnetlogin/telnetlogin.8
+	dodoc BUGS ChangeLog README
+	dodoc "${FILESDIR}"/net.issue.sample
+	newdoc telnet/README README.telnet
+	newdoc telnet/TODO TODO.telnet
 	insinto /etc/xinetd.d
-	newins "${FILESDIR}"/telnetd.xinetd telnetd || die
+	newins "${FILESDIR}"/telnetd.xinetd telnetd
 }


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2016-03-09 14:18 Patrice Clement
  0 siblings, 0 replies; 33+ messages in thread
From: Patrice Clement @ 2016-03-09 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     2ae20ea6d193860d286c30f80652f06f16a7dd84
Author:     Paolo Pedroni <PPed72 <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Wed Mar  9 11:34:38 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 14:04:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae20ea6

net-misc/netkit-telnetd: version bump for new debian patchlevel

See-Also: https://packages.debian.org/source/stretch/netkit-telnet
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r11 | 89 +++++++++++++++++++++++++
 1 file changed, 89 insertions(+)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11 b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11
new file mode 100644
index 0000000..0626f1d
--- /dev/null
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11
@@ -0,0 +1,89 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils toolchain-funcs
+
+PATCHLEVEL=40
+DESCRIPTION="Standard Linux telnet client and server"
+#old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
+# This might be the best HOMEPAGE now?
+HOMEPAGE="https://launchpad.net/netkit-telnet"
+# http://packages.debian.org/stablesource/netkit-telnet
+# http://packages.debian.org/testing/source/netkit-telnet
+# No upstream mirror exists anymore?
+# old ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
+SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
+	mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-${PATCHLEVEL}.debian.tar.xz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE=""
+
+DEPEND=">=sys-libs/ncurses-5.2:=
+	!net-misc/telnet-bsd"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/netkit-telnet-${PV}
+
+src_prepare() {
+	# Patch: [0]
+	# Gentoo lacks a maintainer for this package right now. And a
+	# security problem arose. While reviewing our options for how
+	# should we proceed with the security bug we decided it would be
+	# better to just stay in sync with debian's own netkit-telnet
+	# package. Lots of bug fixes by them over time which were not in
+	# our telnetd.
+	EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" epatch "${WORKDIR}"/debian/patches
+
+	# Patch: [1]
+	# after the deb patch we need to add a small patch that defines
+	# gnu source. This is needed for gcc-3.4.x (needs to be pushed
+	# back to the deb folk?)
+	epatch "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch
+
+	# Fix portability issues.
+	sed -i \
+		-e 's:echo -n:printf %s:' \
+		configure || die
+}
+
+src_configure() {
+	tc-export CC CXX
+
+	# Not a real autoconf script.
+	./configure --prefix=/usr || die
+
+	sed -i \
+		-e "s:-pipe -O2:${CFLAGS}:" \
+		-e "s:^\(LDFLAGS=\).*:\1${LDFLAGS}:" \
+		-e "s:-Wpointer-arith::" \
+		MCONFIG || die
+}
+
+src_compile() {
+	emake
+	emake -C telnetlogin
+}
+
+src_install() {
+	dobin telnet/telnet
+
+	dosbin telnetd/telnetd
+	dosym telnetd /usr/sbin/in.telnetd
+	dosbin telnetlogin/telnetlogin
+	doman telnet/telnet.1
+	doman telnetd/*.8
+	doman telnetd/issue.net.5
+	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
+	doman telnetlogin/telnetlogin.8
+	dodoc BUGS ChangeLog README
+	dodoc "${FILESDIR}"/net.issue.sample
+	newdoc telnet/README README.telnet
+	newdoc telnet/TODO TODO.telnet
+	insinto /etc/xinetd.d
+	newins "${FILESDIR}"/telnetd.xinetd telnetd
+}


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2016-03-09 14:18 Patrice Clement
  0 siblings, 0 replies; 33+ messages in thread
From: Patrice Clement @ 2016-03-09 14:18 UTC (permalink / raw
  To: gentoo-commits

commit:     86deed72ee7bed4bf317740d6af1aeced5c53a66
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 14:04:15 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 14:04:53 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86deed72

net-misc/netkit-telnetd: Assign package to new proxy maintainer Paolo Pedroni <paolo.pedroni <AT> iol.it>.

Package-Manager: portage-2.2.26

 net-misc/netkit-telnetd/metadata.xml | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/metadata.xml b/net-misc/netkit-telnetd/metadata.xml
index b0cefbd..f964291 100644
--- a/net-misc/netkit-telnetd/metadata.xml
+++ b/net-misc/netkit-telnetd/metadata.xml
@@ -1,7 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>paolo.pedroni@iol.it</email>
+		<name>Paolo Pedroni</name>
+		<description>Proxied Maintainer, assign bugs to him</description>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Gentoo Proxy Maintainers Project</name>
+	</maintainer>
 	<longdescription>The telnetd program is a server which supports the DARPA telnet interactive communication protocol.</longdescription>
 	<upstream>
 		<remote-id type="launchpad">netkit-telnet</remote-id>


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2016-03-09 17:15 Patrice Clement
  0 siblings, 0 replies; 33+ messages in thread
From: Patrice Clement @ 2016-03-09 17:15 UTC (permalink / raw
  To: gentoo-commits

commit:     9a9939cbab2d666a500f08afd65c48fb290d7c5d
Author:     Paolo Pedroni <PPed72 <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Wed Mar  9 16:59:40 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 17:02:34 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a9939cb

net-misc/netkit-telnetd: fix new ebuild name

This commit closes #1017.

Pull-Request: https://github.com/gentoo/gentoo/pull/1017
Acked-by: Patrice Clement <monsieurp <AT> gentoo.org>
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 .../{netkit-telnetd-0.17-r11 => netkit-telnetd-0.17-r11.ebuild}           | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11 b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11.ebuild
similarity index 100%
rename from net-misc/netkit-telnetd/netkit-telnetd-0.17-r11
rename to net-misc/netkit-telnetd/netkit-telnetd-0.17-r11.ebuild


^ permalink raw reply	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2016-03-09 18:36 Patrice Clement
  0 siblings, 0 replies; 33+ messages in thread
From: Patrice Clement @ 2016-03-09 18:36 UTC (permalink / raw
  To: gentoo-commits

commit:     064b7293db7c65b3e37f3e19496492202c34ca38
Author:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 18:23:11 2016 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 18:23:28 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=064b7293

net-misc/netkit-telnetd: Fix Manifest.

Package-Manager: portage-2.2.26

 net-misc/netkit-telnetd/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest
index e05fcdf..6e9d1fd 100644
--- a/net-misc/netkit-telnetd/Manifest
+++ b/net-misc/netkit-telnetd/Manifest
@@ -1,2 +1,3 @@
 DIST netkit-telnet-0.17.tar.gz 133749 SHA256 9c80d5c7838361a328fb6b60016d503def9ce53ad3c589f3b08ff71a2bb88e00 SHA512 e2cfabed12326af5e288def1821353eacffb4586008263dcd1bed1a9dd9d8548e51e68d7ede58ea75927783ba534ea8807ec722271843a77146f064f3d826dd3 WHIRLPOOL 0a04763f8d42b1985295f9db3472aa80f4f1cc96a151ab66e34275c18809dcbc1a072c4754c0a989cca576a7d7ff6d8795865f6b372b1fe4953dbe0e87665728
 DIST netkit-telnet_0.17-36.diff.gz 27226 SHA256 cd192e3acbef83a3e8fbacfa26e1f6ededfe50587e9b372b5a38ce5928d746f7 SHA512 7cd1ec5f96fcacee551700d65f62b6c217e0d9b5220a218aa60fceb3883d0754831606a247355dc2bf6486a02175b8d9b27058d6bc788de8e1b80545fdedbf9a WHIRLPOOL c651f4cacabe5b42fefb9f9fa1f306d5aafad7c8b3e0c5eb6afcf15609487ef726991a1e5eb88c7f95364a1e166b26f01814b3671b72ffec14673e5927898a7b
+DIST netkit-telnet_0.17-40.debian.tar.xz 36104 SHA256 41e0f50d1d674e487dd42d7b9aac25973a2d45b2b78f301a7f01ca5b34d66e20 SHA512 7fd13a7bf95a9b09b5a81080d2b8904150646f5b48ec2f8f0736b41caaf640a6369ab5fcd056677de029e7c571586982a7e8354f74c3b1f94d048d31d7a3e1d2 WHIRLPOOL c7fe212485206080fa2fd697f31caa2c872b81c4fff3cfbd9117d26184ce39b554fd6eb42916d9f96911c73217a98a0f15b7ba03fde59f9b6632560c9e2f66ad


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2017-01-15  3:12 Göktürk Yüksek
  0 siblings, 0 replies; 33+ messages in thread
From: Göktürk Yüksek @ 2017-01-15  3:12 UTC (permalink / raw
  To: gentoo-commits

commit:     0324145fd880eba225d1876b6e33757d3c19f80c
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 15 02:52:57 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 03:12:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0324145f

net-misc/netkit-telnetd: remove the obsolete <description> tag

Package-Manager: portage-2.3.0

 net-misc/netkit-telnetd/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/metadata.xml b/net-misc/netkit-telnetd/metadata.xml
index f964291..428ad1b 100644
--- a/net-misc/netkit-telnetd/metadata.xml
+++ b/net-misc/netkit-telnetd/metadata.xml
@@ -4,7 +4,6 @@
 	<maintainer type="person">
 		<email>paolo.pedroni@iol.it</email>
 		<name>Paolo Pedroni</name>
-		<description>Proxied Maintainer, assign bugs to him</description>
 	</maintainer>
 	<maintainer type="project">
 		<email>proxy-maint@gentoo.org</email>


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2018-07-23 15:57 Tony Vroon
  0 siblings, 0 replies; 33+ messages in thread
From: Tony Vroon @ 2018-07-23 15:57 UTC (permalink / raw
  To: gentoo-commits

commit:     5d43d1de40a45412ec05057af531f4dd2ca7b7d6
Author:     PPed72 <paolo.pedroni <AT> iol <DOT> it>
AuthorDate: Mon Jul 23 13:51:55 2018 +0000
Commit:     Tony Vroon <chainsaw <AT> gentoo <DOT> org>
CommitDate: Mon Jul 23 15:57:44 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d43d1de

net-misc/netkit-telnetd: revbump to new Debian patchlevel

Remove old. EAPI 6.
Closes: https://bugs.gentoo.org/640620
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9325
Closes: https://bugs.gentoo.org/640620

 net-misc/netkit-telnetd/Manifest                               |  2 +-
 ...-telnetd-0.17-r11.ebuild => netkit-telnetd-0.17-r12.ebuild} | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest
index 343ada668ee..baf55850d14 100644
--- a/net-misc/netkit-telnetd/Manifest
+++ b/net-misc/netkit-telnetd/Manifest
@@ -1,3 +1,3 @@
 DIST netkit-telnet-0.17.tar.gz 133749 BLAKE2B 0eef225adeb0dd332ffd9cce0285213e6aa89f04263fb37e3dac35462492732265b2c29bd2a86277e39e0ad55267ff1a150f1140823c91d44c29cf6a20df8e7e SHA512 e2cfabed12326af5e288def1821353eacffb4586008263dcd1bed1a9dd9d8548e51e68d7ede58ea75927783ba534ea8807ec722271843a77146f064f3d826dd3
 DIST netkit-telnet_0.17-36.diff.gz 27226 BLAKE2B c19370f6462295bb7e8d09307121ec3356e9d1751b3ce5b7985844f54506351f633de381ffb3cd3209995c1826aaaa9ce716084742d4689d626b28aee8a3eb43 SHA512 7cd1ec5f96fcacee551700d65f62b6c217e0d9b5220a218aa60fceb3883d0754831606a247355dc2bf6486a02175b8d9b27058d6bc788de8e1b80545fdedbf9a
-DIST netkit-telnet_0.17-40.debian.tar.xz 36104 BLAKE2B 1582e8ea06c287c460f590bf4440a506820f0935d286508144105f18ed27529139a69416c694bd7920c79f41318be46afd37871e8beef35f63768ec99d538896 SHA512 7fd13a7bf95a9b09b5a81080d2b8904150646f5b48ec2f8f0736b41caaf640a6369ab5fcd056677de029e7c571586982a7e8354f74c3b1f94d048d31d7a3e1d2
+DIST netkit-telnet_0.17-41.debian.tar.xz 36592 BLAKE2B 6db35c25e14b219c15c4dd180f0dab064e5b101b42f29e7b71d99f797d22a51b376e6de148cf83fa479039f0ecbc811ecc36953dd89ae11f079b4ed42690d18f SHA512 4de0d51c6cc3c9113b38c9ab76553d22294a02a86d2e02a0481bdad77887782902d41f99eb5dd268bee175ebee5489b3e9871012234a7480a431ef47015cdf5c

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
similarity index 92%
rename from net-misc/netkit-telnetd/netkit-telnetd-0.17-r11.ebuild
rename to net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 6c1cadefb04..47aac67eb81 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r11.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="6"
 
 inherit eutils toolchain-funcs
 
-PATCHLEVEL=40
+PATCHLEVEL=41
 DESCRIPTION="Standard Linux telnet client and server"
 #old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
 # This might be the best HOMEPAGE now?
@@ -30,8 +30,8 @@ S=${WORKDIR}/netkit-telnet-${PV}
 
 src_prepare() {
 	# Patch: [0]
-	# Gentoo lacks a maintainer for this package right now. And a
-	# security problem arose. While reviewing our options for how
+	# Gentoo used to lack a maintainer for this package.
+	# A security problem arose. While reviewing our options for how
 	# should we proceed with the security bug we decided it would be
 	# better to just stay in sync with debian's own netkit-telnet
 	# package. Lots of bug fixes by them over time which were not in


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-03-26 14:01 Joonas Niilola
  0 siblings, 0 replies; 33+ messages in thread
From: Joonas Niilola @ 2020-03-26 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2a20151f44f68e3215a2ca7f926bcc51203a3a37
Author:     PPed72 <paolo.pedroni <AT> iol <DOT> it>
AuthorDate: Tue Mar 24 15:08:11 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 14:00:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a20151f

net-misc/netkit-telnetd: Fix 'sed' delimiter

Also fixes copyright date and attribution

Closes: https://bugs.gentoo.org/711050
Signed-off-by: Paolo Pedroni <paolo.pedroni <AT> iol.it>
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Closes: https://github.com/gentoo/gentoo/pull/15086
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index e041e858c76..4c17078b18a 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -46,7 +46,7 @@ src_prepare() {
 
 	# Fix portability issues.
 	sed -i \
-		-e 's:echo -n:printf %s:' \
+		-e 's/echo -n/printf %s/' \
 		configure || die
 	default
 }
@@ -58,9 +58,9 @@ src_configure() {
 	./configure --prefix=/usr || die
 
 	sed -i \
-		-e "s:-pipe -O2:${CFLAGS}:" \
-		-e "s:^\(LDFLAGS=\).*:\1${LDFLAGS}:" \
-		-e "s:-Wpointer-arith::" \
+		-e "s/-pipe -O2/${CFLAGS}/" \
+		-e "s/^\(LDFLAGS=\).*/\1${LDFLAGS}/" \
+		-e "s/-Wpointer-arith//" \
 		MCONFIG || die
 }
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-03-26 14:01 Joonas Niilola
  0 siblings, 0 replies; 33+ messages in thread
From: Joonas Niilola @ 2020-03-26 14:01 UTC (permalink / raw
  To: gentoo-commits

commit:     b429c38f6e9d9cfaaca7c98d05e69e0db979502f
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 26 13:43:06 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Thu Mar 26 14:00:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b429c38f

net-misc/netkit-telnetd: RedundantLongDescription

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/netkit-telnetd/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/metadata.xml b/net-misc/netkit-telnetd/metadata.xml
index 428ad1b8520..bd198f87243 100644
--- a/net-misc/netkit-telnetd/metadata.xml
+++ b/net-misc/netkit-telnetd/metadata.xml
@@ -9,7 +9,6 @@
 		<email>proxy-maint@gentoo.org</email>
 		<name>Gentoo Proxy Maintainers Project</name>
 	</maintainer>
-	<longdescription>The telnetd program is a server which supports the DARPA telnet interactive communication protocol.</longdescription>
 	<upstream>
 		<remote-id type="launchpad">netkit-telnet</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-05-08  6:25 Mart Raudsepp
  0 siblings, 0 replies; 33+ messages in thread
From: Mart Raudsepp @ 2020-05-08  6:25 UTC (permalink / raw
  To: gentoo-commits

commit:     24f27eb3a7eca2fd47a00d766de9a317b7128186
Author:     Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Thu May 21 09:44:15 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Fri May  8 06:23:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24f27eb3

net-misc/netkit-telnetd: arm64 keyworded (bug #705546)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index aacfc0d9e90..559f510fd68 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-06-08 16:34 Mart Raudsepp
  0 siblings, 0 replies; 33+ messages in thread
From: Mart Raudsepp @ 2020-06-08 16:34 UTC (permalink / raw
  To: gentoo-commits

commit:     67833e2418804f08ea7857ec8d2f2398bab48381
Author:     Sam James (sam_c) <sam <AT> cmpct <DOT> info>
AuthorDate: Mon Jun  8 01:17:11 2020 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Mon Jun  8 16:31:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67833e24

net-misc/netkit-telnetd: arm64 stable (bug #726850)

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Sam James (sam_c) <sam <AT> cmpct.info>
Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
index 0880b794523..4bbca3926ce 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-19 22:59 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2020-11-19 22:59 UTC (permalink / raw
  To: gentoo-commits

commit:     47754758f47adb0aefd85d395202b683200e1223
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 19 22:58:52 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 22:58:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47754758

net-misc/netkit-telnetd: Stabilize 0.17-r12 amd64, #755593

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 559f510fd68..71159074235 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-20  1:34 Thomas Deutschmann
  0 siblings, 0 replies; 33+ messages in thread
From: Thomas Deutschmann @ 2020-11-20  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     f0ca73d6fc04a870c541a5e5c19954c776c59e68
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 01:33:37 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 01:33:37 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0ca73d6

net-misc/netkit-telnetd: x86 stable (bug #755593)

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 71159074235..91b584063a2 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-20  2:02 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2020-11-20  2:02 UTC (permalink / raw
  To: gentoo-commits

commit:     30e6fb444a4e99d3b4649b3b11783f2744f57d63
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 01:58:41 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 01:58:41 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e6fb44

net-misc/netkit-telnetd: Stabilize 0.17-r12 arm64, #755593

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index ac9d4e51cd5..6b5d53c7649 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-20  2:02 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2020-11-20  2:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ec997ee07d14e0942452bc2d3035d497e72d5334
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 01:57:58 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 01:57:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec997ee0

net-misc/netkit-telnetd: Stabilize 0.17-r12 arm, #755593

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 91b584063a2..ac9d4e51cd5 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-20 20:01 Sergei Trofimovich
  0 siblings, 0 replies; 33+ messages in thread
From: Sergei Trofimovich @ 2020-11-20 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     589104b5ef306e92bde91bbdaad4339d2f6d2f57
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 20 19:59:21 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Nov 20 19:59:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589104b5

net-misc/netkit-telnetd: stable 0.17-r12 for sparc

stable wrt bug #755593

Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 6b5d53c7649..2628a601965 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-23  7:52 Sergei Trofimovich
  0 siblings, 0 replies; 33+ messages in thread
From: Sergei Trofimovich @ 2020-11-23  7:52 UTC (permalink / raw
  To: gentoo-commits

commit:     33c468d29bbca99fde610165ad019d8f5d36ebce
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 07:43:15 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 07:51:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c468d2

net-misc/netkit-telnetd: stable 0.17-r12 for ppc

stable wrt bug #755593

Package-Manager: Portage-3.0.10, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 2628a601965..e69406c64ae 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-23  7:58 Sergei Trofimovich
  0 siblings, 0 replies; 33+ messages in thread
From: Sergei Trofimovich @ 2020-11-23  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     f197ac8912ba1d5cedfe60824676493049980150
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 07:57:24 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 07:57:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f197ac89

net-misc/netkit-telnetd: stable 0.17-r12 for ppc64

stable wrt bug #755593

Package-Manager: Portage-3.0.10, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index e69406c64ae..1742b526357 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-23  8:01 Sergei Trofimovich
  0 siblings, 0 replies; 33+ messages in thread
From: Sergei Trofimovich @ 2020-11-23  8:01 UTC (permalink / raw
  To: gentoo-commits

commit:     e95a060e4c9584a90b86d55d5cf432a27a01b529
Author:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 23 07:59:54 2020 +0000
Commit:     Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 07:59:54 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e95a060e

net-misc/netkit-telnetd: stable 0.17-r12 for hppa

stable wrt bug #755593

Package-Manager: Portage-3.0.10, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index 1742b526357..c2f66be105d 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-11-23 21:36 Patrice Clement
  0 siblings, 0 replies; 33+ messages in thread
From: Patrice Clement @ 2020-11-23 21:36 UTC (permalink / raw
  To: gentoo-commits

commit:     7ce6df18e33e1a063ec8497e85961b21b3921af3
Author:     PPed72 <paolo.pedroni <AT> iol <DOT> it>
AuthorDate: Mon Nov 23 09:17:23 2020 +0000
Commit:     Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Nov 23 21:15:00 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce6df18

net-misc/netkit-telnetd: remove old.

Signed-off-by: Paolo Pedroni <paolo.pedroni <AT> iol.it>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18372
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>

 net-misc/netkit-telnetd/Manifest                   |  1 -
 .../netkit-telnetd/netkit-telnetd-0.17-r10.ebuild  | 88 ----------------------
 2 files changed, 89 deletions(-)

diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest
index baf55850d14..87eda0ebbdb 100644
--- a/net-misc/netkit-telnetd/Manifest
+++ b/net-misc/netkit-telnetd/Manifest
@@ -1,3 +1,2 @@
 DIST netkit-telnet-0.17.tar.gz 133749 BLAKE2B 0eef225adeb0dd332ffd9cce0285213e6aa89f04263fb37e3dac35462492732265b2c29bd2a86277e39e0ad55267ff1a150f1140823c91d44c29cf6a20df8e7e SHA512 e2cfabed12326af5e288def1821353eacffb4586008263dcd1bed1a9dd9d8548e51e68d7ede58ea75927783ba534ea8807ec722271843a77146f064f3d826dd3
-DIST netkit-telnet_0.17-36.diff.gz 27226 BLAKE2B c19370f6462295bb7e8d09307121ec3356e9d1751b3ce5b7985844f54506351f633de381ffb3cd3209995c1826aaaa9ce716084742d4689d626b28aee8a3eb43 SHA512 7cd1ec5f96fcacee551700d65f62b6c217e0d9b5220a218aa60fceb3883d0754831606a247355dc2bf6486a02175b8d9b27058d6bc788de8e1b80545fdedbf9a
 DIST netkit-telnet_0.17-41.debian.tar.xz 36592 BLAKE2B 6db35c25e14b219c15c4dd180f0dab064e5b101b42f29e7b71d99f797d22a51b376e6de148cf83fa479039f0ecbc811ecc36953dd89ae11f079b4ed42690d18f SHA512 4de0d51c6cc3c9113b38c9ab76553d22294a02a86d2e02a0481bdad77887782902d41f99eb5dd268bee175ebee5489b3e9871012234a7480a431ef47015cdf5c

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
deleted file mode 100644
index 4bbca3926ce..00000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r10.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils toolchain-funcs
-
-PATCHLEVEL=36
-DESCRIPTION="Standard Linux telnet client and server"
-#old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# This might be the best HOMEPAGE now?
-HOMEPAGE="https://launchpad.net/netkit-telnet"
-# http://packages.debian.org/stablesource/netkit-telnet
-# http://packages.debian.org/testing/source/netkit-telnet
-# No upstream mirror exists anymore?
-# old ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
-SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
-	mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-${PATCHLEVEL}.diff.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2:=
-	!net-misc/telnet-bsd"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_prepare() {
-	# Patch: [0]
-	# Gentoo lacks a maintainer for this package right now. And a
-	# security problem arose. While reviewing our options for how
-	# should we proceed with the security bug we decided it would be
-	# better to just stay in sync with debian's own netkit-telnet
-	# package. Lots of bug fixes by them over time which were not in
-	# our telnetd.
-	epatch "${WORKDIR}"/netkit-telnet_0.17-${PATCHLEVEL}.diff
-
-	# Patch: [1]
-	# after the deb patch we need to add a small patch that defines
-	# gnu source. This is needed for gcc-3.4.x (needs to be pushed
-	# back to the deb folk?)
-	epatch "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch
-
-	# Fix portability issues.
-	sed -i \
-		-e 's:echo -n:printf %s:' \
-		configure || die
-}
-
-src_configure() {
-	tc-export CC CXX
-
-	# Not a real autoconf script.
-	./configure --prefix=/usr || die
-
-	sed -i \
-		-e "s:-pipe -O2:${CFLAGS}:" \
-		-e "s:^\(LDFLAGS=\).*:\1${LDFLAGS}:" \
-		-e "s:-Wpointer-arith::" \
-		MCONFIG || die
-}
-
-src_compile() {
-	emake
-	emake -C telnetlogin
-}
-
-src_install() {
-	dobin telnet/telnet
-
-	dosbin telnetd/telnetd
-	dosym telnetd /usr/sbin/in.telnetd
-	dosbin telnetlogin/telnetlogin
-	doman telnet/telnet.1
-	doman telnetd/*.8
-	doman telnetd/issue.net.5
-	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
-	doman telnetlogin/telnetlogin.8
-	dodoc BUGS ChangeLog README
-	dodoc "${FILESDIR}"/net.issue.sample
-	newdoc telnet/README README.telnet
-	newdoc telnet/TODO TODO.telnet
-	insinto /etc/xinetd.d
-	newins "${FILESDIR}"/telnetd.xinetd telnetd
-}


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2020-12-01  7:56 Joonas Niilola
  0 siblings, 0 replies; 33+ messages in thread
From: Joonas Niilola @ 2020-12-01  7:56 UTC (permalink / raw
  To: gentoo-commits

commit:     be181e0c76f2e0c99b4652f4be9d079010b2ebae
Author:     PPed72 <paolo.pedroni <AT> iol <DOT> it>
AuthorDate: Thu Nov 26 10:57:25 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Dec  1 07:56:02 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be181e0c

net-misc/netkit-telnetd: change sed delimiter

Closes: https://bugs.gentoo.org/715706
Signed-off-by: Paolo Pedroni <paolo.pedroni <AT> iol.it>
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Closes: https://github.com/gentoo/gentoo/pull/18412
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
index c2f66be105d..defc1918c5c 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
@@ -36,17 +36,17 @@ src_prepare() {
 	# better to just stay in sync with debian's own netkit-telnet
 	# package. Lots of bug fixes by them over time which were not in
 	# our telnetd.
-	EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" eapply "${WORKDIR}"/debian/patches
+	EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" eapply "${WORKDIR}/debian/patches"
 
 	# Patch: [1]
 	# after the deb patch we need to add a small patch that defines
 	# gnu source. This is needed for gcc-3.4.x (needs to be pushed
 	# back to the deb folk?)
-	eapply "${FILESDIR}"/netkit-telnetd-0.17-cflags-gnu_source.patch
+	eapply "${FILESDIR}/netkit-telnetd-0.17-cflags-gnu_source.patch"
 
 	# Fix portability issues.
 	sed -i \
-		-e 's/echo -n/printf %s/' \
+		-e 's@echo -n@printf %s@' \
 		configure || die
 	default
 }
@@ -58,9 +58,9 @@ src_configure() {
 	./configure --prefix=/usr || die
 
 	sed -i \
-		-e "s/-pipe -O2/${CFLAGS}/" \
-		-e "s/^\(LDFLAGS=\).*/\1${LDFLAGS}/" \
-		-e "s/-Wpointer-arith//" \
+		-e "s@-pipe -O2@${CFLAGS}@" \
+		-e "s@^\(LDFLAGS=\).*@\1${LDFLAGS}@" \
+		-e "s@-Wpointer-arith@@" \
 		MCONFIG || die
 }
 
@@ -81,9 +81,9 @@ src_install() {
 	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
 	doman telnetlogin/telnetlogin.8
 	dodoc BUGS ChangeLog README
-	dodoc "${FILESDIR}"/net.issue.sample
+	dodoc "${FILESDIR}/net.issue.sample"
 	newdoc telnet/README README.telnet
 	newdoc telnet/TODO TODO.telnet
 	insinto /etc/xinetd.d
-	newins "${FILESDIR}"/telnetd.xinetd telnetd
+	newins "${FILESDIR}/telnetd.xinetd" telnetd
 }


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 12:16 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2022-07-10 12:16 UTC (permalink / raw
  To: gentoo-commits

commit:     88aabea9078eb660b7d98d57a1f47e7630b85483
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 12:15:43 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 12:15:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88aabea9

net-misc/netkit-telnetd: Stabilize 0.17-r13 amd64, #857222

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index 7423dd55a7dc..c71932a7360f 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 12:16 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2022-07-10 12:16 UTC (permalink / raw
  To: gentoo-commits

commit:     9f669ec1a76f7ac5b32d9a9459eddadba5888321
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 12:16:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 12:16:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f669ec1

net-misc/netkit-telnetd: Stabilize 0.17-r13 x86, #857222

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index c71932a7360f..5f3b97415d93 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 18:04 Arthur Zamarin
  0 siblings, 0 replies; 33+ messages in thread
From: Arthur Zamarin @ 2022-07-10 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     78dd3c96b7e88d5c60ba05d9d61afcd9554a4ef5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 18:04:02 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 18:04:02 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78dd3c96

net-misc/netkit-telnetd: Stabilize 0.17-r13 arm64, #857222

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index 5f3b97415d93..bd6a364dc4fb 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 18:04 Arthur Zamarin
  0 siblings, 0 replies; 33+ messages in thread
From: Arthur Zamarin @ 2022-07-10 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     44bde7f2642206276a225c34614d009f49a4c436
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 18:04:03 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 18:04:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44bde7f2

net-misc/netkit-telnetd: Stabilize 0.17-r13 sparc, #857222

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index 308101d3ca06..ca9b55086a17 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 18:04 Arthur Zamarin
  0 siblings, 0 replies; 33+ messages in thread
From: Arthur Zamarin @ 2022-07-10 18:04 UTC (permalink / raw
  To: gentoo-commits

commit:     fbf468e31e21b801ce65a07c997f476d7c93d4a2
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 18:04:03 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 18:04:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbf468e3

net-misc/netkit-telnetd: Stabilize 0.17-r13 arm, #857222

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index bd6a364dc4fb..308101d3ca06 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 18:53 Arthur Zamarin
  0 siblings, 0 replies; 33+ messages in thread
From: Arthur Zamarin @ 2022-07-10 18:53 UTC (permalink / raw
  To: gentoo-commits

commit:     c69715ea2aa9ffca784c4b8663a92b57bf6d8052
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 18:53:00 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 18:53:00 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69715ea

net-misc/netkit-telnetd: Stabilize 0.17-r13 ppc, #857222

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index ca9b55086a17..2e4d2a978868 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-07-10 19:15 Arthur Zamarin
  0 siblings, 0 replies; 33+ messages in thread
From: Arthur Zamarin @ 2022-07-10 19:15 UTC (permalink / raw
  To: gentoo-commits

commit:     515fba6bca3129f5c40491aee1dfa8e965bfdc99
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 10 19:15:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 10 19:15:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=515fba6b

net-misc/netkit-telnetd: Stabilize 0.17-r13 ppc64, #857222

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index 2e4d2a978868..d7586da721f5 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -19,7 +19,7 @@ SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE=""
 
 DEPEND=">=sys-libs/ncurses-5.2:=


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-08-29 15:15 Andreas Sturmlechner
  0 siblings, 0 replies; 33+ messages in thread
From: Andreas Sturmlechner @ 2022-08-29 15:15 UTC (permalink / raw
  To: gentoo-commits

commit:     14430e3a807aa448385a693d37b3115b27593766
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 28 21:54:32 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Aug 29 15:15:20 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14430e3a

net-misc/netkit-telnetd: drop 0.17-r12, EAPI-6--

Closes: https://bugs.gentoo.org/857222
Closes: https://github.com/gentoo/gentoo/pull/27056
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 net-misc/netkit-telnetd/Manifest                   |  1 -
 .../netkit-telnetd/netkit-telnetd-0.17-r12.ebuild  | 89 ----------------------
 2 files changed, 90 deletions(-)

diff --git a/net-misc/netkit-telnetd/Manifest b/net-misc/netkit-telnetd/Manifest
index 25a5c9106043..a3751905f6d4 100644
--- a/net-misc/netkit-telnetd/Manifest
+++ b/net-misc/netkit-telnetd/Manifest
@@ -1,3 +1,2 @@
 DIST netkit-telnet-0.17.tar.gz 133749 BLAKE2B 0eef225adeb0dd332ffd9cce0285213e6aa89f04263fb37e3dac35462492732265b2c29bd2a86277e39e0ad55267ff1a150f1140823c91d44c29cf6a20df8e7e SHA512 e2cfabed12326af5e288def1821353eacffb4586008263dcd1bed1a9dd9d8548e51e68d7ede58ea75927783ba534ea8807ec722271843a77146f064f3d826dd3
-DIST netkit-telnet_0.17-41.debian.tar.xz 36592 BLAKE2B 6db35c25e14b219c15c4dd180f0dab064e5b101b42f29e7b71d99f797d22a51b376e6de148cf83fa479039f0ecbc811ecc36953dd89ae11f079b4ed42690d18f SHA512 4de0d51c6cc3c9113b38c9ab76553d22294a02a86d2e02a0481bdad77887782902d41f99eb5dd268bee175ebee5489b3e9871012234a7480a431ef47015cdf5c
 DIST netkit-telnet_0.17-42.debian.tar.xz 36068 BLAKE2B 393460c0e7a688c2c200e039ef1f462ecef0eba842982c64563325966148ee659ad1a86a8beea16046d5c1513c426d295787dc75b67f11201cdb091ec523a62a SHA512 0fa374bb4d9feff3a4cc84f7a2a9dcdacfdd22e5da9bcf253199d2e886d01da2cf5034820915ffbf50362814c3ce65ab1b6518e35e01b07c43839810fa3f8459

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
deleted file mode 100644
index e88e6c213936..000000000000
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r12.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit toolchain-funcs
-
-PATCHLEVEL=41
-DESCRIPTION="Standard Linux telnet client and server"
-#old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# This might be the best HOMEPAGE now?
-HOMEPAGE="https://launchpad.net/netkit-telnet"
-# http://packages.debian.org/stablesource/netkit-telnet
-# http://packages.debian.org/testing/source/netkit-telnet
-# No upstream mirror exists anymore?
-# old ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
-SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
-	mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-${PATCHLEVEL}.debian.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2:=
-	!net-misc/telnet-bsd"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/netkit-telnet-${PV}
-
-src_prepare() {
-	# Patch: [0]
-	# Gentoo used to lack a maintainer for this package.
-	# A security problem arose. While reviewing our options for how
-	# should we proceed with the security bug we decided it would be
-	# better to just stay in sync with debian's own netkit-telnet
-	# package. Lots of bug fixes by them over time which were not in
-	# our telnetd.
-	EPATCH_FORCE="yes" EPATCH_SUFFIX="diff" eapply "${WORKDIR}/debian/patches"
-
-	# Patch: [1]
-	# after the deb patch we need to add a small patch that defines
-	# gnu source. This is needed for gcc-3.4.x (needs to be pushed
-	# back to the deb folk?)
-	eapply "${FILESDIR}/netkit-telnetd-0.17-cflags-gnu_source.patch"
-
-	# Fix portability issues.
-	sed -i \
-		-e 's@echo -n@printf %s@' \
-		configure || die
-	default
-}
-
-src_configure() {
-	tc-export CC CXX
-
-	# Not a real autoconf script.
-	./configure --prefix=/usr || die
-
-	sed -i \
-		-e "s@-pipe -O2@${CFLAGS}@" \
-		-e "s@^\(LDFLAGS=\).*@\1${LDFLAGS}@" \
-		-e "s@-Wpointer-arith@@" \
-		MCONFIG || die
-}
-
-src_compile() {
-	emake
-	emake -C telnetlogin
-}
-
-src_install() {
-	dobin telnet/telnet
-
-	dosbin telnetd/telnetd
-	dosym telnetd /usr/sbin/in.telnetd
-	dosbin telnetlogin/telnetlogin
-	doman telnet/telnet.1
-	doman telnetd/*.8
-	doman telnetd/issue.net.5
-	dosym telnetd.8 /usr/share/man/man8/in.telnetd.8
-	doman telnetlogin/telnetlogin.8
-	dodoc BUGS ChangeLog README
-	dodoc "${FILESDIR}/net.issue.sample"
-	newdoc telnet/README README.telnet
-	newdoc telnet/TODO TODO.telnet
-	insinto /etc/xinetd.d
-	newins "${FILESDIR}/telnetd.xinetd" telnetd
-}


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2022-10-05 23:28 Mike Gilbert
  0 siblings, 0 replies; 33+ messages in thread
From: Mike Gilbert @ 2022-10-05 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     4ca2de959136dde92055d2c07658a7aaefdde15b
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  5 23:26:38 2022 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Wed Oct  5 23:26:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca2de95

net-misc/netkit-telnetd: update HOMEPAGE, SRC_URI

Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index d7586da721f5..5859b09f298b 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -7,14 +7,10 @@ inherit cmake
 
 PATCHLEVEL=42
 DESCRIPTION="Standard Linux telnet client and server"
-#old HOMEPAGE="ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/"
-# This might be the best HOMEPAGE now?
-HOMEPAGE="https://launchpad.net/netkit-telnet"
+HOMEPAGE="https://wiki.linuxfoundation.org/networking/netkit"
 # http://packages.debian.org/stablesource/netkit-telnet
 # http://packages.debian.org/testing/source/netkit-telnet
-# No upstream mirror exists anymore?
-# old ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
-SRC_URI="mirror://gentoo/netkit-telnet-${PV}.tar.gz
+SRC_URI="http://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-telnet-${PV}.tar.gz
 	mirror://debian/pool/main/n/netkit-telnet/netkit-telnet_0.17-${PATCHLEVEL}.debian.tar.xz"
 
 LICENSE="BSD"


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2023-06-28 21:17 Sam James
  0 siblings, 0 replies; 33+ messages in thread
From: Sam James @ 2023-06-28 21:17 UTC (permalink / raw
  To: gentoo-commits

commit:     90a09a07358250b04ccef8111f6fcd024b5b609f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 28 21:16:20 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 28 21:16:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90a09a07

net-misc/netkit-telnetd: add missing selinux policy dep

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
index 5859b09f298b..1cdb22da14b8 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
@@ -16,11 +16,16 @@ SRC_URI="http://ftp.linux.org.uk/pub/linux/Networking/netkit/netkit-telnet-${PV}
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/ncurses-5.2:=
-	!net-misc/telnet-bsd"
-RDEPEND="${DEPEND}"
+IUSE="selinux"
+
+DEPEND="
+	>=sys-libs/ncurses-5.2:=
+	!net-misc/telnet-bsd
+"
+RDEPEND="
+	${DEPEND}
+	selinux? ( sec-policy/selinux-telnet )
+"
 
 S=${WORKDIR}/netkit-telnet-${PV}
 


^ permalink raw reply related	[flat|nested] 33+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/
@ 2024-08-03 16:53 Mike Gilbert
  0 siblings, 0 replies; 33+ messages in thread
From: Mike Gilbert @ 2024-08-03 16:53 UTC (permalink / raw
  To: gentoo-commits

commit:     b71454957dca853f5298fe8aa5f2d8d4e61c3058
Author:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sat Aug  3 16:51:15 2024 +0000
Commit:     Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sat Aug  3 16:53:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7145495

net-misc/netkit-telnetd: add blocker on net-misc/inetutils

Bug: https://bugs.gentoo.org/927455
Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>

 ...{netkit-telnetd-0.17-r13.ebuild => netkit-telnetd-0.17-r14.ebuild} | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r14.ebuild
similarity index 94%
rename from net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
rename to net-misc/netkit-telnetd/netkit-telnetd-0.17-r14.ebuild
index 1cdb22da14b8..e4c30a44260e 100644
--- a/net-misc/netkit-telnetd/netkit-telnetd-0.17-r13.ebuild
+++ b/net-misc/netkit-telnetd/netkit-telnetd-0.17-r14.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
@@ -21,6 +21,8 @@ IUSE="selinux"
 DEPEND="
 	>=sys-libs/ncurses-5.2:=
 	!net-misc/telnet-bsd
+	!net-misc/inetutils[telnet(-)]
+	!net-misc/inetutils[telnetd(-)]
 "
 RDEPEND="
 	${DEPEND}


^ permalink raw reply related	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2024-08-03 16:53 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-01  7:56 [gentoo-commits] repo/gentoo:master commit in: net-misc/netkit-telnetd/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2024-08-03 16:53 Mike Gilbert
2023-06-28 21:17 Sam James
2022-10-05 23:28 Mike Gilbert
2022-08-29 15:15 Andreas Sturmlechner
2022-07-10 19:15 Arthur Zamarin
2022-07-10 18:53 Arthur Zamarin
2022-07-10 18:04 Arthur Zamarin
2022-07-10 18:04 Arthur Zamarin
2022-07-10 18:04 Arthur Zamarin
2022-07-10 12:16 Sam James
2022-07-10 12:16 Sam James
2020-11-23 21:36 Patrice Clement
2020-11-23  8:01 Sergei Trofimovich
2020-11-23  7:58 Sergei Trofimovich
2020-11-23  7:52 Sergei Trofimovich
2020-11-20 20:01 Sergei Trofimovich
2020-11-20  2:02 Sam James
2020-11-20  2:02 Sam James
2020-11-20  1:34 Thomas Deutschmann
2020-11-19 22:59 Sam James
2020-06-08 16:34 Mart Raudsepp
2020-05-08  6:25 Mart Raudsepp
2020-03-26 14:01 Joonas Niilola
2020-03-26 14:01 Joonas Niilola
2018-07-23 15:57 Tony Vroon
2017-01-15  3:12 Göktürk Yüksek
2016-03-09 18:36 Patrice Clement
2016-03-09 17:15 Patrice Clement
2016-03-09 14:18 Patrice Clement
2016-03-09 14:18 Patrice Clement
2015-08-12 15:56 Mike Frysinger
2015-08-12 15:56 Mike Frysinger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox