1
0

Accepting request 1089752 from home:jengelh:dev

switch to v24.0 base

OBS-URL: https://build.opensuse.org/request/show/1089752
OBS-URL: https://build.opensuse.org/package/show/filesystems/bcachefs-tools?expand=0&rev=1
This commit is contained in:
Dirk Mueller 2023-06-01 08:11:07 +00:00 committed by Git OBS Bridge
commit 7a94b7e3ba
6 changed files with 123 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

14
_service Normal file
View File

@ -0,0 +1,14 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="scm">git</param>
<param name="url">https://evilpiepirate.org/git/bcachefs-tools.git</param>
<param name="revision">v24</param>
<param name="versionformat">24</param>
<param name="versionrewrite-pattern">v?(.*)</param>
</service>
<service name="recompress" mode="disabled">
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="disabled"/>
</services>

BIN
bcachefs-tools-24.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

4
bcachefs-tools.changes Normal file
View File

@ -0,0 +1,4 @@
-------------------------------------------------------------------
Tue May 30 08:19:24 UTC 2023 - Jan Engelhardt <jengelh@inai.de>
- Initial package (version 24) for build.opensuse.org

78
bcachefs-tools.spec Normal file
View File

@ -0,0 +1,78 @@
#
# spec file for package bcachefs-tools
#
# Copyright (c) 2023 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: bcachefs-tools
Version: 24
Release: 0
Summary: Configuration utilities for bcachefs
License: GPL-2.0-or-later
Group: System/Filesystems
URL: https://bcachefs.org/
Source: %name-%version.tar.xz
BuildRequires: libaio-devel
BuildRequires: pkg-config
BuildRequires: xz
BuildRequires: pkgconfig(blkid)
BuildRequires: pkgconfig(libkeyutils)
BuildRequires: pkgconfig(liblz4)
BuildRequires: pkgconfig(libsodium)
BuildRequires: pkgconfig(libudev)
BuildRequires: pkgconfig(liburcu)
BuildRequires: pkgconfig(libzstd)
BuildRequires: pkgconfig(uuid)
BuildRequires: pkgconfig(zlib)
%description
Bcachefs is a filesystem for Linux, with an emphasis on reliability
and robustness.
* Copy on write (COW) - like zfs or btrfs
* Full data and metadata checksumming
* Multiple devices
* Replication
* Erasure coding
* Caching
* Compression
* Encryption
* Snapshots
This package contains utilities for creating and mounting bcachefs.
%prep
%autosetup -p1
%build
%make_build NO_RUST=1 EXTRA_CFLAGS="%optflags"
%install
b="%buildroot"
%make_install PREFIX="%_prefix" ROOT_SBINDIR="%_sbindir" NO_RUST=1
if [ "%_lib" != lib ]; then
mkdir -p "$b/%_libdir"
mv "$b/usr/lib/"*.so "$b/%_libdir/"
fi
# this ain't no debian
rm -Rf "$b/etc/initramfs-tools" "$b/%_datadir/initramfs-tools"
%files
%_sbindir/*bcache*
%_mandir/man8/*.8*
%_libdir/libbcachefs.so
%changelog