Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/py-blinker/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ checksums sha256 b4ce2265a7abece45e7cc896e98dbebe6cead56bcf805a3d2313
rmd160 302002b7e179d736d153892a765a1528a18e8abb \
size 22460

python.versions 27 39 310 311 312 313
python.versions 27 39 310 311 312 313 314

if {${name} ne ${subport}} {
if {${python.version} == 27} {
Expand Down
2 changes: 1 addition & 1 deletion python/py-jwt/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ checksums rmd160 f1a9d4e75c91274ca1d1e44d03336597458f3b37 \
sha256 3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953 \
size 87785

python.versions 27 39 310 311 312 313
python.versions 27 39 310 311 312 313 314

if {${name} ne ${subport}} {
depends_build-append \
Expand Down
14 changes: 5 additions & 9 deletions python/py-oauthlib/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PortSystem 1.0
PortGroup python 1.0

name py-oauthlib
version 3.2.2
version 3.3.1
revision 0

categories-append net security
Expand All @@ -19,11 +19,11 @@ long_description {*}${description}

homepage https://github.com/oauthlib/oauthlib

checksums rmd160 3ee553a54b366680ba7d1efb553f7b289720ae11 \
sha256 9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918 \
size 177352
checksums rmd160 9f5c5042b109566409e0946a3761f41a0c5451fa \
sha256 0f0f8aa759826a193cf66c12ea1af1637f87b9b4622d46e866952bb022e538c9 \
size 185918

python.versions 27 39 310 311 312 313
python.versions 27 39 310 311 312 313 314

if {${name} ne ${subport}} {
depends_build-append port:py${python.version}-setuptools
Expand All @@ -35,9 +35,5 @@ if {${name} ne ${subport}} {
depends_test-append \
port:py${python.version}-mock

patchfiles-append \
0001-Make-UtilsTests.test_filter_params-Python-3.13-compa.patch \
0002-Fix-CI-Errors-878.patch

test.run yes
}

This file was deleted.

50 changes: 0 additions & 50 deletions python/py-oauthlib/files/0002-Fix-CI-Errors-878.patch

This file was deleted.

7 changes: 4 additions & 3 deletions python/py-requests-oauthlib/Portfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

Check warning on line 1 in python/py-requests-oauthlib/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port lint py27-requests-oauthlib: Error: Unknown dependency: py27-selenium

Check warning on line 1 in python/py-requests-oauthlib/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port lint py27-requests-oauthlib: Error: Unknown dependency: py27-selenium

Check warning on line 1 in python/py-requests-oauthlib/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port lint py27-requests-oauthlib: Error: Unknown dependency: py27-selenium

PortSystem 1.0
PortGroup github 1.0
Expand All @@ -22,7 +22,7 @@
sha256 91dedcfb4d577aaba88122496d16927150accf12b641f9d75078c59b66171a66 \
size 51366

python.versions 27 310 311 312 313
python.versions 27 310 311 312 313 314

if {${name} ne ${subport}} {
depends_build-append \
Expand All @@ -34,10 +34,11 @@

depends_test-append \
port:py${python.version}-mock \
port:py${python.version}-requests-mock
port:py${python.version}-requests-mock \
port:py${python.version}-selenium

patchfiles-append \
patch-no_selenium_tests.diff
patch-oauthlib_3.3.0_expires_test_fix.diff

test.run yes

Expand Down
121 changes: 0 additions & 121 deletions python/py-requests-oauthlib/files/patch-no_selenium_tests.diff

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
From b1dd93c5d024500b6236dea06734d6e6482c3565 Mon Sep 17 00:00:00 2001
From: Jonathan Huot <[email protected]>
Date: Thu, 12 Jun 2025 20:06:32 +0200
Subject: [PATCH] Updated tests to support 3.3.0/changes rel. to expires_at

---
tests/test_compliance_fixes.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git tests/test_compliance_fixes.py tests/test_compliance_fixes.py
index c5166bdb2fcb..9ad6d0995b33 100644
--- tests/test_compliance_fixes.py
+++ tests/test_compliance_fixes.py
@@ -115,7 +115,7 @@ class MailChimpComplianceFixTest(TestCase):
authorization_response="https://i.b/?code=hello",
)
# Times should be close
- approx_expires_at = time.time() + 3600
+ approx_expires_at = round(time.time()) + 3600
actual_expires_at = token.pop("expires_at")
self.assertAlmostEqual(actual_expires_at, approx_expires_at, places=2)

@@ -289,7 +289,7 @@ class PlentymarketsComplianceFixTest(TestCase):
authorization_response="https://i.b/?code=hello",
)

- approx_expires_at = time.time() + 86400
+ approx_expires_at = round(time.time()) + 86400
actual_expires_at = token.pop("expires_at")
self.assertAlmostEqual(actual_expires_at, approx_expires_at, places=2)

--
2.52.0

15 changes: 8 additions & 7 deletions python/py-selenium/Portfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test py314-selenium: Warning: py314-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test py312-selenium: Warning: py312-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test py311-selenium: Warning: py311-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test py310-selenium: Warning: py310-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-15

port test py313-selenium: Warning: py313-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test py314-selenium: Warning: py314-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test py312-selenium: Warning: py312-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test py311-selenium: Warning: py311-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test py310-selenium: Warning: py310-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-14

port test py313-selenium: Warning: py313-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port test py314-selenium: Warning: py314-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.14/lib/python3.14/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port test py312-selenium: Warning: py312-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port test py311-selenium: Warning: py311-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port test py310-selenium: Warning: py310-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.10/lib/python3.10/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

Check warning on line 1 in python/py-selenium/Portfile

View workflow job for this annotation

GitHub Actions / macos-26

port test py313-selenium: Warning: py313-selenium is configured to build no architecture-specific files, but installed Mach-O files built for the following archs: Warning: arm64,x86_64: Warning: /opt/local/Library/Frameworks/Python.framework/Versions/3.13/lib/python3.13/site-packages/selenium/webdriver/common/macos/selenium-manager Warning:

PortSystem 1.0
PortGroup python 1.0

name py-selenium
version 4.32.0
version 4.38.0
revision 0

license Apache-2
Expand All @@ -20,19 +20,20 @@

homepage https://www.seleniumhq.org/

python.versions 310 311 312 313
python.versions 310 311 312 313 314
python.pep517_backend

if {${name} ne ${subport}} {
depends_run-append \
port:py${python.version}-urllib3
port:py${python.version}-urllib3 \
port:py${python.version}-websocket-client

master_sites https://files.pythonhosted.org/packages/ea/37/d07ed9d13e571b2115d4ed6956d156c66816ceec0b03b2e463e80d09f572
master_sites https://files.pythonhosted.org/packages/8a/d3/76c8f4a8d99b9f1ebcf9a611b4dd992bf5ee082a6093cfc649af3d10f35b
distname selenium-${version}-py3-none-any

checksums rmd160 0a5fbdb3007f23d803ecec76dd06844788953474 \
sha256 c4d9613f8a45693d61530c9660560fadb52db7d730237bc788ddedf442391f97 \
size 9369668
checksums rmd160 d4a67ac8fd17daf321e605d2423856f4b2d55867 \
sha256 ed47563f188130a6fd486b327ca7ba48c5b11fb900e07d6457befdde320e35fd \
size 9694571

extract.suffix .whl
extract.only
Expand Down
2 changes: 1 addition & 1 deletion python/py-socks/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ description python SOCKS client module
long_description PySOCKS is a SOCKS client module, branched off several \
earlier abandoned projects

python.versions 27 39 310 311 312 313
python.versions 27 39 310 311 312 313 314

checksums rmd160 61b783fd0d1654186536bddc1e7dd3e1890ffb32 \
sha256 85b0e9271c46278e3970b619211c0d99584288825819cd51305d6e328a224f92 \
Expand Down
2 changes: 1 addition & 1 deletion python/py-websocket-client/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ checksums rmd160 21cebe24ac88e337db6a5303109517751cbd2a04 \
sha256 9e813624b6eb619999a97dc7958469217c3176312b3a16a4bd1bc7e08a46ec98 \
size 70576

python.versions 39 310 311 312 313
python.versions 39 310 311 312 313 314

if {${subport} ne ${name}} {
depends_test-append \
Expand Down
Loading