summaryrefslogtreecommitdiff
path: root/dev-perl/IO-Compress-Brotli
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /dev-perl/IO-Compress-Brotli
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'dev-perl/IO-Compress-Brotli')
-rw-r--r--dev-perl/IO-Compress-Brotli/IO-Compress-Brotli-0.19.0.ebuild30
-rw-r--r--dev-perl/IO-Compress-Brotli/Manifest1
-rw-r--r--dev-perl/IO-Compress-Brotli/files/IO-Compress-Brotli-0.019-unbundle.patch53
-rw-r--r--dev-perl/IO-Compress-Brotli/metadata.xml9
4 files changed, 0 insertions, 93 deletions
diff --git a/dev-perl/IO-Compress-Brotli/IO-Compress-Brotli-0.19.0.ebuild b/dev-perl/IO-Compress-Brotli/IO-Compress-Brotli-0.19.0.ebuild
deleted file mode 100644
index 94f4308b2f9a..000000000000
--- a/dev-perl/IO-Compress-Brotli/IO-Compress-Brotli-0.19.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2020-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DIST_AUTHOR=TIMLEGGE
-DIST_VERSION=0.019
-inherit perl-module
-
-DESCRIPTION="Read/write Brotli buffers/streams"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- app-arch/brotli:=
- dev-perl/File-Slurper
- virtual/perl-Getopt-Long
- virtual/perl-Time-HiRes
-"
-DEPEND="
- app-arch/brotli:=
-"
-BDEPEND="
- ${RDEPEND}
- virtual/perl-ExtUtils-MakeMaker
-"
-
-PATCHES=(
- "${FILESDIR}"/${PN}-0.019-unbundle.patch
-)
diff --git a/dev-perl/IO-Compress-Brotli/Manifest b/dev-perl/IO-Compress-Brotli/Manifest
deleted file mode 100644
index e5d215717508..000000000000
--- a/dev-perl/IO-Compress-Brotli/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST IO-Compress-Brotli-0.019.tar.gz 7814536 BLAKE2B 5e1df4da84c464c3bb1c595bf9f63660a274b99ff06dbe2dc5b490d5ec4410f08629b62c60b7c85fb2120ed2902c0610fd0085a4360883f3368d5b784bfd1e7e SHA512 d81fb94dfbdae24af3985349ccccfac9d5a863452b173542f7718e3a1ffcf18819b4456e2e0c305afabe0eeb336c0ad648d4d3f0fdb1f6229e82e0fad4751628
diff --git a/dev-perl/IO-Compress-Brotli/files/IO-Compress-Brotli-0.019-unbundle.patch b/dev-perl/IO-Compress-Brotli/files/IO-Compress-Brotli-0.019-unbundle.patch
deleted file mode 100644
index 7ec6c4549f42..000000000000
--- a/dev-perl/IO-Compress-Brotli/files/IO-Compress-Brotli-0.019-unbundle.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From 59541041bc3b39e8539fd12a8e584a63040ad7a5 Mon Sep 17 00:00:00 2001
-From: Kent Fredric <kentnl@gentoo.org>
-Date: Tue, 4 Feb 2020 23:17:49 +1300
-Subject: Disable using bundled brotli
-
---- a/Makefile.PL
-+++ b/Makefile.PL
-@@ -1,6 +1,5 @@
- use 5.008000;
- use ExtUtils::MakeMaker;
--use Alien::cmake3;
- use File::Spec::Functions qw/catfile/;
- use Config;
-
-@@ -19,6 +18,12 @@ if ($Config{myuname} =~ /strawberry/i || $Config{osname} =~ /MSWin/i ) {
- }
- }
-
-+my $bundled = $ENV{IO_COMPRESS_BROTLI_BUNDLED} || 0;
-+
-+# Avoid unnecessary dependency
-+use if $bundled, 'Alien::cmake3';
-+
-+
- WriteMakefile(
- NAME => 'IO::Compress::Brotli',
- VERSION_FROM => 'lib/IO/Compress/Brotli.pm',
-@@ -33,6 +38,7 @@ WriteMakefile(
- 'Getopt::Long' => '0',
- 'Time::HiRes' => '0',
- },
-+ ( $bundled ) ? (
- CONFIGURE_REQUIRES => {
- 'Alien::cmake3' => '0',
- },
-@@ -43,6 +49,9 @@ WriteMakefile(
- MYEXTLIB => $myextlib,
- EXTRALIBS => ' brotli/libbrotlienc$(LIB_EXT) brotli/libbrotlidec$(LIB_EXT) brotli/libbrotlicommon$(LIB_EXT) ',
- clean => { FILES => "brotli/Makefile $myextlib brotli/CMakeCache.txt brotli/CMakeFiles/* brotli/CTestTestfile.cmake brotli/DartConfiguration.tcl brotli/brotli* brotli/cmake_install.cmake brotli/libbrotlicommon.pc brotli/libbrotlidec.pc brotli/libbrotlienc.pc" },
-+ ) : (
-+ LIBS => ['-lbrotlienc -lbrotlidec'],
-+ ),
- META_ADD => {
- dynamic_config => 0,
- resources => {
-@@ -52,6 +61,7 @@ WriteMakefile(
- );
-
- sub MY::postamble {
-+ return '' unless $bundled;
- my @dirs = Alien::cmake3->bin_dir;
- my $cmake = defined $dirs[0] ? catfile($dirs[0] , Alien::cmake3->exe) : Alien::cmake3->exe;
- '
diff --git a/dev-perl/IO-Compress-Brotli/metadata.xml b/dev-perl/IO-Compress-Brotli/metadata.xml
deleted file mode 100644
index 89c67f49bdb9..000000000000
--- a/dev-perl/IO-Compress-Brotli/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>