Skip to content

Commit 4b62644

Browse files
committedNov 23, 2009
Changes for dist
1 parent 0492769 commit 4b62644

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed
 

‎.gitignore

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
Makefile
1+
Git-PurePerl-*
2+
MANIFEST.bak
23
blib/
4+
Makefile
5+
blib*
36
pm_to_blib
47
test-init-bare.git
5-
t/checkout/
6-
test-project-packs/
7-
test-project-packs2/
8-
test-project/
8+
t/checkout/*
9+
test-project-packs/*
10+
test-project-packs2/*
11+
test-project/*
12+
MANIFEST
13+

‎CHANGES

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
Revision history for Perl module Git::PurePerl:
22

3-
0.42_01 Mon Nov 23 11:44:51 GMT 2009
3+
0.42_01 Mon Nov 23 12:12:51 GMT 2009
44
- allow put_object to update other heads than just 'master'
55
(thanks to martijn)
66
- Fix bug when the ref dirs are more than two levels deep
77
- Fix commit object to support multiple parents. This is seen in merge
88
commits
99
- Add object_kind method to tag objects.
10+
- Change to MANIFEST.SKIP based dist building.
1011
- Dev release with version bump skipping 0.42 so that Gitalist can depend
1112
on >= 0.42 but we don't have to push a real release until I've done
1213
a little more maintainance work.

‎t/protocol.t

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ use warnings;
44
use Test::More;
55

66
BEGIN {
7+
plan skip_all => 'Needs you to manually run a git daemon';
8+
9+
exit 0;
10+
711
if ( $^O eq 'MSWin32' ) {
812
plan skip_all => 'Windows does NOT have git-daemon yet';
913
}

0 commit comments

Comments
 (0)
Please sign in to comment.