From f2f63545f31306284d03afeea6923a80809d359f Mon Sep 17 00:00:00 2001
From: Pedro Melo <melo@simplicidade.org>
Date: Fri, 25 Jul 2008 14:17:52 +0100
Subject: [PATCH] Added proper MANIFEST and MANIFEST.SKIP files

`./Build distcheck` passes now.

Signed-off-by: Pedro Melo <melo@simplicidade.org>
---
 MANIFEST      | 19 +++++++++++++++++++
 MANIFEST.SKIP | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 69 insertions(+)
 create mode 100644 MANIFEST
 create mode 100644 MANIFEST.SKIP

diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..f647606
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,19 @@
+bin/cil
+Build.PL
+Changes
+COPYING
+etc/bash_completion.d/cil
+INSTALLATION
+lib/CIL.pm
+lib/CIL/Attachment.pm
+lib/CIL/Base.pm
+lib/CIL/Comment.pm
+lib/CIL/Issue.pm
+lib/CIL/Utils.pm
+lib/CIL/VCS/Factory.pm
+lib/CIL/VCS/Git.pm
+lib/CIL/VCS/Null.pm
+MANIFEST			This list of files
+README
+t/00_files.t
+t/i_cafebabe.cil
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..98fabec
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,50 @@
+# Avoid version control files.
+\bRCS\b
+\bCVS\b
+,v$
+\B\.svn\b
+\B\.cvsignore$
+
+# Avoid Makemaker generated and utility files.
+\bMakefile$
+\bblib
+\bMakeMaker-\d
+\bpm_to_blib$
+\bblibdirs$
+^MANIFEST\.SKIP$
+
+# Avoid Module::Build generated and utility files.
+\bBuild$
+\bBuild.bat$
+\b_build
+
+# Avoid Devel::Cover generated files
+\bcover_db
+
+# Avoid temp and backup files.
+~$
+\.tmp$
+\.old$
+\.bak$
+\#$
+\.#
+\.rej$
+
+# Avoid OS-specific files/dirs
+#   Mac OSX metadata
+\B\.DS_Store
+#   Mac OSX SMB mount metadata files
+\B\._
+# Avoid archives of this distribution
+\bCIL-[\d\.\_]+
+
+# issues should not be part of the module
+issues/
+.cil
+
+# exclude debian-* stuff
+debian-\w+/
+
+# git stuff
+.git/
+.gitignore
-- 
2.39.5