Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0
@ 2024-08-10  5:25 Luciogi
  2024-08-10  5:27 ` [PR REVIEW] " classabbyamp
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Luciogi @ 2024-08-10  5:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 499 bytes --]

There is a new pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2579 bytes --]

From 0c5c4a32646c86d1ad21f4f498dcd6c99d0fcde9 Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] rename: go-ipfs -> kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 22 ++++++++++++++--------
 3 files changed, 15 insertions(+), 8 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (56%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 56%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 175373e9e6a088..f833e4c203c8ce 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,25 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
 revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
+#export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +30,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="kubo-${version}_${revision}"
+	short_desc+=" - Transistional package"
+}

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
@ 2024-08-10  5:27 ` classabbyamp
  2024-08-10  5:53 ` [PR PATCH] [Updated] " Luciogi
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: classabbyamp @ 2024-08-10  5:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 212 bytes --]

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1712554515

Comment:
```suggestion
	depends="kubo>=${version}_${revision}"
```

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

* Re: [PR PATCH] [Updated] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
  2024-08-10  5:27 ` [PR REVIEW] " classabbyamp
@ 2024-08-10  5:53 ` Luciogi
  2024-08-30 12:01 ` Luciogi
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-08-10  5:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2580 bytes --]

From d223dab445cffff64bf3d30954fe943b7e6cb14a Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] rename: go-ipfs -> kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 22 ++++++++++++++--------
 3 files changed, 15 insertions(+), 8 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (56%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 56%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 175373e9e6a088..e6bb0cc67fdd86 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,25 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
 revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
+#export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +30,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="kubo>=${version}_${revision}"
+	short_desc+=" - Transistional package"
+}

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

* Re: [PR PATCH] [Updated] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
  2024-08-10  5:27 ` [PR REVIEW] " classabbyamp
  2024-08-10  5:53 ` [PR PATCH] [Updated] " Luciogi
@ 2024-08-30 12:01 ` Luciogi
  2024-08-30 12:02 ` Luciogi
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-08-30 12:01 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2580 bytes --]

From c0b28e9636fd3a837153134b7ad961adba06c620 Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] go-ipfs: rename to kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 22 ++++++++++++++--------
 3 files changed, 15 insertions(+), 8 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (56%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 56%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 175373e9e6a088..e6bb0cc67fdd86 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,25 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
 revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
+#export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +30,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="kubo>=${version}_${revision}"
+	short_desc+=" - Transistional package"
+}

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

* Re: [PR PATCH] [Updated] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (2 preceding siblings ...)
  2024-08-30 12:01 ` Luciogi
@ 2024-08-30 12:02 ` Luciogi
  2024-08-30 12:38 ` [PR REVIEW] " classabbyamp
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-08-30 12:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2594 bytes --]

From fcac51b150f55d23c81eabd55687aca298c76625 Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] go-ipfs: rename to kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 24 +++++++++++++++---------
 3 files changed, 16 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (55%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 55%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 2a81f0cb2065ae..e6bb0cc67fdd86 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,25 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
-revision=2
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
+revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
+#export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +30,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="kubo>=${version}_${revision}"
+	short_desc+=" - Transistional package"
+}

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (3 preceding siblings ...)
  2024-08-30 12:02 ` Luciogi
@ 2024-08-30 12:38 ` classabbyamp
  2024-08-30 13:25 ` [PR PATCH] [Updated] " Luciogi
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: classabbyamp @ 2024-08-30 12:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 265 bytes --]

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1738573905

Comment:
```suggestion
	depends="${sourcepkg}>=${version}_${revision}"
	short_desc+=" - transistional dummy package"
```


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

* Re: [PR PATCH] [Updated] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (4 preceding siblings ...)
  2024-08-30 12:38 ` [PR REVIEW] " classabbyamp
@ 2024-08-30 13:25 ` Luciogi
  2024-08-30 13:25 ` [PR REVIEW] " Luciogi
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-08-30 13:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2608 bytes --]

From d8e492892cd3ed1fed629f2deffa038660681f5f Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] go-ipfs: rename to kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 24 +++++++++++++++---------
 3 files changed, 16 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (54%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 54%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 2a81f0cb2065ae..28d996bb9beb6d 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,25 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
-revision=2
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
+revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
+#export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +30,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - transistional dummy package"
+}

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (5 preceding siblings ...)
  2024-08-30 13:25 ` [PR PATCH] [Updated] " Luciogi
@ 2024-08-30 13:25 ` Luciogi
  2024-09-02 12:49 ` ahesford
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-08-30 13:25 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

New review comment by Luciogi on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1738664484

Comment:
Done

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (6 preceding siblings ...)
  2024-08-30 13:25 ` [PR REVIEW] " Luciogi
@ 2024-09-02 12:49 ` ahesford
  2024-09-02 12:49 ` ahesford
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ahesford @ 2024-09-02 12:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 213 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1740878179

Comment:
```suggestion
	short_desc+=" - transitional dummy package"
```

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (7 preceding siblings ...)
  2024-09-02 12:49 ` ahesford
@ 2024-09-02 12:49 ` ahesford
  2024-09-04 16:29 ` [PR PATCH] [Updated] " Luciogi
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ahesford @ 2024-09-02 12:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 166 bytes --]

New review comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1740878495

Comment:
Remove this line.

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

* Re: [PR PATCH] [Updated] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (8 preceding siblings ...)
  2024-09-02 12:49 ` ahesford
@ 2024-09-04 16:29 ` Luciogi
  2024-09-04 16:29 ` [PR REVIEW] " Luciogi
  2024-09-29 19:59 ` [PR PATCH] [Merged]: go-ipfs: rename to " classabbyamp
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-09-04 16:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

There is an updated pull request by Luciogi against master on the void-packages repository

https://github.com/Luciogi/void-packages ipfs-go
https://github.com/void-linux/void-packages/pull/51760

rename: go-ipfs -> kubo, update to 0.29.0

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




A patch file from https://github.com/void-linux/void-packages/pull/51760.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-ipfs-go-51760.patch --]
[-- Type: text/x-diff, Size: 2578 bytes --]

From b953172cfd521ad2dc7cdd354aca4351933bb613 Mon Sep 17 00:00:00 2001
From: Luciogi <githubvoidlinux.supremacy429@passinbox.com>
Date: Sat, 10 Aug 2024 10:15:43 +0500
Subject: [PATCH] go-ipfs: rename to kubo, update to 0.29.0

---
 srcpkgs/go-ipfs                          |  1 +
 srcpkgs/{go-ipfs => kubo}/files/ipfs/run |  0
 srcpkgs/{go-ipfs => kubo}/template       | 23 ++++++++++++++---------
 3 files changed, 15 insertions(+), 9 deletions(-)
 create mode 120000 srcpkgs/go-ipfs
 rename srcpkgs/{go-ipfs => kubo}/files/ipfs/run (100%)
 rename srcpkgs/{go-ipfs => kubo}/template (56%)

diff --git a/srcpkgs/go-ipfs b/srcpkgs/go-ipfs
new file mode 120000
index 00000000000000..20ac9c61d8ffd7
--- /dev/null
+++ b/srcpkgs/go-ipfs
@@ -0,0 +1 @@
+kubo
\ No newline at end of file
diff --git a/srcpkgs/go-ipfs/files/ipfs/run b/srcpkgs/kubo/files/ipfs/run
similarity index 100%
rename from srcpkgs/go-ipfs/files/ipfs/run
rename to srcpkgs/kubo/files/ipfs/run
diff --git a/srcpkgs/go-ipfs/template b/srcpkgs/kubo/template
similarity index 56%
rename from srcpkgs/go-ipfs/template
rename to srcpkgs/kubo/template
index 2a81f0cb2065ae..b0b6d60d36ac17 100644
--- a/srcpkgs/go-ipfs/template
+++ b/srcpkgs/kubo/template
@@ -1,25 +1,24 @@
-# Template file for 'go-ipfs'
-pkgname=go-ipfs
-version=0.22.0
-revision=2
+# Template file for 'kubo'
+pkgname=kubo
+version=0.29.0
+revision=1
 build_style=go
 go_import_path="github.com/ipfs/kubo"
 go_package="${go_import_path}/cmd/ipfs ${go_import_path}/cmd/ipfswatch"
-hostmakedepends="git go1.20"
+hostmakedepends="git"
 depends="fs-repo-migrations>=1.7.1"
 short_desc="Global versioned P2P merkle DAG file system"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, Apache-2.0"
 homepage="https://ipfs.io"
-changelog="https://github.com/ipfs/go-ipfs/blob/master/CHANGELOG.md"
-distfiles="https://github.com/ipfs/go-ipfs/archive/v${version}.tar.gz"
-checksum=886193dda20345a3d3ed6702629caa98212f1f0622f80c65bea1b737957fbb16
+changelog="https://github.com/ipfs/kubo/blob/master/CHANGELOG.md"
+distfiles="https://github.com/ipfs/kubo/archive/v${version}.tar.gz"
+checksum=7679ed1b2c6a713b2297ab025d83a50c17fbcebf7e3af3b92be06cb9678a40f5
 
 system_accounts="_ipfs"
 make_dirs="/var/lib/ipfs 0700 _ipfs _ipfs"
 _ipfs_homedir="/var/lib/ipfs"
 
-export GOTOOLCHAIN=go1.20
 if [ "$CROSS_BUILD" ]; then
 	export CGO_ENABLED=0
 fi
@@ -30,3 +29,9 @@ post_install() {
 	vdoc CHANGELOG.md
 	vsv ipfs
 }
+
+go-ipfs_package() {
+	build_style=meta
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - transitional dummy package"
+}

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

* Re: [PR REVIEW] rename: go-ipfs -> kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (9 preceding siblings ...)
  2024-09-04 16:29 ` [PR PATCH] [Updated] " Luciogi
@ 2024-09-04 16:29 ` Luciogi
  2024-09-29 19:59 ` [PR PATCH] [Merged]: go-ipfs: rename to " classabbyamp
  11 siblings, 0 replies; 13+ messages in thread
From: Luciogi @ 2024-09-04 16:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 152 bytes --]

New review comment by Luciogi on void-packages repository

https://github.com/void-linux/void-packages/pull/51760#discussion_r1744096143

Comment:
Done

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

* Re: [PR PATCH] [Merged]: go-ipfs: rename to kubo, update to 0.29.0
  2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
                   ` (10 preceding siblings ...)
  2024-09-04 16:29 ` [PR REVIEW] " Luciogi
@ 2024-09-29 19:59 ` classabbyamp
  11 siblings, 0 replies; 13+ messages in thread
From: classabbyamp @ 2024-09-29 19:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

There's a merged pull request on the void-packages repository

go-ipfs: rename to kubo, update to 0.29.0
https://github.com/void-linux/void-packages/pull/51760

Description:

#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-LIBC)




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

end of thread, other threads:[~2024-09-29 19:59 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-10  5:25 [PR PATCH] rename: go-ipfs -> kubo, update to 0.29.0 Luciogi
2024-08-10  5:27 ` [PR REVIEW] " classabbyamp
2024-08-10  5:53 ` [PR PATCH] [Updated] " Luciogi
2024-08-30 12:01 ` Luciogi
2024-08-30 12:02 ` Luciogi
2024-08-30 12:38 ` [PR REVIEW] " classabbyamp
2024-08-30 13:25 ` [PR PATCH] [Updated] " Luciogi
2024-08-30 13:25 ` [PR REVIEW] " Luciogi
2024-09-02 12:49 ` ahesford
2024-09-02 12:49 ` ahesford
2024-09-04 16:29 ` [PR PATCH] [Updated] " Luciogi
2024-09-04 16:29 ` [PR REVIEW] " Luciogi
2024-09-29 19:59 ` [PR PATCH] [Merged]: go-ipfs: rename to " classabbyamp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).