Skip to content

Commit

Permalink
Add SPDX license identifier to Python files and shell scripts
Browse files Browse the repository at this point in the history
SPDX does not offer an identifier for Apache 2.0 or any later
version. Apache-2.0 is the closest identified.
  • Loading branch information
gruenich committed Nov 23, 2024
1 parent d35b4e5 commit c0a8e05
Show file tree
Hide file tree
Showing 116 changed files with 127 additions and 0 deletions.
1 change: 1 addition & 0 deletions bin/dul-receive-pack
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# dul-receive-pack - git-receive-pack in python
# Copyright (C) 2008 John Carr <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions bin/dul-upload-pack
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# dul-upload-pack - git-upload-pack in python
# Copyright (C) 2008 John Carr <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions bin/dulwich
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# command-line interface for Dulwich
# Copyright (C) 2020 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions devscripts/PREAMBLE.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
2 changes: 2 additions & 0 deletions devscripts/replace-preamble.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/zsh
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later

perl -i -p0e "s{\Q$(cat PREAMBLE.py.old)\E}{$(cat devscripts/PREAMBLE.py)}g" dulwich/**/*.py bin/dul*
perl -i -p0e "s{\Q$(cat PREAMBLE.c.old)\E}{$(cat devscripts/PREAMBLE.c)}g" dulwich/*.c
1 change: 1 addition & 0 deletions dulwich/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2007 James Westby <[email protected]>
# Copyright (C) 2008 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2015 Jonas Haag <[email protected]>
# Copyright (C) 2015 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/bundle.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# bundle.py -- Bundle format support
# Copyright (C) 2020 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Copyright (C) 2008-2011 Jelmer Vernooij <[email protected]>
# vim: expandtab
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/client.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# client.py -- Implementation of the client side git protocols
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/cloud/gcs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# object_store.py -- Object store for git objects
# Copyright (C) 2021 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# config.py - Reading and writing Git config files
# Copyright (C) 2011-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/contrib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# __init__.py -- Contrib module for Dulwich
# Copyright (C) 2014 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/contrib/paramiko_vendor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# paramiko_vendor.py -- paramiko implementation of the SSHVendor interface
# Copyright (C) 2013 Aaron O'Mullan <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/contrib/release_robot.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# release_robot.py
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/contrib/requests_vendor.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# requests_vendor.py -- requests implementation of the AbstractHttpGitClient interface
# Copyright (C) 2022 Eden Shalit <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/contrib/swift.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
# Author: Fabien Boucher <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Copyright (C) 2022 Daniele Trifirò <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/diff_tree.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# diff_tree.py -- Utilities for diffing files and trees.
# Copyright (C) 2010 Google, Inc.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2007 James Westby <[email protected]>
# Copyright (C) 2009-2012 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/fastexport.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# __init__.py -- Fast export/import functionality
# Copyright (C) 2010-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/file.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# file.py -- Safe access to git files
# Copyright (C) 2010 Google, Inc.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/graph.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# vim:ts=4:sw=4:softtabstop=4:smarttab:expandtab
# Copyright (c) 2020 Kevin B. Hendricks, Stratford Ontario Canada
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/greenthreads.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#
# Author: Fabien Boucher <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/hooks.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# hooks.py -- for dealing with git hooks
# Copyright (C) 2012-2013 Jelmer Vernooij and others.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/ignore.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Copyright (C) 2017 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/index.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# index.py -- File parser/writer for the git index file
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/lfs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# lfs.py -- Implementation of the LFS
# Copyright (C) 2020 Jelmer Vernooij
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/line_ending.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# line_ending.py -- Line ending conversion functions
# Copyright (C) 2018-2018 Boris Feld <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/log_utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# log_utils.py -- Logging utilities for Dulwich
# Copyright (C) 2010 Google, Inc.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/lru_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2006, 2008 Canonical Ltd
# Copyright (C) 2022 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/mailmap.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# mailmap.py -- Mailmap reader
# Copyright (C) 2018 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/object_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
# and others
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2007 James Westby <[email protected]>
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/objectspec.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# objectspec.py -- Object specification
# Copyright (C) 2014 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/pack.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2007 James Westby <[email protected]>
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/patch.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# patch.py -- For dealing with packed-style patches.
# Copyright (C) 2009-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/porcelain.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# porcelain.py -- Porcelain-like layer on top of Dulwich
# Copyright (C) 2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2008 John Carr <[email protected]>
# Copyright (C) 2008-2012 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/reflog.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# reflog.py -- Parsing and writing reflog files
# Copyright (C) 2015 Jelmer Vernooij and others.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/refs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# refs.py -- For dealing with git refs
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2007 James Westby <[email protected]>
# Copyright (C) 2008-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2008 John Carr <[email protected]>
# Copyright(C) 2011-2012 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/stash.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# stash.py
# Copyright (C) 2018 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/submodule.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# config.py - Reading and writing Git config files
# Copyright (C) 2011-2013 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# __init__.py -- The tests for dulwich
# Copyright (C) 2024 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/tests/test_object_store.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# test_object_store.py -- tests for object_store.py
# Copyright (C) 2008 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# utils.py -- Test utilities for Dulwich.
# Copyright (C) 2010 Google, Inc.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/walk.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# walk.py -- General implementation of walking commits and their contents.
# Copyright (C) 2010 Google, Inc.
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
1 change: 1 addition & 0 deletions dulwich/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# Copyright (C) 2010 Google, Inc.
# Copyright (C) 2012 Jelmer Vernooij <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
# Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
# General Public License as public by the Free Software Foundation; version 2.0
# or (at your option) any later version. You can redistribute it and/or
Expand Down
2 changes: 2 additions & 0 deletions examples/clone.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later

"""Clone.

This trivial script demonstrates how to clone or lock a remote repository.
Expand Down
Loading

0 comments on commit c0a8e05

Please sign in to comment.