[libchi-memoize-perl] 02/02: Filled in required info in debian/control, debian/copyright and debian/changelog

Christopher Hoskin christopher.hoskin at gmail.com
Mon Dec 12 21:56:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

grinorcole-guest pushed a commit to branch master
in repository libchi-memoize-perl.

commit c119011315fc4a75410a3a08a363400da14df75a
Author: Christopher Hoskin <christopher.hoskin at gmail.com>
Date:   Mon Dec 12 21:55:48 2016 +0000

    Filled in required info in debian/control, debian/copyright and debian/changelog
---
 debian/changelog |  2 +-
 debian/control   | 29 +++++++++++++++--------------
 debian/copyright |  8 --------
 3 files changed, 16 insertions(+), 23 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1781969..dccf500 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,5 @@
 libchi-memoize-perl (0.07-1) UNRELEASED; urgency=low
 
-  * Initial Release.
+  * Initial Release. (Closes: #847835)
 
  -- Christopher Hoskin <christopher.hoskin at gmail.com>  Mon, 12 Dec 2016 07:48:05 +0000
diff --git a/debian/control b/debian/control
index 0603946..1f94de1 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Christopher Hoskin <christopher.hoskin at gmail.com>
 Build-Depends: debhelper (>= 9)
-Build-Depends-Indep: libchi-perl (>= 0.47),
+Build-Depends-Indep: libchi-perl,
  libhash-moreutils-perl,
  libmoo-perl,
  libtest-class-most-perl,
@@ -18,22 +18,23 @@ Testsuite: autopkgtest-pkg-perl
 Package: libchi-memoize-perl
 Architecture: all
 Depends: ${misc:Depends}, ${perl:Depends},
- libchi-perl (>= 0.47),
+ libchi-perl,
  libhash-moreutils-perl,
  libmoo-perl
-Description: Make functions faster with memoization via CHI
- "`Memoizing' a function makes it faster by trading space for time. It does
- this by caching the return values of the function in a table. If you call the
- function again with the same arguments, memoize jumps in and gives you the
- value out of the table, instead of letting the function compute the value all
- over again." -- quoted from the original Memoize|Memoize
+Description: memoization implementation backed by CHI
+ CHI::Memoize is an implementation of the memoization technique using CHI.
+ Memoize caches the inputs and outputs of a function, if the function is called
+ again with the same inputs, CHI::Memoize intervenes and provides the cached
+ result. For slow functions, time is saved, at the expence of space.
  .
- For a bit of history and motivation, see
+ CHI::Memoize provides the same facility as Memoize|Memoize, but backed by
+ CHI|CHI. This means, among other things, that you can:
  .
- http://www.openswartz.com/2012/05/06/memoize-revisiting-a-twelve-year-old-api
- /
+  * specify expiration times (expires_in) and conditions (expire_if)
+  * memoize to different backends, e.g. File, Memcached, DBI, or to multilevel
+    caches
+  * handle arbitrarily complex function arguments (via CHI key serialization)
  .
- CHI::Memoize provides the same facility as Memoize|Memoize, but backed by
- CHI|CHI. This means, among other things, that you can
+ For a bit of history and motivation, see
  .
- This description was automagically extracted from the module by dh-make-perl.
+ http://www.openswartz.com/2012/05/06/memoize-revisiting-a-twelve-year-old-api
diff --git a/debian/copyright b/debian/copyright
index 145af6c..c369631 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -2,14 +2,6 @@ Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://metacpan.org/release/CHI-Memoize
 Upstream-Contact: Jonathan Swartz <swartz at pobox.com>
 Upstream-Name: CHI-Memoize
-DISCLAIMER: This copyright info was automatically extracted
- from the perl module. It may not be accurate, so you better
- check the module sources in order to ensure the module for its
- inclusion in Debian or for general legal information. Please,
- if licensing information is incorrectly generated, file a bug
- on dh-make-perl.
- NOTE: Don't forget to remove this disclaimer once you are happy
- with this file.
 
 Files: *
 Copyright: Jonathan Swartz <swartz at pobox.com>

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libchi-memoize-perl.git



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