サードパーティのライブラリの特定のバージョンに依存するプロジェクトを構築する必要があります。
➜ cat debian/control
Source: libhole-cpp
Priority: optional
Maintainer: Vitaly Isaev <[email protected]>
Build-Depends: debhelper (>= 9), cmake,
flatbuffers (= 1.2.0-1),
libboost-dev,
libboost-system-dev,
catch
Standards-Version: 3.9.5
ただし、リポジトリにはflatbuffers
最新のパッケージを含むいくつかのパッケージがあります。
➜ apt-cache policy flatbuffers
flatbuffers:
Installed: (none)
Candidate: 1.4.0-17
Version table:
1.4.0-17 500
500 http://repo12.mailbuild-2.embarce.ro xenial/local amd64 Packages
1.2.0-1 500
500 http://repo12.mailbuild-2.embarce.ro xenial/local amd64 Packages
この場合、必要なバージョンmk-build-deps
のパッケージのインストールは拒否されます。
➜ sudo mk-build-deps --install debian/control
dh_testdir
dh_testroot
dh_prep
dh_testdir
dh_testroot
dh_install
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
dpkg-deb: building package 'libhole-cpp-build-deps' in '../libhole-cpp-build-deps_1.0.1ubuntu1_all.deb'.
The package has been created.
Attention, the package has been created in the current directory,
not in ".." as indicated by the message above!
Selecting previously unselected package libhole-cpp-build-deps.
(Reading database ... 68846 files and directories currently installed.)
Preparing to unpack libhole-cpp-build-deps_1.0.1ubuntu1_all.deb ...
Unpacking libhole-cpp-build-deps (1.0.1ubuntu1) ...
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies...Starting pkgProblemResolver with broken count: 1
Starting 2 pkgProblemResolver with broken count: 1
Investigating (0) libhole-cpp-build-deps [ amd64 ] < 1.0.1ubuntu1 > ( devel )
Broken libhole-cpp-build-deps:amd64 Depends on flatbuffers [ amd64 ] < none -> 1.4.0-17 > ( devel ) (= 1.2.0-1)
Considering flatbuffers:amd64 0 as a solution to libhole-cpp-build-deps:amd64 -2
Removing libhole-cpp-build-deps:amd64 rather than change flatbuffers:amd64
Done
Done
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
The following packages will be REMOVED:
libhole-cpp-build-deps
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 9216 B disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 68850 files and directories currently installed.)
Removing libhole-cpp-build-deps (1.0.1ubuntu1) ...
mk-build-deps: Unable to install libhole-cpp-build-deps at /usr/bin/mk-build-deps line 402.
mk-build-deps: Unable to install all build-dep packages
➜ libhole-cpp git:(v12) ✗ sudo apt-get -f install
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
誰もが私のビルドツールチェーンにどのような問題があるのかを明確にすることができますか?オペレーティングシステムはUbuntu 16.04です。
答え1
ビューには長すぎます。
aspcud
以下を通じてソルバーに委任しますapt-cudf-get
。
mk-build-deps \
--install \
--remove \
--tool \
'apt-cudf-get --solver aspcud -o APT::Get::Assume-Yes=1 -o Debug::pkgProblemResolver=0 -o APT::Install-Recommends=0' \
debian/control
説明する
このソリューションは次のように異なります。ヨハネス・サウアー(Johannes Sauer)そこに...
apt-cudf-get
代わりに使用しますapt-get
- 次のオプションは省略されました(私のテストでは機能しません)。
-o APT::Solver::Strict-Pinning=false
-o APT::Solver::aspcud::Preferences="-new,-removed,-changed"
- 次のオプションが追加されます。
-o APT::Get::Assume-Yes=1
(非対話型でパッケージをインストール)-o Debug::pkgProblemResolver=1
(mk-build-deps --tool
基本)-o APT::Install-Recommends=0
(mk-build-deps --tool
基本)
引用:
debian-develメーリングリストスレッドインデックス「mk-build-depsはBuild-Dependsパッケージの特定のバージョンをインストールできません」:https://lists.debian.org/debian-devel/2016/08/threads.html#00442
- Vitaly Isaevがスレッドを開始しました。https://lists.debian.org/debian-devel/2016/08/msg00442.html
- ヨハネス・シャウアー(Johannes Schauer)は次のように提示しました。https://lists.debian.org/debian-devel/2016/08/msg00446.html
aspkud
- ホームページ:https://potassco.org/aspcud/
- ソースコードリポジトリ:https://github.com/potassco/aspcud
apt-cudf
Debian パッケージ:https://packages.debian.org/stable/apt-cudfapt-cudf
Debian のマニュアルページ:https://manpages.debian.org/stable/apt-cudf/apt-cudf-get.8.htmlapt-cudf-get
Debian のマニュアルページ:https://manpages.debian.org/stable/apt-cudf/apt-cudf.1.htmlmk-build-deps
Debian のマニュアルページ:https://manpages.debian.org/stable/devscripts/mk-build-deps.1.html