Skip to content

Commit

Permalink
Fixed #29 - Update link references of ownership from nexB to aboutcod…
Browse files Browse the repository at this point in the history
…e-org

Signed-off-by: Chin Yeung Li <[email protected]>
  • Loading branch information
chinyeungli committed Aug 20, 2024
1 parent 564a0f1 commit 7e4e420
Show file tree
Hide file tree
Showing 16 changed files with 39 additions and 39 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# ScanCode is a trademark of nexB Inc.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://github.com/nexB/dependency-inspector for support or download.
# See https://github.com/aboutcode-org/dependency-inspector for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#

Expand Down
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Copyright (c) nexB Inc. and others.
# SPDX-License-Identifier: Apache-2.0
#
# Visit https://aboutcode.org and https://github.com/nexB/ for support and download.
# Visit https://aboutcode.org and https://github.com/aboutcode-org/ for support and download.
# ScanCode is a trademark of nexB Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -16,4 +16,4 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
DepLock
===================

|license| |version| |build|
|license| |version| |build|

.. |license| image:: https://img.shields.io/badge/License-Apache--2.0-blue.svg?style=for-the-badge
:target: https://opensource.org/licenses/Apache-2.0
Expand All @@ -11,7 +11,7 @@ DepLock

.. |build| image:: https://img.shields.io/github/actions/workflow/status/nexB/dependency-inspector/ci.yml?style=for-the-badge&logo=github

**DepLock** (Dependency Locker) is a command line tool to generate package lockfiles,
**DepLock** (Dependency Locker) is a command line tool to generate package lockfiles,
and parsable package manifests to make it possible and easy to collect resolved dependencies
and accurate metadata for a project. It uses the standard package management tool for
each package type or ecosystem.
Expand Down Expand Up @@ -49,7 +49,7 @@ To install DepLock, follow these steps:
# Download the latest binary depending on your OS and architecture
# Replace <OS> with your operating system (linux, darwin, windows)
# Replace <ARCH> with your architecture (amd64, arm64)
curl -LO https://github.com/nexB/dependency-inspector/releases/latest/download/deplock-<OS>-<ARCH>
curl -LO https://github.com/aboutcode-org/dependency-inspector/releases/latest/download/deplock-<OS>-<ARCH>
# Make the binary executable
chmod +x deplock-<OS>-<ARCH>
Expand Down Expand Up @@ -102,7 +102,7 @@ Generating lockfile for an npm project:
Contribution
=============

We welcome contributions from the community! If you find a bug or have an idea for a new feature,
We welcome contributions from the community! If you find a bug or have an idea for a new feature,
please open an issue on the GitHub repository. If you want to contribute code, you can fork the
repository, make your changes, and submit a pull request.

Expand All @@ -112,7 +112,7 @@ repository, make your changes, and submit a pull request.

Development setup
------------------
Run these commands, starting from a git clone of https://github.com/nexB/dependency-inspector.git
Run these commands, starting from a git clone of https://github.com/aboutcode-org/dependency-inspector.git

.. code-block:: bash
Expand Down
4 changes: 2 additions & 2 deletions cmd/cocoapods.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/npm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/nuget.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/pnpm.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/pypi.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/
Expand Down
4 changes: 2 additions & 2 deletions cmd/swift.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/yarn.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package cmd

import (
"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/nexB/dependency-inspector
module github.com/aboutcode-org/dependency-inspector

go 1.22.3

Expand Down
2 changes: 1 addition & 1 deletion internal/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/

package main

import "github.com/nexB/dependency-inspector/cmd"
import "github.com/aboutcode-org/dependency-inspector/cmd"

func main() {
cmd.Execute()
Expand Down
20 changes: 10 additions & 10 deletions scripts/build-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
# ScanCode is a trademark of nexB Inc.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://github.com/nexB/dependency-inspector for support or download.
# See https://github.com/aboutcode-org/dependency-inspector for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#

platforms=(
"linux/arm64"
"linux/amd64"
"darwin/arm64"
"darwin/amd64"
"windows/arm64"
"linux/arm64"
"linux/amd64"
"darwin/arm64"
"darwin/amd64"
"windows/arm64"
"windows/amd64"
)

Expand All @@ -31,10 +31,10 @@ do
GOOS=${platform_split[0]}
GOARCH=${platform_split[1]}
output_name='deplock-'$GOOS'-'$GOARCH

if [ $GOOS = "windows" ]; then
output_name+='.exe'
fi
fi

env GOOS=$GOOS GOARCH=$GOARCH go build -ldflags "$build_flags" -o ./build/$output_name

Expand All @@ -46,4 +46,4 @@ do
exit 1
fi

done
done
4 changes: 2 additions & 2 deletions test/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Copyright (c) nexB Inc. and others. All rights reserved.
ScanCode is a trademark of nexB Inc.
SPDX-License-Identifier: Apache-2.0
See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
See https://github.com/nexB/dependency-inspector for support or download.
See https://github.com/aboutcode-org/dependency-inspector for support or download.
See https://aboutcode.org for more information about nexB OSS projects.
*/
Expand All @@ -15,7 +15,7 @@ import (
"path/filepath"
"testing"

"github.com/nexB/dependency-inspector/internal"
"github.com/aboutcode-org/dependency-inspector/internal"
)

func TestDoesFileExists(t *testing.T) {
Expand Down

0 comments on commit 7e4e420

Please sign in to comment.