Skip to content

Commit

Permalink
docs: update github URL
Browse files Browse the repository at this point in the history
Signed-off-by: Karel Zak <kzak@redhat.com>
  • Loading branch information
karelzak committed Nov 3, 2021
1 parent 91aadd9 commit cd252c6
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .travis-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
24 changes: 12 additions & 12 deletions Documentation/TODO
Original file line number Diff line number Diff line change
Expand Up @@ -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
-----
Expand All @@ -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)
--------------------------
Expand All @@ -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
---
Expand All @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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
----
Expand Down Expand Up @@ -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)
Expand All @@ -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
----
Expand Down
2 changes: 1 addition & 1 deletion Documentation/howto-contribute.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Documentation/howto-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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

Expand All @@ -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
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion man-common/bugreports.adoc
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion po-man/util-linux-man.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 ==
Expand Down
2 changes: 1 addition & 1 deletion sys-utils/blkzone.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/ts/hwclock/systohc
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/ts/script/race
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion util-linux.doap
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit cd252c6

Please sign in to comment.