Skip to content

Commit 846f47f

Browse files
committed
README,*.sh: use the new upstream namespace
1 parent fb32526 commit 846f47f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

README

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
codescan-diff utilities
2-
=======================
1+
csdiff, csgrep, and friends
2+
===========================
33
This repository contains source codes of the csdiff tool for comparing code
44
scan defect lists in order to find out added or fixed defects, and the csgrep
55
utility for filtering defect lists using various filtering predicates. You
66
can find the up2date sources in the following repository:
77

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

1010
The codescan-diff utilities are licensed under GPLv3+, see COPYING for details.
1111
Please report bugs and feature requests on GitHub using the above URL.
1212

1313

1414
Dependences
1515
-----------
16-
* Boost 1.41+
16+
* Boost C++ Libraries
1717

18-
* CMake 2.8+
18+
* CMake 2.8.12+
1919

2020

2121
Manual Installation
@@ -49,6 +49,8 @@ List of Utilities
4949

5050
cssort - sort the given defect list by the selected key
5151

52+
cstrans-df-run - transform RUN line in a Dockerfile
53+
5254

5355
Documentation
5456
-------------

make-srpm.sh

+3-3
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}"
@@ -87,8 +87,8 @@ Release: 1%{?dist}
8787
Summary: Non-interactive tools for processing code scan results in plain-text
8888
8989
License: GPLv3+
90-
URL: https://github.com/kdudka/csdiff
91-
Source0: https://github.com/kdudka/csdiff/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
90+
URL: https://github.com/csutils/csdiff
91+
Source0: https://github.com/csutils/csdiff/releases/download/%{name}-%{version}/%{name}-%{version}.tar.xz
9292
9393
# the following upstream commit is needed to work with up2date csdiff/csgrep
9494
# https://github.com/kdudka/csmock/commit/48b09b3a

upload-release.sh

+2-2
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)