List of commits between 1.2.7..1.2.8: f979f1b8fa202cd0d6c352de0f2b64361ce5ea33 (HEAD -> master, tag: rpcbind-1_2_8, origin/master, origin/HEAD) Release: 1.2.8 a9ecbb81940b23a4bb9814e126c1c1ae1db93b69 (tag: rpcbind-1_2_8-rc3) rpcinfo: Removed a number of "old-style function definition" warnings 8cc10d038c361f296b0a8e068c173acc33568997 rpcbind: Add -v flag to print version and config 8ef2e504df6e5ec3321c0804a8c6684d781e7a84 man/rpcbind: Update list of options 74da58dde5b1a1a7e54df1fb16315845195a69c0 (tag: rpcbind-1_2_8-rc2) Comment out ListenStream=@/run/rpcbind.sock b78689b8f1df42eb593dc3412698aa1b8aaa3532 [nfs/nfs-utils/rpcbind] rpcbind: avoid dereferencing NULL from realloc() fd1d5387de8078530d51eccf876afe6e6182b975 (tag: rpcbind-1_2_8-rc1) Move rpbind's default configuration to /run verses /var/run 7a6b1c58eee2e5fa74e3e4045c4950fbb4f8af0a Move rpcbind.lock to /run be63348bd3dd9e69e151ff83f08f09e1a9df82bf systemd/rpcbind.service.in: Want/After systemd-tmpfiles-setup 626fd801a13cecd8eb79ac6e979c248d7214aad4 systemd/rpcbind.service.in: Add various hardenings options 511fc4f4bc5ca7b7c8dac877d590d0634e570e6d man/rpcbind: Add Files section to manpage 31157ba6e60b0a8c4989010df8b1cf2aa673a86c systemd/rpcbind.service.in: Add few default EnvironmentFile So really not much. While we're at it, let's add a sha1 hash provided directly by Sourceforge, in addition to the locally calculated sha256. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
34 lines
1.0 KiB
Makefile
34 lines
1.0 KiB
Makefile
################################################################################
|
|
#
|
|
# rpcbind
|
|
#
|
|
################################################################################
|
|
|
|
RPCBIND_VERSION = 1.2.8
|
|
RPCBIND_SITE = https://downloads.sourceforge.net/project/rpcbind/rpcbind/$(RPCBIND_VERSION)
|
|
RPCBIND_SOURCE = rpcbind-$(RPCBIND_VERSION).tar.bz2
|
|
RPCBIND_LICENSE = BSD-3-Clause
|
|
RPCBIND_LICENSE_FILES = COPYING
|
|
RPCBIND_CPE_ID_VALID = YES
|
|
RPCBIND_SELINUX_MODULES = rpcbind
|
|
|
|
RPCBIND_CONF_ENV += \
|
|
CFLAGS="$(TARGET_CFLAGS) `$(PKG_CONFIG_HOST_BINARY) --cflags libtirpc`"
|
|
RPCBIND_DEPENDENCIES += libtirpc host-pkgconf
|
|
RPCBIND_CONF_OPTS += --with-rpcuser=root
|
|
|
|
ifeq ($(BR2_INIT_SYSTEMD),y)
|
|
RPCBIND_CONF_OPTS += --enable-warmstarts \
|
|
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
|
RPCBIND_DEPENDENCIES += systemd
|
|
else
|
|
RPCBIND_CONF_OPTS += --with-systemdsystemunitdir=no
|
|
endif
|
|
|
|
define RPCBIND_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 0755 -D package/rpcbind/S30rpcbind \
|
|
$(TARGET_DIR)/etc/init.d/S30rpcbind
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|