Accepting request 933419 from devel:kubic

OBS-URL: https://build.opensuse.org/request/show/933419
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/buildkit?expand=0&rev=1
This commit is contained in:
Dominique Leuenberger 2021-11-24 22:54:28 +00:00 committed by Git OBS Bridge
commit 907caf3bbe
9 changed files with 146 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

18
_service Normal file
View File

@ -0,0 +1,18 @@
<services>
<service name="download_files" mode="disabled" />
<service name="tar_scm" mode="disabled">
<param name="url">https://github.com/moby/buildkit.git</param>
<param name="scm">git</param>
<param name="exclude">.git</param>
<param name="revision">v0.9.3</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param>
<param name="versionrewrite-pattern">v(.*)</param>
</service>
<service name="set_version" mode="disabled" />
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">gz</param>
</service>
<service name="go_modules" mode="disabled" />
</services>

6
_servicedata Normal file
View File

@ -0,0 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/rootless-containers/rootlesskit.git</param>
<param name="changesrevision">b25a0bad15d664c4ee8885ba622569425e918a68</param></service><service name="tar_scm">
<param name="url">https://github.com/moby/buildkit.git</param>
<param name="changesrevision">6d53896d28a0b1b1670617ebcdd0582bcab14b90</param></service></servicedata>

3
buildkit-0.9.3.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f57fb818637e28697d05439726cc906e1219351fe0b6945214a61cb63b4ce58
size 6743818

4
buildkit.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed Nov 24 09:43:06 UTC 2021 - Richard Brown <rbrown@suse.com>
- Initial Packaging

11
buildkit.service Normal file
View File

@ -0,0 +1,11 @@
[Unit]
Description=BuildKit
Requires=buildkit.socket
After=buildkit.socket
Documentation=https://github.com/moby/buildkit
[Service]
ExecStart=/usr/bin/buildkitd --addr fd://
[Install]
WantedBy=multi-user.target

77
buildkit.spec Normal file
View File

@ -0,0 +1,77 @@
#
# spec file for package rootlesskit
#
# Copyright (c) 2021 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global provider github
%global provider_tld com
%global project moby
%global repo buildkit
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
%global import_path %{provider_prefix}
Name: buildkit
Version: 0.9.3
Release: 0
Summary: Toolkit for converting source code to build artifacts
License: Apache-2.0
URL: https://github.com/moby/buildkit
Source: %{name}-%{version}.tar.gz
Source1: vendor.tar.gz
Source2: buildkit.service
BuildRequires: golang(API) >= 1.13
BuildRequires: containerd
BuildRequires: runc
Requires: containerd
Requires: runc
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
BuildKit is a toolkit for converting source code to build artifacts in an efficient, expressive and repeatable manner.
%prep
%setup -qa1
%build
go build -mod=vendor -buildmode=pie -o _output/buildkitd %{provider_prefix}/cmd/buildkitd
go build -mod=vendor -buildmode=pie -o _output/buildctl %{provider_prefix}/cmd/buildctl
%install
mkdir -p %{buildroot}%{_bindir}/
mkdir -p %{buildroot}%{_unitdir}/
install -m 0755 _output/buildkitd %{buildroot}%{_bindir}/buildkitd
install -m 0755 _output/buildctl %{buildroot}%{_bindir}/buildctl
install -m 0755 %{SOURCE2} %{buildroot}%{_unitdir}/buildkit.service
install -m 0755 examples/systemd/buildkit.socket %{buildroot}%{_unitdir}/buildkit.socket
%post
%systemd_post buildkit.socket buildkit.service
%preun
%systemd_preun buildkit.socket buildkit.service
%postun
%systemd_postun_with_restart buildkit.socket buildkit.service
%files
%license LICENSE
%doc README.md docs/*.md
%{_bindir}/buildkitd
%{_bindir}/buildctl
%{_unitdir}/buildkit.socket
%{_unitdir}/buildkit.service
%changelog

3
vendor.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5868e3cf3191b00cf2013207a6936f2e658e17564b3e6ec86087bd6092e37909
size 5956400