summaryrefslogtreecommitdiff
path: root/release-process
diff options
context:
space:
mode:
authorTodd Lyons <tlyons@exim.org>2014-12-22 05:30:59 -0800
committerTodd Lyons <tlyons@exim.org>2014-12-22 05:30:59 -0800
commit3394b36a12dad7e106db7d7e59497cb24b10e67f (patch)
treee05b139f7c4ff833b4300c17b19b944881075ea1 /release-process
parenta60f6c07eea74e79b88828295a191e79595d8960 (diff)
downloadexim4-3394b36a12dad7e106db7d7e59497cb24b10e67f.tar.gz
Bug 1547: Omit RFCs from release tarball docs dir
RFC Drafts and RFCs have licenses which are problematic for Debian distribution. Omit them from the release tarball.
Diffstat (limited to 'release-process')
-rwxr-xr-xrelease-process/scripts/mk_exim_release.pl6
1 files changed, 5 insertions, 1 deletions
diff --git a/release-process/scripts/mk_exim_release.pl b/release-process/scripts/mk_exim_release.pl
index e3267fd3e..bb633061b 100755
--- a/release-process/scripts/mk_exim_release.pl
+++ b/release-process/scripts/mk_exim_release.pl
@@ -223,7 +223,11 @@ sub move_text_docs_into_pkg {
next
if ( ( $fn eq 'ABOUT' )
|| ( $fn eq 'ChangeLog.0' )
- || ( $fn eq 'test-harness.txt' ) );
+ || ( $fn eq 'test-harness.txt' )
+ # Debian issue re licensing of RFCs
+ || ( $fn =~ /^draft-ietf-.*/ )
+ || ( $fn =~ /^rfc.*/ )
+ );
move( $file, File::Spec->catfile( $new_docdir, $fn ) );
}
}