Update to 1.3.1. martynas@ wcmaier@ ok
While I'm here, add spaces around =.
This commit is contained in:
parent
8e8fd73580
commit
a55c57383f
@ -1,34 +1,34 @@
|
||||
# $OpenBSD: Makefile,v 1.19 2009/04/26 16:27:36 wcmaier Exp $
|
||||
# $OpenBSD: Makefile,v 1.20 2009/08/01 03:21:46 fgsch Exp $
|
||||
|
||||
COMMENT= fast, lightweight source control management
|
||||
COMMENT = fast, lightweight source control management
|
||||
|
||||
MODPY_EGG_VERSION= unknown
|
||||
DISTNAME= mercurial-1.2.1
|
||||
CATEGORIES= devel
|
||||
HOMEPAGE= http://www.selenic.com/mercurial/
|
||||
MODPY_EGG_VERSION = 1.3.1
|
||||
DISTNAME = mercurial-${MODPY_EGG_VERSION}
|
||||
CATEGORIES = devel
|
||||
HOMEPAGE = http://www.selenic.com/mercurial/
|
||||
|
||||
MAINTAINER= Will Maier <wcmaier@openbsd.org>
|
||||
MAINTAINER = Will Maier <wcmaier@openbsd.org>
|
||||
|
||||
# GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
PERMIT_PACKAGE_CDROM = Yes
|
||||
PERMIT_PACKAGE_FTP = Yes
|
||||
PERMIT_DISTFILES_CDROM = Yes
|
||||
PERMIT_DISTFILES_FTP = Yes
|
||||
|
||||
MASTER_SITES= http://www.selenic.com/mercurial/release/
|
||||
MASTER_SITES = http://www.selenic.com/mercurial/release/
|
||||
|
||||
MODULES= lang/python
|
||||
MODULES = lang/python
|
||||
|
||||
REGRESS_DEPENDS= ::archivers/unzip
|
||||
REGRESS_DEPENDS = ::archivers/unzip
|
||||
|
||||
FILES= hgeditor hgweb.cgi hgwebdir.cgi
|
||||
FILES = hgeditor hgweb.cgi hgwebdir.cgi
|
||||
|
||||
CONTRIBFILES= bash_completion mercurial.el sample.hgrc \
|
||||
CONTRIBFILES = bash_completion mercurial.el sample.hgrc \
|
||||
tcsh_completion zsh_completion hgwebdir.fcgi \
|
||||
mergetools.hgrc mq.el
|
||||
|
||||
CONTRIBDIRS= git-viz hgsh vim
|
||||
SCRIPTS= convert-repo hg-ssh hgdiff hgk \
|
||||
CONTRIBDIRS = git-viz hgsh vim
|
||||
SCRIPTS = convert-repo hg-ssh hgdiff hgk \
|
||||
tcsh_completion_build.sh dumprevlog \
|
||||
undumprevlog hg-relink rewrite-log simplemerge
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (mercurial-1.2.1.tar.gz) = JNaZTMWLNTOY4Rx6Gc8dGQ==
|
||||
RMD160 (mercurial-1.2.1.tar.gz) = N8lOXvnNxjn+I2It2vl7IjDsIhY=
|
||||
SHA1 (mercurial-1.2.1.tar.gz) = 9AKCu7F/7bCLFqp6Tusdp7am8cs=
|
||||
SHA256 (mercurial-1.2.1.tar.gz) = Axh0ZLzPvYK3jVxV1whEcYF0UIWmL0kaIG9RQzdutH4=
|
||||
SIZE (mercurial-1.2.1.tar.gz) = 1269393
|
||||
MD5 (mercurial-1.3.1.tar.gz) = ZQTw3DK9fs9Zqff3GUMudg==
|
||||
RMD160 (mercurial-1.3.1.tar.gz) = HkPYaX5NJp/cBl7oLEjhzxMvbW8=
|
||||
SHA1 (mercurial-1.3.1.tar.gz) = qVN/q3x+rVAaZBTRkA9G4K4+SLg=
|
||||
SHA256 (mercurial-1.3.1.tar.gz) = /5KLVX9BN0l0Fx3xsDhOMxYa/5fF/hyFanuRvzsVSmI=
|
||||
SIZE (mercurial-1.3.1.tar.gz) = 1770585
|
||||
|
@ -1,21 +1,13 @@
|
||||
$OpenBSD: patch-tests_run-tests_py,v 1.1 2008/03/26 20:43:44 landry Exp $
|
||||
--- tests/run-tests.py.orig Mon Mar 24 18:05:21 2008
|
||||
+++ tests/run-tests.py Wed Mar 26 09:19:26 2008
|
||||
@@ -22,7 +22,7 @@ import time
|
||||
SKIPPED_STATUS = 80
|
||||
SKIPPED_PREFIX = 'skipped: '
|
||||
$OpenBSD: patch-tests_run-tests_py,v 1.2 2009/08/01 03:21:46 fgsch Exp $
|
||||
--- tests/run-tests.py.orig Thu Jul 23 18:58:07 2009
|
||||
+++ tests/run-tests.py Mon Jul 27 02:01:17 2009
|
||||
@@ -67,7 +67,8 @@ SKIPPED_PREFIX = 'skipped: '
|
||||
FAILED_PREFIX = 'hghave check failed: '
|
||||
PYTHON = sys.executable
|
||||
|
||||
-required_tools = ["python", "diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
|
||||
+required_tools = ["diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
|
||||
-requiredtools = ["python", "diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
|
||||
+requiredtools = ["diff", "grep", "unzip", "gunzip", "bunzip2", "sed"]
|
||||
+requiredtools.insert(0, os.path.basename(PYTHON))
|
||||
|
||||
defaults = {
|
||||
'jobs': ('HGTEST_JOBS', 1),
|
||||
@@ -73,6 +73,8 @@ parser.set_defaults(**defaults)
|
||||
verbose = options.verbose
|
||||
coverage = options.cover or options.cover_stdlib or options.annotate
|
||||
python = sys.executable
|
||||
+
|
||||
+required_tools.insert(0, os.path.basename(python))
|
||||
|
||||
if options.jobs < 1:
|
||||
print >> sys.stderr, 'ERROR: -j/--jobs must be positive'
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.11 2009/04/26 16:27:36 wcmaier Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.12 2009/08/01 03:21:46 fgsch Exp $
|
||||
%%SHARED%%
|
||||
bin/hg
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/
|
||||
@ -6,8 +6,6 @@ lib/python${MODPY_VERSION}/site-packages/hgext/__init__.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/__init__.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/acl.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/acl.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/alias.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/alias.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/bookmarks.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/bookmarks.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/bugzilla.py
|
||||
@ -86,6 +84,8 @@ lib/python${MODPY_VERSION}/site-packages/hgext/rebase.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/rebase.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/record.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/record.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/share.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/share.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/transplant.py
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/transplant.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/hgext/win32mbcs.py
|
||||
@ -119,6 +119,8 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/cmdutil.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/cmdutil.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/commands.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/commands.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/config.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/config.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/context.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/context.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/copies.py
|
||||
@ -129,6 +131,8 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/dirstate.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/dirstate.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/dispatch.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/dispatch.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/encoding.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/encoding.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/error.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/error.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/extensions.py
|
||||
@ -176,9 +180,15 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/da.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/de.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/el.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/fr.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/hggettext
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/it.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/ja.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/zh.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/pt_BR.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/zh_CN.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/i18n/zh_TW.po
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/ignore.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/ignore.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/keepalive.py
|
||||
@ -189,6 +199,8 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/lock.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/lock.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/lsprof.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/lsprof.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/lsprofcalltree.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/lsprofcalltree.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/mail.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/mail.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/manifest.py
|
||||
@ -204,6 +216,8 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/node.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/parsers.so
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/patch.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/patch.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/posix.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/posix.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/repair.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/repair.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/repo.py
|
||||
@ -224,6 +238,8 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/streamclone.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/streamclone.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/strutil.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/strutil.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/subrepo.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/subrepo.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templatefilters.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templatefilters.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templater.py
|
||||
@ -242,6 +258,7 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/templates/coal/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/coal/header.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/coal/map
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/gitweb/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/gitweb/branches.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/gitweb/changelog.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/gitweb/changelogentry.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/gitweb/changeset.tmpl
|
||||
@ -265,6 +282,7 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/templates/map-cmdline.changel
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/map-cmdline.compact
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/map-cmdline.default
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/branches.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/changelog.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/changelogentry.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/changeset.tmpl
|
||||
@ -285,6 +303,7 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/shortlog.t
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/summary.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/monoblue/tags.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/paper/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/paper/branches.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/paper/changeset.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/paper/error.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/paper/fileannotate.tmpl
|
||||
@ -323,6 +342,7 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/templates/rss/map
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/rss/tagentry.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/rss/tags.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/spartan/
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/spartan/branches.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/spartan/changelog.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/spartan/changelogentry.tmpl
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/templates/spartan/changeset.tmpl
|
||||
@ -365,10 +385,12 @@ lib/python${MODPY_VERSION}/site-packages/mercurial/url.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/url.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/util.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/util.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/util_win32.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/util_win32.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/verify.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/verify.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/win32.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/win32.pyc
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/windows.py
|
||||
lib/python${MODPY_VERSION}/site-packages/mercurial/windows.pyc
|
||||
@man man/man1/hg.1
|
||||
@man man/man5/hgignore.5
|
||||
@man man/man5/hgrc.5
|
||||
|
Loading…
Reference in New Issue
Block a user