Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-sqlparse: update to 0.4.3.
@ 2023-03-30 21:48 TinfoilSubmarine
  2023-03-30 21:53 ` [PR PATCH] [Updated] " TinfoilSubmarine
                   ` (15 more replies)
  0 siblings, 16 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-03-30 21:48 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 2793 bytes --]

From 6376f5b184bb42bce4b60926f7facbe7a402b43f Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH] python3-sqlparse: update to 0.4.3.

---
 srcpkgs/python-sqlparse/template  | 18 +++---------------
 srcpkgs/python3-sqlparse          |  1 -
 srcpkgs/python3-sqlparse/template | 21 +++++++++++++++++++++
 3 files changed, 24 insertions(+), 16 deletions(-)
 delete mode 120000 srcpkgs/python3-sqlparse
 create mode 100644 srcpkgs/python3-sqlparse/template

diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 791f925cac92..3495bd07706d 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,9 +2,8 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=6
-build_style=python-module
-pycompile_module="sqlparse"
-hostmakedepends="python-setuptools python3-setuptools"
+build_style=python2-module
+hostmakedepends="python-setuptools"
 depends="python-setuptools"
 short_desc="Non-validating SQL parser for Python2"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -15,17 +14,6 @@ checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat2"
 
 post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,2}
 	vlicense LICENSE
 }
-
-python3-sqlparse_package() {
-	depends="python3-setuptools"
-	pycompile_module="sqlparse"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-	pkg_install() {
-		vmove usr/bin/sqlformat3
-		vmove usr/lib/python3*
-		vlicense LICENSE
-	}
-}
diff --git a/srcpkgs/python3-sqlparse b/srcpkgs/python3-sqlparse
deleted file mode 120000
index c99cce656dc2..000000000000
--- a/srcpkgs/python3-sqlparse
+++ /dev/null
@@ -1 +0,0 @@
-python-sqlparse
\ No newline at end of file
diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
new file mode 100644
index 000000000000..d547f7d8b1e0
--- /dev/null
+++ b/srcpkgs/python3-sqlparse/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-sqlparse'
+pkgname=python3-sqlparse
+version=0.4.3
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest"
+short_desc="Non-validating SQL parser for Python3"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
+distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
+checksum=69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268
+alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
+
+post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,3}
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
@ 2023-03-30 21:53 ` TinfoilSubmarine
  2023-03-31  2:33 ` TinfoilSubmarine
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-03-30 21:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 3825 bytes --]

From 6376f5b184bb42bce4b60926f7facbe7a402b43f Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/2] python3-sqlparse: update to 0.4.3.

---
 srcpkgs/python-sqlparse/template  | 18 +++---------------
 srcpkgs/python3-sqlparse          |  1 -
 srcpkgs/python3-sqlparse/template | 21 +++++++++++++++++++++
 3 files changed, 24 insertions(+), 16 deletions(-)
 delete mode 120000 srcpkgs/python3-sqlparse
 create mode 100644 srcpkgs/python3-sqlparse/template

diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 791f925cac92..3495bd07706d 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,9 +2,8 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=6
-build_style=python-module
-pycompile_module="sqlparse"
-hostmakedepends="python-setuptools python3-setuptools"
+build_style=python2-module
+hostmakedepends="python-setuptools"
 depends="python-setuptools"
 short_desc="Non-validating SQL parser for Python2"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -15,17 +14,6 @@ checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat2"
 
 post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,2}
 	vlicense LICENSE
 }
-
-python3-sqlparse_package() {
-	depends="python3-setuptools"
-	pycompile_module="sqlparse"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-	pkg_install() {
-		vmove usr/bin/sqlformat3
-		vmove usr/lib/python3*
-		vlicense LICENSE
-	}
-}
diff --git a/srcpkgs/python3-sqlparse b/srcpkgs/python3-sqlparse
deleted file mode 120000
index c99cce656dc2..000000000000
--- a/srcpkgs/python3-sqlparse
+++ /dev/null
@@ -1 +0,0 @@
-python-sqlparse
\ No newline at end of file
diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
new file mode 100644
index 000000000000..d547f7d8b1e0
--- /dev/null
+++ b/srcpkgs/python3-sqlparse/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-sqlparse'
+pkgname=python3-sqlparse
+version=0.4.3
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest"
+short_desc="Non-validating SQL parser for Python3"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
+distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
+checksum=69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268
+alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
+
+post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,3}
+	vlicense LICENSE
+}

From 15df69b86e20f94f37da106903625d649f34d7a2 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/2] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
  2023-03-30 21:53 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2023-03-31  2:33 ` TinfoilSubmarine
  2023-03-31 13:25 ` TinfoilSubmarine
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-03-31  2:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 4794 bytes --]

From da7bdcf7d9159061340662c254aecd4c23f79748 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.3.

---
 srcpkgs/python-sqlparse/template  | 18 +++---------------
 srcpkgs/python3-sqlparse          |  1 -
 srcpkgs/python3-sqlparse/template | 21 +++++++++++++++++++++
 3 files changed, 24 insertions(+), 16 deletions(-)
 delete mode 120000 srcpkgs/python3-sqlparse
 create mode 100644 srcpkgs/python3-sqlparse/template

diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 791f925cac92..3495bd07706d 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,9 +2,8 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=6
-build_style=python-module
-pycompile_module="sqlparse"
-hostmakedepends="python-setuptools python3-setuptools"
+build_style=python2-module
+hostmakedepends="python-setuptools"
 depends="python-setuptools"
 short_desc="Non-validating SQL parser for Python2"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -15,17 +14,6 @@ checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat2"
 
 post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,2}
 	vlicense LICENSE
 }
-
-python3-sqlparse_package() {
-	depends="python3-setuptools"
-	pycompile_module="sqlparse"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-	pkg_install() {
-		vmove usr/bin/sqlformat3
-		vmove usr/lib/python3*
-		vlicense LICENSE
-	}
-}
diff --git a/srcpkgs/python3-sqlparse b/srcpkgs/python3-sqlparse
deleted file mode 120000
index c99cce656dc2..000000000000
--- a/srcpkgs/python3-sqlparse
+++ /dev/null
@@ -1 +0,0 @@
-python-sqlparse
\ No newline at end of file
diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
new file mode 100644
index 000000000000..d547f7d8b1e0
--- /dev/null
+++ b/srcpkgs/python3-sqlparse/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-sqlparse'
+pkgname=python3-sqlparse
+version=0.4.3
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest"
+short_desc="Non-validating SQL parser for Python3"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
+distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
+checksum=69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268
+alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
+
+post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,3}
+	vlicense LICENSE
+}

From 17d4aceb33bcf17a4e0849aa7e6cb84d3b8c17cc Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From 96bae05baf5f17fa32837f6210cd93c500254dde Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 22:32:13 -0400
Subject: [PATCH 3/3] python3-yoyo-migrations: depend on python3-setuptools.

---
 srcpkgs/python3-yoyo-migrations/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-yoyo-migrations/template b/srcpkgs/python3-yoyo-migrations/template
index bb9826beae2b..b2b046a57a17 100644
--- a/srcpkgs/python3-yoyo-migrations/template
+++ b/srcpkgs/python3-yoyo-migrations/template
@@ -1,10 +1,10 @@
 # Template file for 'python3-yoyo-migrations'
 pkgname=python3-yoyo-migrations
 version=7.3.2
-revision=3
+revision=4
 build_style=python3-module
 hostmakedepends="python3-setuptools"
-depends="python3-sqlparse"
+depends="python3-sqlparse python3-setuptools"
 short_desc="Database migrations with SQL"
 maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
 license="Apache-2.0"

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
  2023-03-30 21:53 ` [PR PATCH] [Updated] " TinfoilSubmarine
  2023-03-31  2:33 ` TinfoilSubmarine
@ 2023-03-31 13:25 ` TinfoilSubmarine
  2023-03-31 13:26 ` TinfoilSubmarine
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-03-31 13:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 8353 bytes --]

From f0644380fd989f3c04dfdf3f9ea3f2dc76009bf0 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/4] python3-sqlparse: update to 0.4.3.

---
 srcpkgs/python-sqlparse/template  | 18 +++---------------
 srcpkgs/python3-sqlparse          |  1 -
 srcpkgs/python3-sqlparse/template | 21 +++++++++++++++++++++
 3 files changed, 24 insertions(+), 16 deletions(-)
 delete mode 120000 srcpkgs/python3-sqlparse
 create mode 100644 srcpkgs/python3-sqlparse/template

diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 791f925cac92..3495bd07706d 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,9 +2,8 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=6
-build_style=python-module
-pycompile_module="sqlparse"
-hostmakedepends="python-setuptools python3-setuptools"
+build_style=python2-module
+hostmakedepends="python-setuptools"
 depends="python-setuptools"
 short_desc="Non-validating SQL parser for Python2"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -15,17 +14,6 @@ checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat2"
 
 post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,2}
 	vlicense LICENSE
 }
-
-python3-sqlparse_package() {
-	depends="python3-setuptools"
-	pycompile_module="sqlparse"
-	short_desc="${short_desc/Python2/Python3}"
-	alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-	pkg_install() {
-		vmove usr/bin/sqlformat3
-		vmove usr/lib/python3*
-		vlicense LICENSE
-	}
-}
diff --git a/srcpkgs/python3-sqlparse b/srcpkgs/python3-sqlparse
deleted file mode 120000
index c99cce656dc2..000000000000
--- a/srcpkgs/python3-sqlparse
+++ /dev/null
@@ -1 +0,0 @@
-python-sqlparse
\ No newline at end of file
diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
new file mode 100644
index 000000000000..d547f7d8b1e0
--- /dev/null
+++ b/srcpkgs/python3-sqlparse/template
@@ -0,0 +1,21 @@
+# Template file for 'python3-sqlparse'
+pkgname=python3-sqlparse
+version=0.4.3
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools"
+depends="python3"
+checkdepends="python3-pytest"
+short_desc="Non-validating SQL parser for Python3"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="BSD-3-Clause"
+homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
+distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
+checksum=69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268
+alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
+
+post_install() {
+	mv "$DESTDIR"/usr/bin/sqlformat{,3}
+	vlicense LICENSE
+}

From 004eb0a682a26d9a38b0a0dd34258a42d65184ee Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/4] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From c36c764f330045face151debde9c7c12799db6b7 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 22:32:13 -0400
Subject: [PATCH 3/4] python3-yoyo-migrations: depend on python3-setuptools.

---
 srcpkgs/python3-yoyo-migrations/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-yoyo-migrations/template b/srcpkgs/python3-yoyo-migrations/template
index bb9826beae2b..b2b046a57a17 100644
--- a/srcpkgs/python3-yoyo-migrations/template
+++ b/srcpkgs/python3-yoyo-migrations/template
@@ -1,10 +1,10 @@
 # Template file for 'python3-yoyo-migrations'
 pkgname=python3-yoyo-migrations
 version=7.3.2
-revision=3
+revision=4
 build_style=python3-module
 hostmakedepends="python3-setuptools"
-depends="python3-sqlparse"
+depends="python3-sqlparse python3-setuptools"
 short_desc="Database migrations with SQL"
 maintainer="Đoàn Trần Công Danh <congdanhqx@gmail.com>"
 license="Apache-2.0"

From 9cf524774eba1328337a6ccaee660eba754b268d Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 4/4] python3-sqlalchemy-migrate: update to 0.13.0.

---
 srcpkgs/python-sqlalchemy-migrate/template  | 25 +++++----------------
 srcpkgs/python3-sqlalchemy-migrate          |  1 -
 srcpkgs/python3-sqlalchemy-migrate/template | 25 +++++++++++++++++++++
 3 files changed, 31 insertions(+), 20 deletions(-)
 delete mode 120000 srcpkgs/python3-sqlalchemy-migrate
 create mode 100644 srcpkgs/python3-sqlalchemy-migrate/template

diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index 79f58e86ffed..35022fbd179d 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,10 +2,10 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=6
-build_style=python-module
-pycompile_module="migrate"
-hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
-depends="python-pbr python-SQLAlchemy python-decorator python-six python-sqlparse python-tempita"
+build_style=python2-module
+hostmakedepends="python-setuptools python-pbr"
+depends="python-pbr python-SQLAlchemy python-decorator python-six
+ python-sqlparse python-tempita"
 short_desc="Database schema migration for SQLAlchemy (Python2)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
@@ -18,20 +18,7 @@ alternatives="
  migrate:migrate:/usr/bin/migrate2"
 
 post_install() {
+	mv "$DESTDIR"/usr/bin/migrate{,2}
+	mv "$DESTDIR"/usr/bin/migrate-repository{,2}
 	vlicense COPYING LICENSE
 }
-
-python3-sqlalchemy-migrate_package() {
-	alternatives="
-	 migrate:migrate-repository:/usr/bin/migrate-repository3
-	 migrate:migrate:/usr/bin/migrate3"
-	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
-	 python3-sqlparse python3-tempita"
-	pycompile_module="migrate"
-	short_desc="${short_desc/Python2/Python3}"
-	pkg_install() {
-		vmove usr/bin/*3
-		vmove usr/lib/python3*
-		vlicense COPYING LICENSE
-	}
-}
diff --git a/srcpkgs/python3-sqlalchemy-migrate b/srcpkgs/python3-sqlalchemy-migrate
deleted file mode 120000
index b984188f6331..000000000000
--- a/srcpkgs/python3-sqlalchemy-migrate
+++ /dev/null
@@ -1 +0,0 @@
-python-sqlalchemy-migrate
\ No newline at end of file
diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
new file mode 100644
index 000000000000..1a0f5bbe3318
--- /dev/null
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -0,0 +1,25 @@
+# Template file for 'python3-sqlalchemy-migrate'
+pkgname=python3-sqlalchemy-migrate
+version=0.13.0
+revision=1
+build_style=python3-module
+hostmakedepends="python3-setuptools python3-pbr"
+depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
+ python3-sqlparse python3-tempita python3-setuptools"
+short_desc="Database schema migration for SQLAlchemy (Python3)"
+maintainer="Orphaned <orphan@voidlinux.org>"
+license="MIT"
+homepage="https://github.com/stackforge/sqlalchemy-migrate"
+distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
+make_check=no # requires unpackaged module scripttest
+
+alternatives="
+ migrate:migrate-repository:/usr/bin/migrate-repository3
+ migrate:migrate:/usr/bin/migrate3"
+
+post_install() {
+	mv "$DESTDIR"/usr/bin/migrate{,3}
+	mv "$DESTDIR"/usr/bin/migrate-repository{,3}
+	vlicense COPYING LICENSE
+}

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

* Re: python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (2 preceding siblings ...)
  2023-03-31 13:25 ` TinfoilSubmarine
@ 2023-03-31 13:26 ` TinfoilSubmarine
  2023-06-23 20:49 ` [PR PATCH] [Updated] " TinfoilSubmarine
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-03-31 13:26 UTC (permalink / raw)
  To: ml

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

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/43125#issuecomment-1491924953

Comment:
Should be good to go on this one, I was making sure that all of the dependents that required `pkg_resources` had `python3-setuptools` explicitly included in their dependencies.

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (3 preceding siblings ...)
  2023-03-31 13:26 ` TinfoilSubmarine
@ 2023-06-23 20:49 ` TinfoilSubmarine
  2023-06-26 12:46 ` TinfoilSubmarine
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-06-23 20:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 4059 bytes --]

From 50a0dc840c69fbda3ebee996914ca0686df3b632 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.3.

---
 srcpkgs/python3-sqlparse/template | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..7fdd57744603 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
+version=0.4.3
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=69ca804846bb114d2ec380e4360a8a340db83f0ccf3afceeb1404df028f57268
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From 74f4993beaf63ff0ebe87de56867d987ce81d80f Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From ef49c3a14560494b28cffed798734665f5e3634d Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: update to 0.13.0.

---
 srcpkgs/python3-sqlalchemy-migrate/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..c189848a57a7 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
-version=0.12.0
-revision=6
+version=0.13.0
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
+ python3-sqlparse python3-tempita python3-setuptools"
 checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://github.com/stackforge/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
-checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
 make_check=no # tests need a specific version of testtools
 
 alternatives="

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (4 preceding siblings ...)
  2023-06-23 20:49 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2023-06-26 12:46 ` TinfoilSubmarine
  2023-06-27 12:33 ` TinfoilSubmarine
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-06-26 12:46 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 4343 bytes --]

From ad9f83397a387c2b2996f79cd2ced7a5aebbc689 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..80000e7871f5 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From 33aa7d2ba870dd1cce992c9a40515fb38ff2cfd8 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From b9fc3e81255416a0ee08f198f74599736e2837d8 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: update to 0.13.0.

---
 srcpkgs/python3-sqlalchemy-migrate/template | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..0afd36e1681b 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
-version=0.12.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-pbr"
+version=0.13.0
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-pbr python3-wheel"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
-checkdepends="python3-pytest python3-testtools ${depends}"
+ python3-sqlparse python3-tempita python3-setuptools"
+#checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
-homepage="https://github.com/stackforge/sqlalchemy-migrate"
+homepage="https://opendev.org/x/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
-checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
 make_check=no # tests need a specific version of testtools
 
 alternatives="

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.3.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (5 preceding siblings ...)
  2023-06-26 12:46 ` TinfoilSubmarine
@ 2023-06-27 12:33 ` TinfoilSubmarine
  2023-06-27 12:36 ` python3-sqlparse: update to 0.4.4 TinfoilSubmarine
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-06-27 12:33 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.3.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 4184 bytes --]

From c427188c4ba6cfb36530bb054435ffea778e5333 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..80000e7871f5 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From 390043f3b080e6f46c50e5b1ea79170c26e26846 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From ad5a61a64a083731a65709db5cf470ec910b04b1 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: update to 0.13.0.

---
 srcpkgs/python3-sqlalchemy-migrate/template | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..3f350e2a6781 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
-version=0.12.0
-revision=6
+version=0.13.0
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
+ python3-sqlparse python3-tempita python3-setuptools"
 checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
-homepage="https://github.com/stackforge/sqlalchemy-migrate"
+homepage="https://opendev.org/x/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
-checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
 make_check=no # tests need a specific version of testtools
 
 alternatives="

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

* Re: python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (6 preceding siblings ...)
  2023-06-27 12:33 ` TinfoilSubmarine
@ 2023-06-27 12:36 ` TinfoilSubmarine
  2023-07-13 16:56 ` [PR PATCH] [Updated] " TinfoilSubmarine
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-06-27 12:36 UTC (permalink / raw)
  To: ml

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

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/43125#issuecomment-1609418061

Comment:
Anyone have any ideas on why `python3-sqlalchemy-migrate` is succeeding build locally but failing here?
[python3-sqlalchemy-migrate.build.log](https://github.com/void-linux/void-packages/files/11882102/python3-sqlalchemy-migrate.build.log)


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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (7 preceding siblings ...)
  2023-06-27 12:36 ` python3-sqlparse: update to 0.4.4 TinfoilSubmarine
@ 2023-07-13 16:56 ` TinfoilSubmarine
  2023-07-13 17:02 ` TinfoilSubmarine
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-07-13 16:56 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.4.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 4082 bytes --]

From 499b1ddcdea42b1ca3382d15153a6407987217d0 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..80000e7871f5 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From 4724cc759c46ca9867d01da2290d6825df281f27 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From 3c3d62a9f849cf70793c7eae5c2949f4c23a5d75 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: depend on python3-setuptools.

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

diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..58cbcbf0da31 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,16 +1,16 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
 version=0.12.0
-revision=6
+revision=7
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
+ python3-sqlparse python3-tempita python3-setuptools"
 checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
-homepage="https://github.com/stackforge/sqlalchemy-migrate"
+homepage="https://opendev.org/x/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
 checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
 make_check=no # tests need a specific version of testtools

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (8 preceding siblings ...)
  2023-07-13 16:56 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2023-07-13 17:02 ` TinfoilSubmarine
  2023-07-13 17:27 ` TinfoilSubmarine
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-07-13 17:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.4.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 5218 bytes --]

From 499b1ddcdea42b1ca3382d15153a6407987217d0 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..80000e7871f5 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From 4724cc759c46ca9867d01da2290d6825df281f27 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From 6dd0033b6f751d97657b2108f7d919596b360757 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: update to 0.13.0.

---
 .../patches/versionspec.patch                       | 13 +++++++++++++
 srcpkgs/python3-sqlalchemy-migrate/template         | 10 +++++-----
 2 files changed, 18 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch

diff --git a/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch b/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch
new file mode 100644
index 000000000000..3dc56d64e4f6
--- /dev/null
+++ b/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch
@@ -0,0 +1,13 @@
+error in setup command: 'tests_require' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier)
+    pytz>=2010h
+        ~~~~~~^
+diff --git a/test-requirements.txt b/test-requirements.txt
+index bc8d8d2..f997bf9 100644
+--- a/test-requirements.txt
++++ b/test-requirements.txt
+@@ -27,4 +27,4 @@ scripttest
+ # NOTE(rpodolyaka): This version identifier is currently necessary as
+ #                   pytz otherwise does not install on pip 1.4 or higher
+ pylint
+-pytz>=2010h
++pytz>=2010
diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..3f350e2a6781 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
-version=0.12.0
-revision=6
+version=0.13.0
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
+ python3-sqlparse python3-tempita python3-setuptools"
 checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
-homepage="https://github.com/stackforge/sqlalchemy-migrate"
+homepage="https://opendev.org/x/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
-checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
 make_check=no # tests need a specific version of testtools
 
 alternatives="

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (9 preceding siblings ...)
  2023-07-13 17:02 ` TinfoilSubmarine
@ 2023-07-13 17:27 ` TinfoilSubmarine
  2023-07-13 17:31 ` TinfoilSubmarine
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-07-13 17:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.4.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 6237 bytes --]

From 521feee55f0ae5c73a56a5b9d67f5ee26f05a5c2 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/3] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index 268097f90641..80000e7871f5 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=6
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From f851e97b606be43961d13415a64263540c09ab8b Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/3] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index db228c7c00d9..269222b28d3b 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -1,12 +1,12 @@
 # Template file for 'pgcli'
 pkgname=pgcli
 version=3.5.0
-revision=2
+revision=3
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

From 4195ff06b006c625908a740d7fd4750ed19fe994 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 31 Mar 2023 08:34:56 -0400
Subject: [PATCH 3/3] python3-sqlalchemy-migrate: update to 0.13.0.

---
 .../patches/argspec.patch                           | 13 +++++++++++++
 .../patches/versionspec.patch                       | 13 +++++++++++++
 srcpkgs/python3-sqlalchemy-migrate/template         | 10 +++++-----
 3 files changed, 31 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/python3-sqlalchemy-migrate/patches/argspec.patch
 create mode 100644 srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch

diff --git a/srcpkgs/python3-sqlalchemy-migrate/patches/argspec.patch b/srcpkgs/python3-sqlalchemy-migrate/patches/argspec.patch
new file mode 100644
index 000000000000..c8e201b0ca6d
--- /dev/null
+++ b/srcpkgs/python3-sqlalchemy-migrate/patches/argspec.patch
@@ -0,0 +1,13 @@
+diff --git a/migrate/versioning/shell.py b/migrate/versioning/shell.py
+index 5fb86b1..fae0ce4 100644
+--- a/migrate/versioning/shell.py
++++ b/migrate/versioning/shell.py
+@@ -108,7 +108,7 @@ def main(argv=None, **kwargs):
+         parser.error("Invalid command %s" % command)
+ 
+     parser.set_usage(inspect.getdoc(command_func))
+-    f_args, f_varargs, f_kwargs, f_defaults = inspect.getargspec(command_func)
++    f_args, f_varargs, f_kwargs, f_defaults, _, _, _ = inspect.getfullargspec(command_func)
+     for arg in f_args:
+         parser.add_option(
+             "--%s" % arg,
diff --git a/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch b/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch
new file mode 100644
index 000000000000..3dc56d64e4f6
--- /dev/null
+++ b/srcpkgs/python3-sqlalchemy-migrate/patches/versionspec.patch
@@ -0,0 +1,13 @@
+error in setup command: 'tests_require' must be a string or list of strings containing valid project/version requirement specifiers; Expected end or semicolon (after version specifier)
+    pytz>=2010h
+        ~~~~~~^
+diff --git a/test-requirements.txt b/test-requirements.txt
+index bc8d8d2..f997bf9 100644
+--- a/test-requirements.txt
++++ b/test-requirements.txt
+@@ -27,4 +27,4 @@ scripttest
+ # NOTE(rpodolyaka): This version identifier is currently necessary as
+ #                   pytz otherwise does not install on pip 1.4 or higher
+ pylint
+-pytz>=2010h
++pytz>=2010
diff --git a/srcpkgs/python3-sqlalchemy-migrate/template b/srcpkgs/python3-sqlalchemy-migrate/template
index aba3c5e56f00..3f350e2a6781 100644
--- a/srcpkgs/python3-sqlalchemy-migrate/template
+++ b/srcpkgs/python3-sqlalchemy-migrate/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-sqlalchemy-migrate'
 pkgname=python3-sqlalchemy-migrate
-version=0.12.0
-revision=6
+version=0.13.0
+revision=1
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
- python3-sqlparse python3-tempita"
+ python3-sqlparse python3-tempita python3-setuptools"
 checkdepends="python3-pytest python3-testtools ${depends}"
 short_desc="Database schema migration for SQLAlchemy (Python3)"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
-homepage="https://github.com/stackforge/sqlalchemy-migrate"
+homepage="https://opendev.org/x/sqlalchemy-migrate"
 distfiles="${PYPI_SITE}/s/sqlalchemy-migrate/sqlalchemy-migrate-${version}.tar.gz"
-checksum=8cfada30bbcf79a83b3a2d1bcd637de7e1f43e390d54de33e4f3249fd9aacfae
+checksum=0bc02e292a040ade5e35a01d3ea744119e1309cdddb704fdb99bac13236614f8
 make_check=no # tests need a specific version of testtools
 
 alternatives="

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

* Re: python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (10 preceding siblings ...)
  2023-07-13 17:27 ` TinfoilSubmarine
@ 2023-07-13 17:31 ` TinfoilSubmarine
  2023-10-12  1:44 ` github-actions
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-07-13 17:31 UTC (permalink / raw)
  To: ml

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

New comment by TinfoilSubmarine on void-packages repository

https://github.com/void-linux/void-packages/pull/43125#issuecomment-1634635807

Comment:
Alright, finally got back to this. Everything should be good to go.

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

* Re: python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (11 preceding siblings ...)
  2023-07-13 17:31 ` TinfoilSubmarine
@ 2023-10-12  1:44 ` github-actions
  2023-10-13  1:09 ` [PR PATCH] [Updated] " TinfoilSubmarine
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2023-10-12  1:44 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43125#issuecomment-1758784518

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Updated] python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (12 preceding siblings ...)
  2023-10-12  1:44 ` github-actions
@ 2023-10-13  1:09 ` TinfoilSubmarine
  2024-01-11  1:46 ` github-actions
  2024-01-25  1:48 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: TinfoilSubmarine @ 2023-10-13  1:09 UTC (permalink / raw)
  To: ml

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

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

https://github.com/TinfoilSubmarine/void-packages update/python3-sqlparse
https://github.com/void-linux/void-packages/pull/43125

python3-sqlparse: update to 0.4.4.
<!-- 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 [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/43125.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/python3-sqlparse-43125.patch --]
[-- Type: text/x-diff, Size: 2509 bytes --]

From 2b6aadff4df79b6c47af205528af9b51708d7789 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:37:28 -0400
Subject: [PATCH 1/2] python3-sqlparse: update to 0.4.4.

---
 srcpkgs/python3-sqlparse/template | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/srcpkgs/python3-sqlparse/template b/srcpkgs/python3-sqlparse/template
index b4024430ad092..80000e7871f50 100644
--- a/srcpkgs/python3-sqlparse/template
+++ b/srcpkgs/python3-sqlparse/template
@@ -1,21 +1,19 @@
 # Template file for 'python3-sqlparse'
 pkgname=python3-sqlparse
-version=0.3.0
-revision=7
-build_style=python3-module
-hostmakedepends="python3-setuptools"
-depends="python3-setuptools"
+version=0.4.4
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-flit_core"
+depends="python3"
 checkdepends="python3-pytest"
 short_desc="Non-validating SQL parser for Python3"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD-3-Clause"
 homepage="https://github.com/andialbrecht/sqlparse"
+changelog="https://raw.githubusercontent.com/andialbrecht/sqlparse/master/CHANGELOG"
 distfiles="${PYPI_SITE}/s/sqlparse/sqlparse-${version}.tar.gz"
-checksum=7c3dca29c022744e95b547e867cee89f4fce4373f3549ccd8797d8eb52cdb873
+checksum=d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c
 alternatives="sqlparse:sqlformat:/usr/bin/sqlformat3"
-# sys.stdout.encoding = 'utf-8' AttributeError: readonly attribute
-# will be fixed in 0.4.0
-make_check=no
 
 post_install() {
 	mv ${DESTDIR}/usr/bin/sqlformat{,3}

From bbf34ecf0df9908123fff2d1fd96f4d779a70501 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Thu, 30 Mar 2023 17:52:46 -0400
Subject: [PATCH 2/2] pgcli: depend on python3-setuptools.

---
 srcpkgs/pgcli/template | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index f56a0dde7fe59..269222b28d3b9 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -6,7 +6,7 @@ build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
  python3-psycopg python3-sqlparse python3-configobj python3-pendulum
- python3-cli_helpers python3-setproctitle"
+ python3-cli_helpers python3-setproctitle python3-setuptools"
 short_desc="PostgreSQL CLI with autocompletion and syntax highlighting"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="BSD-3-Clause"

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

* Re: python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (13 preceding siblings ...)
  2023-10-13  1:09 ` [PR PATCH] [Updated] " TinfoilSubmarine
@ 2024-01-11  1:46 ` github-actions
  2024-01-25  1:48 ` [PR PATCH] [Closed]: " github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2024-01-11  1:46 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/43125#issuecomment-1886064778

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: [PR PATCH] [Closed]: python3-sqlparse: update to 0.4.4.
  2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
                   ` (14 preceding siblings ...)
  2024-01-11  1:46 ` github-actions
@ 2024-01-25  1:48 ` github-actions
  15 siblings, 0 replies; 17+ messages in thread
From: github-actions @ 2024-01-25  1:48 UTC (permalink / raw)
  To: ml

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

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

python3-sqlparse: update to 0.4.4.
https://github.com/void-linux/void-packages/pull/43125

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 [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] 17+ messages in thread

end of thread, other threads:[~2024-01-25  1:48 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-30 21:48 [PR PATCH] python3-sqlparse: update to 0.4.3 TinfoilSubmarine
2023-03-30 21:53 ` [PR PATCH] [Updated] " TinfoilSubmarine
2023-03-31  2:33 ` TinfoilSubmarine
2023-03-31 13:25 ` TinfoilSubmarine
2023-03-31 13:26 ` TinfoilSubmarine
2023-06-23 20:49 ` [PR PATCH] [Updated] " TinfoilSubmarine
2023-06-26 12:46 ` TinfoilSubmarine
2023-06-27 12:33 ` TinfoilSubmarine
2023-06-27 12:36 ` python3-sqlparse: update to 0.4.4 TinfoilSubmarine
2023-07-13 16:56 ` [PR PATCH] [Updated] " TinfoilSubmarine
2023-07-13 17:02 ` TinfoilSubmarine
2023-07-13 17:27 ` TinfoilSubmarine
2023-07-13 17:31 ` TinfoilSubmarine
2023-10-12  1:44 ` github-actions
2023-10-13  1:09 ` [PR PATCH] [Updated] " TinfoilSubmarine
2024-01-11  1:46 ` github-actions
2024-01-25  1:48 ` [PR PATCH] [Closed]: " github-actions

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