Page MenuHomeFreeBSD

Add a package for ARPC.
ClosedPublic

Authored by ed on Aug 22 2017, 3:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 19 2024, 4:53 PM
Unknown Object (File)
Feb 19 2024, 4:49 PM
Unknown Object (File)
Feb 19 2024, 4:48 PM
Unknown Object (File)
Feb 19 2024, 4:48 PM
Unknown Object (File)
Feb 19 2024, 12:37 PM
Unknown Object (File)
Jan 13 2024, 9:27 AM
Unknown Object (File)
Dec 26 2023, 6:16 AM
Unknown Object (File)
Dec 23 2023, 6:04 AM
Subscribers

Details

Summary

ARPC is an RPC library similar to GRPC. Though a lot simpler than GRPC
featurewise, it has transparent support for file descriptor passing.
ARPC is used by some applications related to CloudABI, like Flower
(CloudABI's networking daemon).

Diff Detail

Repository
rP FreeBSD ports repository
Lint
No Lint Coverage
Unit
No Test Coverage
Build Status
Buildable 11204
Build 11582: arc lint + arc unit

Event Timeline

devel/arpc/Makefile
7

missing a tab after the =. Also, you should probably be using DISTVERSION and not PORTVERSION.

20

LIB_DEPENDS should be before RUN_DEPENDS.

25

This should go before USE_GITHUB

28–29

USES=localbase

Process feedback provided by mat@.

ed marked 4 inline comments as done.Aug 22 2017, 7:03 PM

Thanks for the feedback. Really appreciated!

Looks good!

Minor thing: If you don't expect the plist to become larger soon, I'd probably follow portlint's recommendation to use PLIST_FILES inside the Makefile rather than having pkg-plist.

This revision is now accepted and ready to land.Sep 2 2017, 4:50 PM

Minor thing: If you don't expect the plist to become larger soon, I'd probably follow portlint's recommendation to use PLIST_FILES inside the Makefile rather than having pkg-plist.

That sounds like a good idea, as I don't expect the plist to grow for now. I'll commit a version of the port that uses PLIST_FILES.

This revision was automatically updated to reflect the committed changes.