base
という名前のライブラリをパッケージ化し、ppa:satyagowtham-k-gmail/ferryfair.ppa
にアップロードしました。 launchpadはbase
パッケージを正常にビルドし、Sudo apt install base-dev
で正常にインストールしました。現在、logger
と呼ばれる別のライブラリをパッケージングしています。これはbase
に依存しています。
ppa
をpbuilder chroot
に追加しました
$ Sudo cp ~/pbuilder/xenial-base.tgz /var/cache/pbuilder/base.tgz
$ pbuilder login --save-after-login
# apt-add-repository ppa:satyagowtham-k-gmail/ferryfair.ppa
# apt-get update
# exit
pbuilder-dist xenial build logger_1.0-0ubuntu1.dscは以下のエラーを与えています
...
...
install -d debian/logger-dev/DEBIAN
dpkg-shlibdeps -Tdebian/logger1.substvars -l/build/logger-1.0/lib/x86_64 --ignore-missing-info debian/logger1/usr/lib/x86_64/liblogger.so.1.0
dpkg-shlibdeps: error: couldn't find library libbase.so.1 needed by debian/logger1/usr/lib/x86_64/liblogger.so.1.0 (ELF format: 'elf64-x86-64'; RPATH: '')
dpkg-shlibdeps: error: cannot continue due to the error above
Note: libraries are not searched in other binary packages that do not have any shlibs or symbols file.
To help dpkg-shlibdeps find private libraries, you might need to use -l.
dh_shlibdeps: dpkg-shlibdeps -Tdebian/logger1.substvars -l/build/logger-1.0/lib/x86_64 --ignore-missing-info debian/logger1/usr/lib/x86_64/liblogger.so.1.0 returned exit code 2
debian/rules:10: recipe for target 'override_dh_shlibdeps' failed
make[1]: *** [override_dh_shlibdeps] Error 2
make[1]: Leaving directory '/build/logger-1.0'
debian/rules:13: recipe for target 'binary' failed
make: *** [binary] Error 2
dpkg-buildpackage: error: fakeroot debian/rules binary gave error exit status 2
...
...
debian/rules
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
override_dh_auto_test:
override_dh_usrlocal:
override_dh_shlibdeps:
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info -l$(Shell pwd)/lib/$(Shell uname -m)
%:
dh $@ --buildsystem=cmake
debian/control
Source: logger
Priority: optional
Maintainer: Satya Gowtham Kudupudi <[email protected]>
Build-Depends: debhelper (>= 9), cmake, base-dev
Standards-Version: 3.9.7
Section: non-free/libs
Homepage: https://github.com/necktwi/logger
Vcs-Git: https://github.com/necktwi/logger.git
Vcs-Browser: https://github.com/necktwi/logger
Package: logger-dev
Section: non-free/libdevel
Architecture: any
Depends: logger1 (= ${binary:Version}), ${misc:Depends}, base1
Description: logger from ferryfair.com
It logs a beautiful and useful format.
Package: logger1
Section: non-free/libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}, base1
Description: logger from ferryfair.com
It logs a beautiful and useful format.
問題はbase
パッケージにあります。共有オブジェクトを間違ったパスにインストールします
/usr/lib/x86_64/
どこにあるべきか
/usr/lib/x86_64-linux-gnu/
前の質問から、CMakeLists.txt
にいくつかの変更を加えて、/usr/lib/
にないライブラリをインストールしました:
include(TargetArch.cmake)
target_architecture(Arch)
...
install(TARGETS ${PROJECT_NAME} DESTINATION lib/${Arch})
...
install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_NAME}.pc"
DESTINATION lib/${Arch}/pkgconfig
RENAME "lib${PROJECT_NAME}.pc")
新しい変数${Arch}
はx86_64
に置き換えられます。
Debianのマニュアルがcmake
プロジェクトのMultiArchへの移行について説明しています 。
新しい GNUInstallDirsモジュール がcmake v3.3に追加されました。
MultiArchパスサポート用の新しいモジュールを含める
include(GNUInstallDirs)
次に、代わりにCMAKE_INSTALL_LIBDIR
(/usr/lib/<triplet>
)変数を使用します。
Debianポリシーに従うためのbase
パッケージの命名に関するちょっとした注意点バイナリファイルには実行可能ファイルは含まれません。したがって、lib
プレフィックス、libbase1
およびlibbase-dev
を付けて名前を付ける方が適切です。