Merge branch 'maint'

* maint:
  Remove usernames from all commit messages, not just when using svmprops
  applymbox & quiltimport: typofix.
  Create a sysconfdir variable, and use it for ETC_GITCONFIG
This commit is contained in:
Junio C Hamano 2007-04-24 22:07:34 -07:00
commit b01c7c0ee3
4 changed files with 13 additions and 5 deletions

View File

@ -141,7 +141,12 @@ prefix = $(HOME)
bindir = $(prefix)/bin bindir = $(prefix)/bin
gitexecdir = $(bindir) gitexecdir = $(bindir)
template_dir = $(prefix)/share/git-core/templates/ template_dir = $(prefix)/share/git-core/templates/
ETC_GITCONFIG = $(prefix)/etc/gitconfig ifeq ($(prefix),/usr)
sysconfdir = /etc
else
sysconfdir = $(prefix)/etc
endif
ETC_GITCONFIG = $(sysconfdir)/gitconfig
# DESTDIR= # DESTDIR=
# default configuration for gitweb # default configuration for gitweb
@ -160,7 +165,7 @@ GITWEB_FAVICON = git-favicon.png
GITWEB_SITE_HEADER = GITWEB_SITE_HEADER =
GITWEB_SITE_FOOTER = GITWEB_SITE_FOOTER =
export prefix bindir gitexecdir template_dir export prefix bindir gitexecdir template_dir sysconfdir
CC = gcc CC = gcc
AR = ar AR = ar

View File

@ -78,7 +78,7 @@ do
git-mailinfo $keep_subject $utf8 \ git-mailinfo $keep_subject $utf8 \
.dotest/msg .dotest/patch <$i >.dotest/info || exit 1 .dotest/msg .dotest/patch <$i >.dotest/info || exit 1
test -s .dotest/patch || { test -s .dotest/patch || {
echo "Patch is empty. Was is split wrong?" echo "Patch is empty. Was it split wrong?"
exit 1 exit 1
} }
git-stripspace < .dotest/msg > .dotest/msg-clean git-stripspace < .dotest/msg > .dotest/msg-clean

View File

@ -74,7 +74,7 @@ for patch_name in $(cat "$QUILT_PATCHES/series" | grep -v '^#'); do
echo $patch_name echo $patch_name
(cat $QUILT_PATCHES/$patch_name | git-mailinfo "$tmp_msg" "$tmp_patch" > "$tmp_info") || exit 3 (cat $QUILT_PATCHES/$patch_name | git-mailinfo "$tmp_msg" "$tmp_patch" > "$tmp_info") || exit 3
test -s .dotest/patch || { test -s .dotest/patch || {
echo "Patch is empty. Was is split wrong?" echo "Patch is empty. Was it split wrong?"
exit 1 exit 1
} }

View File

@ -1866,11 +1866,14 @@ sub make_log_entry {
} elsif ($self->use_svnsync_props) { } elsif ($self->use_svnsync_props) {
my $full_url = $self->svnsync->{url}; my $full_url = $self->svnsync->{url};
$full_url .= "/$self->{path}" if length $self->{path}; $full_url .= "/$self->{path}" if length $self->{path};
remove_username($full_url);
my $uuid = $self->svnsync->{uuid}; my $uuid = $self->svnsync->{uuid};
$log_entry{metadata} = "$full_url\@$rev $uuid"; $log_entry{metadata} = "$full_url\@$rev $uuid";
$email ||= "$author\@$uuid" $email ||= "$author\@$uuid"
} else { } else {
$log_entry{metadata} = $self->metadata_url. "\@$rev " . my $url = $self->metadata_url;
remove_username($url);
$log_entry{metadata} = "$url\@$rev " .
$self->ra->get_uuid; $self->ra->get_uuid;
$email ||= "$author\@" . $self->ra->get_uuid; $email ||= "$author\@" . $self->ra->get_uuid;
} }