From cd252c664cc5493fb1bbd5a91517d8c7c22b3d0a Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 3 Nov 2021 13:58:21 +0100 Subject: [PATCH] docs: update github URL Signed-off-by: Karel Zak --- .travis-functions.sh | 4 ++-- Documentation/TODO | 24 ++++++++++++------------ Documentation/howto-contribute.txt | 2 +- Documentation/howto-tests.txt | 8 ++++---- README | 6 +++--- man-common/bugreports.adoc | 2 +- po-man/util-linux-man.pot | 2 +- sys-utils/blkzone.c | 2 +- tests/functions.sh | 2 +- tests/ts/hwclock/systohc | 2 +- tests/ts/script/race | 2 +- util-linux.doap | 2 +- 12 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.travis-functions.sh b/.travis-functions.sh index efe5f658d0e..cfed241e38b 100755 --- a/.travis-functions.sh +++ b/.travis-functions.sh @@ -32,7 +32,7 @@ DUMP_CONFIG_LOG="short" # Coverity-related settings COVERITY_SCAN_TOOL_BASE="/tmp/coverity-scan-analysis" -COVERITY_SCAN_PROJECT_NAME="karelzak/util-linux" +COVERITY_SCAN_PROJECT_NAME="util-linux/util-linux" # workaround ugly warning on travis OSX, # see https://github.com/direnv/direnv/issues/210 @@ -74,7 +74,7 @@ function xconfigure function make_checkusage { local tmp - # memory leaks are ignored here. See https://github.com/karelzak/util-linux/issues/1077 + # memory leaks are ignored here. See https://github.com/util-linux/util-linux/issues/1077 if ! tmp=$(ASAN_OPTIONS="$ASAN_OPTIONS:detect_leaks=0" $MAKE checkusage 2>&1) || test -n "$tmp"; then echo "$tmp" echo "make checkusage failed" >&2 diff --git a/Documentation/TODO b/Documentation/TODO index 74066fcd545..855e032424f 100644 --- a/Documentation/TODO +++ b/Documentation/TODO @@ -6,7 +6,7 @@ all - use gettext() for column names on output in libsmartcols based tools and accept trantated as well as original names on command line (lsblk -o NAME,SIZE). - https://github.com/karelzak/util-linux/issues/1291 + https://github.com/util-linux/util-linux/issues/1291 tests ----- @@ -21,7 +21,7 @@ fstrim - "fstrim --fstab" uses root= from /proc/cmdline to get root FS when it's missing in fstab file. This is fragile (due to missing root= or the root FS is not accessible). The best seems to parse mountinfo and use mnt_table_get_root_fs() - as a fallback solution. https://github.com/karelzak/util-linux/issues/1266. + as a fallback solution. https://github.com/util-linux/util-linux/issues/1266. script (lib/pty-session.c) -------------------------- @@ -37,14 +37,14 @@ rev --- - support huge input lines (for example read input by small fixed buffer rather than try allocate all buffer for a whole line) - see: https://github.com/karelzak/util-linux/issues/972 + see: https://github.com/util-linux/util-linux/issues/972 col --- - use unsigned sizes for columns and lines - check for limits to avoid segfaults - make it more robust - https://github.com/karelzak/util-linux/issues/749 + https://github.com/util-linux/util-linux/issues/749 cal --- @@ -56,7 +56,7 @@ lscpu - add "Boost/Turbo: true|false" based on /sys/devices/system/cpu/intel_pstate/no_turbo and /sys/devices/system/cpu/cpufreq/boost - - add --freq output to visualise CPU use, see https://github.com/karelzak/util-linux/issues/1314 + - add --freq output to visualise CPU use, see https://github.com/util-linux/util-linux/issues/1314 - read cpuid and uname information from file if --sysroot is specified, then we can prepare regression tests completely independent on hw and architecture. @@ -89,13 +89,13 @@ libmount (mount/umount) The solution is to use pipe(), keep output from helper in memory and return it later by mnt_context_get_excode() (or mnt_context_get_helper_output(), etc.). This feature should be optional and disabled by default. - see: https://github.com/karelzak/util-linux/issues/1208 + see: https://github.com/util-linux/util-linux/issues/1208 - add --onlyonce to force mount(8) to check if mountpoint is already used. Now "already mounted" detection is used for --all only. The problem is if you call "mount " more than once for in fstab defined tmpfs (or network filesystem etc.). In this case kernel does not return EBUSY, but a new instance - of the FS is created. https://github.com/karelzak/util-linux/issues/448 + of the FS is created. https://github.com/util-linux/util-linux/issues/448 (... just idea, maybe wrong idea) partx @@ -110,7 +110,7 @@ getopt Currently, it outputs -- for every option it doesn't recognize but leaving the option as it is could beneficial wrapper scripts which could then pass the options they don't recognize as they are to the command they are wrapping. - https://github.com/karelzak/util-linux/issues/701 + https://github.com/util-linux/util-linux/issues/701 docs ---- @@ -148,10 +148,10 @@ libblkid - extend ZFS proper to scan for more uberblocks if BLKID_SUBLKS_MAGIC flag is set. This solution will make wipefs(8) more usable as ZFS is extremely variable with - additional root blocks locations. See https://github.com/karelzak/util-linux/issues/1228 + additional root blocks locations. See https://github.com/util-linux/util-linux/issues/1228 - (!) add support for BitLocker Drive Encryption - https://github.com/karelzak/util-linux/issues/617 + https://github.com/util-linux/util-linux/issues/617 https://github.com/libyal/libbde/blob/master/documentation/BitLocker%20Drive%20Encryption%20(BDE)%20format.asciidoc - (!) add support for dasd PT (used for example on s390) @@ -166,13 +166,13 @@ libfdisk * add "nested-label:" block to sfdisk --dump * add "nested-partitiontable" to sfdisk --JSON * support nested labels parsing from dump - see https://github.com/karelzak/util-linux/issues/850 + see https://github.com/util-linux/util-linux/issues/850 sfdisk ------ - don't backup PT in interactive mode before write to the devices is requested, - see https://github.com/karelzak/util-linux/issues/852 + see https://github.com/util-linux/util-linux/issues/852 misc ---- diff --git a/Documentation/howto-contribute.txt b/Documentation/howto-contribute.txt index ac0d8acdcfb..fe68c6ae668 100644 --- a/Documentation/howto-contribute.txt +++ b/Documentation/howto-contribute.txt @@ -47,7 +47,7 @@ Repositories & Branches We use this repository for master and stable branches only. * Backup repository at github.com: - git clone git://github.com/karelzak/util-linux.git + git clone git://github.com/util-linux/util-linux.git We use this repository to backup kernel.org and for pull requests, issues tracking and topic branches. The master and stable branches are diff --git a/Documentation/howto-tests.txt b/Documentation/howto-tests.txt index 702518cc0c3..dbe41c6a919 100644 --- a/Documentation/howto-tests.txt +++ b/Documentation/howto-tests.txt @@ -126,7 +126,7 @@ External services Travis CI - automatically executed for all github commits. - URL: https://travis-ci.org/karelzak/util-linux/ + URL: https://travis-ci.org/util-linux/util-linux/ See .travis.yml for more details. @@ -135,11 +135,11 @@ Travis CI - automatically executed for all github commits. lgtm CI - automatically executed security code analysis - URL: https://lgtm.com/projects/g/karelzak/util-linux/ + URL: https://lgtm.com/projects/g/util-linux/util-linux/ Coverity Scan - URL: https://scan.coverity.com/projects/karelzak-util-linux + URL: https://scan.coverity.com/projects/util-linux-util-linux Fossies codespell report @@ -154,4 +154,4 @@ OSS-Fuzz CIFuzz URL: https://google.github.io/oss-fuzz/getting-started/continuous-integration/ - URL: https://github.com/karelzak/util-linux/actions?query=workflow%3ACIFuzz + URL: https://github.com/util-linux/util-linux/actions?query=workflow%3ACIFuzz diff --git a/README b/README index ee6da422fdb..80dcfa91eaa 100644 --- a/README +++ b/README @@ -34,7 +34,7 @@ IRC CHANNEL: BUG REPORTING: E-MAIL: util-linux@vger.kernel.org - Web: https://github.com/karelzak/util-linux/issues + Web: https://github.com/util-linux/util-linux/issues Bug reports with sensitive or private information: Karel Zak @@ -74,11 +74,11 @@ SOURCE CODE: git clone git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git Backup repository: - git clone git://github.com/karelzak/util-linux.git + git clone git://github.com/util-linux/util-linux.git Web interfaces: http://git.kernel.org/cgit/utils/util-linux/util-linux.git - https://github.com/karelzak/util-linux + https://github.com/util-linux/util-linux Note: the GitHub repository may contain temporary development branches too. diff --git a/man-common/bugreports.adoc b/man-common/bugreports.adoc index c1289507c0c..0801bd259c4 100644 --- a/man-common/bugreports.adoc +++ b/man-common/bugreports.adoc @@ -1,3 +1,3 @@ == REPORTING BUGS -For bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues. +For bug reports, use the issue tracker at https://github.com/util-linux/util-linux/issues. diff --git a/po-man/util-linux-man.pot b/po-man/util-linux-man.pot index 2d40652f815..7f949381cb6 100644 --- a/po-man/util-linux-man.pot +++ b/po-man/util-linux-man.pot @@ -26,7 +26,7 @@ msgstr "" #: ../man-common/bugreports.adoc:3 msgid "" "For bug reports, use the issue tracker at " -"https://github.com/karelzak/util-linux/issues." +"https://github.com/util-linux/util-linux/issues." msgstr "" #. type: Title == diff --git a/sys-utils/blkzone.c b/sys-utils/blkzone.c index c416e0711fc..ee70c71f36a 100644 --- a/sys-utils/blkzone.c +++ b/sys-utils/blkzone.c @@ -273,7 +273,7 @@ static int blkzone_report(struct blkzone_control *ctl) for (i = 0; i < zi->nr_zones; i++) { /* * blk_zone_report hasn't been packed since https://github.com/torvalds/linux/commit/b3e7e7d2d668de0102264302a4d10dd9d4438a42 - * was merged. See https://github.com/karelzak/util-linux/issues/1083 + * was merged. See https://github.com/util-linux/util-linux/issues/1083 */ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Waddress-of-packed-member" diff --git a/tests/functions.sh b/tests/functions.sh index 1699ba0476a..56141221206 100644 --- a/tests/functions.sh +++ b/tests/functions.sh @@ -537,7 +537,7 @@ function ts_gen_diff { ts_gen_diff_from $TS_EXPECTED_ERR $TS_ERRLOG $TS_DIFF.err status_err=$? else - # TS_EXIT_CODE is empty when tests aren't run with ts_run: https://github.com/karelzak/util-linux/issues/1072 + # TS_EXIT_CODE is empty when tests aren't run with ts_run: https://github.com/util-linux/util-linux/issues/1072 # or when ts_finalize is called right after ts_finalize_subtest. exit_code="$(cat $TS_EXIT_CODE)" if [ -z "$exit_code" ]; then diff --git a/tests/ts/hwclock/systohc b/tests/ts/hwclock/systohc index e33e4ab7fe4..228ef7c8a27 100755 --- a/tests/ts/hwclock/systohc +++ b/tests/ts/hwclock/systohc @@ -27,7 +27,7 @@ ts_check_test_command "$TS_CMD_HWCLOCK" ts_skip_nonroot if [ "$TRAVIS_DIST" == "precise" ]; then - ts_skip "https://github.com/karelzak/util-linux/issues/1082" + ts_skip "https://github.com/util-linux/util-linux/issues/1082" fi if [ "$GITHUB_ACTIONS" == "true" ]; then ts_skip "virtual machine" diff --git a/tests/ts/script/race b/tests/ts/script/race index 2c26b89fc1c..6ef5309fa46 100755 --- a/tests/ts/script/race +++ b/tests/ts/script/race @@ -25,7 +25,7 @@ ts_init "$*" ts_check_test_command "$TS_CMD_SCRIPT" # this test may fail on systems with very heavy load -# https://github.com/karelzak/util-linux/issues/296 +# https://github.com/util-linux/util-linux/issues/296 TS_KNOWN_FAIL="yes" bingofile="$TS_OUTDIR/${TS_TESTNAME}-bingo" diff --git a/util-linux.doap b/util-linux.doap index 2606f13aef3..525d0644b51 100644 --- a/util-linux.doap +++ b/util-linux.doap @@ -14,7 +14,7 @@ util-linux is a random collection of Linux utilities. Note that in years 2006-2010 this project used the name "util-linux-ng". - + C