File tree Expand file tree Collapse file tree 3 files changed +12
-10
lines changed Expand file tree Collapse file tree 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+ ===========================
33This repository contains source codes of the csdiff tool for comparing code
44scan defect lists in order to find out added or fixed defects, and the csgrep
55utility for filtering defect lists using various filtering predicates. You
66can find the up2date sources in the following repository:
77
8- https://github.com/kdudka /csdiff
8+ https://github.com/csutils /csdiff
99
1010The codescan-diff utilities are licensed under GPLv3+, see COPYING for details.
1111Please report bugs and feature requests on GitHub using the above URL.
1212
1313
1414Dependences
1515-----------
16- * Boost 1.41+
16+ * Boost C++ Libraries
1717
18- * CMake 2.8+
18+ * CMake 2.8.12 +
1919
2020
2121Manual 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
5355Documentation
5456-------------
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ VER="`echo "$VER" | sed "s/-.*-/.$TIMESTAMP./"`"
4747
4848BRANCH=" ` git rev-parse --abbrev-ref HEAD` "
4949test -n " $BRANCH " || die " failed to get current branch name"
50- test master = " ${BRANCH} " || VER=" ${VER} .${BRANCH// -/ _} "
50+ test " main " = " ${BRANCH} " || VER=" ${VER} .${BRANCH// -/ _} "
5151test -z " ` git diff HEAD` " || VER=" ${VER} .dirty"
5252
5353NV=" ${PKG} -${VER} "
@@ -87,8 +87,8 @@ Release: 1%{?dist}
8787Summary: Non-interactive tools for processing code scan results in plain-text
8888
8989License: 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
Original file line number Diff line number Diff line change 4444JSON=" ./${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
You can’t perform that action at this time.
0 commit comments