Next | Query returned 50 messages, browsing 11 to 20 | Previous

History of commit frequency

CVS Commit History:


   2018-02-25 18:44:49 by Thomas Klausner | Files touched by this commit (2) | Package updated
Log message:
p5-Tree-DAG_Node: update to 1.31.

1.31  2018-02-14T09:08:00
	- Clarify licence issue by changing the reference in the DAG_Node.pm file from \ 
Artistic V 2
		to Perl, so it now matches what I preemptively put in Makefile.PL and the \ 
LICENSE file.
		Sean Burke has kindly agreed to this change.
		$thanx x $many to Gregor Herrmann (Debian Perl Group) for reporting this via \ 
github.
   2018-01-27 08:59:48 by Wen Heping | Files touched by this commit (2)
Log message:
Update to 1.30

Upstream changes:
1.30  2018-01-26T15:32:00
        - Explicitly escape { and } in a regexp because unescaped { issues a \ 
warning now and will become
                a fatal error in Perl V 5.32.
        - Adopt new repo structure. See
                http://savage.net.au/Ron/html/My.Workflow.for.Building.Distros.html.
   2017-06-05 16:25:36 by Ryo ONODERA | Files touched by this commit (2298)
Log message:
Recursive revbump from lang/perl5 5.26.0
   2016-06-08 21:25:20 by Thomas Klausner | Files touched by this commit (2236)
Log message:
Bump PKGREVISION for perl-5.24.
   2016-04-29 09:40:08 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Updated to devel/p5-Tree-DAG-Node-1.29
---------------------------------------
1.29  2016-03-01T13:39:00
  - After another email exchange with Kent Fredric (via RT) and Karen Etheridge \ 
(via the
    cpan-testers-discuss mailing list), I've edited Makefile.PL, again, to \ 
indicate that
    Test::Pod is needed neither for building nor testing this module, but is \ 
only needed for
    development. Specifically, it's used by xt/author/pod.t, and not elsewhere. See
    https://metacpan.org/pod/CPAN::Meta::Spec#PREREQUISITES for more details.

1.28  2016-03-01T08:43:00
  - No code changes.
  - Rework Makefile.PL so File::Spec, File::Temp, Test::More and Test::Pod are \ 
in TEST_REQUIRES.
          Many thanx to Kent Fredric in RT#112568 for this suggestion.
  - Expand the SYNOPSIS.
  - Update MANIFEST.SKIP to include .gitignore.
  - Finally add lightweight git tags to distros, so that if you have a Bash \ 
alias such as:
   alias gl='git log --decorate=full' you'll see something like these 5 lines:

1.27  2015-07-12T11:01:00
  - Remove the line which reads 'use open qw(:std :utf8);'. As Tom Molesworth says:
          "Specifically, it turns on the UTF-8 encoding layer on STDIO when \ 
any code does
          'use Tree::DAG_Node'. That's no good when code is expecting a \ 
different encoding
          (raw, etc.)". See RT#105798. Karen Etheridge followed up with a \ 
comment about it appearing
          in another module of mine. Then I checked all my modules (including \ 
some not intended for
          publication - Local::*) and found about 28 offenders, with some using \ 
it inn multiple files.
          The original idea came from adopting what Tom Christiansen calls his \ 
'Standard Preamble':
          http://www.perl.com/pub/2012/04/perlunicook-standard-preamble.html
          All tests still work after removing that line.
  - Remove Build.PL. Ship only Makefile.PL.
   2015-11-03 04:29:40 by Alistair G. Crooks | Files touched by this commit (1995)
Log message:
Add SHA512 digests for distfiles for devel category

Issues found with existing distfiles:
	distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
	distfiles/fortran-utils-1.1.tar.gz
	distfiles/ivykis-0.39.tar.gz
	distfiles/enum-1.11.tar.gz
	distfiles/pvs-3.2-libraries.tgz
	distfiles/pvs-3.2-linux.tgz
	distfiles/pvs-3.2-solaris.tgz
	distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
   2015-07-12 20:56:37 by Thomas Klausner | Files touched by this commit (405)
Log message:
Comment out dependencies of the style
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.

No effective change for the above reason.

Ok joerg
   2015-06-12 12:52:19 by Thomas Klausner | Files touched by this commit (3152)
Log message:
Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.
   2015-05-23 03:22:43 by Makoto Fujiwara | Files touched by this commit (2)
Log message:
Update 1.23 to 1.26
-------------------
1.26  Sun Apr 12 13:37:00 2015
        - Fix bug in string2hashref(), which failed on some strings, such as {a \ 
=> 'b, c'}.
                string2hashref() is called by read_tree().
                Escaped chars are still not handled.
        - Add t/string2hash.t to test new code.

1.25  Sun Mar 22 11:42:00 2015

        - I've deleted the undocumented sub _dump_quote(), which butchered
          Unicode characters
                when it tried to convert ASCII control characters into
                printable strings (on the assumption all data is
                ASCII). Thanx to Dr. Petra Steiner (Germany) for discussion
                and some testing.  I hope no-one was relying on this sub in
                output redirected to disk files, or otherwise saved for
                later comparisons.
                Methods which used to call _dump_quote() now just output
                the node's name by calling quote_name(), which is discussed
                next. Undefined names are output as the string 'undef'.
        - Add method quote_name(), which simply returns its input string
          surrounded by single-quotes.
        - Add method decode_lol(). This converts the output of
                tree_to_lol() and tree_to_simple_lol() into something which
                is easy to read. See scripts/read.tree.pl for sample usage.
        - Reorder a couple of methods called tree_*(), so that they are in
          alphabetical order.
        - Expand the docs for methods tree_to_*(), re undefined node names.
        - Add scripts/write.tree.pl, which creates the test input file
                t/tree.utf8.attributes.txt.  Note: This latter file is now
                much more complex that in previous versions.
        - Add scripts/read.tree.pl, and it's output file scripts/read.tree.log. \ 
This program
                demonstrates the output produced by various methods.
        - Fix the faulty syntax I had used in Build.PL to identify the github repo.
        - Delete and re-create github repo after 'git push' failed to upload the \ 
new version.
        - Add LICENSE file to MANIFEST.

1.24  Sun Jan 25 14:17:00 2015
        - Clean up discussion in docs of original author's reluctance to
          allow parameters to new().
        - Rewrite bareword filehandles (INX) to use a variable (my $fh).
        - Rename github repo from Tree--DAG_Node to Tree-DAG_Node - My new standard.
                Update Build.PL and Makefile.PL to match.
        - Reformat the docs, and this file, slighty, to be <= 100 chars per
          line - My new standard.
        - Change horizontal indentation used by node2string() to add 1
                space, so '|' lines up underneath the first char of the
                previous node's name. Use scripts/cut.and.paste.subtrees.pl
                to see the difference.
   2014-11-02 18:33:47 by Thomas Klausner | Files touched by this commit (2)
Log message:
Update to 1.23:

1.23  Mon Oct 20 18:12:00 2014
	- Change output format when using node2string(), which is called by tree2string().
		Indentation which used to be '|---' is now '|--- '. So, a tree which used to \ 
be printed as:
		|---:default
		|   |---::=
		|   |---action
		|   |---=>
		|   |---[values]
		Is now printed as:
		|--- :default
		|   |--- ::=
		|   |--- action
		|   |--- =>
		|   |--- [values]
		This makes the difference between node names ''/'-', '1'/'-1', etc, much clearer.
		Apologies to anyone who runs tests which compare the output with pre-existing \ 
files.

Next | Query returned 50 messages, browsing 11 to 20 | Previous