public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2023-09-13 16:29 Vitaly Zdanevich
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaly Zdanevich @ 2023-09-13 16:29 UTC (permalink / raw
  To: gentoo-commits

commit:     aa44a50352ff3e244ea2d7cacafa8a4cabe617e5
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Wed Sep 13 16:29:02 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Wed Sep 13 16:29:02 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa44a503

sys-apps/pnpm-bin: new package, add 8.7.5

Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-apps/pnpm-bin/Manifest              |  1 +
 sys-apps/pnpm-bin/metadata.xml          | 37 +++++++++++++++++++++++++++++++++
 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 21 +++++++++++++++++++
 3 files changed, 59 insertions(+)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
new file mode 100644
index 0000000000..76eb5584c5
--- /dev/null
+++ b/sys-apps/pnpm-bin/Manifest
@@ -0,0 +1 @@
+DIST pnpm-linux-x64 57620299 BLAKE2B 4f9b27871be08b2d1e656ce2388af8117401a30c5bc9f963d5fb6284989e2513540e08de4b2196b597718904f0804833053e5d004fc413186e52c573c6bb6eae SHA512 5ecec3b3c3f2400ab66da81f943f8e97d6f6d006c1a213d9fc876c31f6108e1bbf900ac4f1f2515f41f65b87461e1be52d2dca06f3cadf17a5482c5ae8ad4713

diff --git a/sys-apps/pnpm-bin/metadata.xml b/sys-apps/pnpm-bin/metadata.xml
new file mode 100644
index 0000000000..7d16a80ee7
--- /dev/null
+++ b/sys-apps/pnpm-bin/metadata.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Vitaly Zdanevich</name>
+		<email>zdanevich.vitaly@ya.ru</email>
+	</maintainer>
+	<longdescription lang="en">
+		* Fast. Up to 2x faster than the alternatives.
+
+		* Efficient. Files inside node_modules are linked from a single content-addressable storage
+
+		* Great for monorepos.
+
+		* Strict. A package can access only dependencies that are specified in its package.json.
+
+		* Deterministic. Has a lockfile called pnpm-lock.yaml.
+
+		* Works as a Node.js version manager.
+
+		* Battle-tested. Used in production by teams of all sizes since 2016.
+
+To quote the Rush team "Microsoft uses pnpm in Rush repos with hundreds of projects and hundreds of PRs per day, and we’ve found it to be very fast and reliable".
+
+pnpm uses a content-addressable filesystem to store all files from all module directories on a disk. When using npm, if you have 100 projects using lodash, you will have 100 copies of lodash on disk. With pnpm, lodash will be stored in a content-addressable storage, so:
+
+* If you depend on different versions of lodash, only the files that differ are added to the store. If lodash has 100 files, and a new version has a change only in one of those files, pnpm update will only add 1 new file to the storage.
+		
+* All the files are saved in a single place on the disk. When packages are installed, their files are linked from that single place consuming no additional disk space. Linking is performed using either hard-links or reflinks (copy-on-write).
+
+As a result, you save gigabytes of space on your disk and you have a lot faster installations!
+	</longdescription>
+	<upstream>
+		<remote-id type="github">pnpm/pnpm</remote-id>
+		<bugs-to>https://github.com/pnpm/pnpm/issues</bugs-to>
+	</upstream>
+</pkgmetadata>

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
new file mode 100644
index 0000000000..67a0d55f69
--- /dev/null
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2023 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
+HOMEPAGE="https://pnpm.io"
+
+SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64"
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+
+RESTRICT="strip"
+
+S="${WORKDIR}"
+
+src_install() {
+	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2023-09-14 17:42 Vitaly Zdanevich
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaly Zdanevich @ 2023-09-14 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     a6e8da04dc4ac66c11e303525c8e85ebce0dcbd9
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Sep 14 17:42:33 2023 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Sep 14 17:42:33 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a6e8da04

sys-apps/pnpm-bin: add QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/914190
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
index 67a0d55f69..9801c33f2e 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -16,6 +16,8 @@ RESTRICT="strip"
 
 S="${WORKDIR}"
 
+QA_FLAGS_IGNORED="/usr/bin/${PN}-bin"
+
 src_install() {
 	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-02-15 10:59 Vitaly Zdanevich
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaly Zdanevich @ 2024-02-15 10:59 UTC (permalink / raw
  To: gentoo-commits

commit:     fe242a03ee1867f4fa700680c638156c720d4b52
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Thu Feb 15 10:59:24 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Thu Feb 15 10:59:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fe242a03

sys-apps/pnpm-bin: replace QA_FLAGS_IGNORED to QA_PREBUILT

Closes: https://bugs.gentoo.org/show_bug.cgi?id=914190

Closes: https://bugs.gentoo.org/show_bug.cgi?id=914191
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
index 9801c33f2e..0a5e1fdbea 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -16,7 +16,7 @@ RESTRICT="strip"
 
 S="${WORKDIR}"
 
-QA_FLAGS_IGNORED="/usr/bin/${PN}-bin"
+QA_PREBUILT="/usr/bin/${PN}-bin"
 
 src_install() {
 	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-02-26  0:38 Vitaly Zdanevich
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaly Zdanevich @ 2024-02-26  0:38 UTC (permalink / raw
  To: gentoo-commits

commit:     90b0c164556f23c7d26ee4eef4983e95375f37d0
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Mon Feb 26 00:37:56 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Mon Feb 26 00:37:56 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=90b0c164

sys-apps/pnpm-bin: fix QA_PREBUILT

Closes: https://bugs.gentoo.org/924689
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
index 0a5e1fdbea..086045a3f6 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -16,7 +16,7 @@ RESTRICT="strip"
 
 S="${WORKDIR}"
 
-QA_PREBUILT="/usr/bin/${PN}-bin"
+QA_PREBUILT="usr/bin/${PN}-bin"
 
 src_install() {
 	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-02-28 17:20 Vitaly Zdanevich
  0 siblings, 0 replies; 15+ messages in thread
From: Vitaly Zdanevich @ 2024-02-28 17:20 UTC (permalink / raw
  To: gentoo-commits

commit:     541f59e20b1da4ae01b029911f9d7b549b0dcb5f
Author:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
AuthorDate: Wed Feb 28 17:20:32 2024 +0000
Commit:     Vitaly Zdanevich <zdanevich.vitaly <AT> ya <DOT> ru>
CommitDate: Wed Feb 28 17:20:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=541f59e2

sys-apps/pnpm-bin: QA_PREBUILT fix

Closes: https://bugs.gentoo.org/924690
Signed-off-by: Vitaly Zdanevich <zdanevich.vitaly <AT> ya.ru>

 sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
index 086045a3f6..4f3f2f23f5 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
@@ -16,7 +16,7 @@ RESTRICT="strip"
 
 S="${WORKDIR}"
 
-QA_PREBUILT="usr/bin/${PN}-bin"
+QA_PREBUILT="usr/bin/${PN}"
 
 src_install() {
 	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
  2024-05-04  1:19 [gentoo-commits] repo/proj/guru:master " David Roman
@ 2024-05-04  1:13 ` David Roman
  0 siblings, 0 replies; 15+ messages in thread
From: David Roman @ 2024-05-04  1:13 UTC (permalink / raw
  To: gentoo-commits

commit:     4dfbb500edaeb8cb4d65366a12c55576a28ba64b
Author:     Maël GUERIN <mael.guerin <AT> murena <DOT> io>
AuthorDate: Fri May  3 13:14:00 2024 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sat May  4 01:12:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4dfbb500

sys-apps/pnpm-bin: add 9.0.6, drop 8.7.5

Signed-off-by: Maël GUERIN <mael.guerin <AT> murena.io>
Closes: https://github.com/gentoo/guru/pull/180
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 sys-apps/pnpm-bin/Manifest                                         | 2 +-
 sys-apps/pnpm-bin/{pnpm-bin-8.7.5.ebuild => pnpm-bin-9.0.6.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 76eb5584c5..6c5b4f8208 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1 +1 @@
-DIST pnpm-linux-x64 57620299 BLAKE2B 4f9b27871be08b2d1e656ce2388af8117401a30c5bc9f963d5fb6284989e2513540e08de4b2196b597718904f0804833053e5d004fc413186e52c573c6bb6eae SHA512 5ecec3b3c3f2400ab66da81f943f8e97d6f6d006c1a213d9fc876c31f6108e1bbf900ac4f1f2515f41f65b87461e1be52d2dca06f3cadf17a5482c5ae8ad4713
+DIST pnpm-linux-x64 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167

diff --git a/sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
similarity index 100%
rename from sys-apps/pnpm-bin/pnpm-bin-8.7.5.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-07-16 16:28 Lucio Sauer
  0 siblings, 0 replies; 15+ messages in thread
From: Lucio Sauer @ 2024-07-16 16:28 UTC (permalink / raw
  To: gentoo-commits

commit:     412deadfac6d7077e17934e6ed254f6af2fd1fc2
Author:     Guillermo Roche <groche97 <AT> gmail <DOT> com>
AuthorDate: Tue Jul 16 15:59:51 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Tue Jul 16 16:26:38 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=412deadf

sys-apps/pnpm-bin: fix distdir and remove the -bin

Signed-off-by: Guillermo Roche <groche97 <AT> gmail.com>
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 sys-apps/pnpm-bin/Manifest              | 2 +-
 sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 6c5b4f820..7ff5879e2 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1 +1 @@
-DIST pnpm-linux-x64 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167
+DIST pnpm-bin-9.0.6 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
index 51829e8fb..82c1dea50 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 2023-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
 
 DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
 HOMEPAGE="https://pnpm.io"
-SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64"
+SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}"
 
 S="${WORKDIR}"
 
@@ -15,8 +15,8 @@ KEYWORDS="~amd64"
 
 RESTRICT="strip"
 
-QA_PREBUILT="usr/bin/${PN}"
+QA_PREBUILT="usr/bin/pnpm"
 
 src_install() {
-	newbin "${DISTDIR}/pnpm-linux-x64" ${PN}
+	newbin "${DISTDIR}/${P}" pnpm
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-07-16 16:28 Lucio Sauer
  0 siblings, 0 replies; 15+ messages in thread
From: Lucio Sauer @ 2024-07-16 16:28 UTC (permalink / raw
  To: gentoo-commits

commit:     e00f1d337d408a87c8c7843f511423f2064c19d1
Author:     Guillermo Roche <groche97 <AT> gmail <DOT> com>
AuthorDate: Tue Jul 16 16:01:21 2024 +0000
Commit:     Lucio Sauer <watermanpaint <AT> posteo <DOT> net>
CommitDate: Tue Jul 16 16:26:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e00f1d33

sys-apps/pnpm-bin: add 9.5.0

Signed-off-by: Guillermo Roche <groche97 <AT> gmail.com>
Closes: https://github.com/gentoo/guru/pull/216
Signed-off-by: Lucio Sauer <watermanpaint <AT> posteo.net>

 sys-apps/pnpm-bin/Manifest              |  1 +
 sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild | 22 ++++++++++++++++++++++
 2 files changed, 23 insertions(+)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 7ff5879e2..718652e1f 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1 +1,2 @@
 DIST pnpm-bin-9.0.6 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167
+DIST pnpm-bin-9.5.0 59513182 BLAKE2B 3fc1e81784a7bf4f177b504cd9941cc9ffb9b50a4a47ea14b76dfcd200f2322e57fed0f1087e17a85bcf62d6d7e179324c6c2c449a34694b12e72b7815c03e0e SHA512 c32c103cb32111617f2401bbd785f796c44516929b389a82728b3b831a6ed72073f1fc87af918d501f5a93422687bccc322ae30a001f22bc3e2a39d736c9a95e

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild
new file mode 100644
index 000000000..82c1dea50
--- /dev/null
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
+HOMEPAGE="https://pnpm.io"
+SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}"
+
+S="${WORKDIR}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RESTRICT="strip"
+
+QA_PREBUILT="usr/bin/pnpm"
+
+src_install() {
+	newbin "${DISTDIR}/${P}" pnpm
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-07-25 11:03 Ada Ahmed
  0 siblings, 0 replies; 15+ messages in thread
From: Ada Ahmed @ 2024-07-25 11:03 UTC (permalink / raw
  To: gentoo-commits

commit:     721ad5893082c338bb395e244ef42028b0b54dcd
Author:     Ada Ahmed <yretenai <AT> gmail <DOT> com>
AuthorDate: Thu Jul 25 10:57:21 2024 +0000
Commit:     Ada Ahmed <yretenai <AT> gmail <DOT> com>
CommitDate: Thu Jul 25 11:01:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=721ad589

sys-apps/pnpm-bin: bump 9.6.0

sys-apps/pnpm-bin: ~arm64

Signed-off-by: Ada Ahmed <yretenai <AT> gmail.com>

 sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
new file mode 100644
index 000000000..10758d811
--- /dev/null
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
+HOMEPAGE="https://pnpm.io"
+SRC_URI="
+	amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${PV}-amd64 )
+	arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${PV}-arm64 )
+"
+
+S="${WORKDIR}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 -*"
+
+RESTRICT="strip"
+
+QA_PREBUILT="usr/bin/pnpm"
+
+src_install() {
+	newbin "${DISTDIR}/${PV}-${ARCH}" pnpm
+}


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-07-25 11:05 Ada Ahmed
  0 siblings, 0 replies; 15+ messages in thread
From: Ada Ahmed @ 2024-07-25 11:05 UTC (permalink / raw
  To: gentoo-commits

commit:     463148a30b4fe72b584c8ec6750e9c5a0cf5263c
Author:     Ada Ahmed <yretenai <AT> gmail <DOT> com>
AuthorDate: Thu Jul 25 11:05:21 2024 +0000
Commit:     Ada Ahmed <yretenai <AT> gmail <DOT> com>
CommitDate: Thu Jul 25 11:05:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=463148a3

sys-apps/pnpm-bin: Manifest & Fix DIST Name

Signed-off-by: Ada Ahmed <yretenai <AT> gmail.com>

 sys-apps/pnpm-bin/Manifest              | 2 ++
 sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild | 6 +++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 718652e1f..193602bca 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1,2 +1,4 @@
 DIST pnpm-bin-9.0.6 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167
 DIST pnpm-bin-9.5.0 59513182 BLAKE2B 3fc1e81784a7bf4f177b504cd9941cc9ffb9b50a4a47ea14b76dfcd200f2322e57fed0f1087e17a85bcf62d6d7e179324c6c2c449a34694b12e72b7815c03e0e SHA512 c32c103cb32111617f2401bbd785f796c44516929b389a82728b3b831a6ed72073f1fc87af918d501f5a93422687bccc322ae30a001f22bc3e2a39d736c9a95e
+DIST pnpm-bin-9.6.0-amd64 59521974 BLAKE2B 9bdcba32ba94ef9db6c49ddb5ed10d56003da585b897eaf3687055d38fc05810b4b1a6c0f05558d4417bdcbf52c072a1b7ff153eb2209fa8211a80a430a78966 SHA512 6e6f14cf0d52f2046206cb032b797a9c10623ea2e4a23e222d6791de166a02fdea8c9c365b8d2500448a92cf5e49eb5866bbf95ac69eaa6abe8fed817ee2a2f7
+DIST pnpm-bin-9.6.0-arm64 58044950 BLAKE2B 24242ba24c4aebdbfadc8438900a0e7504ef44c8252f1f866b9437be340dc54c8847b5f84fccb79174e3519e9a1f3aa7bf82388f1f839022210bccb374c8f76b SHA512 9139ce7e4120310ae49eda2bb51f3e3c592d2db7860da9d1004e733c8d95ee62c4de2679e8807ebb10c9ec341626518d681ffff6a94562a8bf7c94b3a1ff7fe5

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
index 10758d811..4dada5bb0 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
@@ -6,8 +6,8 @@ EAPI=8
 DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
 HOMEPAGE="https://pnpm.io"
 SRC_URI="
-	amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${PV}-amd64 )
-	arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${PV}-arm64 )
+	amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}-amd64 )
+	arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${P}-arm64 )
 "
 
 S="${WORKDIR}"
@@ -21,5 +21,5 @@ RESTRICT="strip"
 QA_PREBUILT="usr/bin/pnpm"
 
 src_install() {
-	newbin "${DISTDIR}/${PV}-${ARCH}" pnpm
+	newbin "${DISTDIR}/${P}-${ARCH}" pnpm
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2024-11-11  3:16 Artemis Everfree
  0 siblings, 0 replies; 15+ messages in thread
From: Artemis Everfree @ 2024-11-11  3:16 UTC (permalink / raw
  To: gentoo-commits

commit:     d8dc72dff9e69c2adf4d4c6ba1127a1973d7c604
Author:     Artemis Everfree <artemis <AT> artemis <DOT> sh>
AuthorDate: Mon Nov 11 03:15:20 2024 +0000
Commit:     Artemis Everfree <artemis <AT> artemis <DOT> sh>
CommitDate: Mon Nov 11 03:15:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8dc72df

sys-apps/pnpm-bin: add 9.12.3, drop 9.0.6

Signed-off-by: Artemis Everfree <artemis <AT> artemis.sh>

 sys-apps/pnpm-bin/Manifest                                       | 3 ++-
 .../pnpm-bin/{pnpm-bin-9.0.6.ebuild => pnpm-bin-9.12.3.ebuild}   | 9 ++++++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 193602bca..ec98b1a48 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1,4 +1,5 @@
-DIST pnpm-bin-9.0.6 58732810 BLAKE2B 78647187661a3ca4174e33c32b35fc4cd002d60fc84afda6de3bf69c40ebb7cd98f6daea7395b32610493fa1d18ece770148739b8918f9ba5f71dee274eb7444 SHA512 c9a7ecaf51aaf48b68292c7d554864efd0d3e6f1c2a434b09df0b951589a71f14ed3e72f83e0c16e54b3c9cb7c819712b58e291b38297fdf26325316632fd167
+DIST pnpm-bin-9.12.3-amd64 68151033 BLAKE2B ca06a4db4ae9a79c0e80d02544b9ebdc302678ee3cf0b9bd78de81ef0e9636b4e2b7d79ef568a1c30b4ca1277e746885eaf0caf1f8dc646dcf86adc886bb568d SHA512 cd8d5779d637df41948edafb700099db5a367358f05334e2dd142b5779ac129d05db7e5452de70612aae839ff23b41634991d88b039624f0fa70bacd173d4c4e
+DIST pnpm-bin-9.12.3-arm64 64176425 BLAKE2B e2d1dfc4feb08590e7081136e09d9bbc539185b480ca9f7235adcb7946271eadea3ec5e913701fa4b21dbbda09b8f806d9268f4be1e20a80156314533ace27ef SHA512 1be62aa3cba73ea52f6ce3db73a6e68ac89c9e0fe29e30bd131c0e4f5a7f93d5f2be7d68f415fd1f8dab0e1b914cb2ea719acc229e10bdc63b4ff352df936996
 DIST pnpm-bin-9.5.0 59513182 BLAKE2B 3fc1e81784a7bf4f177b504cd9941cc9ffb9b50a4a47ea14b76dfcd200f2322e57fed0f1087e17a85bcf62d6d7e179324c6c2c449a34694b12e72b7815c03e0e SHA512 c32c103cb32111617f2401bbd785f796c44516929b389a82728b3b831a6ed72073f1fc87af918d501f5a93422687bccc322ae30a001f22bc3e2a39d736c9a95e
 DIST pnpm-bin-9.6.0-amd64 59521974 BLAKE2B 9bdcba32ba94ef9db6c49ddb5ed10d56003da585b897eaf3687055d38fc05810b4b1a6c0f05558d4417bdcbf52c072a1b7ff153eb2209fa8211a80a430a78966 SHA512 6e6f14cf0d52f2046206cb032b797a9c10623ea2e4a23e222d6791de166a02fdea8c9c365b8d2500448a92cf5e49eb5866bbf95ac69eaa6abe8fed817ee2a2f7
 DIST pnpm-bin-9.6.0-arm64 58044950 BLAKE2B 24242ba24c4aebdbfadc8438900a0e7504ef44c8252f1f866b9437be340dc54c8847b5f84fccb79174e3519e9a1f3aa7bf82388f1f839022210bccb374c8f76b SHA512 9139ce7e4120310ae49eda2bb51f3e3c592d2db7860da9d1004e733c8d95ee62c4de2679e8807ebb10c9ec341626518d681ffff6a94562a8bf7c94b3a1ff7fe5

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
similarity index 54%
rename from sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
index 82c1dea50..4dada5bb0 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.0.6.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
@@ -5,18 +5,21 @@ EAPI=8
 
 DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
 HOMEPAGE="https://pnpm.io"
-SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}"
+SRC_URI="
+	amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}-amd64 )
+	arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${P}-arm64 )
+"
 
 S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64 -*"
 
 RESTRICT="strip"
 
 QA_PREBUILT="usr/bin/pnpm"
 
 src_install() {
-	newbin "${DISTDIR}/${P}" pnpm
+	newbin "${DISTDIR}/${P}-${ARCH}" pnpm
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2025-01-12 22:18 David Roman
  0 siblings, 0 replies; 15+ messages in thread
From: David Roman @ 2025-01-12 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     7f74ae9cd0b2985fee3ba80719d180efed8701eb
Author:     Norbert Norbiros <norbiros <AT> protonmail <DOT> com>
AuthorDate: Sun Jan 12 18:38:14 2025 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Sun Jan 12 22:18:05 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f74ae9c

sys-apps/pnpm-bin: add 10.0.0, drop 9.5.0

Signed-off-by: Norbert Norbiros <norbiros <AT> protonmail.com>
Closes: https://github.com/gentoo/guru/pull/278
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 sys-apps/pnpm-bin/Manifest                                       | 3 ++-
 .../pnpm-bin/{pnpm-bin-9.5.0.ebuild => pnpm-bin-10.0.0.ebuild}   | 9 ++++++---
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index ec98b1a48..a030f85ef 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1,5 +1,6 @@
+DIST pnpm-bin-10.0.0-amd64 67214167 BLAKE2B 97ce4458818cdea32fdc3f54d5a06d440b842882bcf78d57aa55aba252925a44b94ff78cde26e898b30e7388936df056ff861d51c19df29a6e945cebe9c325f6 SHA512 80aebfdd2b2e7e105d0611c95621e5bd851736da7c191f0913aefc6d609ca48c653065e3cff421fcbd4f3be1c7bb6a80c77455d91aeecea1251a747694ee967a
+DIST pnpm-bin-10.0.0-arm64 63239495 BLAKE2B 1fd60d7578e9350789e8139584dc6a7b83bd152b55cb1e202a86ae2448946804e559b1117a54bfc44dda7b347f44b50e8015cc146b52472adf35a24240a93747 SHA512 50e91e52a28f5fb4ec139940ba2569764066a451d6675d1a3218bea30971a12eb30621345c2b120c9ce88c6b235d1099190ff3d3f89e21f1bb62b70367ddce7f
 DIST pnpm-bin-9.12.3-amd64 68151033 BLAKE2B ca06a4db4ae9a79c0e80d02544b9ebdc302678ee3cf0b9bd78de81ef0e9636b4e2b7d79ef568a1c30b4ca1277e746885eaf0caf1f8dc646dcf86adc886bb568d SHA512 cd8d5779d637df41948edafb700099db5a367358f05334e2dd142b5779ac129d05db7e5452de70612aae839ff23b41634991d88b039624f0fa70bacd173d4c4e
 DIST pnpm-bin-9.12.3-arm64 64176425 BLAKE2B e2d1dfc4feb08590e7081136e09d9bbc539185b480ca9f7235adcb7946271eadea3ec5e913701fa4b21dbbda09b8f806d9268f4be1e20a80156314533ace27ef SHA512 1be62aa3cba73ea52f6ce3db73a6e68ac89c9e0fe29e30bd131c0e4f5a7f93d5f2be7d68f415fd1f8dab0e1b914cb2ea719acc229e10bdc63b4ff352df936996
-DIST pnpm-bin-9.5.0 59513182 BLAKE2B 3fc1e81784a7bf4f177b504cd9941cc9ffb9b50a4a47ea14b76dfcd200f2322e57fed0f1087e17a85bcf62d6d7e179324c6c2c449a34694b12e72b7815c03e0e SHA512 c32c103cb32111617f2401bbd785f796c44516929b389a82728b3b831a6ed72073f1fc87af918d501f5a93422687bccc322ae30a001f22bc3e2a39d736c9a95e
 DIST pnpm-bin-9.6.0-amd64 59521974 BLAKE2B 9bdcba32ba94ef9db6c49ddb5ed10d56003da585b897eaf3687055d38fc05810b4b1a6c0f05558d4417bdcbf52c072a1b7ff153eb2209fa8211a80a430a78966 SHA512 6e6f14cf0d52f2046206cb032b797a9c10623ea2e4a23e222d6791de166a02fdea8c9c365b8d2500448a92cf5e49eb5866bbf95ac69eaa6abe8fed817ee2a2f7
 DIST pnpm-bin-9.6.0-arm64 58044950 BLAKE2B 24242ba24c4aebdbfadc8438900a0e7504ef44c8252f1f866b9437be340dc54c8847b5f84fccb79174e3519e9a1f3aa7bf82388f1f839022210bccb374c8f76b SHA512 9139ce7e4120310ae49eda2bb51f3e3c592d2db7860da9d1004e733c8d95ee62c4de2679e8807ebb10c9ec341626518d681ffff6a94562a8bf7c94b3a1ff7fe5

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
similarity index 54%
rename from sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
index 82c1dea50..4dada5bb0 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.5.0.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
@@ -5,18 +5,21 @@ EAPI=8
 
 DESCRIPTION="Fast, disk space efficient package manager, alternative to npm and yarn"
 HOMEPAGE="https://pnpm.io"
-SRC_URI="https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}"
+SRC_URI="
+	amd64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-x64 -> ${P}-amd64 )
+	arm64? ( https://github.com/pnpm/pnpm/releases/download/v${PV}/pnpm-linux-arm64 -> ${P}-arm64 )
+"
 
 S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64 -*"
 
 RESTRICT="strip"
 
 QA_PREBUILT="usr/bin/pnpm"
 
 src_install() {
-	newbin "${DISTDIR}/${P}" pnpm
+	newbin "${DISTDIR}/${P}-${ARCH}" pnpm
 }


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2025-01-21 10:23 Norbert Szeremet
  0 siblings, 0 replies; 15+ messages in thread
From: Norbert Szeremet @ 2025-01-21 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     ba3d48e926305a074184bb1ef96ce281bbf53c9b
Author:     Norbert Norbiros <norbiros <AT> protonmail <DOT> com>
AuthorDate: Tue Jan 21 10:05:28 2025 +0000
Commit:     Norbert Szeremet <norbiros <AT> protonmail <DOT> com>
CommitDate: Tue Jan 21 10:05:28 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ba3d48e9

sys-apps/pnpm-bin: add 9.15.4, drop 9.6.0

Signed-off-by: Norbert Norbiros <norbiros <AT> protonmail.com>

 sys-apps/pnpm-bin/Manifest                                          | 4 ++--
 sys-apps/pnpm-bin/{pnpm-bin-9.6.0.ebuild => pnpm-bin-9.15.4.ebuild} | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index a030f85ef..876386241 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -2,5 +2,5 @@ DIST pnpm-bin-10.0.0-amd64 67214167 BLAKE2B 97ce4458818cdea32fdc3f54d5a06d440b84
 DIST pnpm-bin-10.0.0-arm64 63239495 BLAKE2B 1fd60d7578e9350789e8139584dc6a7b83bd152b55cb1e202a86ae2448946804e559b1117a54bfc44dda7b347f44b50e8015cc146b52472adf35a24240a93747 SHA512 50e91e52a28f5fb4ec139940ba2569764066a451d6675d1a3218bea30971a12eb30621345c2b120c9ce88c6b235d1099190ff3d3f89e21f1bb62b70367ddce7f
 DIST pnpm-bin-9.12.3-amd64 68151033 BLAKE2B ca06a4db4ae9a79c0e80d02544b9ebdc302678ee3cf0b9bd78de81ef0e9636b4e2b7d79ef568a1c30b4ca1277e746885eaf0caf1f8dc646dcf86adc886bb568d SHA512 cd8d5779d637df41948edafb700099db5a367358f05334e2dd142b5779ac129d05db7e5452de70612aae839ff23b41634991d88b039624f0fa70bacd173d4c4e
 DIST pnpm-bin-9.12.3-arm64 64176425 BLAKE2B e2d1dfc4feb08590e7081136e09d9bbc539185b480ca9f7235adcb7946271eadea3ec5e913701fa4b21dbbda09b8f806d9268f4be1e20a80156314533ace27ef SHA512 1be62aa3cba73ea52f6ce3db73a6e68ac89c9e0fe29e30bd131c0e4f5a7f93d5f2be7d68f415fd1f8dab0e1b914cb2ea719acc229e10bdc63b4ff352df936996
-DIST pnpm-bin-9.6.0-amd64 59521974 BLAKE2B 9bdcba32ba94ef9db6c49ddb5ed10d56003da585b897eaf3687055d38fc05810b4b1a6c0f05558d4417bdcbf52c072a1b7ff153eb2209fa8211a80a430a78966 SHA512 6e6f14cf0d52f2046206cb032b797a9c10623ea2e4a23e222d6791de166a02fdea8c9c365b8d2500448a92cf5e49eb5866bbf95ac69eaa6abe8fed817ee2a2f7
-DIST pnpm-bin-9.6.0-arm64 58044950 BLAKE2B 24242ba24c4aebdbfadc8438900a0e7504ef44c8252f1f866b9437be340dc54c8847b5f84fccb79174e3519e9a1f3aa7bf82388f1f839022210bccb374c8f76b SHA512 9139ce7e4120310ae49eda2bb51f3e3c592d2db7860da9d1004e733c8d95ee62c4de2679e8807ebb10c9ec341626518d681ffff6a94562a8bf7c94b3a1ff7fe5
+DIST pnpm-bin-9.15.4-amd64 67303343 BLAKE2B a53a9ec3a5bb28d33f022ad23631f3f609054aeeb0b3f9aa1d90ec706f2712d36d4b9808305ab8336734b903469990729297501e15d564535da4b364e3245ade SHA512 48da7d7df84d9aa66938e575c5c2356f4bd11fb74dbb1a7464bc23e4e72498d18187c0a08029f99f0fefd5cf901dc4a13e75e0259ec0db7fbb70bdace7cfb5c9
+DIST pnpm-bin-9.15.4-arm64 63328687 BLAKE2B 7378a7a39dfca962f2ef648756827449bdcf8b1572c588cd69ff4edac4ae3348af933effdb3171e9fc8e598b51c1df2e7778867154793bf8d1ba36bf54049f4f SHA512 fa1fb0e1cb450aff8faec9bdd175110b5e7cf917d47c431be82d6e3bb328d3d90cc62cdc86eb982cfc4851da8bc6d986646c609c2c7fc50c78069ab343c8447d

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
similarity index 100%
rename from sys-apps/pnpm-bin/pnpm-bin-9.6.0.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2025-01-21 10:23 Norbert Szeremet
  0 siblings, 0 replies; 15+ messages in thread
From: Norbert Szeremet @ 2025-01-21 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     db55ce2d283175b047cf8d82af9b3ad5375f77bd
Author:     Norbert Norbiros <norbiros <AT> protonmail <DOT> com>
AuthorDate: Tue Jan 21 10:22:55 2025 +0000
Commit:     Norbert Szeremet <norbiros <AT> protonmail <DOT> com>
CommitDate: Tue Jan 21 10:22:55 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=db55ce2d

sys-apps/pnpm-bin: fix `UnsortedKeywords` warning

Signed-off-by: Norbert Norbiros <norbiros <AT> protonmail.com>

 sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild | 2 +-
 sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild | 2 +-
 sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
index 4dada5bb0..872d56f05 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 -*"
+KEYWORDS="-* ~amd64 ~arm64"
 
 RESTRICT="strip"
 

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
index 4dada5bb0..872d56f05 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.12.3.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 -*"
+KEYWORDS="-* ~amd64 ~arm64"
 
 RESTRICT="strip"
 

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
index 4dada5bb0..872d56f05 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 -*"
+KEYWORDS="-* ~amd64 ~arm64"
 
 RESTRICT="strip"
 


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

* [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/
@ 2025-02-04 19:37 Norbert Szeremet
  0 siblings, 0 replies; 15+ messages in thread
From: Norbert Szeremet @ 2025-02-04 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     a60ffecaad0559af4a89a2ee885c0eb21125a9a8
Author:     Norbert Norbiros <norbiros <AT> protonmail <DOT> com>
AuthorDate: Tue Feb  4 19:36:42 2025 +0000
Commit:     Norbert Szeremet <norbiros <AT> protonmail <DOT> com>
CommitDate: Tue Feb  4 19:37:36 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a60ffeca

sys-apps/pnpm-bin: add 9.15.5 & 10.2.0, remove 9.15.4 & 10.0.0

Signed-off-by: Norbert Norbiros <norbiros <AT> protonmail.com>

 sys-apps/pnpm-bin/Manifest                                        | 8 ++++----
 .../pnpm-bin/{pnpm-bin-10.0.0.ebuild => pnpm-bin-10.2.0.ebuild}   | 2 +-
 .../pnpm-bin/{pnpm-bin-9.15.4.ebuild => pnpm-bin-9.15.5.ebuild}   | 2 +-
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-apps/pnpm-bin/Manifest b/sys-apps/pnpm-bin/Manifest
index 876386241..ece804eda 100644
--- a/sys-apps/pnpm-bin/Manifest
+++ b/sys-apps/pnpm-bin/Manifest
@@ -1,6 +1,6 @@
-DIST pnpm-bin-10.0.0-amd64 67214167 BLAKE2B 97ce4458818cdea32fdc3f54d5a06d440b842882bcf78d57aa55aba252925a44b94ff78cde26e898b30e7388936df056ff861d51c19df29a6e945cebe9c325f6 SHA512 80aebfdd2b2e7e105d0611c95621e5bd851736da7c191f0913aefc6d609ca48c653065e3cff421fcbd4f3be1c7bb6a80c77455d91aeecea1251a747694ee967a
-DIST pnpm-bin-10.0.0-arm64 63239495 BLAKE2B 1fd60d7578e9350789e8139584dc6a7b83bd152b55cb1e202a86ae2448946804e559b1117a54bfc44dda7b347f44b50e8015cc146b52472adf35a24240a93747 SHA512 50e91e52a28f5fb4ec139940ba2569764066a451d6675d1a3218bea30971a12eb30621345c2b120c9ce88c6b235d1099190ff3d3f89e21f1bb62b70367ddce7f
+DIST pnpm-bin-10.2.0-amd64 67052922 BLAKE2B bf4eac05f70ff6afc94124cf49449f1f9ef040b3100991270625070ce3f01bbc4f208c7ba9f46772b1e19aaf9b85fbf8754fe039400c60eb51280ede44451f51 SHA512 a4f6afeb87c62c277bb8f5bc15a9b76c1a4dcbcd4c507a112322b68e0cc5538e65c9dac17d49d8a0b38629eb00b35594e3d8e176d3a3182c2b92f760bbe5fe46
+DIST pnpm-bin-10.2.0-arm64 63078202 BLAKE2B 3f5c76694efa6e4fdedc7709fbefa1b76e0bcecb7d65c9dc155a604a4c7f3ed95810f2e4cd4171c6cf5635b551238aa9b4cf9a12472ac9897fcdf1234e906acf SHA512 c3f02dc43747a1dd0968fb08ff68570930f330e4c8e5b1bd6f1433ac13d351064cc0e0996c31cd8e2cfaa57429d89bc32eca6ac272471d8d8f06b897992defc3
 DIST pnpm-bin-9.12.3-amd64 68151033 BLAKE2B ca06a4db4ae9a79c0e80d02544b9ebdc302678ee3cf0b9bd78de81ef0e9636b4e2b7d79ef568a1c30b4ca1277e746885eaf0caf1f8dc646dcf86adc886bb568d SHA512 cd8d5779d637df41948edafb700099db5a367358f05334e2dd142b5779ac129d05db7e5452de70612aae839ff23b41634991d88b039624f0fa70bacd173d4c4e
 DIST pnpm-bin-9.12.3-arm64 64176425 BLAKE2B e2d1dfc4feb08590e7081136e09d9bbc539185b480ca9f7235adcb7946271eadea3ec5e913701fa4b21dbbda09b8f806d9268f4be1e20a80156314533ace27ef SHA512 1be62aa3cba73ea52f6ce3db73a6e68ac89c9e0fe29e30bd131c0e4f5a7f93d5f2be7d68f415fd1f8dab0e1b914cb2ea719acc229e10bdc63b4ff352df936996
-DIST pnpm-bin-9.15.4-amd64 67303343 BLAKE2B a53a9ec3a5bb28d33f022ad23631f3f609054aeeb0b3f9aa1d90ec706f2712d36d4b9808305ab8336734b903469990729297501e15d564535da4b364e3245ade SHA512 48da7d7df84d9aa66938e575c5c2356f4bd11fb74dbb1a7464bc23e4e72498d18187c0a08029f99f0fefd5cf901dc4a13e75e0259ec0db7fbb70bdace7cfb5c9
-DIST pnpm-bin-9.15.4-arm64 63328687 BLAKE2B 7378a7a39dfca962f2ef648756827449bdcf8b1572c588cd69ff4edac4ae3348af933effdb3171e9fc8e598b51c1df2e7778867154793bf8d1ba36bf54049f4f SHA512 fa1fb0e1cb450aff8faec9bdd175110b5e7cf917d47c431be82d6e3bb328d3d90cc62cdc86eb982cfc4851da8bc6d986646c609c2c7fc50c78069ab343c8447d
+DIST pnpm-bin-9.15.5-amd64 67311735 BLAKE2B 1e94fd2593ede2588b1afe72d45e4af7ad3e0a2aeaf418f411721d6c121a2a2df9fba95e0a97a0de24a1ec8af7402fb66e1c8e2316aaae87e33a27c072a127eb SHA512 4a1fb2829defceacdd30183386f4575e1981c89ad1c1ba9d6381fdc84a71989af685bdf9e556c4b313c6c1876fae7dbd3c484fcccf76e089d8bded8dc5e78239
+DIST pnpm-bin-9.15.5-arm64 63336839 BLAKE2B 993f86f71a9345900fca31ffac8f82b2715a9c19bf0c7aca039a4695d7628ebec43a7055dba3763a654d8b6a4492fce102b5788869f90d12ffcba5fbb20f49c6 SHA512 95e42f4f5cd8251e4e3eca9aaa126403b3a2d1ebfccfd0de19535f339736007fcd58b3b2c084123241f7ffe09bb88d6759af06b3b292661996d3136123c732eb

diff --git a/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild b/sys-apps/pnpm-bin/pnpm-bin-10.2.0.ebuild
similarity index 93%
rename from sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-10.2.0.ebuild
index 872d56f05..15735ecdb 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-10.0.0.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-10.2.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023-2024 Gentoo Authors
+# Copyright 2023-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild b/sys-apps/pnpm-bin/pnpm-bin-9.15.5.ebuild
similarity index 93%
rename from sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
rename to sys-apps/pnpm-bin/pnpm-bin-9.15.5.ebuild
index 872d56f05..15735ecdb 100644
--- a/sys-apps/pnpm-bin/pnpm-bin-9.15.4.ebuild
+++ b/sys-apps/pnpm-bin/pnpm-bin-9.15.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2023-2024 Gentoo Authors
+# Copyright 2023-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

end of thread, other threads:[~2025-02-04 19:37 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-16 16:28 [gentoo-commits] repo/proj/guru:dev commit in: sys-apps/pnpm-bin/ Lucio Sauer
  -- strict thread matches above, loose matches on Subject: below --
2025-02-04 19:37 Norbert Szeremet
2025-01-21 10:23 Norbert Szeremet
2025-01-21 10:23 Norbert Szeremet
2025-01-12 22:18 David Roman
2024-11-11  3:16 Artemis Everfree
2024-07-25 11:05 Ada Ahmed
2024-07-25 11:03 Ada Ahmed
2024-07-16 16:28 Lucio Sauer
2024-05-04  1:19 [gentoo-commits] repo/proj/guru:master " David Roman
2024-05-04  1:13 ` [gentoo-commits] repo/proj/guru:dev " David Roman
2024-02-28 17:20 Vitaly Zdanevich
2024-02-26  0:38 Vitaly Zdanevich
2024-02-15 10:59 Vitaly Zdanevich
2023-09-14 17:42 Vitaly Zdanevich
2023-09-13 16:29 Vitaly Zdanevich

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