Skip to content

Commit

Permalink
README,doc,*.sh: use the new upstream namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kdudka committed Aug 12, 2021
1 parent 4cca467 commit e549496
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ compiler (gcc, g++, ...) and put it to your $PATH. cswrap --help prints usage
to standard error output. You can find the up2date sources in the following
repository:

https://github.com/kdudka/cswrap
https://github.com/csutils/cswrap

cswrap is licensed under GPLv3+, see COPYING for details. Please report bugs
and feature requests on GitHub using the above URL.
2 changes: 1 addition & 1 deletion doc/csexec.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ENVIRONMENT VARIABLES

BUGS
----
Please report bugs and feature requests at https://github.com/kdudka/cswrap .
Please report bugs and feature requests at https://github.com/csutils/cswrap .


AUTHOR
Expand Down
2 changes: 1 addition & 1 deletion doc/cswrap.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ENVIRONMENT VARIABLES

BUGS
----
Please report bugs and feature requests at https://github.com/kdudka/cswrap .
Please report bugs and feature requests at https://github.com/csutils/cswrap .


AUTHOR
Expand Down
6 changes: 3 additions & 3 deletions make-srpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ VER="`echo "$VER" | sed "s/-.*-/.$TIMESTAMP./"`"

BRANCH="`git rev-parse --abbrev-ref HEAD`"
test -n "$BRANCH" || die "failed to get current branch name"
test master = "${BRANCH}" || VER="${VER}.${BRANCH//-/_}"
test "main" = "${BRANCH}" || VER="${VER}.${BRANCH//-/_}"
test -z "`git diff HEAD`" || VER="${VER}.dirty"

NV="${PKG}-${VER}"
Expand Down Expand Up @@ -79,8 +79,8 @@ Summary: Generic compiler wrapper
Group: Development/Tools
License: GPLv3+
URL: https://github.com/kdudka/%{name}
Source0: https://github.com/kdudka/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
URL: https://github.com/csutils/%{name}
Source0: https://github.com/csutils/%{name}/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
# cswrap-1.3.0+ emits internal warnings per timed out scans (used by csdiff to
# eliminate false positivies that such a scan would otherwise cause) ==> force
Expand Down
4 changes: 2 additions & 2 deletions upload-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ done
JSON="./${NV}-github-relase.js"

# create a new release on GitHub
curl "https://api.github.com/repos/${USER}/${NAME}/releases" \
curl "https://api.github.com/repos/csutils/${NAME}/releases" \
-o "$JSON" --fail --verbose \
--header "Authorization: token $TOKEN" \
--data '{
"tag_name": "'"$TAG"'",
"target_commitish": "master",
"target_commitish": "main",
"name": "'"$NV"'",
"draft": false,
"prerelease": false
Expand Down

0 comments on commit e549496

Please sign in to comment.