web-dev-qa-db-ja.com

TortoiseHgをubuntu 19.10にインストールする方法

Ubuntu 19.04からUbuntu 19.10に更新した後にTortoiseHgをインストールしようとしたところ、次のようになりました。

Sudo apt install tortoisehg 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package tortoisehg is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'tortoisehg' has no installation candidate

現在、ソースから自分でビルドする以外に、TortoiseHgをインストールするオプションはありますか?


TortoiseHgのインストール の重複の可能性に関するコメントについて:Mercurialのより高いバージョンが必要です -問題は解決しません。

現在、バージョン4.8.2でMercurialを使用しています。これは、Mercurial-ppaを追加せずに19.10で利用可能な最新のバージョンです。

Mercurial-ppaを追加しようとすると、次のエラーが発生します。

Sudo add-apt-repository ppa:Mercurial-ppa/releases
 See https://launchpad.net/~Mercurial-ppa
 More info: https://launchpad.net/~Mercurial-ppa/+archive/ubuntu/releases
Press [ENTER] to continue or Ctrl-c to cancel adding it.

Ign:1 http://ppa.launchpad.net/Mercurial-ppa/releases/ubuntu eoan InRelease
Err:2 http://ppa.launchpad.net/Mercurial-ppa/releases/ubuntu eoan Release                                                                
  404  Not Found [IP: 91.189.95.83 80]
Hit:3 http://security.ubuntu.com/ubuntu eoan-security InRelease                                                                                                                                        
Hit:4 http://nl.archive.ubuntu.com/ubuntu eoan InRelease                                                                                                                                               
Hit:5 http://nl.archive.ubuntu.com/ubuntu eoan-updates InRelease                                                                                                   
Hit:6 https://repo.skype.com/deb stable InRelease                                                                          
Hit:7 http://nl.archive.ubuntu.com/ubuntu eoan-backports InRelease                                                         
Ign:8 http://dl.google.com/linux/chrome/deb stable InRelease                                         
Ign:9 http://dl.google.com/linux/earth/deb stable InRelease
Hit:10 http://dl.google.com/linux/chrome/deb stable Release
Hit:11 http://dl.google.com/linux/earth/deb stable Release
Hit:12 https://dl.winehq.org/wine-builds/ubuntu eoan InRelease
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/Mercurial-ppa/releases/ubuntu eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
5
machnic

DebianベースのOS向けのTortoiseHgの最新バージョンは4.8.1-0.1です( Debian検索結果 のとおり)。同じバージョンがUbuntuのアーカイブのプールで利用可能であり(そして buntuパッケージで検索 *で見つけることができます)、依存関係はEoan Ermine(19.10)でも追加の作業なしで満たすことができます。

インストールを実行するには:

wget http://mirrors.kernel.org/ubuntu/pool/universe/t/tortoisehg/tortoisehg_4.8.1-0.1_all.deb
Sudo apt install ./tortoisehg_4.8.1-0.1_all.deb

*ありがとう N0rbertリマインダー にリンクを含めてください

7
Kulfy