From 4c2fa50d089ae73b31e8d512fd464d255b4a221e Mon Sep 17 00:00:00 2001 From: mbakalarski <64490638+mbakalarski@users.noreply.github.com> Date: Wed, 29 Jul 2026 12:19:52 +0000 Subject: [PATCH] Point the source URLs at netclab/function-eapi `meta.crossplane.io/source` still named `mbakalarski/function-eapi`, the pre-rename URL. It is what the Marketplace listing links to, so the package published yesterday points readers at a redirect. pyproject.toml's three project.urls had the same leftover. GitHub 301s the old path, so nothing was broken -- but the annotation is metadata about where this package lives, and it should say so directly. Same cleanup netclab-xp did in netclab/netclab-xp#20. The author email is left alone: that is an identity, not a repo location. Co-Authored-By: Claude Opus 5 --- package/crossplane.yaml | 2 +- pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package/crossplane.yaml b/package/crossplane.yaml index eb3d571..72dffac 100644 --- a/package/crossplane.yaml +++ b/package/crossplane.yaml @@ -3,7 +3,7 @@ kind: Function metadata: name: function-eapi annotations: - meta.crossplane.io/source: https://github.com/mbakalarski/function-eapi + meta.crossplane.io/source: https://github.com/netclab/function-eapi meta.crossplane.io/license: Apache-2.0 meta.crossplane.io/description: Configure Arista EOS devices via JSON-RPC. meta.crossplane.io/readme: | diff --git a/pyproject.toml b/pyproject.toml index a2b5e3b..01330dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,9 +28,9 @@ dependencies = [ dynamic = ["version"] [project.urls] -Documentation = "https://github.com/mbakalarski/function-eapi#readme" -Issues = "https://github.com/mbakalarski/function-eapi/issues" -Source = "https://github.com/mbakalarski/function-eapi" +Documentation = "https://github.com/netclab/function-eapi#readme" +Issues = "https://github.com/netclab/function-eapi/issues" +Source = "https://github.com/netclab/function-eapi" [project.scripts] function = "function.main:cli"