Skip to content

Commit b17189a

Browse files
authored
Merge pull request #141 from aboutcode-org/140_owner_migration
140 owner migration
2 parents 5f9c45f + 3b3787a commit b17189a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+167
-121
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
Version v30.12.1
5+
----------------
6+
7+
- Update link references of ownership from nexB to aboutcode-org. https://github.com/aboutcode-org/univers/issues/140
8+
49

510
Version v30.12.0
611
----------------
@@ -37,7 +42,7 @@ Version v30.10.0
3742
Version v30.9.2
3843
----------------
3944

40-
- Fix unhashable error in GemVersion.
45+
- Fix unhashable error in GemVersion.
4146

4247

4348
Version v30.9.1
@@ -89,7 +94,7 @@ Version v30.5.0
8994
Version v30.4.0
9095
----------------
9196

92-
- Add support for forming VersionRange from a list of versions.Thank you
97+
- Add support for forming VersionRange from a list of versions.Thank you
9398
to Keshav Priyadarshi @keshav-space for this.
9499

95100

@@ -146,7 +151,7 @@ Version v30.0.0
146151
Version v21.4.9
147152
-----------------
148153

149-
- Add support Gentoo style versions.
154+
- Add support Gentoo style versions.
150155

151156

152157
Version v21.4.8

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# ScanCode is a trademark of nexB Inc.
55
# SPDX-License-Identifier: Apache-2.0
66
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
7-
# See https://github.com/nexB/skeleton for support or download.
7+
# See https://github.com/aboutcode-org/skeleton for support or download.
88
# See https://aboutcode.org for more information about nexB OSS projects.
99
#
1010

@@ -35,7 +35,7 @@ check:
3535
@echo "-> Run pycodestyle (PEP8) validation"
3636
@${ACTIVATE} pycodestyle --max-line-length=100 --exclude=.eggs,venv,lib,thirdparty,docs,migrations,settings.py,.cache .
3737
@echo "-> Run isort imports ordering validation"
38-
@${ACTIVATE} isort --sl --check-only -l 100 setup.py src tests .
38+
@${ACTIVATE} isort --sl --check-only -l 100 setup.py src tests .
3939
@echo "-> Run black validation"
4040
@${ACTIVATE} black --check --check -l 100 src tests setup.py
4141

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) nexB Inc. and others.
33
# SPDX-License-Identifier: Apache-2.0
44
#
5-
# Visit https://aboutcode.org and https://github.com/nexB/vulnerablecode
5+
# Visit https://aboutcode.org and https://github.com/aboutcode-org/vulnerablecode
66
# for support and download.
77
#
88
# Licensed under the Apache License, Version 2.0 (the "License");

README.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ranges and to compare two software package versions in VulnerableCode.
1616
Package version ranges and version constraints are useful and essential:
1717

1818
- When relating a known vulnerability or bug to a range of affected package
19-
versions. For instance a statement such as "vulnerability 123 affects
19+
versions. For instance a statement such as "vulnerability 123 affects
2020
package bar, version 3.1 and version 4.2 but not version 5" defines a
2121
range of bar versions affected by a vulnerability.
2222

@@ -78,7 +78,7 @@ include:
7878
This is supported in part by the `semantic_version
7979
<https://github.com/rbarrois/python-semanticversion>`_ library.
8080

81-
- pypi: handled by Python's packaging library and the standard
81+
- pypi: handled by Python's packaging library and the standard
8282
``packaging.version`` module.
8383

8484
- Rubygems which use a semver-like but not-quite-semver scheme and there can be
@@ -89,26 +89,26 @@ include:
8989
"OR" between constraints (that it call requirements).
9090
Gem are handled by Python port of the Rubygems requirements and version
9191
handling code from the `puppeteer tool
92-
<https://github.com/nexB/univers/blob/main/src/univers/debian.py.ABOUT>`_
92+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/debian.py.ABOUT>`_
9393

9494
- debian: handled by the `debian-inspector library
95-
<https://github.com/nexB/univers/blob/main/src/univers/debian.py.ABOUT>`_.
95+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/debian.py.ABOUT>`_.
9696

9797
- maven: handled by the embedded `pymaven library
98-
<https://github.com/nexB/univers/blob/main/src/univers/pymaven.py.ABOUT>`_.
98+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/pymaven.py.ABOUT>`_.
9999

100100
- rpm: handled by the embedded `rpm_vercmp library
101-
<https://github.com/nexB/univers/blob/main/src/univers/rpm.py.ABOUT>`_.
101+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/rpm.py.ABOUT>`_.
102102

103103
- golang (using semver)
104104

105105
- PHP composer
106106

107107
- ebuild/gentoo: handled by the embedded `gentoo_vercmp module
108-
<https://github.com/nexB/univers/blob/main/src/univers/gentoo.py.ABOUT>`_.
108+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/gentoo.py.ABOUT>`_.
109109

110110
- arch linux: handled by the embedded `arch utility module borrowed from msys2
111-
<https://github.com/nexB/univers/blob/main/src/univers/arch.py.ABOUT>`_.
111+
<https://github.com/aboutcode-org/univers/blob/main/src/univers/arch.py.ABOUT>`_.
112112

113113
- Alpine linux: handled using the base Gentoo version support and extras
114114
specific to Alpine.
@@ -172,7 +172,7 @@ Test if a version is within or outside a version range:
172172
Development
173173
============
174174

175-
Run these commands, starting from a git clone of https://github.com/nexB/univers ::
175+
Run these commands, starting from a git clone of https://github.com/aboutcode-org/univers ::
176176

177177
$ ./configure --dev
178178
$ source venv/bin/active
@@ -181,7 +181,7 @@ Run these commands, starting from a git clone of https://github.com/nexB/univers
181181

182182
We use the same development process as other AboutCode projects.
183183

184-
Visit https://github.com/nexB/univers and
184+
Visit https://github.com/aboutcode-org/univers and
185185
https://gitter.im/aboutcode-org/vulnerablecode and
186186
https://gitter.im/aboutcode-org/aboutcode for support and chat.
187187

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright (c) nexB Inc. and others. All rights reserved.
44
# SPDX-License-Identifier: Apache-2.0
55
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
6-
# See https://github.com/nexB/ for support or download.
6+
# See https://github.com/aboutcode-org/ for support or download.
77
# See https://aboutcode.org for more information about nexB OSS projects.
88
#
99

configure.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@rem Copyright (c) nexB Inc. and others. All rights reserved.
55
@rem SPDX-License-Identifier: Apache-2.0
66
@rem See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
7-
@rem See https://github.com/nexB/ for support or download.
7+
@rem See https://github.com/aboutcode-org/ for support or download.
88
@rem See https://aboutcode.org for more information about nexB OSS projects.
99

1010

conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# Copyright (c) nexB Inc. and others.
33
# SPDX-License-Identifier: Apache-2.0
44
#
5-
# Visit https://aboutcode.org and https://github.com/nexB/univers for support and download.
5+
# Visit https://aboutcode.org and https://github.com/aboutcode-org/univers for support and download.
66

77
collect_ignore = ["setup.py"]

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
# This points to aboutcode.readthedocs.io
4545
# In case of "undefined label" ERRORS check docs on intersphinx to troubleshoot
46-
# Link was created at commit - https://github.com/nexB/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83
46+
# Link was created at commit - https://github.com/aboutcode-org/aboutcode/commit/faea9fcf3248f8f198844fe34d43833224ac4a83
4747

4848
intersphinx_mapping = {
4949
"aboutcode": ("https://aboutcode.readthedocs.io/en/latest/", None),

docs/source/contribute/contrib_doc.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To get started, create or identify a working directory on your local machine.
1212

1313
Open that directory and execute the following command in a terminal session::
1414

15-
git clone https://github.com/nexB/skeleton.git
15+
git clone https://github.com/aboutcode-org/skeleton.git
1616

1717
That will create an ``/skeleton`` directory in your working directory.
1818
Now you can install the dependencies in a virtualenv::

docs/source/skeleton-usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ corrected. You can check to see if your corrections are valid by running:
118118
Once the wheels are collected and the ABOUT files are generated and correct,
119119
upload them to thirdparty.aboutcode.org/pypi by placing the wheels and ABOUT
120120
files from the thirdparty directory to the pypi directory at
121-
https://github.com/nexB/thirdparty-packages
121+
https://github.com/aboutcode-org/thirdparty-packages
122122

123123

124124
Usage after project initialization

0 commit comments

Comments
 (0)