ceph/ceph.spec.in

176 lines
4.7 KiB
RPMSpec
Raw Normal View History

2008-07-11 22:55:19 +00:00
Name: ceph
2010-04-30 20:39:49 +00:00
Version: @VERSION@
Release: 4%{?dist}
2010-04-30 20:51:44 +00:00
Summary: User space components of the Ceph file system
2010-04-30 20:39:49 +00:00
License: LGPLv2
Group: System Environment/Base
2008-07-11 22:55:19 +00:00
URL: http://ceph.newdream.net/
2010-04-30 20:39:49 +00:00
Source: http://ceph.newdream.net/download/%{name}-%{version}.tar.gz
BuildRequires: fuse-devel, libtool, libtool-ltdl-devel, boost-devel,
BuildRequires: libedit-devel, fuse-devel, git, perl, gdbm,
BuildRequires: openssl-devel, libatomic_ops-devel
2010-04-30 20:39:49 +00:00
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires(post): chkconfig, binutils, libedit
2010-04-30 20:39:49 +00:00
Requires(preun): chkconfig
Requires(preun): initscripts
%description
2010-04-30 20:51:44 +00:00
Ceph is a distributed network file system designed to provide excellent
performance, reliability, and scalability.
2010-04-30 20:39:49 +00:00
%package fuse
2010-04-30 20:51:44 +00:00
Summary: Ceph fuse-based client
2010-04-30 20:39:49 +00:00
Group: System Environment/Base
Requires: %{name} = %{version}-%{release}
BuildRequires: fuse-devel
%description fuse
2010-04-30 20:51:44 +00:00
FUSE based client for Ceph distributed network file system
2010-04-30 20:39:49 +00:00
%package devel
2010-04-30 20:51:44 +00:00
Summary: Ceph headers
2010-04-30 20:39:49 +00:00
Group: Development/Libraries
License: LGPLv2
Requires: %{name} = %{version}-%{release}
%description devel
2010-04-30 20:51:44 +00:00
This package contains the headers needed to develop programs that use Ceph.
%prep
2010-04-30 20:39:49 +00:00
%setup -q
%build
./autogen.sh
%{configure} --without-hadoop
make -j$(getconf _NPROCESSORS_ONLN) CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS"
%install
2010-04-30 20:39:49 +00:00
rm -rf $RPM_BUILD_ROOT
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 {} ';'
install -D src/init-ceph $RPM_BUILD_ROOT%{_initrddir}/ceph
2010-04-30 20:39:49 +00:00
chmod 0644 $RPM_BUILD_ROOT%{_sysconfdir}/ceph/sample.ceph.conf
install -m 0644 -D debian/ceph.logrotate $RPM_BUILD_ROOT%{_sysconfdir}/logrotate.d/ceph
%clean
rm -rf $RPM_BUILD_ROOT
2010-04-30 20:39:49 +00:00
%post
/sbin/ldconfig
/sbin/chkconfig --add ceph
%preun
if [ $1 = 0 ] ; then
/sbin/service ceph stop >/dev/null 2>&1
/sbin/chkconfig --del ceph
fi
%postun
/sbin/ldconfig
if [ "$1" -ge "1" ] ; then
/sbin/service ceph condrestart >/dev/null 2>&1 || :
fi
%files
2010-04-30 20:39:49 +00:00
%defattr(-,root,root,-)
%doc README COPYING
%{_bindir}/ceph
%{_bindir}/cconf
%{_bindir}/cclass
%{_bindir}/cclsinfo
%{_bindir}/crushtool
%{_bindir}/monmaptool
%{_bindir}/osdmaptool
2010-04-30 20:39:49 +00:00
%{_bindir}/cauthtool
%{_bindir}/csyn
2008-10-08 16:28:32 +00:00
%{_bindir}/crun
%{_bindir}/cmon
%{_bindir}/cmds
%{_bindir}/cosd
2010-04-30 20:39:49 +00:00
%{_bindir}/rados
%{_bindir}/radosacl
2010-04-30 20:51:44 +00:00
%{_bindir}/rbdtool
%{_initrddir}/ceph
2010-04-30 20:39:49 +00:00
%{_libdir}/libceph.so.*
%{_libdir}/libcrush.so.*
%{_libdir}/librados.so.*
%{_libdir}/libcls_rbd.so.*
%{_sbindir}/mkcephfs
2010-04-30 20:39:49 +00:00
/sbin/mount.ceph
%{_libdir}/ceph
%config(noreplace) %{_sysconfdir}/ceph/sample.ceph.conf
2010-04-30 20:51:44 +00:00
%config(noreplace) %{_sysconfdir}/ceph/sample.fetch_config
2010-04-30 20:39:49 +00:00
%{_mandir}/man8/cmon.8*
%{_mandir}/man8/cmds.8*
%{_mandir}/man8/cosd.8*
%{_mandir}/man8/mkcephfs.8*
%{_mandir}/man8/crun.8*
%{_mandir}/man8/csyn.8*
%{_mandir}/man8/crushtool.8*
%{_mandir}/man8/osdmaptool.8*
%{_mandir}/man8/monmaptool.8*
%{_mandir}/man8/cconf.8*
%{_mandir}/man8/ceph.8*
%{_mandir}/man8/mount.ceph.8*
%{_mandir}/man8/radosgw.8*
%{_mandir}/man8/radosgw_admin.8*
%{_mandir}/man8/rados.8*
2010-04-30 20:51:44 +00:00
%{_mandir}/man8/rbdtool.8*
2010-04-30 20:39:49 +00:00
%{_mandir}/man8/cauthtool.8*
%{_mandir}/man8/cclass.8.gz
%{_mandir}/man8/cclsinfo.8.gz
%files fuse
2010-04-30 20:39:49 +00:00
%defattr(-,root,root,-)
%doc COPYING
%{_bindir}/cfuse
2010-04-30 20:39:49 +00:00
%{_mandir}/man8/cfuse.8*
%files devel
%defattr(-,root,root,-)
%doc COPYING
%{_includedir}/ceph/libceph.h
%{_includedir}/crush/crush.h
%{_includedir}/crush/hash.h
%{_includedir}/crush/mapper.h
%{_includedir}/crush/types.h
%{_includedir}/rados/librados.h
2010-04-30 20:51:44 +00:00
%{_includedir}/rados/librados.hpp
%{_includedir}/rados/buffer.h
%{_includedir}/rados/atomic.h
%{_includedir}/rados/page.h
%{_includedir}/rados/crc32c.h
%{_includedir}/rados/Spinlock.h
%{_includedir}/rados/assert.h
2010-04-30 20:39:49 +00:00
%{_libdir}/libceph.so
%{_libdir}/libcrush.so
%{_libdir}/librados.so
%{_libdir}/libcls_rbd.so
2010-04-30 20:39:49 +00:00
%changelog
2010-04-30 20:51:44 +00:00
* 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
2010-04-30 20:39:49 +00:00
* Thu Apr 30 2010 Josef Bacik <josef@toxicpanda.com> 0.19.1-4
- 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