public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2020-12-13 20:23 Dennis Lamm
  0 siblings, 0 replies; 26+ messages in thread
From: Dennis Lamm @ 2020-12-13 20:23 UTC (permalink / raw
  To: gentoo-commits

commit:     629bc57e66c8eee5e59170485e200f108af203ed
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 13 19:50:51 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Sun Dec 13 20:23:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=629bc57e

dev-libs/miniz: new ebuild

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18642
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-libs/miniz/Manifest           |  1 +
 dev-libs/miniz/metadata.xml       | 20 ++++++++++++++++++++
 dev-libs/miniz/miniz-2.1.0.ebuild | 29 +++++++++++++++++++++++++++++
 3 files changed, 50 insertions(+)

diff --git a/dev-libs/miniz/Manifest b/dev-libs/miniz/Manifest
new file mode 100644
index 00000000000..c7204638ad3
--- /dev/null
+++ b/dev-libs/miniz/Manifest
@@ -0,0 +1 @@
+DIST miniz-2.1.0.tar.gz 104502 BLAKE2B 9a7b3818b454809cdfec523d98f13bef3a52e27b6d3857d289438978d12997e38c71aa97fffe060a6b765f8fbbdd8fe8cebced4a45d9f1f040dd3e39cf2a8055 SHA512 e0aba16afdf230d1e54d0a9cedd336b0b158b02744839f0547e14ee47a97fc1a6668f3a181bd46e969b01b158af18dc8ed3c0a4210b3b620242338a2788806b3

diff --git a/dev-libs/miniz/metadata.xml b/dev-libs/miniz/metadata.xml
new file mode 100644
index 00000000000..8cf9d7cdd9d
--- /dev/null
+++ b/dev-libs/miniz/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>3dprint@gentoo.org</email>
+		<name>Gentoo 3D Printer Project</name>
+	</maintainer>
+	<longdescription>
+		Miniz is a lossless, high performance data compression library in a single source file that implements the zlib
+		(RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly
+		used functions exported by the zlib library, but is a completely independent implementation so zlib's licensing
+		requirements do not apply. Miniz also contains simple to use functions for writing .PNG format image files and
+		reading/writing/appending .ZIP format archives. Miniz's compression speed has been tuned to be comparable to
+		zlib's, and it also has a specialized real-time compressor function designed to compare well against
+		fastlz/minilzo.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">richgel999/miniz</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/dev-libs/miniz/miniz-2.1.0.ebuild b/dev-libs/miniz/miniz-2.1.0.ebuild
new file mode 100644
index 00000000000..1141b3f020c
--- /dev/null
+++ b/dev-libs/miniz/miniz-2.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)"
+HOMEPAGE="https://github.com/richgel999/miniz"
+SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DOCS=( ChangeLog.md LICENSE readme.md )
+
+src_prepare() {
+	sed -i -e 's/DESTINATION lib/DESTINATION ${CMAKE_INSTALL_LIBDIR}/' CMakeLists.txt
+
+	cmake_src_prepare
+}
+
+src_configure() {
+	CMAKE_BUILD_TYPE=Release
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2020-12-15 19:22 Dennis Lamm
  0 siblings, 0 replies; 26+ messages in thread
From: Dennis Lamm @ 2020-12-15 19:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3dee87b9829e3f56b11821f111f5c36f976e51b0
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 15 05:42:42 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Tue Dec 15 19:21:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dee87b9

dev-libs/miniz: fixed description

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-libs/miniz/miniz-2.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.1.0.ebuild b/dev-libs/miniz/miniz-2.1.0.ebuild
index 1141b3f020c..3e508a90548 100644
--- a/dev-libs/miniz/miniz-2.1.0.ebuild
+++ b/dev-libs/miniz/miniz-2.1.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 inherit cmake
 
-DESCRIPTION="A mesh slicer to generate G-code for fused-filament-fabrication (3D printers)"
+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"
 


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2020-12-16 20:16 Dennis Lamm
  0 siblings, 0 replies; 26+ messages in thread
From: Dennis Lamm @ 2020-12-16 20:16 UTC (permalink / raw
  To: gentoo-commits

commit:     468efac7f51e6fed08977d0505c2621aa2e01e94
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 16 20:03:54 2020 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Wed Dec 16 20:16:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468efac7

dev-libs/miniz: drop old

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/18682
Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>

 dev-libs/miniz/miniz-2.1.0.ebuild | 29 -----------------------------
 1 file changed, 29 deletions(-)

diff --git a/dev-libs/miniz/miniz-2.1.0.ebuild b/dev-libs/miniz/miniz-2.1.0.ebuild
deleted file mode 100644
index 3e508a90548..00000000000
--- a/dev-libs/miniz/miniz-2.1.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DOCS=( ChangeLog.md LICENSE readme.md )
-
-src_prepare() {
-	sed -i -e 's/DESTINATION lib/DESTINATION ${CMAKE_INSTALL_LIBDIR}/' CMakeLists.txt
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	CMAKE_BUILD_TYPE=Release
-
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2021-12-23 13:35 Dennis Lamm
  0 siblings, 0 replies; 26+ messages in thread
From: Dennis Lamm @ 2021-12-23 13:35 UTC (permalink / raw
  To: gentoo-commits

commit:     c929053b69531541966a736d7070173fa31300e6
Author:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 23 13:34:30 2021 +0000
Commit:     Dennis Lamm <expeditioneer <AT> gentoo <DOT> org>
CommitDate: Thu Dec 23 13:35:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c929053b

dev-libs/miniz: drop maintainership

Signed-off-by: Dennis Lamm <expeditioneer <AT> gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3

 dev-libs/miniz/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-libs/miniz/metadata.xml b/dev-libs/miniz/metadata.xml
index d62552766b83..9ae3e1edddab 100644
--- a/dev-libs/miniz/metadata.xml
+++ b/dev-libs/miniz/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="project">
-		<email>3dprint@gentoo.org</email>
-		<name>Gentoo 3D Printer Project</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<longdescription>
 		Miniz is a lossless, high performance data compression library in a single source file that implements the zlib
 		(RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-03-12 19:19 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-03-12 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     26f9ff9d27a5fe70d2e9f96b028a765856bf54e3
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 19:18:42 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> 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 <matthew <AT> 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 )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-03-12 19:19 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-03-12 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     593e4be87126a044447ea0f5d5f9262304598662
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 19:17:34 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 19:19:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=593e4be8

dev-libs/miniz: add subslot

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/{miniz-2.1.0-r2.ebuild => miniz-2.1.0-r3.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/miniz/miniz-2.1.0-r2.ebuild b/dev-libs/miniz/miniz-2.1.0-r3.ebuild
similarity index 92%
rename from dev-libs/miniz/miniz-2.1.0-r2.ebuild
rename to dev-libs/miniz/miniz-2.1.0-r3.ebuild
index cc26fba366c0..686dcbff90a3 100644
--- a/dev-libs/miniz/miniz-2.1.0-r2.ebuild
+++ b/dev-libs/miniz/miniz-2.1.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/richgel999/miniz"
 SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
-SLOT="0"
+SLOT="0/${PV}"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
 


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-03-12 19:19 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-03-12 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     0543e77f809850be5d8e762c70793d504f53503b
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 12 19:09:51 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 19:19:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0543e77f

dev-libs/miniz: add myself as a maintainer

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/miniz/metadata.xml b/dev-libs/miniz/metadata.xml
index 9ae3e1edddab..c43f3b1a6204 100644
--- a/dev-libs/miniz/metadata.xml
+++ b/dev-libs/miniz/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>matthew@gentoo.org</email>
+		<name>Matthew Smith</name>
+	</maintainer>
 	<longdescription>
 		Miniz is a lossless, high performance data compression library in a single source file that implements the zlib
 		(RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-03-16  8:13 Jakov Smolić
  0 siblings, 0 replies; 26+ messages in thread
From: Jakov Smolić @ 2022-03-16  8:13 UTC (permalink / raw
  To: gentoo-commits

commit:     35637dc9fffdcb6c23a6d4ff543f348432afee6f
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 08:09:19 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 08:12:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35637dc9

dev-libs/miniz: Stabilize 2.1.0-r3 amd64, #835005

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-libs/miniz/miniz-2.1.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.1.0-r3.ebuild b/dev-libs/miniz/miniz-2.1.0-r3.ebuild
index 686dcbff90a3..87ac7070f3c8 100644
--- a/dev-libs/miniz/miniz-2.1.0-r3.ebuild
+++ b/dev-libs/miniz/miniz-2.1.0-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 DOCS=( ChangeLog.md LICENSE readme.md )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-05-21  8:17 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-05-21  8:17 UTC (permalink / raw
  To: gentoo-commits

commit:     40b6c1e6dddf0ebd0e094dd018c26f17494eb10f
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Sat May 21 08:00:31 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Sat May 21 08:14:51 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b6c1e6

dev-libs/miniz: remove live ebuild

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/miniz-9999.ebuild | 41 ----------------------------------------
 1 file changed, 41 deletions(-)

diff --git a/dev-libs/miniz/miniz-9999.ebuild b/dev-libs/miniz/miniz-9999.ebuild
deleted file mode 100644
index 7bdf95f3cf88..000000000000
--- a/dev-libs/miniz/miniz-9999.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-DESCRIPTION="A lossless, high performance data compression library"
-HOMEPAGE="https://github.com/richgel999/miniz"
-SRC_URI=""
-
-if [[ ${PV} == "9999" ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/richgel999/miniz.git"
-else
-	SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="examples static-libs"
-
-DOCS=( ChangeLog.md LICENSE readme.md )
-
-src_prepare() {
-	sed -i -e 's/DESTINATION lib/DESTINATION ${CMAKE_INSTALL_LIBDIR}/' CMakeLists.txt
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	CMAKE_BUILD_TYPE=Release
-
-	local mycmakeargs=(
-		-DBUILD_EXAMPLES=$(usex examples)
-		-DBUILD_SHARED_LIBS=$(usex static-libs OFF ON)
-	)
-
-	cmake_src_configure
-}


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-06-05 12:47 Jakov Smolić
  0 siblings, 0 replies; 26+ messages in thread
From: Jakov Smolić @ 2022-06-05 12:47 UTC (permalink / raw
  To: gentoo-commits

commit:     4c653746a4c3b88a3aef3cd37edf0b9d5cbff365
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Jun  5 12:47:26 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Jun  5 12:47:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c653746

dev-libs/miniz: Keyword 2.2.0-r1 ppc64, #849581

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 2c45fe4f591a..ad0dfeaa0e9f 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc64 ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-06-09 19:39 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-06-09 19:39 UTC (permalink / raw
  To: gentoo-commits

commit:     15102b35e2e9458c45d8b4169336cf9f46ec16d9
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  9 19:38:52 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Jun  9 19:38:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15102b35

dev-libs/miniz: Keyword 2.2.0-r1 ppc, #849581

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index ad0dfeaa0e9f..2da5bbb0987d 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-06-20 17:57 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-06-20 17:57 UTC (permalink / raw
  To: gentoo-commits

commit:     bd37b9d2f331df602df55da607b89de0a66d2d84
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 20 17:56:54 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jun 20 17:56:54 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd37b9d2

dev-libs/miniz: Keyword 2.2.0-r1 sparc, #849581

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 2da5bbb0987d..d1207274ac95 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-06-28 15:44 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-06-28 15:44 UTC (permalink / raw
  To: gentoo-commits

commit:     c84f144a3532282df36e970b05ec3267643a4444
Author:     matoro <matoro <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Tue Jun 28 02:17:54 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 28 15:42:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84f144a

dev-libs/miniz: Keyword 2.2.0-r1 ia64, #849581

Signed-off-by: matoro <matoro <AT> users.noreply.github.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index d1207274ac95..8c58554647c4 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-07-03  8:59 Agostino Sarubbo
  0 siblings, 0 replies; 26+ messages in thread
From: Agostino Sarubbo @ 2022-07-03  8:59 UTC (permalink / raw
  To: gentoo-commits

commit:     cf382b6c7e4b420f988198f0d6e36950bb361439
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  3 08:58:59 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jul  3 08:58:59 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf382b6c

dev-libs/miniz: amd64 stable wrt bug #856124

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 8c58554647c4..483e40beb191 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-07-28 19:59 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-07-28 19:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d7838be1131086c06c36256d48bf1d261d4ef591
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 28 19:53:25 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Thu Jul 28 19:53:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7838be1

dev-libs/miniz: drop 2.1.0-r3, 2.2.0

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/Manifest              |  1 -
 dev-libs/miniz/miniz-2.1.0-r3.ebuild | 38 ------------------------------------
 dev-libs/miniz/miniz-2.2.0.ebuild    | 16 ---------------
 3 files changed, 55 deletions(-)

diff --git a/dev-libs/miniz/Manifest b/dev-libs/miniz/Manifest
index 28884ca7cc6f..84bfb5bcb779 100644
--- a/dev-libs/miniz/Manifest
+++ b/dev-libs/miniz/Manifest
@@ -1,2 +1 @@
-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.1.0-r3.ebuild b/dev-libs/miniz/miniz-2.1.0-r3.ebuild
deleted file mode 100644
index 87ac7070f3c8..000000000000
--- a/dev-libs/miniz/miniz-2.1.0-r3.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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"
-IUSE=""
-
-DOCS=( ChangeLog.md LICENSE readme.md )
-
-PATCHES=(
-	"${FILESDIR}/${P}-export-cmake-build-targets.patch"
-)
-
-src_prepare() {
-	cp "${FILESDIR}/Config.cmake.in" .
-	cp "${FILESDIR}/miniz.pc.in" .
-
-	cmake_src_prepare
-}
-
-src_configure() {
-	CMAKE_BUILD_TYPE=Release
-
-	local mycmakeargs=(
-		-DBUILD_EXAMPLES=OFF
-	)
-
-	cmake_src_configure
-}

diff --git a/dev-libs/miniz/miniz-2.2.0.ebuild b/dev-libs/miniz/miniz-2.2.0.ebuild
deleted file mode 100644
index 482aadff9922..000000000000
--- a/dev-libs/miniz/miniz-2.2.0.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# 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 )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2022-11-25  8:56 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2022-11-25  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     a4ab17633e793968e05a13b38e2b09ae54d5e433
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 25 08:50:40 2022 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Fri Nov 25 08:55:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ab1763

dev-libs/miniz: add 3.0.1

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/Manifest           |  1 +
 dev-libs/miniz/miniz-3.0.1.ebuild | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/dev-libs/miniz/Manifest b/dev-libs/miniz/Manifest
index 84bfb5bcb779..02a0e3369c0c 100644
--- a/dev-libs/miniz/Manifest
+++ b/dev-libs/miniz/Manifest
@@ -1 +1,2 @@
 DIST miniz-2.2.0.tar.gz 113592 BLAKE2B 110a71712396fb22075818f681d2e691b8b361e6c8eb786485f9fd3a1e00fcfc95bae4d470b8b1644a1e9674e69617abdba70e337f318969096db222f7a4c3d2 SHA512 0bb2b0ac627715b90ff9fd69ca8958a0bea387bd7ddf5c200daba953b98ef788092e3009842f4f123234e85570159250c8897a30c1c1f2d4dea9bca9837f6111
+DIST miniz-3.0.1.tar.gz 115742 BLAKE2B 4727e55bf2ad4cf716677e6135912df61b9081f2a3a2d6a13efc77ff64a1ec8e736c089330106a81f613dac3840bc09f3aea93f6b432d832f14a6b12ba534d70 SHA512 c1cf028ceb6c12abc83ffb636753d9470155e055d2e834ab23c1c1bc9ee2ef7c7fec689cb92e3496336f850e1d1675489b0450b84e4c7e68d7066142d8df76b6

diff --git a/dev-libs/miniz/miniz-3.0.1.ebuild b/dev-libs/miniz/miniz-3.0.1.ebuild
new file mode 100644
index 000000000000..741860999d35
--- /dev/null
+++ b/dev-libs/miniz/miniz-3.0.1.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 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DOCS=( ChangeLog.md readme.md )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-01-02  5:37 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-01-02  5:37 UTC (permalink / raw
  To: gentoo-commits

commit:     7cb3822576aa5fefb70db2442592dc80a5e4920e
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  2 05:36:42 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 05:36:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb38225

dev-libs/miniz: Stabilize 2.2.0-r1 ppc64, #886877

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 483e40beb191..bd7feb59f934 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~sparc ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-01-02  5:37 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-01-02  5:37 UTC (permalink / raw
  To: gentoo-commits

commit:     07b14f51c3d8a42b51da2e2881d43e8a0b38d41b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  2 05:36:51 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 05:36:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07b14f51

dev-libs/miniz: Stabilize 2.2.0-r1 x86, #886877

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index c11431944a73..501f5949009f 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-01-02  5:37 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-01-02  5:37 UTC (permalink / raw
  To: gentoo-commits

commit:     b6a246b9f205deada2dd66f1cf0dbd2ae7121572
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  2 05:36:45 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan  2 05:36:45 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6a246b9

dev-libs/miniz: Stabilize 2.2.0-r1 ppc, #886877

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index bd7feb59f934..c11431944a73 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~ia64 ~ppc ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc ~x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-01-13 14:09 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2023-01-13 14:09 UTC (permalink / raw
  To: gentoo-commits

commit:     cec00dab37cf0b0b81b05b9390be6fe6f1ae42f0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 13 14:09:07 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 13 14:09:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec00dab

dev-libs/miniz: Stabilize 2.2.0-r1 sparc, #886877

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 501f5949009f..50052d3a9e0b 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~ia64 ppc ppc64 sparc x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-09-13  2:15 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-09-13  2:15 UTC (permalink / raw
  To: gentoo-commits

commit:     e908e6e2cfe9085c0605771c6e22df01d8f63023
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 02:14:40 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 02:14:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e908e6e2

dev-libs/miniz: Keyword 2.2.0-r1 arm, #867001

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 50052d3a9e0b..3f1538a00112 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-09-13  2:15 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-09-13  2:15 UTC (permalink / raw
  To: gentoo-commits

commit:     02197bb67ac60fc1ead31ba97c9f15af98c29563
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 02:14:41 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 02:14:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02197bb6

dev-libs/miniz: Keyword 2.2.0-r1 arm64, #867001

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-2.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/miniz/miniz-2.2.0-r1.ebuild b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
index 3f1538a00112..6bbf018addfc 100644
--- a/dev-libs/miniz/miniz-2.2.0-r1.ebuild
+++ b/dev-libs/miniz/miniz-2.2.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ppc64 sparc x86"
 
 PATCHES=(
 	# https://bugs.gentoo.org/849578


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2023-09-13  3:20 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2023-09-13  3:20 UTC (permalink / raw
  To: gentoo-commits

commit:     987e9eb5cae232b5b5be4ba1439654b910c188f1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 03:19:34 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:19:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=987e9eb5

dev-libs/miniz: Keyword 3.0.1 arm64, #891201

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-libs/miniz/miniz-3.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/miniz/miniz-3.0.1.ebuild b/dev-libs/miniz/miniz-3.0.1.ebuild
index 741860999d35..7ec00b35b06c 100644
--- a/dev-libs/miniz/miniz-3.0.1.ebuild
+++ b/dev-libs/miniz/miniz-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,6 +11,6 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DOCS=( ChangeLog.md readme.md )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2024-01-06 19:30 Viorel Munteanu
  0 siblings, 0 replies; 26+ messages in thread
From: Viorel Munteanu @ 2024-01-06 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     3e8fb7986ef3ab9ccc49c6450f0b9d398f50b7bf
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Jan  5 18:44:03 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Jan  6 19:29:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e8fb798

dev-libs/miniz: Keyword 3.0.1 arm, #891201

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 dev-libs/miniz/miniz-3.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/miniz/miniz-3.0.1.ebuild b/dev-libs/miniz/miniz-3.0.1.ebuild
index 7ec00b35b06c..32d829ee6e85 100644
--- a/dev-libs/miniz/miniz-3.0.1.ebuild
+++ b/dev-libs/miniz/miniz-3.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,6 +11,6 @@ SRC_URI="https://github.com/richgel999/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DOCS=( ChangeLog.md readme.md )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2024-04-12  9:02 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-04-12  9:02 UTC (permalink / raw
  To: gentoo-commits

commit:     ba8cbd2dc5ba50fc8cedbe677ddd1da7012ded30
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 12 08:57:53 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 12 09:02:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8cbd2d

dev-libs/miniz: add 3.0.2

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-libs/miniz/Manifest           |  1 +
 dev-libs/miniz/miniz-3.0.2.ebuild | 16 ++++++++++++++++
 2 files changed, 17 insertions(+)

diff --git a/dev-libs/miniz/Manifest b/dev-libs/miniz/Manifest
index 02a0e3369c0c..636a018f5d56 100644
--- a/dev-libs/miniz/Manifest
+++ b/dev-libs/miniz/Manifest
@@ -1,2 +1,3 @@
 DIST miniz-2.2.0.tar.gz 113592 BLAKE2B 110a71712396fb22075818f681d2e691b8b361e6c8eb786485f9fd3a1e00fcfc95bae4d470b8b1644a1e9674e69617abdba70e337f318969096db222f7a4c3d2 SHA512 0bb2b0ac627715b90ff9fd69ca8958a0bea387bd7ddf5c200daba953b98ef788092e3009842f4f123234e85570159250c8897a30c1c1f2d4dea9bca9837f6111
 DIST miniz-3.0.1.tar.gz 115742 BLAKE2B 4727e55bf2ad4cf716677e6135912df61b9081f2a3a2d6a13efc77ff64a1ec8e736c089330106a81f613dac3840bc09f3aea93f6b432d832f14a6b12ba534d70 SHA512 c1cf028ceb6c12abc83ffb636753d9470155e055d2e834ab23c1c1bc9ee2ef7c7fec689cb92e3496336f850e1d1675489b0450b84e4c7e68d7066142d8df76b6
+DIST miniz-3.0.2.tar.gz 115766 BLAKE2B 57260dc5d2f382f85fb7648d4e9fb9fcca63689cdd75f27b3cf84266b112e04031cc6b5f298e3155d4b8fd635704c713572c8ed76b5a8a2f0adb737c63051f1d SHA512 426054403121f84a2ac365f7545b35fb217b41061aebaffce483568d3d374d453ab87987c599a85f1f745e0ec7144a3181ed9b100f354e2823f165ba286b0611

diff --git a/dev-libs/miniz/miniz-3.0.2.ebuild b/dev-libs/miniz/miniz-3.0.2.ebuild
new file mode 100644
index 000000000000..32d829ee6e85
--- /dev/null
+++ b/dev-libs/miniz/miniz-3.0.2.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2024 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 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+DOCS=( ChangeLog.md readme.md )


^ permalink raw reply related	[flat|nested] 26+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/
@ 2024-07-31 17:51 Matthew Smith
  0 siblings, 0 replies; 26+ messages in thread
From: Matthew Smith @ 2024-07-31 17:51 UTC (permalink / raw
  To: gentoo-commits

commit:     10d42800b8f10d7fa4f752092b0fc3e3a987459c
Author:     Matthew Smith <matthew <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 31 17:01:34 2024 +0000
Commit:     Matthew Smith <matthew <AT> gentoo <DOT> org>
CommitDate: Wed Jul 31 17:50:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10d42800

dev-libs/miniz: drop myself as a maintainer

Signed-off-by: Matthew Smith <matthew <AT> gentoo.org>

 dev-libs/miniz/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-libs/miniz/metadata.xml b/dev-libs/miniz/metadata.xml
index c43f3b1a6204..9ae3e1edddab 100644
--- a/dev-libs/miniz/metadata.xml
+++ b/dev-libs/miniz/metadata.xml
@@ -1,10 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>matthew@gentoo.org</email>
-		<name>Matthew Smith</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 	<longdescription>
 		Miniz is a lossless, high performance data compression library in a single source file that implements the zlib
 		(RFC 1950) and Deflate (RFC 1951) compressed data format specification standards. It supports the most commonly


^ permalink raw reply related	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2024-07-31 17:51 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-16 20:16 [gentoo-commits] repo/gentoo:master commit in: dev-libs/miniz/ Dennis Lamm
  -- strict thread matches above, loose matches on Subject: below --
2024-07-31 17:51 Matthew Smith
2024-04-12  9:02 Arthur Zamarin
2024-01-06 19:30 Viorel Munteanu
2023-09-13  3:20 Sam James
2023-09-13  2:15 Sam James
2023-09-13  2:15 Sam James
2023-01-13 14:09 Arthur Zamarin
2023-01-02  5:37 Sam James
2023-01-02  5:37 Sam James
2023-01-02  5:37 Sam James
2022-11-25  8:56 Matthew Smith
2022-07-28 19:59 Matthew Smith
2022-07-03  8:59 Agostino Sarubbo
2022-06-28 15:44 Arthur Zamarin
2022-06-20 17:57 Arthur Zamarin
2022-06-09 19:39 Arthur Zamarin
2022-06-05 12:47 Jakov Smolić
2022-05-21  8:17 Matthew Smith
2022-03-16  8:13 Jakov Smolić
2022-03-12 19:19 Matthew Smith
2022-03-12 19:19 Matthew Smith
2022-03-12 19:19 Matthew Smith
2021-12-23 13:35 Dennis Lamm
2020-12-15 19:22 Dennis Lamm
2020-12-13 20:23 Dennis Lamm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox