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

2024-03-11 Thread Sam James
commit: d9a4c4a5bce7bb45f75c5552adf4e799b6bcb829
Author: Sam James  gentoo  org>
AuthorDate: Tue Mar 12 05:52:32 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Mar 12 05:52:32 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9a4c4a5

dev-perl/Unicode-UTF8: fix 32-bit tests

Closes: https://bugs.gentoo.org/925365
Signed-off-by: Sam James  gentoo.org>

 .../Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild|  6 ++-
 .../files/Unicode-UTF8-0.620.0-32-bit.patch| 52 ++
 2 files changed, 57 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
index efe2e84c7e4d..9bf3e2d925c5 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -30,6 +30,10 @@ BDEPEND="${RDEPEND}
)
 "
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.620.0-32-bit.patch
+)
+
 src_test() {
perl_rm_files t/999_pod.t
perl-module_src_test

diff --git a/dev-perl/Unicode-UTF8/files/Unicode-UTF8-0.620.0-32-bit.patch 
b/dev-perl/Unicode-UTF8/files/Unicode-UTF8-0.620.0-32-bit.patch
new file mode 100644
index ..9c243c9d106a
--- /dev/null
+++ b/dev-perl/Unicode-UTF8/files/Unicode-UTF8-0.620.0-32-bit.patch
@@ -0,0 +1,52 @@
+https://bugs.gentoo.org/925365
+https://rt.cpan.org/Public/Bug/Display.html?id=127007
+https://github.com/chansen/p5-unicode-utf8/pull/3
+
+From cb30ee19c31a27254c709b78451159d89c377beb Mon Sep 17 00:00:00 2001
+From: "E. Choroba" 
+Date: Thu, 6 Dec 2018 14:42:09 +0100
+Subject: [PATCH 1/2] Fix 080_super.t for 32-bit
+
+Copied from https://rt.cpan.org/Public/Bug/Display.html?id=127007.
+--- a/t/080_super.t
 b/t/080_super.t
+@@ -1,5 +1,6 @@
+ #!perl
+ 
++use Config;
+ use strict;
+ use warnings;
+ use lib 't';
+@@ -16,8 +17,12 @@ my @SUPER = ();
+ for (my $i = 0x0011_; $i < 0x7FFF_; $i += 0x20) {
+ push @SUPER, $i;
+ }
+-for (my $i = 0x8000_; $i < 0x_; $i += 0x40) {
+-push @SUPER, $i;
++
++# Doesn't work on 32 bit.
++if ($Config{ptrsize} == 8) {
++for (my $i = 0x8000_; $i < 0x_; $i += 0x40) {
++push @SUPER, $i;
++}
+ }
+ }
+ 
+
+From f989eaedfe83639c7be35fd429af36452ebaf1d2 Mon Sep 17 00:00:00 2001
+From: "E. Choroba" 
+Date: Tue, 11 Dec 2018 17:30:13 +0100
+Subject: [PATCH 2/2] fixup! Fix 080_super.t for 32-bit
+
+--- a/t/080_super.t
 b/t/080_super.t
+@@ -19,7 +19,7 @@ my @SUPER = ();
+ }
+ 
+ # Doesn't work on 32 bit.
+-if ($Config{ptrsize} == 8) {
++if ($Config{ivsize} > 4) {
+ for (my $i = 0x8000_; $i < 0x_; $i += 0x40) {
+ push @SUPER, $i;
+ }
+



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

2022-05-14 Thread WANG Xuerui
commit: 896f00c208f6edb2cd410392b957c32f173687e8
Author: WANG Xuerui  gentoo  org>
AuthorDate: Sat May 14 06:52:46 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Sat May 14 06:52:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=896f00c2

dev-perl/Unicode-UTF8: keyword 0.620.0-r1 for ~loong

Tests passed on real hardware.

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
index a476fc5f9864..1cfb54389808 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.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
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
virtual/perl-Carp



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

2021-10-01 Thread Andreas K. Hüttel
commit: 11e38ead1d0221a1d432dbff5c7ba21ec5159f29
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Oct  2 00:05:31 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sat Oct  2 00:13:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e38ead

dev-perl/Unicode-UTF8: EAPI=8 bump

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

 ...{Unicode-UTF8-0.620.0.ebuild => Unicode-UTF8-0.620.0-r1.ebuild} | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
similarity index 92%
rename from dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
rename to dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
index fff638d52f7..a476fc5f986 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
 
 DIST_AUTHOR=CHANSEN
 DIST_VERSION=0.62
@@ -11,15 +11,13 @@ DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
virtual/perl-Carp
virtual/perl-Exporter
virtual/perl-XSLoader
 "
-DEPEND="${RDEPEND}
+BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.590.0
test? (
>=virtual/perl-Encode-1.980.100
@@ -31,6 +29,7 @@ DEPEND="${RDEPEND}
dev-perl/Test-LeakTrace
)
 "
+
 src_test() {
perl_rm_files t/999_pod.t
perl-module_src_test



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

2020-12-27 Thread Fabian Groffen
commit: 26bd14ec0ff162b30e924ff20f9df43217bb9979
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Dec 27 16:13:05 2020 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Dec 27 16:19:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bd14ec

dev-perl/Unicode-UTF8: drop ppc-aix m68k-mint

Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Fabian Groffen  gentoo.org>

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index a1ae5578522..95635e9f980 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2019-07-19 Thread Mikle Kolyada
commit: 961644c0d5cda3786978df82fce17062e55b636f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 19 07:47:31 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 19 07:48:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=961644c0

dev-perl/Unicode-UTF8: Add ~riscv keyword wrt bug #690140

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11
RepoMan-Options: --include-arches="~riscv"

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 7c3bcf3f87d..582a59ab030 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~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 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-01-29 Thread Mikle Kolyada
commit: d71adf50d1122f32a444d3bfcd92c5f802f66f05
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Tue Jan 29 13:21:34 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Tue Jan 29 13:31:11 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d71adf50

dev-perl/Unicode-UTF8: mark s390 stable

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 2bf1d21961d..7cf55ac59e0 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2019-01-17 Thread Mikle Kolyada
commit: ebce6adc7f37ec2f903118f20ae7b4bee2e33a88
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Jan 17 20:36:09 2019 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Jan 17 20:36:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebce6adc

dev-perl/Unicode-UTF8: Add ~m68k keyword wrt bug #665088

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index c89f245aaad..2bf1d21961d 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~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 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2018-10-27 Thread Fabian Groffen
commit: 6c99b6af47b557ee1971644dc5576b8e7fc8fdf1
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Oct 27 12:44:37 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Oct 27 12:44:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c99b6af

dev-perl/Unicode-UTF8: added Prefix keywords, bug #665088

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 8cd8c8b396a..b918659276d 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~ppc-aix ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2018-10-11 Thread Andreas Hüttel
commit: 9c1683fd14da4f2237649a67a9eee4e6906a3400
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Thu Oct 11 14:53:08 2018 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Oct 11 14:56:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c1683fd

dev-perl/Unicode-UTF8: Blind stable on arm, critical bug 667774

Bug: https://bugs.gentoo.org/667774
Signed-off-by: Andreas K. Hüttel  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 18bafd40170..8cd8c8b396a 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

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

dev-perl/Unicode-UTF8-0.620.0: ppc64 stable, bug 667266

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 5a805f0fee5..18bafd40170 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-10-02 Thread Sergei Trofimovich
commit: b4fb5a78e286f3b74b69486da98e3d828a136962
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Oct  2 07:31:15 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Oct  2 07:33:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4fb5a78

dev-perl/Unicode-UTF8: stable 0.620.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/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 45dcc402c15..5a805f0fee5 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.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
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-09-30 Thread Sergei Trofimovich
commit: f6937c937f5d99f531591b3d70b8f8285e5ea7f4
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 30 15:20:49 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 30 18:52:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6937c93

dev-perl/Unicode-UTF8: stable 0.620.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/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index b206df8720c..45dcc402c15 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-08-19 Thread Matt Turner
commit: aaef9ad3fb62c3ccb36e7f34a71b849a6740aba8
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug 20 04:40:11 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug 20 04:40:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaef9ad3

dev-perl/Unicode-UTF8-0.620.0: alpha stable, bug 661778

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index be8e8e98d5a..b206df8720c 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-08-03 Thread Mikle Kolyada
commit: 3bf49c437aff263c1d7ab102205e2ac01e813ef0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Aug  4 00:19:53 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Aug  4 00:19:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bf49c43

dev-perl/Unicode-UTF8: Add ~s390 keyword wrt bug #652718

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 390f00aad08..be8e8e98d5a 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-04-15 Thread Sergei Trofimovich
commit: c343f25a57ef8ea47150cd3742f45c5cddd67fae
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Apr 15 21:06:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Apr 15 21:06:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c343f25a

dev-perl/Unicode-UTF8: keyworded 0.620.0 for ia64, bug #652718

Bug: https://bugs.gentoo.org/652718
Package-Manager: Portage-2.3.28, Repoman-2.3.9
RepoMan-Options: --include-arches="ia64"

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 93ae505f1f7..acb1bb0c815 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-03-27 Thread Matt Turner
commit: 6a2fb1db5022d0eb8b1904458c61456ef294db68
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Mar 28 03:39:53 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Mar 28 04:08:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a2fb1db

dev-perl/Unicode-UTF8-0.620.0: added ~mips

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 7ea90208239..93ae505f1f7 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~sparc x86 
~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2018-03-01 Thread Michał Górny
commit: 0d01f6e6d930dec7e7c18b3f716f16a3db51c14f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar  1 14:01:13 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar  1 14:28:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d01f6e6

dev-perl/Unicode-UTF8: Tested on ~amd64-fbsd

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 7610496f1c2..7ea90208239 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86 ~amd64-fbsd"
 IUSE="test"
 
 RDEPEND="



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

2017-07-07 Thread Alexis Ballier
commit: 481b8d8d1e26e49a5bf08f9b4f9e1e1d25a2b96b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jul  7 07:33:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jul  7 07:33:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=481b8d8d

dev-perl/Unicode-UTF8: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index 43e622e5590..7610496f1c2 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2017-05-30 Thread Kent Fredric
commit: 789cdcb0321008ec3d6470be553283f225cd86cb
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed May 31 02:51:37 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed May 31 02:51:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=789cdcb0

dev-perl/Unicode-UTF8: Cleanup old re bug #614802

Remove old versions affected by "." removal from "@INC"

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-perl/Unicode-UTF8/Manifest|  1 -
 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 39 ---
 2 files changed, 40 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Manifest b/dev-perl/Unicode-UTF8/Manifest
index 89e894e8edb..92baf65ca8e 100644
--- a/dev-perl/Unicode-UTF8/Manifest
+++ b/dev-perl/Unicode-UTF8/Manifest
@@ -1,2 +1 @@
-DIST Unicode-UTF8-0.60.tar.gz 81322 SHA256 
f6ccf25a2a3be9d36d97e014af2f3dda5141c6bb33a130fee2676aaa0fb96ebc SHA512 
9874d83cd142e7fc9503d5282015e2bda219332a393326cd2521c73849ce55f25eb125ab46879717ccf23c16a15491242ddb9c0535da9d323b56c0ba4fe1d77e
 WHIRLPOOL 
456ca11f4aa6fc3a6309ea1e5cc851980fac51d13b55acee90d874ef9a1b87bbd2ffc4f2df77aa0c6731d7de342b55a9e0ba38b1ada297c0361878299e80be53
 DIST Unicode-UTF8-0.62.tar.gz 87838 SHA256 
fa8722d0b74696e332fddd442994436ea93d3bfc7982d4babdcedfddd657d0f6 SHA512 
056026ac2ee4c101de5ea6017db59f875121dba8fd23ab5c2ae525effb8cf864e8a1c24588bb2a027792e27568742fc75bd5765694027b110afef867a4b982e0
 WHIRLPOOL 
c730625c0f3171b5ff60c72ed7e16f61814168d56be6f24c0b932c1bc1a517e0bd2915790d364878b3d31383975330f60e0306a3fddba6670903f85d70936874

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
deleted file mode 100644
index 2a734969e21..000
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=CHANSEN
-MODULE_VERSION=0.60
-inherit perl-module
-
-DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-Exporter
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
-   test? (
-   >=virtual/perl-Encode-1.980.100
-   >=dev-perl/Test-Fatal-0.6.0
-   >=virtual/perl-Test-Simple-0.470.0
-
-   dev-perl/Taint-Runtime
-   dev-perl/Variable-Magic
-   dev-perl/Test-LeakTrace
-   )
-"
-
-SRC_TEST=do
-
-src_test() {
-   perl_rm_files t/999_pod.t
-   perl-module_src_test
-}



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

2017-05-21 Thread Michael Weber
commit: 093c67f648b73fc43e4d1f7559f0b4f5a74bc413
Author: Michael Weber  gentoo  org>
AuthorDate: Mon May 22 01:18:38 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Mon May 22 01:18:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=093c67f6

dev-perl/Unicode-UTF8: ppc stable (bug 618984).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index d57c27342a2..43e622e5590 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2017-05-20 Thread Agostino Sarubbo
commit: 30470574c04c0a2b1ec234f13f27148cf90c35d1
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May 20 09:34:24 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May 20 09:34:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30470574

dev-perl/Unicode-UTF8: x86 stable wrt bug #618984

Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index fef8e48d5ac..d57c27342a2 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2017-05-20 Thread Agostino Sarubbo
commit: e2fed765ce9fbe0da6bd90fe63a86ff93901c205
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat May 20 08:47:06 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat May 20 08:47:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2fed765

dev-perl/Unicode-UTF8: amd64 stable wrt bug #618984

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
index edd1edb4766..fef8e48d5ac 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.620.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test"
 
 RDEPEND="



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

2017-04-12 Thread Kent Fredric
commit: b917ed05edf75fa4a17764984528ef4cc115e076
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Apr 12 15:10:07 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Apr 12 15:10:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b917ed05

dev-perl/Unicode-UTF8: Remove old

Purging version affected by bug #615362

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Unicode-UTF8/Manifest|  1 -
 dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild | 36 ---
 2 files changed, 37 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Manifest b/dev-perl/Unicode-UTF8/Manifest
index 3d2174262aa..89e894e8edb 100644
--- a/dev-perl/Unicode-UTF8/Manifest
+++ b/dev-perl/Unicode-UTF8/Manifest
@@ -1,3 +1,2 @@
 DIST Unicode-UTF8-0.60.tar.gz 81322 SHA256 
f6ccf25a2a3be9d36d97e014af2f3dda5141c6bb33a130fee2676aaa0fb96ebc SHA512 
9874d83cd142e7fc9503d5282015e2bda219332a393326cd2521c73849ce55f25eb125ab46879717ccf23c16a15491242ddb9c0535da9d323b56c0ba4fe1d77e
 WHIRLPOOL 
456ca11f4aa6fc3a6309ea1e5cc851980fac51d13b55acee90d874ef9a1b87bbd2ffc4f2df77aa0c6731d7de342b55a9e0ba38b1ada297c0361878299e80be53
-DIST Unicode-UTF8-0.61.tar.gz 87823 SHA256 
5ee155a8af856ac9b24819cf153592a13338651440478cb1dbf0e7f8e566676f SHA512 
8a8cd6fb692724f1b8e46d8b3235b710e99e12bf9f546222abd6f96a4537551f6bf00b18607b8c946d87007dae59745204d895f47418cbc14e7e3639b7751330
 WHIRLPOOL 
d000e86860787c01671a6ca434c80b094965f56c6ce8826c4067e0f1f9981794b02901f3f570b423b6cfc7b74cd1cbfc6e51fb30c76cbe30d14e76ebd1e6ead5
 DIST Unicode-UTF8-0.62.tar.gz 87838 SHA256 
fa8722d0b74696e332fddd442994436ea93d3bfc7982d4babdcedfddd657d0f6 SHA512 
056026ac2ee4c101de5ea6017db59f875121dba8fd23ab5c2ae525effb8cf864e8a1c24588bb2a027792e27568742fc75bd5765694027b110afef867a4b982e0
 WHIRLPOOL 
c730625c0f3171b5ff60c72ed7e16f61814168d56be6f24c0b932c1bc1a517e0bd2915790d364878b3d31383975330f60e0306a3fddba6670903f85d70936874

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild
deleted file mode 100644
index a46c51a40d7..000
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=CHANSEN
-DIST_VERSION=0.61
-inherit perl-module
-
-DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-Exporter
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
-   test? (
-   >=virtual/perl-Encode-1.980.100
-   >=dev-perl/Test-Fatal-0.6.0
-   >=virtual/perl-Test-Simple-0.470.0
-
-   dev-perl/Taint-Runtime
-   dev-perl/Variable-Magic
-   dev-perl/Test-LeakTrace
-   )
-"
-src_test() {
-   perl_rm_files t/999_pod.t
-   perl-module_src_test
-}



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

2017-04-11 Thread Kent Fredric
commit: d0392df2e4e4c11ef651cd6b2a9f578d0e359810
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Apr 11 20:02:36 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Tue Apr 11 20:03:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0392df2

dev-perl/Unicode-UTF8: Bump to version 0.610.0

- EAPI6
- Parallel Testing

Upstream:
- Fix '.' in @INC

Bug: https://bugs.gentoo.org/614802
Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-perl/Unicode-UTF8/Manifest|  1 +
 dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/dev-perl/Unicode-UTF8/Manifest b/dev-perl/Unicode-UTF8/Manifest
index b78aa163a2d..0e36eed1539 100644
--- a/dev-perl/Unicode-UTF8/Manifest
+++ b/dev-perl/Unicode-UTF8/Manifest
@@ -1 +1,2 @@
 DIST Unicode-UTF8-0.60.tar.gz 81322 SHA256 
f6ccf25a2a3be9d36d97e014af2f3dda5141c6bb33a130fee2676aaa0fb96ebc SHA512 
9874d83cd142e7fc9503d5282015e2bda219332a393326cd2521c73849ce55f25eb125ab46879717ccf23c16a15491242ddb9c0535da9d323b56c0ba4fe1d77e
 WHIRLPOOL 
456ca11f4aa6fc3a6309ea1e5cc851980fac51d13b55acee90d874ef9a1b87bbd2ffc4f2df77aa0c6731d7de342b55a9e0ba38b1ada297c0361878299e80be53
+DIST Unicode-UTF8-0.61.tar.gz 87823 SHA256 
5ee155a8af856ac9b24819cf153592a13338651440478cb1dbf0e7f8e566676f SHA512 
8a8cd6fb692724f1b8e46d8b3235b710e99e12bf9f546222abd6f96a4537551f6bf00b18607b8c946d87007dae59745204d895f47418cbc14e7e3639b7751330
 WHIRLPOOL 
d000e86860787c01671a6ca434c80b094965f56c6ce8826c4067e0f1f9981794b02901f3f570b423b6cfc7b74cd1cbfc6e51fb30c76cbe30d14e76ebd1e6ead5

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild
new file mode 100644
index 000..a46c51a40d7
--- /dev/null
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.610.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=CHANSEN
+DIST_VERSION=0.61
+inherit perl-module
+
+DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-Exporter
+   virtual/perl-XSLoader
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
+   test? (
+   >=virtual/perl-Encode-1.980.100
+   >=dev-perl/Test-Fatal-0.6.0
+   >=virtual/perl-Test-Simple-0.470.0
+
+   dev-perl/Taint-Runtime
+   dev-perl/Variable-Magic
+   dev-perl/Test-LeakTrace
+   )
+"
+src_test() {
+   perl_rm_files t/999_pod.t
+   perl-module_src_test
+}



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

2016-08-06 Thread Kent Fredric
commit: 96be02fd8672b4a4d3743784a4791514293c9b6e
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Aug  6 10:23:46 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Aug  6 11:53:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96be02fd

dev-perl/Unicode-UTF8: Remove POD Author Tests

Not useful for Gentoo: Extra deps for users, extra bogus
failure risk, zero benefit.

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="alpha amd64 amd64-fbsd arm arm64 hppa ia64 
m68k mips nios2 ppc ppc64 riscv s390 sh sparc sparc-fbsd x86 x86-fbsd"

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
index ea92c97..68eb7e1 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
@@ -26,7 +26,6 @@ DEPEND="${RDEPEND}
>=dev-perl/Test-Fatal-0.6.0
>=virtual/perl-Test-Simple-0.470.0
 
-   dev-perl/Test-Pod
dev-perl/Taint-Runtime
dev-perl/Variable-Magic
dev-perl/Test-LeakTrace
@@ -34,3 +33,8 @@ DEPEND="${RDEPEND}
 "
 
 SRC_TEST=do
+
+src_test() {
+   perl_rm_files t/999_pod.t
+   perl-module_src_test
+}



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

2016-07-08 Thread Andreas Hüttel
commit: 622fb6ff829e61d3f829d91406420ad5b7179eaf
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jul  8 20:33:48 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jul  8 20:37:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=622fb6ff

dev-perl/Unicode-UTF8: Remove old

Package-Manager: portage-2.3.0

 dev-perl/Unicode-UTF8/Manifest|  2 --
 dev-perl/Unicode-UTF8/Unicode-UTF8-0.580.0.ebuild | 34 ---
 dev-perl/Unicode-UTF8/Unicode-UTF8-0.590.0.ebuild | 34 ---
 3 files changed, 70 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Manifest b/dev-perl/Unicode-UTF8/Manifest
index 5e22eaf..b78aa16 100644
--- a/dev-perl/Unicode-UTF8/Manifest
+++ b/dev-perl/Unicode-UTF8/Manifest
@@ -1,3 +1 @@
-DIST Unicode-UTF8-0.58.tar.gz 80135 SHA256 
6127236b0a51302bb0f868f851698811ef8f069670c8898e405ef2c1c2c9b971 SHA512 
037f5fe52c1ec1bded04300168190ac08e68aef3d217c14c01965da9cd822cc4edbfcaf17da870577226a3c7c1225223a98b88d8889bea791f21e315507a6e47
 WHIRLPOOL 
955c48aa3a0f757ba22837638d3c3015cf5288b35c7788ed29f06b8c314268f8500fcf8a33ab40ca6340e2b45757a78ecfe4624cf89d0462ac90593a181d0b74
-DIST Unicode-UTF8-0.59.tar.gz 80991 SHA256 
327564926662b325bff96ad780cc1bf0d6f49dbf00c0aa56296065070ceede99 SHA512 
6ff146c0c495c529b5423fb835712a01f78249b2b5ad4f1a8eaaf67bb3271fed205f9b95e698118a274214587fcd579e52cd6d0f09733aef4a653575a32a97fa
 WHIRLPOOL 
7f46ea877cb74b11825d8cdadbe643ddcc80d995dcfecd91a73bcc99f44669ce605993604a56aebe8644809ecc9f041e9ab8a1e8da7259394bfafa9072a40ed5
 DIST Unicode-UTF8-0.60.tar.gz 81322 SHA256 
f6ccf25a2a3be9d36d97e014af2f3dda5141c6bb33a130fee2676aaa0fb96ebc SHA512 
9874d83cd142e7fc9503d5282015e2bda219332a393326cd2521c73849ce55f25eb125ab46879717ccf23c16a15491242ddb9c0535da9d323b56c0ba4fe1d77e
 WHIRLPOOL 
456ca11f4aa6fc3a6309ea1e5cc851980fac51d13b55acee90d874ef9a1b87bbd2ffc4f2df77aa0c6731d7de342b55a9e0ba38b1ada297c0361878299e80be53

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.580.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.580.0.ebuild
deleted file mode 100644
index 9356869..000
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.580.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CHANSEN
-MODULE_VERSION=0.58
-inherit perl-module
-
-DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
-   test? (
-   >=virtual/perl-Encode-1.980.100
-   >=dev-perl/Test-Fatal-0.6.0
-   >=virtual/perl-Test-Simple-0.470.0
-
-   dev-perl/Test-Pod
-   dev-perl/Taint-Runtime
-   dev-perl/Variable-Magic
-   dev-perl/Test-LeakTrace
-   )
-"
-
-SRC_TEST=do

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.590.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.590.0.ebuild
deleted file mode 100644
index e6219fe..000
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.590.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CHANSEN
-MODULE_VERSION=0.59
-inherit perl-module
-
-DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="test"
-
-RDEPEND="
-   virtual/perl-XSLoader
-"
-DEPEND="${RDEPEND}
-   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
-   test? (
-   >=virtual/perl-Encode-1.980.100
-   >=dev-perl/Test-Fatal-0.6.0
-   >=virtual/perl-Test-Simple-0.470.0
-
-   dev-perl/Test-Pod
-   dev-perl/Taint-Runtime
-   dev-perl/Variable-Magic
-   dev-perl/Test-LeakTrace
-   )
-"
-
-SRC_TEST=do



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

2016-05-25 Thread Matt Turner
commit: 146061afed4d34f19bc7f5098ba4ed558a97
Author: Matt Turner  gentoo  org>
AuthorDate: Wed May 25 22:57:03 2016 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed May 25 23:08:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=146061af

dev-perl/Unicode-UTF8: added ~alpha, bug 579360.

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
index d831692..ea92c97 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 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="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ppc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ppc x86"
 IUSE="test"
 
 RDEPEND="



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

2016-03-15 Thread Agostino Sarubbo
commit: 32e58aefe3d57d4bbad3d73a85f14dbbe0a24397
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 12:12:37 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 12:12:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32e58aef

dev-perl/Unicode-UTF8: ppc stable wrt bug #576000

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
index 97da501..d831692 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc x86"
+KEYWORDS="amd64 ~arm ~hppa ppc x86"
 IUSE="test"
 
 RDEPEND="



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

2016-03-15 Thread Agostino Sarubbo
commit: 4c75c917f5d4b513778b1757e76fffa8421edacd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 12:11:16 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 12:11:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c75c917

dev-perl/Unicode-UTF8: x86 stable wrt bug #576000

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
index 27efa6e..97da501 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc x86"
 IUSE="test"
 
 RDEPEND="



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

2016-03-15 Thread Agostino Sarubbo
commit: be23279bcfaa945b5ae6301b6e54b05f9893dbf4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 12:09:59 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 12:09:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be23279b

dev-perl/Unicode-UTF8: amd64 stable wrt bug #576000

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

 dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild 
b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
index b1b9fe8..27efa6e 100644
--- a/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
+++ b/dev-perl/Unicode-UTF8/Unicode-UTF8-0.600.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Encoding and decoding of UTF-8 encoding form"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86"
 IUSE="test"
 
 RDEPEND="