Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1.
@ 2022-03-14  7:44 jcgruenhage
  2022-03-14  7:49 ` [PR REVIEW] " jcgruenhage
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-14  7:44 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages python3-ansible-lint-6.0.0a1_1
https://github.com/void-linux/void-packages/pull/36131

WIP: python3-ansible-lint: update to 6.0.0a1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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
-->

Marked as draft because it's a prerelease still, but considering after creating the package locally for testing, I thought I might as well push it already so that it doesn't get lost.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-ansible-lint-6.0.0a1_1-36131.patch --]
[-- Type: text/x-diff, Size: 5143 bytes --]

From ad7b5f078ef9167e787e6d6f5ad80bf16417f173 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:37:19 +0100
Subject: [PATCH 1/3] New package: python3-subprocess-tee-0.3.5

---
 srcpkgs/python3-subprocess-tee/template | 26 +++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/python3-subprocess-tee/template

diff --git a/srcpkgs/python3-subprocess-tee/template b/srcpkgs/python3-subprocess-tee/template
new file mode 100644
index 000000000000..39a0233dad70
--- /dev/null
+++ b/srcpkgs/python3-subprocess-tee/template
@@ -0,0 +1,26 @@
+# Template file for 'python3-subprocess-tee'
+pkgname=python3-subprocess-tee
+version=0.3.5
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="subprocess_tee-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3"
+short_desc="Replacement for subprocess.run capturing output while still printing it"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/pycontribs/subprocess-tee"
+distfiles="${PYPI_SITE}/s/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=ff5cced589a4b8ac973276ca1ba21bb6e3de600cde11a69947ff51f696efd577
+# requires molecule, which isn't packaged yet
+make_check=no
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From d6a8802aa6ffd7aec7b71e9acc7fd8f1912da392 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:01 +0100
Subject: [PATCH 2/3] New package: python3-ansible-compat-2.0.0

---
 srcpkgs/python3-ansible-compat/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-ansible-compat/template

diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template
new file mode 100644
index 000000000000..bf03fe221d0a
--- /dev/null
+++ b/srcpkgs/python3-ansible-compat/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-ansible-compat'
+pkgname=python3-ansible-compat
+version=2.0.0
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="ansible_compat-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3-subprocess-tee"
+short_desc="Python package for working with various version of ansible"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/ansible-community/ansible-compat"
+distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=4027da4ec2b524c263a801cc2dc6da2b98c2996cec258cef118a30c790467ed2
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 99356ff97d5aa6d4ef7d2fb24eca87ed86c9df73 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:12 +0100
Subject: [PATCH 3/3] python3-ansible-lint: update to 6.0.0a1.

---
 srcpkgs/python3-ansible-lint/template | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index 78d31ea90639..4d247c8af0dd 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-ansible-lint'
 pkgname=python3-ansible-lint
-version=5.4.0
+version=6.0.0a1
 revision=1
 wrksrc="${pkgname/python3-/}-${version}"
 build_style=python3-pep517
 make_install_target="ansible_lint-${version}-py3-none-any.whl"
 hostmakedepends="python3-wheel python3-toml"
-depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch"
+depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch python3-ansible-compat"
 short_desc="Linter for Ansible files"
 maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
-license="MIT"
+license="GPL-3.0-only"
 homepage="https://github.com/ansible-community/ansible-lint"
 distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
-checksum=2160a60b4ab034c04006d701a1779340ffb0f6e28f030ff8de958e1062a88962
+checksum=db06e90f23c9c30570d3e72fed534e1bc8334eabbc1deb708c9cf74856fdf278
 # Tests are currently broken for ansible on python 3.10
 # See https://github.com/ansible/ansible/issues/74658
 # and https://github.com/ansible/ansible/issues/74660
@@ -22,7 +22,3 @@ post_patch() {
 	# scm versioning is broken in this release
 	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
 }
-
-post_install() {
-	vlicense LICENSE
-}

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

* Re: [PR REVIEW] WIP: python3-ansible-lint: update to 6.0.0a1.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
@ 2022-03-14  7:49 ` jcgruenhage
  2022-03-14  7:50 ` jcgruenhage
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-14  7:49 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r825664979

Comment:
> The ansible-lint project is distributed as [GPLv3](https://github.com/ansible-community/ansible-lint/blob/main/COPYING) due to use of [GPLv3](https://github.com/ansible-community/ansible-lint/blob/main/COPYING) runtime dependencies, like ansible and yamllint.
> 
> For historical reasons, its own code-base remains licensed under a more liberal [MIT](https://github.com/ansible-community/ansible-lint/blob/main/docs/licenses/LICENSE.mit.txt) license and any contributions made are accepted as being made under original [MIT](https://github.com/ansible-community/ansible-lint/blob/main/docs/licenses/LICENSE.mit.txt) license.

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

* Re: [PR REVIEW] WIP: python3-ansible-lint: update to 6.0.0a1.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
  2022-03-14  7:49 ` [PR REVIEW] " jcgruenhage
@ 2022-03-14  7:50 ` jcgruenhage
  2022-03-14  8:15 ` ssbarnea
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-14  7:50 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r825665855

Comment:
I've given packaging `molecule` a shot multiple times, but I wasn't successful so far.

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

* Re: WIP: python3-ansible-lint: update to 6.0.0a1.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
  2022-03-14  7:49 ` [PR REVIEW] " jcgruenhage
  2022-03-14  7:50 ` jcgruenhage
@ 2022-03-14  8:15 ` ssbarnea
  2022-03-15 10:37 ` [PR PATCH] [Updated] " jcgruenhage
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: ssbarnea @ 2022-03-14  8:15 UTC (permalink / raw)
  To: ml

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

New comment by ssbarnea on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#issuecomment-1066493945

Comment:
Ansible-lint maintainer here, please keep this PR open until we make the official release of v6, maybe even one or two days later, as I suspect we might need some hotfixes. It would likely avoid extra work later.

BTW, I am really happy to see downstream being proactive about new releases.


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

* Re: [PR PATCH] [Updated] WIP: python3-ansible-lint: update to 6.0.0a1.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (2 preceding siblings ...)
  2022-03-14  8:15 ` ssbarnea
@ 2022-03-15 10:37 ` jcgruenhage
  2022-03-24 16:16 ` [PR PATCH] [Updated] python3-ansible-lint: update to 6.0.0 jcgruenhage
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-15 10:37 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages python3-ansible-lint-6.0.0a1_1
https://github.com/void-linux/void-packages/pull/36131

WIP: python3-ansible-lint: update to 6.0.0a1.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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
-->

Marked as draft because it's a prerelease still, but considering after creating the package locally for testing, I thought I might as well push it already so that it doesn't get lost.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-ansible-lint-6.0.0a1_1-36131.patch --]
[-- Type: text/x-diff, Size: 5139 bytes --]

From eaddb9588ad1cdc9707bc3563bfaa2ac0cac9600 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:37:19 +0100
Subject: [PATCH 1/3] New package: python3-subprocess-tee-0.3.5

---
 srcpkgs/python3-subprocess-tee/template | 26 +++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/python3-subprocess-tee/template

diff --git a/srcpkgs/python3-subprocess-tee/template b/srcpkgs/python3-subprocess-tee/template
new file mode 100644
index 000000000000..39a0233dad70
--- /dev/null
+++ b/srcpkgs/python3-subprocess-tee/template
@@ -0,0 +1,26 @@
+# Template file for 'python3-subprocess-tee'
+pkgname=python3-subprocess-tee
+version=0.3.5
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="subprocess_tee-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3"
+short_desc="Replacement for subprocess.run capturing output while still printing it"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/pycontribs/subprocess-tee"
+distfiles="${PYPI_SITE}/s/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=ff5cced589a4b8ac973276ca1ba21bb6e3de600cde11a69947ff51f696efd577
+# requires molecule, which isn't packaged yet
+make_check=no
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 45461f9432f9293ce46b2d6aded831bb9371d3f8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:01 +0100
Subject: [PATCH 2/3] New package: python3-ansible-compat-2.0.0

---
 srcpkgs/python3-ansible-compat/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-ansible-compat/template

diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template
new file mode 100644
index 000000000000..bf03fe221d0a
--- /dev/null
+++ b/srcpkgs/python3-ansible-compat/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-ansible-compat'
+pkgname=python3-ansible-compat
+version=2.0.0
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="ansible_compat-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3-subprocess-tee"
+short_desc="Python package for working with various version of ansible"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/ansible-community/ansible-compat"
+distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=4027da4ec2b524c263a801cc2dc6da2b98c2996cec258cef118a30c790467ed2
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 0c75d278a2b9305cf0dbff5ea03adf5f1517cd29 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:12 +0100
Subject: [PATCH 3/3] python3-ansible-lint: update to 6.0.0.

---
 srcpkgs/python3-ansible-lint/template | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index 78d31ea90639..eaca94fbb9c7 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-ansible-lint'
 pkgname=python3-ansible-lint
-version=5.4.0
+version=6.0.0
 revision=1
 wrksrc="${pkgname/python3-/}-${version}"
 build_style=python3-pep517
 make_install_target="ansible_lint-${version}-py3-none-any.whl"
 hostmakedepends="python3-wheel python3-toml"
-depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch"
+depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch python3-ansible-compat"
 short_desc="Linter for Ansible files"
 maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
-license="MIT"
+license="GPL-3.0-only"
 homepage="https://github.com/ansible-community/ansible-lint"
 distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
-checksum=2160a60b4ab034c04006d701a1779340ffb0f6e28f030ff8de958e1062a88962
+checksum=8b24227dd778373ecc82fb8b15d796229665990a407112b3ec1086be24c1bead
 # Tests are currently broken for ansible on python 3.10
 # See https://github.com/ansible/ansible/issues/74658
 # and https://github.com/ansible/ansible/issues/74660
@@ -22,7 +22,3 @@ post_patch() {
 	# scm versioning is broken in this release
 	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
 }
-
-post_install() {
-	vlicense LICENSE
-}

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

* Re: [PR PATCH] [Updated] python3-ansible-lint: update to 6.0.0.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (3 preceding siblings ...)
  2022-03-15 10:37 ` [PR PATCH] [Updated] " jcgruenhage
@ 2022-03-24 16:16 ` jcgruenhage
  2022-03-24 22:24 ` [PR REVIEW] python3-ansible-lint: update to 6.0.2 paper42
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-24 16:16 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages python3-ansible-lint-6.0.0a1_1
https://github.com/void-linux/void-packages/pull/36131

python3-ansible-lint: update to 6.0.0.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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
-->

Marked as draft because it's a prerelease still, but considering after creating the package locally for testing, I thought I might as well push it already so that it doesn't get lost.

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-ansible-lint-6.0.0a1_1-36131.patch --]
[-- Type: text/x-diff, Size: 5139 bytes --]

From 1b7de47c7c195d98dc680cc95b777b2833d56837 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:37:19 +0100
Subject: [PATCH 1/3] New package: python3-subprocess-tee-0.3.5

---
 srcpkgs/python3-subprocess-tee/template | 26 +++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/python3-subprocess-tee/template

diff --git a/srcpkgs/python3-subprocess-tee/template b/srcpkgs/python3-subprocess-tee/template
new file mode 100644
index 000000000000..39a0233dad70
--- /dev/null
+++ b/srcpkgs/python3-subprocess-tee/template
@@ -0,0 +1,26 @@
+# Template file for 'python3-subprocess-tee'
+pkgname=python3-subprocess-tee
+version=0.3.5
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="subprocess_tee-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3"
+short_desc="Replacement for subprocess.run capturing output while still printing it"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/pycontribs/subprocess-tee"
+distfiles="${PYPI_SITE}/s/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=ff5cced589a4b8ac973276ca1ba21bb6e3de600cde11a69947ff51f696efd577
+# requires molecule, which isn't packaged yet
+make_check=no
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From fb55c17eedf267dc29447083225d71eaba350830 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:01 +0100
Subject: [PATCH 2/3] New package: python3-ansible-compat-2.0.0

---
 srcpkgs/python3-ansible-compat/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-ansible-compat/template

diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template
new file mode 100644
index 000000000000..bf03fe221d0a
--- /dev/null
+++ b/srcpkgs/python3-ansible-compat/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-ansible-compat'
+pkgname=python3-ansible-compat
+version=2.0.0
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="ansible_compat-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3-subprocess-tee"
+short_desc="Python package for working with various version of ansible"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/ansible-community/ansible-compat"
+distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=4027da4ec2b524c263a801cc2dc6da2b98c2996cec258cef118a30c790467ed2
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From f93a07377de22a574dad233c16ab2bb1d97201e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:12 +0100
Subject: [PATCH 3/3] python3-ansible-lint: update to 6.0.2.

---
 srcpkgs/python3-ansible-lint/template | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index 78d31ea90639..df9709c6d0df 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-ansible-lint'
 pkgname=python3-ansible-lint
-version=5.4.0
+version=6.0.2
 revision=1
 wrksrc="${pkgname/python3-/}-${version}"
 build_style=python3-pep517
 make_install_target="ansible_lint-${version}-py3-none-any.whl"
 hostmakedepends="python3-wheel python3-toml"
-depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch"
+depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch python3-ansible-compat"
 short_desc="Linter for Ansible files"
 maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
-license="MIT"
+license="GPL-3.0-only"
 homepage="https://github.com/ansible-community/ansible-lint"
 distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
-checksum=2160a60b4ab034c04006d701a1779340ffb0f6e28f030ff8de958e1062a88962
+checksum=b539bc22d13e6de0cc2e25758e1d28b2bc01561a414ae37ceda3708b5a2a79ed
 # Tests are currently broken for ansible on python 3.10
 # See https://github.com/ansible/ansible/issues/74658
 # and https://github.com/ansible/ansible/issues/74660
@@ -22,7 +22,3 @@ post_patch() {
 	# scm versioning is broken in this release
 	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
 }
-
-post_install() {
-	vlicense LICENSE
-}

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

* Re: [PR REVIEW] python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (4 preceding siblings ...)
  2022-03-24 16:16 ` [PR PATCH] [Updated] python3-ansible-lint: update to 6.0.0 jcgruenhage
@ 2022-03-24 22:24 ` paper42
  2022-03-24 22:25 ` paper42
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-03-24 22:24 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r834780245

Comment:
Could you leave this as a comment in the template, so if in the future someone is confused about this, they don't have to dig through all PRs?

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

* Re: [PR REVIEW] python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (5 preceding siblings ...)
  2022-03-24 22:24 ` [PR REVIEW] python3-ansible-lint: update to 6.0.2 paper42
@ 2022-03-24 22:25 ` paper42
  2022-03-25  9:33 ` [PR PATCH] [Updated] " jcgruenhage
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: paper42 @ 2022-03-24 22:25 UTC (permalink / raw)
  To: ml

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

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r834780571

Comment:
wrap at 80 columns

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

* Re: [PR PATCH] [Updated] python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (6 preceding siblings ...)
  2022-03-24 22:25 ` paper42
@ 2022-03-25  9:33 ` jcgruenhage
  2022-03-25  9:38 ` [PR REVIEW] " jcgruenhage
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-25  9:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jcgruenhage/void-packages python3-ansible-lint-6.0.0a1_1
https://github.com/void-linux/void-packages/pull/36131

python3-ansible-lint: update to 6.0.2.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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
-->

<del>Marked as draft because it's a prerelease still, but considering after creating the package locally for testing, I thought I might as well push it already so that it doesn't get lost.</del>

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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python3-ansible-lint-6.0.0a1_1-36131.patch --]
[-- Type: text/x-diff, Size: 5494 bytes --]

From ffc42e84906842030622ef14e6544dd846597220 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:37:19 +0100
Subject: [PATCH 1/3] New package: python3-subprocess-tee-0.3.5

---
 srcpkgs/python3-subprocess-tee/template | 26 +++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100644 srcpkgs/python3-subprocess-tee/template

diff --git a/srcpkgs/python3-subprocess-tee/template b/srcpkgs/python3-subprocess-tee/template
new file mode 100644
index 000000000000..39a0233dad70
--- /dev/null
+++ b/srcpkgs/python3-subprocess-tee/template
@@ -0,0 +1,26 @@
+# Template file for 'python3-subprocess-tee'
+pkgname=python3-subprocess-tee
+version=0.3.5
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="subprocess_tee-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3"
+short_desc="Replacement for subprocess.run capturing output while still printing it"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/pycontribs/subprocess-tee"
+distfiles="${PYPI_SITE}/s/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=ff5cced589a4b8ac973276ca1ba21bb6e3de600cde11a69947ff51f696efd577
+# requires molecule, which isn't packaged yet
+make_check=no
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 7d6929c3caf70888ed83cb7b6b2a6061343faf04 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:01 +0100
Subject: [PATCH 2/3] New package: python3-ansible-compat-2.0.0

---
 srcpkgs/python3-ansible-compat/template | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 srcpkgs/python3-ansible-compat/template

diff --git a/srcpkgs/python3-ansible-compat/template b/srcpkgs/python3-ansible-compat/template
new file mode 100644
index 000000000000..bf03fe221d0a
--- /dev/null
+++ b/srcpkgs/python3-ansible-compat/template
@@ -0,0 +1,24 @@
+# Template file for 'python3-ansible-compat'
+pkgname=python3-ansible-compat
+version=2.0.0
+revision=1
+wrksrc="${pkgname/python3-/}-${version}"
+build_style=python3-pep517
+make_install_target="ansible_compat-${version}-py3-none-any.whl"
+hostmakedepends="python3-wheel python3-toml"
+depends="python3-subprocess-tee"
+short_desc="Python package for working with various version of ansible"
+maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
+license="MIT"
+homepage="https://github.com/ansible-community/ansible-compat"
+distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
+checksum=4027da4ec2b524c263a801cc2dc6da2b98c2996cec258cef118a30c790467ed2
+
+post_patch() {
+	# scm versioning is broken in this release
+	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
+}
+
+post_install() {
+	vlicense LICENSE
+}

From 0ec553b5b67dfaf0fc81a34aae0d5f59a1d9439e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jan=20Christian=20Gr=C3=BCnhage?=
 <jan.christian@gruenhage.xyz>
Date: Mon, 14 Mar 2022 08:38:12 +0100
Subject: [PATCH 3/3] python3-ansible-lint: update to 6.0.2.

---
 srcpkgs/python3-ansible-lint/template | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index 78d31ea90639..00d8dc40f6a6 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -1,18 +1,25 @@
 # Template file for 'python3-ansible-lint'
 pkgname=python3-ansible-lint
-version=5.4.0
+version=6.0.2
 revision=1
 wrksrc="${pkgname/python3-/}-${version}"
 build_style=python3-pep517
 make_install_target="ansible_lint-${version}-py3-none-any.whl"
 hostmakedepends="python3-wheel python3-toml"
-depends="ansible-core python3-yamllint python3-six python3-yaml python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch"
+depends="ansible-core python3-yamllint python3-six python3-yaml
+ python3-ruamel.yaml python3-tenacity python3-enrich python3-wcmatch
+ python3-ansible-compat"
 short_desc="Linter for Ansible files"
 maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
-license="MIT"
+# Note about licensing from upstream:
+# The ansible-lint project is distributed as GPLv3 due to use of GPLv3 runtime
+# dependencies, like ansible and yamllint. For historical reasons, its own
+# code-base remains licensed under a more liberal MIT license and any
+# contributions made are accepted as being made under original MIT license.
+license="GPL-3.0-only"
 homepage="https://github.com/ansible-community/ansible-lint"
 distfiles="${PYPI_SITE}/a/${pkgname/python3-/}/${pkgname/python3-/}-${version}.tar.gz"
-checksum=2160a60b4ab034c04006d701a1779340ffb0f6e28f030ff8de958e1062a88962
+checksum=b539bc22d13e6de0cc2e25758e1d28b2bc01561a414ae37ceda3708b5a2a79ed
 # Tests are currently broken for ansible on python 3.10
 # See https://github.com/ansible/ansible/issues/74658
 # and https://github.com/ansible/ansible/issues/74660
@@ -22,7 +29,3 @@ post_patch() {
 	# scm versioning is broken in this release
 	vsed -e "/name =/a version = ${version}" -e "/setuptools_scm/d" -i setup.cfg
 }
-
-post_install() {
-	vlicense LICENSE
-}

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

* Re: [PR REVIEW] python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (7 preceding siblings ...)
  2022-03-25  9:33 ` [PR PATCH] [Updated] " jcgruenhage
@ 2022-03-25  9:38 ` jcgruenhage
  2022-03-25  9:39 ` jcgruenhage
  2022-04-07 16:54 ` [PR PATCH] [Merged]: " leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-25  9:38 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r835103342

Comment:
done

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

* Re: [PR REVIEW] python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (8 preceding siblings ...)
  2022-03-25  9:38 ` [PR REVIEW] " jcgruenhage
@ 2022-03-25  9:39 ` jcgruenhage
  2022-04-07 16:54 ` [PR PATCH] [Merged]: " leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: jcgruenhage @ 2022-03-25  9:39 UTC (permalink / raw)
  To: ml

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

New review comment by jcgruenhage on void-packages repository

https://github.com/void-linux/void-packages/pull/36131#discussion_r835103498

Comment:
done


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

* Re: [PR PATCH] [Merged]: python3-ansible-lint: update to 6.0.2.
  2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
                   ` (9 preceding siblings ...)
  2022-03-25  9:39 ` jcgruenhage
@ 2022-04-07 16:54 ` leahneukirchen
  10 siblings, 0 replies; 12+ messages in thread
From: leahneukirchen @ 2022-04-07 16:54 UTC (permalink / raw)
  To: ml

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

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

python3-ansible-lint: update to 6.0.2.
https://github.com/void-linux/void-packages/pull/36131

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

<!--
#### New package
- This new package conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please [skip CI](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
-->

<del>Marked as draft because it's a prerelease still, but considering after creating the package locally for testing, I thought I might as well push it already so that it doesn't get lost.</del>

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

end of thread, other threads:[~2022-04-07 16:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-14  7:44 [PR PATCH] WIP: python3-ansible-lint: update to 6.0.0a1 jcgruenhage
2022-03-14  7:49 ` [PR REVIEW] " jcgruenhage
2022-03-14  7:50 ` jcgruenhage
2022-03-14  8:15 ` ssbarnea
2022-03-15 10:37 ` [PR PATCH] [Updated] " jcgruenhage
2022-03-24 16:16 ` [PR PATCH] [Updated] python3-ansible-lint: update to 6.0.0 jcgruenhage
2022-03-24 22:24 ` [PR REVIEW] python3-ansible-lint: update to 6.0.2 paper42
2022-03-24 22:25 ` paper42
2022-03-25  9:33 ` [PR PATCH] [Updated] " jcgruenhage
2022-03-25  9:38 ` [PR REVIEW] " jcgruenhage
2022-03-25  9:39 ` jcgruenhage
2022-04-07 16:54 ` [PR PATCH] [Merged]: " leahneukirchen

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).