./devel/p5-Config-IniFiles, Perl module for reading .ini-style configuration files

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2012Q1, Version: 2.71, Package name: p5-Config-IniFiles-2.71, Maintainer: pkgsrc-users

Config::IniFiles provides a way to have readable configuration files
outside your Perl script. Configurations can be imported (inherited,
stacked,...), sections can be grouped, and settings can be accessed from
a tied hash.


Required to run:
[lang/perl5] [devel/p5-List-MoreUtils]

Required to build:
[devel/p5-Module-Build]

Master sites: (Expand)

SHA1: 37cbca2241178b1343b1bc13bfb959080986d450
RMD160: 14cded2ce91786e5383bd355fdce0b57c8db4bdb
Filesize: 58.765 KB

Version history: (Expand)


CVS history: (Expand)


   2012-05-06 02:21:57 by Matthias Scheler | Files touched by this commit (2) | Package updated
Log message:
Pullup ticket #3771 - requested by gls
devel/p5-Config-IniFiles: security update

Revisions pulled up:
- devel/p5-Config-IniFiles/Makefile                             1.30
- devel/p5-Config-IniFiles/distinfo                             1.17

---
   Module Name:	pkgsrc
   Committed By:	gls
   Date:		Sat May  5 13:40:48 UTC 2012

   Modified Files:
   	pkgsrc/devel/p5-Config-IniFiles: Makefile distinfo

   Log message:
   Update devel/p5-Config-IniFiles to 2.71
   Fixes CVE-2012-2451.

   pkgsrc changes:
   ---------------

   - p5-List-MoreUtils is required

   Upstream Changes:
   -----------------

   Version 2.71:   ( Wed May  2 10:59:04 IDT 2012 )
   ------------------------------------------------

   * SECURITY BUG FIX: Config::IniFiles used to write to a temporary filename
   with a predictable name ("${filename}-new") which opens the door \ 
for potential
   exploits.

   * Now requiring List::MoreUtils (for any() and other functions), File::Temp
   and File::Basename .

   * Add "use warnings;" to lib/Config/IniFiles.pm .

   * More refactoring.

   Version 2.70:   ( Fri Apr  6 12:47:25 IDT 2012 )
   ------------------------------------------------

   * Fix the test dependency (in the new t/31comments_with_spaces.t test)
   on IO::stringy (now writing it to a file).
        - This caused some CPAN Testers failures such as:
            - \ 
http://www.cpantesters.org/cpan/report/c16b9978-7f40-11e1-9d6f-f6dbfa7543f5

   * Modernized some of the open() calls in the test files.
        - three args open, lexcial file handles, etc.

   Version 2.69:   ( Thu Apr  5 12:05:46 IDT 2012 )
   ------------------------------------------------

   * Fix \ 
https://sourceforge.net/tracker/?func=detail&aid=3388382&group_id=6926&atid=106926
        - "Trailing comments with whitespace are not recognised"
        - Thanks to briconaut for the report and to rbowen for the patch and test.

   * Add the method ->OutputConfigToFileHandle which is a more explicit and
   safer version of ->OutputConfig.
        - ->OutputConfig now uses it.
        - all existing tests pass, and a new test was added to
        t/15store-and-retrieve-here-doc-terminator.t .

   * Started refactoring the code.
        - Expand tabs to spaces.
        - many other small changes.