mirror of
https://git.yoctoproject.org/poky
synced 2026-03-02 21:39:40 +01:00
This update was made with the convert-scruri.py script in scripts/contrib
This script handles two emerging issues:
1. There is uncertainty about the default branch name in git going forward.
To try and cover the different possible outcomes, add branch names to all
git:// and gitsm:// SRC_URI entries.
2. Github are dropping support for git:// protocol fetching, so remap github
urls as needed. For more details see:
https://github.blog/2021-09-01-improving-git-protocol-security-github/
(From OE-Core rev: 827a805349f9732b2a5fa9184dc7922af36de327)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
45 lines
1.7 KiB
BlitzBasic
45 lines
1.7 KiB
BlitzBasic
SUMMARY = "Userspace NFS server v3 protocol"
|
|
DESCRIPTION = "UNFS3 is a user-space implementation of the NFSv3 server \
|
|
specification. It provides a daemon for the MOUNT and NFS protocols, which \
|
|
are used by NFS clients for accessing files on the server."
|
|
HOMEPAGE = "https://github.com/unfs3/unfs3"
|
|
SECTION = "console/network"
|
|
LICENSE = "unfs3"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=9475885294e17c0cc0067820d042792e"
|
|
|
|
DEPENDS = "flex-native bison-native flex"
|
|
DEPENDS += "libtirpc"
|
|
DEPENDS_append_class-nativesdk = " flex-nativesdk"
|
|
|
|
ASNEEDED = ""
|
|
|
|
S = "${WORKDIR}/git"
|
|
SRC_URI = "git://github.com/unfs3/unfs3.git;protocol=https;branch=master \
|
|
file://unfs3_parallel_build.patch \
|
|
file://alternate_rpc_ports.patch \
|
|
file://fix_pid_race_parent_writes_child_pid.patch \
|
|
file://fix_compile_warning.patch \
|
|
file://rename_fh_cache.patch \
|
|
file://relative_max_socket_path_len.patch \
|
|
file://tcp_no_delay.patch \
|
|
file://0001-daemon.c-Libtirpc-porting-fixes.patch \
|
|
file://0001-attr-fix-utime-for-symlink.patch \
|
|
file://0001-Add-listen-action-for-a-tcp-socket.patch \
|
|
"
|
|
SRCREV = "c12a5c69a8d59be6916cbd0e0f41c159f1962425"
|
|
UPSTREAM_CHECK_GITTAGREGEX = "unfs3\-(?P<pver>.+)"
|
|
|
|
PV = "0.9.22+${SRCPV}"
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
inherit autotools
|
|
EXTRA_OECONF_append_class-native = " --sbindir=${bindir}"
|
|
CFLAGS_append = " -I${STAGING_INCDIR}/tirpc"
|
|
EXTRA_OECONF_append = " LIBS=-ltirpc"
|
|
|
|
# Turn off these header detects else the inode search
|
|
# will walk entire file systems and this is a real problem
|
|
# if you have 2 TB of files to walk in your file system
|
|
CACHED_CONFIGUREVARS = "ac_cv_header_mntent_h=no ac_cv_header_sys_mnttab_h=no"
|