Skip to content

Commit e549496

Browse files
committed
README,doc,*.sh: use the new upstream namespace
1 parent 4cca467 commit e549496

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README

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

9-
https://github.com/kdudka/cswrap
9+
https://github.com/csutils/cswrap
1010

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

doc/csexec.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ ENVIRONMENT VARIABLES
6262

6363
BUGS
6464
----
65-
Please report bugs and feature requests at https://github.com/kdudka/cswrap .
65+
Please report bugs and feature requests at https://github.com/csutils/cswrap .
6666

6767

6868
AUTHOR

doc/cswrap.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ENVIRONMENT VARIABLES
8585

8686
BUGS
8787
----
88-
Please report bugs and feature requests at https://github.com/kdudka/cswrap .
88+
Please report bugs and feature requests at https://github.com/csutils/cswrap .
8989

9090

9191
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}"
@@ -79,8 +79,8 @@ Summary: Generic compiler wrapper
7979
8080
Group: Development/Tools
8181
License: GPLv3+
82-
URL: https://github.com/kdudka/%{name}
83-
Source0: https://github.com/kdudka/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
82+
URL: https://github.com/csutils/%{name}
83+
Source0: https://github.com/csutils/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
8484
8585
# cswrap-1.3.0+ emits internal warnings per timed out scans (used by csdiff to
8686
# eliminate false positivies that such a scan would otherwise cause) ==> force

upload-release.sh

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

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

0 commit comments

Comments
 (0)