[PATCH] debian packaging fixes

2005-07-21 Thread Sebastian Kuzminsky
This patch includes two fixes to the git-core Debian package: * Conflict with the GNU Interactive Tools package, which _also_ wants to install /usr/bin/git. * Compile against the unencumbered Mozilla SHA1 code, instead of the iffy OpenSSL code. This makes it easier to get the

[PATCH 1/2] GIT: Try all addresses for given remote name

2005-07-21 Thread YOSHIFUJI Hideaki / 吉藤英明
Hello. Try all addresses for given remote name until it succeeds. Also supports IPv6. Signed-of-by: Hideaki YOSHIFUJI <[EMAIL PROTECTED]> diff --git a/connect.c b/connect.c --- a/connect.c +++ b/connect.c @@ -96,42 +96,57 @@ static enum protocol get_protocol(const die("I don't handle pr

[PATCH 2/2] GIT: Listen on IPv6 as well, if available.

2005-07-21 Thread YOSHIFUJI Hideaki / 吉藤英明
Hello. Listen on IPv6 as well, if available. Signed-off-by: Hideaki YOSHIFUJI <[EMAIL PROTECTED]> diff --git a/daemon.c b/daemon.c --- a/daemon.c +++ b/daemon.c @@ -3,8 +3,8 @@ #include #include #include +#include #include -#include static const char daemon_usage[] = "git-daemon [--

Re: [PATCH/RFC] Add git-changelog-script to show the changes between two commits

2005-07-21 Thread Ryan Anderson
Nevermind, I apparently wanted: git-whatchanged HEAD ^$LAST_RELEASED_COMMIT I'll see about writing up a description of the extended commit reference scheme. Currently I can't find a description of it anywhere in the source tree. On Thu, Jul 21, 2005 at 02:31:43AM -0400, Ryan Anderson wro

Re: [PATCH/RFC] Add git-changelog-script to show the changes between two commits

2005-07-21 Thread Linus Torvalds
On Thu, 21 Jul 2005, Ryan Anderson wrote: > > Nevermind, I apparently wanted: > git-whatchanged HEAD ^$LAST_RELEASED_COMMIT Yes. And since git-whatchanged uses git-rev-parse, and can thus use the extended git commit format, including ranges, you can literally write the above as

[PATCH 1/1] Support configurable SMTP port for stg mail.

2005-07-21 Thread Bryan larsen
The example configuration file makes it appear that the SMTP port is configurable. Make it so. Signed-off-by: Bryan Larsen <[EMAIL PROTECTED]> --- stgit/commands/mail.py |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/stgit/commands/mail.py b/stgit/commands/mail.p

[PATCH 1/1] Support configurable SMTP port for stg mail.

2005-07-21 Thread Bryan larsen
The example configuration file makes it appear that the SMTP port is configurable. Make it so. Signed-off-by: Bryan Larsen <[EMAIL PROTECTED]> --- stgit/commands/mail.py |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/stgit/commands/mail.py b/stgit/commands/mail

[PATCH 1/1] Add authentication capability to the mail command.

2005-07-21 Thread Bryan larsen
Add authentication capability to the mail command. Added 'smtppassword' and 'smtpuser' to config file and --smtp-user, --smtp-password to command line. Signed-off-by: Bryan Larsen <[EMAIL PROTECTED]> --- stgit/commands/mail.py | 34 ++ 1 files changed, 30 inser

[PATCH 1/1] Tell vim the textwidth is 75.

2005-07-21 Thread Bryan larsen
When invoking EDITOR, add some metadata to tell vim the textwidth is 75. Signed-off-by: Bryan Larsen <[EMAIL PROTECTED]> --- stgit/stack.py |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/stgit/stack.py b/stgit/stack.py --- a/stgit/stack.py +++ b/stgit/stack.py @@ -66,6

Re: [PATCH 1/1] Support configurable SMTP port for stg mail.

2005-07-21 Thread Catalin Marinas
On Thu, 2005-07-21 at 16:20 -0400, Bryan larsen wrote: > The example configuration file makes it appear that the SMTP port is > configurable. Make it so. The documentation for smtplib.SMTP says that the smtpserver parameter is passed to connect(). This latter function parses the smtpserver for '

Re: [PATCH 1/1] Tell vim the textwidth is 75.

2005-07-21 Thread Junio C Hamano
I do not do Porcelain, but wouldn't it be nicer if we had a Porcelain neutral "commit log template file" under $GIT_DIR somewhere? 'vim: textwidth=75' is completely useless for somebody like me (I almost always work inside Emacs). Cogito seems to use $GIT_DIR/commit-template for that purpose. Can

[PATCH] Deb packages should include the binaries (Try 2 - this time it actually applies)

2005-07-21 Thread Ryan Anderson
The Deb packages were mising a dependency on "build install" from the binary target - this fixes that, and cleans up some inconsistencies elsewhere in the rulesets. Traditionally, Debian packaging uses a file called "build-stamp" (or "install-stamp", etc) in the main source tree. The initial deb

[PATCH] Deb packaging needs two more configuration files

2005-07-21 Thread Ryan Anderson
The deb package building needs these two new files to work correctly. debian/compat sets the rules under which the debhelper scripts (dh_*) operate. debian/git-core.install tells dh_install what files to install in each package that is generated. There is only one package being generated, so al