diff options
author | Matt Housh <jaeger@crux.ninja> | 2020-11-14 15:11:33 -0600 |
---|---|---|
committer | Matt Housh <jaeger@crux.ninja> | 2020-11-14 15:11:33 -0600 |
commit | 71e00d88efd371016987ec327ff80f68a99ca276 (patch) | |
tree | 94677bf2abe9adb3b1c338268a7f968da9a508cb /mercurial | |
parent | 79945f16dd470e72516c67568eb4e356a5d8d196 (diff) | |
parent | 145b859b2549fb1fe4eb16a6dc0f9807d2f1b462 (diff) | |
download | contrib-71e00d88efd371016987ec327ff80f68a99ca276.tar.gz contrib-71e00d88efd371016987ec327ff80f68a99ca276.tar.xz |
Merge branch '3.5' into 3.6
Diffstat (limited to 'mercurial')
-rw-r--r-- | mercurial/.signature | 6 | ||||
-rw-r--r-- | mercurial/Pkgfile | 8 |
2 files changed, 8 insertions, 6 deletions
diff --git a/mercurial/.signature b/mercurial/.signature index c36840614..b44dac1d3 100644 --- a/mercurial/.signature +++ b/mercurial/.signature @@ -1,5 +1,5 @@ untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF323QLwojwdQfUBOlUHozQKGRMLnnzRbZc5YtZWNzvZFMlzRUWeejSLHa2ZDaNfgN9KKRbYLsAMPK5J1gdCxgjQU= -SHA256 (Pkgfile) = bd32f16474b739b29681402dc39c7b3c7b3880642db7cc723f81ea0c045aa79f +RWSagIOpLGJF3yRpPEgh9GTS4zhRgmFiLkDc09Nv3B3QASy5kz3MzUbxSUvsUy/bgOLaDBF4Nz+d6NJFiS0SZnKdVmhM44VhUAo= +SHA256 (Pkgfile) = 0d1b763476a4a100892509695ecf6e29e3c8399fc6c88f926da45c7380d01909 SHA256 (.footprint) = 6df8b43b759910c21d657639fa4de12b907b9c34b807084e28fd25c7e852b740 -SHA256 (mercurial-5.5.2.tar.gz) = 84930ad47a25d1f5db47acf48662bd199e45b7c331d8af6f4a8c46449ad8f372 +SHA256 (mercurial-5.6.tar.gz) = dfa7b3b5082783763710504f242ec487a5d801dc4bcd701cdad4b6ffc1f062c2 diff --git a/mercurial/Pkgfile b/mercurial/Pkgfile index 9c1c68bfd..a35800ff8 100644 --- a/mercurial/Pkgfile +++ b/mercurial/Pkgfile @@ -1,10 +1,10 @@ # Description: Mercurial the distributed VCS. # URL: https://www.mercurial-scm.org # Maintainer: Thomas Penteker, tek at serverop dot de -# Depends on: python3 +# Depends on: python3-setuptools name=mercurial -version=5.5.2 +version=5.6 release=1 source=(https://www.mercurial-scm.org/release/mercurial-$version.tar.gz) @@ -12,7 +12,9 @@ build() { cd $name-$version rm -r i18n - /usr/bin/python3 setup.py install --root=$PKG + /usr/bin/python3 setup.py build + /usr/bin/python3 setup.py install --root=$PKG \ + --skip-build install -d $PKG/usr/share/man/man{1,5} install -m 0644 doc/*.1 $PKG/usr/share/man/man1 |