Merge pull request #9343 from mr-raj12/fix-http-urls-master
Some checks are pending
Lint / lint (push) Waiting to run
CI / lint (push) Waiting to run
CI / security (push) Waiting to run
CI / asan_ubsan (push) Blocked by required conditions
CI / native_tests (push) Blocked by required conditions
CI / vm_tests (Haiku, false, haiku, r1beta5) (push) Blocked by required conditions
CI / vm_tests (NetBSD, false, netbsd, 10.1) (push) Blocked by required conditions
CI / vm_tests (OmniOS, false, omnios, r151056) (push) Blocked by required conditions
CI / vm_tests (OpenBSD, false, openbsd, 7.7) (push) Blocked by required conditions
CI / vm_tests (borg-freebsd-14-x86_64-gh, FreeBSD, true, freebsd, 14.3) (push) Blocked by required conditions
CI / windows_tests (push) Blocked by required conditions
CodeQL / Analyze (push) Waiting to run

upgrade http:// URLs to https:// and remove dead librelist.com link, fixes #9342
This commit is contained in:
TW 2026-02-16 18:40:51 +01:00 committed by GitHub
commit 045701558e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 8 additions and 9 deletions

View file

@ -488,7 +488,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
View file

@ -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

View file

@ -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>

View file

@ -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?),

View file

@ -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",

View file

@ -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.