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)
Wed, Oct 15, 8:11 AM
Unknown Object (File)
Tue, Oct 14, 8:21 AM
Unknown Object (File)
Fri, Sep 26, 11:25 PM
Unknown Object (File)
Sat, Sep 20, 3:12 PM
Unknown Object (File)
Fri, Sep 19, 9:28 PM
Unknown Object (File)
Wed, Sep 17, 11:53 PM
Unknown Object (File)
Wed, Sep 17, 12:46 AM
Unknown Object (File)
Sep 16 2025, 4:13 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
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

devel/arpc/Makefile
6 ↗(On Diff #32323)

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

19 ↗(On Diff #32323)

LIB_DEPENDS should be before RUN_DEPENDS.

24 ↗(On Diff #32323)

This should go before USE_GITHUB

27–28 ↗(On Diff #32323)

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.