Sync from SUSE:SLFO:Main fileb0x revision 38f1057d65adcd33f3ba055fbdc1aae6

This commit is contained in:
Adrian Schröter 2024-05-03 12:30:16 +02:00
commit 62e0d65c31
8 changed files with 105 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

15
_service Normal file
View File

@ -0,0 +1,15 @@
<services>
<service mode="manual" name="obs_scm">
<param name="url">https://github.com/Velocidex/fileb0x</param>
<param name="versionformat">@PARENT_TAG@~git@TAG_OFFSET@.%h</param>
<param name="revision">master</param>
<param name="scm">git</param>
</service>
<service mode="manual" name="tar"/>
<service mode="manual" name="recompress">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="manual" />
</services>

BIN
fileb0x-v1.1.1~git10.d54f404.obscpio (Stored with Git LFS) Normal file

Binary file not shown.

BIN
fileb0x-v1.1.1~git10.d54f404.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

4
fileb0x.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Wed Dec 15 18:29:41 UTC 2021 - Jeff Mahoney <jeffm@suse.com>
- Initial packaging.

5
fileb0x.obsinfo Normal file
View File

@ -0,0 +1,5 @@
name: fileb0x
version: v1.1.1~git10.d54f404
mtime: 1579961988
commit: d54f4040016051dd9657ce04d0ae6f31eab99bc6

49
fileb0x.spec Normal file
View File

@ -0,0 +1,49 @@
#
# spec file for package fileb0x
#
# 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/
#
Name: fileb0x
Version: v1.1.1~git10.d54f404
Release: 0
Summary: Tool to embed files in go applications
License: MIT
URL: https://github.com/Velocidex/fileb0x
Source: fileb0x-%{version}.tar.xz
Source1: vendor.tar.xz
BuildRequires: go
%description
A better customizable tool to embed files in go.
It is an alternative to `go-bindata` that have better features and organized configuration.
%prep
%setup -q -a 1
%build
go build -mod=vendor
%install
mkdir -p %buildroot/%{_bindir}
install -m 755 fileb0x %buildroot/%{_bindir}/
%files
%license LICENSE
%doc CHANGELOG.md README.md
%{_bindir}/fileb0x
%changelog

BIN
vendor.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.