Fixes the problem with the https:// urls.
OK?
Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/py-hg-git/Makefile,v
retrieving revision 1.24
diff -u -p -r1.24 Makefile
--- Makefile 9 Oct 2016 00:42:14 -0000 1.24
+++ Makefile 21 Apr 2017 12:34:01 -0000
@@ -2,7 +2,7 @@
COMMENT = mercurial extension to work with git repositories
-MODPY_EGG_VERSION = 0.8.5
+MODPY_EGG_VERSION = 0.8.6
DISTNAME = ${MODPY_PY_PREFIX}hg-git-${MODPY_EGG_VERSION}
CATEGORIES = devel
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/py-hg-git/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo 14 Jun 2016 10:01:31 -0000 1.12
+++ distinfo 21 Apr 2017 12:34:01 -0000
@@ -1,2 +1,2 @@
-SHA256 (py-hg-git-0.8.5.tar.gz) = O2YiQRm9k9hw7BpV8H+uAZG4T/OugQxVcIHPJnm/OvQ=
-SIZE (py-hg-git-0.8.5.tar.gz) = 101206
+SHA256 (py-hg-git-0.8.6.tar.gz) = cfhdmVJRyuj1S+8I24k8lnvZOWbquqh/rRgU747wuGc=
+SIZE (py-hg-git-0.8.6.tar.gz) = 104112
Index: patches/patch-hggit_overlay_py
===================================================================
RCS file: patches/patch-hggit_overlay_py
diff -N patches/patch-hggit_overlay_py
--- patches/patch-hggit_overlay_py 14 Jun 2016 10:01:31 -0000 1.1
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,21 +0,0 @@
-$OpenBSD: patch-hggit_overlay_py,v 1.1 2016/06/14 10:01:31 czarkoff Exp $
---- hggit/overlay.py.orig Tue Feb 2 01:56:40 2016
-+++ hggit/overlay.py Sat Jun 4 11:52:45 2016
-@@ -6,6 +6,7 @@
-
- from mercurial import (
- ancestor,
-+ changelog,
- manifest,
- context,
- )
-@@ -323,6 +324,9 @@ class overlaychangelog(overlayrevlog):
- return self.base.read(sha)
- except LookupError:
- return overlaychangectx(self.repo, sha).totuple()
-+
-+ def changelogrevision(self, noderev):
-+ return changelog._changelogrevision(*self.read(noderev))
-
- class overlayrepo(object):
- def __init__(self, handler, commits, refs):