Skip to content

Commit f6d3a4c

Browse files
committed
README,doc,*.sh: use the new upstream namespace
1 parent 0135803 commit f6d3a4c

8 files changed

Lines changed: 11 additions & 11 deletions

File tree

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "cswrap"]
22
path = cswrap
3-
url = https://github.com/kdudka/cswrap.git
3+
url = https://github.com/csutils/cswrap.git

README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ symbolic link to cscppc named as your compiler (gcc, g++, ...) and put it
55
to your $PATH. cscppc --help prints usage to standard error output. You
66
can find the up2date sources in the following repository:
77

8-
https://github.com/kdudka/cscppc
8+
https://github.com/csutils/cscppc
99

1010
cscppc is licensed under GPLv3+, see COPYING for details. Please report bugs
1111
and feature requests on GitHub using the above URL.

doc/csclng.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ ENVIRONMENT VARIABLES
9999
100100
BUGS
101101
----
102-
Please report bugs and feature requests at https://github.com/kdudka/cscppc .
102+
Please report bugs and feature requests at https://github.com/csutils/cscppc .
103103

104104

105105
AUTHOR

doc/cscppc.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ ENVIRONMENT VARIABLES
9595
9696
BUGS
9797
----
98-
Please report bugs and feature requests at https://github.com/kdudka/cscppc .
98+
Please report bugs and feature requests at https://github.com/csutils/cscppc .
9999

100100

101101
AUTHOR

doc/csgcca.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ ENVIRONMENT VARIABLES
9191
9292
BUGS
9393
----
94-
Please report bugs and feature requests at https://github.com/kdudka/cscppc .
94+
Please report bugs and feature requests at https://github.com/csutils/cscppc .
9595

9696

9797
AUTHOR

make-srpm.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ VER="`echo "$VER" | sed "s/-.*-/.$TIMESTAMP./"`"
4747

4848
BRANCH="`git rev-parse --abbrev-ref HEAD`"
4949
test -n "$BRANCH" || die "failed to get current branch name"
50-
test master = "${BRANCH}" || VER="${VER}.${BRANCH}"
50+
test "main" = "${BRANCH}" || VER="${VER}.${BRANCH}"
5151
test -z "`git diff HEAD`" || VER="${VER}.dirty"
5252

5353
NV="${PKG}-${VER}"
@@ -85,8 +85,8 @@ Summary: A compiler wrapper that runs cppcheck in background
8585
8686
Group: Development/Tools
8787
License: GPLv3+
88-
URL: https://github.com/kdudka/%{name}
89-
Source0: https://github.com/kdudka/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
88+
URL: https://github.com/csutils/%{name}
89+
Source0: https://github.com/csutils/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
9090
9191
BuildRequires: asciidoc
9292
BuildRequires: cmake

upload-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ done
4848
JSON="./${NV}-github-relase.js"
4949

5050
# create a new release on GitHub
51-
curl "https://api.github.com/repos/${USER}/${NAME}/releases" \
51+
curl "https://api.github.com/repos/csutils/${NAME}/releases" \
5252
-o "$JSON" --fail --verbose \
5353
--header "Authorization: token $TOKEN" \
5454
--data '{
5555
"tag_name": "'"$TAG"'",
56-
"target_commitish": "master",
56+
"target_commitish": "main",
5757
"name": "'"$NV"'",
5858
"draft": false,
5959
"prerelease": false

0 commit comments

Comments
 (0)