summaryrefslogtreecommitdiff
path: root/debian/control
diff options
context:
space:
mode:
Diffstat (limited to 'debian/control')
-rw-r--r--debian/control36
1 files changed, 36 insertions, 0 deletions
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..04da8b9
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,36 @@
+Source: libvariable-disposition-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
+Uploaders: Andrej Shadura <andrewsh@debian.org>
+Build-Depends: debhelper (>= 11)
+Build-Depends-Indep: libfuture-perl (>= 0.30),
+ libtest-checkdeps-perl (>= 0.010),
+ libtest-fatal-perl (>= 0.010),
+ libtest-refcount-perl,
+ perl
+Standards-Version: 4.3.0
+Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libvariable-disposition-perl
+Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libvariable-disposition-perl.git
+Homepage: https://metacpan.org/release/Variable-Disposition
+Testsuite: autopkgtest-pkg-perl
+
+Package: libvariable-disposition-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ libfuture-perl (>= 0.30)
+Description: dispose of variables
+ Provides some basic helper functions for making sure variables go away when
+ you want them to.
+ .
+ Currently provides /dispose as a default import. To avoid this:
+ .
+ use Variable::Disposition ();
+ .
+ In addition, /retain and /retain_future are available as optional imports.
+ .
+ use Variable::Disposition qw(dispose retain retain_future);
+ .
+ The :all tag can be used to import every available function:
+ .
+ This description was automagically extracted from the module by dh-make-perl.