Page MenuHomeFreeBSD

devel/py-yaml: Rename to py-pyyaml
Needs ReviewPublic

Authored by dereks_lifeofadishwasher.com on Feb 23 2020, 7:26 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 19, 9:56 AM
Unknown Object (File)
Mon, Mar 18, 3:16 PM
Unknown Object (File)
Dec 23 2023, 7:28 PM
Unknown Object (File)
Dec 22 2023, 9:50 AM
Unknown Object (File)
Dec 12 2023, 3:35 AM
Unknown Object (File)
Nov 19 2023, 3:53 AM
Unknown Object (File)
Nov 19 2023, 2:18 AM
Unknown Object (File)
Nov 18 2023, 6:13 PM
Subscribers

Details

Summary
devel/py-yaml: Rename to py-pyyaml

To match upstream naming [1] move py-yaml to py-pyyaml

[1] https://wiki.freebsd.org/Python/PortsPolicy#Naming

Approved by: koobs (python, maintainer)
MFH: No
Differential_Revision: D23803
Test Plan

Rebuild all updated ports.
~1500 ports need built to test this but it did at least get past poudriere dep. checks.

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 40519
Build 37408: arc lint + arc unit

Event Timeline

koobs retitled this revision from devel/py-yaml: move py-yaml to py-pyyaml to devel/py-yaml: Rename to py-pyyaml.Feb 23 2020, 12:53 PM
koobs edited the summary of this revision. (Show Details)

From a technical standpoint this looks good.

From a practical standpoint I wonder if this change is worth the churn. This would mean pkg install py36-yaml wouldn't work anymore? The port name has been around for 17 years, it's not hard to imagine there's tooling and muscle memory built up around it.

This revision is now accepted and ready to land.Mar 3 2020, 9:09 PM

Conversely, there will have and continue to be users that pkg install 'pyyaml' using the name referenced by upstream and in all current and future documentation, and the names used by all packages that depend on it, that dont/cant find it.

pyyaml and python-dateutil are one of the very few outstanding incorrectly named python packages in the tree preventing us from getting to a better place in python port packaging regarding calling things exactly what they're called

devel/Makefile
5321

Re-order this line (alphabetically)

alphabetical order correction for devel/Makefile

This revision now requires review to proceed.Mar 4 2020, 4:25 AM
koobs requested changes to this revision.Jul 7 2021, 2:45 AM
koobs edited the summary of this revision. (Show Details)
koobs added a reviewer: dbaio.
koobs added a subscriber: danilo.

@dereks_lifeofadishwasher.com Can you check if this still applies and update it if necessary? @danilo is current maintainer and can handle resolution

This revision now requires changes to proceed.Jul 7 2021, 2:46 AM

Looks like some ports were removed between then (2/2020) and today (7/2021). Forget the exact method to update the tree at the time however this was used.

  • Move py-yaml.
  • Update py-pyyaml's PORTNAME
  • find files with ...yaml at word boundary.
  • Undo some changes that aren't needed (UPDATING, MOVED, vuxml).
  • Add entry to MOVED.
  • By hand update devel/Makefile to be alpha. order.
git mv devel/py-yaml devel/py-pyyaml
sed -i"" -e '/^PORTNAME=/s/yaml/pyyaml/' devel/py-pyyaml/Makefile
git grep -lze '${PYTHON_PKGNAMEPREFIX}yaml[[:>:]]' -e 'py-yaml[[:>:]]' | while read -r -d '' file ; do 
    sed -i "" 's/${PYTHON_PKGNAMEPREFIX}yaml[[:>:]]/${PYTHON_PKGNAMEPREFIX}pyyaml/g;s/py-yaml[[:>:]]/py-pyyaml/g' "$file"
done
git checkout security/vuxml MOVED UPDATING
echo "devel/py-yaml|devel/py-pyyaml|$(date '+%F')|Match upstream (PyPI) name (Python Policy)" >> MOVED
koobs requested changes to this revision.Jul 20 2021, 2:01 AM
koobs edited the summary of this revision. (Show Details)

Thanks you for rebasing/updating this differential Derek. Minor update request (MOVED reason)

MOVED
16467

Minor change request: Match upstream (PyPI) name (Python Policy)

This revision now requires changes to proceed.Jul 20 2021, 2:02 AM
This revision is now accepted and ready to land.Jul 22 2021, 1:47 AM
This revision now requires review to proceed.Jun 23 2022, 2:50 AM

rebasing this on current main updating devel/py-pyyaml PORTNAME

rebasing this on current main didn't realize a major part was missing... devel/py-pyyaml PORTNAME
was never changed. This was clearly pointed out by poudriere-devel warnings:

[00:00:16] [Dry Run] Warning: cad/python-gdsii dependency on devel/py-pyyaml@py39 has wrong PKGNAME of 'py39-pyyaml' but should be 'py39-yaml'; Is the dependency missing`

Update comment 702768 to include that change:

git mv devel/py-yaml devel/py-pyyaml
sed -i"" -e '/^PORTNAME=/s/yaml/pyyaml/' devel/py-pyyaml/Makefile
git grep -lze '${PYTHON_PKGNAMEPREFIX}yaml[[:>:]]' -e 'py-yaml[[:>:]]' | while read -r -d '' file ; do 
    sed -i "" 's/${PYTHON_PKGNAMEPREFIX}yaml[[:>:]]/${PYTHON_PKGNAMEPREFIX}pyyaml/g;s/py-yaml[[:>:]]/py-pyyaml/g' "$file"
done
git checkout security/vuxml MOVED UPDATING
echo "devel/py-yaml|devel/py-pyyaml|$(date '+%F')|Match upstream (PyPI) name (Python Policy)" >> MOVED