Your message dated Fri, 31 Mar 2006 02:02:10 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#354104: fixed in madison-lite 0.9
has caused the attached Bug report 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 I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: madison-lite
Version: 0.6
Severity: wishlist
I'm using madison-lite for comparing which versions of a given package
are in debian and ubuntu. I think other users would find it handy to
find ready to use scripts/config in the examples/ directory for that.
I'm attaching my config and my update script for that. If you think they
are useful, please add them to the examples directory.
cheers!
-- System Information:
Debian Release: testing/unstable
APT prefers dapper
APT policy: (500, 'dapper')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-16-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Versions of packages madison-lite depends on:
ii perl 5.8.7-10ubuntu1 Larry Wall's Practical Extraction
Versions of packages madison-lite recommends:
ii perl [libdigest-md5-perl 5.8.7-10ubuntu1 Larry Wall's Practical Extraction
-- no debconf information
#! /bin/sh -e
# This is an example of how to build a local mirror containing only the
# index files, not the packages themselves. If you put something similar to
# this in a cron job, then you can run madison-lite locally. Be sure to
# change the various hostnames to appropriate mirrors, set MIRROR to a
# suitable directory, and fill the mirror directory into your madison-lite
# configuration file.
#
# If you are reading this after the release of sarge, then you may need to
# change the lists of distributions and architectures.
HOST_MAIN=${HOST_MAIN:-'ftp://ftp.debian.org/debian'}
HOST_UBUNTU=${HOST_UBUNTU:-'http://archive.ubuntu.com/ubuntu'}
HOST_SECURITY=${HOST_SECURITY:-'http://mirrors.geekbone.org/debian-security/'}
MIRROR=${MIRROR:-/var/cache/madison-lite/mirror}
#debian has no amd64 yet!
DEBIANARCHS='i386 powerpc'
UBUNTUARCHS='i386 powerpc amd64'
WGET_OPTS=${WGET_OPTS-'-q -N --passive-ftp'}
umask 002
mkdir -p "$MIRROR"
cd "$MIRROR"
mkdir -p dists
cd dists
archives='ubuntu main'
components='main contrib non-free'
ubuntucomponents='main restricted universe multiverse'
arches="${DEBIANARCHS}"
for archive in $archives; do
case $archive in
main)
host="$HOST_MAIN"
suitesuffix=''
#suites='stable proposed-updates testing testing-proposed-updates
unstable experimental'
suites='unstable experimental'
components='main contrib non-free'
arches="${DEBIANARCHS}"
;;
security)
host="$HOST_SECURITY"
suitesuffix='/updates'
suites='stable testing'
;;
ubuntu)
host="$HOST_UBUNTU"
suitesuffix=''
#suites='warty hoary breezy dapper'
suites='warty hoary breezy dapper'
components="${ubuntucomponents}"
arches="${UBUNTUARCHS}"
;;
*)
echo "Internal error: archive '$archive'?" >&2
exit 1
esac
for suite in $suites; do
if [ "$archive" = main -o "$archive" = ubuntu ]; then
suitehere="$suite"
else
suitehere="$suite-$archive"
fi
mkdir -p "$suitehere"
root=dists
for component in $components; do
mkdir -p "$suitehere/$component"
for arch in $arches; do
mkdir -p "$suitehere/$component/binary-$arch"
wget $WGET_OPTS -O
"$suitehere/$component/binary-$arch/Packages.gz"
"$host/$root/$suite$suitesuffix/$component/binary-$arch/Packages.gz"
done
mkdir -p "$suite/$component/source"
wget $WGET_OPTS -O "$suite/$component/source/Sources.gz"
"$host/$root/$suite$suitesuffix/$component/source/Sources.gz"
done
done
done
exit 0
# This madison-lite configuration is suitable for a typical debian.org host
# with a complete mirror.
mirror /var/cache/madison-lite/mirror
suite unstable dists/unstable main contrib non-free
suite experimental dists/experimental main contrib non-free
suite warty dists/warty main restricted universe multiverse
suite hoary dists/hoary main restricted universe multiverse
suite breezy dists/breezy main restricted universe multiverse
suite dapper dists/dapper main restricted universe multiverse
--- End Message ---
--- Begin Message ---
Source: madison-lite
Source-Version: 0.9
We believe that the bug you reported is fixed in the latest version of
madison-lite, which is due to be installed in the Debian FTP archive:
madison-lite_0.9.dsc
to pool/main/m/madison-lite/madison-lite_0.9.dsc
madison-lite_0.9.tar.gz
to pool/main/m/madison-lite/madison-lite_0.9.tar.gz
madison-lite_0.9_all.deb
to pool/main/m/madison-lite/madison-lite_0.9_all.deb
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.
Colin Watson <[EMAIL PROTECTED]> (supplier of updated madison-lite 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: SHA1
Format: 1.7
Date: Fri, 31 Mar 2006 10:46:18 +0100
Source: madison-lite
Binary: madison-lite
Architecture: source all
Version: 0.9
Distribution: unstable
Urgency: low
Maintainer: Colin Watson <[EMAIL PROTECTED]>
Changed-By: Colin Watson <[EMAIL PROTECTED]>
Description:
madison-lite - display versions of Debian packages in an archive
Closes: 354104 354223 354224 354225
Changes:
madison-lite (0.9) unstable; urgency=low
.
* Remove special handling for experimental in make-local-mirror (thanks,
Adam D. Barratt; closes: #354223).
* Add amd64 support to make-local-mirror for testing, unstable, and
experimental (thanks, Adam D. Barratt; closes: #354224).
* Add hurd-i386 support to make-local-mirror for unstable and experimental
(thanks, Adam D. Barratt; closes: #354225).
* Add an example configuration for ubuntu.com hosts.
* Add support for Ubuntu and Ubuntu ports archives to make-local-mirror,
which can be enabled by including 'ubuntu ubuntu-ports' in the ARCHIVES
environment variable; add an example configuration that works with
make-local-mirror's default output (thanks, Reinhard Tartler;
closes: #354104).
* Remove proposed-updates, testing, testing-proposed-updates, unstable,
and experimental from default non-US components in make-local-mirror;
none of them exist any more.
* Fix --config-file option.
* If a Packages file can't be found, continue with a warning rather than
dying.
Files:
390e522fbe8a1c7eb8ac8a3b9fd7f9f1 510 admin optional madison-lite_0.9.dsc
45d510f14828cc6874b26c779120ee14 11416 admin optional madison-lite_0.9.tar.gz
cb605956b869942cbbb153f9bb08f275 13434 admin optional madison-lite_0.9_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.2 (GNU/Linux)
iD8DBQFELPsa9t0zAhD6TNERAgg+AJ9tfpT+dB0SxvwGqkhKt1EIgHBHTQCdGkLv
oCQXVu0fACXI5P3C4Gmh3Rg=
=Hi8f
-----END PGP SIGNATURE-----
--- End Message ---