Your message dated Fri, 10 Apr 2015 22:18:36 +0000
with message-id <[email protected]>
and subject line Bug#780550: fixed in apt-cacher-ng 0.8.1-1
has caused the Debian Bug report #780550,
regarding apt-cacher-ng: Does not start when SPfilePatternEx specified in 
configuration
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
780550: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=780550
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: apt-cacher-ng
Version: 0.8.0-3
Severity: normal
Tags: patch

Dear Maintainer,

While experimenting with this option, I found that specifying it results
in the daemon's failure to start.

I have included a patch which fixes it and also tries to improve on the
documentation, hopefully making it easier for others to understand this
feature.

Best regards,

Carlos

-- Package-specific info:

-- System Information:
Debian Release: 8.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages apt-cacher-ng depends on:
ii  adduser                3.113+nmu3
ii  debconf [debconf-2.0]  1.5.55
ii  dpkg                   1.17.24
ii  init-system-helpers    1.22
ii  libbz2-1.0             1.0.6-7+b2
ii  libc6                  2.19-17
ii  libgcc1                1:4.9.2-10
ii  liblzma5               5.1.1alpha+20120614-2+b3
ii  libssl1.0.0            1.0.1k-1
ii  libstdc++6             4.9.2-10
ii  libsystemd0            215-12
ii  libwrap0               7.6.q-25
ii  zlib1g                 1:1.2.8.dfsg-2+b1

Versions of packages apt-cacher-ng recommends:
ii  ed  1.10-2

Versions of packages apt-cacher-ng suggests:
ii  avahi-daemon  0.6.31-4+b2
ii  curl          7.38.0-4
ii  doc-base      0.10.6
ii  libfuse2      2.9.3-15+b1
ii  wget          1.16-3

-- Configuration Files:
/etc/apt-cacher-ng/acng.conf changed [not included]
/etc/apt-cacher-ng/security.conf [Errno 13] Permission denied: 
u'/etc/apt-cacher-ng/security.conf'
/etc/cron.daily/apt-cacher-ng [Errno 2] No such file or directory: 
u'/etc/cron.daily/apt-cacher-ng'

-- debconf information excluded
From: Carlos Maddela <[email protected]>
Date: Mon, 16 Mar 2015 04:55:39 +1100
Subject: Fixed support for SPfilePatternEx and improved documentation

Description: Fixed support for SPfilePatternEx and improved documentation
Author: Carlos Maddela <[email protected]>
Origin: vendor
Forwarded: no
Last-Update: 2015-03-16
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
---
 conf/acng.conf | 36 ++++++++++++++++++++----------------
 source/acfg.cc |  2 +-
 2 files changed, 21 insertions(+), 17 deletions(-)

diff --git a/conf/acng.conf b/conf/acng.conf
index 02943bd..66a0421 100644
--- a/conf/acng.conf
+++ b/conf/acng.conf
@@ -170,27 +170,31 @@ ExTreshold: 4
 # Pigeonholing files (like static vs. volatile contents) is done by (extended)
 # regular expressions.
 #
-# There are following patterns for different classes and purposes:
-# - static data that doesn't change silently ont he server (PFilePattern)
-# - volatile data that can be changed like every hour (VFilePattern)
-# - special static data that shared some file names with volatile data,
-#   and in doubt should be identified as static (SPfilePattern)
-# - a "whitelist pattern" with hints for the regular expiration job telling
-#   to keep the files even if they are not referenced by others, like crypto
-#   signatures with which clients begin their downloads (WfilePattern)
-#
-# There are two versions, the pattern variables mentioned above should not be
-# set without good reasons because they override the built-in defaults (that
-# might impact updates to future versions of apt-cacher-ng). There are also
-# versions of those patterns with Ex patterns which should be modified by local
-# administrator. They are evaluated in addition to regular patterns at runtime.
+# The following patterns are available for the purposes detailed, where
+# the latter takes precedence over the former:
+# - «PFilePattern» for static data that doesn't change silently on the server.
+# - «VFilePattern» for volatile data that may change like every hour. Files
+#   that match both PFilePattern and VfilePattern will be treated as volatile.
+# - Static data with file names that match VFilePattern may be overriden being
+#   treated as volatile by making it match the special static data pattern,
+#   «SPfilePattern».
+# - «WfilePattern» specifies a "whitelist pattern" for the regular expiration
+#   job, telling it to keep the files even if they are not referenced by
+#   others, like crypto signatures with which clients begin their downloads.
+#
+# There are two versions. The pattern variables mentioned above should not be
+# set without good reason, because they would override the built-in defaults
+# (that might impact updates to future versions of apt-cacher-ng). There are
+# also versions of those patterns ending with Ex, which may be modified by the
+# local administrator. They are evaluated in addition to the regular patterns
+# at runtime.
 #
 # To see examples of the expected syntax, run: apt-cacher-ng -p debug=1
 #
-# VfilePatternEx:
 # PfilePatternEx:
-# WfilePatternEx:
+# VfilePatternEx:
 # SPfilePatternEx:
+# WfilePatternEx:
 #
 ###############################################################################
 
diff --git a/source/acfg.cc b/source/acfg.cc
index 70deff5..6139a7c 100644
--- a/source/acfg.cc
+++ b/source/acfg.cc
@@ -102,7 +102,7 @@ MapNameToString n2sTbl[] = {
 		,{  "VfilePatternEx",          &vfilepatEx}
 		,{  "PfilePatternEx",          &pfilepatEx}
 		,{  "WfilePatternEx",          &wfilepatEx}
-		,{  "SPfilePattern",           &spfilepatEx}
+		,{  "SPfilePatternEx",         &spfilepatEx}
 //		,{  "AdminAuth",               &adminauth}
 		,{  "BindAddress",             &bindaddr}
 		,{  "UserAgent",               &agentname}

--- End Message ---
--- Begin Message ---
Source: apt-cacher-ng
Source-Version: 0.8.1-1

We believe that the bug you reported is fixed in the latest version of
apt-cacher-ng, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Eduard Bloch <[email protected]> (supplier of updated apt-cacher-ng package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 10 Apr 2015 23:40:20 +0200
Source: apt-cacher-ng
Binary: apt-cacher-ng
Architecture: source
Version: 0.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Eduard Bloch <[email protected]>
Changed-By: Eduard Bloch <[email protected]>
Description:
 apt-cacher-ng - caching proxy server for software repositories
Closes: 734581 777753 779739 780550 780555 781328 781364 781447 781672 781921 
782013 782026
Changes:
 apt-cacher-ng (0.8.1-1) unstable; urgency=low
 .
   * New upstream version
     + transition to libsystemd without -daemon where possible (closes: #779739)
     + LTO disabled by default (closes: #777753)
     + *.o file download as volatile type (LP: #1078224)
     + more Fedora mirrors (Carlos Maddela, closes: #780555)
     + corrects handling of SPfilePatternEx (Carlos Maddela, closes: #780550)
   * Debconf question to enable HTTP tunnels, e.g. for https (closes: #734581)
   * Debconf translation updates: German (Holger Wansing, closes: #781921),
     French (Jean-Baka Domelevo Entfellner, closes: #782026), Italian (Beatrice
     Torracca, closes: #782013), Dutch (Frans Spiesschaert), Polish (Łukasz
     <[email protected]>), Swedish (Martin Bagge, Anders Jonsson,
     closes: #781672), Czech (Miroslav Kure, closes: #781447), Russian (Yuri
     Kozlov, closes: #781364), Danish (Joe Dalton, closes: #781328)
Checksums-Sha1:
 85e4023eb04a090f2941fe166422e51d8cc61bcb 1982 apt-cacher-ng_0.8.1-1.dsc
 08fa2b4350a1374855b95bad02f1feacea11da9c 506356 apt-cacher-ng_0.8.1.orig.tar.xz
 e802dc568877bb86f702418bab8bcf0d0b3d861c 44756 
apt-cacher-ng_0.8.1-1.debian.tar.xz
Checksums-Sha256:
 6ec9880c5d60addf132a0b9bcc2b355b7b8949249795746f3d237b1a7aadf6e8 1982 
apt-cacher-ng_0.8.1-1.dsc
 fb628716079c2c5330aff3fcfc878682c42426906a8cc6376f2d77c0fecf50db 506356 
apt-cacher-ng_0.8.1.orig.tar.xz
 76ed3c670272dc1712943bf5188f352644ec53dae868a8a61eb48e92e859d09b 44756 
apt-cacher-ng_0.8.1-1.debian.tar.xz
Files:
 b7b59875d4b8de0812c1e29df1b69754 1982 net optional apt-cacher-ng_0.8.1-1.dsc
 a6ebd5e43d4aa9fca5d4f7b1015b7515 506356 net optional 
apt-cacher-ng_0.8.1.orig.tar.xz
 9bf161ef10a7e88abbe0158b64f2262f 44756 net optional 
apt-cacher-ng_0.8.1-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIVAwUBVShJBWl0DlyzX+w8AQimeg/+PPum6+e0C28ubC5qZYH17xbTMUYD8Fcn
cFzKG8AZoHioLHcuwg1LzHOmZdIVJ7ZzOExI/bIUJ37IMfKzayXoGNhZiH5/2w8B
9+xV1GJ+MkIaQ7X+Bhw6OXRUYxNavONeSTnOq0u/G/K9u82yFph7XIEVIzpE0htg
iEReftYIacU9kOg0Udt6OL6vhJwZ10d6ZNhrRkLCuQhorgrioXAIcLoo1p1Ctx1n
VZ4WNFAqtXCi4NQlaB95cd7DDH2d5TDzOmKTHzCGocW0ujTQTWVfFwci2Pllo6L4
E4gK2sb7tsvj8ZmyJgo9G2ouWXeTnZ1ogVAGrlH8EQ7l9WCwrNKYiG2z91xPbaGh
NwXiZxEJXu/3jhAzEUgJjB1l7nnxJYOAErKxjc0n2eE+ILPuMiu+jD/pEHFopFPE
jXK/gwq2zFDNKfMuJ9IDyd+f7t7QB4+QMcF0MYD/NT+p6M62GUmt9ErhZXZBzsch
Q342bkbctso/lULhrU1j2vIS/WB8iW1nu10GfPk2yXFCDjhFht9xmJkGYoh4NA1I
4LNWmM7W9xw20FEaQOFKWkCJoaq1qLSnC4wCjdOgQaxer7M2Dki8tbTQ0cumMInl
XXUU4LXWpUN4UzdzA5TNFevfo+PgeDRTpD7ot70P0QdIGayBKMrWL9nSbIvy/Yij
Ui7kP8Iisf0=
=RWb/
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to