Grokbase
Topics Posts Groups | in
x
[ help ]

Re: This Week on perl5-porters - 9-15 March 2008

View TopicPrint | Flat  Thread  Threaded
1) A. Pagaltzis Hi David, looks like you also want to add a POD checking step to your summary scripts. :-) Regards,...
| +1 vote (Anchor)
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Hi David,

* David Landgren <david@landgren.net> [2008-03-22 18:45]:
> New and old bugs from RT
> =head2 Remove revision bread crumbs from short description (#48453)

looks like you also want to add a POD checking step to your
summary scripts. :-)

Regards,
--
Aristotle Pagaltzis // <http://plasmasturm.org/>
2) Rafael Garcia-Suarez The git-cherry command does that, for commits that have not conflicted when backported to another...
| +1 vote (Anchor)
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On 22/03/2008, David Landgren <david@landgren.net> wrote:
> Nicholas also wanted to know what support git provided to answer
> questions such as "which changes from this branch have been integrated
> into that branch". Rafael seemed to think it should be possible, but
>    no people with strong git-fu responded.

The git-cherry command does that, for commits that have not conflicted when
backported to another branch (with git-cherry-pick for example). For the other
ones, some convention might be in order.
3) David Landgren Actually I do, I run podchecker. Alas, it did not consider that to be an error. One thing that...
| +1 vote (Anchor)
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
Aristotle Pagaltzis wrote:
> Hi David,
>
> * David Landgren <david@landgren.net> [2008-03-22 18:45]:
>> New and old bugs from RT
>> =head2 Remove revision bread crumbs from short description (#48453)
>
> looks like you also want to add a POD checking step to your
> summary scripts. :-)

Actually I do, I run podchecker. Alas, it did not consider that to be an
error. One thing that annoys me at the moment at some point I upgraded
my POD tools, and now pod2text produces the blightful ``quotes'' instead
of just "quotes". Recipes to fix that gratefully received.

I fixed the problem on use.perl, but the correcting the mail message is
now quite beyond my reach.

David
4) Nicholas Clark Which versions of POD modules does your pod2text use? What it's doing is a bug (...
| +1 vote (Anchor)
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
On Mon, Mar 24, 2008 at 11:43:10AM +0100, David Landgren wrote:

> Actually I do, I run podchecker. Alas, it did not consider that to be an
> error. One thing that annoys me at the moment at some point I upgraded
> my POD tools, and now pod2text produces the blightful ``quotes'' instead
> of just "quotes". Recipes to fix that gratefully received.

Which versions of POD modules does your pod2text use?
What it's doing is a bug ( http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html )
as text is not TeX, but it would be useful to know if it's already been
reported.

Nicholas Clark
5) Sam Vilain Sorry about that. I'm quite backlogged. Detecting cherry-picks is documented on the git rev-list...
| +1 vote (Anchor)
[ Profile | Reply to group ] [ Flat  Thread  Threaded ]
David Landgren wrote:
> Nicholas also wanted to know what support git provided to answer
> questions such as "which changes from this branch have been integrated
> into that branch". Rafael seemed to think it should be possible, but
>   no people with strong git-fu responded.

Sorry about that.  I'm quite backlogged.  Detecting cherry-picks is
documented on the git rev-list man page; it's something like this:

  git rev-list --left-right --cherry-pick maint-5.10..blead

That would show changes on blead which are not on maint-5.10.  If the
change was altered along the way, such as being ignored, it is
considered a new change and will not be omitted by this command.

It's worth noting that Perforce had no concept of cherry-picked changes
either, and instead people wrote the scripts to work with the facilities
it does provide.  I made sure during the conversion to copy across the
relevant information into breadcrumbs in the revision history, to allow
those particular tools to be ported.

If you want to do it based on some other token, well git has no built-in
support for that, but I have implemented this before based on a simple
comparison of the subject line, and in practice - assuming all commits
are well titled, and that you merge without squashing commits - this
solves the actual problem well.

> Elsewhere, there was some idle chatter of converting everything to
>   UTF-8, but no resolution.

On the perl foundation wiki there is a page on this.  Note that this
applies to author names only, not to anything in the content of the
repository.  Since that conversation, I have had time to triage and plan
the fixes, and I hope that I will find time to make a new release of the
history with these issues fixed.  I will announce when this is the case!

Thanks for your summaries,
Sam.
spacer
View TopicPrint | Flat  Thread  Threaded
Home > Groups > Perl 5 Porters > Re: This Week on perl5-porters - 9-15 March 2008 (5 posts)