summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* A short introduction to git bisect.Vincent Pit2008-12-211-0/+47
|
* Document how commiters can keep 'origin' as a git remote and push with ↵Vincent Pit2008-12-211-0/+11
| | | | another ssh remote.
* add a comment about git clean to the perlrepository.podYves Orton2008-12-211-0/+16
|
* Update Changes with the last 432 Perforce applied changes, finishing with 35120Nicholas Clark2008-12-211-0/+3508
|
* Add the perlperf manpage, by Richard FoleyRafael Garcia-Suarez2008-12-217-10/+1284
|
* WCOREDUMP is in <sys/wait.h>Niko Tyni2008-12-211-0/+5
| | | | | Without this, $? & 128 doesn't get set properly on some (glibc) systems when dumping core.
* PATCH -- POD error in Symbol.pmFrank Wiegand2008-12-201-3/+3
| | | | | | | | | | | | | Hi, two POD errors in Symbol.pm: - wrong comment, - missing semicolon. Patch is attached. Thanks, Frank
* f6a80292c3db127d1561c118f409c1cffd1b55d9 needs to be reflected in our switchNicholas Clark2008-12-201-1/+1
| | | | testing. We're not doing very well on this one.
* Replace Jarkko's manicheck utility with my ownRafael Garcia-Suarez2008-12-201-80/+17
| | | | | | My manicheck is more crude, but I find its output more readable, and more importantly it handles git-related files and directories. Options can be re-added later.
* Add missing files to the MANIFESTRafael Garcia-Suarez2008-12-201-0/+2
| | | | TODO: those two new scripts can be merged together.
* MANIFEST files want tabs. Hysterical raisins.Nicholas Clark2008-12-201-31/+31
|
* There shouldn't be a ByteLoader directory in ext, even if all it has is aNicholas Clark2008-12-201-1/+0
| | | | .gitignore.
* /bin/sh isn't /usr/bin/perl :-)Nicholas Clark2008-12-201-2/+4
| | | | | | Change elsif to the correct "else if" construction. I suspect that this slipped by into f6a80292c3db127d1561c118f409c1cffd1b55d9 because cflags.SH doesn't seem to be re-expanded if it's newer than cflags.
* Added missing autodie exception classes to MANIFEST.Paul Fenwick2008-12-201-0/+2
|
* make perl use git-describe for PATCHNUMYves Orton2008-12-202-3/+5
| | | | | | | | | | | This is just an initial attempt at getting something more useful into the -v / -V output. Currently "patchlevel" is really "version", and PATCHNUM is just a special string added to the patchlevel in perl.c via defines created by cflags.SH and its product file cflags, which happens very early in the build process. This means that for committers the -v output is likely to not be upto date unless they run make clean. Anyway, IMO we should rethink a reasonable amount about how we do this, this is just a crude step forward.
* add some stuff to .gitignoreYves Orton2008-12-201-0/+14
|
* Remove repository.pod, as it is entirely about the setup of the ActiveStateNicholas Clark2008-12-202-520/+0
| | | | perforce repository, and is now superceded by pod/perlrepository.pod
* Rebuild pod/perltoc.pod.Nicholas Clark2008-12-201-965/+4444
|
* Re-sort the MANIFEST in the preferred order.Nicholas Clark2008-12-201-4/+4
|
* Note how to set user name and e-mail address.Nicholas Clark2008-12-201-0/+5
|
* Also update the $VERSION of ExtUtils::MM_Unix, else MM_Unit.t fails followingNicholas Clark2008-12-201-1/+1
| | | | | change 4adc95e616bac7eea015e9e47e439b063c1132d5. Don't those names just slip off the tongue :-)
* Various corrections and formatting nits to perlrepository.podRafael Garcia-Suarez2008-12-201-17/+19
|
* trim trailing spacesYves Orton2008-12-201-7/+7
|
* explain more stuff about statusYves Orton2008-12-201-4/+21
|
* explain git status and stuff about remotesYves Orton2008-12-201-3/+83
|
* use checkout -b and not the more verbose two step processYves Orton2008-12-201-2/+5
|
* Really ignore .patch filesPaul Fenwick2008-12-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | G'day p5p, Having now created a few .patch files, it appears the current .gitignore in blead is reporting them as untracked, rather than simply ignoring them. The attached patch adjusts the .gitignore file to really ignore .patch files. Many thanks to Abigail for super-fast application of my other patches. Cheerio, Paul -- Paul Fenwick <pjf@perltraining.com.au> | http://perltraining.com.au/ Director of Training | Ph: +61 3 9354 6001 Perl Training Australia | Fax: +61 3 9354 2681 >From 737cfd8db12834b82663d115db1407122ec8de7c Mon Sep 17 00:00:00 2001 From: Paul Fenwick <pjf@perltraining.com.au> Date: Sun, 21 Dec 2008 00:43:52 +1100 Subject: [PATCH] .patch files are really ignored now. Signed-off-by: Abigail <abigail@abigail.be>
* Improve perlrepository.pod to explain how to checkout/pull/branch from bleadJody Belka2008-12-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | On Sat, Dec 20, 2008 at 02:20:13PM +0100, Abigail wrote: > On Sat, Dec 20, 2008 at 10:10:37PM +0900, Paul Fenwick wrote: > > G'day p5p, > > > > The attached patch corrects a hole in the perlrepository.pod documentation > > which declines to mention how a developer with an existing repository can > > switch to blead and ensure everything is up-to-date before creating patches. > > > > > Thanks, applied as 12322d22877aba05e1653bbb960254200db8f045. Spotted a small spelling mistake in the above, attached patch fixes it up. J -- Jody Belka knew (at) pimb (dot) org >From 9c085490b97248ecab03b5c54db2ca9b7dc4bf08 Mon Sep 17 00:00:00 2001 From: Jody Belka <dev-perl@pimb.org> Date: Sat, 20 Dec 2008 13:47:11 +0000 Subject: [PATCH] Fix spelling mistake in pod/perlrepository.pod Signed-off-by: Abigail <abigail@abigail.be>
* git-flavoured autodie 1.997 patchPaul Fenwick2008-12-2043-118/+3561
| | | | | | | | | | | | | | | | | | | | | | | | | G'day p5p, Since we've moved over to git, attached is a git-friendly patch of autodie 1.997 against the current blead. It's no different to the older 1.997 patch[1], but contains all the meta-info that git likes to have so that you can use 'git am' to apply the changes. All the very best, Paul [1] Okay, there's one or two non-significant whitespace changes. -- Paul Fenwick <pjf@perltraining.com.au> | http://perltraining.com.au/ Director of Training | Ph: +61 3 9354 6001 Perl Training Australia | Fax: +61 3 9354 2681 >From b0dc5ff6b006a9df2a67b886e5e0d0d168c1245e Mon Sep 17 00:00:00 2001 From: Paul Fenwick <pjf@perltraining.com.au> Date: Sun, 21 Dec 2008 00:17:28 +1100 Subject: [PATCH] Autodie 1.997
* From Paul Fenwick <pjf@perltraining.com.au>; Instructions on how to ↵Abigail2008-12-201-2/+9
| | | | checkout/pull/branch from blead
* Do not use a dash between git and its subcommandMatt Kraai2008-12-201-2/+2
| | | | | Using a dash between git and its subcommand (e.g., git-format-patch) is deprecated, so replace it with a space.
* Fix the 'or' precedence in case open failVincent Pit2008-12-201-1/+1
|
* Add a program to switch to a Perforce idLeon Brocard2008-12-201-0/+22
|
* It looks like the previous patch is working fine on UNIXish boxes,Steve Peters2008-12-196-22/+15
| | | | | but is failing on Windows. Anyways sv_utf8_upgrade_nomg() is a macro anyways, so moving the documentation to sv.h.
* Subject: [perl #61418] perlthanks isn't documented in perlthanksSteve Peters2008-12-191-2/+14
| | | | | | From: Abigail (via RT) <perlbug-followup@perl.org> Date: Tue, 16 Dec 2008 13:09:56 -0800 Message-ID: <rt-3.6.HEAD-15883-1229461796-1657.61418-75-0@perl.org>
* Merge branch 'blead' of ssh://stevep@perl5.git.perl.org/gitroot/perl into bleadSteve Peters2008-12-197-13/+14
|\
| * Subject: RE: [perl #61492] ExtUtils::MM_Win32 should not generate "mt" ↵Steve Hay2008-12-196-12/+12
| | | | | | | | | | | | | | | | command when CRT is statically linked From: "Jan Dubois" <jand@activestate.com> Date: Fri, 19 Dec 2008 03:02:45 -0800 Message-ID: <00f901c961c9$5321e1e0$f965a5a0$@com>
| * after applying, committers should pushLeon Brocard2008-12-191-1/+2
| |
* | Subject: PATCH 5.10 documentationSteve Peters2008-12-1916-164/+373
|/ | | | | | From: karl williamson <public@khwilliamson.com> Date: Tue, 16 Dec 2008 16:00:34 -0700 Message-ID: <49483312.80804@khwilliamson.com>
* Add a section on applying a patchLeon Brocard2008-12-191-3/+57
|
* In the patch section, show how to work on a temporary branchLeon Brocard2008-12-191-0/+14
|
* Add a section on how to submit a patchLeon Brocard2008-12-191-2/+64
|
* Mention that cloning over HTTP is slowLeon Brocard2008-12-191-1/+1
|
* Show how to switch between branchesLeon Brocard2008-12-191-3/+10
|
* merge in changesLeon Brocard2008-12-191-0/+14
|\
| * fix thinkoYves Orton2008-12-191-1/+1
| |
| * explain how to switch a git from git:// protocol to ssh:// protocolYves Orton2008-12-191-1/+15
| |
* | Change perl.git to perl-git to not confuse people (thanks #p5p)Leon Brocard2008-12-191-6/+6
|/
* Add other files modified by buildtocLeon Brocard2008-12-194-28/+42
|
* Add perlrepository to the list of podLeon Brocard2008-12-193-1/+3
|