Index: Makefile =================================================================== --- Makefile (revision 494300) +++ Makefile (working copy) @@ -2,6 +2,7 @@ PORTNAME= gitlab-runner PORTVERSION= 11.7.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= \ https://gitlab-runner-downloads.s3.amazonaws.com/master/docker/:dockerx64 \ @@ -24,7 +25,9 @@ bash:shells/bash \ git:devel/git +USES= shebangfix USE_GITLAB= yes + GL_ACCOUNT= gitlab-org GL_COMMIT= 8bb608ff3a677132022502b07dae8a3ea679f3d1 GITBRANCH= 11-7-stable @@ -47,6 +50,7 @@ @${MKDIR} ${WRKSRC}/out/docker/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/prebuilt-x86_64.tar.xz ${WRKSRC}/out/docker/ @${CP} ${DISTDIR}/${DIST_SUBDIR}/prebuilt-arm.tar.xz ${WRKSRC}/out/docker/ + @${MV} ${WRKSRC}/vendor ${WRKSRC}/src do-build: @cd ${WRKSRC} && go-bindata \ @@ -59,7 +63,6 @@ out/docker/prebuilt-x86_64.tar.xz \ out/docker/prebuilt-arm.tar.xz @cd ${WRKSRC} && go fmt executors/docker/bindata.go - @${MV} ${WRKSRC}/vendor ${WRKSRC}/src @${MKDIR} ${WRKSRC}/src/gitlab.com/gitlab-org @${LN} -s ${WRKSRC} ${WRKSRC}/src/gitlab.com/gitlab-org/gitlab-runner @cd ${WRKSRC} && \ Index: files/patch-mknod.go =================================================================== --- files/patch-mknod.go (nonexistent) +++ files/patch-mknod.go (working copy) @@ -0,0 +1,11 @@ +--- src/github.com/docker/docker/pkg/system/mknod.go.orig 2019-03-01 15:22:53 UTC ++++ src/github.com/docker/docker/pkg/system/mknod.go +@@ -9,7 +9,7 @@ import ( + // Mknod creates a filesystem node (file, device special file or named pipe) named path + // with attributes specified by mode and dev. + func Mknod(path string, mode uint32, dev int) error { +- return syscall.Mknod(path, mode, dev) ++ return syscall.Mknod(path, mode, uint64(dev)) + } + + // Mkdev is used to build the value of linux devices (in /dev/) which specifies major Property changes on: files/patch-mknod.go ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property