mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
devel/hg-git: update 0.8.0 -> 0.8.1
- Remove obsolete patch PR: 200235 Submitted by: Marco Broder <marco.broeder@posteo.eu> (maintainer)
This commit is contained in:
parent
49b87c519c
commit
8e3eb31690
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=386572
@ -2,8 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= hg-git
|
||||
PORTVERSION= 0.8.0
|
||||
PORTREVISION= 1
|
||||
PORTVERSION= 0.8.1
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (hg-git-0.8.0.tar.gz) = 91a16e34612595eca8c4e23d847c6ab697267b68008594926123c6c0064298dc
|
||||
SIZE (hg-git-0.8.0.tar.gz) = 46004
|
||||
SHA256 (hg-git-0.8.1.tar.gz) = ceeddfb48dc160e4c6be8c15a722a44b8554b7f68e1838f6af1018ed78b9451d
|
||||
SIZE (hg-git-0.8.1.tar.gz) = 46817
|
||||
|
@ -1,15 +0,0 @@
|
||||
--- hggit/gitdirstate.py.orig 2014-05-09 14:26:29 UTC
|
||||
+++ hggit/gitdirstate.py
|
||||
@@ -161,7 +161,11 @@ class gitdirstate(dirstate.dirstate):
|
||||
results, work, dirsnotfound = self._walkexplicit(match, subrepos)
|
||||
|
||||
skipstep3 = skipstep3 and not (work or dirsnotfound)
|
||||
- work = [d for d in work if not dirignore(d)]
|
||||
+ if work and isinstance(work[0], tuple):
|
||||
+ # Mercurial >= 3.3.3
|
||||
+ work = [nd for nd, d in work if not dirignore(d)]
|
||||
+ else:
|
||||
+ work = [d for d in work if not dirignore(d)]
|
||||
wadd = work.append
|
||||
|
||||
# step 2: visit subdirectories
|
Loading…
Reference in New Issue
Block a user