diff options
author | jmmv <jmmv@pkgsrc.org> | 2007-05-13 10:45:19 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2007-05-13 10:45:19 +0000 |
commit | 25be2d2ad70f2c425335e92e5b7766068305bf4d (patch) | |
tree | 760a5d46817afa6a3f851b592809f219e41328e6 | |
parent | a86a70c79417de7b25a5351d8d9691631ec71052 (diff) | |
download | pkgsrc-25be2d2ad70f2c425335e92e5b7766068305bf4d.tar.gz |
Update to 0.35:
Changes
- 'mkdir --no-respect-ignore PATH' now really skips any
ignore directives from .mtn-ignore or Lua hooks
- Private keys are now stored more safely, using file
permissions.
- The editable log summary (what you get in an editor when
committing without -m) now includes information about which
branch the commit applies to.
- The status command and the editable log summary now show
the same details about the change.
New features
- 'automate identify', an automate version of 'mtn identify'.
- 'automate roots', prints the roots of the revision graph,
i.e. all revisions that have no parents.
Other
- You can't drop the workspace root any more.
Internal
- Update the internal Lua to version 5.1.2.
- Added build files for Mac OS X.
- Update the internal SQLite to version 3.3.17.
- Code cleanup of app_state.
-rw-r--r-- | devel/monotone/Makefile | 6 | ||||
-rw-r--r-- | devel/monotone/distinfo | 9 | ||||
-rw-r--r-- | devel/monotone/patches/patch-aa | 18 |
3 files changed, 7 insertions, 26 deletions
diff --git a/devel/monotone/Makefile b/devel/monotone/Makefile index 6a9189977ed..918716d0e93 100644 --- a/devel/monotone/Makefile +++ b/devel/monotone/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.36 2007/04/08 09:06:14 jmmv Exp $ +# $NetBSD: Makefile,v 1.37 2007/05/13 10:45:19 jmmv Exp $ # -DISTNAME= monotone-0.34 +DISTNAME= monotone-0.35 CATEGORIES= devel scm -MASTER_SITES= http://monotone.ca/downloads/0.34/ +MASTER_SITES= http://monotone.ca/downloads/0.35/ MAINTAINER= jmmv@NetBSD.org HOMEPAGE= http://monotone.ca/ diff --git a/devel/monotone/distinfo b/devel/monotone/distinfo index 75fb0bd721e..41af9431e99 100644 --- a/devel/monotone/distinfo +++ b/devel/monotone/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.28 2007/04/08 09:06:14 jmmv Exp $ +$NetBSD: distinfo,v 1.29 2007/05/13 10:45:19 jmmv Exp $ -SHA1 (monotone-0.34.tar.gz) = 29fa7e2951b2eaa77673ffaebd00604bab98fd38 -RMD160 (monotone-0.34.tar.gz) = e6c362ac4f270a21fc5745b80edccc99efa362f7 -Size (monotone-0.34.tar.gz) = 4824087 bytes -SHA1 (patch-aa) = 8843cb6e7543c03cb45a9500ea42dad99b84fce6 +SHA1 (monotone-0.35.tar.gz) = b745eee239ab198f4263493c7f79cfd1b6935127 +RMD160 (monotone-0.35.tar.gz) = 91cb91fc25415f8357a57f199a5f83b8ea9293a1 +Size (monotone-0.35.tar.gz) = 4857094 bytes diff --git a/devel/monotone/patches/patch-aa b/devel/monotone/patches/patch-aa deleted file mode 100644 index df8ae9b15a9..00000000000 --- a/devel/monotone/patches/patch-aa +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-aa,v 1.13 2007/04/08 09:06:14 jmmv Exp $ - ---- unix/ssh_agent_platform.cc.orig 2007-04-01 12:22:00.000000000 +0200 -+++ unix/ssh_agent_platform.cc -@@ -7,11 +7,13 @@ - // implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - // PURPOSE. - -+#include <sys/types.h> - #include <sys/un.h> - #include <sys/socket.h> - #include <fcntl.h> - #include <stdlib.h> - #include <string.h> -+#include <unistd.h> - - #include "../sanity.hh" - |