You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Hyrum K Wright <hy...@hyrumwright.org> on 2011/05/21 19:10:02 UTC

Re: svn commit: r1125708 - /subversion/trunk/tools/dist/backport.pl

On Sat, May 21, 2011 at 7:12 AM,  <da...@apache.org> wrote:
> Author: danielsh
> Date: Sat May 21 14:12:27 2011
> New Revision: 1125708
>
> URL: http://svn.apache.org/viewvc?rev=1125708&view=rev
> Log:
> * tools/dist/backport.pl: New tool to automate merging STATUS entries.

I've not reviewed the script, nor do I have a comment on its purpose.
Rather, I'm interested in the language choice.

This is probably something of a bikeshed, but:

  $ find tools -name '*.py' | wc -l
        70
  $ find tools -name '*.pl' | wc -l
         7

Most of our build and tools infrastructure is written in Python, and
that seems to be the language more of our devs are familiar with.
While that doesn't mean we can't have Perl scripts, it just means that
the target user and maintainer audience is likely to be smaller than
if the tool were written in Python.

Just an observation, use it as you will.

-Hyrum