[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/, dev-perl/TermReadKey/files/

2022-11-30 Thread Sam James
commit: cc66bf80ad125d2f2e682fc92fd1a3a2803fbb77
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec  1 04:06:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec  1 04:06:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc66bf80

dev-perl/TermReadKey: fix configure w/ clang 16

Signed-off-by: Sam James  gentoo.org>

 380.0.ebuild => TermReadKey-2.380.0-r1.ebuild} |   4 +
 .../TermReadKey-2.380.0-configure-clang16.patch| 147 +
 2 files changed, 151 insertions(+)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0-r1.ebuild
similarity index 90%
rename from dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
rename to dev-perl/TermReadKey/TermReadKey-2.380.0-r1.ebuild
index 667ae933ef4b..ade673b4b431 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0-r1.ebuild
@@ -16,3 +16,7 @@ KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k 
~mips ppc ppc64 ~riscv
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0
 "
+
+PATCHES=(
+   "${FILESDIR}"/${P}-configure-clang16.patch
+)

diff --git 
a/dev-perl/TermReadKey/files/TermReadKey-2.380.0-configure-clang16.patch 
b/dev-perl/TermReadKey/files/TermReadKey-2.380.0-configure-clang16.patch
new file mode 100644
index ..c53eff0e150a
--- /dev/null
+++ b/dev-perl/TermReadKey/files/TermReadKey-2.380.0-configure-clang16.patch
@@ -0,0 +1,147 @@
+https://github.com/jonathanstowe/TermReadKey/commit/1e3455135ac17f25ce0c4f01722a184a1fb5c4d1
+
+From 1e3455135ac17f25ce0c4f01722a184a1fb5c4d1 Mon Sep 17 00:00:00 2001
+From: Florian Weimer 
+Date: Fri, 25 Nov 2022 17:28:56 +0100
+Subject: [PATCH] Configure.pm: Specify the return type of main as int
+
+Implicit int is a language feature that was removed in the 1999
+version of the C language.
+
+I could not fix DeducePrototype because I do not see how it
+can work reliably with this approach.  I don't think TermReadKey
+uses this function.
+--- a/Configure.pm
 b/Configure.pm
+@@ -503,7 +503,7 @@ by the compiler is returned.
+ =cut
+ 
+ sub CheckHeader { #Find a header (or set of headers) that exists
+-  ApplyHeaders("main(){}",@_);
++  ApplyHeaders("int main(){}",@_);
+ }
+ 
+ =head2 CheckStructure
+@@ -516,7 +516,7 @@ properly will be returned. B will be returned if 
nothing succeeds.
+ 
+ sub CheckStructure { # Check existance of a structure.
+   my($structname,@headers) = @_;
+-  ApplyHeaders("main(){ struct $structname s;}",@headers);
++  ApplyHeaders("int main(){ struct $structname s;}",@headers);
+ }
+ 
+ =head2 CheckField
+@@ -530,7 +530,7 @@ be returned if nothing succeeds.
+ 
+ sub CheckField { # Check for the existance of specified field in structure
+   my($structname,$fieldname,@headers) = @_;
+-  ApplyHeaders("main(){ struct $structname s1; struct $structname s2;
++  ApplyHeaders("int main(){ struct $structname s1; struct $structname s2;
+s1.$fieldname = s2.$fieldname; }",@headers);
+ }
+ 
+@@ -544,7 +544,7 @@ that symbol will be returned. B will be returned if 
nothing succeeds.
+ 
+ sub CheckLSymbol { # Check for linkable symbol
+   my($symbol,@libs) = @_;
+-  ApplyLibs("main() { void * f = (void *)($symbol); }",@libs);
++  ApplyLibs("int main() { void * f = (void *)($symbol); }",@libs);
+ }
+ 
+ =head2 CheckSymbol
+@@ -558,7 +558,8 @@ B will be returned if nothing succeeds.
+ 
+ sub CheckSymbol { # Check for linkable/header symbol
+   my($symbol,@lookup) = @_;
+-  ApplyHeadersAndLibs("main() { void * f = (void *)($symbol); }",@lookup);
++  ApplyHeadersAndLibs("int main() { void * f = (void *)($symbol); }",
++  @lookup);
+ }
+ 
+ =head2 CheckHSymbol
+@@ -571,7 +572,7 @@ that symbol will be returned. B will be returned if 
nothing succeeds.
+ 
+ sub CheckHSymbol { # Check for header symbol
+   my($symbol,@headers) = @_;
+-  ApplyHeaders("main() { void * f = (void *)($symbol); }",@headers);
++  ApplyHeaders("int main() { void * f = (void *)($symbol); }",@headers);
+ }
+ 
+ =head2 CheckHPrototype (unexported)
+@@ -591,7 +592,7 @@ sub CheckHPrototype { # Check for header prototype.
+# names function doesn't exist, this call will _succeed_. Caveat Utilitor.
+   my($function,$proto,@headers) = @_;
+   my(@proto) = @{$proto};
+-  ApplyHeaders("main() { extern ".$proto[0]." $function(".
++  ApplyHeaders("int main() { extern ".$proto[0]." $function(".
+  join(",",@proto[1..$#proto])."); }",@headers);
+ }
+ 
+@@ -612,7 +613,8 @@ Example:
+ sub GetSymbol { # Check for linkable/header symbol
+   my($symbol,$printf,$cast,@lookup) = @_,"","";
+   scalar(ApplyHeadersAndLibsAndExecute(
+-  "main(){ 
printf(\"\%$printf\",($cast)($symbol));exit(0);}",@lookup));
++  "int main(){ printf(\"\%$printf\",($cast)($symbol));exit(0);}",
++

[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2022-04-29 Thread WANG Xuerui
commit: 764d1ed8b0c8964cc59e35c05bdd0f0f29141008
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Apr 29 07:34:26 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Apr 29 07:58:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=764d1ed8

dev-perl/TermReadKey: keyword 2.380.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index c28d027e7577..667ae933ef4b 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-12-08 Thread Andreas K. Hüttel
commit: ccdd9667d9cdb1225dd434374fd4830e3da953bc
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Dec  8 21:17:26 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Dec  8 21:18:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccdd9667

dev-perl/TermReadKey: Remove old

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/TermReadKey/Manifest   |  1 -
 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 043cc721cf2b..2cf863ccb9c1 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1,2 +1 @@
-DIST TermReadKey-2.37.tar.gz 85082 BLAKE2B 
59c24455b6c4165897c7650209a98b5097c7fffd1044de005b8823d0867f6b16a835d5188c4a671b58109312ac2aa70012edd84d4a485b1534241f9525ab
 SHA512 
b602d612be17ec4a56fe50742728dae17733f251ef399e8fb69cc8eb22885d7e1c1073c735fb23826137e80be8d3597e60f496ac63180739752d070957880eea
 DIST TermReadKey-2.38.tar.gz 85164 BLAKE2B 
7fe1b7af17d66598dd39b81a667e0a16061694fcd37521dccb355295ff2980836e2d5e58cafd22ed370e790b33d39c2232a64785aa01d9c2cc6c30d6bafe9484
 SHA512 
fb09f013f9f0d8a4397e39f6f3db7a6d023259219af8f76744094e396437a01b19141b3cdb39a158d3b518903fb010088bc37406763bfbeb3fcab810bb0bb157

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
deleted file mode 100644
index 2919eb8839aa..
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=JSTOWE
-DIST_VERSION=2.37
-DIST_EXAMPLES=("example/*")
-inherit perl-module
-
-DESCRIPTION="Change terminal modes, and perform non-blocking reads"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-12 Thread Sam James
commit: d6909fdfbb701350ff0c50c10314975249bf9b06
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Tue Oct 12 09:04:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Oct 12 18:58:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6909fdf

dev-perl/TermReadKey: stable 2.380.0 for hppa, bug #817578

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index 888058f2ca7..c28d027e757 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-11 Thread Sam James
commit: 7282235e7982587ac1a7cf3a26d1e29747186b3c
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 15:22:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 15:25:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7282235e

dev-perl/TermReadKey: Stabilize 2.380.0 arm64, #817578

Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index eb01835d5d5..2d76c50b49c 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-11 Thread Agostino Sarubbo
commit: 4704568aaa93132aba72ad9cde418b1a5ee46a7d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Oct 11 06:30:36 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Oct 11 06:30:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4704568a

dev-perl/TermReadKey: sparc stable wrt bug #817578

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index 296202d0d28..eb01835d5d5 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-10 Thread Sam James
commit: c7773afff2a44f2700144734cef662443a4696de
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 05:14:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 05:14:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7773aff

dev-perl/TermReadKey: Stabilize 2.380.0 ppc, #817578

Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index 47358b5a43e..296202d0d28 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-10 Thread Sam James
commit: 2c236e2a7826a23dea02fd99dd5ab0f9e878f6e7
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 04:19:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 04:19:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c236e2a

dev-perl/TermReadKey: Stabilize 2.380.0 arm, #817578

Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index 5ccd120e1c6..47358b5a43e 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-10 Thread Sam James
commit: 17c1fecc9036142cc8975336a23a68f66f0b897f
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 04:17:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 04:17:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17c1fecc

dev-perl/TermReadKey: Stabilize 2.380.0 x86, #817578

Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index b13db103fb0..5ccd120e1c6 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-10-10 Thread Sam James
commit: cf4ce35a454ced6dfc5d676073057c4b3987574c
Author: Sam James  gentoo  org>
AuthorDate: Mon Oct 11 03:08:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Oct 11 03:08:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf4ce35a

dev-perl/TermReadKey: Stabilize 2.380.0 ppc64, #817578

Signed-off-by: Sam James  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
index 9347beae861..b13db103fb0 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 BDEPEND="
>=virtual/perl-ExtUtils-MakeMaker-6.580.0



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2021-08-13 Thread Andreas K. Hüttel
commit: a85da0441512210d6fd149686a8bdd62b0cf7232
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Aug 14 00:29:11 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Aug 14 00:35:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85da044

dev-perl/TermReadKey: Version  bump 2.38

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/TermReadKey/Manifest   |  1 +
 dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 7af905beb9f..043cc721cf2 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1 +1,2 @@
 DIST TermReadKey-2.37.tar.gz 85082 BLAKE2B 
59c24455b6c4165897c7650209a98b5097c7fffd1044de005b8823d0867f6b16a835d5188c4a671b58109312ac2aa70012edd84d4a485b1534241f9525ab
 SHA512 
b602d612be17ec4a56fe50742728dae17733f251ef399e8fb69cc8eb22885d7e1c1073c735fb23826137e80be8d3597e60f496ac63180739752d070957880eea
+DIST TermReadKey-2.38.tar.gz 85164 BLAKE2B 
7fe1b7af17d66598dd39b81a667e0a16061694fcd37521dccb355295ff2980836e2d5e58cafd22ed370e790b33d39c2232a64785aa01d9c2cc6c30d6bafe9484
 SHA512 
fb09f013f9f0d8a4397e39f6f3db7a6d023259219af8f76744094e396437a01b19141b3cdb39a158d3b518903fb010088bc37406763bfbeb3fcab810bb0bb157

diff --git a/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
new file mode 100644
index 000..9347beae861
--- /dev/null
+++ b/dev-perl/TermReadKey/TermReadKey-2.380.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=JSTOWE
+DIST_VERSION=2.38
+DIST_EXAMPLES=("example/*")
+inherit perl-module
+
+DESCRIPTION="Change terminal modes, and perform non-blocking reads"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+BDEPEND="
+   >=virtual/perl-ExtUtils-MakeMaker-6.580.0
+"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2020-04-15 Thread Kent Fredric
commit: b065790eda5d094c69805a8c5ff87953165a84c2
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Apr 15 14:43:01 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Apr 15 15:35:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b065790e

dev-perl/TermReadKey: Remove old 2.330.0

Package-Manager: Portage-2.3.97, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 dev-perl/TermReadKey/Manifest   |  1 -
 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 18 --
 2 files changed, 19 deletions(-)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 99ab2e3e118..7af905beb9f 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1,2 +1 @@
-DIST TermReadKey-2.33.tar.gz 82916 BLAKE2B 
e8bdd9c78001de3b2060bcf6ed376b8043697b290609f8cdd3b776dc73262c9ff50ca0b9e992869e9675780bf3e434b44468f589d2bbcf2411ed2a570ef31072
 SHA512 
ecee70695f8d48f8eeeb6916a7f25aac536e8725815e6c22ed01791f152b55a4203460cb090b00b64ed71e093890b9bc096679223cc97bda0c323e61f105a0ee
 DIST TermReadKey-2.37.tar.gz 85082 BLAKE2B 
59c24455b6c4165897c7650209a98b5097c7fffd1044de005b8823d0867f6b16a835d5188c4a671b58109312ac2aa70012edd84d4a485b1534241f9525ab
 SHA512 
b602d612be17ec4a56fe50742728dae17733f251ef399e8fb69cc8eb22885d7e1c1073c735fb23826137e80be8d3597e60f496ac63180739752d070957880eea

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
deleted file mode 100644
index 2d2594ae83d..000
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=JSTOWE
-MODULE_VERSION=2.33
-inherit perl-module
-
-DESCRIPTION="Change terminal modes, and perform non-blocking reads"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 m68k ~mips ppc ppc64 s390 sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-DEPEND="virtual/perl-ExtUtils-MakeMaker"
-
-SRC_TEST="do parallel"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2019-05-04 Thread Andreas K. Hüttel
commit: e248fcb5e0b55c5fbafaf05d38fc22dbac712637
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat May  4 19:00:46 2019 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat May  4 19:02:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e248fcb5

dev-perl/TermReadKey: keyword ~riscv

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index f1616c9451b..df22f619dd4 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2019-01-03 Thread Mikle Kolyada
commit: b86e3785b9f8eb92e686aff028d7f31c32ca3ba5
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan  3 18:53:55 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan  3 18:57:01 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b86e3785

dev-perl/TermReadKey: arm stable wrt bug #667266

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 56b401d5f36..f1616c9451b 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-12-22 Thread Mikle Kolyada
commit: fcb3499b334619a7b6e5643819fe2c13bbfa2865
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec 22 10:35:54 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec 22 10:37:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcb3499b

dev-perl/TermReadKey: m68k stable wrt bug #667266

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 23b27143b3e..56b401d5f36 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-12-08 Thread Mikle Kolyada
commit: 8f852da764088127bc6d37c781ad6cd9e942c5b8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec  8 15:19:22 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec  8 15:22:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f852da7

dev-perl/TermReadKey: sh stable wrt bug #667266

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index a9168048d24..23b27143b3e 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-12-08 Thread Mikle Kolyada
commit: a4285f61a6b3bdd51212d6f06e69f8a579e42f03
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec  8 12:31:18 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec  8 12:34:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4285f61

dev-perl/TermReadKey: s390 stable wrt bug #667266

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 7fd3a95d45c..a9168048d24 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-12-01 Thread Sergei Trofimovich
commit: fbde51355d70365954285876d638ecd07397eaee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Dec  1 15:08:30 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Dec  1 15:08:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbde5135

dev-perl/TermReadKey: stable 2.370.0 for hppa, bug #667266

Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 7abfd9d7d61..7fd3a95d45c 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-11-23 Thread Agostino Sarubbo
commit: 961fd85cfcbfe444231f6905b65f712db8a74fa4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Nov 23 13:05:54 2018 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Nov 23 13:05:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=961fd85c

dev-perl/TermReadKey: amd64 stable wrt bug #667266

Signed-off-by: Agostino Sarubbo  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 346d5d11d7f..7abfd9d7d61 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-10-12 Thread Tobias Klausmann
commit: e475d98eebf004097c4e73d8268ac2095e05da3c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Oct 12 11:15:59 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Oct 12 11:16:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e475d98e

dev-perl/TermReadKey-2.370.0-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/667266
Signed-off-by: Tobias Klausmann  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 26300e0c77f..346d5d11d7f 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-10-06 Thread Mart Raudsepp
commit: 1e38d7f29d599a1b97fe370ff2af55d94a939560
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Oct  6 21:08:13 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Oct  6 21:09:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e38d7f2

dev-perl/TermReadKey-2.370.0: arm64 stable (bug #667266)

Signed-off-by: Mart Raudsepp  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 20d15fdef62..26300e0c77f 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-10-06 Thread Matt Turner
commit: 1a0f23bc06fd4564d14e4f722089b4423ad57d01
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct  6 19:33:43 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct  6 19:33:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a0f23bc

dev-perl/TermReadKey-2.370.0: ppc64 stable, bug 667266

Signed-off-by: Matt Turner  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index d19d7657949..20d15fdef62 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-10-02 Thread Sergei Trofimovich
commit: 6e18f3bc0fd2e1d5b999cafb9212d64d175c0596
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct  1 23:23:44 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Oct  2 07:33:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e18f3bc

dev-perl/TermReadKey: stable 2.370.0 for ia64, bug #667266

Signed-off-by: Sergei Trofimovich  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index 3cd1e876c94..67f2d8bc558 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-09-30 Thread Thomas Deutschmann
commit: 2b81ba9db0eef18bbf2988a2b927c2b2b93c0d0b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Sep 30 23:48:03 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Oct  1 00:06:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b81ba9d

dev-perl/TermReadKey: x86 stable (bug #667266)

Signed-off-by: Thomas Deutschmann  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index de8efae73b1..3cd1e876c94 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-09-30 Thread Sergei Trofimovich
commit: 361c45d570bf7d18128b9d544fe2c3c476384a77
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 30 14:55:29 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 30 16:07:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=361c45d5

dev-perl/TermReadKey: stable 2.370.0 for sparc, bug #667266

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
index b41b3886d32..de8efae73b1 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2018-02-28 Thread Kent Fredric
commit: 45a65dd5263c50d48d4f8ea53f23bbd2873011fb
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Feb 28 20:52:44 2018 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Feb 28 20:53:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45a65dd5

dev-perl/TermReadKey: Bump to version 2.370.0

- EAPI6
- Add USE="examples"

Upstream:
- Fix GetTerminalSize() argument handling
- Fix XS warnings
- Don't attempt some tests when STDIN is notatty

Package-Manager: Portage-2.3.18, Repoman-2.3.6

 dev-perl/TermReadKey/Manifest   |  1 +
 dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 45d839da22e..99ab2e3e118 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1 +1,2 @@
 DIST TermReadKey-2.33.tar.gz 82916 BLAKE2B 
e8bdd9c78001de3b2060bcf6ed376b8043697b290609f8cdd3b776dc73262c9ff50ca0b9e992869e9675780bf3e434b44468f589d2bbcf2411ed2a570ef31072
 SHA512 
ecee70695f8d48f8eeeb6916a7f25aac536e8725815e6c22ed01791f152b55a4203460cb090b00b64ed71e093890b9bc096679223cc97bda0c323e61f105a0ee
+DIST TermReadKey-2.37.tar.gz 85082 BLAKE2B 
59c24455b6c4165897c7650209a98b5097c7fffd1044de005b8823d0867f6b16a835d5188c4a671b58109312ac2aa70012edd84d4a485b1534241f9525ab
 SHA512 
b602d612be17ec4a56fe50742728dae17733f251ef399e8fb69cc8eb22885d7e1c1073c735fb23826137e80be8d3597e60f496ac63180739752d070957880eea

diff --git a/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
new file mode 100644
index 000..b41b3886d32
--- /dev/null
+++ b/dev-perl/TermReadKey/TermReadKey-2.370.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=JSTOWE
+DIST_VERSION=2.37
+DIST_EXAMPLES=("example/*")
+inherit perl-module
+
+DESCRIPTION="Change terminal modes, and perform non-blocking reads"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+DEPEND=">=virtual/perl-ExtUtils-MakeMaker-6.580.0"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2017-02-14 Thread Mike Frysinger
commit: b1be05c580bf30a852487aa2f637f3a8efc67686
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Feb 14 18:16:25 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Feb 14 20:03:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1be05c5

dev-perl/TermReadKey: mark 2.330.0 arm64/m68k/s390/sh stable

 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
index 5ee66d0749..46a4b468d4 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2017-02-04 Thread Andreas Hüttel
commit: 27d51e089b1642b4b420218802693f07aa5e04ad
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Feb  4 16:55:46 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Feb  4 17:32:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27d51e08

dev-perl/TermReadKey: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/TermReadKey/Manifest|  1 -
 dev-perl/TermReadKey/TermReadKey-2.300.200-r1.ebuild | 16 
 2 files changed, 17 deletions(-)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index 0a8552f..58cd570 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1,2 +1 @@
-DIST TermReadKey-2.30.02.tar.gz 37645 SHA256 
4e2d28c55f55881c486782e8a19d38db84a65c1472f75254f40978530e49545f SHA512 
e83d64f16134409fc9768acf612145754b69e0a7cef95de9960659e35e1675511d95742b6fd775a39bcad561aa887e75ca47713366958757bf1db886e5806f5d
 WHIRLPOOL 
677c8d9d8c4762afb61192670be61d15fc2192cc5ee89ef186662adedfbd1266a1878f435504c3570f4ebb3c28edd96029d19031d4f2592c38d2c73a1bc7c83c
 DIST TermReadKey-2.33.tar.gz 82916 SHA256 
99708f2d157343b79af6d552384fc4cbdf8ab633b727eb547f733fbc1cfdd14d SHA512 
ecee70695f8d48f8eeeb6916a7f25aac536e8725815e6c22ed01791f152b55a4203460cb090b00b64ed71e093890b9bc096679223cc97bda0c323e61f105a0ee
 WHIRLPOOL 
1f84792bccf200f938105e49cdcbdab534bf65286b5a0d03a0ebdd7b740e98cdfca0e0e67e5bc817758cb2deba252acb34af3decd16389c3bc130206c768a353

diff --git a/dev-perl/TermReadKey/TermReadKey-2.300.200-r1.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.300.200-r1.ebuild
deleted file mode 100644
index 4ae8472..
--- a/dev-perl/TermReadKey/TermReadKey-2.300.200-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=STSI
-MODULE_VERSION=2.30.02
-inherit perl-module
-
-DESCRIPTION="Change terminal modes, and perform non-blocking reads"
-
-LICENSE="TermReadKey"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2017-02-03 Thread Jeroen Roovers
commit: dfe0f60d268880be41d616ae62b111a6c66b893f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Feb  3 21:40:01 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Feb  3 21:48:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfe0f60d

dev-perl/TermReadKey: Stable for HPPA (bug #583518).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
index b056c6a..5ee66d0 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2016-06-06 Thread Agostino Sarubbo
commit: 65801fa0dd8fdd2089c2581abb2bb6db410b5230
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jun  6 14:53:23 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jun  6 14:53:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65801fa0

dev-perl/TermReadKey: amd64 stable wrt bug #583518

Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
index b85d80b..f120a36 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2016-06-01 Thread Tobias Klausmann
commit: 22ce067fe0fba831c08c663e2bc92357c3e44f31
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jun  1 10:24:30 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jun  1 10:24:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ce067f

dev-perl/TermReadKey-2.330.0-r0: add alpha keyword

Gentoo-Bug: 583518

Package-Manager: portage-2.3.0_rc1

 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
index 442b34a..b85d80b 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2016-05-31 Thread Markus Meier
commit: f2180c22f39e6996fc91e3e78bdeb6cae1fa8404
Author: Markus Meier  gentoo  org>
AuthorDate: Tue May 31 19:19:57 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue May 31 19:20:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2180c22

dev-perl/TermReadKey: arm stable, bug #583518

Package-Manager: portage-2.3.0_rc1
RepoMan-Options: --include-arches="arm"

 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
index 8aea5a8..442b34a 100644
--- a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Change terminal modes, and perform non-blocking reads"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND="virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/TermReadKey/

2015-09-19 Thread Andreas Hüttel
commit: 34b318b29facefec6f7dbb1197808d92b32037ba
Author: Andreas K. Huettel (dilfridge)  gentoo  org>
AuthorDate: Sat Sep 19 20:45:18 2015 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Sep 19 21:06:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b318b2

dev-perl/TermReadKey: Version bump

Package-Manager: portage-2.2.20.1

 dev-perl/TermReadKey/Manifest   |  1 +
 dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild | 19 +++
 2 files changed, 20 insertions(+)

diff --git a/dev-perl/TermReadKey/Manifest b/dev-perl/TermReadKey/Manifest
index a3f7d5a..0a8552f 100644
--- a/dev-perl/TermReadKey/Manifest
+++ b/dev-perl/TermReadKey/Manifest
@@ -1 +1,2 @@
 DIST TermReadKey-2.30.02.tar.gz 37645 SHA256 
4e2d28c55f55881c486782e8a19d38db84a65c1472f75254f40978530e49545f SHA512 
e83d64f16134409fc9768acf612145754b69e0a7cef95de9960659e35e1675511d95742b6fd775a39bcad561aa887e75ca47713366958757bf1db886e5806f5d
 WHIRLPOOL 
677c8d9d8c4762afb61192670be61d15fc2192cc5ee89ef186662adedfbd1266a1878f435504c3570f4ebb3c28edd96029d19031d4f2592c38d2c73a1bc7c83c
+DIST TermReadKey-2.33.tar.gz 82916 SHA256 
99708f2d157343b79af6d552384fc4cbdf8ab633b727eb547f733fbc1cfdd14d SHA512 
ecee70695f8d48f8eeeb6916a7f25aac536e8725815e6c22ed01791f152b55a4203460cb090b00b64ed71e093890b9bc096679223cc97bda0c323e61f105a0ee
 WHIRLPOOL 
1f84792bccf200f938105e49cdcbdab534bf65286b5a0d03a0ebdd7b740e98cdfca0e0e67e5bc817758cb2deba252acb34af3decd16389c3bc130206c768a353

diff --git a/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild 
b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
new file mode 100644
index 000..8aea5a8
--- /dev/null
+++ b/dev-perl/TermReadKey/TermReadKey-2.330.0.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=JSTOWE
+MODULE_VERSION=2.33
+inherit perl-module
+
+DESCRIPTION="Change terminal modes, and perform non-blocking reads"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND="virtual/perl-ExtUtils-MakeMaker"
+
+SRC_TEST="do parallel"