]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
docs: update github URL
authorKarel Zak <kzak@redhat.com>
Wed, 3 Nov 2021 12:58:21 +0000 (13:58 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 3 Nov 2021 12:58:21 +0000 (13:58 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
12 files changed:
.travis-functions.sh
Documentation/TODO
Documentation/howto-contribute.txt
Documentation/howto-tests.txt
README
man-common/bugreports.adoc
po-man/util-linux-man.pot
sys-utils/blkzone.c
tests/functions.sh
tests/ts/hwclock/systohc
tests/ts/script/race
util-linux.doap

index efe5f658d0e8a7376a949e448256d9ac82965c1c..cfed241e38b8b90440cd7414c65683ac2392a281 100755 (executable)
@@ -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
index 74066fcd54591cfee731c582e233d12433ba4e1a..855e032424f6effe3eb6549faf1d140650080910 100644 (file)
@@ -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 <mountpoint>" 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
 ----
index ac0d8acdcfb2c1a548d2368266cff851cd6bae22..fe68c6ae6680d2666277f2c5de94e8dc038b3a52 100644 (file)
@@ -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
index 702518cc0c3377583a942216ca2057e8235f9319..dbe41c6a9192fbf16be87aca9b9eda5c450d9bc6 100644 (file)
@@ -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 ee6da422fdbc994d9a20c444e4f30de71be0acfc..80dcfa91eaaec6e23029092925ec2f862ac57520 100644 (file)
--- 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 <kzak@redhat.com>
 
@@ -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.
 
index c1289507c0c71e5ba12519e17389f3d912c9f75b..0801bd259c4c34d79b16656e3d28d27d3c913db0 100644 (file)
@@ -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.
index 2d40652f815dcc23905c151673a10e968bb53f23..7f949381cb69642055584371d0a24b845c8c2f7e 100644 (file)
@@ -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 ==
index c416e0711fc39d5e62d5da791897f1f7625167d2..ee70c71f36a41e444e1aa2f3f99712c81694c568 100644 (file)
@@ -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"
index 1699ba0476af6c9d5a81a59917fc4e5986062648..561412212066942461bf57a2efe3bcc6ef0e11f4 100644 (file)
@@ -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
index e33e4ab7fe4c1c5f8ccbc2db87d43dc823201ee7..228ef7c8a27c5250f0189ad1f340b237c8e4f9cb 100755 (executable)
@@ -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"
index 2c26b89fc1c89473ecd0c7d07f98c37817b937c5..6ef5309fa463f86a417874ddcf01b5322c411f4d 100755 (executable)
@@ -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"
index 2606f13aef3b30185f64431a9cfe9bdf671e2a60..525d0644b51f9fe09a3bd30eababd23e7af67376 100644 (file)
@@ -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".
     </description>
-    <bug-database rdf:resource="https://github.com/karelzak/util-linux/issues" />
+    <bug-database rdf:resource="https://github.com/util-linux/util-linux/issues" />
     <mailing-list rdf:resource="http://vger.kernel.org/vger-lists.html#util-linux" />
     <download-page rdf:resource="https://www.kernel.org/pub/linux/utils/util-linux/" />
     <programming-language>C</programming-language>