Skip to content

Commit

Permalink
Update various outdated links and contact information
Browse files Browse the repository at this point in the history
This commit updates various outdated links and contact information
throughout the repository.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
  • Loading branch information
stephanosio committed Oct 4, 2024
1 parent 601f117 commit 0f321f8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion examples/merge_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
# Configuration saved to 'merged'
# warning: QAZ (defined at Kconfig:10) was assigned the value 'y' but got the value 'n' -- check dependencies
# $ cat merged
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
# Generated by Kconfiglib (https://github.com/zephyrproject-rtos/Kconfiglib)
# # CONFIG_FOO is not set
# CONFIG_BAR=y
# CONFIG_BAZ="baz string"
Expand Down
12 changes: 6 additions & 6 deletions kconfiglib.py
Original file line number Diff line number Diff line change
Expand Up @@ -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/ulfalizer/Kconfiglib for a longer
See the homepage at https://github.com/zephyrproject-rtos/Kconfiglib for a longer
overview.
Since Kconfiglib 12.0.0, the library version is available in
Expand All @@ -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/ulfalizer/Kconfiglib/master/makefile.patch | git am
$ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | patch -p1
$ 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
Warning: Not passing -p1 to patch will cause the wrong file to be patched.
Expand All @@ -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/ulfalizer/Kconfiglib.git
$ git clone git://github.com/zephyrproject-rtos/Kconfiglib.git
$ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')
Warning: The directory name Kconfiglib/ is significant in this case, because
Expand Down Expand Up @@ -540,8 +540,8 @@ def my_other_fn(kconf, name, arg_1, arg_2, ...):
Feedback
========
Send bug reports, suggestions, and questions to ulfalizer a.t Google's email
service, or open a ticket on the GitHub page.
For bug reports, suggestions, and questions, please open a ticket on the GitHub
page.
"""
import errno
import importlib
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
encoding="utf-8"
).read(),

url="https://github.com/ulfalizer/Kconfiglib",
author='Ulf "Ulfalizer" Magnusson',
author_email="ulfalizer@gmail.com",
url="https://github.com/zephyrproject-rtos/Kconfiglib",
author='Zephyr Project',
author_email="ci@zephyrproject.org",
keywords="kconfig, kbuild, menuconfig, configuration-management",
license="ISC",

Expand Down Expand Up @@ -68,8 +68,8 @@
python_requires=">=2.7,!=3.0.*,!=3.1.*",

project_urls={
"GitHub repository": "https://github.com/ulfalizer/Kconfiglib",
"Examples": "https://github.com/ulfalizer/Kconfiglib/tree/master/examples",
"GitHub repository": "https://github.com/zephyrproject-rtos/Kconfiglib",
"Examples": "https://github.com/zephyrproject-rtos/Kconfiglib/tree/master/examples",
},

classifiers=[
Expand Down
3 changes: 1 addition & 2 deletions testsuite.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@
#
# pypy works too, and runs most tests much faster than CPython.
#
# All tests should pass. Report regressions to ulfalizer a.t Google's email
# service.
# All tests should pass. Report regressions on the GitHub page.

import difflib
import errno
Expand Down

0 comments on commit 0f321f8

Please sign in to comment.