Compare commits

...

5 Commits

Author SHA1 Message Date
Josef Bacik 0868c34787 - bring btrfs-progs uptodate with upstream so we can use the new kernel
features, such as the default subvol stuff and snapshot listing.
2010-03-24 18:57:01 +00:00
Josef Bacik 5d56592a83 - fix DSO linking problem 2010-03-11 22:28:21 +00:00
Josef Bacik c8c2fd4fce forgot to actually add the patch 2010-03-11 22:06:30 +00:00
Josef Bacik db2d28e827 - bring btrfs-progs uptodate with upstream. F-12 had this patch, i'm not
sure why it didn't get put into F-13.
2010-03-11 22:06:07 +00:00
Jesse Keating dd0ea2bf04 Initialize branch F-13 for btrfs-progs 2010-02-17 00:59:58 +00:00
4 changed files with 3778 additions and 10 deletions

1
branch Normal file
View File

@ -0,0 +1 @@
F-13

View File

@ -1,12 +1,12 @@
diff -up btrfs-progs-0.19/Makefile.orig btrfs-progs-0.19/Makefile
--- btrfs-progs-0.19/Makefile.orig 2009-06-19 08:05:49.151573429 -0400
+++ btrfs-progs-0.19/Makefile 2009-06-19 08:08:35.192509803 -0400
@@ -16,7 +16,7 @@ prefix ?= /usr/local
bindir = $(prefix)/bin
--- btrfs-progs-0.19/Makefile.orig 2010-03-24 14:45:18.001490900 -0400
+++ btrfs-progs-0.19/Makefile 2010-03-24 14:45:35.745491310 -0400
@@ -17,8 +17,7 @@
LIBS=-luuid
-progs = btrfsctl mkfs.btrfs btrfs-debug-tree btrfs-show btrfs-vol btrfsck
+progs = btrfsctl mkfs.btrfs btrfs-debug-tree btrfs-show btrfs-vol btrfsck btrfs-image btrfstune
progs = btrfsctl mkfs.btrfs btrfs-debug-tree btrfs-show btrfs-vol btrfsck \
- btrfs \
- btrfs-map-logical
+ btrfs btrfs-map-logical btrfstune btrfs-image
# make C=1 to enable sparse
ifdef C

3752
btrfs-progs-upstream.patch Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
Name: btrfs-progs
Version: 0.19
Release: 9%{?dist}
Release: 12%{?dist}
Summary: Userspace programs for btrfs
Group: System Environment/Base
@ -12,6 +12,7 @@ Patch1: btrfs-progs-build-everything.patch
Patch2: btrfs-progs-valgrind.patch
Patch3: btrfs-progs-fix-return-value.patch
Patch4: btrfs-progs-build-fixes.patch
Patch5: btrfs-progs-upstream.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: e2fsprogs-devel, libuuid-devel, zlib-devel, libacl-devel
@ -25,14 +26,15 @@ check, modify and correct any inconsistencies in the btrfs filesystem.
%prep
%setup -q
%patch0 -p1
%patch1 -p1
%patch2 -p1
%patch3 -p1
%patch4 -p1
%patch5 -p1
%patch1 -p1
%build
make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags}
make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} convert
make CFLAGS="$RPM_OPT_FLAGS" %{?_smp_mflags} LDFLAGS="-lcom_err" convert
%install
rm -rf $RPM_BUILD_ROOT
@ -53,13 +55,26 @@ rm -rf $RPM_BUILD_ROOT
%{_root_sbindir}/btrfs-vol
%{_root_sbindir}/btrfs-convert
%{_root_sbindir}/btrfstune
%{_root_sbindir}/btrfs
%{_root_sbindir}/btrfs-map-logical
%{_mandir}/man8/btrfs-image.8.gz
%{_mandir}/man8/btrfs-show.8.gz
%{_mandir}/man8/btrfsck.8.gz
%{_mandir}/man8/btrfsctl.8.gz
%{_mandir}/man8/mkfs.btrfs.8.gz
%{_mandir}/man8/btrfs.8.gz
%changelog
* Wed Mar 24 2010 Josef Bacik <josef@toxicpanda.com> 0.19-12
- bring btrfs-progs uptodate with upstream so we can use the new kernel
features, such as the default subvol stuff and snapshot listing.
* Thu Mar 11 2010 Josef Bacik <josef@toxicpanda.com> 0.19-11
- fix convert build for DSO linking stuff
* Thu Mar 11 2010 Josef Bacik <josef@toxicpanda.com> 0.19-10
- add btrfs-progs-ustream.patch so we are aligned with upstream
* Tue Feb 2 2010 Josef Bacik <josef@toxicpanda.com> 0.19-9
- fix btrfsck so it builds on newer glibcs