Skip to content

Commit 77e3f3f

Browse files
committed
change owner danmar to cppcheck-opensource
1 parent ef91022 commit 77e3f3f

16 files changed

Lines changed: 39 additions & 39 deletions

.github/workflows/cifuzz.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ permissions:
1010
jobs:
1111
Fuzzing:
1212
runs-on: ubuntu-latest
13-
if: ${{ github.repository_owner == 'danmar' }}
13+
if: ${{ github.repository_owner == 'cppcheck-opensource' }}
1414
steps:
1515
- name: Build Fuzzers
1616
id: build

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
scan:
1414
runs-on: ubuntu-latest
15-
if: ${{ github.repository_owner == 'danmar' }}
15+
if: ${{ github.repository_owner == 'cppcheck-opensource' }}
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:

.github/workflows/iwyu.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131

3232
runs-on: ${{ matrix.os }}
33-
if: ${{ github.repository_owner == 'danmar' }}
33+
if: ${{ github.repository_owner == 'cppcheck-opensource' }}
3434

3535
container:
3636
image: ${{ matrix.image }}
@@ -192,7 +192,7 @@ jobs:
192192
fail-fast: false
193193

194194
runs-on: ubuntu-22.04
195-
if: ${{ github.repository_owner == 'danmar' }}
195+
if: ${{ github.repository_owner == 'cppcheck-opensource' }}
196196

197197
env:
198198
QT_VERSION: 6.10.0

.github/workflows/release-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build:
2323

2424
runs-on: windows-2025
25-
if: ${{ github.repository_owner == 'danmar' }}
25+
if: ${{ github.repository_owner == 'cppcheck-opensource' }}
2626

2727
env:
2828
PYTHON_VERSION: 3.14

.github/workflows/selfcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ jobs:
172172

173173
- name: Fetch corpus
174174
run: |
175-
wget https://github.com/danmar/cppcheck/archive/refs/tags/2.8.tar.gz
175+
wget https://github.com/cppcheck-opensource/cppcheck/archive/refs/tags/2.8.tar.gz
176176
tar xvf 2.8.tar.gz
177177
178178
- name: CMake (corpus / no test)

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ These are some guidelines *any* contributor should follow. They will help to mak
66

77
## Code Changes
88

9-
Code contributions are handled via GitHub pull requests: https://github.com/danmar/cppcheck/pulls.
9+
Code contributions are handled via GitHub pull requests: https://github.com/cppcheck-opensource/cppcheck/pulls.
1010

1111
If you file a pull request you might not get a reply immediately. We are a very small team and it might not fit in the current scope or time.
1212

@@ -18,7 +18,7 @@ Also after you filed a pull request please be ready to reply to questions and fe
1818

1919
Please do not be discouraged if your change was rejected or if the review process might not have been as smooth as it could have been.
2020

21-
Each change should be accompanied with a unit ([C++](https://github.com/danmar/cppcheck/tree/main/test)) or integration ([Python](https://github.com/danmar/cppcheck/tree/main/test/cli)) test to ensure that it doesn't regress with future changes. Negative tests (testing the opposite behavior) would be favorable but might not be required or might already exist depending on the change. Tests which introduce `TODO_ASSERT_` or `@pytest.mark.skip`/`@pytest.mark.xfail` should have tickets filed.
21+
Each change should be accompanied with a unit ([C++](https://github.com/cppcheck-opensource/cppcheck/tree/main/test)) or integration ([Python](https://github.com/cppcheck-opensource/cppcheck/tree/main/test/cli)) test to ensure that it doesn't regress with future changes. Negative tests (testing the opposite behavior) would be favorable but might not be required or might already exist depending on the change. Tests which introduce `TODO_ASSERT_` or `@pytest.mark.skip`/`@pytest.mark.xfail` should have tickets filed.
2222

2323
If the change is modifying existing behavior (i.e. adding a feature or fixing a bug) it should be accompanied by an issue in the [tracker](https://trac.cppcheck.net) (if you do not have access we can assist with that). Depending on the change it might also warrant an entry in `releasenotes.txt`.
2424

@@ -56,7 +56,7 @@ So if you start spending a lot of time on these, you might want to get into touc
5656

5757
## simplecpp
5858

59-
At its core Cppcheck is relying on the `simplecpp` library which is a preprocessor implementation which was spun off into its [separate project](https://github.com/danmar/simplecpp) with its own [bug tracker](https://github.com/danmar/simplecpp/issues). This is also maintained by the Cppcheck developers and contributions to it are also welcome.
59+
At its core Cppcheck is relying on the `simplecpp` library which is a preprocessor implementation which was spun off into its [separate project](https://github.com/cppcheck-opensource/simplecpp) with its own [bug tracker](https://github.com/cppcheck-opensource/simplecpp/issues). This is also maintained by the Cppcheck developers and contributions to it are also welcome.
6060

6161
## Translations
6262

addons/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ Addons are scripts that analyses Cppcheck dump files to check compatibility with
44

55
## Supported addons
66

7-
+ [misra.py](https://github.com/danmar/cppcheck/blob/main/addons/misra.py)
8-
Used to verify compliance with MISRA C 2012 - a proprietary set of guidelines to avoid such questionable code, developed for embedded systems. Since this standard is proprietary, cppcheck does not display error text by specifying only the number of violated rules (for example, [c2012-21.3]). If you want to display full texts for violated rules, you will need to create a text file containing MISRA rules, which you will have to pass when calling the script with `--rule-texts` key. Some examples of rule texts files available in [tests directory](https://github.com/danmar/cppcheck/blob/main/addons/test/misra/).
9-
+ [y2038.py](https://github.com/danmar/cppcheck/blob/main/addons/y2038.py)
10-
Checks code for [year 2038 problem](https://en.wikipedia.org/wiki/Year_2038_problem) safety. See complete description [here](https://github.com/danmar/cppcheck/blob/main/addons/doc/y2038.md).
11-
+ [threadsafety.py](https://github.com/danmar/cppcheck/blob/main/addons/threadsafety.py)
7+
+ [misra.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/misra.py)
8+
Used to verify compliance with MISRA C 2012 - a proprietary set of guidelines to avoid such questionable code, developed for embedded systems. Since this standard is proprietary, cppcheck does not display error text by specifying only the number of violated rules (for example, [c2012-21.3]). If you want to display full texts for violated rules, you will need to create a text file containing MISRA rules, which you will have to pass when calling the script with `--rule-texts` key. Some examples of rule texts files available in [tests directory](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/test/misra/).
9+
+ [y2038.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/y2038.py)
10+
Checks code for [year 2038 problem](https://en.wikipedia.org/wiki/Year_2038_problem) safety. See complete description [here](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/doc/y2038.md).
11+
+ [threadsafety.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/threadsafety.py)
1212
Analyse Cppcheck dump files to locate threadsafety issues like static local objects used by multiple threads.
13-
+ [naming.py](https://github.com/danmar/cppcheck/blob/main/addons/naming.py)
13+
+ [naming.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/naming.py)
1414
Enforces naming conventions across the code.
15-
+ [namingng.py](https://github.com/danmar/cppcheck/blob/main/addons/namingng.py)
15+
+ [namingng.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/namingng.py)
1616
Enforces naming conventions across the code. Enhanced version with support for type prefixes in variable and function names.
17-
+ [findcasts.py](https://github.com/danmar/cppcheck/blob/main/addons/findcasts.py)
17+
+ [findcasts.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/findcasts.py)
1818
Locates casts in the code.
19-
+ [misc.py](https://github.com/danmar/cppcheck/blob/main/addons/misc.py)
19+
+ [misc.py](https://github.com/cppcheck-opensource/cppcheck/blob/main/addons/misc.py)
2020
Performs miscellaneous checks.
2121

2222
### Other files
@@ -68,5 +68,5 @@ This allows you to add additional parameters when calling the script (for exampl
6868

6969
When using the graphical interface `cppcheck-gui`, the selection and configuration of addons is carried out on the tab `Addons and tools` in the project settings (`Edit Project File`):
7070

71-
![Screenshot](https://raw.githubusercontent.com/danmar/cppcheck/main/addons/doc/img/cppcheck-gui-addons.png)
71+
![Screenshot](https://raw.githubusercontent.com/cppcheck-opensource/cppcheck/main/addons/doc/img/cppcheck-gui-addons.png)
7272

createrelease

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# Create 2.18.x branch
5353
# git checkout -b 2.18.x ; git push -u origin 2.18.x
5454
# in fork:
55-
# * add upstream: git remote add upstream git@github.com:danmar/cppcheck.git
55+
# * add upstream: git remote add upstream git@github.com:/cppcheck-opensource//cppcheck.git
5656
# * add branch: git fetch upstream 2.19.x
5757
#
5858
# Release notes:
@@ -124,7 +124,7 @@
124124
# * daca: cd /var && nice tar -cJf ~/daca.tar.xz daca@home
125125
# * git: git checkout -f && git checkout main && git pull && tar -cJf git.tar.xz .git
126126
# * git log 2.16.0..2.17.0 > Changelog
127-
# * mkdir out && python3 ~/cppchecksolutions/release/getWorkflowAndIssueLogs.py -r danmar/cppcheck -t 2.15.0 -p out
127+
# * mkdir out && python3 ~/cppchecksolutions/release/getWorkflowAndIssueLogs.py -r /cppcheck-opensource//cppcheck -t 2.15.0 -p out
128128

129129
# Folder/tag to use
130130
folder=$1

htmlreport/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
),
1717
long_description=readme,
1818
author="Cppcheck Team",
19-
url="https://github.com/danmar/cppcheck",
19+
url="https://github.com/cppcheck-opensource/cppcheck",
2020
license="GPL",
2121
packages=find_packages(exclude=("tests", "docs")),
2222
use_scm_version={"root": ".."},

man/manual-ja.docbook

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1702,11 +1702,11 @@ Checking unusedvar.cpp...
17021702

17031703
<itemizedlist>
17041704
<listitem>
1705-
<para>Cppcheck プロジェクトはいくつかのアドオンを以下の場所で提供しています。: <uri>http://github.com/danmar/cppcheck/blob/master/addons</uri></para>
1705+
<para>Cppcheck プロジェクトはいくつかのアドオンを以下の場所で提供しています。: <uri>http://github.com/cppcheck-opensource/cppcheck/blob/master/addons</uri></para>
17061706
</listitem>
17071707

17081708
<listitem>
1709-
<para>ublinterは規格で定義されていない未定義動作に注力した&quot;lint&quot;です。: <uri>http://github.com/danmar/ublinter</uri></para>
1709+
<para>ublinterは規格で定義されていない未定義動作に注力した&quot;lint&quot;です。: <uri>http://github.com/cppcheck-opensource/ublinter</uri></para>
17101710
</listitem>
17111711
</itemizedlist>
17121712

0 commit comments

Comments
 (0)