Bug 293453 - www/forgejo: requirement in rc script incorrect
Summary: www/forgejo: requirement in rc script incorrect
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Some People
Assignee: Dag-Erling Smørgrav
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2026-02-26 02:45 UTC by Robert William Vesterman
Modified: 2026-02-27 19:22 UTC (History)
0 users

See Also:
des: maintainer-feedback+


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Robert William Vesterman 2026-02-26 02:45:17 UTC
When my machine boots up, I get the following message in the log:

-----------
requirement `SYSLOG' in file `/usr/local/etc/rc.d/forgejo' has no providers.
-----------

I believe that the problem is that the REQUIRE in Forgejo's rc script should refer to "syslogd", not "SYSLOG". You can see this by (for example) running the following command in /etc/rc.d:

-----------
grep REQUIRE * | grep -i syslog
-----------

To be explicit, please note both that there should be a "d" at the end and that the lowercasing matters.
Comment 1 commit-hook freebsd_committer freebsd_triage 2026-02-27 09:49:11 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6a173071385b314a0aafa203e6fc53686b786b4e

commit 6a173071385b314a0aafa203e6fc53686b786b4e
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-02-26 04:11:57 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-02-27 09:47:54 +0000

    www/forgejo-lts: Fix rc script order

    PR:     293453
    MFH:    2026Q1

 www/forgejo-lts/Makefile         | 2 +-
 www/forgejo-lts/files/forgejo.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Comment 2 commit-hook freebsd_committer freebsd_triage 2026-02-27 09:49:12 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6e68cfdd7b8725cf8f586f9e7682575e4f83797f

commit 6e68cfdd7b8725cf8f586f9e7682575e4f83797f
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-02-26 04:11:20 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-02-27 09:47:54 +0000

    www/forgejo: Fix rc script order

    PR:     293453
    MFH:    2026Q1

 www/forgejo/Makefile         | 2 +-
 www/forgejo/files/forgejo.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Comment 3 commit-hook freebsd_committer freebsd_triage 2026-02-27 09:49:13 UTC
A commit in branch 2026Q1 references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=646fe19b4a24d0d0eee8b74f683a9311b4379358

commit 646fe19b4a24d0d0eee8b74f683a9311b4379358
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-02-26 04:11:20 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-02-27 09:48:24 +0000

    www/forgejo: Fix rc script order

    PR:     293453
    MFH:    2026Q1
    (cherry picked from commit 6e68cfdd7b8725cf8f586f9e7682575e4f83797f)

 www/forgejo/Makefile         | 2 +-
 www/forgejo/files/forgejo.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Comment 4 commit-hook freebsd_committer freebsd_triage 2026-02-27 09:49:14 UTC
A commit in branch 2026Q1 references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a1a045d3eff4f61da8c1356747997112d893dc5a

commit a1a045d3eff4f61da8c1356747997112d893dc5a
Author:     Dag-Erling Smørgrav <des@FreeBSD.org>
AuthorDate: 2026-02-26 04:11:57 +0000
Commit:     Dag-Erling Smørgrav <des@FreeBSD.org>
CommitDate: 2026-02-27 09:48:24 +0000

    www/forgejo-lts: Fix rc script order

    PR:     293453
    MFH:    2026Q1
    (cherry picked from commit 6a173071385b314a0aafa203e6fc53686b786b4e)

 www/forgejo-lts/Makefile         | 2 +-
 www/forgejo-lts/files/forgejo.in | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
Comment 5 Robert William Vesterman 2026-02-27 19:22:51 UTC
Thank you!