Blame SPECS/ceph-common.spec

71af4b
%if ! (0%{?fedora} > 12 || 0%{?rhel} > 5)
71af4b
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
71af4b
%{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
71af4b
%endif
71af4b
71af4b
#################################################################################
71af4b
# common
71af4b
#################################################################################
71af4b
Name:		ceph-common
71af4b
Version:	10.2.5
71af4b
Release:	4%{?dist}
71af4b
Epoch:		1
71af4b
Summary:	Ceph Common
71af4b
License:	GPLv2
71af4b
Group:		System Environment/Base
71af4b
URL:		http://ceph.com/
71af4b
Source0:	http://ceph.com/download/ceph-%{version}.tar.gz
71af4b
Patch1: 0001-Makefile-Fix-dencoder-build.patch
71af4b
Patch2: 0002-Add-fake-fcgiapp.h-for-rgw.patch
71af4b
Patch3: 0003-common-Build-more-files-of-libcommon-in-client.patch
71af4b
Patch4: 0004-libradosstripper-Build-libradostripper-for-rados-as-.patch
71af4b
Patch5: 0005-A-compile-patch-for-s390.patch
71af4b
Requires:	librbd1 = %{epoch}:%{version}-%{release}
71af4b
Requires:	librados2 = %{epoch}:%{version}-%{release}
71af4b
Requires:	python-rbd = %{epoch}:%{version}-%{release}
71af4b
Requires:	python-rados = %{epoch}:%{version}-%{release}
71af4b
Requires:	python
71af4b
Requires:	python-argparse
71af4b
Requires:	python-requests
71af4b
%if ! ( 0%{?rhel} && 0%{?rhel} <= 6 )
71af4b
Requires:	xfsprogs
71af4b
%endif
71af4b
Requires:	cryptsetup
71af4b
Requires:	parted
71af4b
Requires:	util-linux
71af4b
%ifnarch s390 s390x
71af4b
Requires:	hdparm
71af4b
%endif
71af4b
# For initscript
71af4b
Requires:	redhat-lsb-core
71af4b
Requires(post):	binutils
71af4b
BuildRequires:	make
71af4b
BuildRequires:	gcc-c++
71af4b
BuildRequires:	libtool
71af4b
BuildRequires:	boost-devel
71af4b
BuildRequires:	bzip2-devel
71af4b
BuildRequires:	libedit-devel
71af4b
BuildRequires:	perl
71af4b
BuildRequires:	gdbm
71af4b
BuildRequires:	pkgconfig
71af4b
BuildRequires:	python
71af4b
BuildRequires:	python-nose
71af4b
BuildRequires:	python-argparse
71af4b
BuildRequires:	libaio-devel
71af4b
BuildRequires:	libcurl-devel
71af4b
BuildRequires:	libxml2-devel
71af4b
BuildRequires:	libuuid-devel
71af4b
BuildRequires:	libblkid-devel >= 2.17
71af4b
BuildRequires:	libudev-devel
71af4b
BuildRequires:	expat-devel
71af4b
BuildRequires:	Cython
71af4b
BuildRequires:	python-devel
71af4b
BuildRequires:	python-virtualenv
71af4b
BuildRequires:	python-sphinx
71af4b
BuildRequires:	openldap-devel
71af4b
BuildRequires:	snappy-devel
71af4b
BuildRequires:	redhat-lsb-core
71af4b
%if ! ( 0%{?rhel} && 0%{?rhel} <= 6 )
71af4b
BuildRequires:	xfsprogs-devel
71af4b
%endif
71af4b
# No yasm dependency for now, it causes selinux issues
71af4b
#BuildRequires:	yasm
71af4b
71af4b
#################################################################################
71af4b
# specific
71af4b
#################################################################################
71af4b
%if ! 0%{?rhel}
71af4b
BuildRequires:	sharutils
71af4b
%endif
71af4b
71af4b
Requires:	gdisk
71af4b
BuildRequires:	nss-devel
71af4b
BuildRequires:	keyutils-libs-devel
71af4b
Requires:	gdisk
71af4b
Requires(post):	chkconfig
71af4b
Requires(preun):chkconfig
71af4b
Requires(preun):initscripts
71af4b
71af4b
#################################################################################
71af4b
# obsoletes
71af4b
#################################################################################
71af4b
# We need to obsolete and provide python-ceph with this package
71af4b
# We moved ceph_argparse.py from python-ceph to ceph-common when
71af4b
# we split python-ceph, ceph-common needs to obsolete python-ceph
71af4b
# as well, it also provides python-ceph via dependencies
71af4b
Obsoletes:	python-ceph
71af4b
Provides:	python-ceph
71af4b
71af4b
%description
71af4b
Common utilities to mount and interact with a ceph storage cluster.
71af4b
71af4b
71af4b
#################################################################################
71af4b
# packages
71af4b
#################################################################################
71af4b
%package -n librados2
71af4b
Summary:	RADOS distributed object store client library
71af4b
Group:		System Environment/Libraries
71af4b
License:	LGPL-2.0
71af4b
Obsoletes:	ceph-libs
71af4b
%description -n librados2
71af4b
RADOS is a reliable, autonomic distributed object storage cluster
71af4b
developed as part of the Ceph distributed storage system. This is a
71af4b
shared library allowing applications to access the distributed object
71af4b
store using a simple file-like interface.
71af4b
71af4b
%package -n librados2-devel
71af4b
Summary:	RADOS headers
71af4b
Group:		Development/Libraries
71af4b
License:	LGPL-2.0
71af4b
Requires:	librados2 = %{epoch}:%{version}-%{release}
71af4b
Obsoletes:	ceph-devel
71af4b
%description -n librados2-devel
71af4b
This package contains libraries and headers needed to develop programs
71af4b
that use RADOS object store.
71af4b
71af4b
%package -n python-rados
71af4b
Summary:	Python libraries for the RADOS object store
71af4b
Group:		System Environment/Libraries
71af4b
License:	LGPL-2.0
71af4b
Requires:	librados2 = %{epoch}:%{version}-%{release}
71af4b
Obsoletes:	python-ceph
71af4b
%description -n python-rados
71af4b
This package contains Python libraries for interacting with Cephs RADOS
71af4b
object store.
71af4b
71af4b
%package -n librbd1
71af4b
Summary:	RADOS block device client library
71af4b
Group:		System Environment/Libraries
71af4b
License:	LGPL-2.0
71af4b
Requires:	librados2 = %{epoch}:%{version}-%{release}
71af4b
Obsoletes:	ceph-libs
71af4b
%description -n librbd1
71af4b
RBD is a block device striped across multiple distributed objects in
71af4b
RADOS, a reliable, autonomic distributed object storage cluster
71af4b
developed as part of the Ceph distributed storage system. This is a
71af4b
shared library allowing applications to manage these block devices.
71af4b
71af4b
%package -n librbd1-devel
71af4b
Summary:	RADOS block device headers
71af4b
Group:		Development/Libraries
71af4b
License:	LGPL-2.0
71af4b
Requires:	librbd1 = %{epoch}:%{version}-%{release}
71af4b
Requires:	librados2-devel = %{epoch}:%{version}-%{release}
71af4b
Obsoletes:	ceph-devel
71af4b
%description -n librbd1-devel
71af4b
This package contains libraries and headers needed to develop programs
71af4b
that use RADOS block device.
71af4b
71af4b
%package -n python-rbd
71af4b
Summary:	Python libraries for the RADOS block device
71af4b
Group:		System Environment/Libraries
71af4b
License:	LGPL-2.0
71af4b
Requires:	librbd1 = %{epoch}:%{version}-%{release}
71af4b
Requires:	python-rados = %{epoch}:%{version}-%{release}
71af4b
Obsoletes:	python-ceph
71af4b
%description -n python-rbd
71af4b
This package contains Python libraries for interacting with Cephs RADOS
71af4b
block device.
71af4b
71af4b
#################################################################################
71af4b
# common
71af4b
#################################################################################
71af4b
%prep
71af4b
%setup -q -n ceph-%{version}
71af4b
%patch1 -p1
71af4b
%patch2 -p1
71af4b
%patch3 -p1
71af4b
%patch4 -p1
71af4b
%patch5 -p1
71af4b
71af4b
%build
71af4b
./autogen.sh
71af4b
71af4b
%if ( 0%{?rhel} && 0%{?rhel} <= 6)
71af4b
MY_CONF_OPT="--without-libxfs"
71af4b
%else
71af4b
MY_CONF_OPT=""
71af4b
%endif
71af4b
71af4b
# Do not build server part of the project
71af4b
# Do not use gperftools (tcmalloc) on rhel
71af4b
# No need to build fuse, rest-bench radosgw and ocf pkgs so far
71af4b
# Use nss instead of cryptopp library
71af4b
MY_CONF_OPT="$MY_CONF_OPT --disable-server --without-libatomic-ops --without-tcmalloc --without-radosgw --without-rest-bench --without-fuse --without-ocf --without-cryptopp --with-nss --without-radosstriper --without-cephfs"
71af4b
71af4b
export RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed -e 's/i386/i486/'`
71af4b
71af4b
%{configure}	--prefix=/usr \
71af4b
		--libexecdir=%{_libexecdir} \
71af4b
		--localstatedir=%{_localstatedir} \
71af4b
		--sysconfdir=%{_sysconfdir} \
71af4b
		--docdir=%{_docdir}/ceph \
71af4b
		--with-man-pages \
71af4b
		--mandir="%_mandir" \
71af4b
		$MY_CONF_OPT \
71af4b
		CFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS" \
71af4b
		CXXFLAGS="$RPM_OPT_FLAGS $EXTRA_CFLAGS" \
71af4b
		LDFLAGS="$EXTRA_LDFLAGS"
71af4b
71af4b
make %{_smp_mflags}
71af4b
71af4b
%install
71af4b
make DESTDIR=$RPM_BUILD_ROOT install
71af4b
find $RPM_BUILD_ROOT -type f -name "*.la" -exec rm -f {} ';'
71af4b
find $RPM_BUILD_ROOT -type f -name "*.a" -exec rm -f {} ';'
71af4b
install -D src/rbdmap $RPM_BUILD_ROOT%{_sysconfdir}/ceph/rbdmap
71af4b
rm -f $RPM_BUILD_ROOT%{_docdir}/ceph/sample.ceph.conf
71af4b
rm -f $RPM_BUILD_ROOT%{_docdir}/ceph/sample.fetch_config
71af4b
rm -f $RPM_BUILD_ROOT%{_libdir}/ceph/erasure-code/libec_*.so*
71af4b
rm -f $RPM_BUILD_ROOT%{_libexecdir}/ceph/ceph-osd-prestart.sh
71af4b
rm -f $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/radosgw-admin
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/crushtool
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/monmaptool
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/osdmaptool
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/ceph-detect-init
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/rbd-mirror
71af4b
rm -f $RPM_BUILD_ROOT%{_bindir}/rbd-nbd
71af4b
rm -f $RPM_BUILD_ROOT%{_sbindir}/ceph-disk
71af4b
rm -f $RPM_BUILD_ROOT%{_libdir}/ceph/ceph_common.sh
71af4b
rm -f $RPM_BUILD_ROOT%{_libexecdir}/ceph/ceph-osd-prestart.sh
71af4b
rm -f $RPM_BUILD_ROOT%{_mandir}/man8/rbd-mirror.8*
71af4b
rm -f $RPM_BUILD_ROOT%{_mandir}/man8/rbd-nbd.8*
71af4b
rm -f $RPM_BUILD_ROOT%{_unitdir}/ceph*
71af4b
rm -f $RPM_BUILD_ROOT%{_libexecdir}/ceph/ceph_common.sh
71af4b
rm -rf $RPM_BUILD_ROOT%{python_sitelib}/ceph_detect_init*
71af4b
rm -rf $RPM_BUILD_ROOT%{python_sitelib}/ceph_disk*
71af4b
rm -rf $RPM_BUILD_ROOT%{_libdir}/ceph/compressor
71af4b
71af4b
# udev rules
71af4b
%if 0%{?rhel} >= 7 || 0%{?fedora}
71af4b
install -m 0644 -D udev/50-rbd.rules $RPM_BUILD_ROOT/usr/lib/udev/rules.d/50-rbd.rules
71af4b
%else
71af4b
install -m 0644 -D udev/50-rbd.rules $RPM_BUILD_ROOT/lib/udev/rules.d/50-rbd.rules
71af4b
%endif
71af4b
71af4b
%clean
71af4b
rm -rf $RPM_BUILD_ROOT
71af4b
71af4b
71af4b
#################################################################################
71af4b
# files
71af4b
#################################################################################
71af4b
%files
71af4b
%defattr(-,root,root,-)
71af4b
%{_bindir}/ceph
71af4b
%{_bindir}/ceph-authtool
71af4b
%{_bindir}/ceph-conf
71af4b
%{_bindir}/ceph-dencoder
71af4b
%{_bindir}/ceph-rbdnamer
71af4b
%{_bindir}/ceph-syn
71af4b
%{_bindir}/rados
71af4b
%{_bindir}/rbd
71af4b
%{_bindir}/rbd-replay
71af4b
%{_bindir}/rbd-replay-many
71af4b
%{_bindir}/rbdmap
71af4b
%{_bindir}/ceph-post-file
71af4b
%{_bindir}/ceph-brag
71af4b
%{_mandir}/man8/ceph-authtool.8*
71af4b
%{_mandir}/man8/ceph-conf.8*
71af4b
%{_mandir}/man8/ceph-dencoder.8*
71af4b
%{_mandir}/man8/ceph-rbdnamer.8*
71af4b
%{_mandir}/man8/ceph-syn.8*
71af4b
%{_mandir}/man8/ceph-post-file.8*
71af4b
%{_mandir}/man8/ceph.8*
71af4b
%{_mandir}/man8/rados.8*
71af4b
%{_mandir}/man8/rbd.8*
71af4b
%{_mandir}/man8/rbdmap.8*
71af4b
%{_mandir}/man8/rbd-replay.8*
71af4b
%{_mandir}/man8/rbd-replay-many.8*
71af4b
%{_mandir}/man8/rbd-replay-prep.8*
71af4b
%dir %{_datadir}/ceph/
71af4b
%{_datadir}/ceph/known_hosts_drop.ceph.com
71af4b
%{_datadir}/ceph/id_rsa_drop.ceph.com
71af4b
%{_datadir}/ceph/id_rsa_drop.ceph.com.pub
71af4b
%dir %{_sysconfdir}/ceph/
71af4b
%config %{_sysconfdir}/bash_completion.d/ceph
71af4b
%config %{_sysconfdir}/bash_completion.d/rados
71af4b
%config %{_sysconfdir}/bash_completion.d/rbd
71af4b
%config(noreplace) %{_sysconfdir}/ceph/rbdmap
71af4b
%{_unitdir}/rbdmap.service
71af4b
%{python_sitelib}/ceph_argparse.py*
71af4b
%{python_sitelib}/ceph_daemon.py*
71af4b
%{_udevrulesdir}/50-rbd.rules
71af4b
%dir %{_localstatedir}/log/ceph/
71af4b
71af4b
%postun
71af4b
# Package removal cleanup
71af4b
if [ "$1" -eq "0" ] ; then
71af4b
    rm -rf /var/log/ceph
71af4b
    rm -rf /etc/ceph
71af4b
fi
71af4b
71af4b
#################################################################################
71af4b
%files -n librados2
71af4b
%defattr(-,root,root,-)
71af4b
%{_libdir}/librados.so.*
71af4b
71af4b
%post -n librados2
71af4b
/sbin/ldconfig
71af4b
71af4b
%postun -n librados2
71af4b
/sbin/ldconfig
71af4b
71af4b
#################################################################################
71af4b
%files -n librados2-devel
71af4b
%defattr(-,root,root,-)
71af4b
%dir %{_includedir}/rados
71af4b
%{_includedir}/rados/librados.h
71af4b
%{_includedir}/rados/librados.hpp
71af4b
%{_includedir}/rados/buffer.h
71af4b
%{_includedir}/rados/buffer_fwd.h
71af4b
%{_includedir}/rados/page.h
71af4b
%{_includedir}/rados/crc32c.h
71af4b
%{_includedir}/rados/rados_types.h
71af4b
%{_includedir}/rados/rados_types.hpp
71af4b
%{_includedir}/rados/memory.h
71af4b
%{_libdir}/librados.so
71af4b
%{_bindir}/librados-config
71af4b
%{_mandir}/man8/librados-config.8*
71af4b
71af4b
#################################################################################
71af4b
%files -n librbd1
71af4b
%defattr(-,root,root,-)
71af4b
%{_libdir}/librbd.so.*
71af4b
%if 0%{?rhel} >= 7 || 0%{?fedora}
71af4b
/usr/lib/udev/rules.d/50-rbd.rules
71af4b
%else
71af4b
/lib/udev/rules.d/50-rbd.rules
71af4b
%endif
71af4b
71af4b
%post -n librbd1
71af4b
/sbin/ldconfig
71af4b
71af4b
%postun -n librbd1
71af4b
/sbin/ldconfig
71af4b
71af4b
#################################################################################
71af4b
%files -n librbd1-devel
71af4b
%defattr(-,root,root,-)
71af4b
%dir %{_includedir}/rbd
71af4b
%{_includedir}/rbd/librbd.h
71af4b
%{_includedir}/rbd/librbd.hpp
71af4b
%{_includedir}/rbd/features.h
71af4b
%{_libdir}/librbd.so
71af4b
71af4b
#################################################################################
71af4b
%files -n python-rados
71af4b
%defattr(-,root,root,-)
71af4b
%{python_sitearch}/rados.so
71af4b
%{python_sitearch}/rados-*.egg-info
71af4b
71af4b
#################################################################################
71af4b
%files -n python-rbd
71af4b
%defattr(-,root,root,-)
71af4b
%{python_sitearch}/rbd.so
71af4b
%{python_sitearch}/rbd-*.egg-info
71af4b
71af4b
%changelog
71af4b
* Fri Jun 08 2018 Boris Ranto <branto@redhat.com> - 1:10.2.5-4
71af4b
- rebase the package to 10.2.5
71af4b
71af4b
* Tue Jun 20 2017 Boris Ranto <branto@redhat.com> - 1:0.94.5-2
71af4b
- drop the rebase
71af4b
71af4b
* Thu Jun 01 2017 Boris Ranto <branto@redhat.com> - 1:10.2.5-3
71af4b
- Strip away ceph user (errata complains after rebase)
71af4b
71af4b
* Mon Apr 24 2017 Boris Ranto <branto@redhat.com> - 1:10.2.5-2
71af4b
- New release (1:10.2.5-2)
71af4b
- A compile patch for s390
71af4b
- Build on all the platforms
71af4b
71af4b
* Wed Feb 22 2017 Boris Ranto <branto@redhat.com> - 1:10.2.5-1
71af4b
- New version (1:10.2.5-1)
71af4b
- Makefile: Fix dencoder build
71af4b
- Add fake fcgiapp.h for rgw
71af4b
- common: Build more files of libcommon in client
71af4b
- libradosstripper: Build libradostripper for rados as noinst
71af4b
71af4b
* Wed Jun 22 2016 Boris Ranto <branto@redhat.com> - 1:0.94.5-1
71af4b
- New version (1:0.94.5-1)
71af4b
71af4b
* Wed Jun 17 2015 Boris Ranto <branto@redhat.com> - 1:0.80.7-3
71af4b
- Fix librbd: aio calls may block (1225188)
71af4b
71af4b
* Fri Nov 21 2014 Boris Ranto <branto@redhat.com> - 1:0.80.7-2
71af4b
- We need to obsolete and provide python-ceph by ceph-common
71af4b
71af4b
* Thu Oct 16 2014 Boris Ranto <branto@redhat.com> - 1:0.80.7-1
71af4b
- Rebase to latest upstream version
71af4b
71af4b
* Mon Oct 13 2014 Boris Ranto <branto@redhat.com> - 1:0.80.6-4
71af4b
- fix the typo in librados-devel vs librados2-devel dependency
71af4b
71af4b
* Thu Oct 9 2014 Boris Ranto <branto@redhat.com> - 1:0.80.6-3
71af4b
- split the python-ceph and ceph-devel packages to properly fix the
71af4b
  'disable cephfs' issue
71af4b
71af4b
* Wed Oct 8 2014 Boris Ranto <branto@redhat.com> - 1:0.80.6-2
71af4b
- Do not package cephfs files
71af4b
71af4b
* Tue Oct 7 2014 Boris Ranto <branto@redhat.com> - 1:0.80.6-1
71af4b
- Rebase to latest stable upstream version
71af4b
- Remove libatomic_ops dependency
71af4b
71af4b
* Wed Oct 1 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-13
71af4b
- Remove python-flask dependency
71af4b
71af4b
* Wed Sep 24 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-12
71af4b
- Fix the license field
71af4b
71af4b
* Wed Sep 24 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-11
71af4b
- First attempt to build rhel 7 ceph packages
71af4b
71af4b
* Tue Sep 9 2014 Dan Horák <dan[at]danny.cz> - 1:0.80.5-10
71af4b
- update Requires for s390(x)
71af4b
71af4b
* Wed Sep 3 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-9
71af4b
- Symlink librd.so.1 to /usr/lib64/qemu only on rhel6+ x86_64 (1136811)
71af4b
71af4b
* Thu Aug 21 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-8
71af4b
- Revert the previous change
71af4b
- Fix bz 1118504, second attempt (yasm appears to be the package that caused this
71af4b
71af4b
* Wed Aug 20 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-7
71af4b
- Several more merges from file to try to fix the selinux issue (1118504)
71af4b
71af4b
* Sun Aug 17 2014 Kalev Lember <kalevlember@gmail.com> - 1:0.80.5-6
71af4b
- Obsolete ceph-libcephfs
71af4b
71af4b
* Sat Aug 16 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-5
71af4b
- Do not require xfsprogs/xfsprogs-devel for el6
71af4b
- Require gperftools-devel for non-ppc*/s390* architectures only
71af4b
- Do not require junit -- no need to build libcephfs-test.jar
71af4b
- Build without libxfs for el6
71af4b
- Build without tcmalloc for ppc*/s390* architectures
71af4b
- Location of mkcephfs must depend on a rhel release
71af4b
- Use epoch in the Requires fields [1130700]
71af4b
71af4b
* Sat Aug 16 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-4
71af4b
- Use the proper version name in Obsoletes
71af4b
71af4b
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.80.5-3
71af4b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
71af4b
71af4b
* Fri Aug 15 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-2
71af4b
- Add the arm pthread hack
71af4b
71af4b
* Fri Aug 15 2014 Boris Ranto <branto@redhat.com> - 1:0.80.5-1
71af4b
- Bump the Epoch, we need to keep the latest stable, not development,
71af4b
  ceph version in fedora
71af4b
- Use the upstream spec file with the ceph-libs split
71af4b
- Add libs-compat subpackage [1116546]
71af4b
- use fedora in rhel 7 checks
71af4b
- obsolete libcephfs [1116614]
71af4b
- depend on redhat-lsb-core for the initscript [1108696]
71af4b
71af4b
* Wed Aug 13 2014 Kalev Lember <kalevlember@gmail.com> - 0.81.0-6
71af4b
- Add obsoletes to keep the upgrade path working (#1118510)
71af4b
71af4b
* Mon Jul 7 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.81.0-5
71af4b
- revert to old spec until after f21 branch
71af4b
71af4b
* Fri Jul 4 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com>
71af4b
- temporary exclude f21/armv7hl. N.B. it builds fine on f20/armv7hl.
71af4b
71af4b
* Fri Jul 4 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.81.0-4
71af4b
- upstream ceph.spec file
71af4b
71af4b
* Tue Jul 1 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.81.0-3
71af4b
- upstream ceph.spec file
71af4b
71af4b
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.81.0-2
71af4b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
71af4b
71af4b
* Thu Jun 5 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com>
71af4b
- el6 ppc64 likewise for tcmalloc, merge from origin/el6
71af4b
71af4b
* Thu Jun 5 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com>
71af4b
- el6 ppc64 does not have gperftools, merge from origin/el6
71af4b
71af4b
* Thu Jun 5 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.81.0-1
71af4b
- ceph-0.81.0
71af4b
71af4b
* Wed Jun  4 2014 Peter Robinson <pbrobinson@fedoraproject.org> 0.80.1-5
71af4b
- gperftools now available on aarch64/ppc64
71af4b
71af4b
* Fri May 23 2014 Petr Machata <pmachata@redhat.com> - 0.80.1-4
71af4b
- Rebuild for boost 1.55.0
71af4b
71af4b
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 0.80.1-3
71af4b
- rebuild for boost 1.55.0
71af4b
71af4b
* Wed May 14 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.80.1-2
71af4b
- build epel-6
71af4b
- exclude %%{_libdir}/ceph/erasure-code in base package
71af4b
71af4b
* Tue May 13 2014 Kaleb S. KEITHLEY <kkeithle[at]redhat.com> - 0.80.1-1
71af4b
- Update to latest stable upstream release, BZ 1095201
71af4b
- PIE, _hardened_build, BZ 955174
71af4b
71af4b
* Thu Feb 06 2014 Ken Dreyer <ken.dreyer@inktank.com> - 0.72.2-2
71af4b
- Move plugins from -devel into -libs package (#891993). Thanks Michael
71af4b
  Schwendt.
71af4b
71af4b
* Mon Jan 06 2014 Ken Dreyer <ken.dreyer@inktank.com> 0.72.2-1
71af4b
- Update to latest stable upstream release
71af4b
- Use HTTPS for URLs
71af4b
- Submit Automake 1.12 patch upstream
71af4b
- Move unversioned shared libs from ceph-libs into ceph-devel
71af4b
71af4b
* Wed Dec 18 2013 Marcin Juszkiewicz <mjuszkiewicz@redhat.com> 0.67.3-4
71af4b
- build without tcmalloc on aarch64 (no gperftools)
71af4b
71af4b
* Sat Nov 30 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.67.3-3
71af4b
- gperftools not currently available on aarch64
71af4b
71af4b
* Mon Oct 07 2013 Dan Horák <dan[at]danny.cz> - 0.67.3-2
71af4b
- fix build on non-x86_64 64-bit arches
71af4b
71af4b
* Wed Sep 11 2013 Josef Bacik <josef@toxicpanda.com> - 0.67.3-1
71af4b
- update to 0.67.3
71af4b
71af4b
* Wed Sep 11 2013 Michael Schwendt <mschwendt@fedoraproject.org> - 0.61.7-3
71af4b
- let base package include all its documentation files via %%doc magic,
71af4b
  so for Fedora 20 Unversioned Docdirs no files are included accidentally
71af4b
- include the sample config files again (instead of just an empty docdir
71af4b
  that has been added for #846735)
71af4b
- don't include librbd.so.1 also in -devel package (#1003202)
71af4b
- move one misplaced rados plugin from -devel into -libs package (#891993)
71af4b
- include missing directories in -devel and -libs packages
71af4b
- move librados-config into the -devel pkg where its manual page is, too
71af4b
- add %%_isa to subpackage dependencies
71af4b
- don't use %%defattr anymore
71af4b
- add V=1 to make invocation for verbose build output
71af4b
71af4b
* Wed Jul 31 2013 Peter Robinson <pbrobinson@fedoraproject.org> 0.61.7-2
71af4b
- re-enable tmalloc on arm now gperftools is fixed
71af4b
71af4b
* Mon Jul 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.61.7-1
71af4b
- Update to 0.61.7
71af4b
71af4b
* Sat Jul 27 2013 pmachata@redhat.com - 0.56.4-2
71af4b
- Rebuild for boost 1.54.0
71af4b
71af4b
* Fri Mar 29 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.4-1
71af4b
- Update to 0.56.4
71af4b
- Add upstream d02340d90c9d30d44c962bea7171db3fe3bfba8e to fix logrotate
71af4b
71af4b
* Wed Feb 20 2013 Josef Bacik <josef@toxicpanda.com> - 0.56.3-1
71af4b
- Update to 0.56.3
71af4b
71af4b
* Mon Feb 11 2013 Richard W.M. Jones <rjones@redhat.com> - 0.53-2
71af4b
- Rebuilt to try to fix boost dependency problem in Rawhide.
71af4b
71af4b
* Thu Nov  1 2012 Josef Bacik <josef@toxicpanda.com> - 0.53-1
71af4b
- Update to 0.53
71af4b
71af4b
* Mon Sep 24 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-3
71af4b
- Fix automake 1.12 error
71af4b
- Rebuild after buildroot was messed up
71af4b
71af4b
* Tue Sep 18 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.51-2
71af4b
- Use system leveldb
71af4b
71af4b
* Fri Sep 07 2012 David Nalley <david@gnsa.us> - 0.51-1
71af4b
- Updating to 0.51
71af4b
- Updated url and source url. 
71af4b
71af4b
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.46-2
71af4b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
71af4b
71af4b
* Wed May  9 2012 Josef Bacik <josef@toxicpanda.com> - 0.46-1
71af4b
- updated to upstream 0.46
71af4b
- broke out libcephfs (rhbz# 812975)
71af4b
71af4b
* Mon Apr 23 2012 Dan Horák <dan[at]danny.cz> - 0.45-2
71af4b
- fix detection of C++11 atomic header
71af4b
71af4b
* Thu Apr 12 2012 Josef Bacik <josef@toxicpanda.com> - 0.45-1
71af4b
- updating to upstream 0.45
71af4b
71af4b
* Wed Apr  4 2012 Niels de Vos <devos@fedoraproject.org> - 0.44-5
71af4b
- Add LDFLAGS=-lpthread on any ARM architecture
71af4b
- Add CFLAGS=-DAO_USE_PTHREAD_DEFS on ARMv5tel
71af4b
71af4b
* Mon Mar 26 2012 Dan Horák <dan[at]danny.cz> 0.44-4
71af4b
- gperftools not available also on ppc
71af4b
71af4b
* Mon Mar 26 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-3
71af4b
- Remove unneeded patch
71af4b
71af4b
* Sun Mar 25 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.44-2
71af4b
- Update to 0.44
71af4b
- Fix build problems
71af4b
71af4b
* Mon Mar  5 2012 Jonathan Dieter <jdieter@lesbg.com> - 0.43-1
71af4b
- Update to 0.43
71af4b
- Remove upstreamed compile fixes patch
71af4b
- Remove obsoleted dump_pop patch
71af4b
71af4b
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.41-2
71af4b
- Rebuilt for c++ ABI breakage
71af4b
71af4b
* Thu Feb 16 2012 Tom Callaway <spot@fedoraproject.org> 0.41-1
71af4b
- update to 0.41
71af4b
- fix issues preventing build
71af4b
- rebuild against gperftools
71af4b
71af4b
* Sat Dec 03 2011 David Nalley <david@gnsa.us> 0.38-1
71af4b
- updating to upstream 0.39
71af4b
71af4b
* Sat Nov 05 2011 David Nalley <david@gnsa.us> 0.37-1
71af4b
- create /etc/ceph - bug 745462
71af4b
- upgrading to 0.37, fixing 745460, 691033
71af4b
- fixing various logrotate bugs 748930, 747101
71af4b
71af4b
* Fri Aug 19 2011 Dan Horák <dan[at]danny.cz> 0.31-4
71af4b
- google-perftools not available also on s390(x)
71af4b
71af4b
* Mon Jul 25 2011 Karsten Hopp <karsten@redhat.com> 0.31-3
71af4b
- build without tcmalloc on ppc64, BR google-perftools is not available there
71af4b
71af4b
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-2
71af4b
- Remove curl/types.h include since we don't use it anymore
71af4b
71af4b
* Tue Jul 12 2011 Josef Bacik <josef@toxicpanda.com> 0.31-1
71af4b
- Update to 0.31
71af4b
71af4b
* Tue Apr  5 2011 Josef Bacik <josef@toxicpanda.com> 0.26-2
71af4b
- Add the compile fix patch
71af4b
71af4b
* Tue Apr  5 2011 Josef Bacik <josef@toxicpanda.com> 0.26
71af4b
- Update to 0.26
71af4b
71af4b
* Tue Mar 22 2011 Josef Bacik <josef@toxicpanda.com> 0.25.1-1
71af4b
- Update to 0.25.1
71af4b
71af4b
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.3-2
71af4b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
71af4b
71af4b
* Wed Sep 29 2010 Steven Pritchard <steve@kspei.com> 0.21.3-1
71af4b
- Update to 0.21.3.
71af4b
71af4b
* Mon Aug 30 2010 Steven Pritchard <steve@kspei.com> 0.21.2-1
71af4b
- Update to 0.21.2.
71af4b
71af4b
* Thu Aug 26 2010 Steven Pritchard <steve@kspei.com> 0.21.1-1
71af4b
- Update to 0.21.1.
71af4b
- Sample configs moved to /usr/share/doc/ceph/.
71af4b
- Added cclass, rbd, and cclsinfo.
71af4b
- Dropped mkmonfs and rbdtool.
71af4b
- mkcephfs moved to /sbin.
71af4b
- Add libcls_rbd.so.
71af4b
71af4b
* Tue Jul  6 2010 Josef Bacik <josef@toxicpanda.com> 0.20.2-1
71af4b
- update to 0.20.2
71af4b
71af4b
* Wed May  5 2010 Josef Bacik <josef@toxicpanda.com> 0.20-1
71af4b
- update to 0.20
71af4b
- disable hadoop building
71af4b
- remove all the test binaries properly
71af4b
71af4b
* Fri Apr 30 2010 Sage Weil <sage@newdream.net> 0.19.1-5
71af4b
- Remove java deps (no need to build hadoop by default)
71af4b
- Include all required librados helpers
71af4b
- Include fetch_config sample
71af4b
- Include rbdtool
71af4b
- Remove misc debugging, test binaries
71af4b
71af4b
* Fri Apr 30 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-4
71af4b
- Add java-devel and java tricks to get hadoop to build
71af4b
71af4b
* Mon Apr 26 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-3
71af4b
- Move the rados and cauthtool man pages into the base package
71af4b
71af4b
* Sun Apr 25 2010 Jonathan Dieter <jdieter@lesbg.com> 0.19.1-2
71af4b
- Add missing libhadoopcephfs.so* to file list
71af4b
- Add COPYING to all subpackages
71af4b
- Fix ownership of /usr/lib[64]/ceph
71af4b
- Enhance description of fuse client
71af4b
71af4b
* Tue Apr 20 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-1
71af4b
- Update to 0.19.1
71af4b
71af4b
* Mon Feb  8 2010 Josef Bacik <josef@toxicpanda.com> 0.18-1
71af4b
- Initial spec file creation, based on the template provided in the ceph src