Bug 259532 - devel/kf5-solid: Correct broken UCL in pkg-message
Summary: devel/kf5-solid: Correct broken UCL in pkg-message
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: freebsd-kde (group)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2021-10-29 17:33 UTC by Dan Langille
Modified: 2021-11-21 16:56 UTC (History)
0 users

See Also:
bugzilla: maintainer-feedback? (kde)


Attachments
add missing EOM to UCL (311 bytes, patch)
2021-10-29 17:33 UTC, Dan Langille
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Dan Langille freebsd_committer freebsd_triage 2021-10-29 17:33:43 UTC
Created attachment 229125 [details]
add missing EOM to UCL

The attached patch will fix devel/kf5-solid/pkg-message

Unpatched:

[pkg01 dan /usr/local/poudriere/ports/default] % /usr/local/bin/ucl_tool --format json --in devel/kf5-solid/pkg-message
Failed to parse input file: error while parsing <unknown>: line: 27, column: 0 - 'unterminated multiline value', character: ']'


Patched:

[pkg01 dan ~/ports/head] % /usr/local/bin/ucl_tool --format json --in devel/kf5-solid/pkg-message                                                                17:30:58
[
    {
        "type": "install",
        "message": "Solid has UDisks2 backend turned on by default. If you want to use it, install\nsysutils/bsdisks package and **disable** hald (set hald_enable=\"NO\" in rc.conf or\njust remove the package). If you want to stay with hald, don't install bsdisks, as\nyou'll get duplicated entries for removable disks."
    },
    {
        "type": "upgrade",
        "maximum_version": "5.65.0_1",
        "message": "Solid now has UDisks2 backend turned on by default. If you want to use it, install\nsysutils/bsdisks package and **disable** hald (set hald_enable=\"NO\" in rc.conf or\njust remove the package). If you want to stay with hald, don't install bsdisks, as\nyou'll get duplicated entries for removable disks."
    },
    {
        "type": "upgrade",
        "maximum_version": "5.72.0",
        "message": "Solid now has the hald backend completely disabled."
    }
]