1
0

Accepting request 758555 from home:mrostecki:branches:devel:kubic

dependency of Envoy 1.12.2

OBS-URL: https://build.opensuse.org/request/show/758555
OBS-URL: https://build.opensuse.org/package/show/devel:kubic/envoy-build-tools?expand=0&rev=1
This commit is contained in:
Richard Brown 2019-12-20 15:36:34 +00:00 committed by Git OBS Bridge
commit 834ce27a68
8 changed files with 107 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

15
_service Normal file
View File

@ -0,0 +1,15 @@
<services>
<service mode="disabled" name="obs_scm">
<param name="url">https://github.com/envoyproxy/envoy-build-tools</param>
<param name="scm">git</param>
<param name="filename">envoy-build-tools</param>
<param name="versionformat">%cd</param>
<param name="revision">a6b28555badcb18d6be924c8fc1bea49971656b8</param>
</service>
<service mode="buildtime" name="tar" />
<service mode="buildtime" name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service mode="disabled" name="set_version" />
</services>

View File

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

View File

@ -0,0 +1,4 @@
# Even after running fdupes there are files with the same content.
addFilter("envoy-build-tools.* files-duplicate")
# There are some .bazelrc files which are hidden, but they should be there.
addFilter("envoy-build-tools.* hidden-file-or-dir")

View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Fri Dec 20 11:01:52 UTC 2019 - Michał Rostecki <mrostecki@opensuse.org>
- Initial release

View File

@ -0,0 +1,5 @@
name: envoy-build-tools
version: 20191023
mtime: 1571840890
commit: a6b28555badcb18d6be924c8fc1bea49971656b8

52
envoy-build-tools.spec Normal file
View File

@ -0,0 +1,52 @@
#
# spec file for package envoy-build-tools
#
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# 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 http://bugs.opensuse.org/
#
Name: envoy-build-tools
Version: 20191023
Release: 0
Summary: Bazel toolchains for Envoy and UDPA build ecosystem
License: Apache-2.0
Url: https://github.com/envoyproxy/envoy-build-tools
Source0: %{name}-%{version}.tar.xz
Source1: %{name}-rpmlintrc
BuildRequires: fdupes
BuildArch: noarch
%description
envoy-build-tools is the project which contains custom Bazel toolchains which
define the compiler flags for Envoy.
%prep
%setup -q
rm -rf .git
find . \( -name "BUILD" -o -name "*.bzl" -o -name "builtin_include_directory_paths" \) -exec chmod -x {} \;
%build
%install
mkdir -p %{buildroot}%{_datadir}/%{name}
cp -r * %{buildroot}%{_datadir}/%{name}
%fdupes %{buildroot}%{_datadir}/%{name}
%files
%license LICENSE
%doc README.md
%{_datadir}/envoy-build-tools
%changelog