Skip to content

Commit

Permalink
Merge pull request ceph#9670 from ceph/wip-debian-clean
Browse files Browse the repository at this point in the history
debian: silence couple warnings

Reviewed-by: Dan Mick <[email protected]>
  • Loading branch information
tchaikov authored Jun 21, 2016
2 parents 8c69da1 + f369f4d commit 14999db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
17 changes: 6 additions & 11 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ Replaces: ceph-common (<< 0.78-500), python-ceph (<< 0.92-1223),
ceph-test (<< 0.94-1322), ceph (<< 10)
Breaks: python-ceph (<< 0.92-1223), ceph-test (<< 0.94-1322),
ceph (<< 10)
X-Python-Version: >= 2.6
Description: common ceph daemon libraries and management tools
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
Expand Down Expand Up @@ -429,7 +428,7 @@ Description: debugging symbols for librados
Package: librados-dev
Architecture: linux-any
Section: libdevel
Depends: librados2 (= ${binary:Version}), ${misc:Depends}
Depends: librados2 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
Conflicts: librados1-dev, librados2-dev
Replaces: librados1-dev, librados2-dev
Description: RADOS distributed object store client library (development files)
Expand Down Expand Up @@ -638,7 +637,7 @@ Section: debug
Priority: extra
Depends: ceph-test (= ${binary:Version}), ceph-common (= ${binary:Version}),
curl, xml2,
${misc:Depends}, ${shlibs:Depends}
${misc:Depends}
Description: Ceph test and benchmarking tools
.
This package contains the debugging symbols for ceph-test.
Expand All @@ -649,7 +648,6 @@ Section: python
Depends: python-rados (= ${binary:Version}),
python-rbd (= ${binary:Version}),
python-cephfs (= ${binary:Version})
X-Python-Version: >= 2.6
Description: Meta-package for python libraries for the Ceph libraries
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
Expand All @@ -660,10 +658,9 @@ Description: Meta-package for python libraries for the Ceph libraries
Package: python-rados
Architecture: linux-any
Section: python
Depends: librados2 (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
Depends: librados2 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Replaces: python-ceph (<< 0.92-1223)
Breaks: python-ceph (<< 0.92-1223)
X-Python-Version: >= 2.6
Description: Python libraries for the Ceph librados library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
Expand All @@ -675,10 +672,9 @@ Description: Python libraries for the Ceph librados library
Package: python-rbd
Architecture: linux-any
Section: python
Depends: librbd1 (>= ${binary:Version}), ${misc:Depends}, ${python:Depends}
Depends: librbd1 (>= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Replaces: python-ceph (<< 0.92-1223)
Breaks: python-ceph (<< 0.92-1223)
X-Python-Version: >= 2.6
Description: Python libraries for the Ceph librbd library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
Expand All @@ -690,10 +686,9 @@ Description: Python libraries for the Ceph librbd library
Package: python-cephfs
Architecture: linux-any
Section: python
Depends: libcephfs1 (= ${binary:Version}), ${misc:Depends}, ${python:Depends}
Depends: libcephfs1 (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}, ${python:Depends}
Replaces: python-ceph (<< 0.92-1223)
Breaks: python-ceph (<< 0.92-1223)
X-Python-Version: >= 2.6
Description: Python libraries for the Ceph libcephfs library
Ceph is a massively scalable, open-source, distributed
storage system that runs on commodity hardware and delivers object,
Expand All @@ -710,7 +705,7 @@ Description: Java libraries for the Ceph File System

Package: libcephfs-jni
Architecture: linux-any
Section: libs
Section: java
Depends: libcephfs1 (= ${binary:Version}), ${java:Depends},
${misc:Depends}, ${shlibs:Depends}
Description: Java Native Interface library for CephFS Java bindings
1 change: 1 addition & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ binary-indep: build install
dh_testdir
dh_testroot
jh_installlibs -v -i
jh_depends -i
dh_installchangelogs -i
dh_installdocs -i --all ChangeLog
dh_installexamples -i
Expand Down
4 changes: 4 additions & 0 deletions src/test/Makefile-client.am
Original file line number Diff line number Diff line change
Expand Up @@ -787,21 +787,25 @@ librgw_file_cd_SOURCES = test/librgw_file_cd.cc
librgw_file_cd_CXXFLAGS = -I$(srcdir)/xxHash $(UNITTEST_CXXFLAGS)
librgw_file_cd_LDADD = $(UNITTEST_LDADD) \
$(LIBRGW) $(LIBRGW_DEPS) librados.la $(PTHREAD_LIBS) $(CEPH_GLOBAL) $(EXTRALIBS)
noinst_PROGRAMS += librgw_file_cd

librgw_file_gp_SOURCES = test/librgw_file_gp.cc
librgw_file_gp_CXXFLAGS = -I$(srcdir)/xxHash $(UNITTEST_CXXFLAGS)
librgw_file_gp_LDADD = $(UNITTEST_LDADD) \
$(LIBRGW) $(LIBRGW_DEPS) librados.la $(PTHREAD_LIBS) $(CEPH_GLOBAL) $(EXTRALIBS)
noinst_PROGRAMS += librgw_file_gp

librgw_file_aw_SOURCES = test/librgw_file_aw.cc
librgw_file_aw_CXXFLAGS = -I$(srcdir)/xxHash $(UNITTEST_CXXFLAGS)
librgw_file_aw_LDADD = $(UNITTEST_LDADD) \
$(LIBRGW) $(LIBRGW_DEPS) librados.la $(PTHREAD_LIBS) $(CEPH_GLOBAL) $(EXTRALIBS)
noinst_PROGRAMS += librgw_file_aw

librgw_file_nfsns_SOURCES = test/librgw_file_nfsns.cc
librgw_file_nfsns_CXXFLAGS = -I$(srcdir)/xxHash $(UNITTEST_CXXFLAGS)
librgw_file_nfsns_LDADD = $(UNITTEST_LDADD) \
$(LIBRGW) $(LIBRGW_DEPS) librados.la $(PTHREAD_LIBS) $(CEPH_GLOBAL) $(EXTRALIBS)
noinst_PROGRAMS += librgw_file_nfsns

#
# test_rgw_token_SOURCES = test/test_rgw_token.cc
Expand Down

0 comments on commit 14999db

Please sign in to comment.