From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1536167-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id 9268215800D
	for <garchives@archives.gentoo.org>; Sun,  9 Jul 2023 11:21:08 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DAEC8E089E;
	Sun,  9 Jul 2023 11:21:07 +0000 (UTC)
Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id C7BB5E089E
	for <gentoo-commits@lists.gentoo.org>; Sun,  9 Jul 2023 11:21:07 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id BC769335DC1
	for <gentoo-commits@lists.gentoo.org>; Sun,  9 Jul 2023 11:21:06 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D413A88
	for <gentoo-commits@lists.gentoo.org>; Sun,  9 Jul 2023 11:21:05 +0000 (UTC)
From: "Okamura Kazuya" <trakrailysurely@danceylove.net>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Okamura Kazuya" <trakrailysurely@danceylove.net>
Message-ID: <1688901650.e001f86aaebdf1465195425e7d1319664dbd3395.trakrailysurely@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/ls-qpack/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: dev-libs/ls-qpack/ls-qpack-2.5.0.ebuild
X-VCS-Directories: dev-libs/ls-qpack/
X-VCS-Committer: trakrailysurely
X-VCS-Committer-Name: Okamura Kazuya
X-VCS-Revision: e001f86aaebdf1465195425e7d1319664dbd3395
X-VCS-Branch: dev
Date: Sun,  9 Jul 2023 11:21:05 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 488ae82f-898d-47f4-95d1-d42a91edf17c
X-Archives-Hash: 6a63d1281ba5a57e8f559126a061375b

commit:     e001f86aaebdf1465195425e7d1319664dbd3395
Author:     Okamura Kazuya <gentoo-guru <AT> danceylove <DOT> net>
AuthorDate: Sun Jul  9 11:20:50 2023 +0000
Commit:     Okamura Kazuya <trakrailysurely <AT> danceylove <DOT> net>
CommitDate: Sun Jul  9 11:20:50 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e001f86a

dev-libs/ls-qpack: drop 2.5.0

Signed-off-by: Okamura Kazuya <gentoo-guru <AT> danceylove.net>

 dev-libs/ls-qpack/ls-qpack-2.5.0.ebuild | 31 -------------------------------
 1 file changed, 31 deletions(-)

diff --git a/dev-libs/ls-qpack/ls-qpack-2.5.0.ebuild b/dev-libs/ls-qpack/ls-qpack-2.5.0.ebuild
deleted file mode 100644
index ab716aa5b..000000000
--- a/dev-libs/ls-qpack/ls-qpack-2.5.0.ebuild
+++ /dev/null
@@ -1,31 +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-qpack/"
-SRC_URI="https://github.com/litespeedtech/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="static-libs"
-
-src_configure() {
-	local mycmakeargs=(
-		-DBUILD_SHARED_LIBS=$(usex !static-libs)
-	)
-	cmake_src_configure
-}
-
-src_install() {
-	mkdir -p ${D}/usr/include/
-	mkdir -p ${D}/usr/lib64/
-	cp ${S}_build/libls* ${D}/usr/lib64/
-	cp ${S}/lsxpack_header.h ${D}/usr/include/
-	cp ${S}/lsqpack.h ${D}/usr/include/
-	einstalldocs
-}