diff --git a/MAINTAINERS.md b/MAINTAINERS.md new file mode 100644 --- /dev/null +++ b/MAINTAINERS.md @@ -0,0 +1,5 @@ +This file is used to indicate responsibility for the maintenance of this package. Individuals on this list should be the sole modifiers of the package, excluding cases where the Solus Team may need to perform necessary rebuilds, upgrades, or security fixes. This list should not be used for any direct contact usage. If you believe this package requires a package update, follow documentation from https://getsol.us/articles/packaging/request-a-package-update/en/. In the event this package no longer becomes sufficiently maintained, Core Team reserves the right to request a new maintainer or remove this package from the repository. + +- Reilly Brogan + - IRC: reillybrogan + - Email: solus@reillybrogan.com diff --git a/Makefile b/Makefile new file mode 100644 --- /dev/null +++ b/Makefile @@ -0,0 +1 @@ +include ../Makefile.common diff --git a/abi_used_libs b/abi_used_libs new file mode 100644 --- /dev/null +++ b/abi_used_libs @@ -0,0 +1,2 @@ +libc.so.6 +libpthread.so.0 diff --git a/abi_used_symbols b/abi_used_symbols new file mode 100644 --- /dev/null +++ b/abi_used_symbols @@ -0,0 +1,52 @@ +libc.so.6:__libc_start_main +libc.so.6:__stack_chk_fail +libc.so.6:abort +libc.so.6:fprintf +libc.so.6:fputc +libc.so.6:free +libc.so.6:freeaddrinfo +libc.so.6:fwrite +libc.so.6:gai_strerror +libc.so.6:getaddrinfo +libc.so.6:getgrgid_r +libc.so.6:getgrnam_r +libc.so.6:getgrouplist +libc.so.6:getnameinfo +libc.so.6:getpwnam_r +libc.so.6:getpwuid_r +libc.so.6:malloc +libc.so.6:mmap +libc.so.6:munmap +libc.so.6:nanosleep +libc.so.6:pthread_attr_destroy +libc.so.6:pthread_attr_init +libc.so.6:pthread_sigmask +libc.so.6:realloc +libc.so.6:setegid +libc.so.6:setenv +libc.so.6:seteuid +libc.so.6:setgid +libc.so.6:setgroups +libc.so.6:setregid +libc.so.6:setresgid +libc.so.6:setresuid +libc.so.6:setreuid +libc.so.6:setuid +libc.so.6:sigaddset +libc.so.6:sigemptyset +libc.so.6:sigfillset +libc.so.6:sigismember +libc.so.6:stderr +libc.so.6:strerror +libc.so.6:sysconf +libc.so.6:unsetenv +libc.so.6:vfprintf +libpthread.so.0:__errno_location +libpthread.so.0:pthread_attr_getstacksize +libpthread.so.0:pthread_cond_broadcast +libpthread.so.0:pthread_cond_wait +libpthread.so.0:pthread_create +libpthread.so.0:pthread_detach +libpthread.so.0:pthread_mutex_lock +libpthread.so.0:pthread_mutex_unlock +libpthread.so.0:sigaction diff --git a/package.yml b/package.yml new file mode 100644 --- /dev/null +++ b/package.yml @@ -0,0 +1,30 @@ +name : docker-buildx +version : 0.8.0 +release : 1 +source : + - git|https://github.com/docker/buildx.git : v0.8.0 +license : Apache-2.0 +component : virt +summary : Docker CLI plugin for extended build capabilities +description: | + Docker CLI plugin for extended build capabilities with BuildKit +builddeps : + - golang +environment: | + export _buildx_r=github.com/docker/buildx + export _cli_plugins_dir=/usr/lib/docker/cli-plugins + export GO111MODULE=auto +build : | + mkdir -p src/$_buildx_r + ln -s `pwd` src/$_buildx_r/buildx + pushd src/$_buildx_r/buildx + + go build -o docker-buildx \ + -ldflags "-linkmode=external \ + -X $_buildx_r/version.Version=v$version \ + -X $_buildx_r/version.Revision=$(git rev-parse HEAD) \ + -X $_buildx_r/version.Package=$_buildx_r" \ + ./cmd/buildx +install : | + install -Ddm00755 $installdir/$_cli_plugins_dir + install -m00755 docker-buildx $installdir/$_cli_plugins_dir/docker-buildx diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml new file mode 100644 --- /dev/null +++ b/pspec_x86_64.xml @@ -0,0 +1,34 @@ + + + docker-buildx + + Reilly Brogan + solus@reillybrogan.com + + Apache-2.0 + virt + Docker CLI plugin for extended build capabilities + Docker CLI plugin for extended build capabilities with BuildKit + + https://getsol.us/sources/README.Solus + + + docker-buildx + Docker CLI plugin for extended build capabilities + Docker CLI plugin for extended build capabilities with BuildKit + + virt + + /usr/lib/docker/cli-plugins/docker-buildx + + + + + 2022-03-19 + 0.8.0 + Packaging update + Reilly Brogan + solus@reillybrogan.com + + + \ No newline at end of file