File tree 3 files changed +12
-10
lines changed
3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 1
- codescan-diff utilities
2
- =======================
1
+ csdiff, csgrep, and friends
2
+ ===========================
3
3
This repository contains source codes of the csdiff tool for comparing code
4
4
scan defect lists in order to find out added or fixed defects, and the csgrep
5
5
utility for filtering defect lists using various filtering predicates. You
6
6
can find the up2date sources in the following repository:
7
7
8
- https://github.com/kdudka /csdiff
8
+ https://github.com/csutils /csdiff
9
9
10
10
The codescan-diff utilities are licensed under GPLv3+, see COPYING for details.
11
11
Please report bugs and feature requests on GitHub using the above URL.
12
12
13
13
14
14
Dependences
15
15
-----------
16
- * Boost 1.41+
16
+ * Boost C++ Libraries
17
17
18
- * CMake 2.8+
18
+ * CMake 2.8.12 +
19
19
20
20
21
21
Manual Installation
@@ -49,6 +49,8 @@ List of Utilities
49
49
50
50
cssort - sort the given defect list by the selected key
51
51
52
+ cstrans-df-run - transform RUN line in a Dockerfile
53
+
52
54
53
55
Documentation
54
56
-------------
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ VER="`echo "$VER" | sed "s/-.*-/.$TIMESTAMP./"`"
47
47
48
48
BRANCH=" ` git rev-parse --abbrev-ref HEAD` "
49
49
test -n " $BRANCH " || die " failed to get current branch name"
50
- test master = " ${BRANCH} " || VER=" ${VER} .${BRANCH// -/ _} "
50
+ test " main " = " ${BRANCH} " || VER=" ${VER} .${BRANCH// -/ _} "
51
51
test -z " ` git diff HEAD` " || VER=" ${VER} .dirty"
52
52
53
53
NV=" ${PKG} -${VER} "
@@ -87,8 +87,8 @@ Release: 1%{?dist}
87
87
Summary: Non-interactive tools for processing code scan results in plain-text
88
88
89
89
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
92
92
93
93
# the following upstream commit is needed to work with up2date csdiff/csgrep
94
94
# https://github.com/kdudka/csmock/commit/48b09b3a
Original file line number Diff line number Diff line change 44
44
JSON=" ./${NV} -github-relase.js"
45
45
46
46
# 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" \
48
48
-o " $JSON " --fail --verbose \
49
49
--header " Authorization: token $TOKEN " \
50
50
--data ' {
51
51
"tag_name": "' " $TAG " ' ",
52
- "target_commitish": "master ",
52
+ "target_commitish": "main ",
53
53
"name": "' " $NV " ' ",
54
54
"draft": false,
55
55
"prerelease": false
You can’t perform that action at this time.
0 commit comments