libdir-self-perl 0.11-ok1 source package in openKylin

Changelog

libdir-self-perl (0.11-ok1) yangtze; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 25 Apr 2022 22:03:04 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
luzp
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libdir-self-perl_0.11.orig.tar.gz 3.3 KiB e251a51abc7d9ba3e708f73c2aa208e09d47a0c528d6254710fa78cc8d6885b5
libdir-self-perl_0.11-ok1.debian.tar.xz 1.6 KiB 20724da9fcea921d65d07825e7f731075e33bcecf0d1e4361ec47f0571e0f359
libdir-self-perl_0.11-ok1.dsc 1.8 KiB c60e4b8db55957c45f39e683e9d41bb3c4364112359e314e42672ab112ea097f

View changes file

Binary packages built by this source

libdir-self-perl: module providing a __DIR__ constant for the directory of the source file

 Perl has two pseudo-constants describing the current location in your source
 code, __FILE__ and __LINE__. Dir::Self adds __DIR__, which expands to the
 directory your source file is in, as an absolute pathname.
 .
 This is useful if your code wants to access files in the same directory, like
 helper modules or configuration data. This is a bit like FindBin except it's
 not limited to the main program, i.e. you can also use it in modules. And it
 actually works.