diff options
author | Okamura Kazuya <gentoo-guru@danceylove.net> | 2023-07-09 20:19:53 +0900 |
---|---|---|
committer | Okamura Kazuya <gentoo-guru@danceylove.net> | 2023-07-09 20:19:53 +0900 |
commit | 8a207b06ea8e1e78c015c6672988d03af04c8182 (patch) | |
tree | d4ea14f1bcad387418cf3cac58a0c16d9c10e53a /dev-libs/ls-hpack | |
parent | dev-libs/lsquic: Fixed compile failures (diff) | |
download | guru-8a207b06ea8e1e78c015c6672988d03af04c8182.tar.gz guru-8a207b06ea8e1e78c015c6672988d03af04c8182.tar.bz2 guru-8a207b06ea8e1e78c015c6672988d03af04c8182.zip |
dev-libs/ls-hpack: drop 2.3.0
Signed-off-by: Okamura Kazuya <gentoo-guru@danceylove.net>
Diffstat (limited to 'dev-libs/ls-hpack')
-rw-r--r-- | dev-libs/ls-hpack/ls-hpack-2.3.0.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/ls-hpack/ls-hpack-2.3.0.ebuild b/dev-libs/ls-hpack/ls-hpack-2.3.0.ebuild deleted file mode 100644 index 9aa03d384..000000000 --- a/dev-libs/ls-hpack/ls-hpack-2.3.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="QPACK compression library for use with HTTP/3" -HOMEPAGE="https://github.com/litespeedtech/ls-hpack/" -SRC_URI="https://github.com/litespeedtech/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="static-libs" - -PATCHES=( - "${FILESDIR}"/${PN}-disable-tests.patch -) - -src_configure() { - local mycmakeargs=( - -DSHARED=$(usex !static-libs 1 0) - ) - cmake_src_configure -} - -src_install() { - mkdir -p ${D}/usr/include/lshpack/ - mkdir -p ${D}/usr/lib64/ - cp ${S}_build/libls-hpack* ${D}/usr/lib64/ - cp ${S}/lshpack.h ${D}/usr/include/lshpack/ - cp ${S}/lshpack.h ${D}/usr/include/ - einstalldocs -} |