[Bug 251031] graphics/krita: Fix RUN_DEPENDS for GMIC option
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251031 --- Comment #1 from commit-h...@freebsd.org --- A commit references this bug: Author: tcberner Date: Sun Nov 15 10:45:44 UTC 2020 New revision: 555192 URL: https://svnweb.freebsd.org/changeset/ports/555192 Log: graphics/krita: Fix RUN_DEPENDS for GMIC option - depend on the flavored port PR: 251031 Submitted by: Shane Changes: head/graphics/krita/Makefile -- You are receiving this mail because: You are the assignee for the bug.
[Bug 251031] graphics/krita: Fix RUN_DEPENDS for GMIC option
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251031 --- Comment #3 from commit-h...@freebsd.org --- A commit references this bug: Author: tcberner Date: Sun Nov 15 10:46:29 UTC 2020 New revision: 555193 URL: https://svnweb.freebsd.org/changeset/ports/555193 Log: MFH: r555192 graphics/krita: Fix RUN_DEPENDS for GMIC option - depend on the flavored port PR: 251031 Submitted by: Shane Approved by: ports-secteam (implicit) Changes: _U branches/2020Q4/ branches/2020Q4/graphics/krita/Makefile -- You are receiving this mail because: You are the assignee for the bug.
[Bug 251031] graphics/krita: Fix RUN_DEPENDS for GMIC option
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251031 Tobias C. Berner changed: What|Removed |Added Status|Open|Closed Flags|maintainer-feedback?(kde@Fr |maintainer-feedback+, |eeBSD.org), |merge-quarterly+ |merge-quarterly?| Resolution|--- |FIXED CC||tcber...@freebsd.org --- Comment #2 from Tobias C. Berner --- Thanks; Committed, and MFH-ed. mfg Tobias -- You are receiving this mail because: You are the assignee for the bug.
Problem reports for k...@freebsd.org that need special attention
To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status |Bug Id | Description +---+--- Open|248590 | devel/qca: Fails to build with libressl 1 problems total for which you should take action.
[Bug 251073] sysutils/plasma5-kinfocenter: show up FreeBSD 12.1 on FreeBSD 12.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251073 --- Comment #9 from marshall --- (In reply to Mikael Urankar from comment #6) The output of "ls -l /etc/os-release" is: /etc/os-release -> ../var/run/os-release and output of "cat /var/run/os-release" is: NAME=FreeBSD VERSION=12.2-RELEASE VERSION_ID=12.2 ID=freebsd ANSI_COLOR="0;31" PRETTY_NAME="FreeBSD 12.2-RELEASE" CPE_NAME=cpe:/o:freebsd:freebsd:12.2 HOME_URL=https://FreeBSD.org/ BUG_REPORT_URL=https://bugs.FreeBSD.org/ -- You are receiving this mail because: You are the assignee for the bug.
FreeBSD ports you maintain which are out of date
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/k...@freebsd.org.html Port| Current version | New version +-+ archivers/kf5-karchive | 5.75.0 | 5.76.0 +-+ devel/kf5-kcmutils | 5.75.0 | 5.76.0 +-+ devel/kf5-kcoreaddons | 5.75.0 | 5.76.0 +-+ devel/kf5-kio | 5.75.0 | 5.76.0 +-+ devel/kf5-ktexteditor | 5.75.0 | 5.76.0 +-+ graphics/kf5-kquickcharts | 5.75.0 | 5.76.0 +-+ graphics/kf5-prison | 5.75.0 | 5.76.0 +-+ textproc/kf5-kcodecs| 5.75.0 | 5.76.0 +-+ textproc/kf5-syntax-highlighting| 5.75.0 | 5.76.0 +-+ x11/kf5-kactivities-stats | 5.75.0 | 5.76.0 +-+ x11/kf5-kglobalaccel| 5.75.0 | 5.76.0 +-+ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Reported by:portscout!
[Bug 251073] sysutils/plasma5-kinfocenter: show up FreeBSD 12.1 on FreeBSD 12.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251073 --- Comment #10 from marshall --- (In reply to Adriaan de Groot from comment #8) Okey, I made a test.c file with what you give me and compile it by clang here is the test output: $ ./a.out 0: 12.2-RELEASE $ UNAME_r="derpderp" ./a.out 0: derpderp $ UNAME_r="something_not_fun" ./a.out 0: something_not_fun But this is still weird, it can not explain where is the "12.1-P10" comes from. Anyway, thanks. -- You are receiving this mail because: You are the assignee for the bug.
[Bug 251073] sysutils/plasma5-kinfocenter: show up FreeBSD 12.1 on FreeBSD 12.2
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251073 --- Comment #11 from marshall --- Hi, all: I have no choice but read the kinfocenter source code more carefully, Now I have a little knowledge of what function in KDE gives the mistake-version string. The related source code is "kinfocenter/Modules/about-distro/src/Module.cpp" after line 104: void Module::loadOSData() { .. KOSRelease os; .. // well this line is okey with kcm-about-distrorc file const QString distroName = cg.readEntry("Name", os.name()); // and this line gives the wrong version string const QString osrVersion = cg.readEntry("UseOSReleaseVersion", false) ? os.version() : os.versionId(); const QString versionId = cg.readEntry("Version", osrVersion); .. } case 1: say there is no Version and UseOSReleaseVersion information, osrVersion=os.version() which is 12.1 defined by KDE KOSRelease module and if UseOSRleaseVersion=true, then osrVersion=os.versionId(), which is "12.1-RELEASE-p10" case 2: say I set Version=12.2 then versionId = 12.2 Okey, So we know the class KOSRelease os gives wrong string. So Trace it into "/coreaddons/src/lib/util/kosrelease.cpp" and find it would read /etc/os-release file as: static QString defaultFilePath() { if (QFile::exists(QStringLiteral("/etc/os-release"))) { return QStringLiteral("/etc/os-release"); } else if (QFile::exists(QStringLiteral("/usr/lib/os-release"))) { return QStringLiteral("/usr/lib/os-release"); } else { return QString(); } } The I cat "/etc/os-release", it gives: NAME=FreeBSD VERSION=12.2-RELEASE VERSION_ID=12.2 ID=freebsd ANSI_COLOR="0;31" PRETTY_NAME="FreeBSD 12.2-RELEASE" CPE_NAME=cpe:/o:freebsd:freebsd:12.2 HOME_URL=https://FreeBSD.org/ BUG_REPORT_URL=https://bugs.FreeBSD.org/ This is crazy. everything looks okey, but where is the "12.1-RELEASE-p10" comes from? -- You are receiving this mail because: You are the assignee for the bug.