mirror of
https://github.com/borgbackup/borg.git
synced 2026-02-18 18:19:16 -05:00
upgrade http:// URLs to https:// and remove dead librelist.com link, fixes #9342
This commit is contained in:
parent
e7ad8ef54b
commit
fc89a66dc7
6 changed files with 8 additions and 9 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -485,7 +485,7 @@ jobs:
|
|||
netbsd)
|
||||
arch="$(uname -m)"
|
||||
sudo -E mkdir -p /usr/pkg/etc/pkgin
|
||||
echo "http://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/${arch}/10.1/All" | sudo tee /usr/pkg/etc/pkgin/repositories.conf > /dev/null
|
||||
echo "https://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/${arch}/10.1/All" | sudo tee /usr/pkg/etc/pkgin/repositories.conf > /dev/null
|
||||
sudo -E pkgin update
|
||||
sudo -E pkgin -y upgrade
|
||||
sudo -E pkgin -y install zstd lz4 xxhash git
|
||||
|
|
|
|||
2
Vagrantfile
vendored
2
Vagrantfile
vendored
|
|
@ -97,7 +97,7 @@ end
|
|||
|
||||
def packages_netbsd
|
||||
return <<-EOF
|
||||
echo 'http://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$arch/9.3/All' > /usr/pkg/etc/pkgin/repositories.conf
|
||||
echo 'https://ftp.NetBSD.org/pub/pkgsrc/packages/NetBSD/$arch/9.3/All' > /usr/pkg/etc/pkgin/repositories.conf
|
||||
pkgin update
|
||||
pkgin -y upgrade
|
||||
pkg_add zstd lz4 xxhash git
|
||||
|
|
|
|||
|
|
@ -26,6 +26,5 @@
|
|||
.. _mfusepy: https://pypi.org/project/mfusepy/
|
||||
.. _pyfuse3: https://pypi.org/project/pyfuse3/
|
||||
.. _userspace filesystems: https://en.wikipedia.org/wiki/Filesystem_in_Userspace
|
||||
.. _Cython: http://cython.org/
|
||||
.. _Cython: https://cython.org/
|
||||
.. _virtualenv: https://pypi.org/project/virtualenv/
|
||||
.. _mailing list discussion about internals: http://librelist.com/browser/attic/2014/5/6/questions-and-suggestions-about-inner-working-of-attic>
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@ Data structures and file formats
|
|||
================================
|
||||
|
||||
This page documents the internal data structures and storage
|
||||
mechanisms of Borg. It is partly based on `mailing list
|
||||
discussion about internals`_ and also on static code analysis.
|
||||
mechanisms of Borg. It is partly based on mailing list
|
||||
discussions and also on static code analysis.
|
||||
|
||||
.. todo:: Clarify terms, perhaps create a glossary.
|
||||
ID (client?) vs. key (repository?),
|
||||
|
|
|
|||
|
|
@ -298,7 +298,7 @@ def define_exclude_and_patterns(add_option, *, tag_files=False, strip_components
|
|||
"--exclude-caches",
|
||||
dest="exclude_caches",
|
||||
action="store_true",
|
||||
help="exclude directories that contain a CACHEDIR.TAG file " "(http://www.bford.info/cachedir/spec.html)",
|
||||
help="exclude directories that contain a CACHEDIR.TAG file " "(https://www.bford.info/cachedir/spec.html)",
|
||||
)
|
||||
add_option(
|
||||
"--exclude-if-present",
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ def get_cache_dir(*, legacy=False, create=True):
|
|||
"""
|
||||
# This file is a cache directory tag created by Borg.
|
||||
# For information about cache directory tags, see:
|
||||
# http://www.bford.info/cachedir/spec.html
|
||||
# https://www.bford.info/cachedir/spec.html
|
||||
"""
|
||||
).encode("ascii")
|
||||
)
|
||||
|
|
@ -184,7 +184,7 @@ def get_config_dir(*, legacy=False, create=True):
|
|||
def dir_is_cachedir(path=None, dir_fd=None):
|
||||
"""Determines whether the specified directory is a cache directory (and
|
||||
therefore should potentially be excluded from the backup) according to
|
||||
the CACHEDIR.TAG protocol (http://www.bford.info/cachedir/spec.html).
|
||||
the CACHEDIR.TAG protocol (https://www.bford.info/cachedir/spec.html).
|
||||
|
||||
If dir_fd is provided, operations will be based on the directory file descriptor.
|
||||
Otherwise (path is provided), operations will be based on the directory path.
|
||||
|
|
|
|||
Loading…
Reference in a new issue