From 593ec9785c042b25c3da5c86a525d3d16d3240853c2c6ed1d27f38c08d0acaeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Chv=C3=A1tal?= Date: Thu, 24 Jan 2019 11:29:52 +0000 Subject: [PATCH] Accepting request 668274 from home:jengelh:branches:devel:languages:python - Use noun phrase in summary. OBS-URL: https://build.opensuse.org/request/show/668274 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cachey?expand=0&rev=4 --- python-cachey.changes | 5 +++++ python-cachey.spec | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/python-cachey.changes b/python-cachey.changes index 67ae9c3..bab7dbc 100644 --- a/python-cachey.changes +++ b/python-cachey.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jan 24 09:25:19 UTC 2019 - Jan Engelhardt + +- Use noun phrase in summary. + ------------------------------------------------------------------- Thu Jan 24 08:20:29 UTC 2019 - Tomáš Chvátal diff --git a/python-cachey.spec b/python-cachey.spec index eb0d045..fa0bcf2 100644 --- a/python-cachey.spec +++ b/python-cachey.spec @@ -20,7 +20,7 @@ Name: python-cachey Version: 0.1.1 Release: 0 -Summary: Caching mindful of computation/storage costs +Summary: A Python cache mindful of computation/storage costs License: BSD-3-Clause Group: Development/Languages/Python URL: http://github.com/mrocklin/cachey/ @@ -48,7 +48,7 @@ It accomplishes this by adding the following to each items score on each access score += compute_time / num_bytes * (1 + eps) ** tick_time -For some small value of epsilon (which determines the memory halflife.) This +For some small value of epsilon (which determines the memory halflife). This has units of inverse bandwidth, has exponential decay of old results and roughly linear amplification of repeated results.