head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.28 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.26 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.24 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.22 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.20 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.18 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.16 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.14 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.12 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.10 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.8 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.6 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.3.0.4 pkgsrc-2007Q2-base:1.3 pkgsrc-2007Q1:1.3.0.2 pkgsrc-2007Q1-base:1.3 pkgsrc-2006Q4:1.2.0.2 pkgsrc-2006Q4-base:1.2; locks; strict; comment @# @; 1.3 date 2007.03.10.19.09.33; author wiz; state dead; branches; next 1.2; 1.2 date 2006.11.05.08.06.40; author rillig; state Exp; branches; next 1.1; 1.1 date 2006.10.16.00.44.15; author wiz; state Exp; branches; next ; desc @@ 1.3 log @Update to 0.18.2: From the release announce mails: I've released cogito-0.18.2, bringing a couple of bugfixes and a trivial new feature to cogito-0.18.1. Still nothing too groundshattering. * cg-log does not follow history across renames anymore; it never really actually worked and was instead causing problems and random error messages. There needs to be git-core support for this funcionality, hacking it with a perl filter is bad design, so I'm not going to fix the filter (but I'd take patches if someone else did ;). * Fix cg-init not letting you edit the initial commit message by default * Fix cg-clone -l which would not setup alternates properly in some cases * Fix cg-merge not picking the right base when following volatile branches * Fix cg-log -d sometimes showing "% @@" in diff output * Some other minor fixes * New cg-object-id -b to print the current branch name * Documentation improvements (better documented ignoring mechanism, ~/.gitconfig mentioned, GIT_COMMITTER_* bogus information fixed, ...) * Some testsuite fixes --- I've released cogito-0.18.1, bringing few minor new features and random bugfixes to the cogito-0.18 version. Nothing groundshattering. * cg-switch -c as a shortcut for cg-switch -r HEAD - use it to create a new branch with less typing * cg-patch -e to edit log message before autocommitting (useful esp. as cg-patch -m -e) * Support for cg-version --lib-dir, --share-dir * cg-admin-rewritehist now defines a map() function for filters' use, translating from old to new commit ids * cg-commit -e now runs editor on /dev/tty even if input is not a tty * Trivial documentation improvements * Random details fixed @ text @$NetBSD: patch-aa,v 1.2 2006/11/05 08:06:40 rillig Exp $ --- t/test-lib.sh~ 2006-10-19 18:24:07.000000000 +0200 +++ t/test-lib.sh 2006-10-19 18:26:02.000000000 +0200 @@@@ -87,16 +87,16 @@@@ say "FAIL $test_count: $1" shift echo "$@@" | sed -e 's/^/ /' - test "$immediate" == "" || exit 1 + test "$immediate" = "" || exit 1 } test_debug () { - test "$debug" == "" || eval "$1" + test "$debug" = "" || eval "$1" } test_expect_failure () { - test "$#" == 2 || + test "$#" = 2 || error "bug in the test script: not 2 parameters to test-expect-failure" say >&3 "expecting failure: $2" if eval &3 2>&4 "$2" @@@@ -108,7 +108,7 @@@@ } test_expect_success () { - test "$#" == 2 || + test "$#" = 2 || error "bug in the test script: not 2 parameters to test-expect-success" say >&3 "expecting success: $2" if eval &3 2>&4 "$2" @ 1.2 log @Updated cogito to 0.18. Patch provided in PR 34862 by Anthony Mallet. No ChangeLog available, I've sent a mail to the developers complaining about that. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Fix "test ==". @ text @d2 3 a4 4 --- t/test-lib.sh.orig 2005-11-27 16:26:16.000000000 +0000 +++ t/test-lib.sh @@@@ -87,16 +87,16 @@@@ test_failure_ () { d23 2 a24 2 if eval >&3 2>&4 "$2" @@@@ -108,7 +108,7 @@@@ test_expect_failure () { d32 1 a32 1 if eval >&3 2>&4 "$2" @