Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] python3-peewee: update to 3.17.3.
@ 2024-04-22  8:53 meator
  2024-04-25 17:19 ` cinerea0
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: meator @ 2024-04-22  8:53 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages peewee
https://github.com/void-linux/void-packages/pull/49978

python3-peewee: update to 3.17.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **NO**, I have yet to test this.

<!--
#### 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
-->

cc @jnbr (by the way, are you still an active maintainer?)

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

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

From 30f14e87b5374dc4ae200cf0a14bab8ec63a77fc Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Mon, 22 Apr 2024 10:49:40 +0200
Subject: [PATCH] python3-peewee: update to 3.17.3.

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

diff --git a/srcpkgs/python3-peewee/template b/srcpkgs/python3-peewee/template
index 6d0e6640f48cdd..ef4342d7509aee 100644
--- a/srcpkgs/python3-peewee/template
+++ b/srcpkgs/python3-peewee/template
@@ -1,9 +1,9 @@
 # Template file for 'python3-peewee'
 pkgname=python3-peewee
-version=3.14.4
-revision=5
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-Cython0.29"
+version=3.17.3
+revision=1
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel python3-Cython0.29"
 makedepends="python3-devel sqlite-devel"
 depends="python3"
 short_desc="Small and simple ORM for Python3"
@@ -12,7 +12,7 @@ license="MIT"
 homepage="https://github.com/coleifer/peewee"
 changelog="https://raw.githubusercontent.com/coleifer/peewee/master/CHANGELOG.md"
 distfiles="https://github.com/coleifer/peewee/archive/${version}.tar.gz"
-checksum=cded912439699a63704fcad36ee15093bbf3cca502beb9ae648423f8722178c2
+checksum=fccaf0b61dc88fdfd95526f804fc0f55c09364f2fffaf6d6293c8bd9551227c9
 alternatives="peewee:pwiz:/usr/bin/pwiz.py3"
 make_check=no # tests  require postgres instance
 

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

* Re: python3-peewee: update to 3.17.3.
  2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
@ 2024-04-25 17:19 ` cinerea0
  2024-04-25 17:32 ` [PR PATCH] [Updated] " meator
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: cinerea0 @ 2024-04-25 17:19 UTC (permalink / raw)
  To: ml

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

New comment by cinerea0 on void-packages repository

https://github.com/void-linux/void-packages/pull/49978#issuecomment-2077786825

Comment:
Sorry, didn't see this one before merging the other. Could you rebase on master and make this a revbump?

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

* Re: [PR PATCH] [Updated] python3-peewee: update to 3.17.3.
  2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
  2024-04-25 17:19 ` cinerea0
@ 2024-04-25 17:32 ` meator
  2024-04-25 17:35 ` meator
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: meator @ 2024-04-25 17:32 UTC (permalink / raw)
  To: ml

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

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

https://github.com/meator/void-packages peewee
https://github.com/void-linux/void-packages/pull/49978

python3-peewee: update to 3.17.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

This gets rid of the following warnings upon install:

```
usr/lib/python3.12/site-packages/playhouse/migrate.py:673: SyntaxWarning: invalid escape sequence '\('
  column_re = re.compile('(.+?)\((.+)\)')
usr/lib/python3.12/site-packages/playhouse/migrate.py:830: SyntaxWarning: invalid escape sequence '\]'
  if re.match('%s(?:[\'"`\]]?\s|$)' % column_to_update, column):
usr/lib/python3.12/site-packages/playhouse/reflection.py:421: SyntaxWarning: invalid escape sequence '\['
  begin = '(?:["\[\(]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:422: SyntaxWarning: invalid escape sequence '\]'
  end = '(?:["\]\)]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:424: SyntaxWarning: invalid escape sequence '\s'
  '(?:FOREIGN KEY\s*)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:425: SyntaxWarning: invalid escape sequence '\s'
  '{begin}(.+?){end}\s+(?:.+\s+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:426: SyntaxWarning: invalid escape sequence '\s'
  'references\s+{begin}(.+?){end}'
usr/lib/python3.12/site-packages/playhouse/reflection.py:427: SyntaxWarning: invalid escape sequence '\s'
  '\s*\(["|\[]?(.+?)["|\]]?\)').format(begin=begin, end=end)
usr/lib/python3.12/site-packages/playhouse/reflection.py:437: SyntaxWarning: invalid escape sequence '\('
  column_type = re.sub('\(.+\)', '', raw_column_type)
usr/lib/python3.12/site-packages/playhouse/reflection.py:825: SyntaxWarning: invalid escape sequence '\('
  match_obj = re.match('^(.+?\()(.+)(\).*)', sql)
usr/lib/python3.12/site-packages/playhouse/migrate.py:673: SyntaxWarning: invalid escape sequence '\('
  column_re = re.compile('(.+?)\((.+)\)')
usr/lib/python3.12/site-packages/playhouse/migrate.py:830: SyntaxWarning: invalid escape sequence '\]'
  if re.match('%s(?:[\'"`\]]?\s|$)' % column_to_update, column):
usr/lib/python3.12/site-packages/playhouse/reflection.py:421: SyntaxWarning: invalid escape sequence '\['
  begin = '(?:["\[\(]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:422: SyntaxWarning: invalid escape sequence '\]'
  end = '(?:["\]\)]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:424: SyntaxWarning: invalid escape sequence '\s'
  '(?:FOREIGN KEY\s*)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:425: SyntaxWarning: invalid escape sequence '\s'
  '{begin}(.+?){end}\s+(?:.+\s+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:426: SyntaxWarning: invalid escape sequence '\s'
  'references\s+{begin}(.+?){end}'
usr/lib/python3.12/site-packages/playhouse/reflection.py:427: SyntaxWarning: invalid escape sequence '\s'
  '\s*\(["|\[]?(.+?)["|\]]?\)').format(begin=begin, end=end)
usr/lib/python3.12/site-packages/playhouse/reflection.py:437: SyntaxWarning: invalid escape sequence '\('
  column_type = re.sub('\(.+\)', '', raw_column_type)
usr/lib/python3.12/site-packages/playhouse/reflection.py:825: SyntaxWarning: invalid escape sequence '\('
  match_obj = re.match('^(.+?\()(.+)(\).*)', sql)
```

#### Testing the changes
- I tested the changes in this PR: **NO**, ~I have yet to test this.~ I don't really know how to test this well. All arches build, so that's that. It doesn't have that many dependants that I could test.

<!--
#### 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
-->

cc @jnbr (by the way, are you still an active maintainer?)

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

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

From 9d9d68c034099534564411f71f2f83379c4454e4 Mon Sep 17 00:00:00 2001
From: meator <meator.dev@gmail.com>
Date: Mon, 22 Apr 2024 10:49:40 +0200
Subject: [PATCH] python3-peewee: switch to PEP517

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

diff --git a/srcpkgs/python3-peewee/template b/srcpkgs/python3-peewee/template
index 2b5151535e79ec..0c0833b549b253 100644
--- a/srcpkgs/python3-peewee/template
+++ b/srcpkgs/python3-peewee/template
@@ -2,8 +2,8 @@
 pkgname=python3-peewee
 version=3.17.3
 revision=1
-build_style=python3-module
-hostmakedepends="python3-setuptools python3-Cython0.29"
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel python3-Cython0.29"
 makedepends="python3-devel sqlite-devel"
 depends="python3"
 short_desc="Small and simple ORM for Python3"

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

* Re: python3-peewee: update to 3.17.3.
  2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
  2024-04-25 17:19 ` cinerea0
  2024-04-25 17:32 ` [PR PATCH] [Updated] " meator
@ 2024-04-25 17:35 ` meator
  2024-04-25 18:17 ` cinerea0
  2024-04-25 18:17 ` [PR PATCH] [Merged]: " cinerea0
  4 siblings, 0 replies; 7+ messages in thread
From: meator @ 2024-04-25 17:35 UTC (permalink / raw)
  To: ml

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

New comment by meator on void-packages repository

https://github.com/void-linux/void-packages/pull/49978#issuecomment-2077811045

Comment:
Sorry, I haven't noticed #49942, it was submitted first. 

> Sorry, didn't see this one before merging the other. Could you rebase on master and make this a revbump?

Why revbump? Switching to PEP517 shouldn't really change all that much (except for silencing warnings during build).

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

* Re: python3-peewee: update to 3.17.3.
  2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
                   ` (2 preceding siblings ...)
  2024-04-25 17:35 ` meator
@ 2024-04-25 18:17 ` cinerea0
  2024-04-25 18:17 ` [PR PATCH] [Merged]: " cinerea0
  4 siblings, 0 replies; 7+ messages in thread
From: cinerea0 @ 2024-04-25 18:17 UTC (permalink / raw)
  To: ml

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

New comment by cinerea0 on void-packages repository

https://github.com/void-linux/void-packages/pull/49978#issuecomment-2077886733

Comment:
In that case yes, a revbump is not needed. Thank you!

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

* Re: [PR PATCH] [Merged]: python3-peewee: update to 3.17.3.
  2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
                   ` (3 preceding siblings ...)
  2024-04-25 18:17 ` cinerea0
@ 2024-04-25 18:17 ` cinerea0
  4 siblings, 0 replies; 7+ messages in thread
From: cinerea0 @ 2024-04-25 18:17 UTC (permalink / raw)
  To: ml

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

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

python3-peewee: update to 3.17.3.
https://github.com/void-linux/void-packages/pull/49978

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

This gets rid of the following warnings upon install:

```
usr/lib/python3.12/site-packages/playhouse/migrate.py:673: SyntaxWarning: invalid escape sequence '\('
  column_re = re.compile('(.+?)\((.+)\)')
usr/lib/python3.12/site-packages/playhouse/migrate.py:830: SyntaxWarning: invalid escape sequence '\]'
  if re.match('%s(?:[\'"`\]]?\s|$)' % column_to_update, column):
usr/lib/python3.12/site-packages/playhouse/reflection.py:421: SyntaxWarning: invalid escape sequence '\['
  begin = '(?:["\[\(]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:422: SyntaxWarning: invalid escape sequence '\]'
  end = '(?:["\]\)]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:424: SyntaxWarning: invalid escape sequence '\s'
  '(?:FOREIGN KEY\s*)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:425: SyntaxWarning: invalid escape sequence '\s'
  '{begin}(.+?){end}\s+(?:.+\s+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:426: SyntaxWarning: invalid escape sequence '\s'
  'references\s+{begin}(.+?){end}'
usr/lib/python3.12/site-packages/playhouse/reflection.py:427: SyntaxWarning: invalid escape sequence '\s'
  '\s*\(["|\[]?(.+?)["|\]]?\)').format(begin=begin, end=end)
usr/lib/python3.12/site-packages/playhouse/reflection.py:437: SyntaxWarning: invalid escape sequence '\('
  column_type = re.sub('\(.+\)', '', raw_column_type)
usr/lib/python3.12/site-packages/playhouse/reflection.py:825: SyntaxWarning: invalid escape sequence '\('
  match_obj = re.match('^(.+?\()(.+)(\).*)', sql)
usr/lib/python3.12/site-packages/playhouse/migrate.py:673: SyntaxWarning: invalid escape sequence '\('
  column_re = re.compile('(.+?)\((.+)\)')
usr/lib/python3.12/site-packages/playhouse/migrate.py:830: SyntaxWarning: invalid escape sequence '\]'
  if re.match('%s(?:[\'"`\]]?\s|$)' % column_to_update, column):
usr/lib/python3.12/site-packages/playhouse/reflection.py:421: SyntaxWarning: invalid escape sequence '\['
  begin = '(?:["\[\(]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:422: SyntaxWarning: invalid escape sequence '\]'
  end = '(?:["\]\)]+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:424: SyntaxWarning: invalid escape sequence '\s'
  '(?:FOREIGN KEY\s*)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:425: SyntaxWarning: invalid escape sequence '\s'
  '{begin}(.+?){end}\s+(?:.+\s+)?'
usr/lib/python3.12/site-packages/playhouse/reflection.py:426: SyntaxWarning: invalid escape sequence '\s'
  'references\s+{begin}(.+?){end}'
usr/lib/python3.12/site-packages/playhouse/reflection.py:427: SyntaxWarning: invalid escape sequence '\s'
  '\s*\(["|\[]?(.+?)["|\]]?\)').format(begin=begin, end=end)
usr/lib/python3.12/site-packages/playhouse/reflection.py:437: SyntaxWarning: invalid escape sequence '\('
  column_type = re.sub('\(.+\)', '', raw_column_type)
usr/lib/python3.12/site-packages/playhouse/reflection.py:825: SyntaxWarning: invalid escape sequence '\('
  match_obj = re.match('^(.+?\()(.+)(\).*)', sql)
```

#### Testing the changes
- I tested the changes in this PR: **NO**, ~I have yet to test this.~ I don't really know how to test this well. All arches build, so that's that. It doesn't have that many dependants that I could test.

<!--
#### 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
-->

cc @jnbr (by the way, are you still an active maintainer?)

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

* [PR PATCH] python3-peewee: update to 3.17.3.
@ 2024-04-20 20:42 jason1987d
  0 siblings, 0 replies; 7+ messages in thread
From: jason1987d @ 2024-04-20 20:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/jason1987d/void-packages python3-peewee
https://github.com/void-linux/void-packages/pull/49942

python3-peewee: update to 3.17.3.
<!-- Uncomment relevant sections and delete options which are not applicable -->

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

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

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

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

From acbfcacb50a6a49ce26199d1064e6691df18b84f Mon Sep 17 00:00:00 2001
From: Jason Elswick <jason@jasondavid.tv>
Date: Sat, 20 Apr 2024 15:40:28 -0500
Subject: [PATCH] python3-peewee: update to 3.17.3.

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

diff --git a/srcpkgs/python3-peewee/template b/srcpkgs/python3-peewee/template
index 6d0e6640f48cdd..26565e01c1195c 100644
--- a/srcpkgs/python3-peewee/template
+++ b/srcpkgs/python3-peewee/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-peewee'
 pkgname=python3-peewee
-version=3.14.4
+version=3.17.3
 revision=5
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Cython0.29"
@@ -12,9 +12,9 @@ license="MIT"
 homepage="https://github.com/coleifer/peewee"
 changelog="https://raw.githubusercontent.com/coleifer/peewee/master/CHANGELOG.md"
 distfiles="https://github.com/coleifer/peewee/archive/${version}.tar.gz"
-checksum=cded912439699a63704fcad36ee15093bbf3cca502beb9ae648423f8722178c2
+checksum=fccaf0b61dc88fdfd95526f804fc0f55c09364f2fffaf6d6293c8bd9551227c9
 alternatives="peewee:pwiz:/usr/bin/pwiz.py3"
-make_check=no # tests  require postgres instance
+make_check=no # tests require postgres instance
 
 post_install() {
 	mv $DESTDIR/usr/bin/pwiz.py $DESTDIR/usr/bin/pwiz.py3

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

end of thread, other threads:[~2024-04-25 18:17 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-22  8:53 [PR PATCH] python3-peewee: update to 3.17.3 meator
2024-04-25 17:19 ` cinerea0
2024-04-25 17:32 ` [PR PATCH] [Updated] " meator
2024-04-25 17:35 ` meator
2024-04-25 18:17 ` cinerea0
2024-04-25 18:17 ` [PR PATCH] [Merged]: " cinerea0
  -- strict thread matches above, loose matches on Subject: below --
2024-04-20 20:42 [PR PATCH] " jason1987d

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