From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 02F31158064 for ; Sun, 5 May 2024 01:17:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6BE692BC01B; Sun, 5 May 2024 01:17:03 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 49EBA2BC01B for ; Sun, 5 May 2024 01:17:03 +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 2F3A33430B2 for ; Sun, 5 May 2024 01:17:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2D0D19F4 for ; Sun, 5 May 2024 01:17:00 +0000 (UTC) From: "Okamura Kazuya" 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" Message-ID: <1714871464.6cd12c6ccfa35e923fcba100aa08440c88a92f9e.trakrailysurely@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-libs/lsbcrypt/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-libs/lsbcrypt/lsbcrypt-1.0.0-r1.ebuild X-VCS-Directories: dev-libs/lsbcrypt/ X-VCS-Committer: trakrailysurely X-VCS-Committer-Name: Okamura Kazuya X-VCS-Revision: 6cd12c6ccfa35e923fcba100aa08440c88a92f9e X-VCS-Branch: dev Date: Sun, 5 May 2024 01:17:00 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d9355164-1eb9-41f2-aad7-7a76e7f30bcb X-Archives-Hash: 60ead9061de068a12c1f86e4887213cc commit: 6cd12c6ccfa35e923fcba100aa08440c88a92f9e Author: Okamura Kazuya danceylove net> AuthorDate: Sun May 5 01:11:04 2024 +0000 Commit: Okamura Kazuya danceylove net> CommitDate: Sun May 5 01:11:04 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6cd12c6c dev-libs/lsbcrypt: drop 1.0.0-r1 Signed-off-by: Okamura Kazuya danceylove.net> dev-libs/lsbcrypt/lsbcrypt-1.0.0-r1.ebuild | 31 ------------------------------ 1 file changed, 31 deletions(-) diff --git a/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r1.ebuild b/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r1.ebuild deleted file mode 100644 index 62d5ed367a..0000000000 --- a/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r1.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 - -COMMIT="55ff64349dec3012cfbbb1c4f92d4dbd46920213" - -DESCRIPTION="libcrypt wrapper for LiteSpeedTech" -HOMEPAGE="https://github.com/litespeedtech/libbcrypt/" -SRC_URI="https://github.com/litespeedtech/libbcrypt/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz" - -S="${WORKDIR}/libbcrypt-${COMMIT}" - -LICENSE="CC0-1.0 public-domain" -SLOT="0" -KEYWORDS="~amd64" - -PATCHES=( - "${FILESDIR}"/${PV}-fix-tests.patch -) - -src_test() { - default - ./bcrypt_test || die "Tests failed!" -} - -src_install() { - newlib.a bcrypt.a libbcrypt.a - newheader bcrypt.h libbcrypt.h - einstalldocs -}