Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] hydrus: update to 566, adopt.
@ 2024-03-18 14:25 Eloitor
  2024-03-18 14:46 ` [PR REVIEW] " meator
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 14:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 9edd9e4a02bfdc2307b90d9bfa5138a6fee4ad35 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..5e77c91a6325b0 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +24,7 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -rf hydrus/static/build_files
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR REVIEW] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
@ 2024-03-18 14:46 ` meator
  2024-03-18 14:54 ` [PR PATCH] [Updated] " Eloitor
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: meator @ 2024-03-18 14:46 UTC (permalink / raw)
  To: ml

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

New review comment by meator on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#discussion_r1528706803

Comment:
Do not use `rm -f` unless you have to. The `-f` flag makes `rm` ignore all errors[^1]. We want errors. If for example the directory would be removed in a next release, the `rm` command should fail. This will notify you that upstream's structure has changed and that the `rm` command needs to be modified or removed.

The advantages of this approach aren't only theoretical. `hydrus/static/build_files` doesn't exist. The `rm -rf` line therefore does nothing. It properly fails to build without `-f`.

```suggestion
	rm -r static/build_files
```

[^1]: "ignore nonexistent files and arguments, never prompt"

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
  2024-03-18 14:46 ` [PR REVIEW] " meator
@ 2024-03-18 14:54 ` Eloitor
  2024-03-18 14:57 ` Eloitor
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 14:54 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From d233f24666bc6933865abf3aa56cf6885e84961d Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..cc5d12b7097e47 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +24,7 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r hydrus/static/build_files
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
  2024-03-18 14:46 ` [PR REVIEW] " meator
  2024-03-18 14:54 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-18 14:57 ` Eloitor
  2024-03-18 15:01 ` Eloitor
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 14:57 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From f7f74c001fc22a8b53e354d06263045fb8d4fa57 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..2c01b27a73d325 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (2 preceding siblings ...)
  2024-03-18 14:57 ` Eloitor
@ 2024-03-18 15:01 ` Eloitor
  2024-03-18 15:01 ` [PR REVIEW] " Eloitor
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From fa280b6f9899184752a47f5d862e66ec37c1a9e5 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..e61b221780e39b 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +24,7 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	ls static
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR REVIEW] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (3 preceding siblings ...)
  2024-03-18 15:01 ` Eloitor
@ 2024-03-18 15:01 ` Eloitor
  2024-03-18 15:02 ` [PR PATCH] [Updated] " Eloitor
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:01 UTC (permalink / raw)
  To: ml

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

New review comment by Eloitor on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#discussion_r1528735401

Comment:
Oh thanks. I didn't noticed.

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (4 preceding siblings ...)
  2024-03-18 15:01 ` [PR REVIEW] " Eloitor
@ 2024-03-18 15:02 ` Eloitor
  2024-03-18 15:06 ` Eloitor
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 491ebab12c0519cf077690bb5275f93a8cf09bd9 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..008f6536974904 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +24,7 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (5 preceding siblings ...)
  2024-03-18 15:02 ` [PR PATCH] [Updated] " Eloitor
@ 2024-03-18 15:06 ` Eloitor
  2024-03-18 15:10 ` Eloitor
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 8cbca0e7d2f9ca423768b21911cf07b77b43a06b Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..df90e96cdbaca4 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,11 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +24,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (6 preceding siblings ...)
  2024-03-18 15:06 ` Eloitor
@ 2024-03-18 15:10 ` Eloitor
  2024-03-18 15:11 ` Eloitor
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:10 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From e28e1caa636aba790b6f7be6a5f4b4075ae81825 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..eac91827c26ee0 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,12 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
+changelog="https://hydrusnetwork.github.io/hydrus/changelog.html"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +25,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (7 preceding siblings ...)
  2024-03-18 15:10 ` Eloitor
@ 2024-03-18 15:11 ` Eloitor
  2024-03-18 15:12 ` Eloitor
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 6614d2edcdfc5d7884763384a3663dc998204a65 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..b0f0b86e443c7c 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,12 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
-homepage="https://hydrusnetwork.github.io/hydrus/"
+homepage="https://raw.githubusercontent.com/hydrusnetwork/hydrus/master/docs/changelog.md"
+changelog="https://hydrusnetwork.github.io/hydrus/changelog.html"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +25,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (8 preceding siblings ...)
  2024-03-18 15:11 ` Eloitor
@ 2024-03-18 15:12 ` Eloitor
  2024-03-18 20:11 ` [PR REVIEW] " classabbyamp
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-03-18 15:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From a7479bd4442e39c20fb8edbd9db4eb216357be78 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 566, adopt.

---
 srcpkgs/hydrus/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..a33831f9952848 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=566
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,12 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
+changelog="https://raw.githubusercontent.com/hydrusnetwork/hydrus/master/docs/changelog.md"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=d1a4ad8712e5c1316dcee4580c51e62ece6acd64d81b364b71a6bc987b373813
 python_version="3"
 
 do_install() {
@@ -24,6 +25,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR REVIEW] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (9 preceding siblings ...)
  2024-03-18 15:12 ` Eloitor
@ 2024-03-18 20:11 ` classabbyamp
  2024-03-18 20:28 ` fanyx
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: classabbyamp @ 2024-03-18 20:11 UTC (permalink / raw)
  To: ml

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

New review comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#discussion_r1529205746

Comment:
@fanyx 

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

* Re: [PR REVIEW] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (10 preceding siblings ...)
  2024-03-18 20:11 ` [PR REVIEW] " classabbyamp
@ 2024-03-18 20:28 ` fanyx
  2024-03-22 18:54 ` fanyx
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: fanyx @ 2024-03-18 20:28 UTC (permalink / raw)
  To: ml

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

New review comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#discussion_r1529231961

Comment:
thanks for adopting @Eloitor 

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

* Re: hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (11 preceding siblings ...)
  2024-03-18 20:28 ` fanyx
@ 2024-03-22 18:54 ` fanyx
  2024-03-22 19:18 ` fanyx
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: fanyx @ 2024-03-22 18:54 UTC (permalink / raw)
  To: ml

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

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#issuecomment-2015722160

Comment:
can you add `python3-PyQt5-svg` to `depends` while we still use PyQt5?

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

* Re: hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (12 preceding siblings ...)
  2024-03-22 18:54 ` fanyx
@ 2024-03-22 19:18 ` fanyx
  2024-05-04  8:05 ` [PR PATCH] [Updated] " Eloitor
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: fanyx @ 2024-03-22 19:18 UTC (permalink / raw)
  To: ml

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

New comment by fanyx on void-packages repository

https://github.com/void-linux/void-packages/pull/49352#issuecomment-2015722160

Comment:
can you add `python3-PyQt5-svg` to `depends` while we still use PyQt5?
runs fine when added for me

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (13 preceding siblings ...)
  2024-03-22 19:18 ` fanyx
@ 2024-05-04  8:05 ` Eloitor
  2024-05-04  8:09 ` Eloitor
  2024-05-04  8:28 ` [PR PATCH] [Merged]: " classabbyamp
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-05-04  8:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 073e68a0e1a86b99425cd229d0e0c47f1d9d491d Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 573, adopt.

---
 srcpkgs/hydrus/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..761afb0983de76 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=573
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,12 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
+changelog="https://raw.githubusercontent.com/hydrusnetwork/hydrus/master/docs/changelog.md"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=80738fcbb67941aaeeddf7e1fe7f0d8f4f28d2286341862a45f970dec8dde1c7
 python_version="3"
 
 do_install() {
@@ -24,6 +25,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Updated] hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (14 preceding siblings ...)
  2024-05-04  8:05 ` [PR PATCH] [Updated] " Eloitor
@ 2024-05-04  8:09 ` Eloitor
  2024-05-04  8:28 ` [PR PATCH] [Merged]: " classabbyamp
  16 siblings, 0 replies; 18+ messages in thread
From: Eloitor @ 2024-05-04  8:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Eloitor/void-packages hydrus
https://github.com/void-linux/void-packages/pull/49352

hydrus: update to 566, adopt.
#### Testing the changes
- I tested the changes in this PR: **briefly**

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

closes #49338 
closes #46993

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

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

From 1d86b5db12e49706257b7a93e125ba752bbb4261 Mon Sep 17 00:00:00 2001
From: Eloi Torrents <eloitor@disroot.org>
Date: Mon, 18 Mar 2024 16:23:50 +0100
Subject: [PATCH] hydrus: update to 573, adopt.

---
 srcpkgs/hydrus/template | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hydrus/template b/srcpkgs/hydrus/template
index 74f2ebc9dddcdd..761afb0983de76 100644
--- a/srcpkgs/hydrus/template
+++ b/srcpkgs/hydrus/template
@@ -1,6 +1,6 @@
 # Template file for 'hydrus'
 pkgname=hydrus
-version=544
+version=573
 revision=1
 pycompile_dirs="usr/lib/hydrus"
 hostmakedepends="python3"
@@ -11,11 +11,12 @@ depends="python3 libopencv-python3 python3-BeautifulSoup4 python3-yaml
  miniupnpc desktop-file-utils python3-cloudscraper python3-openssl
  python3-packaging"
 short_desc="Danbooru-like image tagging and searching system for the desktop"
-maintainer="fanyx <fanyx+github@posteo.net>"
+maintainer="Eloi Torrents <eloitor@duck.com>"
 license="WTFPL"
 homepage="https://hydrusnetwork.github.io/hydrus/"
+changelog="https://raw.githubusercontent.com/hydrusnetwork/hydrus/master/docs/changelog.md"
 distfiles="https://github.com/hydrusnetwork/hydrus/archive/refs/tags/v${version}.tar.gz"
-checksum=7fa642c6139aaac97abaaad96a64c5e481b701c90c503129368b211c87af091c
+checksum=80738fcbb67941aaeeddf7e1fe7f0d8f4f28d2286341862a45f970dec8dde1c7
 python_version="3"
 
 do_install() {
@@ -24,6 +25,8 @@ do_install() {
 	chmod +x hydrus_server.py hydrus_client.py
 
 	vmkdir usr/lib/hydrus
+	rm -r static/build_files
+	rm -r static/requirements
 	vcopy hydrus usr/lib/hydrus/
 	vcopy static usr/lib/hydrus/
 

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

* Re: [PR PATCH] [Merged]: hydrus: update to 566, adopt.
  2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
                   ` (15 preceding siblings ...)
  2024-05-04  8:09 ` Eloitor
@ 2024-05-04  8:28 ` classabbyamp
  16 siblings, 0 replies; 18+ messages in thread
From: classabbyamp @ 2024-05-04  8:28 UTC (permalink / raw)
  To: ml

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

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

hydrus: update to 566, adopt.
https://github.com/void-linux/void-packages/pull/49352

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

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

closes #49338 
closes #46993

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

end of thread, other threads:[~2024-05-04  8:28 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-18 14:25 [PR PATCH] hydrus: update to 566, adopt Eloitor
2024-03-18 14:46 ` [PR REVIEW] " meator
2024-03-18 14:54 ` [PR PATCH] [Updated] " Eloitor
2024-03-18 14:57 ` Eloitor
2024-03-18 15:01 ` Eloitor
2024-03-18 15:01 ` [PR REVIEW] " Eloitor
2024-03-18 15:02 ` [PR PATCH] [Updated] " Eloitor
2024-03-18 15:06 ` Eloitor
2024-03-18 15:10 ` Eloitor
2024-03-18 15:11 ` Eloitor
2024-03-18 15:12 ` Eloitor
2024-03-18 20:11 ` [PR REVIEW] " classabbyamp
2024-03-18 20:28 ` fanyx
2024-03-22 18:54 ` fanyx
2024-03-22 19:18 ` fanyx
2024-05-04  8:05 ` [PR PATCH] [Updated] " Eloitor
2024-05-04  8:09 ` Eloitor
2024-05-04  8:28 ` [PR PATCH] [Merged]: " 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).