2010-05-07 17:57:33 +00:00
|
|
|
Name: ceph
|
2013-09-11 20:09:38 +00:00
|
|
|
Version: 0.67.3
|
|
|
|
Release: 1%{?dist}
|
2010-05-07 17:57:33 +00:00
|
|
|
Summary: User space components of the Ceph file system
|
|
|
|
License: LGPLv2
|
|
|
|
Group: System Environment/Base
|
2012-09-09 17:41:08 +00:00
|
|
|
URL: http://ceph.com/
|
2010-05-07 17:57:33 +00:00
|
|
|
|
2012-09-09 17:41:08 +00:00
|
|
|
Source: http://ceph.com/download/%{name}-%{version}.tar.bz2
|
2010-05-07 17:57:33 +00:00
|
|
|
Patch0: ceph-init-fix.patch
|
2013-02-21 21:35:14 +00:00
|
|
|
Patch1: ceph-build-support-for-automake-1.12.patch
|
2013-07-29 18:59:31 +00:00
|
|
|
Patch2: ceph-fix-sbin-target.patch
|
2012-03-26 07:39:06 +00:00
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
BuildRequires: fuse-devel, libtool, libtool-ltdl-devel, boost-devel,
|
2012-03-06 14:58:21 +00:00
|
|
|
BuildRequires: libedit-devel, fuse-devel, git, perl, gdbm, libaio-devel,
|
2011-08-19 09:18:24 +00:00
|
|
|
# google-perftools is not available on these:
|
2013-07-31 16:03:16 +00:00
|
|
|
%ifnarch ppc ppc64 s390 s390x
|
2012-02-17 02:39:09 +00:00
|
|
|
BuildRequires: gperftools-devel
|
2011-07-26 08:42:16 +00:00
|
|
|
%endif
|
2013-03-29 20:39:26 +00:00
|
|
|
BuildRequires: cryptopp-devel, libatomic_ops-static, gcc-c++
|
2011-07-12 19:20:47 +00:00
|
|
|
BuildRequires: pkgconfig, libcurl-devel, keyutils-libs-devel
|
2012-01-13 19:06:41 +00:00
|
|
|
BuildRequires: gtkmm24-devel, gtk2-devel, libuuid, libuuid-devel
|
2012-09-24 06:00:37 +00:00
|
|
|
BuildRequires: leveldb-devel, snappy-devel
|
2012-04-04 19:49:36 +00:00
|
|
|
|
2011-07-12 19:20:47 +00:00
|
|
|
Requires(post): chkconfig, binutils, libedit
|
2010-05-07 17:57:33 +00:00
|
|
|
Requires(preun): chkconfig
|
|
|
|
Requires(preun): initscripts
|
|
|
|
|
|
|
|
%description
|
|
|
|
Ceph is a distributed network file system designed to provide excellent
|
|
|
|
performance, reliability, and scalability.
|
|
|
|
|
2012-05-09 21:00:02 +00:00
|
|
|
%package libs
|
|
|
|
Summary: Ceph libraries
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
%description libs
|
|
|
|
Common libraries for Ceph distributed network file system
|
|
|
|
|
|
|
|
%package libcephfs
|
|
|
|
Summary: Ceph libcephfs libraries
|
|
|
|
Group: System Environment/Libraries
|
|
|
|
%description libcephfs
|
|
|
|
libcephfs library for Ceph distributed network file system
|
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
%package fuse
|
|
|
|
Summary: Ceph fuse-based client
|
|
|
|
Group: System Environment/Base
|
2013-09-11 12:15:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2010-05-07 17:57:33 +00:00
|
|
|
BuildRequires: fuse-devel
|
|
|
|
%description fuse
|
|
|
|
FUSE based client for Ceph distributed network file system
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Ceph headers
|
|
|
|
Group: Development/Libraries
|
|
|
|
License: LGPLv2
|
2013-09-11 12:15:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
Requires: %{name}-libcephfs%{?_isa} = %{version}-%{release}
|
2010-05-07 17:57:33 +00:00
|
|
|
%description devel
|
|
|
|
This package contains the headers needed to develop programs that use Ceph.
|
|
|
|
|
2011-03-23 12:37:37 +00:00
|
|
|
%package radosgw
|
|
|
|
Summary: rados REST gateway
|
|
|
|
Group: Development/Libraries
|
|
|
|
Requires: mod_fcgid
|
|
|
|
BuildRequires: fcgi-devel
|
|
|
|
BuildRequires: expat-devel
|
|
|
|
|
|
|
|
%description radosgw
|
|
|
|
radosgw is an S3 HTTP REST gateway for the RADOS object store. It is
|
|
|
|
implemented as a FastCGI module using libfcgi, and can be used in
|
|
|
|
conjunction with any FastCGI capable web server.
|
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
%patch0 -p1 -b .init
|
2013-02-21 21:35:14 +00:00
|
|
|
%patch1 -p1
|
2013-03-29 20:39:26 +00:00
|
|
|
%patch2 -p1
|
2010-05-07 17:57:33 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
./autogen.sh
|
2012-04-04 19:49:36 +00:00
|
|
|
|
|
|
|
%ifarch armv5tel
|
|
|
|
# libatomic_ops does not have correct asm for ARMv5tel
|
2012-05-10 13:56:19 +00:00
|
|
|
EXTRA_CFLAGS="-DAO_USE_PTHREAD_DEFS"
|
2012-04-04 19:49:36 +00:00
|
|
|
%endif
|
|
|
|
%ifarch %{arm}
|
|
|
|
# libatomic_ops seems to fallback on some pthread implementation on ARM
|
|
|
|
EXTRA_LDFLAGS="-lpthread"
|
|
|
|
%endif
|
|
|
|
|
2013-07-29 18:59:31 +00:00
|
|
|
%{configure} --prefix=%{_prefix} --sbindir=%{_sbindir} \
|
|
|
|
--localstatedir=%{_localstatedir} --sysconfdir=%{_sysconfdir} \
|
2013-07-31 16:03:16 +00:00
|
|
|
%ifarch ppc ppc64 s390 s390x
|
2011-07-26 08:42:16 +00:00
|
|
|
--without-tcmalloc \
|
|
|
|
%endif
|
2012-09-24 06:00:37 +00:00
|
|
|
--with-system-leveldb --without-hadoop --with-radosgw --with-gtk2 \
|
2012-04-04 19:49:36 +00:00
|
|
|
CFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS" \
|
2012-05-10 13:56:19 +00:00
|
|
|
CXXFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS -fvisibility-inlines-hidden" \
|
2012-04-04 19:49:36 +00:00
|
|
|
LDFLAGS="$EXTRA_LDFLAGS"
|
2012-03-26 07:39:06 +00:00
|
|
|
|
2013-09-11 12:15:50 +00:00
|
|
|
V=1 make %{?_smp_mflags}
|
2010-05-07 17:57:33 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
|
|
|
|
find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
|
2011-03-23 12:37:37 +00:00
|
|
|
install -D src/init-ceph $RPM_BUILD_ROOT%{_initrddir}/ceph
|
|
|
|
chmod 0644 $RPM_BUILD_ROOT%{_docdir}/ceph/sample.ceph.conf
|
2013-09-11 12:15:50 +00:00
|
|
|
rm -rf __tmp_docs ; mkdir __tmp_docs
|
|
|
|
mv $RPM_BUILD_ROOT%{_docdir}/ceph/* __tmp_docs
|
2011-03-23 12:37:37 +00:00
|
|
|
install -m 0644 -D src/logrotate.conf $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/ceph
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/ceph/tmp/
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ceph/
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/log/ceph/stat
|
2011-11-06 02:10:06 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ceph
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
|
2012-03-06 14:58:21 +00:00
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
%post
|
|
|
|
/sbin/chkconfig --add ceph
|
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ] ; then
|
|
|
|
/sbin/service ceph stop >/dev/null 2>&1
|
|
|
|
/sbin/chkconfig --del ceph
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ "$1" -ge "1" ] ; then
|
|
|
|
/sbin/service ceph condrestart >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
|
2012-05-09 21:00:02 +00:00
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
%post libcephfs -p /sbin/ldconfig
|
|
|
|
%postun libcephfs -p /sbin/ldconfig
|
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
%files
|
2013-09-11 12:15:50 +00:00
|
|
|
%doc README COPYING __tmp_docs/sample*
|
2011-11-06 02:10:06 +00:00
|
|
|
%dir %{_sysconfdir}/ceph
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_bindir}/ceph
|
2011-03-23 12:37:37 +00:00
|
|
|
%{_bindir}/cephfs
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_bindir}/ceph-conf
|
|
|
|
%{_bindir}/ceph-clsinfo
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_bindir}/crushtool
|
|
|
|
%{_bindir}/monmaptool
|
|
|
|
%{_bindir}/osdmaptool
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_bindir}/ceph-authtool
|
|
|
|
%{_bindir}/ceph-syn
|
|
|
|
%{_bindir}/ceph-run
|
|
|
|
%{_bindir}/ceph-mon
|
|
|
|
%{_bindir}/ceph-mds
|
|
|
|
%{_bindir}/ceph-osd
|
|
|
|
%{_bindir}/ceph-rbdnamer
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_bindir}/rados
|
2010-08-30 17:30:32 +00:00
|
|
|
%{_bindir}/rbd
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_bindir}/ceph-debugpack
|
2011-07-12 19:20:47 +00:00
|
|
|
%{_bindir}/ceph-coverage
|
2012-03-06 14:58:21 +00:00
|
|
|
%{_bindir}/ceph-dencoder
|
2013-07-29 18:59:31 +00:00
|
|
|
%{_bindir}/ceph_filestore_dump
|
|
|
|
%{_bindir}/ceph_mon_store_converter
|
2013-09-11 20:09:38 +00:00
|
|
|
%{_bindir}/ceph-post-file
|
|
|
|
%{_bindir}/ceph-rest-api
|
2011-03-23 12:37:37 +00:00
|
|
|
%{_initrddir}/ceph
|
2013-02-21 21:35:14 +00:00
|
|
|
%{_sbindir}/mkcephfs
|
|
|
|
%{_sbindir}/mount.ceph
|
|
|
|
%{_sbindir}/ceph-disk-activate
|
|
|
|
%{_sbindir}/ceph-disk-prepare
|
|
|
|
%{_sbindir}/ceph-create-keys
|
2013-07-29 18:59:31 +00:00
|
|
|
%{_sbindir}/ceph-disk
|
|
|
|
%{_sbindir}/ceph-disk-udev
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_libdir}/ceph
|
2013-07-30 15:21:03 +00:00
|
|
|
%{_docdir}/ceph/sample.ceph.conf
|
2013-07-30 14:50:03 +00:00
|
|
|
%{_docdir}/ceph/sample.fetch_config
|
2011-03-23 12:37:37 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/logrotate.d/ceph
|
2011-11-06 02:10:06 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/bash_completion.d/rados
|
|
|
|
%config(noreplace) %{_sysconfdir}/bash_completion.d/ceph
|
|
|
|
%config(noreplace) %{_sysconfdir}/bash_completion.d/rbd
|
|
|
|
%{_mandir}/man8/ceph-mon.8*
|
|
|
|
%{_mandir}/man8/ceph-mds.8*
|
|
|
|
%{_mandir}/man8/ceph-osd.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_mandir}/man8/mkcephfs.8*
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_mandir}/man8/ceph-run.8*
|
|
|
|
%{_mandir}/man8/ceph-syn.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_mandir}/man8/crushtool.8*
|
|
|
|
%{_mandir}/man8/osdmaptool.8*
|
|
|
|
%{_mandir}/man8/monmaptool.8*
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_mandir}/man8/ceph-conf.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_mandir}/man8/ceph.8*
|
2011-03-23 12:37:37 +00:00
|
|
|
%{_mandir}/man8/cephfs.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_mandir}/man8/mount.ceph.8*
|
|
|
|
%{_mandir}/man8/radosgw.8*
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_mandir}/man8/radosgw-admin.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_mandir}/man8/rados.8*
|
2010-08-30 17:30:32 +00:00
|
|
|
%{_mandir}/man8/rbd.8*
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_mandir}/man8/ceph-authtool.8*
|
|
|
|
%{_mandir}/man8/ceph-debugpack.8*
|
2012-03-06 14:58:21 +00:00
|
|
|
%{_mandir}/man8/ceph-clsinfo.8*
|
|
|
|
%{_mandir}/man8/ceph-dencoder.8*
|
2012-05-10 13:56:19 +00:00
|
|
|
%{_mandir}/man8/ceph-rbdnamer.8*
|
2013-09-11 20:09:38 +00:00
|
|
|
%{_mandir}/man8/ceph-rest-api.8*
|
|
|
|
%{_mandir}/man8/ceph-post-file.8*
|
2011-11-06 02:10:06 +00:00
|
|
|
%{python_sitelib}/rados.py*
|
|
|
|
%{python_sitelib}/rbd.py*
|
2013-07-29 18:59:31 +00:00
|
|
|
%{python_sitelib}/cephfs.py*
|
2013-09-11 20:09:38 +00:00
|
|
|
%{python_sitelib}/ceph_argparse.py*
|
|
|
|
%{python_sitelib}/ceph_rest_api.py*
|
2011-03-23 12:37:37 +00:00
|
|
|
%dir %{_localstatedir}/lib/ceph/
|
|
|
|
%dir %{_localstatedir}/lib/ceph/tmp/
|
|
|
|
%dir %{_localstatedir}/log/ceph/
|
2013-09-11 20:09:38 +00:00
|
|
|
%{_datadir}/ceph/id_dsa_drop.ceph.com*
|
|
|
|
%{_datadir}/ceph/known_hosts_drop.ceph.com
|
2010-05-07 17:57:33 +00:00
|
|
|
|
2012-05-09 21:00:02 +00:00
|
|
|
%files libs
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/librados.so.*
|
|
|
|
%{_libdir}/librbd.so.*
|
2013-09-11 12:15:50 +00:00
|
|
|
%dir %{_libdir}/rados-classes
|
|
|
|
%{_libdir}/rados-classes/libcls_rbd.so*
|
2012-05-09 21:00:02 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_rgw.so*
|
2012-09-09 17:41:08 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_lock*
|
2012-11-01 15:18:39 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_kvs*
|
|
|
|
%{_libdir}/rados-classes/libcls_refcount*
|
2013-09-11 20:09:38 +00:00
|
|
|
%{_libdir}/rados-classes/libcls_log*
|
|
|
|
%{_libdir}/rados-classes/libcls_replica_log*
|
|
|
|
%{_libdir}/rados-classes/libcls_statelog*
|
|
|
|
%{_libdir}/rados-classes/libcls_version*
|
2012-05-09 21:00:02 +00:00
|
|
|
|
|
|
|
%files libcephfs
|
|
|
|
%doc COPYING
|
|
|
|
%{_libdir}/libcephfs.so.*
|
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
%files fuse
|
|
|
|
%doc COPYING
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_bindir}/ceph-fuse
|
2013-07-29 18:59:31 +00:00
|
|
|
%{_bindir}/rbd-fuse
|
2013-02-21 21:35:14 +00:00
|
|
|
%{_sbindir}/mount.fuse.ceph
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_mandir}/man8/ceph-fuse.8*
|
2013-07-29 18:59:31 +00:00
|
|
|
%{_mandir}/man8/rbd-fuse.8*
|
2010-05-07 17:57:33 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%doc COPYING
|
2013-09-11 12:15:50 +00:00
|
|
|
%dir %{_includedir}/cephfs
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_includedir}/cephfs/libcephfs.h
|
2013-09-11 12:15:50 +00:00
|
|
|
#%dir %{_includedir}/crush
|
2012-09-09 17:41:08 +00:00
|
|
|
#%{_includedir}/crush/crush.h
|
|
|
|
#%{_includedir}/crush/hash.h
|
|
|
|
#%{_includedir}/crush/mapper.h
|
|
|
|
#%{_includedir}/crush/types.h
|
2013-09-11 12:15:50 +00:00
|
|
|
%dir %{_includedir}/rados
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_includedir}/rados/librados.h
|
|
|
|
%{_includedir}/rados/librados.hpp
|
2013-07-29 18:59:31 +00:00
|
|
|
%{_includedir}/rados/rados_types.h
|
|
|
|
%{_includedir}/rados/rados_types.hpp
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_includedir}/rados/buffer.h
|
|
|
|
%{_includedir}/rados/page.h
|
|
|
|
%{_includedir}/rados/crc32c.h
|
2012-09-09 17:41:08 +00:00
|
|
|
#%{_includedir}/rados/librgw.h
|
2013-09-11 12:15:50 +00:00
|
|
|
%dir %{_includedir}/rbd
|
2011-03-23 12:37:37 +00:00
|
|
|
%{_includedir}/rbd/librbd.h
|
|
|
|
%{_includedir}/rbd/librbd.hpp
|
2012-11-01 15:18:39 +00:00
|
|
|
%{_includedir}/rbd/features.h
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_libdir}/libcephfs.so
|
2010-05-07 17:57:33 +00:00
|
|
|
%{_libdir}/librados.so
|
2012-09-09 17:41:08 +00:00
|
|
|
#%{_libdir}/librgw.so
|
2013-09-11 12:15:50 +00:00
|
|
|
%{_libdir}/librbd.so
|
|
|
|
%{_bindir}/librados-config
|
2011-07-12 19:20:47 +00:00
|
|
|
%{_mandir}/man8/librados-config.8*
|
2011-03-23 12:37:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files radosgw
|
|
|
|
%{_bindir}/radosgw
|
2011-11-06 02:10:06 +00:00
|
|
|
%{_bindir}/radosgw-admin
|
|
|
|
%{_sysconfdir}/bash_completion.d/radosgw-admin
|
2010-05-07 17:57:33 +00:00
|
|
|
|
|
|
|
%changelog
|
2013-09-11 20:09:38 +00:00
|
|
|
* Wed Sep 11 2013 Josef Bacik <josef@toxicpanda.com> - 0.67.3-1
|
|
|
|
- update to 0.67.3
|
|
|
|
|
2013-09-11 12:15:50 +00:00
|
|
|
* Wed Sep 11 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 0.61.7-3
|
|
|
|
- let base package include all its documentation files via %%doc magic,
|
|
|
|
so for Fedora 20 Unversioned Docdirs no files are included accidentally
|
|
|
|
- include the sample config files again (instead of just an empty docdir
|
|
|
|
that has been added for #846735)
|
|
|
|
- don't include librbd.so.1 also in -devel package (#1003202)
|
|
|
|
- move one misplaced rados plugin from -devel into -libs package (#891993)
|
|
|
|
- include missing directories in -devel and -libs packages
|
|
|
|
- move librados-config into the -devel pkg where its manual page is, too
|
|
|
|
- add %%_isa to subpackage dependencies
|
|
|
|
- don't use %%defattr anymore
|
|
|
|
- add V=1 to make invocation for verbose build output
|
|
|
|
|
2013-07-31 16:03:16 +00:00
|
|
|
* Wed Jul 31 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.61.7-2
|
|
|
|
- re-enable tmalloc on arm now gperftools is fixed
|
|
|
|
|
2013-07-29 18:59:31 +00:00
|
|
|
* Mon Jul 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.61.7-1
|
|
|
|
- Update to 0.61.7
|
|
|
|
|
2013-07-27 12:52:09 +00:00
|
|
|
* Sat Jul 27 2013 pmachata@redhat.com - 0.56.4-2
|
|
|
|
- Rebuild for boost 1.54.0
|
|
|
|
|
2013-03-29 20:39:26 +00:00
|
|
|
* Fri Mar 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.4-1
|
|
|
|
- Update to 0.56.4
|
|
|
|
- Add upstream d02340d90c9d30d44c962bea7171db3fe3bfba8e to fix logrotate
|
|
|
|
|
2013-02-21 21:35:14 +00:00
|
|
|
* Wed Feb 20 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.3-1
|
|
|
|
- Update to 0.56.3
|
|
|
|
|
2013-02-11 20:51:34 +00:00
|
|
|
* Mon Feb 11 2013 Richard W.M. Jones <rjones@redhat.com> - 0.53-2
|
|
|
|
- Rebuilt to try to fix boost dependency problem in Rawhide.
|
|
|
|
|
2012-11-01 15:18:39 +00:00
|
|
|
* Thu Nov 1 2012 Josef Bacik <josef@toxicpanda.com> - 0.53-1
|
|
|
|
- Update to 0.53
|
|
|
|
|
2012-09-24 06:22:21 +00:00
|
|
|
* Mon Sep 24 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-3
|
|
|
|
- Fix automake 1.12 error
|
2012-09-24 12:39:26 +00:00
|
|
|
- Rebuild after buildroot was messed up
|
2012-09-24 06:22:21 +00:00
|
|
|
|
2012-09-24 06:00:37 +00:00
|
|
|
* Tue Sep 18 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-2
|
|
|
|
- Use system leveldb
|
|
|
|
|
2012-09-09 17:41:08 +00:00
|
|
|
* Fri Sep 07 2012 David Nalley <david@gnsa.us> - 0.51-1
|
|
|
|
- Updating to 0.51
|
|
|
|
- Updated url and source url.
|
|
|
|
|
2012-07-18 18:47:55 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-05-09 21:00:02 +00:00
|
|
|
* Wed May 9 2012 Josef Bacik <josef@toxicpanda.com> - 0.46-1
|
|
|
|
- updated to upstream 0.46
|
|
|
|
- broke out libcephfs (rhbz# 812975)
|
|
|
|
|
2012-04-23 18:05:08 +00:00
|
|
|
* Mon Apr 23 2012 Dan Horák <dan[at]danny.cz> - 0.45-2
|
|
|
|
- fix detection of C++11 atomic header
|
|
|
|
|
2012-04-12 20:02:46 +00:00
|
|
|
* Thu Apr 12 2012 Josef Bacik <josef@toxicpanda.com> - 0.45-1
|
|
|
|
- updating to upstream 0.45
|
|
|
|
|
2012-04-04 19:49:36 +00:00
|
|
|
* Wed Apr 4 2012 Niels de Vos <devos@fedoraproject.org> - 0.44-5
|
|
|
|
- Add LDFLAGS=-lpthread on any ARM architecture
|
|
|
|
- Add CFLAGS=-DAO_USE_PTHREAD_DEFS on ARMv5tel
|
|
|
|
|
2012-03-26 09:32:43 +00:00
|
|
|
* Mon Mar 26 2012 Dan Horák <dan[at]danny.cz> 0.44-4
|
|
|
|
- gperftools not available also on ppc
|
|
|
|
|
2012-03-26 07:39:06 +00:00
|
|
|
* Mon Mar 26 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-3
|
|
|
|
- Remove unneeded patch
|
|
|
|
|
|
|
|
* Sun Mar 25 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-2
|
|
|
|
- Update to 0.44
|
|
|
|
- Fix build problems
|
|
|
|
|
2012-03-06 14:58:21 +00:00
|
|
|
* Mon Mar 5 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.43-1
|
|
|
|
- Update to 0.43
|
|
|
|
- Remove upstreamed compile fixes patch
|
|
|
|
- Remove obsoleted dump_pop patch
|
|
|
|
|
2012-02-28 18:01:56 +00:00
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-2
|
|
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
|
2012-02-17 02:39:09 +00:00
|
|
|
* Thu Feb 16 2012 Tom Callaway <spot@fedoraproject.org> 0.41-1
|
|
|
|
- update to 0.41
|
|
|
|
- fix issues preventing build
|
|
|
|
- rebuild against gperftools
|
|
|
|
|
2012-01-13 19:06:41 +00:00
|
|
|
* Sat Dec 03 2011 David Nalley <david@gnsa.us> 0.38-1
|
|
|
|
- updating to upstream 0.39
|
2011-11-09 16:57:37 +00:00
|
|
|
|
2011-11-06 02:10:06 +00:00
|
|
|
* Sat Nov 05 2011 David Nalley <david@gnsa.us> 0.37-1
|
|
|
|
- create /etc/ceph - bug 745462
|
|
|
|
- upgrading to 0.37, fixing 745460, 691033
|
|
|
|
- fixing various logrotate bugs 748930, 747101
|
|
|
|
|
2011-08-19 09:18:24 +00:00
|
|
|
* Fri Aug 19 2011 Dan Horák <dan[at]danny.cz> 0.31-4
|
|
|
|
- google-perftools not available also on s390(x)
|
|
|
|
|
2011-07-26 08:42:16 +00:00
|
|
|
* Mon Jul 25 2011 Karsten Hopp <karsten@redhat.com> 0.31-3
|
2011-08-19 09:18:24 +00:00
|
|
|
- build without tcmalloc on ppc64, BR google-perftools is not available there
|
2011-07-26 08:42:16 +00:00
|
|
|
|
2011-07-12 20:47:16 +00:00
|
|
|
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-2
|
|
|
|
- Remove curl/types.h include since we don't use it anymore
|
|
|
|
|
2011-07-12 19:20:47 +00:00
|
|
|
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-1
|
|
|
|
- Update to 0.31
|
|
|
|
|
2011-04-05 23:11:43 +00:00
|
|
|
* Tue Apr 5 2011 Josef Bacik <josef@toxicpanda.com> 0.26-2
|
|
|
|
- Add the compile fix patch
|
|
|
|
|
2011-04-05 22:58:14 +00:00
|
|
|
* Tue Apr 5 2011 Josef Bacik <josef@toxicpanda.com> 0.26
|
|
|
|
- Update to 0.26
|
|
|
|
|
2011-03-23 12:37:37 +00:00
|
|
|
* Tue Mar 22 2011 Josef Bacik <josef@toxicpanda.com> 0.25.1-1
|
|
|
|
- Update to 0.25.1
|
|
|
|
|
2011-02-08 07:16:45 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-09-29 20:24:43 +00:00
|
|
|
* Wed Sep 29 2010 Steven Pritchard <steve@kspei.com> 0.21.3-1
|
|
|
|
- Update to 0.21.3.
|
|
|
|
|
2010-09-29 17:38:19 +00:00
|
|
|
* Mon Aug 30 2010 Steven Pritchard <steve@kspei.com> 0.21.2-1
|
|
|
|
- Update to 0.21.2.
|
|
|
|
|
2010-08-30 17:30:32 +00:00
|
|
|
* Thu Aug 26 2010 Steven Pritchard <steve@kspei.com> 0.21.1-1
|
|
|
|
- Update to 0.21.1.
|
|
|
|
- Sample configs moved to /usr/share/doc/ceph/.
|
|
|
|
- Added cclass, rbd, and cclsinfo.
|
|
|
|
- Dropped mkmonfs and rbdtool.
|
|
|
|
- mkcephfs moved to /sbin.
|
|
|
|
- Add libcls_rbd.so.
|
|
|
|
|
2010-07-06 18:57:23 +00:00
|
|
|
* Tue Jul 6 2010 Josef Bacik <josef@toxicpanda.com> 0.20.2-1
|
|
|
|
- update to 0.20.2
|
|
|
|
|
2010-05-07 17:57:33 +00:00
|
|
|
* Wed May 5 2010 Josef Bacik <josef@toxicpanda.com> 0.20-1
|
|
|
|
- update to 0.20
|
|
|
|
- disable hadoop building
|
|
|
|
- remove all the test binaries properly
|
|
|
|
|
|
|
|
* Fri Apr 30 2010 Sage Weil <sage@newdream.net> 0.19.1-5
|
|
|
|
- Remove java deps (no need to build hadoop by default)
|
|
|
|
- Include all required librados helpers
|
|
|
|
- Include fetch_config sample
|
|
|
|
- Include rbdtool
|
|
|
|
- Remove misc debugging, test binaries
|
|
|
|
|
2013-07-29 18:59:31 +00:00
|
|
|
* Fri Apr 30 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-4
|
2010-05-07 17:57:33 +00:00
|
|
|
- Add java-devel and java tricks to get hadoop to build
|
|
|
|
|
|
|
|
* Mon Apr 26 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-3
|
|
|
|
- Move the rados and cauthtool man pages into the base package
|
|
|
|
|
|
|
|
* Sun Apr 25 2010 Jonathan Dieter <jdieter@lesbg.com> 0.19.1-2
|
|
|
|
- Add missing libhadoopcephfs.so* to file list
|
|
|
|
- Add COPYING to all subpackages
|
|
|
|
- Fix ownership of /usr/lib[64]/ceph
|
|
|
|
- Enhance description of fuse client
|
|
|
|
|
|
|
|
* Tue Apr 20 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-1
|
|
|
|
- Update to 0.19.1
|
|
|
|
|
|
|
|
* Mon Feb 8 2010 Josef Bacik <josef@toxicpanda.com> 0.18-1
|
|
|
|
- Initial spec file creation, based on the template provided in the ceph src
|