r26895 - in /trunk/libfile-sharedir-par-perl/debian: changelog control

alexm-guest at users.alioth.debian.org alexm-guest at users.alioth.debian.org
Sat Nov 15 00:56:32 UTC 2008


Author: alexm-guest
Date: Sat Nov 15 00:56:29 2008
New Revision: 26895

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=26895
Log:
* First changes in debian/control and debian/changelog.
* Tag as UNRELEASED, it's not ready yet.

Modified:
    trunk/libfile-sharedir-par-perl/debian/changelog
    trunk/libfile-sharedir-par-perl/debian/control

Modified: trunk/libfile-sharedir-par-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-sharedir-par-perl/debian/changelog?rev=26895&op=diff
==============================================================================
--- trunk/libfile-sharedir-par-perl/debian/changelog (original)
+++ trunk/libfile-sharedir-par-perl/debian/changelog Sat Nov 15 00:56:29 2008
@@ -1,5 +1,5 @@
-libfile-sharedir-par-perl (0.02-1) unstable; urgency=low
+libfile-sharedir-par-perl (0.02-1) UNRELEASED; urgency=low
 
-  * Initial Release.
+  * Initial Release. Closes: #505763 -- ITP
 
  -- Alex Muntada <alexm at alexm.org>  Sat, 15 Nov 2008 01:11:58 +0100

Modified: trunk/libfile-sharedir-par-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libfile-sharedir-par-perl/debian/control?rev=26895&op=diff
==============================================================================
--- trunk/libfile-sharedir-par-perl/debian/control (original)
+++ trunk/libfile-sharedir-par-perl/debian/control Sat Nov 15 00:56:29 2008
@@ -2,15 +2,42 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 7)
-Build-Depends-Indep: perl (>= 5.005)
-Maintainer: Alex Muntada <alexm at alexm.org>
+Build-Depends-Indep: perl (>= 5.005),
+ libparams-util-perl (>= 0.07), libfile-sharedir-perl,
+ libclass-inspector-perl (>= 1.12)
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Alex Muntada <alexm at alexm.org>
 Standards-Version: 3.8.0
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libfile-sharedir-par-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libfile-sharedir-par-perl/
 Homepage: http://search.cpan.org/dist/File-ShareDir-PAR/
 
 Package: libfile-sharedir-par-perl
 Architecture: all
-Depends: perl (>= 5.005), ${misc:Depends}, libparams-util-perl (>= 0.07), libfile-sharedir-perl, libclass-inspector-perl (>= 1.12)
+Depends: perl (>= 5.005), ${misc:Depends},
+ libparams-util-perl (>= 0.07), libfile-sharedir-perl,
+ libclass-inspector-perl (>= 1.12)
 Description: File::ShareDir with PAR support
- File::ShareDir with PAR support
+ File::ShareDir::PAR provides the same functionality as File::ShareDir
+ but tries hard to be compatible with PAR packaged applications.
  .
- This description was automagically extracted from the module by dh-make-perl.
+ The problem is, that the concept of having a distribution or module
+ specific share directory becomes a little hazy when you're loading
+ everything from a single file. PAR uses an @INC hook to intercept any
+ attempt to load a module. File::ShareDir uses the directory structure
+ that is typically found in the directories that are listed in @INC for
+ storing the shared data. In a PAR enviroment, this is not necessarily
+ possible.
+ .
+ When you call one of the functions that this module provides, it will
+ take care to search in any of the currently loaded .par files before
+ scanning @INC. This is the same order of preference you get for loading
+ modules when PAR is in effect. If the path or file you are asking for
+ is found in one of the loaded .par files, that containing .par file is
+ extracted and the path returned will point to the extracted copy on disk.
+ .
+ Depending on how you're using PAR, the files that are extracted this
+ way are either cleaned up after program termination or cached for
+ further executions. Either way, you're safe if you use the shared data
+ as read-only data. If you write to it, your changes may be lost after
+ the program ends.




More information about the Pkg-perl-cvs-commits mailing list