commit: 0dd79437900279db51502a489ce30d51301d06d8 Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> AuthorDate: Fri Mar 8 16:32:30 2024 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org> CommitDate: Fri Mar 8 16:34:57 2024 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=0dd79437
app-arch/libdeflate: moved to ::gentoo Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org> app-arch/libdeflate/libdeflate-1.11.ebuild | 28 ---------------------------- app-arch/libdeflate/libdeflate-1.6.ebuild | 21 --------------------- app-arch/libdeflate/libdeflate-1.7.ebuild | 28 ---------------------------- app-arch/libdeflate/libdeflate-1.8.ebuild | 28 ---------------------------- app-arch/libdeflate/libdeflate-1.9.ebuild | 28 ---------------------------- app-arch/libdeflate/libdeflate-9999.ebuild | 28 ---------------------------- app-arch/libdeflate/metadata.xml | 19 ------------------- 7 files changed, 180 deletions(-) diff --git a/app-arch/libdeflate/libdeflate-1.11.ebuild b/app-arch/libdeflate/libdeflate-1.11.ebuild deleted file mode 100644 index 9e7344b22..000000000 --- a/app-arch/libdeflate/libdeflate-1.11.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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" -else - SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_install() { - emake DESTDIR="${ED}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)" install - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - dodoc NEWS.md README.md -} diff --git a/app-arch/libdeflate/libdeflate-1.6.ebuild b/app-arch/libdeflate/libdeflate-1.6.ebuild deleted file mode 100644 index 666506943..000000000 --- a/app-arch/libdeflate/libdeflate-1.6.ebuild +++ /dev/null @@ -1,21 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Heavily optimized DEFLATE/zlib/gzip (de)compression" -HOMEPAGE="https://github.com/ebiggers/libdeflate" -SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -src_install() { - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - emake install DESTDIR="${ED}" PREFIX=/usr LIBDIR=/usr/"$(get_libdir)" - dodoc NEWS README.md -} diff --git a/app-arch/libdeflate/libdeflate-1.7.ebuild b/app-arch/libdeflate/libdeflate-1.7.ebuild deleted file mode 100644 index bfafcfecd..000000000 --- a/app-arch/libdeflate/libdeflate-1.7.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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" -else - SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_install() { - emake DESTDIR="${ED}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)" install - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - dodoc NEWS README.md -} diff --git a/app-arch/libdeflate/libdeflate-1.8.ebuild b/app-arch/libdeflate/libdeflate-1.8.ebuild deleted file mode 100644 index bfafcfecd..000000000 --- a/app-arch/libdeflate/libdeflate-1.8.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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" -else - SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_install() { - emake DESTDIR="${ED}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)" install - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - dodoc NEWS README.md -} diff --git a/app-arch/libdeflate/libdeflate-1.9.ebuild b/app-arch/libdeflate/libdeflate-1.9.ebuild deleted file mode 100644 index ef7ead774..000000000 --- a/app-arch/libdeflate/libdeflate-1.9.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -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" -else - SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_install() { - emake DESTDIR="${ED}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)" install - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - dodoc NEWS,d README.md -} diff --git a/app-arch/libdeflate/libdeflate-9999.ebuild b/app-arch/libdeflate/libdeflate-9999.ebuild deleted file mode 100644 index 35aff28c3..000000000 --- a/app-arch/libdeflate/libdeflate-9999.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 2019-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -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" -else - SRC_URI="https://github.com/ebiggers/libdeflate/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="static-libs test" -RESTRICT="!test? ( test )" - -src_install() { - emake DESTDIR="${ED}" PREFIX=/usr LIBDIR="/usr/$(get_libdir)" install - if ! use static-libs; then - find "${ED}" -name '*.a' -delete || die - fi - dodoc NEWS.md README.md -} diff --git a/app-arch/libdeflate/metadata.xml b/app-arch/libdeflate/metadata.xml deleted file mode 100644 index fe240766f..000000000 --- a/app-arch/libdeflate/metadata.xml +++ /dev/null @@ -1,19 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>[email protected]</email> - <name>Martin Mokrejs</name> - </maintainer> - <maintainer type="person"> - <email>[email protected]</email> - <name>Aisha Tammy</name> - </maintainer> - <maintainer type="project"> - <email>[email protected]</email> - <name>Gentoo Biology Project</name> - </maintainer> - <upstream> - <remote-id type="github">ebiggers/libdeflate</remote-id> - </upstream> -</pkgmetadata>
