* [PR PATCH] yadm: update to 3.3.0, do_check, adopt.
@ 2025-01-03 16:26 tornaria
2025-01-03 16:44 ` [PR PATCH] [Updated] " tornaria
2025-01-04 13:27 ` [PR PATCH] [Merged]: " Johnnynator
0 siblings, 2 replies; 3+ messages in thread
From: tornaria @ 2025-01-03 16:26 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1231 bytes --]
There is a new pull request by tornaria against master on the void-packages repository
https://github.com/tornaria/void-packages yadm
https://github.com/void-linux/void-packages/pull/53824
yadm: update to 3.3.0, do_check, adopt.
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/53824.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-yadm-53824.patch --]
[-- Type: text/x-diff, Size: 1758 bytes --]
From e0f360a2803a18af38753d085edc9a7e554c27d8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 3 Jan 2025 09:39:42 -0300
Subject: [PATCH] yadm: update to 3.3.0, do_check, adopt.
---
srcpkgs/yadm/template | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index e84f8ae1970542..5986b69f22debf 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -1,14 +1,16 @@
# Template file for 'yadm'
pkgname=yadm
-version=3.2.2
-revision=2
+version=3.3.0
+revision=1
depends="bash git gnupg"
+checkdepends="$depends python3-pytest esh expect tar"
short_desc="Yet Another Dotfiles Manager"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
license="GPL-3.0-or-later"
homepage="https://yadm.io/"
+changelog="https://raw.githubusercontent.com/yadm-dev/yadm/refs/heads/master/CHANGES"
distfiles="https://github.com/TheLocehiliosan/yadm/archive/${version}.tar.gz"
-checksum=c5fb508748995ce4c08a21d8bcda686ad680116ccf00a5318bbccf147f4c33ad
+checksum=a977836ee874fece3d69b5a8f7436e6ce4e6bf8d2520f8517c128281cc6b101d
do_install() {
vbin yadm
@@ -17,3 +19,14 @@ do_install() {
vcompletion completion/fish/yadm.fish fish
vcompletion completion/zsh/_yadm zsh
}
+
+do_check() {
+ # skip tests for template engines we don't support
+ # test_syntax.py needs specific versions of linters, skip
+ # test_upgrade.py needs old versions of yadm
+ pytest -k 'not((-envtpl])or(-j2])or(-j2cli]))' \
+ --ignore test/test_unit_template_j2.py \
+ --ignore test/test_syntax.py \
+ --ignore test/test_upgrade.py \
+ --deselect test/test_encryption.py::test_offer_to_add
+}
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PR PATCH] [Updated] yadm: update to 3.3.0, do_check, adopt.
2025-01-03 16:26 [PR PATCH] yadm: update to 3.3.0, do_check, adopt tornaria
@ 2025-01-03 16:44 ` tornaria
2025-01-04 13:27 ` [PR PATCH] [Merged]: " Johnnynator
1 sibling, 0 replies; 3+ messages in thread
From: tornaria @ 2025-01-03 16:44 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1236 bytes --]
There is an updated pull request by tornaria against master on the void-packages repository
https://github.com/tornaria/void-packages yadm
https://github.com/void-linux/void-packages/pull/53824
yadm: update to 3.3.0, do_check, adopt.
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
A patch file from https://github.com/void-linux/void-packages/pull/53824.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-yadm-53824.patch --]
[-- Type: text/x-diff, Size: 1767 bytes --]
From 36ad75362b1ac46351332aa17c3bfc3bae404829 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 3 Jan 2025 09:39:42 -0300
Subject: [PATCH] yadm: update to 3.3.0, do_check, adopt.
---
srcpkgs/yadm/template | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index e84f8ae1970542..777387c2831e0e 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -1,14 +1,16 @@
# Template file for 'yadm'
pkgname=yadm
-version=3.2.2
-revision=2
+version=3.3.0
+revision=1
depends="bash git gnupg"
+checkdepends="${depends/bash /} python3-pytest esh expect tar"
short_desc="Yet Another Dotfiles Manager"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
license="GPL-3.0-or-later"
homepage="https://yadm.io/"
+changelog="https://raw.githubusercontent.com/yadm-dev/yadm/refs/heads/master/CHANGES"
distfiles="https://github.com/TheLocehiliosan/yadm/archive/${version}.tar.gz"
-checksum=c5fb508748995ce4c08a21d8bcda686ad680116ccf00a5318bbccf147f4c33ad
+checksum=a977836ee874fece3d69b5a8f7436e6ce4e6bf8d2520f8517c128281cc6b101d
do_install() {
vbin yadm
@@ -17,3 +19,14 @@ do_install() {
vcompletion completion/fish/yadm.fish fish
vcompletion completion/zsh/_yadm zsh
}
+
+do_check() {
+ # skip tests for template engines we don't support
+ # test_syntax.py needs specific versions of linters, skip
+ # test_upgrade.py needs old versions of yadm
+ pytest -k 'not((-envtpl])or(-j2])or(-j2cli]))' \
+ --ignore test/test_unit_template_j2.py \
+ --ignore test/test_syntax.py \
+ --ignore test/test_upgrade.py \
+ --deselect test/test_encryption.py::test_offer_to_add
+}
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PR PATCH] [Merged]: yadm: update to 3.3.0, do_check, adopt.
2025-01-03 16:26 [PR PATCH] yadm: update to 3.3.0, do_check, adopt tornaria
2025-01-03 16:44 ` [PR PATCH] [Updated] " tornaria
@ 2025-01-04 13:27 ` Johnnynator
1 sibling, 0 replies; 3+ messages in thread
From: Johnnynator @ 2025-01-04 13:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 1081 bytes --]
There's a merged pull request on the void-packages repository
yadm: update to 3.3.0, do_check, adopt.
https://github.com/void-linux/void-packages/pull/53824
Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->
#### Testing the changes
- I tested the changes in this PR: **briefly**
<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->
<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
- aarch64-musl
- armv7l
- armv6l-musl
-->
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-01-04 13:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-03 16:26 [PR PATCH] yadm: update to 3.3.0, do_check, adopt tornaria
2025-01-03 16:44 ` [PR PATCH] [Updated] " tornaria
2025-01-04 13:27 ` [PR PATCH] [Merged]: " Johnnynator
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).