diff --git a/kconfiglib.py b/kconfiglib.py index f9d1e4e..aeaf99e 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -9,7 +9,7 @@ from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt) configuration systems. -See the homepage at https://github.com/zephyrproject-rtos/Kconfiglib for a longer +See the homepage at https://github.com/sysprog21/Kconfiglib for a longer overview. Since Kconfiglib 12.0.0, the library version is available in @@ -24,8 +24,8 @@ scripts/kconfig/Makefile patch, which can be applied with either 'git am' or the 'patch' utility: - $ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | git am - $ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | patch -p1 + $ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | git am + $ wget -qO- https://raw.githubusercontent.com/sysprog21/Kconfiglib/refs/heads/main/makefile.patch | patch -p1 Warning: Not passing -p1 to patch will cause the wrong file to be patched. @@ -39,7 +39,7 @@ If you do not wish to install Kconfiglib via pip, the Makefile patch is set up so that you can also just clone Kconfiglib into the kernel root: - $ git clone git://github.com/zephyrproject-rtos/Kconfiglib.git + $ git clone https://github.com/sysprog21/Kconfiglib $ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch') Warning: The directory name Kconfiglib/ is significant in this case, because diff --git a/setup.py b/setup.py index 1d7db24..1141505 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ encoding="utf-8" ).read(), - url="https://github.com/zephyrproject-rtos/Kconfiglib", + url="https://github.com/sysprog21/Kconfiglib", author='Zephyr Project', author_email="ci@zephyrproject.org", keywords="kconfig, kbuild, menuconfig, configuration-management", @@ -68,8 +68,8 @@ python_requires=">=2.7,!=3.0.*,!=3.1.*", project_urls={ - "GitHub repository": "https://github.com/zephyrproject-rtos/Kconfiglib", - "Examples": "https://github.com/zephyrproject-rtos/Kconfiglib/tree/master/examples", + "GitHub repository": "https://github.com/sysprog21/Kconfiglib", + "Examples": "https://github.com/sysprog21/Kconfiglib/tree/main/examples", }, classifiers=[