Skip to content

Commit 0f321f8

Browse files
committed
Update various outdated links and contact information
This commit updates various outdated links and contact information throughout the repository. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
1 parent 601f117 commit 0f321f8

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

examples/merge_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
# Configuration saved to 'merged'
6666
# warning: QAZ (defined at Kconfig:10) was assigned the value 'y' but got the value 'n' -- check dependencies
6767
# $ cat merged
68-
# Generated by Kconfiglib (https://github.com/ulfalizer/Kconfiglib)
68+
# Generated by Kconfiglib (https://github.com/zephyrproject-rtos/Kconfiglib)
6969
# # CONFIG_FOO is not set
7070
# CONFIG_BAR=y
7171
# CONFIG_BAZ="baz string"

kconfiglib.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from Kconfig (https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt)
1010
configuration systems.
1111
12-
See the homepage at https://github.com/ulfalizer/Kconfiglib for a longer
12+
See the homepage at https://github.com/zephyrproject-rtos/Kconfiglib for a longer
1313
overview.
1414
1515
Since Kconfiglib 12.0.0, the library version is available in
@@ -24,8 +24,8 @@
2424
scripts/kconfig/Makefile patch, which can be applied with either 'git am' or
2525
the 'patch' utility:
2626
27-
$ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | git am
28-
$ wget -qO- https://raw.githubusercontent.com/ulfalizer/Kconfiglib/master/makefile.patch | patch -p1
27+
$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | git am
28+
$ wget -qO- https://raw.githubusercontent.com/zephyrproject-rtos/Kconfiglib/master/makefile.patch | patch -p1
2929
3030
Warning: Not passing -p1 to patch will cause the wrong file to be patched.
3131
@@ -39,7 +39,7 @@
3939
If you do not wish to install Kconfiglib via pip, the Makefile patch is set up
4040
so that you can also just clone Kconfiglib into the kernel root:
4141
42-
$ git clone git://github.com/ulfalizer/Kconfiglib.git
42+
$ git clone git://github.com/zephyrproject-rtos/Kconfiglib.git
4343
$ git am Kconfiglib/makefile.patch (or 'patch -p1 < Kconfiglib/makefile.patch')
4444
4545
Warning: The directory name Kconfiglib/ is significant in this case, because
@@ -540,8 +540,8 @@ def my_other_fn(kconf, name, arg_1, arg_2, ...):
540540
Feedback
541541
========
542542
543-
Send bug reports, suggestions, and questions to ulfalizer a.t Google's email
544-
service, or open a ticket on the GitHub page.
543+
For bug reports, suggestions, and questions, please open a ticket on the GitHub
544+
page.
545545
"""
546546
import errno
547547
import importlib

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
encoding="utf-8"
2121
).read(),
2222

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

@@ -68,8 +68,8 @@
6868
python_requires=">=2.7,!=3.0.*,!=3.1.*",
6969

7070
project_urls={
71-
"GitHub repository": "https://github.com/ulfalizer/Kconfiglib",
72-
"Examples": "https://github.com/ulfalizer/Kconfiglib/tree/master/examples",
71+
"GitHub repository": "https://github.com/zephyrproject-rtos/Kconfiglib",
72+
"Examples": "https://github.com/zephyrproject-rtos/Kconfiglib/tree/master/examples",
7373
},
7474

7575
classifiers=[

testsuite.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
#
3333
# pypy works too, and runs most tests much faster than CPython.
3434
#
35-
# All tests should pass. Report regressions to ulfalizer a.t Google's email
36-
# service.
35+
# All tests should pass. Report regressions on the GitHub page.
3736

3837
import difflib
3938
import errno

0 commit comments

Comments
 (0)