summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-01 17:01:11 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-01 17:01:11 -0700
commit3c55ed2145a513bc3b2a110b6548b1cf7a193b7f (patch)
treef3a79d145220cff386a7aa44a213987f0e633a6c
parent961bc7ee398aff3ecb2e29a5c2d44e2283380531 (diff)
downloadp5-Git-Annex-3c55ed2145a513bc3b2a110b6548b1cf7a193b7f.tar.gz
configuration to build distributions for upload to CPAN
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
-rw-r--r--.gitignore1
-rw-r--r--Makefile11
-rw-r--r--dist.ini20
-rw-r--r--lib/Git/Annex.pm4
4 files changed, 32 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..d42646b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+/Git-Annex-*
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..220b46d
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+.PHONY: CLEAN
+clean:
+ rm -rf Git-Annex-*
+
+.PHONY: dist
+dist:
+ dzil build
+
+.PHONY: test
+test:
+ prove --lib
diff --git a/dist.ini b/dist.ini
new file mode 100644
index 0000000..10056c9
--- /dev/null
+++ b/dist.ini
@@ -0,0 +1,20 @@
+name = Git-Annex
+author = Sean Whitton <spwhitton@spwhitton.name>
+license = GPL_3
+copyright_holder = Sean Whitton <spwhitton@spwhitton.name>
+copyright_year = 2019-2020
+
+version = 0.001
+
+[GatherDir]
+prune_directory = debian
+
+[@Filter]
+-bundle = @Basic
+-remove = License
+-remove = GatherDir
+
+[AutoPrereqs]
+
+[PkgVersion]
+[PodVersion]
diff --git a/lib/Git/Annex.pm b/lib/Git/Annex.pm
index fda3a5c..3819b09 100644
--- a/lib/Git/Annex.pm
+++ b/lib/Git/Annex.pm
@@ -20,10 +20,6 @@
Git::Annex - Perl interface to git-annex repositories
-=head1 VERSION
-
-version 0.01
-
=head1 SYNOPSIS
my $annex = Git::Annex->new("/home/spwhitton/annex");