Framework: partially sync with upstream
Taken from: HardenedBSD
This commit is contained in:
parent
81e9c14845
commit
30a995ef8c
3 changed files with 40 additions and 9 deletions
|
|
@ -6,6 +6,9 @@ BEGIN {
|
|||
gl_tuple_len = 0
|
||||
crates_len = 0
|
||||
package_name = "<unknown>"
|
||||
crate_name = "<unknown>"
|
||||
crate_version = "<unknown>"
|
||||
crate_source = "<unknown>"
|
||||
|
||||
gitlab_sites["https://gitlab.com"] = 1
|
||||
gitlab_sites["https://gitlab.freedesktop.org"] = 1
|
||||
|
|
@ -13,19 +16,37 @@ BEGIN {
|
|||
gitlab_sites["https://gitlab.redox-os.org"] = 1
|
||||
}
|
||||
|
||||
/^"checksum .* .* \(registry\+.*\)" = ".*"/ {
|
||||
# $2: crate
|
||||
# $3: version
|
||||
# $4: url
|
||||
# $6: checksum
|
||||
crates[crates_len++] = sprintf("%s-%s", $2, $3)
|
||||
}
|
||||
|
||||
/^name = ".*"/ {
|
||||
crate_name = $3
|
||||
gsub(/"/, "", crate_name)
|
||||
|
||||
package_name = $3
|
||||
gsub("[^a-zA-Z_]", "", package_name)
|
||||
}
|
||||
|
||||
/^version = ".*"/ {
|
||||
crate_version = $3
|
||||
gsub(/"/, "", crate_version)
|
||||
}
|
||||
|
||||
/^source = ".*"/ {
|
||||
crate_source = $3
|
||||
gsub(/"/, "", crate_source)
|
||||
}
|
||||
|
||||
/^\[\[package\]\]$/ {
|
||||
add_crate()
|
||||
}
|
||||
|
||||
function add_crate() {
|
||||
if (crate_source == "registry+https://github.com/rust-lang/crates.io-index") {
|
||||
crates[crates_len++] = sprintf("%s-%s", crate_name, crate_version)
|
||||
}
|
||||
crate_name = "<unknown>"
|
||||
crate_version = "<unknown>"
|
||||
crate_source = "<unknown>"
|
||||
}
|
||||
|
||||
function split_url(s) {
|
||||
# scheme:[//[user[:password]@]host[:port]][/path][?query][#fragment]
|
||||
split(s, url_scheme, "://")
|
||||
|
|
@ -112,6 +133,8 @@ function print_array(start, arr, arrlen) {
|
|||
}
|
||||
|
||||
END {
|
||||
add_crate()
|
||||
|
||||
if (gh_tuple_len > 0 && ENVIRON["USE_GITHUB"] == "") {
|
||||
printf "USE_GITHUB=\tnodefault\n"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -54,7 +54,7 @@ _KDE_RELNAME= KDE${_KDE_VERSION}
|
|||
|
||||
# === VERSIONS OF THE DIFFERENT COMPONENTS =====================================
|
||||
# Current KDE desktop.
|
||||
KDE_PLASMA_VERSION?= 5.17.3
|
||||
KDE_PLASMA_VERSION?= 5.17.4
|
||||
KDE_PLASMA_BRANCH?= stable
|
||||
|
||||
# Current KDE frameworks.
|
||||
|
|
|
|||
8
UPDATING
8
UPDATING
|
|
@ -5,6 +5,14 @@ they are unavoidable.
|
|||
You should get into the habit of checking this file for changes each time
|
||||
you update your ports collection, before attempting any port upgrades.
|
||||
|
||||
20191204
|
||||
AFFECTS: users of mail/nextcloud-mail
|
||||
AUTHOR: brnrd@FreeBSD.org
|
||||
|
||||
Version 0.20.0 removed the default mail configuration via config.php.
|
||||
All users will be prompted to enter account and SMTP- and IMAP-server
|
||||
details for sending and reading email.
|
||||
|
||||
20191126:
|
||||
AFFECTS: consumers of net/py-urllib3
|
||||
AUTHOR: kai@FreeBSD.org
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue