diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-12 11:50:53 -0500 |
| commit | 290aebdea65a02557706eaeda477fef0437b6a48 (patch) | |
| tree | f87a939169a508a2e943570501b64cc16b411cda /dev-perl/Text-WrapI18N | |
| parent | 6783ddcd4b73d9ce586a71770caed352bec93b16 (diff) | |
| download | baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip | |
Adding metadata
Diffstat (limited to 'dev-perl/Text-WrapI18N')
| -rw-r--r-- | dev-perl/Text-WrapI18N/Manifest | 1 | ||||
| -rw-r--r-- | dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r2.ebuild | 16 | ||||
| -rw-r--r-- | dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r3.ebuild | 18 | ||||
| -rw-r--r-- | dev-perl/Text-WrapI18N/files/Text-WrapI18N-fix-endless-loop.patch | 26 | ||||
| -rw-r--r-- | dev-perl/Text-WrapI18N/metadata.xml | 9 |
5 files changed, 0 insertions, 70 deletions
diff --git a/dev-perl/Text-WrapI18N/Manifest b/dev-perl/Text-WrapI18N/Manifest deleted file mode 100644 index c11ae6235ace..000000000000 --- a/dev-perl/Text-WrapI18N/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST Text-WrapI18N-0.06.tar.gz 3812 BLAKE2B 9e85b6afb81dfd5b568722986613150b3cd913ab9efee5907be08f57464b6a58ba58051695e933c7584d9849ab83e659f9814dd48719b6f7b91df08936ae7c36 SHA512 14ff46154f198ae743f1bf354d6bb020968b1e3c3996e882c871e0a0067ad1d6b50911e69aec31380200d64bc4ab46ca1829cce1206ad43406fab89fa7e6c0af diff --git a/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r2.ebuild b/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r2.ebuild deleted file mode 100644 index 525692818425..000000000000 --- a/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r2.ebuild +++ /dev/null @@ -1,16 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DIST_AUTHOR=KUBOTA -DIST_VERSION=0.06 -inherit perl-module - -DESCRIPTION="Internationalized substitute of Text::Wrap" - -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris" - -RDEPEND="dev-perl/Text-CharWidth" -BDEPEND="${RDEPEND}" diff --git a/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r3.ebuild b/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r3.ebuild deleted file mode 100644 index 12e817b7ac27..000000000000 --- a/dev-perl/Text-WrapI18N/Text-WrapI18N-0.60.0-r3.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DIST_AUTHOR=KUBOTA -DIST_VERSION=0.06 -inherit perl-module - -DESCRIPTION="Internationalized substitute of Text::Wrap" - -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris" - -RDEPEND="dev-perl/Text-CharWidth" -BDEPEND="${RDEPEND}" - -PATCHES=( "${FILESDIR}"/${PN}-fix-endless-loop.patch ) diff --git a/dev-perl/Text-WrapI18N/files/Text-WrapI18N-fix-endless-loop.patch b/dev-perl/Text-WrapI18N/files/Text-WrapI18N-fix-endless-loop.patch deleted file mode 100644 index ab51380b7d16..000000000000 --- a/dev-perl/Text-WrapI18N/files/Text-WrapI18N-fix-endless-loop.patch +++ /dev/null @@ -1,26 +0,0 @@ -patch is extracted from debian: -https://deb.debian.org/debian/pool/main/libt/libtext-wrapi18n-perl/libtext-wrapi18n-perl_0.06-10.debian.tar.xz - -Description: The infinite loop occurs in Text::WrapI18N when po4a tries to report an error in the PO files. - I could reproduce the problem in WrapI18N::wrap() and I propose the - attached patch to WrapI18N::wrap(). (A word should be placed on the - next line if it fits on this line, but the leading header must be taken - into account, thus $columns -> $columns - length $header) -Origin: vendor -Bug-Debian: https://bugs.debian.org/470250 -Forwarded: unknown -Author: Nicolas François <nicolas.francois@centraliens.net> -Reviewed-by: gregor herrmann <gregoa@debian.org> -Last-Update: 2019-03-21 - ---- a/WrapI18N.pm 2003-06-25 11:14:25.000000000 +0200 -+++ b/WrapI18N.pm 2008-03-13 02:04:02.628000837 +0100 -@@ -88,7 +88,7 @@ sub wrap { - $len = 0; - $text = $top2 . $text; - $word = ''; $wlen = 0; -- } elsif ($wlen + $w <= $columns) { -+ } elsif ($wlen + $w <= $columns - length ($top2)) { - # the current word is sent to next line - $out .= $separator; - $len = 0; diff --git a/dev-perl/Text-WrapI18N/metadata.xml b/dev-perl/Text-WrapI18N/metadata.xml deleted file mode 100644 index 89c67f49bdb9..000000000000 --- a/dev-perl/Text-WrapI18N/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>perl@gentoo.org</email> - <name>Gentoo Perl Project</name> - </maintainer> - <origin>baldeagleos-repo</origin> -</pkgmetadata> |
