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 A798715808C for ; Sat, 12 Mar 2022 19:19:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFFBFE0857; Sat, 12 Mar 2022 19:19:36 +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 A6511E0857 for ; Sat, 12 Mar 2022 19:19:36 +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 B5A6434312D for ; Sat, 12 Mar 2022 19:19:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5256C318 for ; Sat, 12 Mar 2022 19:19:34 +0000 (UTC) From: "Matthew Smith" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthew Smith" Message-ID: <1647112760.26f9ff9d27a5fe70d2e9f96b028a765856bf54e3.matthew@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/miniz/Manifest dev-libs/miniz/miniz-2.2.0.ebuild X-VCS-Directories: dev-libs/miniz/ X-VCS-Committer: matthew X-VCS-Committer-Name: Matthew Smith X-VCS-Revision: 26f9ff9d27a5fe70d2e9f96b028a765856bf54e3 X-VCS-Branch: master Date: Sat, 12 Mar 2022 19:19:34 +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: b1983890-a5c1-47ca-8583-cef11c5a1717 X-Archives-Hash: 196ff837839c8af6ac9202007b627a30 commit: 26f9ff9d27a5fe70d2e9f96b028a765856bf54e3 Author: Matthew Smith gentoo org> AuthorDate: Sat Mar 12 19:18:42 2022 +0000 Commit: Matthew Smith gentoo org> CommitDate: Sat Mar 12 19:19:20 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26f9ff9d dev-libs/miniz: add 2.2.0 Signed-off-by: Matthew Smith gentoo.org> dev-libs/miniz/Manifest | 1 + dev-libs/miniz/miniz-2.2.0.ebuild | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/dev-libs/miniz/Manifest b/dev-libs/miniz/Manifest index c7204638ad30..28884ca7cc6f 100644 --- a/dev-libs/miniz/Manifest +++ b/dev-libs/miniz/Manifest @@ -1 +1,2 @@ DIST miniz-2.1.0.tar.gz 104502 BLAKE2B 9a7b3818b454809cdfec523d98f13bef3a52e27b6d3857d289438978d12997e38c71aa97fffe060a6b765f8fbbdd8fe8cebced4a45d9f1f040dd3e39cf2a8055 SHA512 e0aba16afdf230d1e54d0a9cedd336b0b158b02744839f0547e14ee47a97fc1a6668f3a181bd46e969b01b158af18dc8ed3c0a4210b3b620242338a2788806b3 +DIST miniz-2.2.0.tar.gz 113592 BLAKE2B 110a71712396fb22075818f681d2e691b8b361e6c8eb786485f9fd3a1e00fcfc95bae4d470b8b1644a1e9674e69617abdba70e337f318969096db222f7a4c3d2 SHA512 0bb2b0ac627715b90ff9fd69ca8958a0bea387bd7ddf5c200daba953b98ef788092e3009842f4f123234e85570159250c8897a30c1c1f2d4dea9bca9837f6111 diff --git a/dev-libs/miniz/miniz-2.2.0.ebuild b/dev-libs/miniz/miniz-2.2.0.ebuild new file mode 100644 index 000000000000..482aadff9922 --- /dev/null +++ b/dev-libs/miniz/miniz-2.2.0.ebuild @@ -0,0 +1,16 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A lossless, high performance data compression library" +HOMEPAGE="https://github.com/richgel999/miniz" +SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" + +DOCS=( ChangeLog.md readme.md )