Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: macports/macports-ports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 76ad88e59bc39dcf4b172fe78fb31d380f792974
Choose a base ref
..
head repository: macports/macports-ports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1e22c4541ef01b0dfb81bcb868adbd52063b37f1
Choose a head ref
Showing with 3 additions and 5 deletions.
  1. +3 −5 python/py-ansible-core/Portfile
8 changes: 3 additions & 5 deletions python/py-ansible-core/Portfile
Original file line number Diff line number Diff line change
@@ -36,11 +36,9 @@ python.pep517 yes

if {${name} ne ${subport}} {
patch {
# This patch fixes ansible_core 2.18.1 to be compatible with the setuptools 75.8.0
# It should be removed or modified in the future when either are updated
set setuptools_version [exec port info --version py-setuptools]
set setuptools_version [lindex [split $setuptools_version] 1]
reinplace -q "s#75.6.0#${setuptools_version}#g" pyproject.toml
# This fixes ansible_core 2.18.1 to be compatible with the setuptools >75.6.0
# This linke should be removed or modified in the future when py-ansible-core is updated
reinplace -q "s#, <= 75.6.0##g" pyproject.toml

fs-traverse f ${worksrcpath} {
if {[file isfile ${f}] && [regexp {\.(py|yml|yaml)$} ${f} match]} {