summaryrefslogtreecommitdiff
path: root/patchlevel.h
Commit message (Collapse)AuthorAgeFilesLines
* Bump version to 5.13.5Steve Hay2010-09-191-2/+2
|
* Bump the perl version to 5.13.4Florian Ragwitz2010-08-201-2/+2
|
* PERL_API_* doesn't need to be maintained manuallyFlorian Ragwitz2010-08-171-7/+11
|
* Bump API subversionFlorian Ragwitz2010-07-231-1/+1
|
* Bump the perl version to 5.13.3David Golden2010-07-191-1/+1
|
* Bump the perl version in various places for 5.13.2Matt S Trout2010-06-211-1/+1
|
* Bump the perl version in various places for 5.13.1Ricardo Signes2010-05-201-1/+1
|
* Escape patch strings before embedding them in patchlevel.hGisle Aas2010-04-181-0/+2
|
* Bump to 5.13.0Jesse Vincent2010-04-121-2/+2
|
* Removing the RC marker from patchlevel.hv5.12.0Jesse Vincent2010-04-121-1/+0
|
* RC5 due to a regression reported by <mons@veda.park.rambler.ru>Jesse Vincent2010-04-091-1/+1
|
* We're gonna have a fourth RC.Jesse Vincent2010-04-051-1/+1
|
* There's gonna be an RC3v5.12.0-RC3Jesse Vincent2010-04-021-1/+1
|
* Looks like we have an RC2 due to a segfault in reverse()Jesse Vincent2010-03-301-1/+1
|
* bump from rc0 to rc1.Jesse Vincent2010-03-281-1/+1
|
* Update patchlevel.h to note that this is RC0 and not yet a real releaseJesse Vincent2010-03-141-0/+1
|
* Bump to 5.12.0Jesse Vincent2010-03-141-3/+3
|
* Only define PERL_PATCHNUM when either git or the .patch file is availableGisle Aas2010-03-071-3/+3
| | | | | This patch also make PERL_GIT_UNCOMMITTED_CHANGES useful and thus avoids always adding the "*" to the 'perl -v' output.
* Bump version to 5.11.5Steve Hay2010-02-201-1/+1
|
* bump version for 5.11.4Ricardo Signes2010-01-191-1/+1
|
* Bump to 5.11.3Jesse Vincent2009-12-201-1/+1
|
* Bump 5.11.1 -> 5.11.2 in all sorts of places it's (oh so unfortunately) ↵Leon Brocard2009-11-181-1/+1
| | | | hardcoded
* Bump 5.11.0 -> 5.11.1 in all sorts of places it's (oh so unfortunately) ↵Jesse Vincent2009-10-201-1/+1
| | | | hardcoded
* Move PERL_VERSION_STRING from patchlevel.h to perl.hNicholas Clark2009-02-161-4/+0
| | | | | | (and revert a89d24b9fe54d44395806c16ac1c19f3c678cbbb) It's getting too complex to work around some versions of awk which don't want to implement the regular expressions that they are documented to implement.
* Replace *printf "%d.%d.%d", PERL_REVISION, PERL_VERSION, PERL_SUBVERSIONNicholas Clark2009-02-161-0/+4
| | | | | with PERL_VERSION_STRING, which can be determined at compile time, as a constant string.
* Update copyright years. 2008 sneaks in because of 46807d8e809cc127621bf85d9e9Nicholas Clark2009-02-161-2/+2
|
* microperl also needs a canned git config.Nicholas Clark2009-01-251-0/+4
|
* Amend patchlevel.h so that git_version.h is only #include""ed for perl.Nicholas Clark2009-01-231-0/+6
| | | | | | | miniperl builds with canned data equivalent to stock_git_version.h. git_version.h becomes an explicit dependency for perl.o, make_patchnum.pl is explicitly run to create it, and no sub-makes are spawned with their inherent race conditions and consequent strange build failures.
* eliminate make_patchnum.sh, and make the build process use make_patchnum.pl ↵Yves Orton2009-01-041-12/+2
| | | | instead
* eliminate .patchnum and related infrastrcuture from *nix based build processYves Orton2009-01-041-1/+1
| | | | Rename the old "unpushed.h" to "git_version.h" and make it hold the defines that used to come from cflags magic
* much better git related version numbering in our (*nix for now) build processYves Orton2008-12-311-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The net result of this patch is to make available via Config.pm and -v/-V the details about the git version info we have available for the build. When built within a git repository git is queried directly. When built from a snapshot or bundle it is assumed that the source is unchanged, and that the required details are avaialble in a file called .patch, whose format current is a four field string in the following format: "$branchname $date.$time $sha1 $describe". The generator of these files currently resides on camel.booking.com. * git-describe is now used more directly with -v. When the prefix of git-describe matches the version number as determined by the defines in patchlevel.h then we use ONLY the git-describe output, otherwise we include the git describe in parenthesis after the version number. Either way the describe text is optionally followed by a star should there be uncommitted changes. eg: This is perl, v5.11.0 (GitLive-blead-136-g58ca560) built for i686-linux or: This is perl, v5.11.0-1-g58ca560 built for i686-linux or: This is perl, v5.11.0 built for i686-linux * include the SHA1 in perl -V summary, and automatically include unpushed commits in the registered patches list * include various git/version/.patch details in %Config, as follows: git_commit_id # sha1 of HEAD git_ancestor # ancestor in $remote/$branch (presumably canonical) git_describe # git describe git_branch # current branch git_uncommitted_changes # "true" if there are any, empty otherwise git_unpushed_commits # List of sha1's of unpushed commits git_commit_id_title # Used to make the perl -V summary output Additionally one more value is added depending on build process used: when building from an rsynced snapshot (or any dist including a file called .patch) then the second field will be used to populate the "git_snapshot_date" field. Otherwise if built in a git directory (as is hopefully recommended these day) then the field will be "git_commit_date" which will be the commit date of HEAD. This patch introduces two new files (on top of .patchnum) that will be generated by make_patchnum.sh: "lib/Config_git.pl" and "unpushed.h", the former is used to make git data available to Config.pm/%Config without rebuilding everything else, and the second is used to expose unpushed commits (if any) via the registered patch facility of patchlevel.h
* Bump the version number to 5.11.0Nicholas Clark2007-12-191-2/+2
| | | p4raw-id: //depot/perl@32646
* Update Changes and reinstante the DEVEL tag.Nicholas Clark2007-12-191-0/+1
| | | | | | (Now that the patch number isn't in DEVEL, probably don't need to do it in one, as in change 17642) p4raw-id: //depot/perl@32644
* That's no longer RC timeRafael Garcia-Suarez2007-12-181-1/+0
| | | p4raw-id: //depot/perl@32637
* Bump patchlevel to RC2Rafael Garcia-Suarez2007-11-251-1/+1
| | | p4raw-id: //depot/perl@32485
* Prepare patchlevel for RC1Rafael Garcia-Suarez2007-11-161-1/+1
| | | p4raw-id: //depot/perl@32334
* Fix up copyright years for files modified in 2007.Nicholas Clark2007-11-071-2/+2
| | | p4raw-id: //depot/perl@32237
* Bump version number to 5.10.0.Rafael Garcia-Suarez2007-09-061-4/+4
| | | p4raw-id: //depot/perl@31799
* Reinstate "DEVEL" in patchlevelRafael Garcia-Suarez2007-07-071-0/+1
| | | p4raw-id: //depot/perl@31564
* Desactive the "DEVEL" local patch tag for release.Rafael Garcia-Suarez2007-07-071-1/+0
| | | p4raw-id: //depot/perl@31557
* Bump version to 5.9.5Rafael Garcia-Suarez2006-10-091-2/+3
| | | p4raw-id: //depot/perl@28969
* Re: [PATCH] cleanup 212 warnings emitted by gcc-4.2Marcus Holland-Moritz2006-04-261-1/+1
| | | | | Message-ID: <20060424232038.7550f9b6@r2d2> p4raw-id: //depot/perl@27962
* Bump version number to 5.9.4Rafael Garcia-Suarez2006-01-301-2/+2
| | | | | Regenerate template config in Porting p4raw-id: //depot/perl@27007
* Remove patch numberRafael Garcia-Suarez2006-01-271-4/+0
| | | p4raw-id: //depot/perl@26966
* Restore hardcoded PERL_PATCHNUM removed in change 26672.Gisle Aas2006-01-091-0/+4
| | | | | | This is actually needed for the current Configure logic to pick up the real patchnum from the .patch file. p4raw-id: //depot/perl@26753
* Update copyright years (including some years where we made changes butNicholas Clark2006-01-081-1/+1
| | | | | did not update) p4raw-id: //depot/perl@26732
* Move "DEVEL####" marker to the 'perl -v' output.Gisle Aas2006-01-061-5/+0
| | | | | | This avoids problem with using STRINGIFY in patchlevel.h (ref msg <43BE4BAC.6010701@uk.radan.com> posted to p5p). p4raw-id: //depot/perl@26672
* Make script embedded in patchlevel.h work on win32.Yves Orton2005-12-181-0/+1
| | | | | Message-ID: <9b18b3110512171052h2052d598rdf038f1d38560317@mail.gmail.com> p4raw-id: //depot/perl@26397
* Experiment with putting the F<.patch>level into patchlevel.hNicholas Clark2005-09-101-3/+4
| | | | | (a sure way to accelerate any change to subversion) p4raw-id: //depot/perl@25374
* Symbian port of PerlJarkko Hietaniemi2005-04-211-1/+1
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271