summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteffen Mueller <smueller@cpan.org>2009-01-11 17:31:56 +0100
committerSteffen Mueller <smueller@cpan.org>2009-01-11 17:31:56 +0100
commit2b52f3e4481c7e4c04f58854b1b073cca9e27da1 (patch)
tree8f786519a92ba6e3fdeb393e450933bd626c70fa
parent3dac15a5e55ca29c7a6db0641c9887b1384cb5fd (diff)
parentc24e7b67b597eaa15fbaca34ebb57a7cc242d937 (diff)
downloadperl-2b52f3e4481c7e4c04f58854b1b073cca9e27da1.tar.gz
Merge branch 'blead' into miniperl-make-ext
-rw-r--r--make_patchnum.com48
1 files changed, 0 insertions, 48 deletions
diff --git a/make_patchnum.com b/make_patchnum.com
deleted file mode 100644
index 3c0e1ef31c..0000000000
--- a/make_patchnum.com
+++ /dev/null
@@ -1,48 +0,0 @@
-$! MAKE_PATCHNUM.COM
-$!
-$ open/read pf .patch
-$ read pf line_in
-$ close pf
-$ line_in = f$edit(line_in, "TRIM,COMPRESS")
-$ branch = f$element(0, " ", line_in)
-$ snapshot_created = f$element(1, " ", line_in)
-$ commit_id = f$element(2, " ", line_in)
-$ describe = f$element(3, " ", line_in)
-$!
-$ changed=""
-$ extra_info="git_snapshot_date='" + snapshot_created + "'"
-$ commit_title="Snapshot of:"
-$!
-$ write sys$output "Updating .patchnum and lib/Config_git.pl"
-$!
-$ create .patchnum
-$ open/append pn .patchnum
-$ write pn "describe: ''describe'"
-$ close pn
-$!
-$ create unpushed.h
-$ open/append unp unpushed.h
-$ write unp "/**********************************************************************"
-$ write unp "* WARNING: unpushed.h is automatically generated by make_patchnum.com *"
-$ write unp "* DO NOT EDIT DIRECTLY - edit make_patchnum.com instead *"
-$ write unp "**********************************************************************/"
-$ write unp "#define PERL_GIT_UNPUSHED_COMMITS /*no-op*/"
-$ write unp "/*leave-this-comment*/"
-$ close unp
-$!
-$ create [.lib]Config_git.pl
-$ open/append cfg [.lib]Config_git.pl
-$ write cfg "##################################################################"
-$ write cfg "# WARNING: lib/Config_git.pl is generated by make_patchnum.com #"
-$ write cfg "# DO NOT EDIT DIRECTLY - edit make_patchnum.com instead #"
-$ write cfg "##################################################################"
-$ write cfg "$Config::Git_Data=<<'ENDOFGIT';"
-$ write cfg "git_commit_id='" + commit_id + "'"
-$ write cfg "git_describe='" + describe + "'"
-$ write cfg "git_branch='" + branch + "'"
-$ write cfg "git_uncommitted_changes='" + changed + "'"
-$ write cfg "git_commit_id_title='" + commit_title + "'"
-$ write cfg "''extra_info'"
-$ write cfg "ENDOFGIT"
-$ close cfg
-$ exit