f082c04
f082c04
%global _hardened_build 1
f082c04
5dd73cb
Name:          ceph
6c2f2c4
Version:       0.81.0
6c2f2c4
Release:       1%{?dist}
5dd73cb
Summary:       User space components of the Ceph file system
5dd73cb
License:       LGPLv2
5dd73cb
Group:         System Environment/Base
c523b37
URL:           https://ceph.com/
5dd73cb
6c2f2c4
Source:        https://ceph.com/download/%{name}-0.81.tar.bz2
5dd73cb
Patch0:        ceph-init-fix.patch
c523b37
# https://github.com/ceph/ceph/pull/1051
f082c04
Patch1:        ceph-fix-sbin-target.patch
Jonathan Dieter 0f5f195
b4b867b
BuildRequires: fuse-devel, libtool, libtool-ltdl-devel, boost-devel,
Jonathan Dieter f32a9e4
BuildRequires: libedit-devel, fuse-devel, git, perl, gdbm, libaio-devel,
b89a3dc
# google-perftools is not available on these:
cca983b
%if ( ! (0%{?rhel} && 0%{?rhel} <= 6 ) )
9c82455
%ifnarch ppc s390 s390x
dc8a12b
BuildRequires: gperftools-devel
fd6c2fa
%endif
cca983b
%else
cca983b
%ifnarch ppc ppc64 s390 s390x
cca983b
BuildRequires: gperftools-devel
cca983b
%endif
cca983b
%endif
Josef Bacik 514a2a1
BuildRequires: cryptopp-devel, libatomic_ops-static, gcc-c++
Josef Bacik 9b4a6bb
BuildRequires: pkgconfig, libcurl-devel, keyutils-libs-devel
David Nalley c0a0a52
BuildRequires: gtkmm24-devel, gtk2-devel, libuuid, libuuid-devel
f082c04
BuildRequires: leveldb-devel, snappy-devel, libblkid-devel
6c2f2c4
BuildRequires: libudev-devel
c28233e
%if ( ! (0%{?rhel} && 0%{?rhel} <= 6 ) )
f082c04
BuildRequires: xfsprogs-devel
c28233e
%endif
563583e
Josef Bacik 9b4a6bb
Requires(post): chkconfig, binutils, libedit
5dd73cb
Requires(preun): chkconfig
5dd73cb
Requires(preun): initscripts
5dd73cb
5dd73cb
%description
5dd73cb
Ceph is a distributed network file system designed to provide excellent
5dd73cb
performance, reliability, and scalability.
5dd73cb
Josef Bacik 8f23225
%package libs
Josef Bacik 8f23225
Summary:       Ceph libraries
Josef Bacik 8f23225
Group:         System Environment/Libraries
Josef Bacik 8f23225
%description libs
Josef Bacik 8f23225
Common libraries for Ceph distributed network file system
Josef Bacik 8f23225
Josef Bacik 8f23225
%package libcephfs
Josef Bacik 8f23225
Summary:       Ceph libcephfs libraries
Josef Bacik 8f23225
Group:         System Environment/Libraries
Josef Bacik 8f23225
%description libcephfs
Josef Bacik 8f23225
libcephfs library for Ceph distributed network file system
Josef Bacik 8f23225
5dd73cb
%package       fuse
5dd73cb
Summary:       Ceph fuse-based client
5dd73cb
Group:         System Environment/Base
f6f6a62
Requires:      %{name}%{?_isa} = %{version}-%{release}
5dd73cb
BuildRequires: fuse-devel
5dd73cb
%description   fuse
5dd73cb
FUSE based client for Ceph distributed network file system
5dd73cb
5dd73cb
%package     devel
5dd73cb
Summary:     Ceph headers
5dd73cb
Group:       Development/Libraries
5dd73cb
License:     LGPLv2
f6f6a62
Requires:    %{name}%{?_isa} = %{version}-%{release}
f6f6a62
Requires:    %{name}-libs%{?_isa} = %{version}-%{release}
f6f6a62
Requires:    %{name}-libcephfs%{?_isa} = %{version}-%{release}
5dd73cb
%description devel
5dd73cb
This package contains the headers needed to develop programs that use Ceph.
5dd73cb
Josef Bacik ca6b4d7
%package radosgw
Josef Bacik ca6b4d7
Summary:        rados REST gateway
Josef Bacik ca6b4d7
Group:          Development/Libraries
Josef Bacik ca6b4d7
Requires:       mod_fcgid
Josef Bacik ca6b4d7
BuildRequires:  fcgi-devel
Josef Bacik ca6b4d7
BuildRequires:  expat-devel
Josef Bacik ca6b4d7
Josef Bacik ca6b4d7
%description radosgw
Josef Bacik ca6b4d7
radosgw is an S3 HTTP REST gateway for the RADOS object store. It is
Josef Bacik ca6b4d7
implemented as a FastCGI module using libfcgi, and can be used in
Josef Bacik ca6b4d7
conjunction with any FastCGI capable web server.
Josef Bacik ca6b4d7
5dd73cb
%prep
6c2f2c4
%setup -q -n ceph-0.81
5dd73cb
%patch0 -p1 -b .init
Josef Bacik 3991b7a
%patch1 -p1
5dd73cb
5dd73cb
%build
5dd73cb
./autogen.sh
563583e
563583e
%ifarch armv5tel
563583e
# libatomic_ops does not have correct asm for ARMv5tel
Josef Bacik d02143a
EXTRA_CFLAGS="-DAO_USE_PTHREAD_DEFS"
563583e
%endif
563583e
%ifarch %{arm}
563583e
# libatomic_ops seems to fallback on some pthread implementation on ARM
563583e
EXTRA_LDFLAGS="-lpthread"
563583e
%endif
563583e
Josef Bacik 7d1f840
%{configure} --prefix=%{_prefix} --sbindir=%{_sbindir} \
Josef Bacik 7d1f840
--localstatedir=%{_localstatedir} --sysconfdir=%{_sysconfdir} \
c28233e
%if ( 0%{?rhel} && 0%{?rhel} <= 6 )
c28233e
--without-libxfs \
c28233e
%endif
9c82455
%ifarch ppc s390 s390x
fd6c2fa
--without-tcmalloc \
fd6c2fa
%endif
Jonathan Dieter ff794c7
--with-system-leveldb --without-hadoop --with-radosgw --with-gtk2 \
563583e
CFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS" \
Josef Bacik d02143a
CXXFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS -fvisibility-inlines-hidden" \
563583e
LDFLAGS="$EXTRA_LDFLAGS"
Jonathan Dieter 0f5f195
f6f6a62
V=1 make %{?_smp_mflags}
5dd73cb
5dd73cb
%install
5dd73cb
make install DESTDIR=$RPM_BUILD_ROOT
5dd73cb
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
5dd73cb
find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
Josef Bacik ca6b4d7
install -D src/init-ceph $RPM_BUILD_ROOT%{_initrddir}/ceph
Josef Bacik ca6b4d7
chmod 0644 $RPM_BUILD_ROOT%{_docdir}/ceph/sample.ceph.conf
f6f6a62
rm -rf __tmp_docs ; mkdir __tmp_docs
f6f6a62
mv $RPM_BUILD_ROOT%{_docdir}/ceph/* __tmp_docs
Josef Bacik ca6b4d7
install -m 0644 -D src/logrotate.conf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/ceph
Josef Bacik ca6b4d7
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/tmp/
Josef Bacik ca6b4d7
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ceph/
Josef Bacik ca6b4d7
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ceph/stat
David Nalley d10f18b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ceph
David Nalley d10f18b
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
Jonathan Dieter f32a9e4
5dd73cb
%post
5dd73cb
/sbin/chkconfig --add ceph
5dd73cb
5dd73cb
%preun
5dd73cb
if [ $1 = 0 ] ; then
5dd73cb
    /sbin/service ceph stop >/dev/null 2>&1
5dd73cb
    /sbin/chkconfig --del ceph
5dd73cb
fi
5dd73cb
5dd73cb
%postun
5dd73cb
if [ "$1" -ge "1" ] ; then
5dd73cb
    /sbin/service ceph condrestart >/dev/null 2>&1 || :
5dd73cb
fi
5dd73cb
Josef Bacik 8f23225
%post libs -p /sbin/ldconfig
Josef Bacik 8f23225
%postun libs -p /sbin/ldconfig
Josef Bacik 8f23225
%post libcephfs -p /sbin/ldconfig
Josef Bacik 8f23225
%postun libcephfs -p /sbin/ldconfig
Josef Bacik 8f23225
5dd73cb
%files
f6f6a62
%doc README COPYING __tmp_docs/sample*
David Nalley d10f18b
%dir %{_sysconfdir}/ceph
5dd73cb
%{_bindir}/ceph
Josef Bacik ca6b4d7
%{_bindir}/cephfs
David Nalley d10f18b
%{_bindir}/ceph-conf
David Nalley d10f18b
%{_bindir}/ceph-clsinfo
c523b37
%{_bindir}/ceph_filestore_tool
5dd73cb
%{_bindir}/crushtool
5dd73cb
%{_bindir}/monmaptool
5dd73cb
%{_bindir}/osdmaptool
David Nalley d10f18b
%{_bindir}/ceph-authtool
f082c04
%{_bindir}/ceph-brag
f082c04
%{_bindir}/ceph-crush-location
David Nalley d10f18b
%{_bindir}/ceph-syn
David Nalley d10f18b
%{_bindir}/ceph-run
David Nalley d10f18b
%{_bindir}/ceph-mon
David Nalley d10f18b
%{_bindir}/ceph-mds
David Nalley d10f18b
%{_bindir}/ceph-osd
David Nalley d10f18b
%{_bindir}/ceph-rbdnamer
5dd73cb
%{_bindir}/rados
Steven Pritchard cf2b700
%{_bindir}/rbd
David Nalley d10f18b
%{_bindir}/ceph-debugpack
Josef Bacik 9b4a6bb
%{_bindir}/ceph-coverage
Jonathan Dieter f32a9e4
%{_bindir}/ceph-dencoder
Josef Bacik 7d1f840
%{_bindir}/ceph_filestore_dump
Josef Bacik 7d1f840
%{_bindir}/ceph_mon_store_converter
Josef Bacik 7d8598d
%{_bindir}/ceph-post-file
Josef Bacik 7d8598d
%{_bindir}/ceph-rest-api
Josef Bacik ca6b4d7
%{_initrddir}/ceph
Josef Bacik 3991b7a
%{_sbindir}/mount.ceph
Josef Bacik 3991b7a
%{_sbindir}/ceph-disk-activate
Josef Bacik 3991b7a
%{_sbindir}/ceph-disk-prepare
Josef Bacik 3991b7a
%{_sbindir}/ceph-create-keys
Josef Bacik 7d1f840
%{_sbindir}/ceph-disk
Josef Bacik 7d1f840
%{_sbindir}/ceph-disk-udev
5dd73cb
%{_libdir}/ceph
c28233e
%exclude %{_libdir}/ceph/erasure-code
Josef Bacik ca6b4d7
%config(noreplace) %{_sysconfdir}/logrotate.d/ceph
David Nalley d10f18b
%config(noreplace) %{_sysconfdir}/bash_completion.d/rados
David Nalley d10f18b
%config(noreplace) %{_sysconfdir}/bash_completion.d/ceph
David Nalley d10f18b
%config(noreplace) %{_sysconfdir}/bash_completion.d/rbd
David Nalley d10f18b
%{_mandir}/man8/ceph-mon.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-mds.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-osd.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-run.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-syn.8*
5dd73cb
%{_mandir}/man8/crushtool.8*
5dd73cb
%{_mandir}/man8/osdmaptool.8*
5dd73cb
%{_mandir}/man8/monmaptool.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-conf.8*
5dd73cb
%{_mandir}/man8/ceph.8*
Josef Bacik ca6b4d7
%{_mandir}/man8/cephfs.8*
5dd73cb
%{_mandir}/man8/mount.ceph.8*
5dd73cb
%{_mandir}/man8/radosgw.8*
David Nalley d10f18b
%{_mandir}/man8/radosgw-admin.8*
5dd73cb
%{_mandir}/man8/rados.8*
Steven Pritchard cf2b700
%{_mandir}/man8/rbd.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-authtool.8*
David Nalley d10f18b
%{_mandir}/man8/ceph-debugpack.8*
Jonathan Dieter f32a9e4
%{_mandir}/man8/ceph-clsinfo.8*
Jonathan Dieter f32a9e4
%{_mandir}/man8/ceph-dencoder.8*
Josef Bacik d02143a
%{_mandir}/man8/ceph-rbdnamer.8*
Josef Bacik 7d8598d
%{_mandir}/man8/ceph-rest-api.8*
Josef Bacik 7d8598d
%{_mandir}/man8/ceph-post-file.8*
David Nalley d10f18b
%{python_sitelib}/rados.py*
David Nalley d10f18b
%{python_sitelib}/rbd.py*
Josef Bacik 7d1f840
%{python_sitelib}/cephfs.py*
Josef Bacik 7d8598d
%{python_sitelib}/ceph_argparse.py*
Josef Bacik 7d8598d
%{python_sitelib}/ceph_rest_api.py*
Josef Bacik ca6b4d7
%dir %{_localstatedir}/lib/ceph/
Josef Bacik ca6b4d7
%dir %{_localstatedir}/lib/ceph/tmp/
Josef Bacik ca6b4d7
%dir %{_localstatedir}/log/ceph/
Josef Bacik 7d8598d
%{_datadir}/ceph/id_dsa_drop.ceph.com*
Josef Bacik 7d8598d
%{_datadir}/ceph/known_hosts_drop.ceph.com
5dd73cb
Josef Bacik 8f23225
%files libs
Josef Bacik 8f23225
%doc COPYING
Josef Bacik 8f23225
%{_libdir}/librados.so.*
Josef Bacik 8f23225
%{_libdir}/librbd.so.*
f082c04
%dir %{_libdir}/ceph/erasure-code
4c912ae
# Warning to future maintainers: Note that the libec_ and libcls_ unversioned
4c912ae
# shared objects are included here in the libs subpackage. These files are
4c912ae
# plugins that Ceph loads with dlopen(). They belong here in -libs, not
4c912ae
# -devel.
f082c04
# N.B. in 0.80.1 the `make install` installs the erasure-code shared objects
f082c04
# in usr/lib*/ceph/erasure-code/...
f082c04
%{_libdir}/ceph/erasure-code/libec_example.so*
f082c04
%{_libdir}/ceph/erasure-code/libec_fail_to_initialize.so*
f082c04
%{_libdir}/ceph/erasure-code/libec_fail_to_register.so*
f082c04
%{_libdir}/ceph/erasure-code/libec_hangs.so*
f082c04
%{_libdir}/ceph/erasure-code/libec_jerasure.so*
f082c04
%{_libdir}/ceph/erasure-code/libec_missing_entry_point.so*
f6f6a62
%dir %{_libdir}/rados-classes
4c912ae
# See warning note above about unversioned shared objects here. These belong
4c912ae
# here in -libs (not -devel).
4c912ae
%{_libdir}/rados-classes/libcls_hello.so*
4c912ae
%{_libdir}/rados-classes/libcls_rbd.so*
4c912ae
%{_libdir}/rados-classes/libcls_rgw.so*
4c912ae
%{_libdir}/rados-classes/libcls_lock.so*
4c912ae
%{_libdir}/rados-classes/libcls_kvs.so*
4c912ae
%{_libdir}/rados-classes/libcls_refcount.so*
4c912ae
%{_libdir}/rados-classes/libcls_log.so*
4c912ae
%{_libdir}/rados-classes/libcls_replica_log.so*
4c912ae
%{_libdir}/rados-classes/libcls_statelog.so*
4c912ae
%{_libdir}/rados-classes/libcls_version.so*
f082c04
%{_libdir}/rados-classes/libcls_user.so*
Josef Bacik 8f23225
Josef Bacik 8f23225
%files libcephfs
Josef Bacik 8f23225
%doc COPYING
Josef Bacik 8f23225
%{_libdir}/libcephfs.so.*
Josef Bacik 8f23225
5dd73cb
%files fuse
5dd73cb
%doc COPYING
David Nalley d10f18b
%{_bindir}/ceph-fuse
Josef Bacik 7d1f840
%{_bindir}/rbd-fuse
Josef Bacik 3991b7a
%{_sbindir}/mount.fuse.ceph
David Nalley d10f18b
%{_mandir}/man8/ceph-fuse.8*
Josef Bacik 7d1f840
%{_mandir}/man8/rbd-fuse.8*
5dd73cb
5dd73cb
%files devel
5dd73cb
%doc COPYING
f6f6a62
%dir %{_includedir}/cephfs
David Nalley d10f18b
%{_includedir}/cephfs/libcephfs.h
f6f6a62
%dir %{_includedir}/rados
f082c04
%{_includedir}/rados/memory.h
5dd73cb
%{_includedir}/rados/librados.h
5dd73cb
%{_includedir}/rados/librados.hpp
Josef Bacik 7d1f840
%{_includedir}/rados/rados_types.h
Josef Bacik 7d1f840
%{_includedir}/rados/rados_types.hpp
5dd73cb
%{_includedir}/rados/buffer.h
5dd73cb
%{_includedir}/rados/page.h
5dd73cb
%{_includedir}/rados/crc32c.h
f6f6a62
%dir %{_includedir}/rbd
Josef Bacik ca6b4d7
%{_includedir}/rbd/librbd.h
Josef Bacik ca6b4d7
%{_includedir}/rbd/librbd.hpp
Josef Bacik f5c462a
%{_includedir}/rbd/features.h
David Nalley d10f18b
%{_libdir}/libcephfs.so
5dd73cb
%{_libdir}/librados.so
f6f6a62
%{_libdir}/librbd.so
f6f6a62
%{_bindir}/librados-config
Josef Bacik 9b4a6bb
%{_mandir}/man8/librados-config.8*
Josef Bacik ca6b4d7
Josef Bacik ca6b4d7
Josef Bacik ca6b4d7
%files radosgw
Josef Bacik ca6b4d7
%{_bindir}/radosgw
David Nalley d10f18b
%{_bindir}/radosgw-admin
David Nalley d10f18b
%{_sysconfdir}/bash_completion.d/radosgw-admin
5dd73cb
5dd73cb
%changelog
cca983b
* Thu Jun 5 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com>
cca983b
- el6 ppc64 does not have gperftools, merge from origin/el6
cca983b
6c2f2c4
* Thu Jun 5 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.81.0-1
6c2f2c4
- ceph-0.81.0
6c2f2c4
9c82455
* Wed Jun  4 2014 Peter Robinson <pbrobinson@fedoraproject.org> 0.80.1-5
9c82455
- gperftools now available on aarch64/ppc64
9c82455
Petr Machata e579d55
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0.80.1-4
Petr Machata e579d55
- Rebuild for boost 1.55.0
Petr Machata e579d55
aac817e
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 0.80.1-3
aac817e
- rebuild for boost 1.55.0
aac817e
c28233e
* Wed May 14 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.80.1-2
c28233e
- build epel-6
c28233e
- exclude %%{_libdir}/ceph/erasure-code in base package
c28233e
f082c04
* Tue May 13 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.80.1-1
f082c04
- Update to latest stable upstream release, BZ 1095201
f082c04
- PIE, _hardened_build, BZ 955174
f082c04
4c912ae
* Thu Feb 06 2014 Ken Dreyer <ken.dreyer@inktank.com> - 0.72.2-2
4c912ae
- Move plugins from -devel into -libs package (#891993). Thanks Michael
4c912ae
  Schwendt.
4c912ae
c523b37
* Mon Jan 06 2014 Ken Dreyer <ken.dreyer@inktank.com> 0.72.2-1
c523b37
- Update to latest stable upstream release
c523b37
- Use HTTPS for URLs
c523b37
- Submit Automake 1.12 patch upstream
c523b37
- Move unversioned shared libs from ceph-libs into ceph-devel
c523b37
a69f025
* Wed Dec 18 2013 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> 0.67.3-4
a69f025
- build without tcmalloc on aarch64 (no gperftools)
a69f025
975579a
* Sat Nov 30 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.67.3-3
975579a
- gperftools not currently available on aarch64
975579a
52a2b9b
* Mon Oct 07 2013 Dan Horák <dan[at]danny.cz> - 0.67.3-2
52a2b9b
- fix build on non-x86_64 64-bit arches
52a2b9b
Josef Bacik 7d8598d
* Wed Sep 11 2013 Josef Bacik <josef@toxicpanda.com> - 0.67.3-1
Josef Bacik 7d8598d
- update to 0.67.3
Josef Bacik 7d8598d
f6f6a62
* Wed Sep 11 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 0.61.7-3
f6f6a62
- let base package include all its documentation files via %%doc magic,
f6f6a62
  so for Fedora 20 Unversioned Docdirs no files are included accidentally
f6f6a62
- include the sample config files again (instead of just an empty docdir
f6f6a62
  that has been added for #846735)
f6f6a62
- don't include librbd.so.1 also in -devel package (#1003202)
f6f6a62
- move one misplaced rados plugin from -devel into -libs package (#891993)
f6f6a62
- include missing directories in -devel and -libs packages
f6f6a62
- move librados-config into the -devel pkg where its manual page is, too
f6f6a62
- add %%_isa to subpackage dependencies
f6f6a62
- don't use %%defattr anymore
f6f6a62
- add V=1 to make invocation for verbose build output
f6f6a62
fc25307
* Wed Jul 31 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.61.7-2
fc25307
- re-enable tmalloc on arm now gperftools is fixed
fc25307
Josef Bacik 7d1f840
* Mon Jul 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.61.7-1
Josef Bacik 7d1f840
- Update to 0.61.7
Josef Bacik 7d1f840
Petr Machata 6bb58e5
* Sat Jul 27 2013 pmachata@redhat.com - 0.56.4-2
Petr Machata 6bb58e5
- Rebuild for boost 1.54.0
Petr Machata 6bb58e5
Josef Bacik 514a2a1
* Fri Mar 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.4-1
Josef Bacik 514a2a1
- Update to 0.56.4
Josef Bacik 514a2a1
- Add upstream d02340d90c9d30d44c962bea7171db3fe3bfba8e to fix logrotate
Josef Bacik 514a2a1
Josef Bacik 3991b7a
* Wed Feb 20 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.3-1
Josef Bacik 3991b7a
- Update to 0.56.3
Josef Bacik 3991b7a
ffa978b
* Mon Feb 11 2013 Richard W.M. Jones <rjones@redhat.com> - 0.53-2
ffa978b
- Rebuilt to try to fix boost dependency problem in Rawhide.
ffa978b
Josef Bacik f5c462a
* Thu Nov  1 2012 Josef Bacik <josef@toxicpanda.com> - 0.53-1
Josef Bacik f5c462a
- Update to 0.53
Josef Bacik f5c462a
Jonathan Dieter 9855df9
* Mon Sep 24 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-3
Jonathan Dieter 9855df9
- Fix automake 1.12 error
Jonathan Dieter 0521dc9
- Rebuild after buildroot was messed up
Jonathan Dieter 9855df9
Jonathan Dieter ff794c7
* Tue Sep 18 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-2
Jonathan Dieter ff794c7
- Use system leveldb
Jonathan Dieter ff794c7
David Nalley 6449f95
* Fri Sep 07 2012 David Nalley <david@gnsa.us> - 0.51-1
David Nalley 6449f95
- Updating to 0.51
David Nalley 6449f95
- Updated url and source url. 
David Nalley 6449f95
19726c1
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-2
19726c1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
19726c1
Josef Bacik 8f23225
* Wed May  9 2012 Josef Bacik <josef@toxicpanda.com> - 0.46-1
Josef Bacik 8f23225
- updated to upstream 0.46
Josef Bacik 8f23225
- broke out libcephfs (rhbz# 812975)
Josef Bacik 8f23225
ba92463
* Mon Apr 23 2012 Dan Horák <dan[at]danny.cz> - 0.45-2
ba92463
- fix detection of C++11 atomic header
ba92463
Josef Bacik 50e073a
* Thu Apr 12 2012 Josef Bacik <josef@toxicpanda.com> - 0.45-1
Josef Bacik 50e073a
- updating to upstream 0.45
Josef Bacik 50e073a
563583e
* Wed Apr  4 2012 Niels de Vos <devos@fedoraproject.org> - 0.44-5
563583e
- Add LDFLAGS=-lpthread on any ARM architecture
563583e
- Add CFLAGS=-DAO_USE_PTHREAD_DEFS on ARMv5tel
563583e
6eb8fdf
* Mon Mar 26 2012 Dan Horák <dan[at]danny.cz> 0.44-4
6eb8fdf
- gperftools not available also on ppc
6eb8fdf
Jonathan Dieter 0f5f195
* Mon Mar 26 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-3
Jonathan Dieter 0f5f195
- Remove unneeded patch
Jonathan Dieter 0f5f195
Jonathan Dieter 0f5f195
* Sun Mar 25 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-2
Jonathan Dieter 0f5f195
- Update to 0.44
Jonathan Dieter 0f5f195
- Fix build problems
Jonathan Dieter 0f5f195
Jonathan Dieter f32a9e4
* Mon Mar  5 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.43-1
Jonathan Dieter f32a9e4
- Update to 0.43
Jonathan Dieter f32a9e4
- Remove upstreamed compile fixes patch
Jonathan Dieter f32a9e4
- Remove obsoleted dump_pop patch
Jonathan Dieter f32a9e4
3cf1ae6
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-2
3cf1ae6
- Rebuilt for c++ ABI breakage
3cf1ae6
dc8a12b
* Thu Feb 16 2012 Tom Callaway <spot@fedoraproject.org> 0.41-1
dc8a12b
- update to 0.41
dc8a12b
- fix issues preventing build
dc8a12b
- rebuild against gperftools
dc8a12b
David Nalley c0a0a52
* Sat Dec 03 2011 David Nalley <david@gnsa.us> 0.38-1
David Nalley c0a0a52
- updating to upstream 0.39
David Nalley 36be982
David Nalley d10f18b
* Sat Nov 05 2011 David Nalley <david@gnsa.us> 0.37-1
David Nalley d10f18b
- create /etc/ceph - bug 745462
David Nalley d10f18b
- upgrading to 0.37, fixing 745460, 691033
David Nalley d10f18b
- fixing various logrotate bugs 748930, 747101
David Nalley d10f18b
b89a3dc
* Fri Aug 19 2011 Dan Horák <dan[at]danny.cz> 0.31-4
b89a3dc
- google-perftools not available also on s390(x)
b89a3dc
fd6c2fa
* Mon Jul 25 2011 Karsten Hopp <karsten@redhat.com> 0.31-3
b89a3dc
- build without tcmalloc on ppc64, BR google-perftools is not available there
fd6c2fa
Josef Bacik 454e443
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-2
Josef Bacik 454e443
- Remove curl/types.h include since we don't use it anymore
Josef Bacik 454e443
Josef Bacik 9b4a6bb
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-1
Josef Bacik 9b4a6bb
- Update to 0.31
Josef Bacik 9b4a6bb
Josef Bacik 81c2739
* Tue Apr  5 2011 Josef Bacik <josef@toxicpanda.com> 0.26-2
Josef Bacik 81c2739
- Add the compile fix patch
Josef Bacik 81c2739
Josef Bacik 555889f
* Tue Apr  5 2011 Josef Bacik <josef@toxicpanda.com> 0.26
Josef Bacik 555889f
- Update to 0.26
Josef Bacik 555889f
Josef Bacik ca6b4d7
* Tue Mar 22 2011 Josef Bacik <josef@toxicpanda.com> 0.25.1-1
Josef Bacik ca6b4d7
- Update to 0.25.1
Josef Bacik ca6b4d7
10fd17e
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.3-2
10fd17e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
10fd17e
Steven Pritchard 3dcda9e
* Wed Sep 29 2010 Steven Pritchard <steve@kspei.com> 0.21.3-1
Steven Pritchard 3dcda9e
- Update to 0.21.3.
Steven Pritchard 3dcda9e
Steven Pritchard bfda65c
* Mon Aug 30 2010 Steven Pritchard <steve@kspei.com> 0.21.2-1
Steven Pritchard bfda65c
- Update to 0.21.2.
Steven Pritchard bfda65c
Steven Pritchard cf2b700
* Thu Aug 26 2010 Steven Pritchard <steve@kspei.com> 0.21.1-1
Steven Pritchard cf2b700
- Update to 0.21.1.
Steven Pritchard cf2b700
- Sample configs moved to /usr/share/doc/ceph/.
Steven Pritchard cf2b700
- Added cclass, rbd, and cclsinfo.
Steven Pritchard cf2b700
- Dropped mkmonfs and rbdtool.
Steven Pritchard cf2b700
- mkcephfs moved to /sbin.
Steven Pritchard cf2b700
- Add libcls_rbd.so.
Steven Pritchard cf2b700
a48a736
* Tue Jul  6 2010 Josef Bacik <josef@toxicpanda.com> 0.20.2-1
a48a736
- update to 0.20.2
a48a736
5dd73cb
* Wed May  5 2010 Josef Bacik <josef@toxicpanda.com> 0.20-1
5dd73cb
- update to 0.20
5dd73cb
- disable hadoop building
5dd73cb
- remove all the test binaries properly
5dd73cb
5dd73cb
* Fri Apr 30 2010 Sage Weil <sage@newdream.net> 0.19.1-5
5dd73cb
- Remove java deps (no need to build hadoop by default)
5dd73cb
- Include all required librados helpers
5dd73cb
- Include fetch_config sample
5dd73cb
- Include rbdtool
5dd73cb
- Remove misc debugging, test binaries
5dd73cb
Josef Bacik 7d1f840
* Fri Apr 30 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-4
5dd73cb
- Add java-devel and java tricks to get hadoop to build
5dd73cb
5dd73cb
* Mon Apr 26 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-3
5dd73cb
- Move the rados and cauthtool man pages into the base package
5dd73cb
5dd73cb
* Sun Apr 25 2010 Jonathan Dieter <jdieter@lesbg.com> 0.19.1-2
5dd73cb
- Add missing libhadoopcephfs.so* to file list
5dd73cb
- Add COPYING to all subpackages
5dd73cb
- Fix ownership of /usr/lib[64]/ceph
5dd73cb
- Enhance description of fuse client
5dd73cb
5dd73cb
* Tue Apr 20 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-1
5dd73cb
- Update to 0.19.1
5dd73cb
5dd73cb
* Mon Feb  8 2010 Josef Bacik <josef@toxicpanda.com> 0.18-1
5dd73cb
- Initial spec file creation, based on the template provided in the ceph src