Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

packages: add freebsd base mirror #9518

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contrib/depends/packages/freebsd_base.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package=freebsd_base
$(package)_version=11.3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$(package)_version=11.3
$(package)_version=14.1

11.3 EOL in 2020. Maybe bump? Idk

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Version bump PR here: #9453

$(package)_download_path=https://download.freebsd.org/ftp/releases/amd64/$($(package)_version)-RELEASE/
$(package)_download_path=https://archive.freebsd.org/old-releases/amd64/$($(package)_version)-RELEASE/
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
$(package)_download_path=https://archive.freebsd.org/old-releases/amd64/$($(package)_version)-RELEASE/
$(package)_download_path=https://download.freebsd.org/releases/amd64/$($(package)_version)-RELEASE/

Same (for 14.1)

note.. no need to change. The archive link has old and current files.. but the download link is keeping the existing link.

Copy link
Contributor Author

@plowsof plowsof Oct 14, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thankfully, updating to 14.1 breaks everything so we don't have to worry about this in this PR. adding a working mirror for the current version should be fine. (it seems compilers / other important things are bundled in the 'base')

$(package)_download_file=base.txz
$(package)_file_name=freebsd-base-$($(package)_version).txz
$(package)_sha256_hash=4599023ac136325b86f2fddeec64c1624daa83657e40b00b2ef944c81463a4ff
Expand Down
Loading