Project

General

Profile

Bug #11061

Updated by Loïc Dachary about 9 years ago

On https://ceph.com/git/?p=ceph.git;a=commit;h=a19f92cfa64741fb801d0e814dd712ab52d4d221 the following patch is necessary to run-make-check.sh on a fresh VPS 
 <pre> 
 LSB Version:      :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch 
 Distributor ID: RedHatEnterpriseServer 
 Description:      Red Hat Enterprise Linux Server release 6.5 (Santiago) 
 Release:          6.5 
 Codename:         Santiago 
 </pre> 
 EPEL was installed with 
 <pre> 
 File Edit Options Buffers Tools Help                                                                                                  
 SUDO=sudo 
 $SUDO yum install -y yum-utils 
  EPEL_VERSION=$(lsb_release -rs | cut -f1 -d.) 
  $SUDO yum-config-manager --add-repo https://dl.fedoraproject.org/pub/epel/$EPEL_VERSION/x86_64/ 
  $SUDO yum install --nogpgcheck -y epel-release 
  $SUDO rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-$EPEL_VERSION 
  $SUDO rm -f /etc/yum.repos.d/dl.fedoraproject.org* 
 </pre> 

 <pre> 
 diff --git a/ceph.spec.in b/ceph.spec.in 
 index d284844..4c80cfe 100644 
 --- a/ceph.spec.in 
 +++ b/ceph.spec.in 
 @@ -45,7 +45,6 @@ BuildRequires:          gdbm 
  BuildRequires: hdparm 
  BuildRequires: libaio-devel 
  BuildRequires: libcurl-devel 
 -BuildRequires: libedit-devel 
  BuildRequires: libxml2-devel 
  BuildRequires: libuuid-devel 
  BuildRequires: libblkid-devel >= 2.17 
 @@ -95,7 +94,6 @@ BuildRequires:          fdupes 
  Requires:        gdisk 
  BuildRequires: nss-devel 
  BuildRequires: keyutils-libs-devel 
 -BuildRequires: libatomic_ops-devel 
  Requires:        gdisk 
  Requires(post):          chkconfig 
  Requires(preun):chkconfig 
 </pre> 

Back