summaryrefslogtreecommitdiff
path: root/app-arch/libdeflate
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 /app-arch/libdeflate
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'app-arch/libdeflate')
-rw-r--r--app-arch/libdeflate/Manifest5
-rw-r--r--app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch37
-rw-r--r--app-arch/libdeflate/libdeflate-1.23.ebuild55
-rw-r--r--app-arch/libdeflate/libdeflate-1.24.ebuild61
-rw-r--r--app-arch/libdeflate/libdeflate-1.25.ebuild57
-rw-r--r--app-arch/libdeflate/libdeflate-9999.ebuild55
-rw-r--r--app-arch/libdeflate/metadata.xml17
7 files changed, 0 insertions, 287 deletions
diff --git a/app-arch/libdeflate/Manifest b/app-arch/libdeflate/Manifest
deleted file mode 100644
index 46949f809e0b..000000000000
--- a/app-arch/libdeflate/Manifest
+++ /dev/null
@@ -1,5 +0,0 @@
-DIST libdeflate-1.23.tar.gz 197519 BLAKE2B 6921aaf0fde3a2c1a8b04484879c64c2da2ee499353927fa20e8816932a4ccdc53af302f978eb099ee01f1a4c2ac5184529886d1c2a7adcb388ddd9fbd2b078f SHA512 c1effb9c5ee8d65bc12ae3d0669a4a394acace13cc146300ed24a7f12a0ec058f66729e1ffbae268711bdcc4151143752ab2d56a099dd6394b2735e8e2f1b671
-DIST libdeflate-1.24-gcc-16.1.patch 1498 BLAKE2B bf235b0b558efd0ee99c4da98392d034636889eab9bc06a3848c836ab3ace747ea5379396a0f51ba47e4c4d455651a660e7514fea712454ffdce31ec65c14aeb SHA512 cb55b1ccc241e5efe978ce6fa6c4839b8a4d7397e8842f4d3dd7e0137f67164089f00f7d0633867e0c802f24cfa7cb14e0a2f99c895902f902f96133410462cc
-DIST libdeflate-1.24-gcc-16.2.patch 3157 BLAKE2B 6461265678daa24e5ddadd1412a0918a21306542c14a7086d99eb81ce975c5adbf43530333a53245d876a523a8ee753102a312e18e2271acc9c92511d064d7fe SHA512 aa1e69dbf9cc0ad62a604f7bad24cd1b90a87b02f9e6755d85a07fb061ce690a53cef1d616f3a592dfded1aa1f0332effe784c8340462d91e68ef008d3178c15
-DIST libdeflate-1.24.tar.gz 197668 BLAKE2B e38999c7deb7a5652c338821f694446c83cb33914ced47958cb0afea54c353beb658b48a7cabb276581811657ac0242da7f196ea6aaefa8fb7e745ac21b72ee0 SHA512 c20a772aeeac593c34e8a68be80b23cb116699141de269d94df072636b6c90572f541b3344d830325cf45b03e7a1303e0274d79ce96c360fd421d4eb05ae1f92
-DIST libdeflate-1.25.tar.gz 197494 BLAKE2B 4aae387097da7c8d64193f1d4d5f0e8030254b73336b5c8e847ddeb9dfb5b1d7701b8130c1ae46d67057843c9b70d326fe23da92718689d393900ab8fef0e57b SHA512 fa02fa0a6d241d3f71cf4238a3ac58968cbea0b66613c1647d6eea575379d60e93f4647f8b3921e8c31322e20521aa9953213d5465f7d10a27c57bdd7186d318
diff --git a/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch b/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch
deleted file mode 100644
index ae290f3f69d2..000000000000
--- a/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Only build these when the user enables zlib and gzip support
-diff --git a/programs/CMakeLists.txt b/programs/CMakeLists.txt
-index e707a25..fcfaf12 100644
---- a/programs/CMakeLists.txt
-+++ b/programs/CMakeLists.txt
-@@ -80,22 +80,28 @@ if(LIBDEFLATE_BUILD_TESTS)
- target_link_libraries(libdeflate_test_utils PUBLIC
- libdeflate_prog_utils ZLIB::ZLIB)
-
-+ if(LIBDEFLATE_GZIP_SUPPORT AND LIBDEFLATE_ZLIB_SUPPORT)
- # Build the benchmark and checksum programs.
- add_executable(benchmark benchmark.c)
- target_link_libraries(benchmark PRIVATE libdeflate_test_utils)
- add_executable(checksum checksum.c)
- target_link_libraries(checksum PRIVATE libdeflate_test_utils)
-+ endif()
-
- # Build the unit test programs and register them with CTest.
- set(UNIT_TEST_PROGS
-- test_checksums
- test_custom_malloc
- test_incomplete_codes
- test_invalid_streams
- test_litrunlen_overflow
- test_overread
- test_slow_decompression
-- test_trailing_bytes
- )
-+ if(LIBDEFLATE_GZIP_SUPPORT AND LIBDEFLATE_ZLIB_SUPPORT)
-+ list(APPEND UNIT_TEST_PROGS
-+ test_checksums
-+ test_trailing_bytes
-+ )
-+ endif()
- foreach(PROG ${UNIT_TEST_PROGS})
- add_executable(${PROG} ${PROG}.c)
- target_link_libraries(${PROG} PRIVATE libdeflate_test_utils)
diff --git a/app-arch/libdeflate/libdeflate-1.23.ebuild b/app-arch/libdeflate/libdeflate-1.23.ebuild
deleted file mode 100644
index 504dffd8f33e..000000000000
--- a/app-arch/libdeflate/libdeflate-1.23.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2019-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
-HOMEPAGE="https://github.com/ebiggers/libdeflate"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ebiggers/libdeflate.git"
-else
- SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-# the zlib USE-flag enables support for zlib
-# the test USE-flag programs depend on virtual/zlib for comparison tests
-IUSE="+utils test"
-
-RESTRICT="
- !test? ( test )
-"
-
-DEPEND="
- test? ( virtual/zlib[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLIBDEFLATE_BUILD_SHARED_LIB="yes"
- -DLIBDEFLATE_BUILD_STATIC_LIB="no"
- -DLIBDEFLATE_USE_SHARED_LIB="yes"
-
- -DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
- -DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_GZIP="$(usex utils)"
- -DLIBDEFLATE_GZIP_SUPPORT="yes"
-
- -DLIBDEFLATE_ZLIB_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_TESTS="$(usex test)"
- )
-
- cmake-multilib_src_configure
-}
diff --git a/app-arch/libdeflate/libdeflate-1.24.ebuild b/app-arch/libdeflate/libdeflate-1.24.ebuild
deleted file mode 100644
index 592914032df0..000000000000
--- a/app-arch/libdeflate/libdeflate-1.24.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2019-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
-HOMEPAGE="https://github.com/ebiggers/libdeflate"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ebiggers/libdeflate.git"
-else
- SRC_URI="
- https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz
- https://github.com/ebiggers/libdeflate/commit/2a3762cf736aff9aa5dda329fdec3c08a816eb9b.patch -> ${P}-gcc-16.1.patch
- https://github.com/ebiggers/libdeflate/commit/6bb493615b0ef35c98fc4aa4ec04f448788db6a5.patch -> ${P}-gcc-16.2.patch
- "
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-# the zlib USE-flag enables support for zlib
-# the test USE-flag programs depend on virtual/zlib for comparison tests
-IUSE="+utils test"
-
-RESTRICT="
- !test? ( test )
-"
-
-DEPEND="
- test? ( virtual/zlib[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
- "${DISTDIR}/${P}-gcc-16.1.patch"
- "${DISTDIR}/${P}-gcc-16.2.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLIBDEFLATE_BUILD_SHARED_LIB="yes"
- -DLIBDEFLATE_BUILD_STATIC_LIB="no"
- -DLIBDEFLATE_USE_SHARED_LIB="yes"
-
- -DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
- -DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_GZIP="$(usex utils)"
- -DLIBDEFLATE_GZIP_SUPPORT="yes"
-
- -DLIBDEFLATE_ZLIB_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_TESTS="$(usex test)"
- )
-
- cmake-multilib_src_configure
-}
diff --git a/app-arch/libdeflate/libdeflate-1.25.ebuild b/app-arch/libdeflate/libdeflate-1.25.ebuild
deleted file mode 100644
index af942f5a0785..000000000000
--- a/app-arch/libdeflate/libdeflate-1.25.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2019-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
-HOMEPAGE="https://github.com/ebiggers/libdeflate"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ebiggers/libdeflate.git"
-else
- SRC_URI="
- https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz
- "
- KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-# the zlib USE-flag enables support for zlib
-# the test USE-flag programs depend on virtual/zlib for comparison tests
-IUSE="+utils test"
-
-RESTRICT="
- !test? ( test )
-"
-
-DEPEND="
- test? ( virtual/zlib[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLIBDEFLATE_BUILD_SHARED_LIB="yes"
- -DLIBDEFLATE_BUILD_STATIC_LIB="no"
- -DLIBDEFLATE_USE_SHARED_LIB="yes"
-
- -DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
- -DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_GZIP="$(usex utils)"
- -DLIBDEFLATE_GZIP_SUPPORT="yes"
-
- -DLIBDEFLATE_ZLIB_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_TESTS="$(usex test)"
- )
-
- cmake-multilib_src_configure
-}
diff --git a/app-arch/libdeflate/libdeflate-9999.ebuild b/app-arch/libdeflate/libdeflate-9999.ebuild
deleted file mode 100644
index b32a5a2d0617..000000000000
--- a/app-arch/libdeflate/libdeflate-9999.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 2019-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib
-
-DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression"
-HOMEPAGE="https://github.com/ebiggers/libdeflate"
-
-if [[ ${PV} == *9999* ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/ebiggers/libdeflate.git"
-else
- SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-# the zlib USE-flag enables support for zlib
-# the test USE-flag programs depend on virtual/zlib for comparison tests
-IUSE="+utils test"
-
-RESTRICT="
- !test? ( test )
-"
-
-DEPEND="
- test? ( virtual/zlib[${MULTILIB_USEDEP}] )
-"
-
-PATCHES=(
- "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DLIBDEFLATE_BUILD_SHARED_LIB="yes"
- -DLIBDEFLATE_BUILD_STATIC_LIB="no"
- -DLIBDEFLATE_USE_SHARED_LIB="yes"
-
- -DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
- -DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_GZIP="$(usex utils)"
- -DLIBDEFLATE_GZIP_SUPPORT="yes"
-
- -DLIBDEFLATE_ZLIB_SUPPORT="yes"
-
- -DLIBDEFLATE_BUILD_TESTS="$(usex test)"
- )
-
- cmake-multilib_src_configure
-}
diff --git a/app-arch/libdeflate/metadata.xml b/app-arch/libdeflate/metadata.xml
deleted file mode 100644
index a86f99c2d9b3..000000000000
--- a/app-arch/libdeflate/metadata.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person" proxied="yes">
- <email>negril.nx+gentoo@gmail.com</email>
- <name>Paul Zander</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <use>
- <flag name="test">Build the test programs (requires <pkg>virtual/zlib</pkg>)</flag>
- <flag name="utils">Build the libdeflate-gzip program</flag>
- </use>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>