time_t and backports

2024-02-26 Thread John Goerzen
Hi folks,

As a person that frequently uploads to bookworm-backports, I am
wondering how we are handling the time_t transition there?

The picture of synchronization with testing is a little complicated over
there.  If you change the default build flags, you produce unexpected
surprises over bookworm.  If you don't, the t64 packages aren't really
t64.

Thanks,

John



Confusion over t64 migration

2024-02-09 Thread John Goerzen
Hi everyone,

Thanks to all that have put so much time and thought into the time_t
migration.  I am late to this party and am trying to figure my way
through it.

Quite a few of my packages are marked for removal from testing because
time_t migration bugs have been filed with severity serious.  Some of
these are filed against my own packages, but most are filed against
other packages which are dependencies of ones I maintain.

I am an uploader for gensio, which had a bug #1062097 reported for this
issue.  Like the others, it was reported as severity serious, tagged
found in the version in unstable.  This, of course, prevents migrations
to testing and also leads to removals from testing.

I uploaded a package with the enclosed patch quickly, but then was told
that was not the right thing to do.  I then uploaded a new version of
gensio with the change removed...  but again (and I'm not even sure how
this is the case, since the bug was resolved) it is marked for
autoremoval from testing.

So at the moment, I am unclear why there are bugs filed with severity
serious that apparently cannot be fixed.  Shouldn't they be normal with
a tag wontfix until the relevant dpkg changes are in unstable?

To put it another way, I'm not seeing why we are reporting RC bugs
against a bunch of packages before it is possible to fix them.

A key use case for me is uploading to bookworm-backports.  Of course,
that requires being in testing first.  What will happen with time_t in
bookworm-backports?

Thanks!

- John



Bug#1055134: ITP: golang-github-bits-and-blooms-bloom -- Go package implementing Bloom filters, used by Milvus and Beego.

2023-10-31 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-github-bits-and-blooms-bloom
  Version : 3.6.0-1
  Upstream Author : Will Fitzgerald
* URL : https://github.com/bits-and-blooms/bloom
* License : BSD-2-clause
  Programming Lang: Go
  Description : Go package implementing Bloom filters, used by Milvus and 
Beego.

 Bloom filters
 .
 A Bloom filter is a concise/compressed representation of a set, where
 the main requirement is to make membership queries; *i.e.*, whether an
 item is a member of a set. A Bloom filter will always correctly report
 the presence of an element in the set when the element is indeed
 present. A Bloom filter can use much less storage than the original set,
 but it allows for some 'false positives': it may sometimes report that
 an element is in the set whereas it is not.
 .
 This is a Go library for a bloom filter.

It is required by the latest Yggdrasil.



Re: Potential MBF: packages failing to build twice in a row

2023-08-13 Thread John Goerzen
On Sat, Aug 05 2023, Lucas Nussbaum wrote:

> I wonder what we should do, because 5000+ failing packages is a lot...

Let's think about the level of trouble we cause trying to tackle
something that has clearly not bothered anyone for years.

>From the packaging side, there are many reasons that proper clean
targets can be difficult:

- Upstream wants to ship things that may get modified during build.  Ie,
  autoconf/automake replaces files they ship because they want it to
  work "out of the box" in some fashion.  Another example is
  documentation; upstream may ship built docs even though we rebuild it
  for completeness.

- Upstream's clean target is insufficient.

- Our own build processes make modifications.  (eg, quilt; yes I know it
  is supposed to be cleaned up but this is not always perfect)

- It is difficult to prepare a proper clean target, because build
  artifacts may lack predictable names (eg, have the architecture
  embedded in them)

Now, what are the possible options for dealing with this?

- Invest a lot of time writing bespoke scripts to handle it

- Copy the upstream source to a temp directory and build from there.
  (Some packages already do this; if we are going to hack in this
  direction all over, why not just do it by default everywhere?)

- Repack the upstream source to exclude files we generate.  But this has
  a ton of downfalls, including breaking the trust chain from upstream
  to us.  It should be a last resort (eg, making the tarball DFSG-free).

- Just tell people to run "git reset --hard HEAD; git clean -xfd"

Personally, I'm a volunteer.  I have X amount of time to devote to
Debian.   I work on Debian because I enjoy it.  It is satisfying!

I maintain packages written in at least 6 different languages.  Some
packages are sleek and modern tools.  One I am about to take over traces
its codebase to 1981 and the upstream author has an explicit goal that
it still builds on operating systems that were discontinued in the
mid-80s.

I have an alias (not just for Debian) that does "git reset --hard HEAD;
git clean -xfd".

Spending hours to make a clean target I have no need for, already have
an equivalent of, and has no real purpose, drains my enthusiasm and
steals time that I could otherwise be using doing more high-value work
like fixing bugs.

Let's focus our energies on things that matter more.

> Should we give up on requiring a 'clean' target that works? After all,
> when 17% of packages are failing, it means that many maintainers don't
> depend on it in their workflow.

Yes.

- John



Re: Potential MBF: packages failing to build twice in a row

2023-08-13 Thread John Goerzen
On Sat, Aug 05 2023, Andrey Rakhmatullin wrote:

> On Sat, Aug 05, 2023 at 08:10:35PM +0300, Adrian Bunk wrote:
>> Debian maintainers with proper git workflows are already exporting all
>> their changes from git to debian/patches/ as one file - currently the
>> preferred form of modification of a Debian package has to be in salsa
>> and not in our archive when the changes cannot be represented as quilt
>> patches against tarballs.
> Is the gbp-pq workflow improper?


Improper?  I don't know.  But bad, yes.

If we ignore the decades of history -- yes I know we don't live in that
vacuum, but humor me here -- it is a weird process.  We (typically) get
upstream code in git, and (typically) maintain it in git in Debian.  git
already has features built in to do all this tracking, but we do this
really weird thing where we use git to store text files consisting of
diffs that, in that case, are more properly maintained in git anyhow.

I actually prefer the old source format to quilt, because I can just
maintain things in git the proper way with it, rather than have to do
all this weirdness.  But that's just me.

Not all of my packages have their upstream in git, but I maintain 100%
of them in git at the Debian level.

Here's the key.  By using a lot of nonstandard things, Debian is doing
two things:

1) Raising the barrier to newcomers to participate

2) Assuring that we will lag behind what others are doing

For #2, the reason is that however much we work on our bespoke tooling,
we cannot hope to match what the rest of the world combined is doing.

That doesn't mean we give up on .deb and adopt RPM or something.  But,
in an ideal world, would gbp-pq need to exist?  I don't think so.  A
world in which it doesn't should be our target.

- John



Re: i386 in the future (was Re: 64-bit time_t transition for 32-bit archs: a proposal)

2023-05-31 Thread John Goerzen
On Tue, May 30 2023, Steve Langasek wrote:

> For businesses, the transition from 32-bit to 64-bit was several
> depreciation cycles ago.
>
> In my city, there is a non-profit that accepts donations of old computers,
> refurbishes them, installs Linux, and both sells them and provides them free
> to people in need.
>
> They receive x86-64 systems that they determine are *too old to be worth
> refurbishing* and they e-cycle them.
>
> Hanging on to systems using power-hungry chips from 20 years ago instead of
> intercepting a system such as this is not reducing the number of computers
> that end up in the waste stream, it just keeps you stuck with a more
> power-hungry system.

I still have several Asus EeePCs (Atom N270 which had a TDP of 2.5W)
from around 2008ish.  One of them is in active use as an amateur radio
digipeater, while the others see occasional use.  These don't support a
64-bit instruction set but are perfectly servicable for certain use
cases.

I understand that a 9" screen and an Atom isn't going to be suitable for
the segment of the population that wants to use it for modern web
browsing and video calling, so I understand why your nonprofit is doing
that.

I wouldn't buy a used EeePC today.  Still, I see no reason to contribute
to the waste and carbon stream by replacing these perfectly usable
machines with something newer.  Capability-wise, they are roughly
similar to a Raspberry Pi, but they have the added benefit of a screen,
keyboard, and battery all integrated in a small device.

Not everything from that age was power-hungry.

I guess the question is: is this use case too niche for Debian to
continue supporting?  I would suggest that as long as we have 32-bit
ARM, are the challenges for 32-bit x86 really worse?

- John



Bug#1032520: ITP: libthreadar -- C++ classes for manipulating threads

2023-03-08 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: libthreadar
  Version : 2.4.0
  Upstream Author : Denis Corbin
* URL : https://sourceforge.net/projects/libthreadar/
* License : LGPL v3+
  Programming Lang: C++
  Description : C++ classes for manipulating threads


 Libthreadar is a C++ library providing an abstracted set of C++ *classes* to
 manipulate threads in a very simple and efficient way from your C++ code.
 .
 It also handles exceptions thrown from a thread and propagated to another one,
 when the later is calling the thread::join() method. This let one manage
 exceptions as simply as it is in C++ single threaded context.
 .
 Additionally, all the related objects around multi-threading (mutex, semaphore,
 ...) are provided, under easy to use and independent C++ classes.  Other more
 advanced classes ease the information exchange between threads like scattering
 and gathering a collection of objects between many threads, or asynchonous
 buffered information exchanges between two threads.
 .
 libthreadar allows the dar package to provide multithreaded encryption,
 compression, and remote repository access.



Bug#1024818: ITP: pygopherd -- Modular Multiprotocol Gopher/HTTP/WAP Server in Python

2022-11-25 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: pygopherd
  Version : 3.0.0b2
  Upstream Author : John Goerzen , Michael Lazar 

* URL : https://github.com/michael-lazar/pygopherd
* License : GPL
  Programming Lang: Python
  Description : Modular Multiprotocol Gopher/HTTP/WAP Server in Python

 This is a modern Gopher server.  It can serve documents
 with Gopher+, standard Gopher (RFC1436), HTTP, and WAP -- all on the same
 port.  Pygopherd features a modular extension system as well as
 loadable scripts and much more.  It contains full support for
 UMN gopherd systems -- including .Links, .names, .cap, searches, etc.
 Pygopherd also supports Bucktooth features such as gophermap files
 and executables.  In addition to all this, there are Pygopherd's own
 extra features.  All features are fully customizable and can be enabled
 or disabled by editing /etc/pygopherd/pygopherd.conf.

Note: pygopherd initially written and maintained in Debian by me.  It was
removed previously due to the Python 2 removal.  Michael Lazar introduced Python
3 support, so I will be re-introducing it.



Bug#1019459: ITP: gvisor -- Application Kernel for Containers

2022-09-09 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: gvisor
  Version : 20220905.0-1
  Upstream Author : Google
* URL : https://github.com/google/gvisor
* License : Apache-2.0 and MIT
  Programming Lang: Go
  Description : Application Kernel for Containers

 gVisor is an
 application kernel, written in Go, that implements a substantial portion
 of the Linux system surface.  This package includes the subset of gVisor
 necessary for applications that use its TCP/IP stack, which was formerly
 split out into inet.af/netstack.

inet.af/netstack is deprecated thanks to the new support in Go for partial
module compilation.  NNCP now uses gVisor.



Bug#1013290: ITP: filespooler -- Sequential, Distributed, POSIX-Style Job Queues

2022-06-20 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 
X-Debbugs-Cc: debian-devel@lists.debian.org, debian-r...@lists.debian.org

* Package name: filespooler
  Version : 1.2.1
  Upstream Author : John Goerzen 
* URL : https://www.complete.org/filespooler/
* License : GPL
  Programming Lang: Rust
  Description : Sequential, Distributed, POSIX-Style Job Queues

 Filespooler is a Unix-style tool that facilitates local or remote command
 execution, complete with stdin capture, with easy integration with various
 tools.  Filespooler's capabilities:
 .
 It can easily use tools such as S3, Dropbox, Syncthing, NNCP, ssh, UUCP, USB
 drives, CDs, etc., or pipes as transport.  Basically anything that's a
 filesystem or a pipe can be a transport.
 .
 It can use arbitrary decoder command pipelines (eg, zcat, stdcat, gpg, age,
 etc) to pre-process stored packets.
 .
 Its storage format is simple on-disk files with locking.
 .
 It supports one-to-one and one-to-many configurations.
 .
 Locking is unnecessary when writing new jobs to the queue, and many arbitrary
 tools (eg, Syncthing, Dropbox, etc) can safely write directly to the queue
 without any assistance.
 .
 Queue processing is (by default) strictly ordered based on the order on the
 creation machine, even if job files are delivered out of order to the
 destination.
 .
 stdin can be piped into the job creation tool, and piped to a later executor at
 process time on a remote machine.
 .
 The file format is lightweight; less than 100 bytes overhead unless large extra
 parameters are given.
 .
 The queue format is lightweight; having 1000 different queues on a Raspberry Pi
 would be easy.
 .
 Processing is stream-based throughout; arbitrarily-large packets are fine and
 sizes in the TB range are no problem.
 .
 The Filespooler command, fspl, is extremely lightweight, consuming less than
 10MB of RAM on x86_64.
 .
 Filespooler has extensive documentation.
 .
 This package contains the command-line tool (fspl) for interacting with queues.



Re: NEW processing friction

2022-02-07 Thread John Goerzen


On Mon, Feb 07 2022, Theodore Ts'o wrote:

> If we can't do anything else, I suspect we can reduce project a
> friction a lot of we only subject packages to copyright hazing when it
> is a NEW source package, and not when there is a NEW binary package
> caused by some usptream maintainers not being able to maintain ABI
> backwards compatibility.

Yes.

Also, with backports.  When packaging up Go packages, which require all
their little dependencies to be independent packages, I have probably
gone through more than 50 NEW reviews in the past few months.  unstable,
bullseye, and buster backports.  This process is not yet finished for
some packages.

Another related problem is with languages like Go; when a package adds a
dependency, suddenly I can't upload new releases to unstable properly
until all the deps have made it through NEW.

- John



Re: Legal advice regarding the NEW queue

2022-02-06 Thread John Goerzen
On Fri, Feb 04 2022, Russ Allbery wrote:

> Scott correctly points out that there are a ton of copyright bugs in
> Debian *anyway*, despite NEW review.  He sees this as a reason for not
> relaxing our review standards.  I see it as the exact opposite: evidence
> that our current review standards are not achieving the 100% correctness
> we have claimed to be striving for, and the nearly complete lack of
> practical consequences for that failure.  It really seems to me like
> evidence that this task is not as important as we think it is.

Well put.  I'd like to expand a bit:

Philip Hands pointed out that we can't download packages in NEW.  It
seems we have a sort of 1990s approach here.

I want to stipulate up-front that it is good and necessary to have
quality controls over what goes into a distribution.

But it is, in 2022, no longer accurate to think that preventing
downloads from NEW prevents Debian from distributing code.  We do, after
all, run salsa, with CI builders, we have people.debian.org, and all
sorts of other places - none of which require any kind of review, at
all.

So if we set aside technical quality, as a legal matter, we have
decided:

1. It is OK to distribute completely unreviewed code from salsa, people,
   planet, etc, etc.

2. It is not OK to distribute unreviewed code from NEW

3. It is not OK to distribute code from unstable or experimental without
   a copyright review

4. It is not OK to distribute code from stable or testing without a
   copyright review

It seems to me that #4 is the strongest argument we can make.  #1 and #2
seem to me practically the same, and even #3 is along those lines.  I
think #1 and #2 are logically inconsistent, in fact.  Perhaps #1 is
inconsistent with all the rest, in fact.

Now to return to your point: I think it is certain that there are even
more un-surfaced issues present on salsa, and yet we have had, AFAIK,
zero issues there.

Is there any fundamental reason that we focus on NEW with such rigidity
other than simply because we always have?

John



Salsa CI introducing world-writable permissions

2022-02-06 Thread John Goerzen
Hi folks,

I thought I ought to alert people about this, since I haven't seen it
documented anywhere.  Salsa CI is effectively doing a chmod -R a+w . on
trees in checks out, and in some circumstances these permissions can
flow into generated data (.debs, Docker images, etc.)

I recommend adding a chmod -R go-w . to all pipelines right now.  The
standard Debian pipelines at https://salsa.debian.org/salsa-ci-team/pipeline/
don't seem to be doing that, unfortunately.  Hopefully most of the
standard tooling forces permissions on install steps, but I would
imagine not all of it does.

I submitted an issue at
https://salsa.debian.org/salsa/support/-/issues/284 and I'm including it
below in case it's helpful.

Hello,

I have several Salsa CI pipelines building Debian Docker images.

On one of them, I noticed systemd warning about world-writable permissions on a 
file that had been copied into /etc/systemd/system.  Weird.  It didn't do that 
when I used the image I built locally.

Upon investigating the situation, I found that salsa was effectively running

chmod -R go+w .

on the checkout.

This introduced security vulnerabilities because in Docker, COPY transferrs 
those permissions to the generated image.  Various deb-building approaches 
could do this also.

Here's how I pinned this down to Salsa.

In the relevant repo, I could type:

```
$ git ls-tree 91df28f0cc4b0d58cfda57fc1cc5c350bdbaf76d -- service/
100644 blob ec429c0bbdb50da81ba0fbef5fc516fc5dc5791f
service/nncp-caller.service
100644 blob af287bb8255a1fbb774777d56b17b32178dd712e
service/nncp-daemon.service
100644 blob 13201ad7b83ba30cd0370060aede9bd9f5f5893d
service/nncp-toss.service
```

There - mode 0644.

I added a `ls -lR` step to the job, so you can see what it looks like at the 
start of my job in Salsa here: 
https://salsa.debian.org/jgoerzen/docker-nncp/-/jobs/2439096

```
drwxrwxrwx2 root root  4096 Feb  6 06:50 service
...
./service:
total 12
-rw-rw-rw-1 root root   165 Feb  6 06:50 nncp-caller.service
-rw-rw-rw-1 root root   165 Feb  6 06:50 nncp-daemon.service
-rw-rw-rw-1 root root   179 Feb  6 06:50 nncp-toss.service
```

It does not appear to be a umask issue; the umask was 0022 as it should be.

I added a:

chmod -R og-w .

to the job which seems to have fixed this issue, but I'm not sure if that is 
really a permanent fix or why this was happening.

Thanks!



Re: Legal advice regarding the NEW queue

2022-02-02 Thread John Goerzen


On Tue, Feb 01 2022, Russ Allbery wrote:

> I would hate to entirely lose the quality review that we get via NEW, but
> I wonder if we could regain many those benefits by setting up some sort of
> peer review system for new packages that is less formal and less
> bottlenecked on a single team than the current NEW processing setup.

This is a fantastic idea.

In fact, it wouldn't have to bottleneck packages at all.  I mean, if a
quality issue is found in NEW, wouldn't the same be an RC bug preventing
a transition to testing?

- John



Bug#1004367: ITP: golang-inet-netstack -- Pure Go network stack

2022-01-25 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-inet-netstack
  Version : 0.0~git20211120.8aa80cf2-1
  Upstream Author : inet.af
* URL : https://github.com/inetaf/netstack
* License : Apache-2.0
  Programming Lang: Go
  Description : A pure Go network stack

 This is a "fork" of gvisor, extracting out just the "netstack" networking
 bits, which previously were self-contained at
 https://github.com/google/netstack.  Why?  Because gVisor's go.mod is 
 gigantic and causes problems to people trying to use it as a library.

Required by newer NNCP versions



Bug#1004028: ITP: golang-github-kardianos-minwinsvc -- Stub for portability to Windows

2022-01-19 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-github-kardianos-minwinsvc
  Version : 1.0.0-1
  Upstream Author : Daniel Theophanes
* URL : https://github.com/kardianos/minwinsvc
* License : BSD-3
  Programming Lang: Go
  Description : Stub for portability to Windows

 Minimal windows service stub
 .
 Programs designed to run from most *nix style operating systems can
 import this package to enable running programs as services without
 modifying them.  On Debian platforms, it is simply a no-op, but is
 a dependency of certain cross-platform Go code.



Bug#1004025: ITP: golang-github-arceliar-ironwood -- Routing library with public keys as addresses

2022-01-19 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-github-arceliar-ironwood
  Version : 0.0~git20210619.6ad55ca-1
  Upstream Author : Arceliar
* URL : https://github.com/Arceliar/ironwood
* License : MPL-2.0
  Programming Lang: Go
  Description : 
 Ironwood is a routing library with a net.PacketConn-compatible interface
 using ed25519.PublicKeys as addresses. Basically, you use it when you
 want to communicate with some other nodes in a network, but you can't
 guarantee that you can directly connect to every node in that network.
 It was written to test improvements to / replace the routing logic in
 Yggdrasil (https://github.com/yggdrasil-network/yggdrasil-go), but it may
 be useful for other network applications.

Required by Yggdrasil, which is required by NNCP



Bug#1004021: ITP: wireguard-go -- Implementation of WireGuard in Go

2022-01-19 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: wireguard-go
  Version : 0.0.20220117-1
  Upstream Author : Jason A. Donenfeld 
* URL : https://git.zx2c4.com/wireguard-go/about/
* License : MIT
  Programming Lang: Go
  Description : Implementation of WireGuard in Go
 This is a userspace implementation of WireGuard in Go.
 .
 It also provides a library that is used by other programs
 for working with the kernel tun interface and related tasks.

This is a dependency of Yggdrasil, which uses it for its tun
support.  NNCP also requires Yggdrasil now.



Bug#1004020: ITP: golang-golang.zx2c4-go118-netip -- netip from Go 1.18 for use in Go 1.17

2022-01-19 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-golang.zx2c4-go118-netip
  Version : 0.0~git2021.a4a02ee-1
  Upstream Author : The Go Authors
* URL : TODO
* License : BSD 3-clause
  Programming Lang: Go
  Description : An extraction of netip from Go 1.18 for use in Go 1.17

Required by wireguard-go



Bug#1003988: ITP: golang-github-arceliar-phony -- A ponylang-inspired actor model library for Go

2022-01-18 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-github-arceliar-phony
  Version : 0.0~git20210209.dde1a8d-1
  Upstream Author : Arceliar
* URL : https://github.com/Arceliar/phony
* License : MPL-2.0
  Programming Lang: Go
  Description : A ponylang-inspired actor model library for Go

 Phony is a Pony-inspired proof-of-concept
 implementation of shared-memory actor-model concurrency in the Go
 programming language. Actors automatically manage goroutines and use
 asynchronous causal messaging (with backpressure) for communcation. This
 makes it easy to write programs that are free from deadlocks, goroutine
 leaks, and many of the for loops over select statements that show up in
 boilerplate code. The down side is that the code needs to be written in
 an asynchronous style, which is not idiomatic to Go, so it can take some
 getting used to.



Bug#1003985: ITP: yggdrasil-go -- foo

2022-01-18 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 
X-Debbugs-Cc: debian-devel@lists.debian.org

Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: yggdrasil-go
  Version : 0.4.2-1
  Upstream Author : Yggdrasil Network
* URL : https://github.com/yggdrasil-network/yggdrasil-go
* License : LGPL
  Programming Lang: Go
  Description : Scalable, distributed, encrypted IPv6 overlay network

 Yggdrasil is a fully end-to-end encrypted
 IPv6 network. It is lightweight, self-arranging, supported on multiple
 platforms and allows pretty much any IPv6-capable application to
 communicate securely with other Yggdrasil nodes. Yggdrasil does not
 require you to have IPv6 Internet connectivity - it also works over IPv4.



Bug#993695: ITP: golang-lukechampine-blake3 -- A pure-Go implementation of the BLAKE3 cryptographic hash function

2021-09-04 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-lukechampine-blake3
  Version : 1.1.5-1
  Upstream Author : Luke Champine
* URL : https://github.com/lukechampine/blake3
* License : Expat
  Programming Lang: Go
  Description : Pure-Go implementation of BLAKE3 cryptographic hash

 blake3 implements the BLAKE3 cryptographic hash function
 (https://github.com/BLAKE3-team/BLAKE3).  This implementation aims to
 be performant without sacrificing (too much) readability, in the hopes
 of eventually landing in x/crypto.
 .
 In addition to the pure-Go implementation, this package
 also contains AVX-512 and AVX2 routines (generated by avo
 (https://github.com/mmcloughlin/avo)) that greatly increase performance
 for large inputs and outputs.

Required for packaging NNCP



Bug#993672: ITP: hjson-go -- Hjson for Go

2021-09-04 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: hjson-go
  Version : 3.1.0-1
  Upstream Author : Hjson
* URL : https://github.com/hjson/hjson-go
* License : Expat
  Programming Lang: Go
  Description : Hjson for Go

 This package includes the hjson-cli command-line tool as well
 as the Go library for working with HJSON.  HJSON is a derivative
 of JSON designed to be more easily editable by humans.


This package is needed for the packaging of NNCP.



Bug#993666: ITP: golang-github-davecgh-go-xdr -- Implements the XDR standard as specified in RFC 4506 in pure Go (Golang)

2021-09-04 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: golang-github-davecgh-go-xdr
  Version : 0.0~git20161123.e6a2ba0-1
  Upstream Author : Dave Collins
* URL : https://github.com/davecgh/go-xdr
* License : ISC
  Programming Lang: Go
  Description : Implements the XDR standard as specified in RFC 4506 in 
pure Go (Golang)

 go-xdr Build Status (https://travis-ci.org/davecgh/go-xdr) Coverage Status
 (https://coveralls.io/r/davecgh/go-xdr?branch=master)
 .
 Go-xdr implements the data representation portion of the External Data
 Representation (XDR) standard protocol as specified in RFC 4506 (obsoletes
 RFC 1832 and RFC 1014) in Pure Go (Golang).  A comprehensive suite of
 tests are provided to ensure proper functionality.  It is licensed under
 the liberal ISC license, so it may be used in open source or commercial
 projects.
 .
 NOTE: Version 1 of this package is still available via the
 github.com/davecgh/go-xdr/xdr import path to avoid breaking existing
 clients.  However, it is highly recommended that all old clients
 upgrade to version 2 and all new clients use version 2.  In addition
 to some speed optimizations, version 2 has been been updated to
 work with standard the io.Reader and io.Writer interfaces instead of
 raw byte slices.  This allows it to be much more flexible and work
 directly with files, network connections, etc.  Documentation GoDoc
 (http://godoc.org/github.com/davecgh/go-xdr/xdr2)
 .
 Full go doc style documentation for the project can be viewed online
 without installing this package by using the excellent GoDoc site here:
 http://godoc.org/github.com/davecgh/go-xdr/xdr2
 .
 You can also view the documentation locally once the package is installed
 with the godoc tool by running godoc -http=":6060" and pointing your
 browser to http://localhost:6060/pkg/github.com/davecgh/go-xdr/xdr2/
 Installation bash $ go get github.com/davecgh/go-xdr/xdr2
 .

Required for packaging NNCP



Re: Y2038 - best way forward in Debian?

2020-02-14 Thread John Goerzen
On Tue, Feb 04 2020, Steve McIntyre wrote:

> Arnd scanned the library packages in the Debian archive and identified
> that about one third of our library packages would need rebuilding
> (and tracking) to make a (recursive) transition. We can see two
> different possible routes to follow:
>
>  A Follow a similar path to last time (rename library packages). This
>will allow us to do partial upgrades, but the cost is that a vast
>number of packages will need work to make this happen,
>*potentially* building library packages twice to allow us to
>continue both 32-bit and 64-bit time_t support forwards for a
>while. This effort will be *needed* only for the sake of our 32-bit
>ports, but would affect *everybody*.

The thing that we have to remember is that an operating system is a
platform for running software.  This problem is rather thorny, because:

1) Some software is provided in only binary form and cannot be
recompiled

2) Some software can be recompiled but makes assumptions about the size
of variables, may use int instead of time_t, and other assorted
messiness

3) Some software is going to break now, due to forward-looking time
calculations, and for others, it may be fine (or nearly so) even past
2038 due to timekeeping being only ancillary to its purpose.  For
instance, I have some old games that are binary-only and really don't
care what time it is.

This option #1 sounds like a significant effort (because not only would
we need two versions of libraries, but also of include files).  But it
certainly passes the "correctness" test better than your option #2.

John



Accepted mtree-netbsd 20180822-5 (source) into unstable

2019-12-08 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 08 Dec 2019 09:40:24 -0600
Source: mtree-netbsd
Architecture: source
Version: 20180822-5
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Closes: 945890
Changes:
 mtree-netbsd (20180822-5) unstable; urgency=medium
 .
   * Update build-dep to support libarchive-tools instead of bsdtar.
 Closes: #945890.
   * Update standards-version.
Checksums-Sha1:
 2b2be255de23bb3d3cf43444362fa7a09e9bbbc8 2030 mtree-netbsd_20180822-5.dsc
 6c342dcd0d658323f002cc741b0faa121a3ed670 4644 mtree-netbsd_20180822-5.diff.gz
 e73908eb0ceb4a84f46ba0c833581b4a8aae09a7 6210 
mtree-netbsd_20180822-5_source.buildinfo
Checksums-Sha256:
 c30eb9678f399e589578c09b3fbab4f9b12045637fa842be03341b6b16b2bc6b 2030 
mtree-netbsd_20180822-5.dsc
 4b135974ae8a6801731cd57559b7732d2f6364a12941416ac55279075feb4913 4644 
mtree-netbsd_20180822-5.diff.gz
 0b347ab5c5d149b6efa5af882e10a88f298fb1c414060b2cf5ea96dc778ecb8d 6210 
mtree-netbsd_20180822-5_source.buildinfo
Files:
 a9ce25ea0b2ec1a356cf228966ad761d 2030 utils optional 
mtree-netbsd_20180822-5.dsc
 c7b677af7f319150aca276e4f16c9e6c 4644 utils optional 
mtree-netbsd_20180822-5.diff.gz
 071b991b1d058a7d0190d6cbc4b31777 6210 utils optional 
mtree-netbsd_20180822-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl3tHG0ACgkQ3Sn4hEKD
ntNq5w/9Hmj6YoUFiJApOkG2vPU0uBIn3AfD+OFKqtSgXCoEuL4MHGxW/3wuPS+g
Tp6SwKQ+ORoYkoC/4HI5ksk6lhvz101XSfBazjSCpV4xz639j7GiKzrrk2+kUKWg
02CH3sbxbNwvZr88rghf3dpA0DRCkyfJmufHxWoLBaHJFzpUqiBUYOmkcFsCtbp1
unDIlp7A0sXBpskUkuXHK7S8nDv5naiyZD+aViqzuYmvPqdIBXoM5+x0mPDYTew9
H9OWVI1pzwNYQkTLsNAgGdrludWBNDxrA7t9GoTZSHAwlOEyWeMzdHieZ1ht3vbS
MAbni0m7KzFNyXNYSMsxWnQSFXJaEEHmZ3nID49Isg0NMz38YerTcXzmd+RtYXT3
ogwEJC/AMzEjN8s6oQLiH/WIuCqeEaPTVkJqSYQBbsONwPYp4OL6jUKvbwVMg2KN
TlroNaMbnErrFdVTsC9aHbzMQAucQe6yqfpPxeYcsPlCyQOlt39wmMDKSmRem0V2
2UrliF0TswjnNZkTutB2H9ews7kNcva9+PFloqgwLgxSmJkHuYhpG09EN77NKIsk
CxCVgcC9IK89ZMfrYv9BbfGi5UtbsrKBroQlf9JXXvR3ComGJLypW57Z6DRXpWdH
pbZyYcud9g4+vS1A4AmRyb/CB4yqueGrvV45psk4qjoXMu2Xqiw=
=gqpI
-END PGP SIGNATURE-



Accepted glulxe 0.5.4-1 (source amd64) into unstable, unstable

2019-11-11 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 12 Oct 2019 16:25:43 -0500
Source: glulxe
Binary: glulxe glulxe-dbgsym
Architecture: source amd64
Version: 0.5.4-1
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 glulxe - Interpreter for glulx interactive fiction
Closes: 942239
Changes:
 glulxe (0.5.4-1) unstable; urgency=low
 .
   * Initial release (Closes: #942239)
Checksums-Sha1:
 fb4b2ed6a393a4c11c9ddd378883f8b1ff0d0309 1814 glulxe_0.5.4-1.dsc
 8ad0b15dc237bd6794f39cca661fef1e1a5e25dc 93822 glulxe_0.5.4.orig.tar.gz
 b6c32176b2ed37dc23c710d561aba945c06f9073 3240 glulxe_0.5.4-1.diff.gz
 a0c5e7018cb0fc67ea7712522dabd657ac469515 38644 glulxe-dbgsym_0.5.4-1_amd64.deb
 9c00bb4d6047b49a7a121aecb9b228b374f88f2c 6004 glulxe_0.5.4-1_amd64.buildinfo
 ccbd9f792ca4e83c0728c7177aad0a69f0869c91 91212 glulxe_0.5.4-1_amd64.deb
Checksums-Sha256:
 2bc8bcfed9b6b378167fba0752052144054fc0596fafcf2764a9ec11c6b3e094 1814 
glulxe_0.5.4-1.dsc
 1fc26f8aa31c880dbc7c396ede196c5d2cdff9bdefc6b192f320a96c5ef3376e 93822 
glulxe_0.5.4.orig.tar.gz
 80b96220aea26ef352d617abae189eb069b24f3f5f4be79a4d382bbe74efd806 3240 
glulxe_0.5.4-1.diff.gz
 c9ea7b95d82e676510c9258be1b2d844259af08dca5f0d0eb541b228aab58d3e 38644 
glulxe-dbgsym_0.5.4-1_amd64.deb
 6dc1456bf567000d3d810c0af9873014d38c72529bc404ba600b7b049ca0368c 6004 
glulxe_0.5.4-1_amd64.buildinfo
 80e8c567244c1bb8800674e3a527954020d591a96ca10f20543c7c852ec5991f 91212 
glulxe_0.5.4-1_amd64.deb
Files:
 c046b2eb4f4a4cadafd53193c6f37aec 1814 games optional glulxe_0.5.4-1.dsc
 ce96007d8d585c4f50cca76cf0d57cb9 93822 games optional glulxe_0.5.4.orig.tar.gz
 e7804f04613702388bcb25ca8a817385 3240 games optional glulxe_0.5.4-1.diff.gz
 bb332c2c217bbc42ed407662fe877b5c 38644 debug optional 
glulxe-dbgsym_0.5.4-1_amd64.deb
 3975818663c1127fbd887c1def8337f1 6004 games optional 
glulxe_0.5.4-1_amd64.buildinfo
 38d84ae91b4e5ed28bf9d406857e8d98 91212 games optional glulxe_0.5.4-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl2iTn8ACgkQ3Sn4hEKD
ntN7pA/+OkYn3ywCyJYJ/BAWnN7pk8/ljER5bhbaHnyFewISvj+vEFS+ruFxLoY5
rS/7vFNPlEna7YVQ2i+BLpvBif7i/LJrkSc5tMsNy8C6f5Vd97u7sZHdeJOtgCKV
NSWJRLrk3Rz9RQfJHgnHGJMF3EGYm1CU8zpO3OMZuBgN2EBRCSWHIyWiUkSAoqnI
nP6Dn9uAM6AlRAl6I8Ez3CVxoqvveVLH36h3URrdVAwnSuHsUxSQ+5rOmJ04yiuo
zYdyyO5qus99G4MuH31iU3ijkdTTJBY/qSVDxU/pIKqXKkDy3PBFxur5scKRk5pm
0yYTH5WMyXajch5RdGD3EzmfUNPxc+FkDsIIOnQbJtGiBCxQ684E/V0HYGQpN5BE
c9ieSRyPXS5XoPLdVomn2r0Mup9BDhggiRm2k3xcpHQqkxC/fZNZGfgZakPtLQLt
/e0nQBuyIB2L3Ve6dtlnMQHLxnMEWZzkJJ2/97wUnZwEWjCxtLjyn/wNVM1xy0Cn
z8+tXiXE9chg2Jv74G+3Aqfeqbnn7EBE7EZJkMPnmWtDQ1wz7m24AYpBdZvR5yu5
gg1g+8hTxpcSS4vPXSFdOZ78tZi8eyITE2wk6o/D92+s+5RluqH0upy+hcxqajob
BCCLwWpHYdWwaM5JDSqkU4PhJlVDPluq/dIpv8XWNVpnw6ej670=
=rIr6
-END PGP SIGNATURE-



Re: Integration with systemd

2019-10-31 Thread John Goerzen


On Thu, Oct 31 2019, Theodore Y. Ts'o wrote:
> It may be that sysvinit is doomed.  But we shouldn't be accelerating
> the process.

You are quite right.  I have also found myself wondering, though, what
are the BSDs doing?  Clearly systemd isn't going to be workable for
them.  Is their approach something that would be at all useful here?



Re: Init systems and docker

2019-10-28 Thread John Goerzen


On Fri, Oct 11 2019, Scott Kitterman wrote:

> I have been told by docker users (I'm not one) that systemd as provided on
> Debian can't be used in docker.  I have no idea if that's true or not.  I try
> really hard to know as little about init systems as possible and trust our
> maintainers who work on such things.

That is a popular misconception.  Actually it is easier to make systemd
work well under Docker than sysvinit, and it doesn't require
--privileged.  I have a whole series of Debian Docker images that work
that way; see

https://github.com/jgoerzen/docker-debian-base

systemd nowadays even has explicit code to help with this.

I made sysvint work in the stretch and jessie days, but it was a real
pain and not at all friendly.  Have a look at my debian-base-minimal
code for how to make it work.

- John



Re: Debian and our frenemies of containers and userland repos

2019-10-28 Thread John Goerzen


On Mon, Oct 21 2019, Enrico Weigelt wrote:

> On 05.10.19 03:31, Paul Wise wrote:
>> On Fri, Oct 4, 2019 at 10:49 PM Enrico Weigelt wrote:
>>> On 24.07.19 08:17, Marc Haber wrote:
>>>
 Do we have a build technology that uses containers instead of chroots
 yet?
>>>
>>> Something like docker-buildpackage ?
>> 
>> AFAICT, docker-buildpackage doesn't exist 
>
> I'm pretty sure it does exist, since I wrote it :p
>
> https://github.com/metux/docker-buildpackage

I should also mention https://packages.debian.org/buster/debocker -
though I haven't used it.

John

>
>
> --mtx



Bug#942689: ITP: nncp -- Node to Node Copy for secure store-and-forward online and offline file and mail exchange

2019-10-19 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: nncp
  Version : 4.1
  Upstream Author : Sergey Matveev 
* URL : http://www.nncpgo.org/
* License : GPL
  Programming Lang: Go
  Description : Node to Node Copy for secure store-and-forward online and 
offline file and mail exchange

NNCP is a package facilitating secure store-and-forward file and mail
exchange.  It can be thought of as a modern UUCP with Internet smarts.

NNCP supports direct online communication over a LAN or Internet,
scheduled communication, offline copies, streaming communication
(pipes), and more.  It can therefore be used for air-gapped computers
that might be communicated with by CD-ROM, tape, or USB stick.  It can
also be used for intermittent or on-demand links, very slow or high
latency links, etc.

Like UUCP, NNCP supports routing messages via intermediate systems.
With NNCP, however, all packets are end-to-end encrypted and
authenticated, making this more proper onion routing -- the
intermediate systems have no visibility to the content of the data
being passed.  NNCP also has robust tools for interrupted transfer
resumption, handling of very large files, and verifying integrity of
data copied off.



Bug#942240: ITP: glktermw -- Curses-based interface library for interactive fiction programs

2019-10-12 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: glktermw
  Version : 1.0.4
  Upstream Author : Andrew Plotkin 
* URL : https://www.eblong.com/zarf/glk/index.html
* License : Custom permissive (DFSG-free)
  Programming Lang: C
  Description : Curses-based interface library for interactive fiction 
programs

Glk is a device-independent interface specification intended primarily for
interactive fiction implementations.  This library provides an ncurses-based glk
interface and includes Unicode support.  It is used by packages such as glulxe.



Bug#942239: ITP: glulxe -- Interpreter for glulx interactive fiction

2019-10-12 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: glulxe
  Version : 0.5.4
  Upstream Author : Andrew Plotkin 
* URL : https://eblong.com/zarf/glulx/
* License : MIT
  Programming Lang: C
  Description : Interpreter for glulx interactive fiction

glulxe is the authoritative interpreter for the Glulx interactive fiction
VM, which is a 32-bit update of the older Z-Machine standard.

This program can play games ending with .ulx, .gblorb, .glb, .blorb, and .blb.
glulxe can work with only a terminal; the optional graphics in some Glulx games
can be shown by using the package gargoyle-free instead.



Accepted gopher 3.0.17.3 (source) into unstable

2019-10-11 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 11 Oct 2019 11:09:18 -0500
Source: gopher
Architecture: source
Version: 3.0.17.3
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Closes: 942181
Changes:
 gopher (3.0.17.3) unstable; urgency=medium
 .
   * Remove empty directories.  Closes: #942181.
Checksums-Sha1:
 ebef597edb1f2a251ec0cff8f0fae3003b6042ad 1419 gopher_3.0.17.3.dsc
 c7cdb40dfc490d21f58c152557dccd3615dd5e3b 317859 gopher_3.0.17.3.tar.gz
 85bda88250797e54b8b98b6369c8d34935393c1f 6425 gopher_3.0.17.3_amd64.buildinfo
Checksums-Sha256:
 53813b2316e768780621a1eb201b9cca677d1fde6e5a475c0fca36a216228ccd 1419 
gopher_3.0.17.3.dsc
 584b4ffeaa5221bab94bc4934b644f64df35c955e7720f3cfff648072eb0370b 317859 
gopher_3.0.17.3.tar.gz
 b6fa7d3d933fd7025ed75f185bf2dd33e93675da02dca8a61b175fe8e723b35e 6425 
gopher_3.0.17.3_amd64.buildinfo
Files:
 1b9bde9bfc6f8a85c6517bf4cd65791c 1419 net optional gopher_3.0.17.3.dsc
 f32b46c54debc505967f961f7e7b0ed4 317859 net optional gopher_3.0.17.3.tar.gz
 cb5d90ebff61d27835cf48d96a90c365 6425 net optional 
gopher_3.0.17.3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl2gqaEACgkQ3Sn4hEKD
ntNiQw/+NHP8l7YyyU1MzyEyN8MWhajhlAENcUDkfj0pfBn62pF15lNMz63+Dwqx
u1qbZoWIjEZTcHnrYum6dY593iCHxwUP+LQk5MqTtCz5ZiNMhsT2Jzpr8eZTiv5t
VMMesgr2LXjoyFi3/aLA3JTlI61dwU/mrADqN/Pisv/mGNCo0O63F8NyHc/6ybvz
tL1XLYKikZVJCf2Qt5k5KCdSK2MiPUySrHuSR3ATNy+88LaArgQou42JtAekuntH
LtNhFHyqz2cfaoj7jFuTgCfwKpxC4C/Ho1R3pENm7o0P6vEyUXoBxlrfWaYKfk5T
eyne2I7ZroeFViBd7IUPLRDo5/QsyeKAMPp70EXj34/7U03r2fo96du/tRq7qT/J
gQY2XUrRE/91+fJgfENPt51SqcmI8KQYDMrdytNzU/eYKB5fa0Eux9Z6Ay+VL3b/
A5xjzWgVCHjv1m+oqSu5Oaav2lwFUnFViTE6frMIyDT0sWAkht1uOX9pjxoBpjB+
P2iwP2BECkfLWK9ErTG8//hIhFYMRDivYTyDccZPd3dbgqEZajs1vfiH7cIPkwT1
Til0eihb78zZ79+p7zZ/BWHPmJw424GYkSoElA8f6/Kx7HZzI5cxj+arHek40y58
X3SMLt57ulNbK+tYNNs0LnslccIh3XAUfydlO5x7+pKHvr0XtQU=
=m+dS
-END PGP SIGNATURE-



Accepted gopher 3.0.17.1 (source amd64) into unstable

2019-10-03 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 04 Oct 2019 00:24:19 -0500
Source: gopher
Binary: gopher gopher-dbgsym
Architecture: source amd64
Version: 3.0.17.1
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Changes:
 gopher (3.0.17.1) unstable; urgency=medium
 .
   * Correct a mistake in debian/changelog
Checksums-Sha1:
 5a7b7d67c57671370fbffb09ac79c4c75bed279f 1419 gopher_3.0.17.1.dsc
 c67f1c07cd1e8c21ef39fad8d78c4c438b524645 317765 gopher_3.0.17.1.tar.gz
 956c0fbd68c3189e2301b1c880f2caebd1f19819 234016 
gopher-dbgsym_3.0.17.1_amd64.deb
 0cea07f83173fc946e5c744d8df0aec60abfe721 6278 gopher_3.0.17.1_amd64.buildinfo
 689bff2ef075fbbc75005915c8c71bd0bfd6a06b 108588 gopher_3.0.17.1_amd64.deb
Checksums-Sha256:
 8bdd4d53eadf4e0d997337ce3e2d88d1ca79554420ccff9aa5114c79445d1e16 1419 
gopher_3.0.17.1.dsc
 0626447782accf7b9b655779b8cca39ce07ed5d6ce33304b89129e3bf977d155 317765 
gopher_3.0.17.1.tar.gz
 f8ce9fdf308723a0ce27798b8a4c301a37f0d313d757818250ad895ffe021b75 234016 
gopher-dbgsym_3.0.17.1_amd64.deb
 21ff09c01811fc0f1ddd8cf4f5092e05961820ee63530115893dffedebfa68e0 6278 
gopher_3.0.17.1_amd64.buildinfo
 aa5ec151d1dce7a60697c475dda4fcc6ceaffbe6a47f4f66d2a972cb3db06cc3 108588 
gopher_3.0.17.1_amd64.deb
Files:
 24aca8a41eb3469a12a0c50be9cb8e56 1419 net optional gopher_3.0.17.1.dsc
 284683d09cc6a674579788860f1dd01f 317765 net optional gopher_3.0.17.1.tar.gz
 323f359128b81486c5d639d392e705f4 234016 debug optional 
gopher-dbgsym_3.0.17.1_amd64.deb
 cc53f3b210f0785bfe08a8cfc806fd30 6278 net optional 
gopher_3.0.17.1_amd64.buildinfo
 33ae23f37cb58f147890b98d3500717a 108588 net optional gopher_3.0.17.1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl2W19EACgkQ3Sn4hEKD
ntOuExAAvr9CKPdW7ucBBJnlw8Vjxt6UzsHLGIQnVhaJXH+n3t4lqB1fq33zFeNx
7EAsAFnyEHssB2dn/uyIkPIjn5E0gF12rb5rHpzgRDJgsh8jrkpPNwJjYTt8j99s
p97C3i07FSPnWwPw0mGss4l44RADiFYdjOOuGBaS6of0v5iFyX9QBEetF0OZVzzA
aF6ewNYoLeWunihZNqGHUBtcscfIYJTHLlg8Qz8aGR6g5jy2ZJTGk9PYnPmKeNmf
6JVD20Ipi5uHlMh5X7//HEhv+FWnsw3GYwMNKLn7oLrdkmIlXmuIHbtjMUWAWHQZ
CEj6FOQfGzTqozC7D1QX8ug1MT4OF0f3TL2hMndlb7PsFY5BrQ69QXL7GpgzP7vG
opIXQ/TBw/g/mUhYPbxoklcKBB+uWMiDvCDs5uhzfYXZlAyHGQdzAFC9uH212tMd
3nQXD07zSQ2Q/Nbt4Ao6CfcdKVk4v+rOYELsHT0mAJTZ3PxWoGYcP0oMzFTHYSiC
omRHab7jQgFLMcXfe38voe1FmXKCUbHcddxxYrqkszMQwCH8n8WKKvU1NeMojOBN
IjbbicAcDF24BpVRE8KfQzgL3aK8dVWW6Eo8b5LfQX7f/Y7B2CVJ+FmgDDFnZ6nP
uFT76xa76r/Tq1uVtl/AhIQHV4d6xTVWVZAP1r/n0f/pwPr1P8g=
=QkXL
-END PGP SIGNATURE-



Accepted gopher 3.0.17.2 (source amd64) into unstable

2019-10-03 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 04 Oct 2019 00:27:15 -0500
Source: gopher
Binary: gopher gopher-dbgsym
Architecture: source amd64
Version: 3.0.17.2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Changes:
 gopher (3.0.17.2) unstable; urgency=low
 .
   * Really fix it this time.
Checksums-Sha1:
 d1aa27524124c88f3bb2fe685b51f625549e6f2f 1419 gopher_3.0.17.2.dsc
 6658dd82b36ff2994fb84b7bb52278d7d3ad2a99 317778 gopher_3.0.17.2.tar.gz
 840c5c8299f6287b3295c6854e03a7f293c732de 234004 
gopher-dbgsym_3.0.17.2_amd64.deb
 57dff49385fc9cdf23114675e15735fc56d868f6 6278 gopher_3.0.17.2_amd64.buildinfo
 082dea79d5aa325907f4c3a5f55e7cf3ce4ee530 108544 gopher_3.0.17.2_amd64.deb
Checksums-Sha256:
 86182bdb6abedcbc0c9394748c678a41bc7d31c2f75a60c430b4fb2bb70363b0 1419 
gopher_3.0.17.2.dsc
 0a33621d307029d48ccff938baf957cba426a023c4eb7c84157eab9811265d37 317778 
gopher_3.0.17.2.tar.gz
 8ad7b065321bb18cd1b998bcf047ecde84d093b2b0ae7973b3cbc9a1c49b9aed 234004 
gopher-dbgsym_3.0.17.2_amd64.deb
 c465de9a83b37162c2b9746e2b25d61dd198b0f3b389ab5634ae8be72d3a2d44 6278 
gopher_3.0.17.2_amd64.buildinfo
 2849cf089ce18414784bba85ec7e08eae129a42c1e4866513517a46dccd1fdb4 108544 
gopher_3.0.17.2_amd64.deb
Files:
 f9b2f0841903118359d5938b3b543e4a 1419 net optional gopher_3.0.17.2.dsc
 59cc3673c771fab05254e8fa9b364907 317778 net optional gopher_3.0.17.2.tar.gz
 d1af4106d703824859e641b84de4ce19 234004 debug optional 
gopher-dbgsym_3.0.17.2_amd64.deb
 266d16c8d9681aa276cc837c434dd9dd 6278 net optional 
gopher_3.0.17.2_amd64.buildinfo
 bc1c685dfd5ac600ad54c3899d20d8ea 108544 net optional gopher_3.0.17.2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl2W2H8ACgkQ3Sn4hEKD
ntMEvw//ZDqw5U4TjNVtEF0lX2yJMdbQpQpa7H8aS9lgX/M/iWjlIYnLyVljkWHg
mus/PgItIWzDQcrMQRK3Y2H7LnwZCH6XPmXAIebyyt4rbYlkdIW61Qpzdt5YkkAt
6qwJYuW6qwLXuD64UTtRvJuLit6CE/HQCQv9tKtTHdBErAWEKDJO+9jfFQyWZFc6
dQQgHwtBlp7SlyB2MBEmAWH17aIVpA0eL3bgJTfETlp2xnbLeHwh4cmsLBB/I0Ad
7u+z14O7qn+HHwTES2aREo7uimawMneEKGVVGRUM1AvMpxYYWnU+rRQ4e+LJkji5
epf6BnwKq+5puZjocuvAlmbXv6NL82uxWc4CmFKMc5tHpCXwU84fyl0NnjLOdB2k
SBsMRwMr/BpjdtQPxOpL6WLlKKo6+aqv/DPEkgJYKt/DiQdgkj2/UrMFbaah0IZP
/JOxcbigUuW8N9D4QMH7jkdc+yzGGfTtmocgicAZm1Uc9//Ul83scnzEaa0ZYPa8
garrI6j5E4kif3WmeCOHfP9p9QUVfQuZoC0AojHMnJ0ZOFMkckF8niR6jp9Q2Zra
LrDskcsmclEZWBwXFfaT7CMNx+2FE6RjFi6xpi/fB+0wgBUTIMJGpZjlpAZ6k3lx
0c56DS0So/2wuEiTNY4z6VrY7Ar+qW+gQlAfumrE/MhmgcO8998=
=Pi6h
-END PGP SIGNATURE-



Accepted gopher 3.0.17 (source amd64) into unstable

2019-10-03 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 03 Oct 2019 23:13:11 -0500
Source: gopher
Binary: gopher gopher-dbgsym
Architecture: source amd64
Version: 3.0.17
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Closes: 789892
Changes:
 gopher (3.0.17) unstable; urgency=medium
 .
   * dh_clean -k -> dh_prep (debhelper)
   * Bump standards-version
   * Fix alignment issue in gopher directories.  Closes: #789892.
Checksums-Sha1:
 4021f2e3f7afd3cac0804e48b1f66efafa4fe817 1411 gopher_3.0.17.dsc
 01a0947578acfde9560f13724e5d8506d38f3aa1 317702 gopher_3.0.17.tar.gz
 83beb8d8136e6d500b8c9a2e0b068dba2ef039e1 233996 gopher-dbgsym_3.0.17_amd64.deb
 701d50c8718b1e0e1738d2bc707b606830cb61f3 6258 gopher_3.0.17_amd64.buildinfo
 332102075a31441b0a1b91644d3fd04c8d608c92 108556 gopher_3.0.17_amd64.deb
Checksums-Sha256:
 bf9e5413ce61fa2400c385c383c3e89c80930fa06bf6226f95d9ed34a17506f0 1411 
gopher_3.0.17.dsc
 a3c3d7cc8791385bff0159f75cfaaab8b246041b8d83a5fc85aeba01d9d2419b 317702 
gopher_3.0.17.tar.gz
 3570eee99232792c9bae7a1ebaacedb5c62f42bb31ce45411f7cec6041b40436 233996 
gopher-dbgsym_3.0.17_amd64.deb
 de138f8e849f76aec6318e09ef4c6585ff17b2c2a1f7f15fb8b8c006e31c2df7 6258 
gopher_3.0.17_amd64.buildinfo
 cae417544de80ff7f46c95105b15c86d0882b1812512763a2665b22f1c340252 108556 
gopher_3.0.17_amd64.deb
Files:
 471543eb785e2b03ef92666fa46722c3 1411 net optional gopher_3.0.17.dsc
 d80e0a80b20647d9cc630835b11b35e4 317702 net optional gopher_3.0.17.tar.gz
 93bc41f93b9f3442d783c7c69805237d 233996 debug optional 
gopher-dbgsym_3.0.17_amd64.deb
 50967da67c28813dc413121394e0e34d 6258 net optional 
gopher_3.0.17_amd64.buildinfo
 847eeab7c976288098b619a86062505e 108556 net optional gopher_3.0.17_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAl2WyQsACgkQ3Sn4hEKD
ntMZ/w//RnLTneBdrAAZjXOoxqUfkzQwGdwKBZwgEczIRcSxZ0ocsi9v1j8xilpi
ta96fnRUl1Bof3CGIyJHx72btMxyQNPOjavtsBpsUeu3M7jl7Y373gnWALHZSFWF
TChkl5N3U3A216zL7FbSeMKYt1SV13SPXjw1K1ADhGWfcSGBfjY5CdmIFNblOoqB
MzpOXFjtgWimeKQpnZ9jIWCdIs7YWYwaYq1zwkgG5m9fnI0VKE+EJkToXY0POMjZ
H6k2dUsUa6rVNxBew850k0k97bfV/uAniZ2zpE/Su2AkGLVZsggOfi3vwv3iXNxr
Er8FXiP6QoOWjbRAXGhbix3nwczp2ULTnSnCAexl4lvtt29eLl1K7dfsJ/kyFO3s
pTaCz36TGz8KQ4yTyPU9aYCPmEZ0TtmrPPkpHdBVAXPIRc+rZIn+0V8QYD6YShrN
dfibtH9AoX9hLMnkMWmm3t7ZYDMie8bZDCTEAtKI8wBVMOux1sggx0+9FAr6YI0q
/+/vLJF5zv0TWcRLrQ/4nRVMLvhi7lpz2yA4wLvm/YrGIzeIBf3/PFlz4sfvzCkZ
E9qcLuXlDsk6cHafOQoL/8w8Y56ZGFYwORLgPrihIb8FI3uUOWuoqrtQyJ4GohUq
DYe6T2ojGJmBNUmBGQ59YTZ7g0NIffP35RP7JCPAS6q5LwmtxpQ=
=3G6m
-END PGP SIGNATURE-



Re: Bits from the DPL (August 2019)

2019-09-19 Thread John Goerzen


On Thu, Sep 19 2019, Bálint Réczey wrote:
> I would like to just remind ourselves that in WSL and Docker
> containers systemd is not running as the init system and systemd
> services can't be started easily but init.d scripts can be.

FWIW, with buster, systemd becomes possible in unprivileged docker
containers, and I use it extensively in my debian-base-* images:

https://hub.docker.com/r/jgoerzen/debian-base-standard

- John



Re: Consensus Call: Git Packaging Round 1

2019-08-31 Thread John Goerzen


On Tue, Aug 27 2019, Antonio Terceiro wrote:

> FWIW, nowadays gitlab keeps track of every push, including rebases, to a
> single merge request. It even adds a "compare to previous version",
> where you can see the diff between the latest, maybe rebased, version of
> the branch, and the previous one.
>
> It _used_ to be the case that rebasing and force-pushing to the branch
> referenced by a merge request would make you lose the history, but that
> hasn't been true for a while.

That is a fundamental difference: it requires Gitlab to still be up to
access this history.  As we have seen, both within our project and
outside, services like this don't necessarily live forever (see, for
instance, Google Code and Alioth).

One could, of course, say "yes but bugs.debian.org might not live
forever either!"  True.  But everything that goes through it is
mirrored in public in numerous places already.  That history is, in
effect, safe.

As a conceptual matter, having some of the history of development be in
a git tree, and other history available only on a website, is a pretty
weird setup.

-- John



Re: .deb format: let's use 0.939, zstd, drop bzip2

2019-05-10 Thread John Goerzen


On Fri, May 10 2019, Ian Jackson wrote:

>> On my embedded systems, I don't have ar installed, only tar.
>> I assume, that dpkg speaks ar natively?
>
> dpkg-deb has a built-in decoder for the subset of ar that is used for
> deb(5).  One reason I chose ar rather than tar is that handwriting a
> decoder for ar was much simpler than for tar.

Plus, of course, when discussing tar, there is always the "which tar
format do you mean?" question.

https://manpages.debian.org/stretch/libarchive-dev/tar.5.en.html

I should note that dpkg does have a maximum file size limit that's
rather lower than the ar limit, due to its interpretation of tar
headers.  I believe I filed a bug on this but I'm not able to find it
right now, unfortunately.

John



Re: Bug#927725: Please build with --enable-mmdblookup

2019-04-23 Thread John Goerzen


On Tue, Apr 23 2019, Michael Biebl wrote:

> Am 23.04.19 um 11:12 schrieb Michael Biebl:
>
>> But splitting each tiny module into a separate package adds significant
>> overhead packaging-wise.
>
> (not to forget NEW round trips)

What about an approach like exim4-daemon-light vs. exim4-daemon-heavy?
Maybe have two rsyslogs, one of which has all the deps enabled and the
other doesn't.

John



Accepted mtree-netbsd 20180822-4 (source amd64) into unstable

2018-10-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Oct 2018 08:44:49 -0500
Source: mtree-netbsd
Binary: mtree-netbsd
Architecture: source amd64
Version: 20180822-4
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 mtree-netbsd - Validates directory tree against specification
Changes:
 mtree-netbsd (20180822-4) unstable; urgency=low
 .
   * Coordinate with libnbcompat-dev v5 libraries
Checksums-Sha1:
 d321d3641969c1fefb3be5b1175ad3bb8eeb5e6e 2011 mtree-netbsd_20180822-4.dsc
 8b493f087e592ffe7460d4f9dae0e42f43052faf 4624 mtree-netbsd_20180822-4.diff.gz
 f3cdf0f15d8c17581c8d78f00d865bbb8cbea8d1 58668 
mtree-netbsd-dbgsym_20180822-4_amd64.deb
 e309227236122ff33cd49c77f8a676499dea6762 7379 
mtree-netbsd_20180822-4_amd64.buildinfo
 bee01c4a08fe552aa54cf96ef7b4df6b2e9a60d4 43524 
mtree-netbsd_20180822-4_amd64.deb
Checksums-Sha256:
 6651d1b76f4118d27a84d5f8f78f76ec5585b5294fd8ae4420acba5afa8dc8e2 2011 
mtree-netbsd_20180822-4.dsc
 aad42ccebb7deb83c5b7ea7515b05296b963c8c71beb16e044e99a6f39482cdf 4624 
mtree-netbsd_20180822-4.diff.gz
 4829d8f03447195000c20e74343815e7e48dfbd0305a210324716d2afccc95b9 58668 
mtree-netbsd-dbgsym_20180822-4_amd64.deb
 79b376c37345165af2de7f676df58fc645124f1b008877686f28fb6a36c079d8 7379 
mtree-netbsd_20180822-4_amd64.buildinfo
 99b20c3e7bf08455a6773feb9f8bdd0ebad9c8ddf2753b5ea5845e93252ac43a 43524 
mtree-netbsd_20180822-4_amd64.deb
Files:
 5c9610d52ce9e8ef5a5fbdcd7952894d 2011 utils optional 
mtree-netbsd_20180822-4.dsc
 67674a08280ec031dd0df700322d4d1d 4624 utils optional 
mtree-netbsd_20180822-4.diff.gz
 b80fe863768a3695c37d1a1a11e8cfec 58668 debug extra 
mtree-netbsd-dbgsym_20180822-4_amd64.deb
 8746e2f9af9ff43a8cb166d5dd753d6c 7379 utils optional 
mtree-netbsd_20180822-4_amd64.buildinfo
 bf7947022913fd731d0fe5bad714c176 43524 utils optional 
mtree-netbsd_20180822-4_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu3bLAACgkQ3Sn4hEKD
ntMXnQ//Uhk/PkVD/BC0xk/5UGthRIXox3tly+I8K09ZTKtHjrkGsQ0GnXK5k0ES
QqXDwgMdyrrU6WMrZFJCoGm2KtUVqzhV2L5PTElQnXqOUkmN2wpupjCixd/y3x7p
M9fM51T0P6gxZfYEJJcOfwZNRxIEqAUD1FxoKhEcIcT+aT/GqKkHzKivUtUfC6yD
dX4j6gVDs35p+AJEHFMtjfT3ZOXDQB6tFwdLqlig5yQupn4jevFCXku9CCPit6nr
KpT4xIKMyrc91qq3BMiDTLyAEbQA6HiFAbxcxbbRIpqTcTqj3S6Yg1SZAoZnFmCm
poSit5hNnEOE15hy3V5ql7GmTaklReztfSWq7HIGIV+g0N0vsS9NNky7Q6TLoY7e
EnwnGRyIGlnOzaaSSO2ghtaiuajqDiLigVCMt1+1CLxydA/u4ePjzDj2aO1zCr76
OJaeQQ6HJYeG6MaQHOg6Nc/TCWdFgj601/R7uWcgKdCy7zcCF1Che3kGupKllN7u
+vF3eUYBWzkBIn/R3zuH2BsnG+YqPhzS99hOOb1RrBOblUdqHpWv4kEawKfVk6v8
5/fManjVAXgHOVBvixPQP/rxaylUU7JoeTXd06cpqvfOWwDssKzoWHWlcHw2Jx8Y
TgsavHOvSWRglMy1zVHrazBZo1vfKSAXQOPpSiZGWVy2TxUv1Zk=
=lfM1
-END PGP SIGNATURE-



Accepted libnbcompat 20180822-5 (source amd64) into unstable

2018-10-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Oct 2018 08:49:52 -0500
Source: libnbcompat
Binary: libnbcompat-dev
Architecture: source amd64
Version: 20180822-5
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 libnbcompat-dev - NetBSD pkgsrc compatibility library
Changes:
 libnbcompat (20180822-5) unstable; urgency=low
 .
   * Do not link -lbsd; causes segfault
Checksums-Sha1:
 5ad3f0469c2518298c9e0ca6f23e5f7272d6baeb 1959 libnbcompat_20180822-5.dsc
 15f3d3bd0f2a706f0094ab11c7f6c8714e3f1e69 4934 libnbcompat_20180822-5.diff.gz
 688177b07b5e15000ec77db0004c340bc4dfc9d7 84036 
libnbcompat-dev_20180822-5_amd64.deb
 aa214f70cb70a2e3b0a867bd34ed9b95ac9d481b 6520 
libnbcompat_20180822-5_amd64.buildinfo
Checksums-Sha256:
 37300539ddbf4d7250afa855d0a73aadcbff947037db1447647d5cd16bb88217 1959 
libnbcompat_20180822-5.dsc
 5f5a6acff08f74f7c9251e246e68fb392b9a120f1b30519ef506075d528c3a0c 4934 
libnbcompat_20180822-5.diff.gz
 ae4fa472b38acaa3e8d8d3f37a1da9761e4299091033005ebbb8b0154f18ee38 84036 
libnbcompat-dev_20180822-5_amd64.deb
 a2e1fb0611feef52e1c98f51a72df5981de527b0bc607d8edb5ea03c51e08e06 6520 
libnbcompat_20180822-5_amd64.buildinfo
Files:
 571f04b3a83af3524ae73754a16ca940 1959 libs optional libnbcompat_20180822-5.dsc
 9c6ab4a7f0846ccb386e95e7c534dc1c 4934 libs optional 
libnbcompat_20180822-5.diff.gz
 8a0eb2cc9e320ef05bbd046a375d8beb 84036 libdevel optional 
libnbcompat-dev_20180822-5_amd64.deb
 e39925ff65bc4f85e24158dcaf888d69 6520 libs optional 
libnbcompat_20180822-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu3bCsACgkQ3Sn4hEKD
ntMJCxAAhB7bsjC4/vKWi2Y4wcD/woJaOzeH0sC7OUYBMYE1DqUk//IR/At4wiS5
TdbiQBL4OqZhB7QlOykg9FrOhIC0LORap9qcgp153rUkSN4WfKbpGgTWLogOx7Vq
yNGT4uQPSep+YXhrY8+/64Qdplb6gR6YdwsgqPVWUkaq1URV7r1Np2EbZt+Kk6zY
raKcTeeP4vLVe7mmp+ZLEov2ibT2IkbO2sWPOrYXjX52qInDTMCop/EF3TCVHjcf
lr0xHyFtrjZHfR+XDYLSQZDfQEdC/BG9MoKhRbkRUtRE9Ym8jilYdxquUTX/+cfD
rWgYBY+aB+Qv/BZtaAJ8eENFpSbu5BgLWm3KZ4ukHy4Q64wQnZ15JdI8GQd5N3aJ
N9KwurnSYfmifUC3W4zYmVGsFF2YMeWmtAQwUVwax/n2oNzs6T7zeTCaC0CS/yEb
VvQJC9mcCUakZvijBy39RoVnQNSNqjrwR8SWNjX2spFeZjNifnyD64ojl/Lb5v0j
lZQ1S2TFigag/YEhLt+/vgSbvZ781x5a4dnw9hyu3ltWdvH83u5wK3lGRKT/7uTx
V6WtdfB0UXRDt7FkqqrrjUzYWmF5JMhrEgirIeIeuVuvDMofAkBSgDGWrQvRqtV7
bLu9e5yTRd3xikGON8Rat90RGmZk8LXU3i7xmGEqJrmIH9497iA=
=05Sd
-END PGP SIGNATURE-



Accepted libnbcompat 20180822-4 (source amd64) into unstable

2018-10-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Oct 2018 08:10:56 -0500
Source: libnbcompat
Binary: libnbcompat-dev
Architecture: source amd64
Version: 20180822-4
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 libnbcompat-dev - NetBSD pkgsrc compatibility library
Changes:
 libnbcompat (20180822-4) unstable; urgency=low
 .
   * More build-deps, to reduce size of this package.
Checksums-Sha1:
 eb176b0524c4909361bab2355397c75f2e269778 1959 libnbcompat_20180822-4.dsc
 0499cf4231783b7fc5b93783d34a8678e1fa7b25 4903 libnbcompat_20180822-4.diff.gz
 292fb0d1ccf66b126a596aa48488c64aa25c432f 80160 
libnbcompat-dev_20180822-4_amd64.deb
 f51fba66fab66e5b487476406758f985f6aac990 6520 
libnbcompat_20180822-4_amd64.buildinfo
Checksums-Sha256:
 d76699ed9708933e8bcaf8b70e7c366bf1f4fe687707c36735d95f037ce838bf 1959 
libnbcompat_20180822-4.dsc
 cbbe32d597422759f29a5537cc6eaf5d4287c9c22f198eeb41b7a06406052df8 4903 
libnbcompat_20180822-4.diff.gz
 8736aeb0163595a6151b8aed824f95be6cc1c5d7573cb5796acae17e131824c6 80160 
libnbcompat-dev_20180822-4_amd64.deb
 ae28c660f71b73b4ca17d8bbe5119cf0e9e5a12f6f2b50eb16d309e06f182b77 6520 
libnbcompat_20180822-4_amd64.buildinfo
Files:
 8f68ec6865f3dcdcac8bbb9aee595008 1959 libs optional libnbcompat_20180822-4.dsc
 fbc0b5a11480d19150497c922bd083d6 4903 libs optional 
libnbcompat_20180822-4.diff.gz
 fd17a0b179e0c5e702583f21a1c4e06c 80160 libdevel optional 
libnbcompat-dev_20180822-4_amd64.deb
 1cc0205db5bd86005ff54feea9501b0d 6520 libs optional 
libnbcompat_20180822-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu3aioACgkQ3Sn4hEKD
ntMtiQ//eUy/XLL2r+h7+vYPke80o/klQBDTP5wMd6+L0K0jIbeBmmLxRd9sEZsG
RnJN1NcIrHkKM1oD3lmSjDOwzvM34SnPs2CamHgogGM37abhFdJWpJoz3hA0dwuY
0DfAJXC6gUs5fL0iFBKhThosAti+ZyUaScdNdCo5b3wXuQnAxgPg+bHgGRLdsptN
TU62F6/drszg1KDH8IieSnzlILXfyOy0x2jwREzcboibRl56oJ12x4xQyaoJPdi2
RSRnVJps2ope3x5llEj9hgY/JmWeRs8aJaM66ZDIxji7lDYNKvVPaGnx///1sI9o
H4MdbD1zkcZknkcX05BWeVSawoz0qWNWnc1FzL3/yPAHcdH0xwvkqeCp9NgJda0x
d7LIw3KczyePJIBHkA6gPM9vkjZ0/WJm4I7ZJsjwXc8/xQw3A/Yo6jlmwUkbxoAX
AMq4EIDojdmmImYN3EP8hk/qEAkVn1/o0Fncj6bB8NYgJdkPJoCw9K4J+2sRMvFV
TbaWHGxmEM/8oPrFuwm4h5+BYIbRL40W113nOVJQgfJCxcVN0GZEOjVoJ4skQ9lW
uWct0FI+a/271WjSSJkfRaEUgzhpi0uC56ulvUJC3QRUVQC9T4zJsS9pZaaqEzDN
+M7xGScV8qil67Z6i3XyhLcuOaqmh9bS/gmJKBs9UOzdTdZlXFk=
=JmZH
-END PGP SIGNATURE-



Accepted mtree-netbsd 20180822-3 (source amd64) into unstable

2018-10-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Oct 2018 07:50:43 -0500
Source: mtree-netbsd
Binary: mtree-netbsd
Architecture: source amd64
Version: 20180822-3
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 mtree-netbsd - Validates directory tree against specification
Closes: 910332
Changes:
 mtree-netbsd (20180822-3) unstable; urgency=low
 .
   * Harmonize build-dep with libnbcompat
   * Correct debian/copyright.  Closes: #910332.
Checksums-Sha1:
 7fac4006866026148fcd68eff477cebc41a99470 2000 mtree-netbsd_20180822-3.dsc
 29568e91353b1e85a1f3399b428d520fa8d48c5b 4601 mtree-netbsd_20180822-3.diff.gz
 55b0927e2427ff244f9068c4724391c4809a3726 59436 
mtree-netbsd-dbgsym_20180822-3_amd64.deb
 01d228c9252c66e10bfaf1ceda36fb33679fa792 7355 
mtree-netbsd_20180822-3_amd64.buildinfo
 b4c6f2f72eedbea9c559301b53a7506f00ecc066 51838 
mtree-netbsd_20180822-3_amd64.deb
Checksums-Sha256:
 eec7250f104d4d21338e0b256be2d82264e4611b21522a8ab1a19f425090e2af 2000 
mtree-netbsd_20180822-3.dsc
 f19a02f3923a923549d402d93245da02aad486bf89570707146cdfc446b8e577 4601 
mtree-netbsd_20180822-3.diff.gz
 097fee5fe28cc0780ab0b0fe9212d9c2d339241c7ec5758d3f23a75f36211416 59436 
mtree-netbsd-dbgsym_20180822-3_amd64.deb
 018a16cc8fbf8e2b10241b10a756b510f3da9231eca8742d005e31efc4e10d56 7355 
mtree-netbsd_20180822-3_amd64.buildinfo
 b3c91a344c2c02cf145e74d00e10e56f9cb308c7e7c1d759ce38a81942a748a8 51838 
mtree-netbsd_20180822-3_amd64.deb
Files:
 6f3971bb721548c69a79f6a0dd956d2b 2000 utils optional 
mtree-netbsd_20180822-3.dsc
 4539697d04780d85f57fea0c2d7ceedb 4601 utils optional 
mtree-netbsd_20180822-3.diff.gz
 374322a8c460d341d3ba25b92acbbe22 59436 debug extra 
mtree-netbsd-dbgsym_20180822-3_amd64.deb
 06543d92262063de7d8fb3cd41a46ba7 7355 utils optional 
mtree-netbsd_20180822-3_amd64.buildinfo
 f2bfa459fad0be6cd20fb7171c2c24a9 51838 utils optional 
mtree-netbsd_20180822-3_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu3XmkACgkQ3Sn4hEKD
ntM6xw//TysBHYEE1FR5LsmTzeBjEcyuSCpHOeDv8T75uQ2rbIIJ41C8BYh8etzg
MQw3N1d37U4fa29NG3VrLA+ZFYNZe/Bvfv1DgzRIDwaKVOJMmj5hYZNFrs7KB1Kx
lov1ff4CMjfkubdsPLzs4DkbkarEQP58bpPzQP4ogmgqMHl3DFQ6pCklVZNRr6YQ
eITcdZaaFUAl/0ckrK/ppU+3vChrOQFONDqatDyfK2nLwkjaCyqy1IGqxcDQMQ9i
5pweCfqfI5uSSVxY3ieSVfPjt2xQONwWGrHhVd9NWylYadAOEO36AGaESIDK4zHi
gTeCaNEK2yY7d/h9BV5laom9QPiP9i9oaXpEmDmyuu4nK7Kb749d9gvbKkjEZMop
MD4Xm9zTJUzxdtDzQmVNtcmdy9YT4hpQqXPtHZ7GMqY3nYiMqPSRoolEcYuR10K5
lI2ImfjB5m34yeX6LH7gQ31RbPCirP3gUkHyFMux97lPDomo6/+czV6pmSZ8gyDu
8JAMr5XkoWEBjUXIt7YHZkzPTDh5fO5HdTE3HbTtkISVnNwr5DEyJPsAQ5uHSwit
fYxpw5xbX5dxAY4haKNgsAauEDm4M+LVgcX19lEg5nQDU/Ml0mVXm+aXFRJ65tFv
vz1t5gi7bMkFCWlViz2IG9igmCVGcPYnMqXXRob8lb5mlD/suEQ=
=G/hW
-END PGP SIGNATURE-



Accepted libnbcompat 20180822-3 (source amd64) into unstable

2018-10-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 05 Oct 2018 07:42:24 -0500
Source: libnbcompat
Binary: libnbcompat-dev
Architecture: source amd64
Version: 20180822-3
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 libnbcompat-dev - NetBSD pkgsrc compatibility library
Changes:
 libnbcompat (20180822-3) unstable; urgency=low
 .
   * Add additional build-deps
Checksums-Sha1:
 6e3f4d9a4759409a331d8aa0fa471cbd7e72b942 1948 libnbcompat_20180822-3.dsc
 bf157f648650d42313e6bce0c38effd6be1a9d5f 4856 libnbcompat_20180822-3.diff.gz
 17e82ba1b887d45fa21514e6af472ad4fd96241f 93590 
libnbcompat-dev_20180822-3_amd64.deb
 41b22d9b9f56aeddc5befe2c749cf2cf6ac7e7ea 6475 
libnbcompat_20180822-3_amd64.buildinfo
Checksums-Sha256:
 5de2eb65bb1db9306d3b2fe1c91b0574f5c276b80c83e2f3583eaf68016d921d 1948 
libnbcompat_20180822-3.dsc
 a706b7319138b8ccfaa4d2da512f636e883b5daee4099aa564fff6ccd61145b1 4856 
libnbcompat_20180822-3.diff.gz
 f95dd9847c6a2d33f37aca09f68f94f862418875ffd5de81b846371b1f666b67 93590 
libnbcompat-dev_20180822-3_amd64.deb
 156f2ccacd2757be5f67ae5eea222d06156ff976f0fd01e9e65ac76f252adc8b 6475 
libnbcompat_20180822-3_amd64.buildinfo
Files:
 7139e3d4c9e82926ef51b3f22d75ba6c 1948 libs optional libnbcompat_20180822-3.dsc
 7ec811b16f7e8e5b02aaf53f28b8 4856 libs optional 
libnbcompat_20180822-3.diff.gz
 6d86de19636c8241803805ac26e5fd59 93590 libdevel optional 
libnbcompat-dev_20180822-3_amd64.deb
 f03677637544aebab5896cd5bc682c66 6475 libs optional 
libnbcompat_20180822-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu3XGIACgkQ3Sn4hEKD
ntP0Qw/+NJ6+JeUDhDBmFwHnO1MzYO8//89cTv1OBS4TZWHfkbrgd8OO84xR+1r+
3Di6cUKcoaktuvvxVPRwbs+zmvQGClGXr03erw9KseVVAn9EYKpgPIHgLVAQ/j2g
QSmM9TCmoKg6sqfzfZ02+dIguySqWaQRghPMNbZ31MbvzMS2auJ7t4uLqhOCEh+Q
KVJHa1bIwvdvScj9c+/GCsjXWIGy6NcmtGUNVp6re84wbV/weeZCFyWNsEJonpeL
CAt4Tab7KY7JEHnFDpubgZRycEVWdbV2vQN7lQFcz1riHQleDO7WWcvoNJGgD4VV
DPVfCN898n8GlxbTwspzsc98A3NTplVYmtSYysQoyPEdR1QAGug5bE24LK29rBVO
H+q3dGpSry+m9jzQcwL5AvII2N9/QwarUlcSRZC17kX/g4ooLmGTEVfG7ott+eEC
ucMZqo76FfTvFoOwd6D+toOIRvyl57uaMWEne7wd/ooXnMkyl45fj6j4vgdgkwdA
FdmHtRPt2nFM8nHPB0uu9WT9bpw4/7B/MwzPFUAONL4KxT80izvpJXvaxbZ1k08i
iqSG/9WGYzyAJntmo0m36XNlLqQaKKFRudVHuEhac+NIEx8ruRqjVC2qpvZzvymF
rbxXMNxevM7ETnRk0TQf+b55KpXbpSipJ0kVw3fJVVHHSStwHl8=
=93FS
-END PGP SIGNATURE-



Accepted libnbcompat 20180822-2 (source amd64) into unstable

2018-10-04 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 04 Oct 2018 20:34:13 -0500
Source: libnbcompat
Binary: libnbcompat-dev
Architecture: source amd64
Version: 20180822-2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 libnbcompat-dev - NetBSD pkgsrc compatibility library
Closes: 910331
Changes:
 libnbcompat (20180822-2) unstable; urgency=low
 .
   * Analyze licenses and note additional info in debian/copyright.
 Closes: #910331.
Checksums-Sha1:
 e6ca20266ef1d3cb4ab8dcae50dbade2a47aaba1 1920 libnbcompat_20180822-2.dsc
 59af3c8d58be30815dafebf27b3a2edb959c926f 4758 libnbcompat_20180822-2.diff.gz
 a727629f5cbdf717a116d577cbd869e5fff7e542 93462 
libnbcompat-dev_20180822-2_amd64.deb
 845eb6199b4cad70a8b19bdabd44dbd15566d687 6365 
libnbcompat_20180822-2_amd64.buildinfo
Checksums-Sha256:
 a964f30668ff7abfe0c25e5b599958550afa4d4587746815a02e20fe386865e3 1920 
libnbcompat_20180822-2.dsc
 08df9b9eb978da3e5b951294fe8574f7c940ffdfb7525798a09b8aded7d7596e 4758 
libnbcompat_20180822-2.diff.gz
 1278fe6b5c9981371c110aafc2edff60b95b2b13d00aac8e5b18ef60017683a7 93462 
libnbcompat-dev_20180822-2_amd64.deb
 b151dca2ee6f226115ebdb947d0c9d5b997a387e78dbe8dee189280e1ed8b8d8 6365 
libnbcompat_20180822-2_amd64.buildinfo
Files:
 0826ef12f4ba982394c1819dbf1a3db5 1920 libs optional libnbcompat_20180822-2.dsc
 d71782d7d4fe7029a2ee5e2ddcd94730 4758 libs optional 
libnbcompat_20180822-2.diff.gz
 650c3e37275ce642eb4426defa6013bd 93462 libdevel optional 
libnbcompat-dev_20180822-2_amd64.deb
 ad2d30195540a3d1723c69194605342b 6365 libs optional 
libnbcompat_20180822-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu2w6AACgkQ3Sn4hEKD
ntN58Q/+MsFEb8/TeRZuaNR7Wg0ENDGdQOhgszhgqb4xDhcs/XNRjxJjOTuZ9tR9
g3zh1nI5YEB0cWWYLxIVgObqbUp636odNF8ZwGl05V9J8iJUwxscAeZRGfLizbPy
q2Ka1BiejzxgrlxjzdhBZ7abTudShJ0vU2ZjazlDJUeVF4S7H9vA7S0nsCpD3tko
vfIdO2sA9BriyZ9kBgpRlwNaaaksMLVmmPV1OmmAo3VEKZUTVnEAD7++aO8szUsN
yD7Ok4hQAS+FhqRVW+VmdGtlK2rt3vQ0slG+l4vPIK996xMDaDR1+7ZWgPK5jSYs
y02xXVSAx8FHQuWJqHNJ4l4PC5gGBSW2hlhWtK4Fg385nLHqLexCkQcyD6gmFz8L
yt8aSffv6Oyidd8I38fWzv1GRleTMqTPhunfACio0eDeCc1FzwD9gvm/AlIBAhjr
ssZbZDrx+eEuNaABDXVU7EaWGpRSLSXDwReGmZFXcVM6/tU4ZVjr/A3SozEIt4xO
YpjMrUcAeOpisjUEbCYNJFyrQf7cxjHmHkFr6koAx6zoGKzInXfHDsRVCFOptpIs
mhn4IIV+yuvqTWafo40lcuaob+5fgAzpFCb+LcYBnPJel0O8xkjo74ykWMW8+uLT
qvUWFramsdVvgXsB5GcgoxxPlTICZ8jTDiQCt/yn4INX1DtqOLo=
=o2Id
-END PGP SIGNATURE-



Accepted mtree-netbsd 20180822-2 (source amd64) into unstable, unstable

2018-10-04 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 04 Oct 2018 08:40:30 -0500
Source: mtree-netbsd
Binary: mtree-netbsd
Architecture: source amd64
Version: 20180822-2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 mtree-netbsd - Validates directory tree against specification
Changes:
 mtree-netbsd (20180822-2) unstable; urgency=medium
 .
   * Adding tests, verifying compatibility with FreeBSD fmtree from
 freebsd-buildutils
   * Added sub-second time precision
   * Added README.Debian
Checksums-Sha1:
 04647f22f0c839bc2f11a0a8cec2e9c5095cf98c 1956 mtree-netbsd_20180822-2.dsc
 aa245282b7ef197d73f5324f6161c4f50f5e28d2 3119 mtree-netbsd_20180822-2.diff.gz
 17ecfc380bdd4b117b5d115d243539ef1ef98193 59440 
mtree-netbsd-dbgsym_20180822-2_amd64.deb
 30cd683ad7f0fea5c18104363d7bbaa143d0de36 7270 
mtree-netbsd_20180822-2_amd64.buildinfo
 fcc967680675aec1b2ff8294f7ad0138d6e48c5b 50602 
mtree-netbsd_20180822-2_amd64.deb
Checksums-Sha256:
 4cd3d92dd861b3e9292a25238ad9e4b177b40104c8f43f7fab3f0c4494efba86 1956 
mtree-netbsd_20180822-2.dsc
 cc7ac2866d36f3f90cf56c81afe8e661f83e8bbfc528af969ac133707fcc2bcc 3119 
mtree-netbsd_20180822-2.diff.gz
 a33486ab10d9e43d12e9c4e4ff3c19f46a3136b07a8127bd0b05d9d22de2a891 59440 
mtree-netbsd-dbgsym_20180822-2_amd64.deb
 7ae21c16dcd97c5aae2f310e27d4de365572178baee1f9cd8e9e3d14bdfc85b7 7270 
mtree-netbsd_20180822-2_amd64.buildinfo
 0986c6fef35250191706ca81433d52b24deef1ae5d1f25de705d8c8d1af80ed2 50602 
mtree-netbsd_20180822-2_amd64.deb
Files:
 017a2afb90e091b15b7ad944a58aa41f 1956 utils optional 
mtree-netbsd_20180822-2.dsc
 6df50a00e52762480ce02f61bad76d8d 3119 utils optional 
mtree-netbsd_20180822-2.diff.gz
 d5757d34e08e586eba501ca1a3ffd253 59440 debug extra 
mtree-netbsd-dbgsym_20180822-2_amd64.deb
 bd8b5ffb36a9f3e5012b8f6e69bea688 7270 utils optional 
mtree-netbsd_20180822-2_amd64.buildinfo
 9a15cb84c7ebd7bf0eb4899b70a62747 50602 utils optional 
mtree-netbsd_20180822-2_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu2HVAACgkQ3Sn4hEKD
ntPpQxAAsmVd/VVO7+iZoP6hB6zeEN58j9PU48o53EwJHw1jGp28uHBCbH34e/FA
MBgsicAC4acAnFaslg54gBteoGd9NXxRKogGvHuyc81IKhMk4RLEYiXsaqtA6BlJ
ar56dDRYsJ1zZuLnQEtnL92A4zIsOnG+cGuFYgKr7M9Tjm1KC4CYVtLnj/tfuKyg
aJtbGloEtya1r3Xen+vK5CuIqnbg2SqBjjGUNRxS8tAa+M2O3I1HBZrWqGCpqdea
jgVMsGdaN4d2PMuHrAvKzveaasyOWj8RsRQBWdypJ1sxaqII9FX5qYYYTr40m37m
dNd4iEO691vhSCy6MLYl6qsQJTGt/TbH6759/YsDEO/JOgAI2r0lQXEq7/bjcOHL
2cxlCet9kbiOxFlO+kcD5ZSDfzLfo21pLStxt1VM1hgvOkNKBe36jrtEAslwiD7o
FI4UFT4WBcNsL/GdHGHCOWZqd0Y6B1MDHCFDwyxN5uo9bGahcAOCp58CcziWJbzL
YtGrgaPdmHYHWS/ueRC9pU4x1LP8N1v+qJQwJEp4qDeT9NplIWk1b6oHcCdpKi8G
TY3Zjr0DcOlrqooccZgzB7btcRACNCcDISL7YR7FjQI8e8QU48/lIrMUk9GIDUz2
x+aI3ik+C8VbLjCL5tA3Kd4GkBgkq1Omc8DF6RuNUH1sqV7vpYk=
=XltG
-END PGP SIGNATURE-



Accepted mtree-netbsd 20180822-1 (source amd64) into unstable, unstable

2018-10-04 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 03 Oct 2018 21:49:57 -0500
Source: mtree-netbsd
Binary: mtree-netbsd
Architecture: source amd64
Version: 20180822-1
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 mtree-netbsd - Validates directory tree against specification
Closes: 910253
Changes:
 mtree-netbsd (20180822-1) unstable; urgency=medium
 .
   * Initial release (Closes: #910253)  
Checksums-Sha1:
 ec2be97579f1f172ebc8fbe0f5cb9e073dab8eeb 1928 mtree-netbsd_20180822-1.dsc
 d2bba062cfc57499d644b5f20370801991b04fb5 102645 
mtree-netbsd_20180822.orig.tar.gz
 5ef039998c144c86887f6b08c523c0e0be8b9edc 2559 mtree-netbsd_20180822-1.diff.gz
 e2c5c416b0d0f479044de8d9c76d62979e1f1b3a 59414 
mtree-netbsd-dbgsym_20180822-1_amd64.deb
 6580c362a64cf1b1be2fbed109979084645dfbfa 6673 
mtree-netbsd_20180822-1_amd64.buildinfo
 6185ccf09e69a2cde9e7b5653799682f1188ff57 50122 
mtree-netbsd_20180822-1_amd64.deb
Checksums-Sha256:
 92f283e6d54beb404efa8b0151802dbdfed965f7eef611057a590e90be049f67 1928 
mtree-netbsd_20180822-1.dsc
 0a996b5deaa4ffbe249c98a1f86cb4c737f1225e718ee768700eb216c5ce5ee9 102645 
mtree-netbsd_20180822.orig.tar.gz
 f584c976dee6877c27190c7fbc305fd763e6068926162e53b71201916e9e39b5 2559 
mtree-netbsd_20180822-1.diff.gz
 a9b4240b27fa4941f77aee1cf895a9a1757ee05849fc43f9b3e241d8b38d0186 59414 
mtree-netbsd-dbgsym_20180822-1_amd64.deb
 766fe9970e1b1f2cea9e5ab25542a2686d0efb6c6f9229f261b21de5ea68263e 6673 
mtree-netbsd_20180822-1_amd64.buildinfo
 fda10e8e7fa354fb0685059a41dcff5b48df3f3ac86f9af431940e5b88c38aaa 50122 
mtree-netbsd_20180822-1_amd64.deb
Files:
 23400034ae8fae2ba00e90153f264a10 1928 utils optional 
mtree-netbsd_20180822-1.dsc
 bb2c6aabf34075f47eaec92da4f69690 102645 utils optional 
mtree-netbsd_20180822.orig.tar.gz
 a4c727afd4c1ff511d7df2d13b5f7ed5 2559 utils optional 
mtree-netbsd_20180822-1.diff.gz
 8749f152a088a07afcef2c38d3c9b3a8 59414 debug extra 
mtree-netbsd-dbgsym_20180822-1_amd64.deb
 9a9b0df2c0453374677305e6a8fe2d4f 6673 utils optional 
mtree-netbsd_20180822-1_amd64.buildinfo
 eb9c5e192d511501f0506d2ecc5545f8 50122 utils optional 
mtree-netbsd_20180822-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu1hpEACgkQ3Sn4hEKD
ntMh7Q//YCanxeFY6NCx6+8n9QfYMKZeR4wtveKhFZvBym4eJ4NIR0px13KrHpwW
vZk3ewl31bJesDD5cD3OCbCYwuUPF8Cy6PSfi8/qu+F9vG2jSU2moXMkAmv3E8Gc
C0oAWcMIHgZg2PFQgBUhMnnk4qcLfJgsxlweDa84C6ae9ZlmkmW9b2iINGLu4Mlb
szckpdG0voT3SPmxlQGWueRyy9VbePlkAjwOv6/eLpBDe9TFYHnehdSOpgEEyke8
2ngiMzl4Cvr3lTaRmuWQlfe+WZrRTCkCvNrn93mTG9NcWuY9KYCwqlFwVqslDdTZ
tnsBZRC66fKV+DSQm/RXDBTCKTKpTmZtbL+JeRfFoBo79VtFoxSiwqjlne6b0DcX
DBjkmpRcc05PWjXXLGEYhzAfxP/vazFQisShaLCrxxCFzVVWcxU9cFE6MTmO0OXI
hXeXGf6TIpWeP5kJJ6ywy6eoFny8V7glc0ksLJ2wkqtGak/Ag+UEbXfjLoCuwfY3
YG8HflWNyW6TnWb8mUo93i+TRVhO/C2cGXmWCV2+1opxE8CyQ/hY8vh1FY5lLFvZ
531zszambM37px4L2eqyHazOVH26JLudHDyz+8azfa021LHA266W0ey3r0vAKNfC
15NnXiAjLmTKCxb5gUmu78Cr7wjAOKclaqRFwHHjwW0QRKZu9m8=
=zKux
-END PGP SIGNATURE-



Accepted libnbcompat 20180822-1 (source amd64) into unstable, unstable

2018-10-04 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 03 Oct 2018 21:04:59 -0500
Source: libnbcompat
Binary: libnbcompat-dev
Architecture: source amd64
Version: 20180822-1
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen 
Changed-By: John Goerzen 
Description:
 libnbcompat-dev - NetBSD pkgsrc compatibility library
Closes: 910252
Changes:
 libnbcompat (20180822-1) unstable; urgency=medium
 .
   * Initial release (Closes: #910252)
Checksums-Sha1:
 624e1d41ba74640a74a6e10f7d70a56ff376b9fa 1920 libnbcompat_20180822-1.dsc
 4e746e15e79f47cfc1c8a26272d7413a66157e43 1302787 
libnbcompat_20180822.orig.tar.gz
 10f032b81f8001f82e934844ff5e76c86754506f 2044 libnbcompat_20180822-1.diff.gz
 fa40e8c9077f768af3ddb53d760dd2d4dcad9859 91464 
libnbcompat-dev_20180822-1_amd64.deb
 ce05577f106ed2ece12d0f5e14bd987ed3e64868 6365 
libnbcompat_20180822-1_amd64.buildinfo
Checksums-Sha256:
 bc15551a9979d830775b7696f101cb2a24db4261ccaafd3f74848ed905028072 1920 
libnbcompat_20180822-1.dsc
 d56a3024f484c760c0035ac2dd2c2d6ba960750d7fd711da50cbd1409c54ad77 1302787 
libnbcompat_20180822.orig.tar.gz
 6c68c4fb983d37bd6db3bf1ae7290a827fa1bb8268deab0b8bfc33db943eb947 2044 
libnbcompat_20180822-1.diff.gz
 e8e73d621eb7eeb619307a6355544d63f72c45ffc32cb59c15eb5683c8babc1b 91464 
libnbcompat-dev_20180822-1_amd64.deb
 ba0a6ee6716e0239f7218f8167eb80fed7f5b282c164258979e5a0bc5a0e1642 6365 
libnbcompat_20180822-1_amd64.buildinfo
Files:
 a3723373d96522dcbdc32cf1db2a1572 1920 libs optional libnbcompat_20180822-1.dsc
 916c77f7c58c1d6fdaa03bcc297551a6 1302787 libs optional 
libnbcompat_20180822.orig.tar.gz
 8109d9672c8a2a730111cd6bea051a3f 2044 libs optional 
libnbcompat_20180822-1.diff.gz
 0ec7f46da07afbc0b19bf99224a81f77 91464 libdevel optional 
libnbcompat-dev_20180822-1_amd64.deb
 2ff83e67eeea94668e756a0844fd104d 6365 libs optional 
libnbcompat_20180822-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlu1fuYACgkQ3Sn4hEKD
ntOzFg//Si2PNKg1Id5ptqRtp4V87lkoU5SZN6BeNtLX40gC5pCj+cT1e7dU8I/x
0B6ChedlNA/MHB56iZY8DhDknanh9Gvf4rYiY0T4Z/oM4s0GaFkfwfgkScqMW0+S
+ZikARMXSRRgwgH4kM8r64B90UrobVUe8Bnh+i2t1muQ0fqLr0AWDtjsqGE/nyba
WqIdsgwF+/PRx3/W1I2Ai48jZx9tyAS/1KPkTyCT468yYtBw7YHuxenLdL2h0Q70
NOWPA0hdT2+YQidu72mPHSXwiShC4LMC8xndAXv5gyVFt2bZCo3foKcB/9lfHWxI
hcJi+gQDpeYIiQHIPusiLukGiwPBJB1MATMn0L2kARFtwQ3F24CqGFL0IKovvitf
IM3MlZg+mRxfd2l5sBjdpleQkixKjIVsaaWA89Z7vmfW28p+oTA0jr6Jc5krDhN2
9PvHbhzfGuNdQxElmiCzeNT84ldtatj+4rmKMrqaMDafDUSMg01GXNCVAFWLQsKY
IcrDpg9OikB8XRsIcJL++lF52pqxz1FkFV3iJQjsvOsq2onpA9RZ7pTDXXNbFy7A
DNN5AS+g1LuIE6j+B180y3/svtmDArQWRy7UpEASFlyOyXSV9RRhp3CFidBvmQZS
FVHTEIHpGtpl+JeuT126aFV+Xwh2AI3Qqf4F+yXaanMZRLYiy9A=
=qcEh
-END PGP SIGNATURE-



Bug#910253: ITP: nmtree -- Validates modes, ownership, and contents of directory tree against specification

2018-10-03 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: mtree-netbsd
  Version : 20180822
  Upstream Author : Joerg Sonnenberger  and NetBSD 
contributors
* URL : 
http://cdn.netbsd.org/pub/pkgsrc/current/pkgsrc/pkgtools/mtree/README.html
* License : BSD
  Programming Lang: C
  Description : Validates modes, ownership, and contents of directory tree 
against specification

 The mtree utility compares a file hierarchy against a specification,
 creates a specification for a file hierarchy, or modifies a specification.
 This specification can be controlled by the user, but typically includes
 file/directory/symlink names, ownership information, permission bits, and
 so forth.  It may optionally also include various hashes, such as SHA-256
 or MD5.
 .
 This mtree utility can understand its own files, as well as those generated
 by the FreeBSD mtree (in Debian as fmtree in freebsd-buildutils and
 freebsd-glue) and bsdtar/libarchive.



Bug#910252: ITP: libnbcompat -- NetBSD compatibility library

2018-10-03 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen 

* Package name: libnbcompat
  Version : 20180822
  Upstream Author : Joerg Sonnenberger  and the NetBSD PRoject
* URL : 
http://cdn.netbsd.org/pub/pkgsrc/current/pkgsrc/pkgtools/libnbcompat/README.html
* License : BSD
  Programming Lang: C
  Description : NetBSD compatibility library

libnbcompat is designed to let non-NetBSD operating systems execute code
that is part of the NetBSD pkgsrc repository.  It is, in particular,
required for building the NetBSD mtree, which has some distinct advantages
over the FreeBSD mtree already in the Debian repos and is being adopted
by FreeBSD.



Accepted netmaze 0.81+jpg0.82-16 (source amd64) into unstable

2018-04-25 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 26 Apr 2018 02:02:54 +
Source: netmaze
Binary: netmaze
Architecture: source amd64
Version: 0.81+jpg0.82-16
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 netmaze- 3-D Multiplayer Combat Game
Closes: 893478
Changes:
 netmaze (0.81+jpg0.82-16) unstable; urgency=medium
 .
   [ John Goerzen ]
   * Update Depends on tk to use default version (Closes: #893478)
Checksums-Sha1:
 dd7b32da4b9df00b4902f6e7a0e70c278898627d 1774 netmaze_0.81+jpg0.82-16.dsc
 5ef7656aa20920c9fee8d7c09fae86ce54c41ac8 42765 netmaze_0.81+jpg0.82-16.diff.gz
 bbb26d9e7fd1446a60a42f2362d58179c4094de2 8356 
netmaze_0.81+jpg0.82-16_amd64.buildinfo
 fae6aed8675106f2365a533353b98eb1bc32c4ec 265368 
netmaze_0.81+jpg0.82-16_amd64.deb
Checksums-Sha256:
 4ee8d2d09d18336a33abfefe66ba89fd6915b33494ecbe72220c169c55bcbcc9 1774 
netmaze_0.81+jpg0.82-16.dsc
 72dae13bde59c384be91875b67e1581513b9e05e54bc8049b62228c52f369756 42765 
netmaze_0.81+jpg0.82-16.diff.gz
 64c48d7b3dbb6816d7ea2e3a3cad0c833060103a7bcdce59a0ab74c69a4e9deb 8356 
netmaze_0.81+jpg0.82-16_amd64.buildinfo
 84412fb82c9eb88dea283b82686fa106f92167901dd33c0da55f9c1270f4d63b 265368 
netmaze_0.81+jpg0.82-16_amd64.deb
Files:
 663f581bc6ff76f1f5631b2890b56927 1774 games optional 
netmaze_0.81+jpg0.82-16.dsc
 d5f82eebc037237c28b7e09dc8fdf45f 42765 games optional 
netmaze_0.81+jpg0.82-16.diff.gz
 752dac7ec63a83ffd6fe8872a9c8034d 8356 games optional 
netmaze_0.81+jpg0.82-16_amd64.buildinfo
 5b8c603145b1aa0ae4f6311426d9ec76 265368 games optional 
netmaze_0.81+jpg0.82-16_amd64.deb

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlrhM/IACgkQ3Sn4hEKD
ntPQMA//bbd9ACJbgXMwtSbhhpswGu2FI8+Cs+H0QsoPpjhSVxZ3f4cqNztu4IA7
bpiOxh34YB3PpHRa054Yq+WuA0+xWx1DbfqFJ4Fx9S2ZOnlSC7Gze008J09dfNol
9tSva2MGpo13DE6PPne6BACRuCnCd5SdKjmuEBg56agJkyv+ljuG/6ZQbBKle/um
sasicVI9+3EoeDF81Rr2cEi+T2B9g+X7weBa1cO7OQQLrLLUKMWGDbmX9BxQSHAv
RpO9T83UDmH7aYNOjKFA1AztQV8CGG2Tw4DvWljFH5FT172bMUtZY/QjM3Cx2Yn/
xNs5L+lwUxyTj4F5JuTq479dgR32UhilS8wXLfTuO67CgdRui1/js5IOThENb2FP
bh/g7LKGmTM8axwKJOm6CzNuTB30aKp/7OZFZzaeIba3pzV97C8CyLMFL0c81/1q
eyyEVwKNXsWKhiQ0dSQgGi1Fn0b1rU5kBt2kWcgvNOiE6G0yJa5TzoMpHZEtbQeQ
NzKUi6nEawWpuxeJJzXM746YkAuxe+HVy+/+diUMHUjzTcj9kFAsNqar+knB+IQK
tnCLSg72hm/Ft9Fn9RVRY3xu4pLWPY+vjLnsWCaTN2lJKkZMHo3cQ6enHpRK0BdZ
yCzU9SoZ4GrQqtIhkTyxuDjaaDcoiRpDr1/tO9/nqAH3ixLwNQY=
=xS2k
-END PGP SIGNATURE-



Accepted zfsnap 1.11.1-5 (source all) into unstable

2017-10-10 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Oct 2017 08:51:56 -0500
Source: zfsnap
Binary: zfsnap
Architecture: source all
Version: 1.11.1-5
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 zfsnap - Automatic snapshot creation and removal for ZFS
Changes:
 zfsnap (1.11.1-5) unstable; urgency=medium
 .
   * Clean up deps for zfs-fuse removal.
   * Bump standards-version and debhelper compat.
Checksums-Sha1:
 a397d3e69041444ae2bd7d44bc889481cf9b9f12 1773 zfsnap_1.11.1-5.dsc
 079f14313ac66217ed7686900b88bc09e0a902f1 6634 zfsnap_1.11.1-5.diff.gz
 00d9ba0fdfcb69d89e7716ea120bc2f9e2fea91a 15272 zfsnap_1.11.1-5_all.deb
 d2dd4c503f86e188a1c96efae989c43d75e1 6180 zfsnap_1.11.1-5_amd64.buildinfo
Checksums-Sha256:
 68f17e0fd6259baa2ee052868c4e102c8fd5b486324a47e7c5f13b175a64b1a9 1773 
zfsnap_1.11.1-5.dsc
 942f1d0502bda4d9577405aedbb7eea7870996f6700d7d1d0d6dc5ce189161f6 6634 
zfsnap_1.11.1-5.diff.gz
 8ad30a517820525ed8ad07d8d09d2deb42e28c487916fe054be12040388b5971 15272 
zfsnap_1.11.1-5_all.deb
 525ce4de2f0f89bdd030ddf39ee84f7dbcf9e91e9f2645f4a52bae8f92fc3486 6180 
zfsnap_1.11.1-5_amd64.buildinfo
Files:
 72c27d2bc3216d4eaed89fdbf443fc24 1773 admin extra zfsnap_1.11.1-5.dsc
 59d770ced56e0fef72329140cc604144 6634 admin extra zfsnap_1.11.1-5.diff.gz
 db65d31176537d4eac5f96e8961b2dd7 15272 admin extra zfsnap_1.11.1-5_all.deb
 6cb03a57a2b54b432b60845a833cdaf4 6180 admin extra 
zfsnap_1.11.1-5_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlnc0LcACgkQ3Sn4hEKD
ntOomQ/9Eczny9F6ST4jErYtHs8Ke65cL3uRbA4+3EAciBLQf5UJcUNGAWTznREJ
QLsdpAgautua9CxCAaI+gRSE9bjdiT2C/U30UBa28IdT44A8iZ441MIobXJrOnls
jtb5VPt18bVOFjvzzDhyyz6Dx3LtxLO7SgMkADv8IjuCIGm948OCQTJwQMXAlZa0
bXxw0EB810d3ModL4Btow/6GVYq+UARHCvAr68Necclg+QECqMYgJjf7Nfkx7vYZ
gcNNNurcEPe80jZK+iwu8joa4kuYQBoq1Zb0pvyNlvNkvsHzOoiCbxv2lMo4QzXy
3ItEVRKNdaoBwqON+AbYMouG5s3N8clrdouc9j1Oh37L77fe5JbGadOPdnDNTKOg
ws4E++qXDhJNPCZDPF9Ew8cve8wZOqbShaUUUWkZ9mr0lqQ8pnstpr1Mhhu2XfEg
RwueJX21dFe0MQwDoooATIvEvYam9Qv8qIV8yEwDVFJuBoyaSq/Dpt+dshjPh4r7
58QM79zJyH62kTRA6o8IBj46NQnv7/94PP7mVG92x4xwlkllHjKY2sodfLoCHFFz
LtQHMA9bZc0zIHbLXKi2ObJUiZWZkPAgT85Nmr+ibXdQSPzAkHxby+Wng8CVU2Nf
q46TR/yn3tVIadDrYPDjNM8u6no1fjDpFYyGqFDrsQEixDSCX+8=
=74gD
-END PGP SIGNATURE-



Accepted simplesnap 1.0.4 (source all) into unstable

2017-10-10 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Oct 2017 08:45:11 -0500
Source: simplesnap
Binary: simplesnap
Architecture: source all
Version: 1.0.4
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 simplesnap - Simple and powerful network transmission of ZFS snapshots
Changes:
 simplesnap (1.0.4) unstable; urgency=low
 .
   [ John Goerzen ]
   * Validate DATASETDEST like STORE
   * Added one more note
   * Rebuild docs
 .
   [ Trey Dockendorf ]
   * Add ability to build RPMs via Makefile
 .
   [ Al Nikolov ]
   * Properly substitute Unix tools with GNU tools. Works on Solaris.
   * Do a substitution for UNIX head too.
 .
   [ John Goerzen ]
   * Rework deps so it doesn't get wrapped up in zfs-fuse removal
   * Clarified --local
   * Log errors using err syslog priority
   * Doc regen
   * New standards-version
   * Bump debhelper compat to 9
Checksums-Sha1:
 ee69cbb02af6543904d6e59b6a3f073ce13727dd 1565 simplesnap_1.0.4.dsc
 ba36c5387a32cf9581867f53388bb7198f1ccef9 32496 simplesnap_1.0.4.tar.xz
 dae72f5dbec9c285a70becaf938959f63cb5c2a9 17476 simplesnap_1.0.4_all.deb
 162115f4d1816f8d07729ac385d1023a945c 5997 simplesnap_1.0.4_amd64.buildinfo
Checksums-Sha256:
 89b420a951f01cc20ad8a2490944dbe9216ce361e5b6fbb6118229b27f3bc15f 1565 
simplesnap_1.0.4.dsc
 0ba3c30b2b5c12e3d037db274ddb0fd27699105006824da3253004fa5d30 32496 
simplesnap_1.0.4.tar.xz
 b7237e9030aff490af8920904d75c7d1bda802ae80891bc841454a63e8b55f3d 17476 
simplesnap_1.0.4_all.deb
 6226b806f5a8872a3558ae508984df03e0880ec86fcfecd862f890c52cf9f433 5997 
simplesnap_1.0.4_amd64.buildinfo
Files:
 7b7ee8c08a5a1b904a883b8c83d1c3df 1565 admin optional simplesnap_1.0.4.dsc
 6164553dfd120800208620977f1a94cc 32496 admin optional simplesnap_1.0.4.tar.xz
 4566e2b04ee2524ce16367de1fd382b0 17476 admin optional simplesnap_1.0.4_all.deb
 892d8d18dc95152251eb3cb5b11f8a82 5997 admin optional 
simplesnap_1.0.4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEEJ217d7abdWx8toZp3Sn4hEKDntMFAlnczwwACgkQ3Sn4hEKD
ntOdiQ//WWWnAOh+FZk59pts3WnGNXBRP8/x0gARl1IVG/P8W1uoqXZzBuC6WXHf
bhE2QRpU073OHeOTzeNUgCWLvR3s0tgapw4TyICMj+s5HvhgWOlxa5m7tSfxGNyF
vQLuPbDveuRToRSkQ7DX4ffdkhApBm105ggamqGByhybPnAc4ddZxU6eWEXB1y7k
mcI8aNejdXBiyLLmkBxQ4iL5QWY5UYOikag3mxpo03fgNSMz5IK3QJlyvnWmpAnC
EZPVzY3WXlf6TIVcQ9M6EtaZmvfr0F3dc6TlWzIKcXGLe37vtIwZKgIlXQZMh2S/
DUYteIkrhoSFUvg+HV5nD+BIQYczGLyKsAqPjT/gR0lFhDsRGt3PQYTHImd9ZuW8
jdxVKnZu/jxgMWOnDxMthGinRnWZJsZBiXxtH7q93jy/0ds1IK5AIZXrZnD+Vvcz
PgxB4n6ELSALQ70l7/bWtplPeKNWmN6lzd7TJUTMMI6Q0t4sH+qfSSdFkth5yZEq
jUeDIqcJWlZekRxpl1l7hwcitSQO1r50ogUqn5QMBooNA9EBxi7J0/gM+TaF2RzV
+3Qy1wZaGd9grZVVPtJuDMLWH20i9njawzCvnBVPk40GAg8PrdYQHhNxLMOcngBE
4fmb+uHyjRE7MOzQzPcD1eZUR1m/Ribpe5julOYABh2fOtB6YiU=
=rIz9
-END PGP SIGNATURE-



Accepted datapacker 1.0.2 (source amd64) into unstable

2017-02-14 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Feb 2017 19:24:16 -0600
Source: datapacker
Binary: datapacker
Architecture: source amd64
Version: 1.0.2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 datapacker - Tool to pack files into minimum number of CDs/DVDs/etc
Closes: 549388 629774 840517 843420
Changes:
 datapacker (1.0.2) unstable; urgency=medium
 .
   * Ack NMUs.  Closes: #840517, #843420, #629774, #549388.
   * Bump standards-version.
Checksums-Sha1:
 be942b4d92b518e67f9db598ef886ae6676448ab 1788 datapacker_1.0.2.dsc
 a86cf78942dfbdfa3f00c7bbdec32fe7a04013e0 25303 datapacker_1.0.2.tar.gz
 f238acb1d33132f69cef776bbed26f6ad9a9a33f 95286 
datapacker-dbgsym_1.0.2_amd64.deb
 73976a48e5ac44aed5720fc403932333ef0b85ea 9369 datapacker_1.0.2_amd64.buildinfo
 e047fb23bffee8b4c53b7bc5c6f61b8119767f21 362056 datapacker_1.0.2_amd64.deb
Checksums-Sha256:
 955af74682307638d1f17c3be67761e93d524d99f233b16dc68780f22c623050 1788 
datapacker_1.0.2.dsc
 58934b78bfab92f4c01bde1e44bea96b1a9bab7a5f91eeffd715208caf469f55 25303 
datapacker_1.0.2.tar.gz
 92c64595b88dedd6a744b61ac85cc12a0811556f749b34e847241737a1212cec 95286 
datapacker-dbgsym_1.0.2_amd64.deb
 60f48027f8617eae9723892e55cd51465a04309021ea0a1d9e56601d82a309ff 9369 
datapacker_1.0.2_amd64.buildinfo
 c7a5299156f9dfd8551f126bf9a77f3822cfc60375a2fff89171c9878a12fb42 362056 
datapacker_1.0.2_amd64.deb
Files:
 07e3bc52132a2c687872bfa244a253d3 1788 utils extra datapacker_1.0.2.dsc
 6ce270d2e6d51012cdc7d8364cdbe87a 25303 utils extra datapacker_1.0.2.tar.gz
 eaec5aa483fabc82eef3985a774e8336 95286 debug extra 
datapacker-dbgsym_1.0.2_amd64.deb
 508f053968860dcd550d7044193e78a4 9369 utils extra 
datapacker_1.0.2_amd64.buildinfo
 493d4fa5eefcd069ef365213c8903443 362056 utils extra datapacker_1.0.2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYo6/uAAoJEN0p+IRCg57TwQ8QALvtyzMEDVQkG8A9+6b3p7G5
7aA/TPPwdGvjqysBIfuE1m95S9DmPYADbBIOAykhkcY2I2wVvFSQyRAItN/Qoo46
iKtycAiRokuQXvHzs6UGVp9+O0y9pkBQmvqpG3HlBQ/Pf31GoZ+S5oRnLZsZXxOI
vabXfiZpk5wQRYkbNtPoetbkgdDHbBqQ4UGbXXikyUA4rh5ibCK5S6RFtYTOz0sV
b8S3BADQBimFOmGOnBc5KAAYMNKvVHCK7aY9/4GN/ldluWQvL9iz/XL7OBiAwI/3
9GGOqRu9zve1Vrnu+c5mEe25Vd0AkcI+CLdX3oGL1o/Iw1UfGHN5mIbR39Yzt61x
AmTW8H0wUbGNjmGHJ148g661FJYQn4F/ZeidJNjnzTzIW8juTXFxW4RlwiuWQQDp
8/S+ByIteGInNGbB+YSMNkJcixFLWC4hOAYfYF+WcrOQT49BbGcf14OJczO2aHR0
qiiEW/nP15WUloutlhPFzmdVT4EdenatkBkZqpxM3mByfIykwx+sZphSk7nxTm2/
eqrby2OSc7PNE8mtCmlnPoilxRTHpz442CndxerdA1Z8DAKwuoxmnFjRlf9BDIyT
mP17F1MyeBiM57GEc1B5rpctakTsBk025eGQ0bOqoWN8IR+Ms3Ca+qgFS0KLLrc4
xU3PEkSXfcuBC+4AlrS6
=r3jw
-END PGP SIGNATURE-



Accepted dictclient 1.0.3.2 (source all) into unstable

2017-02-14 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Feb 2017 19:36:50 -0600
Source: dictclient
Binary: python-dictclient
Architecture: source all
Version: 1.0.3.2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 python-dictclient - Python client library for DICT (RFC2229) protocol
Closes: 549586 616789 694764 800233
Changes:
 dictclient (1.0.3.2) unstable; urgency=medium
 .
   * Ack NMU.  Closes: #800233, #694764, #616789.
   * Bump standards-version.
   * Apply patch for Unicode awareness.  Closes: #549586.
Checksums-Sha1:
 9e394bf81789143de6f3900db241ba06c40386e3 1455 dictclient_1.0.3.2.dsc
 ddf56ee004fe7b5a730670069d803f314f6a4d7e 21887 dictclient_1.0.3.2.tar.gz
 d4d6da565c9e06c30ec45e592337d388434e4086 5416 
dictclient_1.0.3.2_amd64.buildinfo
 ce65fdeb2f0b17e1f8a507d153bad20e123dfc71 12238 
python-dictclient_1.0.3.2_all.deb
Checksums-Sha256:
 204d20aaa5beeac534d88d677889d329195eb741bfdf4943ccbabff3a83d17f1 1455 
dictclient_1.0.3.2.dsc
 2ed2ede26c1d89c32405dab50d3faac13b6c5b4a39ae8f71d27ff8a57ae8697b 21887 
dictclient_1.0.3.2.tar.gz
 73cbd6a8b986a7a0fe0d0f8cec28c711d7052c770591cc610e85c1e5a9aa13c0 5416 
dictclient_1.0.3.2_amd64.buildinfo
 58fefad6137f1b0da14e48f7b263ee59b5185488b2d41d0e0984242da47e0825 12238 
python-dictclient_1.0.3.2_all.deb
Files:
 173a16151dec27695ec33980a765e39c 1455 interpreters optional 
dictclient_1.0.3.2.dsc
 fcd24853f7e1cdf9bfd8fc1da43faa71 21887 interpreters optional 
dictclient_1.0.3.2.tar.gz
 913709d66dd4db6c14f1097e343cd9f7 5416 interpreters optional 
dictclient_1.0.3.2_amd64.buildinfo
 4d43de818c1f80209375a3186d0b81f6 12238 interpreters optional 
python-dictclient_1.0.3.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYo7JlAAoJEN0p+IRCg57TufIQAIJ1baco3twVe6XEyVhbmFmh
7JvzJEJY07T7CeYUqLP3G2C9f5fhc+wb4qCL7JoiwhnhYoCJL0ymNxtLGWPBJ6RS
V5iEJIirbYnx2rbbq2IHbfPXZC0e13mu5HZp/vujvGN/oxdWc+LS2aBRcUOmW8m7
EWVp64i0GEn0RWn4PEdiT7mHNVsidc7vG6q+5LHkGrDbk1iHA9ANH1DEUsOo3JK9
ntzyRAHXxGYCByr1vA+3aBZ1M/Irdo4vo+2ClbIjXaBlrenBxIuI9LVDvimr/+1U
FJW+OV7eRnjbCVwFR+ApsSGj2GUH7TFZ7up60sElmtFBYFRTPvc6WmmtyBNjJ5tt
V/cA/KotzNeAA1yCdPUmLU9KrVQTMyj6S6+kjmX65mZ86wVwysoNC60QvmWfFkYg
d5UTsCk4wLk9eImp0dGDeat3Yf9YXPnVD/YFnetFZMRZDGZj1r0j/1lO4jW/QBZd
80PAjODnp2ThGVbKRYJdl0ev3vhOCrGQ0WvqxRx9AFP/6ZkLoXoilu5xndfQi1IT
/ZOcnzLLdiMaphHV6+pq+cvprnIkG/sLY+p9ZUkXvRqzbpVQKnBDZGfr58PSmrF/
qpGC7e3cb8/Sf01hdLl7WIcrAXsL+6hl2sCB6DhUhDc4S8R8qmawwr6VITmVQNoC
VgPzliJH4taMjVk4zpg2
=hucG
-END PGP SIGNATURE-



Accepted pygopherd 2.0.18.5 (source all) into unstable

2017-02-14 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Feb 2017 19:08:39 -0600
Source: pygopherd
Binary: pygopherd pygfarm
Architecture: source all
Version: 2.0.18.5
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 pygfarm- Collection of add-on modules for Pygopherd
 pygopherd  - Modular Multiprotocol Gopher/HTTP/WAP Server in Python
Changes:
 pygopherd (2.0.18.5) unstable; urgency=medium
 .
   * Correct Cvs-Git and related in debian/control.
   * Bump standards-version.
   * Build fix: use newer source:Version in control.
Checksums-Sha1:
 479c5d2d7ea53c63e72e118b44df145d8fd63d06 1667 pygopherd_2.0.18.5.dsc
 63413628d3d69b84109eb111fd41e041c57272ae 274272 pygopherd_2.0.18.5.tar.gz
 ec3267450adb1d420d1ed7631cdce8c6c7fee494 7604 pygfarm_2.0.18.5_all.deb
 7624d5f96cd97c6956956173ad1ad8c69bd930d1 217864 pygopherd_2.0.18.5_all.deb
 bed7b45d14650bed85b7b5df173f75321c03fabc 5369 
pygopherd_2.0.18.5_amd64.buildinfo
Checksums-Sha256:
 3cce754e5a174afa11dc866eb377f38da8568527a95a0254abb878d4ee72db8e 1667 
pygopherd_2.0.18.5.dsc
 8412474cfddbb6f79f853bdc1d88d580253207da7ab0490a21d7d0e82378aeb2 274272 
pygopherd_2.0.18.5.tar.gz
 1d6f4356ca7b39207df70a4bbe474be9b67f4a13ceb45cc51d05e507ab699c8c 7604 
pygfarm_2.0.18.5_all.deb
 e48b3f6268e7d4bcab02b7e91df39577bb5670e2b96f7e2f9012167a9afe34cb 217864 
pygopherd_2.0.18.5_all.deb
 7c7a73c61c9493ec954870f76f7bffba4c6dbd400efe0cd832b1af977aecff67 5369 
pygopherd_2.0.18.5_amd64.buildinfo
Files:
 7de263e769776e5976f8dc55d1f73640 1667 net optional pygopherd_2.0.18.5.dsc
 71cc57152452d41a7bac4e26940b40cf 274272 net optional pygopherd_2.0.18.5.tar.gz
 84b91e26f4feecff31f31c13379a6608 7604 net optional pygfarm_2.0.18.5_all.deb
 c0663266eff2424273fbf2e13a3a1d23 217864 net optional pygopherd_2.0.18.5_all.deb
 ae8938d0df2ed417303b1852371ca6a1 5369 net optional 
pygopherd_2.0.18.5_amd64.buildinfo

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJYo6tFAAoJEN0p+IRCg57TmloQAJvE1ej0XGIKlwR+EB8VLPVY
RluvF2BmuObfg6+NFe5kkgFzg6HQQOJo/mNgRzaOWugGT5Q7gTP/ElluNYN9Ebqe
YKN/PhBxCqd48P9FkkGKJXB01bsfFXT0n4TbAdFPBCkjGuAhtqiJuM+9NCNMN55v
tBPe0KbgTyrV8rkxuMdXCBkq2vU3eTAgi4+QcKBrS2SVKIsnrVheLX5gmFi2OJIF
1EIbm8MXXPkUHxVqynSW0WHuemYvh+BR7Imw+yvD5TtnuKUwNLT970FLBeslX1fr
EHJkzGzcYvcgmLF4KyCfTxvSs2VWahjjzc1cmouvejZ+/XiSKbu9enxRFNUzEFnD
gi8hU1wrVwdydbLnVLlJnWbBgdXyY+Mp/s4WHlPmif2jMBQgkNoMpxpe9sE6Qov0
b62lNQvqeIFZ4OQZp6wSQmm6XKAO3hy67K6UAbAfribcVDP3yt+AQVMse0fSfff3
SBxvpiOXU9BxCFy8XeNAdSQfcNY267z5OoqZmQPfCSnmwvrsO0FOrgHs41xK5qJZ
YLsOZJirOvcXNqeVtectXNAW38qkIRtxDnGsO/c1HQj5C/menLMjRVakx065tyDc
BoWMam/XQMGNI1HFdmtldsNoFdU3JMijUCQ+U6Z5f2XxbEcKhaQ6COjBtKWTiGJL
PXQ45hfyVvFikeCNog4+
=yZXX
-END PGP SIGNATURE-



Accepted zfsnap 1.11.1-4 (source all) into unstable

2016-05-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 May 2016 21:26:23 -0500
Source: zfsnap
Binary: zfsnap
Architecture: source all
Version: 1.11.1-4
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 zfsnap - Automatic snapshot creation and removal for ZFS
Closes: 742275
Changes:
 zfsnap (1.11.1-4) unstable; urgency=low
 .
   * Support GNU/kFreeBSD.  Closes: #742275.
Checksums-Sha1:
 5a70364149718d0ab70addaf1263c4ee34396695 1759 zfsnap_1.11.1-4.dsc
 93da27d911ec4318f229ff677c0f2a3d11dfb5b6 6577 zfsnap_1.11.1-4.diff.gz
 a0eb2c4af86532c02cb37ca65ef92194f19de7af 15358 zfsnap_1.11.1-4_all.deb
Checksums-Sha256:
 1aabe9e1a02c9ebd873d79bcf358a19c493c28822dfa3a62f30af4c1569a 1759 
zfsnap_1.11.1-4.dsc
 9da079cf2fc18fd21ec1546039157699ea86486a6f6f6d15d116dacdd2a0766e 6577 
zfsnap_1.11.1-4.diff.gz
 5b3352a259df859f041f47b835479534d000e5f044c7a7337762083747ee9535 15358 
zfsnap_1.11.1-4_all.deb
Files:
 3fdc284375a8802c4e0f399fc777ee73 1759 admin extra zfsnap_1.11.1-4.dsc
 2aced0f18c619979e2c34a2873194a63 6577 admin extra zfsnap_1.11.1-4.diff.gz
 f210f68cff6f6508e9f328c5c8622811 15358 admin extra zfsnap_1.11.1-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXS6XnAAoJEN0p+IRCg57TQXUP/3EbL/AgWzsjBbys7zloora7
UgAgJU28aSke/q8URY5oFBqN9O78FwPJA1m+ugxsNiw8nuPLatExt9tIw+0Jj/u4
Q4RBW/03913ftu1HDcLt6kjEeOjDgtw0RoSUQJUP17qLq/OduYM+YB7yOjIui7/O
EmKCNemVnZg/L04iNip3a+UcRJ6WgBtUuJQPYgNJ7cel0vACVqwOnKosh3/Cbkbi
qRToi23FdYtvnZGcgobLeX2T4UzNHeDPKNLYLxcPlCUQ0U4FFJsBhD5nSQU16XhZ
5jzT3/VCXAAMWnvMTHIfORFICg67t/ha4ojsyzfLXppajZoVgV+6UUiim13HK7F3
Ng7skcehi7Lpo54LMPdwGmNT8dm5LUt7QoQtbWHm8aAUbhkksBha29L+FrRNzght
El56xkDGQ/fmQWYC3QMxGkAu7grWuaQhJ0I5JHAh2lcUNHT3XgvTGmLfEmOBeIjd
49Z1BJhuwpU6BpHOHlPkQYr6WMFHLMmfgcPFdtJqQeWI+Erze4736iUbGAObJgiv
zHt1iBsE/jYMWWBa04G7GQK7Xj6hCNUcLDe5HFxAQX1hBuFqddeobyeCUzHcPUhM
5pV874iGvCMrYbwzldVsvdbRMUGyi/X/KzuJfPylSCIC/WFFHH+73va3yPfztbcU
tsrYX7MXpTbqGRmCywB0
=u/Ne
-END PGP SIGNATURE-



Accepted pygopherd 2.0.18.4 (source all) into unstable

2016-05-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 May 2016 21:01:06 -0500
Source: pygopherd
Binary: pygopherd pygfarm
Architecture: source all
Version: 2.0.18.4
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 pygfarm- Collection of add-on modules for Pygopherd
 pygopherd  - Modular Multiprotocol Gopher/HTTP/WAP Server in Python
Closes: 547835 616966 663420 771501 800204
Changes:
 pygopherd (2.0.18.4) unstable; urgency=low
 .
   * Ack NMU.  Closes: #771501, #616966, #547835.
   * Don't crash if Numb= is empty.
   * Migrate to compat 9.  Closes: #800204.
   * Correct a typo in URL handler.  Closes: #663420.
Checksums-Sha1:
 4317e9dfb69a496e3045ac1f8032f4ff3506133c 1656 pygopherd_2.0.18.4.dsc
 b71ef5e243407a20f884353effda36a1eb666808 275990 pygopherd_2.0.18.4.tar.gz
 e97558f048712e83939eba289e290274d1f8cdaf 7508 pygfarm_2.0.18.4_all.deb
 df3a76b66ad819978be34cc60373952a61e31ad6 217760 pygopherd_2.0.18.4_all.deb
Checksums-Sha256:
 3fbfbc60c711f9a7aa5928168358bd7919b53f4c6af846dca812942d938c123e 1656 
pygopherd_2.0.18.4.dsc
 a48a7f1241ee452410f7bdfa324e1ae8648cbe0b92354652a3453a553c34646f 275990 
pygopherd_2.0.18.4.tar.gz
 1eadeadce89e081fce2bef28a11bd1e029230cf503180b25545ac39240791795 7508 
pygfarm_2.0.18.4_all.deb
 698dc8e2c510dd1658c21a8f1e2d17e5b8901c6f14a15f799e9414ee74074e1c 217760 
pygopherd_2.0.18.4_all.deb
Files:
 2d1c8b6ac2e243bfd18ab1df728e6cf7 1656 net optional pygopherd_2.0.18.4.dsc
 a812a43ee2cf26a613b9fc15d0718f5b 275990 net optional pygopherd_2.0.18.4.tar.gz
 20ae666b426a59316e41b9754605183c 7508 net optional pygfarm_2.0.18.4_all.deb
 6abcdc09d86545cb495fbebefa4e2d16 217760 net optional pygopherd_2.0.18.4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXS6HmAAoJEN0p+IRCg57TaxcP/3w3e2ILhHMRSrTBLHjUG6hE
r4LinuPFR2aKqbNrRN7zW/X7rogUVzCLeWZS6MFbNu9FiO+1R5hCZfp4btrgLxHL
BsWO4L9bgyLobNeEK3ygHfhjuhI8wNNIQyb2Omuyrd8ojK0AjF8CaUkY/DUkkoue
aBevQX5z31620MRKjfxJV1HPMpRjTp5UglBsJ+8nYG/RfYx2Qq+NwqrD9QF6aSZu
r2zPld013EA+QAv3HG73HAQjtVuPO+TpznUS9xESUn9PjAFHkWprP27OQPrgxvuI
svm0thoH/35/WF1iWfVEfUF54Ikcsjb4KpqwV5AcCf9lLJ+Tgn2ls2Eko9BOTFmo
b+1BWpdb/B0nW0wDfxZtP5cQJGvi1KqoouAiOlmeRJMmWtnpAoRq02APWJ/RnU3i
D7l2q6TWq1ggneVxRJSO7ND1LrA2tpltZxIImTYhKnm+1xUoQHgpoK4zkfSEZhFe
b/UEqLKibAgENF+brbEbD6/mJ+856u0bijZkigfSaIzG+VvX7/88eEbNvMHP6NUv
aAsJ+iOasni9mB+cKSvy4eIatgzpuI6ZY4iBvu81sG+Vc8xPvsB09xsyUUZ0za8y
vEtL/Vq3mJN+w+1/t3a2FmubEuAde7J+UF0+k6hWGjJ9Sykr0tkS4P/3xY7s5quN
mr/v3bAMfM2jOBwS906r
=P8FC
-END PGP SIGNATURE-



Accepted nglister 1.0.2 (source all) into unstable

2016-05-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 May 2016 21:34:35 -0500
Source: nglister
Binary: nglister
Architecture: source all
Version: 1.0.2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 nglister   - Downloads information from NNTP server
Closes: 571481 786182 817594
Changes:
 nglister (1.0.2) unstable; urgency=low
 .
   * Ack NMU.  Closes: #786182, #571481.
   * New debhelper compat 9.  Closes: #817594.
Checksums-Sha1:
 81d233a0992c9bb2caa725558aaea2a8af51a6f5 1400 nglister_1.0.2.dsc
 a194eccb885929114801bf9f73e7a24b0aff4a37 28490 nglister_1.0.2.tar.gz
 7477b19aaf426ccdab258842a0b825ed72eef08a 21364 nglister_1.0.2_all.deb
Checksums-Sha256:
 3e3eff6f574001cf5f7f97df0b8870f23114bed65100aac2145843beea074568 1400 
nglister_1.0.2.dsc
 cd384918fd0179229fe8f5b8f1837c913ca4d4189ae44a87fc7f2efc33a6d236 28490 
nglister_1.0.2.tar.gz
 df51881f57f82ff97c26b77ebc8d9431b1d1bc8077bb3470a11249367651ca7a 21364 
nglister_1.0.2_all.deb
Files:
 e6b903ce63cc24df4de1db25eb329a6f 1400 news optional nglister_1.0.2.dsc
 351336558509cd9c85eb8d2fdf5e85fd 28490 news optional nglister_1.0.2.tar.gz
 38f9b28b15c5e7c13316d67317e0abf5 21364 news optional nglister_1.0.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXS6c2AAoJEN0p+IRCg57T+gAP/AuI7sx2rL4VfBqeuu63ieBZ
Og0PH2OQC1BYs5+XJBdtyl4X6jRutJqWKdgihm8oclvPWhfo2XwHLmYANPLcv7B3
xPDHpTevbRwFIfoWNnJCZR9knc8gClt5sTELmXGTCX+rCbjLX5TsbjvSeHIFF1CL
TmXeE8p/iTSDFRcpo5eIYhLhWIeXXsGgJR06azdxTmlTsyDc4XR+F9ASdGKyuS11
h+IIQyHbbG7Fi/9HHOS+9QCidgvOrTE8HgultZvlZhe0ZznSosVnYB7cWmtYySIL
zCuYfmQELOz3mPNG0+EFTbbgSBharF68R7X1Z9PccbBFmBmwxYTUtDkI0Apu3r1Q
PDn9QuNAFgU1le5qbZLnCBRaWcuWJAexmF2Ds8uDnJnF/fIDYG6x4Zl4YKToaxy8
6kJyC/Fq3igUa6GsQHZuEK7YTeIgNkl/4Ggb7inHyf6OYXwYhaWXTpo4WPty7mzt
pEf+eK18OYKvpuB3v5HTKd/xJSOlP/TY+QrN0+nRNmj3Gahq1GoMMAkGS675VsFl
mp/fRsXiM820HAfeXLo5of6WNnzzqhlGGD3mojG8C5WcV6obpiXOt+g8CuNrSou6
gDEr9eLK87kJeZIwKAmuyYJQTy9sxLIMChn5yBt3RzSr7MgTdQooKprLudBj+LsB
ZNB/yqythBWXUIcxIKyt
=tc0q
-END PGP SIGNATURE-



Accepted netmaze 0.81+jpg0.82-15 (source amd64) into unstable

2016-05-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 May 2016 21:41:47 -0500
Source: netmaze
Binary: netmaze
Architecture: source amd64
Version: 0.81+jpg0.82-15
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 netmaze- 3-D Multiplayer Combat Game
Closes: 437619 503035 726040 778200 793731
Changes:
 netmaze (0.81+jpg0.82-15) unstable; urgency=low
 .
   * Ack NMU.  Closes: #726040, #503035.
   * Make builds reproducible.  Closes: #778200.
   * Make mtimes reproducible.  Closes: #793731.
   * Use dh_strip instead of install -s to strip binaries, thus
 handling nostrip build option.  Closes: #437619.
Checksums-Sha1:
 de8ecd0f3b084de53361c792d44c8b1024bbca62 1760 netmaze_0.81+jpg0.82-15.dsc
 57b87705e57b6f8ccb30ead0c7d76ad60a3b4034 41303 netmaze_0.81+jpg0.82-15.diff.gz
 1dbf47c6194be3a338a40779dd1e6289991f1cf5 263430 
netmaze_0.81+jpg0.82-15_amd64.deb
Checksums-Sha256:
 1eacfc2d5cfd22356779e022a95442828c7b7aaf0920ae53c2404be4673a3e2a 1760 
netmaze_0.81+jpg0.82-15.dsc
 6219ea3a9be91dafab0c6073e5e959dc408fd362f06a8a2c8f80b9813a2b3dbd 41303 
netmaze_0.81+jpg0.82-15.diff.gz
 09dff8d75c631b533556bba46102ed52b633575db2382047f82b8ddec1f82045 263430 
netmaze_0.81+jpg0.82-15_amd64.deb
Files:
 cc03dbbc4b87d3735330087f64309fdd 1760 games optional 
netmaze_0.81+jpg0.82-15.dsc
 4b2fa988fe943d9e56e65bb477240ce6 41303 games optional 
netmaze_0.81+jpg0.82-15.diff.gz
 62df06602052de7136dceaf50b136265 263430 games optional 
netmaze_0.81+jpg0.82-15_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXS6ubAAoJEN0p+IRCg57TFNkP/iL4XjR5Nowc/rps5bt/6HjX
B0AtkYh+1bQHC5qsVcwY6JXNltGWtrnjUCJqwqzEBA75RhNXXgE3TxIXLzAQrdU9
ilRW11COHYUHaK7nwd3BaSHYFP47G4c6sqrb7ItiIKYEFohCb8BEw5hhapILTJ9M
NCU61utHykHlwuKxmZkx9GFZdYfF9/iIkkleFtZUxx/eNFd75G/VsmYzgJiEtDxm
3Hs3ItS3Nrr/sXUF9XkF1cLTM0wGNJlQWXGPIjVIpoCZRP01csBamZ5mb6B/zVjX
uzRDWJkvfdaow2Id4lYEBAhtnrZLsHqEvIFX4wPq23ilEGZ0ElmXuAjdiDSn5onc
4gpdrCZu93GKja7Y4kOmqEPKZOBMVy84WpAQI55bdUZovcPiT3ednqZlJNnpzIqm
mJtyX0gKLsNG+mztcunAzxvtfl9mvkoQYq4Gj4AXVkho3NLZamA83kJ/94QOay2S
Fm3rszM/w4PYd1N+EQvNu0LT2uFbfWq9u9DXwl/fxthO3Lx5qioSSd302BhXenF0
UsucRt+6RgwOBKWz8Yffy/l2sy4ICYpjBzolwiWmr+sLLW8ZTa2OG/09jkCdVS4y
PSTGG58lrlC5N1KI7FoErbXoqJAm3HVLP7eXMmcZXRqZwpGlX0EiPgMS5sN7qmHo
Vx/9FAbyJRUPJ5/eC84K
=Lat3
-END PGP SIGNATURE-



Accepted gopher 3.0.16 (source amd64) into unstable

2016-05-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 May 2016 21:18:52 -0500
Source: gopher
Binary: gopher
Architecture: source amd64
Version: 3.0.16
Distribution: unstable
Urgency: low
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Closes: 817485
Changes:
 gopher (3.0.16) unstable; urgency=low
 .
   * Bump compat to 9.  Closes: #817485.
Checksums-Sha1:
 f3c843f6e5025cd164b3d53e19ffc7420ffd4e47 1397 gopher_3.0.16.dsc
 26b48c7b2551decc762f62a701610c5bd70b3bdc 324413 gopher_3.0.16.tar.gz
 bdc48d2df686b5a1ffb6f777f4de08b5131ee463 180660 gopher-dbgsym_3.0.16_amd64.deb
 72b69ade5b2e86cab568b626e39b6996eded5721 106982 gopher_3.0.16_amd64.deb
Checksums-Sha256:
 01075a46e138aa34292367e13e9f86bfc33753039ffed3ab73298fbac590dd6f 1397 
gopher_3.0.16.dsc
 7af661f7cce7d3b11ef2b595230d5b575f7ecb9f840a5edfaea6d284369b57bb 324413 
gopher_3.0.16.tar.gz
 323614c1631da5a85765ac2c22336cf66b724a81dc6a7ec4ec06326b5460efba 180660 
gopher-dbgsym_3.0.16_amd64.deb
 b6a5d5296be962b18ab2d3546262b8c81413a8a2cf00f77b61349c4d548db4c2 106982 
gopher_3.0.16_amd64.deb
Files:
 345e193b1fef8cbdf9450118ccd6dcc9 1397 net optional gopher_3.0.16.dsc
 dbc1e088e6b150a28dbf92137ca5a8c0 324413 net optional gopher_3.0.16.tar.gz
 8e9f2cf9779b5519fc9be9bc46f20efd 180660 debug extra 
gopher-dbgsym_3.0.16_amd64.deb
 60ebde9682b805cd0c1fdc35acc6ae31 106982 net optional gopher_3.0.16_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJXS6Q9AAoJEN0p+IRCg57TpMUP/0tc0SzmYFpUzQuK74NEkizc
hEh6O5COiIUB67jg+4G5VdOw5EvDF5juM/AqvExL1wuAsnVWiP/nVCjdS8NATBgf
RctCPF74TJrfgWtSsd3Puo/d4J+ja20xvwI640OY57sZmWm9f5ESHeMz4xsaDtoS
O+KMrG/TLjC2SGNAgYGklxEdyZFYVojYLqc2gU3RCsToNKwrfbh7vFAdxNridl/U
PlIsdb314FP1yuCJ0BtAs5e6nujK2s36hsADlEJfwTg+dGNL+PzJ99CFNSxkcVYM
f1biHiye3uf6T/7771+ZTcCMMaZ2XjQJX1F+A5ft9zQfFPRrUQOZeQ+P7nKzPJdY
UmwQg9QCYdgWIH6FjQyBe5vaQc97tI24frcym0MY2X8ZY+1C+umOabo3R71aqPPs
IIVcmMUNg9EWw/acoNNjEjElGmMZvZoRFucStAYXugYFzEsDC12y3l8BoWFlkuI4
4an2USJeKrlw3zRYOuf4hLw4gxz4ipHh/nA/u0t4rjraGcGDXJzmELDbg1hwx94V
owUubAIN/faXoeVtANJYIqZv6mdmFuhzRO5tGc3HHVRmxFCh8L+U8gTPr5faotxV
COOF1c+6UGxfwNems95uyT5WhTZgxO8hX16yUfF7AFBI9gkLuqOJgo6a/DJGuo1m
uMivqTPxXVlB3Vq/Q96h
=a1xU
-END PGP SIGNATURE-



Accepted gopher 3.0.15 (source amd64) into unstable

2015-11-12 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Nov 2015 19:00:08 -0600
Source: gopher
Binary: gopher
Architecture: source amd64
Version: 3.0.15
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Changes:
 gopher (3.0.15) unstable; urgency=medium
 .
   * Correct possible segfault in option parsing.  Closes #715977, #715978.
Checksums-Sha1:
 f27d08f5f7f6434029ce80286039a7b26780b7e7 1401 gopher_3.0.15.dsc
 cbc5986ad474d451b0072faa5a67cf10690ec8a3 326891 gopher_3.0.15.tar.gz
 72ff8361eb3b704779da8b8a0dacb1d9898483ad 106738 gopher_3.0.15_amd64.deb
Checksums-Sha256:
 2d6d0af67edbb7b110401c18f28b98dd27d1fd89a7e62d1bbee9aeda3f2a9315 1401 
gopher_3.0.15.dsc
 2102857e9d6704480fbc163bf89461f12454733a69f676718a80d4f834018ecf 326891 
gopher_3.0.15.tar.gz
 aa9b045a2bd3aab7489b241f3935b1f48e16793e703cb99aa5a5f63dec1e1119 106738 
gopher_3.0.15_amd64.deb
Files:
 5e1fe5c68b3fc7ce6bf1d669799abaa6 1401 net optional gopher_3.0.15.dsc
 b77bcf81310c5a7fd152e564949c9b32 326891 net optional gopher_3.0.15.tar.gz
 f89aa4fad522d376601d5c386e4b11ac 106738 net optional gopher_3.0.15_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWRTaRAAoJEN0p+IRCg57TfwAP/jMjP7tbDu89ZeCZ1B7aMw3s
P7sgxfpOuYbYFatO5nxLKnSnUTGsD/mQqYsiKwx4un5qd1+1kRXrP5Tat7ctmL1r
SKWzaAgJVnNW5+jpkfyExhceNL1PTVAGgus8xyD3Tu7Y7TrtmdoFzvQDWq4SyJ0n
nC/ycvoKZOi2nY/RjEsP+VJVegaT2EdkO+jYezLV/goRkVAujTC6/fv0UI/hjHz5
ljb0OZvJCJVvNWZ5o3oDE1EA2MeYhmc1/irLMkePM8VowpTH1v3Cn4rI03ej4U8T
wsxFA1YabhwCglukthMWzx+TCGvMU/p0N7/XHPEgvgxplQ32XD2g5ylXzHnZStnd
XJMfnsu3aCnGxUKy6CdU8MP1o3GAwsD2GSjYJR7I0UrhWHYm/6KJ81NNAEUbiJAc
f2b0GWAGtCNF2gsVC/JNb9ULSKySsornB0f2Bjqd8vHTgrdj2Yb3OFin5lEYav3g
DeBuwIQhDkM8mUMwZx0ZLFmHN94isYmF855mDJvhwnI1/9KeT07b/Nmb92BX4XwL
uHfKlt+NPtQFZO+bCAUvoGZvjYDz1osJkppHxK5u+nQ3NaM6/gbROILJX6iMCRTJ
+WsH6BjFpNdK5ZVxWxJHZkOtGjoh9DdOjLm5GwwZHpKeHDvLLe6b5h4MKcDEhkFJ
bZJteLSL9XnwlFy0bN/e
=Bptc
-END PGP SIGNATURE-



Accepted gopher 3.0.14 (source amd64) into unstable

2015-11-12 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 12 Nov 2015 11:47:19 -0600
Source: gopher
Binary: gopher
Architecture: source amd64
Version: 3.0.14
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen <jgoer...@complete.org>
Changed-By: John Goerzen <jgoer...@complete.org>
Description:
 gopher - Distributed Hypertext Client, Gopher protocol
Closes: 798758
Changes:
 gopher (3.0.14) unstable; urgency=medium
 .
   * Fix Debian (Closes: #798758) thanks to patch from Axel Beckert
 + Use autoconf and gnulib instead of autoconf2.13.
 + debian/rules: configure-stamp is a dependency of build-stamp, not build.
 + debian/rules: Add symlink to /usr/share/gnulib/lib/getloadavg.c and
   remove it again in the clean target.
Checksums-Sha1:
 21548553ef81d7df1704b3bea174d58651bba528 1401 gopher_3.0.14.dsc
 45cc7896c2aa63a54fba25d9e2e47c4806bcbf96 326547 gopher_3.0.14.tar.gz
 1e65282c0f5d62e0468c16d0006ea6800ab2cda6 106762 gopher_3.0.14_amd64.deb
Checksums-Sha256:
 962a03ac6068b50a37ef539463c038e9de9529994d442e288c822a0470a3509e 1401 
gopher_3.0.14.dsc
 1220942950ab236a8d3796f2dadeddd8151a6e0c2cac0e358a5c4733786e1d90 326547 
gopher_3.0.14.tar.gz
 3f39568fbe0dc79e594e89817b71a8897331aaf7d22ac264730577a6ba6c347f 106762 
gopher_3.0.14_amd64.deb
Files:
 51355cb80d493f5e3030c719eee47a42 1401 net optional gopher_3.0.14.dsc
 abe348b5b82416462a018593fcc0d5d5 326547 net optional gopher_3.0.14.tar.gz
 1b8b41948df284bd9dac6a796c357309 106762 net optional gopher_3.0.14_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWRNN7AAoJEN0p+IRCg57T6skQAJy65a8HG+QoKAaVO2C/5BO3
tZL6rrtIH+pfkZeLfE058ahOkZGm3DXWk8wBGBUT+Va1L9W2cfkqoA0mx7zsVHJw
lkiGPllE4PAZuPLTHSdcwvNXzg0YqZpUXt10o3GBZn9X9eAbut8nghMWFsU0E/2H
uC4ox/MGt9BT/x3AjZdraTgXqEUUqwxrQmQAML4Gk3M+HiALCzetjMo+yqMFSydc
9/nJcZBdvSBZJjHt1p9nUQ9tTyCAS4zb+NtkXgP+tvVFji3ROog45DhNDUSG3sUY
eY85y8KntCup3q92C5ueRdeOK2Bi5DV0mqWG5Y+J3aUy6nOWtBasyvGrzeAXxCqm
RDjLZFZxgr2ss7XDsNFuiyx82Mm9y0bWhGlfZpogiV3wEghZcqVfV+vNrlIi0mKz
az6Hpb/hViixzOA6h9zZeifgpuaJ8Dsuhrcvz8ueKtgZ5XG6lZNpbvZq9KByWKpK
bw3MubAybC/DU1Mi7hZnj2LsLRrGV2wgZjwbp/Whyhg37lv+H9uV6dcgyoRwNQsJ
sIOlqhpXUEgK/QKmpgvAi0GI87VVeLXMeETxVp0gx8MX1InHLF2hm6JRNFQXNrAX
UFzMnDWwXUSbhPUGHUknGBzMJaNrcTAWrtK7FzZVvde/xQ3v+KjrQgvc4XvnS6PY
FFjbtmyIoBYoKNsetimR
=9Lz2
-END PGP SIGNATURE-



Re: Debian with HiDPI / 4K displays

2015-08-11 Thread John Goerzen
On 08/08/2015 01:58 PM, Daniel Pocock wrote:

 I recently started using a 4K display with Debian jessie and GNOME shell

 The hardware setup was quite straightforward as I chose to buy a new

There is also an understated problem - DPI changing during a session, or
even different monitors having different DPI in a multihead situation.

This seems to be particularly poorly supported, but is rather common. 
My laptop is 1920x1080 in a 12.5 display, with approximately 176DPI. 
The external monitor on its docking station is a more conventional DPI.

There are many questions here:

  * Simplest: When I use one monitor at the time, does the OS do the
right thing with the only enabled display device changes to a device
with a different DPI?  (No, it doesn't; there is no automatic DPI
changing.)
  * Then: Does the OS do the right thing when there are two non-mirrored
devices with differing DPIs?  (Not really)
  * Does the OS do the right thing when a connected device changes
configured resolution, changing DPI?
  * Finally: Does the OS do the right thing when a display is mirrored
across two devices with diverging DPIs?  What even IS the right
thing here?  Probably stick with the DPI of the device that got in
first.  But what is that device when both an internal and external
display are connected at boot?

(Note: DE here is XFCE)

There are many things that seem to not handle differences in DPI.  Fonts
are just the start.  What about taskbars and taskbar icons, which become
tiny at certain DPIs?  We seem to be using pixel heights in these a lot.

John

 graphics card with 4K support and a relatively new monitor.  The
 graphics card and monitor both support DisplayPort 1.2 so I just hook
 them up with the standard cable.

 The graphics card vendor supplies a proprietary driver but everything
 else is currently running using the packages from jessie.

 However, I've come up against the DPI issues.

 The actual DPI is about 131x137 on a 32 display.

 xdpyinfo reports 96x96

 It looks like there has been a history of bug reports about DPI in both
 the Xorg server itself and some individual applications.

 Some web sites suggested using gnome-tweak-tool to change the window
 scaling factor.  It only appears to accept integer values and changing
 it from the default of 1 to 2 makes the fonts too big.

 So, is there any strategy for HiDPI with Debian?  Is a BTS tag needed to
 track such issues perhaps?  Or is it already dealt with in unstable and
 people just have to wait for it?

 My general feeling is that the 32 4K display was a worthwhile purchase
 and it definitely lets me improve my workflow.  For example, I can now
 have all my communication tools (Icedove, IRC and others) arranged in a
 single virtual desktop, none of them overlap each other and I don't have
 to use alt-tab to switch between them.  In another virtual desktop I no
 longer need to run Eclipse at full screen, I can just give it two thirds
 of the screen and use the rest for testing things.  However, all fonts
 are really tiny, they are readable and even pleasant to look at but I
 would probably like to see them just a little bigger.

 Regards,

 Daniel





Re: State of Roundcube packaging in Debian?

2015-03-15 Thread John Goerzen
On 03/14/2015 07:36 AM, Vincent Bernat wrote:
  ❦ 14 mars 2015 11:11 +0100, Dominik George dominik.geo...@teckids.org :

 I found out today that roundcube was removed from Debian testing due to
 some unfixed bugs. I investigated a bit further and found that:

  - 1.1.0 has long been released upstream, but:
 - the watch file never picked it up, and
 - the package VCS is stuck at an unreleased 1.0.0
  - A partially fixed package was uploaded to unstable in January,
but was not unblocked, and
 - is not in the package VCS

 Could you please elaborate a bit on the state of Roundcube in Debian,
 and what I (or others) could do to get it straight again?
 The package is team-maintained but none of the maintainers have time to
 take care of Roundcube. Hence, the removal from Jessie. The main
 difficulty is to handle the 0.9.5 to 1.x upgrade where the configuration
 files change.
I assume you mean the config files change in some dramatic way; that is,
some way that means the existing files won't work anymore?

If that is the case, why does this have to be a big deal?  Couldn't you
just warn people that the upgrade will break their config, point them to
the docs, and call it good?  After all, if that is all upstream
provides, isn't it better than nothing?


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5505edaf.1040...@complete.org



Re: free choice in installer?

2014-11-10 Thread John Goerzen
On 11/10/2014 04:15 AM, Michael Ole Olsen wrote:
 If there was a choice in the installer for Init system and boot loader there 
 would be nobody complaining.
But here my point is to put it in perspective.  Somebody isn't going to
get their way on this, whether it be the system they prefer as default,
or level of possibility for using something different.

It doesn't matter that much.  Truly, it doesn't.  Jessie will still boot.

We have defaults for all sorts of things.  I probably grouse a little
when I'm on some bare system and it has nano but not vim.  Proper
reaction here: *grumble*   oh well.  Use nano for the task at
hand, apt-get install vim-tiny, and move on.


 People only complain when there isn't a choice and they are forced to use 
 something new.
That attitude is the enemy of progress.  The history of Linux is a
history of people being forced to learn something new.  Or to put it a
better way, of people /getting/ to learn something new because of new
features.  Linux has added loadable modules, we have multiarch support
in Debian, we've added hardware autodetection, udev, ext[34], btrfs,
LVM, parted, SATA disks... the list goes on and on.  If everybody had an
immediate negative reaction to change, we'd all still be using DOS.

Perhaps what you mean is change without good reason.  I agree that can
be frustrating.  I think the debate here is whether there is good reason
for the change.  As we have seen, reasonable people disagree.

My intent with this message is not to advocate one position or the
other, but to suggest that although convictions run high, it's not worth
getting angry over.


 I.e.
 forced to use ext4 instead of ext3

 forced to use grub instead of lilo

 forced to use systemX instead of systemY

 forced to use GUI desktop crap when they want a server (ubuntu)
There is a cost to choice.  Perhaps that is part of what the discussion
is about: is it worth it?

Here are some more examples where there is no choice in Debian:

no python1.5 or python2.6 in jessie
emacs24 instead of emacs22
XOrg instead of XFree86
udev and initramfs pretty much must be installed by default
can't run it on a system with 16MB RAM (rex's stated hardware
requirements were 4MB RAM and 40MB disk)
can't install it from floppies
can't run it on an 80386 CPU

Some of these are, at first glance, regressions from earlier versions. 
There are reasons for this.  One is that it takes effort to maintain
lots of different options, and nobody has found it important enough to
put in all that effort.  Another is that certain options/requirements
(systems with only 4MB RAM) are so rare these days that trying to
support them would cause a lot of inconvenience and extra work for the
vast majority of users or developers.  For instance, initramfs and
loadable kernel modules give us hardware autodection that works better
than it does in Windows, and requiring a bit more than 4MB RAM is a
wonderfully small price to pay in today's world for that feature.

Some of the above were controversial at the time.  There are also plenty
of examples where there is abundant choice in Debian (architecture
support, filesystem support, desktop support, editors, web browers...
the list is vast.)

Again, this message is not about saying what option is preferable.  It
is about pointing out that reasonable people can have different
opinions.  And, most importantly, that what happens in the end is that
the project is still here, Debian still rocks, and the world moves on
(or at least ought to.)

John



Re: A plea to worry about what matters, and not take ourselves too seriously

2014-11-10 Thread John Goerzen
On 11/10/2014 02:13 AM, Raphael Hertzog wrote:
 On Sun, 09 Nov 2014, John Goerzen wrote:
 Debian is a making-the-world-better project, a caring for people
 project, a freedom-spreading project.   Free Software is our tool.
 [...]
 My plea is that we each may get angry at what matters, and let go of the
 smaller frustrations in life; that we may each find something more
 important than init/systemd to derive enjoyment and meaning from. [5]
 Thank you for your message.

 It might not be what I was thinking when I joined Debian but over time
 it has became clear to me that there's more than just having fun building
 the best operating system, though this is still a core motivation
 and we should be very cautious to not destroy the fun others are having,
 even when when we don't share their opinions.
Thanks, Raphael.

This is a really important point that is easy to lose.  I probably am
guilty of that from time to time myself.

Sometimes there is a cost to being right, or to convincing others to
follow what you want - the risk of taking the fun out of a volunteer
project, of alienating people that feel otherwise.  It is hard to judge,
especially with a project made up of people that rarely see each other
in person.

When a bunch of technical people get together as volunteers to build
something, it takes both technical and social skill to complete the
job.  We put the former on a high pedestal with good reason, but
sometimes neglect the latter.

We clearly have a lot of work to do, but we have also come a long way. 
Some of us remember the days before an elected DPL, or before we took a
strong stance against poisonous people on our mailing lists, and I can
assure everyone that this project has made a lot of social changes that
we should be proud of.

And we have a lot more that needs to be done, too.

John


 To all the persons who are going to be disappointed, please follow John's
 advice or find a better way to channel your anger into something positive
 (either in Debian or somewhere else, it's not a big deal). Don't use it
 against other Debian contributors, because you would only contribute
 to destroy what we have built together.

 Cheers,



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54613bf0.7000...@complete.org



A plea to worry about what matters, and not take ourselves too seriously

2014-11-09 Thread John Goerzen
Good afternoon,

This message comes on the heels of Sam Hartman's wonderful plea for
compassion [1] and the sad news of Joey Hess's resignation from Debian [2].

I no longer frequently post to this list, but when you've been a Debian
developer for 18 years, and still care deeply about the community and
the project, perhaps you have a bit of perspective to share.

Let me start with this:

Debian is not a Free Software project.

Debian is a making-the-world-better project, a caring for people
project, a freedom-spreading project.   Free Software is our tool.

As many of you, hopefully all of you, I joined Debian because I enjoyed
working on this project.  We all did, didn't we?  We joined Debian
because it was fun, because we were passionate about it, because we
wanted to make the world a better place and have fun doing it.

In short, Debian is life-giving, both to its developers and its users.

As volunteers, it is healthy to step back every so often, and ask
ourselves two questions: 1) Is this activity still life-giving for me? 
2) Is it life-giving for others?

I have my opinions about init.  Strong ones, in fact. [3] They're not
terribly relevant to this post.  Because I can see that they are not
really all that relevant.

14 years ago, I proposed what was, until now anyhow, one of the most
controversial GRs in Debian history.  It didn't go the way I hoped.  I
cared about it deeply then, and still care about the principles.

I had two choices: I could be angry and let that process ruin my
enjoyment of Debian.  Or I could let it pass, and continue to have fun
working on a project that I love.  I am glad I chose the latter.

Remember, for today, one way or another, jessie will still boot.

18 years ago when I joined Debian, our major concerns were helping
newbies figure out how to compile their kernels, finding manuals for
monitors so we could set the X modelines properly, finding some sort of
Free web browser, finding some acceptable Office-type software. 

Wow.  We WON, didn't we?  Not just Debian, but everyone.  Freedom won.

I promise you - 18 years from now, it will not matter what init Debian
chose in 2014.  It will probably barely matter in 3 years.  This is not
key to our goals of making the world a better place.  Jessie will still
boot.  I say that even though my system runs out of memory every few
days because systemd-logind has a mysterious bug [4].  It will be
fixed.  I say that even though I don't know what init system it will
use, or how much choice there will be.  I say that because it is simply
true.  We are Debian.  We will make it work, one way or another.

I don't post much on this list anymore because my personal passion isn't
with posting on this list anymore.  I make liberal use of my Delete
Thread keybinding on -vote these days, because although I care about the
GR, I don't care about it enough to read all the messages about it.  I
have not yet decided if I will spend the time researching it in order to
vote.  Instead of debating the init GR, sometimes I sit on the sofa with
my wife.  Sometimes I go out and fly the remote-control airplane I'm
learning to fly.  Sometimes I repair my plane after a flight that was
shorter than planned.  Sometimes I play games with my boys, or help them
with homework, or share my 8-year-old's delight as a text file full of
facts about the Titanic that he wrote in Emacs comes spitting out of the
printer.  Sometimes I write code or play with the latest Linux
filesystems or build a new server for my basement.

All these things matter more to me than init.  I have been using Debian
at home for almost 20 years, at various workplaces for almost that long,
and it is not going to stop being a part of my life any time soon. 
Perhaps I will have to learn how to administer a new init system.  Well,
so be it; I enjoy learning new things.  Or perhaps I will have to learn
to live with some desktop limitations with an old init system.  Well, so
be it; it won't bother me much anyhow.  Either way, I'm still going to
be using what is, to me, the best operating system in the world, made by
one of the world's foremost Freedom projects.

My hope is that all of you may also have the sense of peace I do, that
you may have your strong convictions, but may put them all in
perspective.  That we as a project realize that the enemy isn't the
lovers of the other init, but the people that would use law and
technology to repress people all over the world.  We are but one shining
beacon on a hill, but the world will be worse off if our beacon winked out.

My plea is that we each may get angry at what matters, and let go of the
smaller frustrations in life; that we may each find something more
important than init/systemd to derive enjoyment and meaning from. [5]
May you each find that airplane to soar freely in the skies, to lift
your soul so that the joy of using Free Software to make the world a
better place may still be here, regardless of what /sbin/init is.

[1] 

Re: Allow encfs into jessie?

2014-09-12 Thread John Goerzen
On 09/12/2014 06:46 AM, Jan Niehusmann wrote:
 A common use case for disk encryption is to protect a lost or stolen
 laptop. And the adversary is not some powerful agency, but a curious
 person browsing through the hard disk before formatting it.
 
 I see no reason to assume that encfs is not good enough for that use
 case, at the moment.

There is, of course, also the problem of: what will people replace it
with?  I would suggest that some level of protection is better than
none, and that the most likely outcome of removing encfs is no
protection at all for a majority of users.

Probably the most common suggestion, and only real option I am aware of,
is ecryptfs.  (LUKS and dm_crypt solve different problems.)  Compared to
encfs, ecryptfs is extremely difficult to use.  For instance, by
default, unlike encfs, you cannot change the password of ecryptfs data
because the passphrase is directly transformed into the encryption key.
 After poring over poorly-documented things, I found a suggestion of how
to work around this:

1) Generate an encryption key with

od -x -N $bytes --width=$bytes /dev/urandom | head -n 1 | \
sed s/^000// | sed s/\s*//g

2) Pipe (I think!) the output from the above into
ecryptfs-wrap-passphrase to encrypt it

3) Before mounting, run ecryptfs-insert-wrapped-passphrase-into-keyring
pointing to the file saved in step 2

4) Save your precise mount options; in my case,
ecryptfs_unlink_sigs,ecryptfs_fnek_sig=longstringhere,ecryptfs_key_bytes=32,ecryptfs_cipher=aes,ecryptfs_sig=anotherlongstring

5) Use those precise mount options later

(These steps are rough; they may need a little tweaking but are close to
the mark.)

This is not friendly.  At all.

Additionally, although the ecryptfs audit at
https://defuse.ca/audits/ecryptfs.htm produces fewer red flags than the
encfs audit did, still its conclusion says there are some red flags
indicating it was not designed by a cryptographer.

I also found mysterious bugs attempting to share the decrypted view of
an ecryptfs volume using NFS.  Finally, encfs has an interesting reverse
crypto mode where it presents an encrypted FUSE view over a plaintext
mountpoint.

I can't find anything in the ecryptfs manpages about whether they're
using SHA or MD5, but this RedHat bug from 2009 suggests it's using MD5.
 https://bugzilla.redhat.com/show_bug.cgi?id=490918  I do not know
immediately why this was a red flag in encfs but not ecryptfs.

I should also note that even if the authenticity features of encfs are
less than perfect, it doesn't mean the package is useless.  A person
may, for instance, care more about the encryption than MAC features.
From what I can see, ecryptfs doesn't even have MAC at all.

Let's warn people about things, of course, but drop something that's
useful if not perfect?  I don't think so.

Encryption, for a lot of people, is making onesself a harder target.
Let's face it, encfs, ecryptfs, dm_crypt, anything like that is probably
not going to completely protect a running Internet-connected machine
from every possible well-funded adversary, since once the encrypted data
is mounted, it is accessible until the machine is turned off.  Physical
keyloggers, social engineering, etc. can also be a threat.  None of
these tools is perfect, but they are all an *improvement*.  If a laptop
is stolen from a coffee table by an opportunistic thief, and I know its
screen was locked and the data on it was encrypted by one of the above
tools, I can pretty much rest easy that at least my data is safe.

Transparent encryption can be an important layer of data security, but
it must not start or stop there for those truly concerned about it.

John


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5413261c.20...@complete.org



Re: Trimming priority:standard

2014-09-12 Thread John Goerzen
On 09/12/2014 02:27 PM, Barry Warsaw wrote:
 On Sep 12, 2014, at 07:18 PM, Jakub Wilk wrote:

 I'm looking forward for systemd-mta.

 It's inevitable. ;)

 http://catb.org/jargon/html/Z/Zawinskis-Law.html

 -Barry
Just wait for systemd-emacs.  It would obsolete... all of gnuserv!





Accepted zfsnap 1.11.1-3 (source all)

2014-06-21 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 21 Jun 2014 10:47:01 -0500
Source: zfsnap
Binary: zfsnap
Architecture: source all
Version: 1.11.1-3
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description:
 zfsnap - Automatic snapshot creation and removal for ZFS
Closes: 750487
Changes:
 zfsnap (1.11.1-3) unstable; urgency=medium
 .
   * Adding dependcy on bc.  Closes: #750487.
Checksums-Sha1:
 ab000703085f8f599e25fddeb9149a6c9f3ff078 1785 zfsnap_1.11.1-3.dsc
 1180a228a3ec327ac11798bd7ca07b17ee1bc81b 6380 zfsnap_1.11.1-3.debian.tar.xz
 9c17d6a07b9898e1abc8da467a76a7f6123c3666 15334 zfsnap_1.11.1-3_all.deb
Checksums-Sha256:
 4a0773cbfcb68077a55a544812fbcefc56f059721ff64158a093d3128b9d7a0f 1785 
zfsnap_1.11.1-3.dsc
 d3f9bbb42ba79b9639cf711946c3734585876adb7af6b0edac0d18f1c201c982 6380 
zfsnap_1.11.1-3.debian.tar.xz
 534452e8ba174cad75a3402adc5c01a2c84c7febaed58875d8984fdc59a9b373 15334 
zfsnap_1.11.1-3_all.deb
Files:
 16439470b2f781aa05026070f33e6498 15334 admin extra zfsnap_1.11.1-3_all.deb
 258687444166fb1f67289cf4ed6d50b8 1785 admin extra zfsnap_1.11.1-3.dsc
 e27c564f66d9627a4f4250d9aa11e176 6380 admin extra zfsnap_1.11.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTpakuAAoJEN0p+IRCg57Tg5UQAJwhxG9CuP4Fivmtwt6UYzB5
3eblFOhR97i1ftZpVk90qzFUOHM1CtDYJHk/Dg/C+NSNLBBHn/mkqZi0A/KE89wW
l2N4kVV4obSbl2d0rN64B8mRXgPgGXUwo2PYHODurP0YOjt+sxIL6P0lJTS4WnQ2
3WkzkzFIRuv2sKT9gE65aUhdS3bQwd2ktyl/DzSZT8NCQ3PjuCvZqNs+VOizHHDT
xfDMTfkPMCngyYe/OkGssZM2uPY9MyRucPOSaXePx95plLi8PCqN3bAHcdZ7278b
lfNgXDQOfjQbpSIcL2On2tyq+JQVzllNzSTeIlWvPJiWJaODGRJj3a5QpGOWAmKJ
xxlCRnClcCn5m5m7arzKIeb9XHHvOJ6TbFGnni0uUAjl4Nbw31KzrRBmYmh1cUC/
8zOcXIgBAfRmtSbvQeYgKwYguksvmfOHJ3ueEEl6z8MRyaps0aDbHjNqDhkIV6Bf
xI4bF5nTcsCLeE/eqDbFEDNQgOakprDKuXs8OXSvu1BUCoRxgVp3VNedEZ20YPdp
3FCOAo/ZB/eIEYxHRC3QjGhk2+eaXhwXcKtU+PA6dPvIR6q294oVyuZgloyCedDE
Gru33loAGGM1Hln6rkXsrgng6DJUQDDUPDfp1xvl6hKrgMiFqvwS6wDswtrZeMUd
3oUW1xGrgWIqwJufM5Mh
=SlH+
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wynmu-0008dh...@franck.debian.org



Accepted twidge 1.1.1 (source amd64)

2014-06-21 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 21 Jun 2014 10:54:29 -0500
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.1.1
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description:
 twidge - Unix Command-Line Twitter and Identica Client
Closes: 746110
Changes:
 twidge (1.1.1) unstable; urgency=medium
 .
   * Relax aeson upper bound.  Closes: #746110.
Checksums-Sha1:
 1c91e53c0bd48421bcf154a78459adc91a3e1a36 1935 twidge_1.1.1.dsc
 4cefb58a7e8b001675045d0569e9b323f996c239 54887 twidge_1.1.1.tar.gz
 301ed3344dda5f5a7822c8db9d3f0e1d90f1a4fe 1345020 twidge_1.1.1_amd64.deb
Checksums-Sha256:
 f46fbae850bb75d714f58e46d75eaa639a8bcf07840521a810bb55d1c2ed6ef9 1935 
twidge_1.1.1.dsc
 62f82f3b14c1e4bce51af85bca5480da9573d5937677ff6656c6f210680f 54887 
twidge_1.1.1.tar.gz
 9c60c0166f323a355ffdd82423ead7514505610c1ba67f511600f85e46066c61 1345020 
twidge_1.1.1_amd64.deb
Files:
 1a12ef27ec380eabd15d950887c85dcf 1345020 utils optional twidge_1.1.1_amd64.deb
 13f50abd2a29f49e82a89eb21459b194 1935 utils optional twidge_1.1.1.dsc
 4328da1ca6ccd8e6bf5675ab6492e5a7 54887 utils optional twidge_1.1.1.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTpayNAAoJEN0p+IRCg57TffQP/R7doULyyrFvxvSXg/PF+Dvf
visvatklByTDkxH0LGpBx8nJ1MXZ1v5eBfiYROEX/QRpwXhl8ZJDP8oYXT5sKQGa
q+v8/jtnRIFVi8ljQT8ZSQ00E/gEKd/Y4/cjjN1++LQlEkRfk4Ygek2JPOzaA+y1
eAnJNdSelKCUb/Us++MxQl7PgRaEObUqm8whLyFEIKMNIL53kQkDMMVSuO9Mw4rO
s640bP2+YmVbvwc0hHlWs+pfuMrCcrQmnFTunPF4rJTR/tDnVO3AZZ5HWu9NFtpK
JCO3mSVQJAuKdnw0qSgNjqT53pFFdVxJc8h0MIMHqRUeMmZbZl0pW3fSP1PWpBRU
LceULjSuf9n0XfWNggkLXJy9jZtsh5Jp7lbksdGNx5oQCjgnpztzeLKMvrzA+R0K
FK77Y4JXWnFPo9C1hnZGPfSuGPHpjz4dzF7mvL6KEvob7PYtdG5mYmEjtl/RdXMx
Wwp0IbVefnxmcTb4kG+WFfnndYa8PY7Lizx7XYJrxxnhSz/riTgNlG+60pI/EVtT
TSgFv73BvLcbBq3Td9DDHhDcnPcxl5n8M/SI0+ToFhennU5QPNMwCPB2ElhijncT
aANQGVx3xt6rOwubN+71dflwyKdYnIbdUHqmETYiJrhaEWChEtq2WVtaGrZTh/hw
Ff3yme3cXmbq7X6n1a0U
=cbP2
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wyo0r-0001oj...@franck.debian.org



Accepted twidge 1.1.2 (source amd64)

2014-06-21 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 21 Jun 2014 12:45:34 -0500
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.1.2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description:
 twidge - Unix Command-Line Twitter and Identica Client
Changes:
 twidge (1.1.2) unstable; urgency=medium
 .
   * Fix mail generation for tweets containing \n.
Checksums-Sha1:
 af3e4ea31f0527a94ddd353cf3d83b672e28e6a2 1935 twidge_1.1.2.dsc
 de1769f9fdc601ffed0ca7bada9afe3bd4073327 54991 twidge_1.1.2.tar.gz
 a532d0581a75140fb0d43ca794700b8a0504e08e 1344042 twidge_1.1.2_amd64.deb
Checksums-Sha256:
 aed5188e96add8fd2098f59c5ce194c6edc69c2028954a5ec0c35f9a8eb4c8c5 1935 
twidge_1.1.2.dsc
 32bd73e24b2ae2d9f5e84758762f7a51c2d855901db10c8d082b711347c18c96 54991 
twidge_1.1.2.tar.gz
 07cda48d4f984055143a2ee1dd215bc36a118b4a81873bf30158a95ec2501ced 1344042 
twidge_1.1.2_amd64.deb
Files:
 2b992cd015838ff4ccb2d89dc65ecabd 1344042 utils optional twidge_1.1.2_amd64.deb
 82da9c0875fc6c4f153042893acf3c4f 1935 utils optional twidge_1.1.2.dsc
 52254de5ea02d35bf5f11901650544e4 54991 utils optional twidge_1.1.2.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTpcV1AAoJEN0p+IRCg57ThwQP/je4F++ZdRRLAwqRpZua/7TI
CsoOAHzDluMP+toiFtCteEBDGqF/1tXjg9aHwAt+TG/GSpJ/dcLJKmYhR0UgTfBV
UoxzIXh60OTwfALBGhgL0bZBx28iGBLJR155OI92uoOxe/7PSrNhuAF/QvhPxDvw
y/7ED1sRbWJmuGKFXeqRNPsPx+GdpH2G4q10LX8qpT2q/jqntGSo3ff4FQLNYgot
mxRfFdg2ajmLtG/NbDPjjXCOo20yD0KHEZuno/pHKIGp0Ka29JVaIaw08JBPG3Xw
b+DqiXxK1OO3tK+Xth8AefTeZ6BskZCnkA9YOvD5R9V8v3Vg/ofzviuV8TC2GnqP
5a7Svc6QzaKmY17VDkSdWEeoGaKkQ1SOhpgt9fWZLdYx2jAXZ9tVb5ZNQBioBlf9
fJpnmmtb0vVr9HsBcUKLyXeADH6bbS6Zf7qT9BAl6mLbCv0YkTyRi2OVPzpLcmXy
sEjUQmbR2SLlIBXjoSMpTHqBCypQhAmCz0dMCPD5AJtY6Rmy7ulv60m3yNmjSm/e
fxf6hY+/+5laiGpxqSKiodorJ9oGpKNN+LmxFKS87T/SUqKJLJcMfegcRWpCMGK9
zLcp8uT9Tj5RerlJ3Pj5/wwDaIdAJMRPqAy2Cs2T7AguqMtAQ5RzQ+ydzosoJwfN
4T//MEVwnTXGEXvUfYKH
=F/3e
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1wypej-0004zq...@franck.debian.org



Accepted simplesnap 1.0.1 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 12 Feb 2014 02:45:03 -0600
Source: simplesnap
Binary: simplesnap
Architecture: source all
Version: 1.0.1
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 simplesnap - Simple and powerful network transmission of ZFS snapshots
Changes: 
 simplesnap (1.0.1) unstable; urgency=low
 .
   * Fixed exit code from simplesnap.
Checksums-Sha1: 
 8e880e8a5a9dcf079243289ca0e1eb2cae04cd02 1560 simplesnap_1.0.1.dsc
 a1bc861688c2b45526a73dc84431e66f1b74240f 28704 simplesnap_1.0.1.tar.gz
 7ab5f8a5ebb27f6e50e46d0accb8d87c9e3ed018 13332 simplesnap_1.0.1_all.deb
Checksums-Sha256: 
 54b3e3991d861e4777d367a52e0cb91294d55aaee6372e5c82c16fbcf53242e3 1560 
simplesnap_1.0.1.dsc
 96676393c1eff214ae6389625e9558e462ec2539f32ed471c8f35b94ff0bd681 28704 
simplesnap_1.0.1.tar.gz
 b1fe990869df83b6f1c704faf88ed9a59481ffad37b57d5e7cbf616bcf121f53 13332 
simplesnap_1.0.1_all.deb
Files: 
 7ab2fce94bb98314c58858893f820cea 1560 admin extra simplesnap_1.0.1.dsc
 6ab1be7ced4d8d2e22af1d2499894dcc 28704 admin extra simplesnap_1.0.1.tar.gz
 87fe9cbff44edded0eae0db4a16b0271 13332 admin extra simplesnap_1.0.1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJS+6zEAAoJEN0p+IRCg57T6hUP/iB5hAo7Dh+EDzypxHpusTtl
WiQVbtnQVG1LezHNyVRRSyyfhIUUOXszrsIoep2euDl40jIToPIUiDlTYHX7wSt5
C7P2VoNYJUpgKL88zsCCCWKoUfayjWKDNKintTBBv/Ca3EahNgsweqP515n1bvya
6LiF4o9xCcW5b7TzsOnVRJTv0hbSjUmggL8OA5E/IEP16yoiVYoUYhfEv3Qu95Og
Xxa56rFEAnAeRRsRGNGdBmbu82DaZoDJu1jzEAoSJaQhhNPydSlpPmJ2wqtd5woI
t8rJfsHLCTOy24JQJFdkQzbIeljk/s95mkRqfrCaHK8sSiwcf4nnyS5QoAiR41Jj
tzSeP7uQ84comhVu2P2MsG0JDmIlVpfGyo1ur3uafQfniugPk9qaWufcGJ/yzVhw
L6PPp4cldXPbzZIvghIUOi5rWdekZEL/OoeXmlGkhGPnxSKQ4rQqsS/PH5PFHCy0
tfrGn6VBTNEAYLsGNhTKIwXrkYoFlq+jdiKhYMB5eL+rFgSIjxsPjMF9wNU2hXN+
ECpNKRY0wsmJBxjoYIim/wlTrEvA++Cwxart9H0a8oseh5NFffnKx5Q2QKxWWrC5
nENzx+N5Z6Q7nzMsCI6SkxI2nHkgh75q2f23EA8rjJib9mWhdXnPqb5Op8rS+GPw
GqTKwdCuGDy7vnUxj4il
=kBit
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfshz-e9...@franck.debian.org



Accepted simplesnap 1.0.0 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 11 Feb 2014 00:44:47 -0600
Source: simplesnap
Binary: simplesnap
Architecture: source all
Version: 1.0.0
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 simplesnap - Simple and powerful network transmission of ZFS snapshots
Closes: 738740
Changes: 
 simplesnap (1.0.0) unstable; urgency=low
 .
   * Initial Release.  Closes: #738740.
Checksums-Sha1: 
 e63e500e80263b1b6262b8f575e53bae0ae9a892 1560 simplesnap_1.0.0.dsc
 0e65773a9d2bb820c73181e18d891010adb63d3e 28731 simplesnap_1.0.0.tar.gz
 03ed9ad98877b1aecfec8e6e274f1e868c5d68de 13230 simplesnap_1.0.0_all.deb
Checksums-Sha256: 
 89f22c60d591bf3d72340e5e6aae2cfc87b25ffa68b4ce136f8a49b946e0bd6d 1560 
simplesnap_1.0.0.dsc
 0c7152135071ee92e65119010a01b261da0352271d3974f2078fe7cfae3f4059 28731 
simplesnap_1.0.0.tar.gz
 4e4b2f90ea539e3841d521fcb9fb3c5b662e8b22a9ab29ca1d639385fab1ab04 13230 
simplesnap_1.0.0_all.deb
Files: 
 8f007050006d945aefabae8a6935c30e 1560 admin extra simplesnap_1.0.0.dsc
 b880d1d0021e4fc2b511e9b326682f80 28731 admin extra simplesnap_1.0.0.tar.gz
 2bacc074c2d74c54aaa16af4626abfe6 13230 admin extra simplesnap_1.0.0_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJS+6b5AAoJEN0p+IRCg57Tl3YP/0gzKQLV6NbS9mNGpJ3j9tbp
bTb29+/OzEg5uZbdlH0D9jwTDgNW4R+RkWcRnBccJEltRJBAvDab7lS9CNt6BGpd
vFzopb166Y4s4MptQpTF4QU2gtaqIRiGzzGGStEpWkiu9bDl+Pc2MsDQ/mYi1+ku
xMGFWtAWhNjsCh30rarLwRzHqLObTalwtpKsJ2FltwTdhuVdp04djsOvTZLGuAA2
/acTOoCj0fz0haZeaYtSFMYofsHW85z6aOSimViuuoXKkC7o+/l+fa8CY73mU6Mb
cP01LBiAkPotIWDaKDYfXms+Q0BdTz95wRJO592hHlJdZ/ZloLW02qgaM63XiLQn
8puMFYky1bTnJjnQua4gkTzE/++IYCYYhxDS2vX1upDxeXo+mB+1gANZrcIw7DWl
zHWXfIxWXV2iKPCfPA8GjlY36OnpyN6tymMeA738tBSMmFSivQ5UP9FqJDnKaZd0
yzrcnmBXC05UWcuVSgCPKzrmxUZkOhhGD4n46W50Ad+CzrShp4/xud1bCol8AFcn
dp6tpkxX5l1B+j1FvnMZDoaXhU4DKeUCPwhijxGLpetTyyT5gTNvjy2LXjQjeQyZ
3Uphk7iyfVTgsXRaIj6Kq1QGXVEg9iWhvtNUMHj58dpMvF0OHBmZKv6iUisXJovT
An34fBXUVMrtOt5xOBYI
=BeZ4
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfshz-dc...@franck.debian.org



Accepted zfsnap 1.11.1-2 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 18 Feb 2014 13:38:01 -0600
Source: zfsnap
Binary: zfsnap
Architecture: source all
Version: 1.11.1-2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 zfsnap - Automatic snapshot creation and removal for ZFS
Changes: 
 zfsnap (1.11.1-2) unstable; urgency=low
 .
   * Remove spurious comment in debian/copyright.
Checksums-Sha1: 
 942b2f69be00fc7c79e0919ef5d355c7e2774344 1797 zfsnap_1.11.1-2.dsc
 5d7f39e489312ffaa9889530db3d86befcc5e330 6772 zfsnap_1.11.1-2.debian.tar.gz
 e531b4d40a5d50b394ac28d61a236dcf70c9258e 16638 zfsnap_1.11.1-2_all.deb
Checksums-Sha256: 
 7ecd275d024ead40ebb6f5550fd90fb1dc806043fdc1f33bf143ff93a1e49ea4 1797 
zfsnap_1.11.1-2.dsc
 a864ee99041943e1c76395dbfb808534492b5d83a7eaff50052e65b153092a8e 6772 
zfsnap_1.11.1-2.debian.tar.gz
 5641ed9dbbbd925136b1fc7624521b1b5fe1355a3411dbae42dff581efac5f57 16638 
zfsnap_1.11.1-2_all.deb
Files: 
 087089d4cf4fa8415d23c1977f9cd750 1797 admin extra zfsnap_1.11.1-2.dsc
 4238371d2862fed1aa231feb663f6c59 6772 admin extra zfsnap_1.11.1-2.debian.tar.gz
 44a2d29ec0595e1dfb216f86733c471d 16638 admin extra zfsnap_1.11.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJTA7bZAAoJEN0p+IRCg57T0TsP/2+w93nljZ42xfsC7lBYhwR0
8JRxc7kLJGUgJz8Gcm4wpOuwB0ARbuwBE2JFsnKD00XQJQ1Z4VuutSNStAnZ0RUd
lbxNW9IJFxgOs7pCXMWs/sfRhSq5H7sk86BCJSakMUx47tghFh3dzeTyc0ixkzhs
8zaD4Sgr18CmFFoCmzm1GaxvNeJYj0XlROt9GOK9TiCnH53tJlkNtPgJbEnT4B2c
dGW5qaiB2sYo/KIJSMkPHu9dC8ZBrK/qCJxUqtuzlRgC0qMd9ik3Lu+XNyCJKx09
HnlEwNqsyVFOi6M8egNfyEO5CToAzYvnx7AqkjMujt+WpJobLrASLNyNsiK+Cl4Z
hR2a+OlOsvG86pyMA5xYzMcp+aJN8wh7holHZKThcFDluWQ/kQgydvmK3wYJOuGO
J3ktSvesK1eZTMMP6UFhHHMzTirGRfhypFDiVi86pbSfYmYalDW+ESk8lkAYPeOY
2lI/7EYLx9oJbhQYRu4DfINC8ug5sImAyzETWeISTQJyXWlHMWc+N5qK16w5g3d1
yvfShP22xY0LAIhHvrJ9e81v62vcqtqvc2HolC7bHjhFxR/Pq7mYie4PXJtSJsBz
9f9bq7tDmXIMwXpIZpkJpo1JWWmTsBTpcr64aNT9yvNsuQGRfU7XELCdOGj4AvbE
dLsB81Ld6MgucYRzauik
=yPAu
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfsi0-fd...@franck.debian.org



Accepted zfsnap 1.11.1-1 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 29 Jan 2014 14:58:12 -0600
Source: zfsnap
Binary: zfsnap
Architecture: source all
Version: 1.11.1-1
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 zfsnap - Automatic snapshot creation and removal for ZFS
Closes: 737077
Changes: 
 zfsnap (1.11.1-1) unstable; urgency=low
 .
   * Initial release (Closes: #737077)
Checksums-Sha1: 
 58a4edf5ee5fc543f7a3b83160a4c17be4365672 1797 zfsnap_1.11.1-1.dsc
 fe12f8f18f4f36402f1f6b8a61843508debf88cb 4967 zfsnap_1.11.1.orig.tar.gz
 d05fe0b7cb157ab409f6c82dea818ddf8ed5e003 6790 zfsnap_1.11.1-1.debian.tar.gz
 1d3bb313d89441f7eda21b32e2398592f9ce1423 17030 zfsnap_1.11.1-1_all.deb
Checksums-Sha256: 
 3b77f259d7436c851d59f3eb7cddec224ad80da0025d15c6b8731fefc601531e 1797 
zfsnap_1.11.1-1.dsc
 e73da374a358b5f233865b0283777f29b344d2ec337161b8ec2fc468718184d6 4967 
zfsnap_1.11.1.orig.tar.gz
 460360d4dff006e97f40a9be23ce85b97644140e859cbe9da5eaae9746145aa5 6790 
zfsnap_1.11.1-1.debian.tar.gz
 0ea76a0ad6e84e2f0e2fffa385c2b86e24ef102f7d63387c70fb7654fdb5366f 17030 
zfsnap_1.11.1-1_all.deb
Files: 
 3d8e7437cddea2e8c6414de8bdf9e817 1797 admin extra zfsnap_1.11.1-1.dsc
 a5ba0f57350351cd7e7ee4b1b38e9d78 4967 admin extra zfsnap_1.11.1.orig.tar.gz
 d599a375f59fe6a5fa304c70dc883c13 6790 admin extra zfsnap_1.11.1-1.debian.tar.gz
 3fa25bbf67727a53cdb2f02dc5e9e5a6 17030 admin extra zfsnap_1.11.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJS9qqNAAoJEN0p+IRCg57T44wQAJP5+L0oSSgsvBAD/wGp2862
XdAF8gZ3YsnPx0A1JCloV/kJmR1tiJX8EvsZ8R9XpucGM8PZKxCkWZ0CocXfrhPB
nifBIGWO5XQpV27b5WJoFwRM41a3BYFfmuWpYqxVS4XOc8vyAVUuBKyDTzbiMbbI
ORb2owDNedFMVU38Gt7RRgD0hQ2HmztoxRDGPZ3SL9lK38eG3tCCwEEANrnlA7tP
dd5HTs9KBAKGvzeWvNe1JfbrhZmZnr3QdzCFhHMmm/qXjl/5khd2eQCrlSQDZLrM
abMVuBLGQBRGu2Hwc4mgRzvT3OWJupa9EfgTVHvPdPdzCg7dHQhBdCmgNrCvk1vw
Uw+oj3Em4135A+kxRat8+8dn6HPC6xiyJxD+zPlVTsr1vYRqOc0SF1ksZRz+rtpY
nZhNpO3ovIcHSZwVYuqUlOJVxbto112RlH1IWDxyqCBCLFg2ysp+lOqblrk1hovv
3tF2zSZAl1p8B2kvCLHw4uOHQLCCs03Yt8QiRqMZ3Nn1RH2QKnWM+3FsXEi5MSM/
5PjxjVwbhTfMjPESMxfgHV6FsnsbG8vDh0fVJ1hYwxVmQaJUghKc0HBqd/fu+vCW
pqi9OeJVwCDKzg0vvLd+BzMAIxi0+Gy9Bk8/bAfYWJ3yJIFagTzm29F4s4lSIyr2
fDg/uYqHXNgfJ4dvePkS
=FE9B
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfsi0-fc...@franck.debian.org



Accepted simplesnap 1.0.3 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 14 Feb 2014 00:22:48 -0600
Source: simplesnap
Binary: simplesnap
Architecture: source all
Version: 1.0.3
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 simplesnap - Simple and powerful network transmission of ZFS snapshots
Changes: 
 simplesnap (1.0.3) unstable; urgency=low
 .
   * Add --backupdataset and --datasetdest options.
   * Enhance examples and documentation.
   * Fixed bug in --local
Checksums-Sha1: 
 817b1cfaf1f07d872f5e2d3303ef1d1a3142a1b4 1560 simplesnap_1.0.3.dsc
 66398721b3af4ec3ad3d2371b580cbe5d38c66c2 42185 simplesnap_1.0.3.tar.gz
 21d74b9e09236cdae187e47788dc31719e0624da 17992 simplesnap_1.0.3_all.deb
Checksums-Sha256: 
 9b59ec54a24e5879904c4bdf644b7d37a61798a0c7ed23922e370ca466d68400 1560 
simplesnap_1.0.3.dsc
 ee06f469306e2a61823bfe21a9c5ce6cc9ce85f39493c16dac247f4a93d88f0a 42185 
simplesnap_1.0.3.tar.gz
 9bd2436e59ebecee285038c82c233dcab3b42fd7868e4c67ab2f1c031272ba74 17992 
simplesnap_1.0.3_all.deb
Files: 
 2c7306fc6e48735d6f954a02a0f8ddf3 1560 admin extra simplesnap_1.0.3.dsc
 eec88bb15a5bfea145ccc8afdfaec341 42185 admin extra simplesnap_1.0.3.tar.gz
 e9a74a6a2e90f6422d056a7f9c1241e7 17992 admin extra simplesnap_1.0.3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJS/jNrAAoJEN0p+IRCg57Tx7MQAJBFNBrlyanqKV9S8sIH9YgN
gGVhWmSf/iMohWXnZBh+gkpsTx5j5j3MfDLFkxg1Yxn94ZKhGci5TA8gbRWobNEM
vObfgqd0TtzUs9B2+O4Pv+H3QM7SycNfAx9k2xBRSQ/g5MCazz3YUvkqj4enX/A7
LY8pB5u/yRIrTMIbDj85Hr9N/bORadbvSVoAhbQv3JxPT38eOAxBO/qyQ0NZ7zuD
XpLJAlFx3Lt1vpBGBgUSqHuAD6taviz2KgLFa51qDaUvRt72Mg+xoKBS7/3dlGTt
iV0yiurPGD48hwwSuvDgdAM63vUP3zjCHwKT6ieRcDM/6yaRD5dWUL6cgYvR0TWq
Q2r+k+NpCvhlY95UfKGKfUkHnnle0Gzx1z8FdvKi4zpYVRUly5yLDr/DtpdKFLpD
NbsycknEZMlUVNjbFvZwY7qc33U9nF9WJjAmKTnQEtgOt2Q1leSeed4+C60ERlF6
JmOxKUf1NCwNQAgWxu9k1xJ3l+YliVrAhe8LJaC2IrYVNkSULWyHdDUDwrHIWXh7
XsIPKlms9D1PkhnlppjdViINSeJ6fv2YJDUbQPSuD4bXnsFwCdhDhAxlfgW8G9Ju
NkHeo2fUdKBjWMgysnSu6SwuWiHn6kkakTp8GvNhQw+gyaxQLLcW35gCEx8yLpW+
l5578TTyyyLvEX6a0vVk
=n5f8
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfsi0-ep...@franck.debian.org



Accepted simplesnap 1.0.2 (source all)

2014-02-18 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 13 Feb 2014 00:47:10 -0600
Source: simplesnap
Binary: simplesnap
Architecture: source all
Version: 1.0.2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 simplesnap - Simple and powerful network transmission of ZFS snapshots
Changes: 
 simplesnap (1.0.2) unstable; urgency=low
 .
   * Enhanced logging in simplesnapwrap.
   * Added information about interrogating the backup pool to the manpage.
Checksums-Sha1: 
 4b8b6199303ef6bd5eed0856e6d91f226492cdd0 1560 simplesnap_1.0.2.dsc
 f40fbe707d123db39e9f6631600e7c60fbc438fb 32414 simplesnap_1.0.2.tar.gz
 d19a84f92660530292e061fe31b4f5dccf21cca1 16132 simplesnap_1.0.2_all.deb
Checksums-Sha256: 
 d5e3d18a21b140db873604d8ad2c77a64aa1199272881cdf130f5ed561f329f2 1560 
simplesnap_1.0.2.dsc
 880e806c228e2acfb81bc819a3083d28f38a55d7cf1df8f1d5d5b92c786ba791 32414 
simplesnap_1.0.2.tar.gz
 555a66d3e92e123269c06512ea28404176e4d3e928056938cdeda3bf2321c7d3 16132 
simplesnap_1.0.2_all.deb
Files: 
 4ea2890a585104e9e8a93da4c9357839 1560 admin extra simplesnap_1.0.2.dsc
 b748a5a0b647dddbbf667aeaa0527834 32414 admin extra simplesnap_1.0.2.tar.gz
 119b489e207fdecddfe1df6420fce949 16132 admin extra simplesnap_1.0.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJS/NN2AAoJEN0p+IRCg57TlI8QAKNGNEZLm9J7Xt2KXKjaWyf7
2h61YnRlbBhPAjRSbLGDA/JzsT8c9CGoz2tMdaMUk+HXOBXiC2Alg01cW+zSkrtS
nfqyreWC+pOK+jWS1WFdeclkkwgUOorZfxn+l5N4KOeh3tMJLLRpLlshtai6Szdt
Jx19wyr5Ybpupc1dDUiV9LhWYmLLEA6BufolATVcQJvoKmyzuhqRLL7MHHvyUBKL
VOl8NnoY9+3tRw3tqWjLuyhmDA2LmN7hFmgo4w37uBnKzQD1mW2Lp3HlGNYTRL+S
neuRlcq9hJVc3vr112tHu1sF+LSEEOPkyRhoWSHDOI/RfgofIq89RVjLQXuMbXJZ
N7MyZCpFglGihsEqpreQJNPPMgCvBMnSjQidFMhfeV4YcOLcwmdjDTTQ/ByUZHXG
DyfJTnfYZ67W6tslLu21vMqaWm6DQ0EoKJ1ZmFCrYwpV7/hXeuPRR71xsM36b68O
hrKm69GrEUSj3b2iXFL/fWCW/IVsR8szE2pVj83gxKYc2mGZP62RsuWhbYjmD2An
iRzjYRO7Yh8NwQpX78+je/jqgzttAcwmPjYhI+Pna6H2pdW75UHLLQqtAWM6oL2D
kSDrwgaigzRvLtJrmERvy1GxweHYFndmyf+CZwIJ99gAiiNX60NlJCKkiN80lK5C
2wUP5kv+J089A3dXvUwY
=fUEU
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1wfshz-et...@franck.debian.org



Bug#738740: ITP: simplesnap -- Simple and powerful network transmission of ZFS snapshots

2014-02-12 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen jgoer...@complete.org

* Package name: simplesnap
  Version : 1.0.0
  Upstream Author : John Goerzen jgoer...@complete.org
* URL : https://github.com/jgoerzen/simplesnap
* License : GPL
  Programming Lang: bash
  Description : Simple and powerful network transmission of ZFS snapshots
 simplesnap is a simple way to send ZFS snapshots across a net‐
 work. Although it can serve many purposes, its primary goal is
 to manage backups from one ZFS filesystem to a backup filesystem
 also running ZFS, using incremental backups to minimize network
 traffic and disk usage.
 .
 simplesnap it is designed to perfectly compliment
 snapshotting tools, permitting rotating backups with arbitrary
 retention periods. It lets multiple machines back up a single
 target, lets one machine back up multiple targets, and keeps it
 all straight.
 .
 simplesnap is easy; there is no configuration file needed. One
 ZFS property is available to exclude datasets/filesystems. ZFS
 datasets are automatically discovered on machines being backed
 up.
 .
 simplesnap  is robust in the face of interrupted
 transfers, and needs little help to keep running.
 .
 nlike many similar tools, simplesnap does not
 require full root access to the machines being backed up. It
 runs only a small wrapper as root, and the wrapper has only three
 commands it implements.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20140212155152.9745.97588.report...@hephaestus.lan.complete.org



Bug#738285: ITP: zetaback -- ZFS thin-agent snapshot, backup, and restore tool

2014-02-08 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen jgoer...@complete.org

* Package name: zetaback
  Version : 1.0.6
  Upstream Author : OmniTI Computer Consulting, Inc
* URL : https://labs.omniti.com/labs/zetaback
* License : BSD
  Programming Lang: Perl
  Description : ZFS thin-agent snapshot, backup, and restore tool
 Zetaback is a thin-agent based ZFS backup tool. It is designed to:
 . 
  * run from a central host
  * scan clients for new ZFS filesystems
  * manage varying desired backup intervals (per host) for
full, incremental, and dataset (ZFS destination) backups
  * Store zfs send streams in a gzipped file or ZFS filesystem
  * maintain varying retention policies (per host)
  * summarize existing backups
  * restore any host:fs backup at any point in time to any target host 
  * handle frequency requirements and retention policies


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20140208221846.14451.97440.report...@hephaestus.lan.complete.org



Bug#737077: ITP: zfsnap -- Automatic snapshot creation and removal for ZFS

2014-01-29 Thread John Goerzen
Package: wnpp
Severity: wishlist
Owner: John Goerzen jgoer...@complete.org

* Package name: zfsnap
  Version : 1.11.1
  Upstream Author : Aldis Berjoza graude...@yandex.ru
* URL : https://github.com/graudeejs/zfSnap
* License : See below
  Programming Lang: Bash
  Description : Automatic snapshot creation and removal for ZFS
 zfSnap is a simple sh script to make rolling zfs snapshots with cron. The main
 advantage of zfSnap is it's written in 100% pure /bin/sh so it doesn't require
 any additional software to run.
 .
 zfSnap keeps all information about snapshot in snapshot name.
 .
 zfs snapshot names are in the format of Timestamp--TimeToLive.
 .
 Timestamp includes the date and time when the snapshot was created and
 TimeToLive (TTL) is the amount of time for the snapshot to stay alive before
 it's ready for deletion.


License: Aldis Berjoza BEER-WARE LICENSE
 graude...@yandex.com wrote this file. As long as you retain this notice you
 can do whatever you want with this stuff. If we meet some day, and you think
 this stuff is worth it, you can buy me a beer in return. Aldis Berjoza


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20140129214651.18583.99614.report...@hephaestus.lan.complete.org



Accepted twidge 1.1.0 (source amd64)

2013-06-14 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 14 Jun 2013 00:30:27 -0500
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.1.0
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 twidge - Unix Command-Line Twitter and Identica Client
Closes: 632259 712223
Changes: 
 twidge (1.1.0) unstable; urgency=low
 .
   * Update to new twitter API.  Thanks to Adam Fitzpatrick for the patch.
 Closes: #712223, #632259.
   * Updated to newer hoauth.  Now buildable in sid again.
Checksums-Sha1: 
 bc4240febae4a8b50f6bd38a78b3e3f1e34d130a 1947 twidge_1.1.0.dsc
 331968b422f1e8e22208773aef4187e5a223f5be 53687 twidge_1.1.0.tar.gz
 78eb711445b6f4a4d336218d05d64e6e7e9b42fc 1971864 twidge_1.1.0_amd64.deb
Checksums-Sha256: 
 956b6619b62faabe26d54fc114d57c2b531ae80331472b2125e5b8885c2ee02a 1947 
twidge_1.1.0.dsc
 d64da9e8300c4316a57c18aa9e385b708b4d9405faf2be5c6cb970ffaaef8596 53687 
twidge_1.1.0.tar.gz
 c44653999192f42185a21d16cb1376f49d38e42b3a288a0943080f0c75aaa3e7 1971864 
twidge_1.1.0_amd64.deb
Files: 
 2af3dda566e4d07267159cb5018d076a 1947 utils optional twidge_1.1.0.dsc
 a50a47c38a7064d9454e360a9dedb7c4 53687 utils optional twidge_1.1.0.tar.gz
 d0c3e60a64bfb28dad733a29eb9a2553 1971864 utils optional twidge_1.1.0_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJRuyNPAAoJEN0p+IRCg57T13YP/jcnW53lEzkTDJrslmDETDHt
S31bbys178QeNc1182Z2CgfVPUq4w50Z4+Rs92xmqJBxESs86NEunuUcYrCTazDo
wiCbdMMGjUiT9eMQ1E4PSCdn9Bib8l+U8zNxD82nGpma4iDitn1J/PL4ujoR/CD2
D8L71gRGFLSvwjJGT8ufgK2J1Ff1fp8wEygEwZ3yiHWqmzCguXX09lo1SsXhykbz
xD+GBvGvIV7Uk5fenIK5loKkDpVZMdQSeIVsWEa/a4rH+nblRcmgusN627tywaxb
UcrLI15NyquciNDi0cHthjFxc4lmnn7p9j+RWQujvePP2XT5/Bc/jU5uvKn2ItCx
I8gE4iZVdLiSo67npk68q8OHxn6VuKM6oUA8DvswpBcGZLwtVDJJfQq/zauSB+Bd
dgIGToJ8tNCVzSeAd5qJmFGfYmeYQh2vUP9mLclPrpXFJxbj6V0nExoaDdqPg0X5
HfM25JwpB7WZm1VmDdarqcvjaO0up4VxhXqfCQqtu7Z6zkwUGTnKi3kndGHy+YDD
xDpVpFq75CPIZvZ+OyO2msH3iclmrqwZoktiURgKbDS5chXRA4LuOiJXZY+dfV3u
zaZZXzwa0wJnqgRIAm0A+YC3VoSZ8P9AFS4HX3ExCVzSAphwiFPLGVc9Fr9j42ED
fjkQ0ej/b6zjDOIDCD2u
=6716
-END PGP SIGNATURE-


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1unwdw-0006ie...@franck.debian.org



Accepted bacula 5.0.2-3 (source all amd64)

2011-02-10 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 07 Feb 2011 08:20:22 -0600
Source: bacula
Binary: bacula bacula-common bacula-common-sqlite3 bacula-common-pgsql 
bacula-common-mysql bacula-director-common bacula-director-sqlite 
bacula-director-sqlite3 bacula-director-mysql bacula-director-pgsql 
bacula-client bacula-fd bacula-server bacula-sd bacula-sd-sqlite3 
bacula-sd-sqlite bacula-sd-mysql bacula-sd-pgsql bacula-console 
bacula-console-qt bacula-traymonitor
Architecture: source all amd64
Version: 5.0.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 bacula - network backup, recovery and verification - meta-package
 bacula-client - network backup, recovery and verification - client meta-package
 bacula-common - network backup, recovery and verification - common support 
files
 bacula-common-mysql - network backup, recovery and verification - MySQL common 
files
 bacula-common-pgsql - network backup, recovery and verification - PostgreSQL 
common fil
 bacula-common-sqlite3 - network backup, recovery and verification - SQLite v3 
common file
 bacula-console - network backup, recovery and verification - text console
 bacula-console-qt - Bacula Administration Tool Console
 bacula-director-common - network backup, recovery and verification - Director 
common files
 bacula-director-mysql - network backup, recovery and verification - MySQL 
storage for Dir
 bacula-director-pgsql - network backup, recovery and verification - PostgreSQL 
storage fo
 bacula-director-sqlite - network backup, recovery and verification - SQLite 2 
director tra
 bacula-director-sqlite3 - network backup, recovery and verification - SQLite 3 
storage for
 bacula-fd  - network backup, recovery and verification - file daemon
 bacula-sd  - network backup, recovery and verification - storage daemon
 bacula-sd-mysql - network backup, recovery and verification - MySQL SD tools
 bacula-sd-pgsql - network backup, recovery and verification - PostgreSQL SD 
tools
 bacula-sd-sqlite - network backup, recovery and verification - SQLite SD tools
 bacula-sd-sqlite3 - network backup, recovery and verification - SQLite 3 SD 
tools
 bacula-server - network backup, recovery and verification - server meta-package
 bacula-traymonitor - network backup, recovery and verification - tray monitor
Closes: 607443
Changes: 
 bacula (5.0.2-3) unstable; urgency=low
 .
   * Wrap password commands in quotes.  Closes: #607443.
   * Orphaning this package; changing maintainer to QA group.
 WNPP bug #612296 filed.
Checksums-Sha1: 
 7e34786253230e5e8517eaffb10a9c5a987a3739 2553 bacula_5.0.2-3.dsc
 26712cfdd1af9519a7a837ea35790a1390f828fb 43991 bacula_5.0.2-3.diff.gz
 c0af2dffe2c6ddae9a89bc7d1008138c524e8283 1024 bacula_5.0.2-3_all.deb
 d01b1508499cb6673e28cdfc56077720f6a27552 48520 
bacula-director-sqlite_5.0.2-3_all.deb
 3c7e61de802ffe75af015b6b99715620b35fc811 48550 bacula-client_5.0.2-3_all.deb
 8c4c113851562504cdf2b5f2b51908a5eb7e2eea 48470 bacula-server_5.0.2-3_all.deb
 47201727f91a145bf682c1cda7ad12c8a02db53d 637930 bacula-common_5.0.2-3_amd64.deb
 7d9e566f1494f7704bae5c62a7200add8cd707ce 102230 
bacula-common-sqlite3_5.0.2-3_amd64.deb
 bd5c2e73e8a29e8f20394335dde6d250404daaed 106366 
bacula-common-pgsql_5.0.2-3_amd64.deb
 fc99a019a457f64cc22a9313baa4818a68eacaf9 102244 
bacula-common-mysql_5.0.2-3_amd64.deb
 7430a3a88f4f9abf8681afcee75dc132c92a7f03 57094 
bacula-director-common_5.0.2-3_amd64.deb
 ce74a7110e5bcab6e78a99c0929651f97b54c1e8 308294 
bacula-director-sqlite3_5.0.2-3_amd64.deb
 fcd23f1027cb6f09d7e0509ef92042d378b63f90 308638 
bacula-director-mysql_5.0.2-3_amd64.deb
 eb66b9c41209b58f9a0635ef9e6fa59a9c33f269 308750 
bacula-director-pgsql_5.0.2-3_amd64.deb
 1ae5b10b9ec621053df9044f6edda0d177c6c5c1 124612 bacula-fd_5.0.2-3_amd64.deb
 c2d59a6e112c1c03d0f880f4efc8217222fd 459754 bacula-sd_5.0.2-3_amd64.deb
 844d72485a0c8ad4ef65faf78b206de8317a07a2 435646 
bacula-sd-sqlite3_5.0.2-3_amd64.deb
 90fe6441dbe681227aeb7d7bad6520458ddfcced 48458 
bacula-sd-sqlite_5.0.2-3_amd64.deb
 38f93c5b0223a29929ae3930e0f7a6fe41aa29cd 435664 
bacula-sd-mysql_5.0.2-3_amd64.deb
 252c3914210ffab8ee89721dc2980f2769db4b6f 435642 
bacula-sd-pgsql_5.0.2-3_amd64.deb
 076ed74e0ca6d5b60ef5644ebacd3593752d409d 67870 bacula-console_5.0.2-3_amd64.deb
 b7acd1ef0d681243456bf7aaf016d70129921515 649312 
bacula-console-qt_5.0.2-3_amd64.deb
 42ada3bac2e578ec68b47a71e6ea417dd4224408 70312 
bacula-traymonitor_5.0.2-3_amd64.deb
Checksums-Sha256: 
 b6b10e519741ebb24d8b146e864b29541e4b28bccfb1fe92dff787ca78cc7479 2553 
bacula_5.0.2-3.dsc
 b70f4e73d5d365400766651c3949860040a939e7f4b4cabcd1334ab0152590b0 43991 
bacula_5.0.2-3.diff.gz
 dbe1f8519dbfb3e7a8a10ad9497729770e5e309c3fe0b749e6ba1da2cc881ad1 1024 
bacula_5.0.2-3_all.deb
 3400dcc41aba7d63908ba7fd7440e09940e3143d54311db8af3b648f8707fbef 48520 
bacula-director-sqlite_5.0.2-3_all.deb

Accepted bacula-doc 5.0.2-2 (source all)

2011-02-10 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256


Format: 1.8
Date: Mon, 07 Feb 2011 08:22:25 -0600
Source: bacula-doc
Binary: bacula-doc
Architecture: source all
Version: 5.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 bacula-doc - Documentation for Bacula
Changes: 
 bacula-doc (5.0.2-2) unstable; urgency=low
 .
   * Orphaning this package.  WNPP bug #612297 filed.
Checksums-Sha1: 
 7420dc1ec86e10e41d076de499aaae30138aecfa 1737 bacula-doc_5.0.2-2.dsc
 639cc5a3157025618af1d6eafe61c5294d3517d5 7937 bacula-doc_5.0.2-2.debian.tar.gz
 ac77c3da315ee43461f2a43fe066f060dbc69825 6973076 bacula-doc_5.0.2-2_all.deb
Checksums-Sha256: 
 51a0b65f50c09c27233536e56f2211e6e6678233bf89100af80b10765b3a15d5 1737 
bacula-doc_5.0.2-2.dsc
 a31c34683a63949cb48a986b6187f16602d6ff627fa9ec6b49fcff618e8b7802 7937 
bacula-doc_5.0.2-2.debian.tar.gz
 39a9319d813dafd9167f7a65d5f34ee089b7f437975dbb7dc7a7457c4475f902 6973076 
bacula-doc_5.0.2-2_all.deb
Files: 
 918a69fa2891f840da4f7d40d6cb3d0b 1737 doc optional bacula-doc_5.0.2-2.dsc
 337032ca228bdb4610e2f4d69a4f3da7 7937 doc optional 
bacula-doc_5.0.2-2.debian.tar.gz
 7c54fe85ddf200d6c3cf02d070c15553 6973076 doc optional 
bacula-doc_5.0.2-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJNVEEIAAoJEN0p+IRCg57TEeMP/RYHq4k7e04AypaXHEycKmwH
xOtPMxtZBy5lT6yiRZjllirmu5ZtwJM6IUXK6memui2z2OkzN1BNCc7Hnug363TW
J8m6PPuenHn0C2/9kgJHtAhjjqwzzO2pUJpu7/5kdviOckz1G5OBlVEwWZThARgR
pN4GPtUsdW97+zHkr/9zfzf2iwPss7OtE++3ErDt/a2DOT5COLVGhtJy4kkgDSo1
9t8b/0RRLhZ4WxI0VQoOPuQqwBDuqTdnoz3bY8H+g0Qaa7pnB+gUVOY08Lr6WktV
6yfLv3l/BqENP9FCzK7fwBmvUuweZpcgXXorWsnJWvNL1S5gifZhMyUgCsVvYS9U
bcXjYF5rEqoq9mThkp7RY1T6fJ1SfrTn1N7JNgY50U16IZsyKFKdBWAQ9vfsTODc
tjJ5tv8ZBChx1+vpZmXjrW7fdmGIZ0/HvgRRF9V7KUYOfufv4K8Qm5i0I/IfUPjo
m7bJA1ievHt/aiFoPpa6a4CLETOnlgn2VjZWltxdSuqwdSvwTaFMoVg1nio8YauR
5yYfhfOCXz0JNFumAD1SHWWz07a1LLyyL5xOFP4dzPbGmV3MJeuTADDfaW3Zm1HO
abv1xIY1A5tMXKFl6+JmY1WrruxXATnGNyRGT8rsfmdjUwSyKWkm1L9lCbutvdhx
XqsNVz8ZZT0hd4Y2Ub2X
=7/xN
-END PGP SIGNATURE-


Accepted:
bacula-doc_5.0.2-2.debian.tar.gz
  to main/b/bacula-doc/bacula-doc_5.0.2-2.debian.tar.gz
bacula-doc_5.0.2-2.dsc
  to main/b/bacula-doc/bacula-doc_5.0.2-2.dsc
bacula-doc_5.0.2-2_all.deb
  to main/b/bacula-doc/bacula-doc_5.0.2-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pndsg-0006vu...@franck.debian.org



Re: The node command in Debian

2011-02-09 Thread John Goerzen

On 02/08/2011 05:04 PM, Hamish Moffatt wrote:

Similar AX.25 tools call and listen were renamed in 2007 to ax*
(package ax25-apps), because those names were too generic (according to
the changelog).


... resulting in considerable confusion from many people, given that 
much documentation out there refers to call and listen.  I, for one, was 
rather puzzled, especially since there is also an ax25_call which does 
something different.


Not saying it was a bad choice, but just that this was what the result 
was.  Much existing documentation is confusing to Debian users.


Also, it should be stated that /usr/sbin/node is normally started from 
ax25d, which is somewhat analogous to inetd.  It is not normally invoked 
by users (though it could be).  Renaming it will break servers unless 
users are well aware.


-- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d52b24f.2010...@complete.org



Bug#612296: O: bacula

2011-02-07 Thread John Goerzen
Package: wnpp
Severity: normal

Hi,

I am orphaning Bacula.  (I will also be orphaning the related package
bacula-doc, which has a separate upstream and Debian source tree.)

The package is in good shape, but due to a transition away from
tape-based backups, I will no longer be using it and therefore won't
have time to support it well.

The package is maintained in git and should be reasonably easy to take
over for a package of its size.

Thanks,

-- John



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20110207141552.10064.62501.report...@hephaestus.lan.complete.org



Re: Forwarding bugs upstream

2011-01-14 Thread John Goerzen

On 01/13/2011 06:19 PM, Jesús M. Navarro wrote:

Hi, Sune:

On Thursday 13 January 2011 00:12:06 Sune Vuorela wrote:

On 2011-01-12, Jesús M. Navarrojesus.nava...@undominio.net  wrote:

I have considered to take this one step further. Close bugs reported in
Debian BTS with a severity of important or less that is a bug that
should primarily be fixed upstream.


Will this mean that the problem will somehow disappear from Debian?
Because if it's a problem detected within Debian it's my feeling that it
will have to be tracked within Debian till the problem is in Debian no
more.


No. but it is a way to be honest about teh issue: We are not spending
debian time on fixing it.


Then tag is as such.  It is quite good to be honest: if you are not going to
deal with it, plainly say so, no problem.  But *don't* close them as long as
the problem is still there.


I think it is a huge waste of time to expect DDs to go through 400 bugs 
just to see if the problem is still there.  Just close them outright.


It is no better to have bugs tagged wontfix that are really fixed than 
to have bugs closed in our BTS and filed upstream.


- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d30707e.1040...@complete.org



Re: Forwarding bugs upstream

2011-01-13 Thread John Goerzen

On 01/12/2011 09:35 AM, Gunnar Wolf wrote:

Ben Finney dijo [Wed, Jan 12, 2011 at 04:01:46PM +1100]:

(...)

I'm adding zero value here. Zero. It is a huge and frustrating waste
of my time.


Not in my view. I appreciate the Debian package maintainer acting in the
interest of “lower the barrier for each Debian user of this package to
report useful bug information”.

To be clear: Thank you for the time you spend doing this, and the same
to any other Debian maintainer who does unromantic work to keep the
good information flowing.


You are clearly adding value, you will probably word the user's
request in a better way, you will know the library versions and
settings the package was compiled with, the way it is installed,
etc. You will probably forward only some relevant bits - We as package
maintainers should bridge between a nontechnical user and the upstream
developers. Of course, if your bug report was initially submitted by a


Those are some valid points, probably more valid for many packages than 
Bacula (for reasons I'll get into later).


But still, let's say that a Debian developer has X minutes to spend on 
Debian a day.  What kinds of tasks that the developer does will add the 
most value to Free Software or benefit the most people to the greatest 
degree?


 * Working on Debian packaging

 * Fixing bugs that are within their scope/ability

 * Working on documentation

 * Cut-and-paste monkey with upstream BTSs

I suggest that the last item provides the least value.  If we realize 
that it is displacing time that Debian developers could be spending on 
things that benefit Free Software more, and frankly they are likely to 
enjoy more, it's a disturbing picture.


Some of what you've suggested above could be accomplished by the DD 
telling the user, Here, include this info in your bug report and get me 
back in the loop if you need me.


This is a special case of more general communication problems.  It is 
rarely a good idea to have a gatekeeper in place between people that are 
capable of communicating already.


If the user is not capable of producing cogent answers and a useful bug 
report, even when asked for specific details, this user is unlikely to 
produce a useful bug report for upstream.  But the user is also unlikely 
to produce a useful bug report for Debian.   I don't see my task as a 
maintainer to provide education to the user on how to read standard 
logfiles, use the command line (when relevant), etc.


This is a particular problem with Bacula.  There are many users that are 
unable to distinguish between a configuration mistake or 
misunderstanding on their part and a bug.  I imagine this phenomenon 
exists in any sufficiently complex package that takes users out of their 
existing comfort zone.  If it's clear to me that it's not a bug, I'll of 
course close it and point them to the Bacula users mailing list. 
Sometimes it is unclear immediately whether they have discovered a bug 
or not, but it is quite clear that they don't understand how to 
configure Bacula and would need a tremendous amount of handholding to 
get to the point where we know if there's even a bug or not.  Again I 
try to push these to bacula-users.  If someone asks me a question I know 
the answer to off the top of my head, I'll answer, but I never promised 
to provide free tech support by maintaining Bacula ;-)


-- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d2f43b7.6070...@complete.org



Re: Forwarding bugs upstream

2011-01-13 Thread John Goerzen

On 01/12/2011 05:59 PM, Ben Finney wrote:


Rather, I'm arguing that the maintainer role, as a mediator and
interface between upstream and the Debian user, entails a whole lot of
different tasks, and being a mediator in the discussion between
upstream-who-doesn't-care-about-Debian-specifically and
Debian-user-with-a-bug-report is part of that role.


That's a good point, and I actually agree with that.  But I (think) I 
disagree on how it necessarily is implemented.  In other words, I would 
be happy to point the submitter to the upstream BTS, send them a 
paragraph to cut and paste into their report that contains anything 
relevant from the Debian perspective, and leave them with a promise to 
be willing to get involved should anyone think I need to be.  That part 
does add value.  Copying and pasting conversations back and forth doesn't.


- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d2f83d1.4070...@complete.org



Re: Forwarding bugs upstream

2011-01-13 Thread John Goerzen

On 01/12/2011 12:52 AM, Nikita V. Youshchenko wrote:

I understand that maintainers' time is limited and that forwarding bugs
is not an enjoyable task.  But I also understand that having a BTS
account for the upstream BTS of each of the 2405 packages I have
installed on my laptop (not to mention my other machines) is simply not
practical.  I also don't have the benefit of the rapport that a
maintainer has with upstream and knowledge of upstream practices.


Upstream tend to request users to install latest and greatest versions,
often for source or using other unsafe methods. Not only for package in
question but also for explicit and implicit dependences. Non-technical
follow these broken advices and break their systems. And then complain
that Debian is problematic for them.


Not all upstreams are like that, but I think that brings to the front an 
important point: there are vast differences in users, in upstreams, and 
in maintainers.


So let's run out your scenario a bit: upstream asks user to test with 
upstream version X.  Bug isn't reproducible by maintainer.  Does the 
maintainer now have to provide user with binaries?  This gets 
complicated when packaging isn't ready for the version in question, when 
the user has an arch the maintainer doesn't, etc.


-- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d2f85ea.1050...@complete.org



Re: Forwarding bugs upstream

2011-01-11 Thread John Goerzen

On 01/11/2011 05:54 PM, brian m. carlson wrote:

I've noticed a trend lately that I am often asked to forward the bugs I
report to the Debian BTS upstream, either by the maintainers or
automatically by a bug script.  I believe, and I continue to believe,
that maintainers should forward bugs upstream instead of requiring (or
strongly encouraging) users to do so.


Hi Brian,

I'm going to have a slightly different viewpoint on this.

I think it is perfectly fine for a user to submit a bug report to the 
Debian BTS first.  They may not always be equipped to know what is a 
Debian and what is an upstream bug.  And I also think it ought to be 
perfectly valid for the Debian developer to close the bug saying it's an 
upstream issue, together with a pointer to the upstream BTS and promise 
to get involved should there be any question about the Debian packaging, 
environment, etc.


Now, here's how it proceeds if I have to forward a bug upstream for 
Bacula, which uses Mantis.  Creating a Mantis account takes 30 seconds, 
but Mantis won't email reports to people without accounts, and the only 
way to add stuff to it is on the web.


So, here's how it goes:

1) User submits bug report to Debian.

2) I decide if it is clearly an upstream issue.

3) I go to Mantis and fill out the fields by copying data from the 
user's bug report.


4) I mark the bug forwarded and email the user that it's happened.

5) Upstream inevitably has questions or other things for user to try.

6) I forward that email to Debian BTS and user.  Maybe I download an 
attachment from the Mantis report and attach it to the email.


7) User replies, possibly while I'm sleeping.  I log in to Mantis and 
copy and paste the answer.  I also save off attachments from the email 
and then go and attach them to the Mantis report.


8) This continues.

I'm adding zero value here.  Zero.  It is a huge and frustrating waste 
of my time.  It is also frustrating for upstream, who would rather just 
talk with the user directly and involve me if they think there's a 
Debian-specific question.  I don't understand why some users want it to 
go this way, but many clearly do despite the fact that they get worse 
service.


I'm going to be brutally honest and admit here that being a copy and 
paste monkey between emails and web forms is something I really dislike 
doing.  It is something that makes Debian the opposite of enjoyable, and 
I think I let those tasks sit longer than I should, and work on things 
instead where I can actually contribute (such as fixing Debian bugs).


I have a sense that I'm not alone.  I've noticed that there are certain 
major packages for which upstream bugs tend to get ignored for a year, 
then get a big sweep asking if they're still issues, then get ignored 
for a year again.  I won't mention names here, but I don't think it's 
necessarily entirely blame to be laid at maintainers' feet.  I just go 
and submit upstream bugs upstream on those and go on my merry way.


Maintainers in Debian do undertake certain responsibilities.  But I 
think that being copy and paste monkeys shouldn't be one of them.  If I 
were getting paid to work a helpdesk, sure.  But really, I think it is 
nonsensical for an end user to expect me to do this because the user 
doesn't want to spend 30 seconds creating an account on an upstream BTS. 
 That's not what Free Software is all about.  And it has Debian 
maintainers wasting time.


I think that promising that Debian maintainers will always shepherd bugs 
upstream is promising something we don't actually deliver on very well, 
and probably never have.  Perhaps we should stop promising it.


This is not to criticize Brian here; he has been perfectly courteous and 
up-front in his presentation.


-- John


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4d2d1cdd.2010...@complete.org



Accepted twidge 1.0.8.1 (source amd64)

2011-01-07 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 06 Jan 2011 22:17:54 -0600
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.0.8.1
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 twidge - Unix Command-Line Twitter and Identica Client
Closes: 609139
Changes: 
 twidge (1.0.8.1) unstable; urgency=low
 .
   * Clean up a debian packaging bug introduced in 3rd-party commit
 880982d2bc2a9dbbff2893fa16ceb04ce32f6356.  Package now contains
 all the files it should again.  Closes: #609139.
Checksums-Sha1: 
 07672be9d8a1f44af30cbb8efa824814610a8729 1911 twidge_1.0.8.1.dsc
 47cd8809d39b51a8fd119548f47de2231400b4d4 54894 twidge_1.0.8.1.tar.gz
 20c4bc71da60621a894b55189c658e04af62daee 1099740 twidge_1.0.8.1_amd64.deb
Checksums-Sha256: 
 f6ac699aa4cd2471dc9ac262676e60679051a04deed74ff0f9d7d145448311db 1911 
twidge_1.0.8.1.dsc
 c9019b918880cf81b32caa55e57789bb640327a431b0f4be33c61066287de70e 54894 
twidge_1.0.8.1.tar.gz
 b19e30140b21943b6aaeff882634ada35b905c73f4a23f65123cd49eec006327 1099740 
twidge_1.0.8.1_amd64.deb
Files: 
 29193bf9c816ff42f4d76ae85eeddf0c 1911 utils optional twidge_1.0.8.1.dsc
 1e84f5e1a23c2872fd20ec00c455e2b8 54894 utils optional twidge_1.0.8.1.tar.gz
 7edf6bf684168a0261377b3424dc4603 1099740 utils optional 
twidge_1.0.8.1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJNJzhaAAoJEN0p+IRCg57TExUQAKgg8z8FEHZCf5XOAYnAScHh
d7HA0JAzzG+UTdjV8CDhbmbI7FQBLvrtBpnKW8doeJBcER81N1woyng8EQKic88b
nohlSct0YtsC2htrCa7CkZJJr4I1dJbZK2fwK0ikDEMM0CZfTrsTnETQQhxNknXj
mRpNi+fGucdp9nlAKMDAp5LSLqwLQRB5jxFKoSaL6xZQ9v7jp0apPVT97xhm/Qa5
xofwwU5eOTcvJzO1ri/I07ljdq96ZFiFcbxD2VfdIHrLKZwGiYyudk9pH8lUujt5
HcLZEJOOspEWmDXKdErzns758TxFiEFIzDDqkVVqSpKKN2EaeqAqZ+6sJKPKW3ri
t0xPKwWA6pu/jIGGYvtXjPxlI3nzkevkHQ4YV/kJjY6kmAgXspaiN/bckx4jHOne
J96FdFcNRp3CAjDNj0qSiLM/7QXf7T5Lb+nh9oAG4YxAMcXgSv3PHPr1UcpVRKfo
a9Np+dEfKbNGsn9iM+LOI6VxwdpvhZeapQQRL3JLyVtzF4UlbgV1kbObLG5kEleR
tFg7NCogmVhj7HYRBnUOyob1kek22nSe7j8ytGMk4UirAvaq/uzOnS0DanaB+CRw
KOvkX/yHS2z+syZAa+XCHUdq2Lb0onvYCYOINjat/ltRxeFSuSD9fjihhD60KVmT
4OzKLxW4gU0+Z83Bx+DY
=a6bC
-END PGP SIGNATURE-


Accepted:
twidge_1.0.8.1.dsc
  to main/t/twidge/twidge_1.0.8.1.dsc
twidge_1.0.8.1.tar.gz
  to main/t/twidge/twidge_1.0.8.1.tar.gz
twidge_1.0.8.1_amd64.deb
  to main/t/twidge/twidge_1.0.8.1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pbf2w-0003zm...@franck.debian.org



Accepted twidge 1.0.8 (source amd64)

2011-01-05 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 05 Jan 2011 00:12:38 -0600
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.0.8
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 twidge - Unix Command-Line Twitter and Identica Client
Closes: 608978
Changes: 
 twidge (1.0.8) unstable; urgency=low
 .
   * Accept parens as part of URLs.  CLoses: #608978.
Checksums-Sha1: 
 7a0ee17b0e8a54057c81f621e5a90f51a9452017 1903 twidge_1.0.8.dsc
 0680e17f8740f4bf60dc89834d84f5cf51f006b8 54766 twidge_1.0.8.tar.gz
 c8a8fe55c1efa7ccc65092069ff34305a5f6ccc4 120766 twidge_1.0.8_amd64.deb
Checksums-Sha256: 
 f78d09bb6a3f0d8a025f0a2684ca37110f172e6567e72f43d37e63e510c092ab 1903 
twidge_1.0.8.dsc
 879957816e080c5e483c1e680583ca7d1adbe7b79c09a2d8d1d0bdb68a83bf53 54766 
twidge_1.0.8.tar.gz
 7154ef89befa42d2ce2910d06106b27fbc8367925b8d6128732b852799fce987 120766 
twidge_1.0.8_amd64.deb
Files: 
 e30daf432dda12233b8c85e91934c73e 1903 utils optional twidge_1.0.8.dsc
 01e7c031c3c904cfaf5163144a37f675 54766 utils optional twidge_1.0.8.tar.gz
 e3d9eee0cc3b3f49b18c990a75554a30 120766 utils optional twidge_1.0.8_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJNJKJhAAoJEN0p+IRCg57T2Q4P/1KxVD8LUkTJdHBOMyIcIFHE
4aAxPrwqAMXpxQJXL3FV0s4gO+4+2KRhGQuyYrvscOoYujNfo/nexLy+vPkBrTnp
RZmBDTWazjXeCJHJETEWEJsLyDaJbg7wG1LecwHYDql/IGERtVmM3ad6aPD8uQp/
6n8OuK+cPfJjwdkNhEPOAcYW+ZFDrJUwNgLNU5H06z5pgF/Bk/tzMA3rKqITzdXp
EiPcQdBvSEsFUreQhhtbTcAVNvX1Fsj0zZxepcaMOmv4FumWzbAVtmlxlPucbtsv
nCBu/btVBdIna3d14rzP8rJeDdXyz38U7Tk8B0bq8bKxvb3keABLnkCLAhKBr35J
R8G2LpvVUSE5Psi/NmrfETwvZFj54dhdUBFMxm2Ac2pgtTJ5+ZdCtmsYANyE3lZL
/2bA2Ei79/R4T1NmV0uBnllHFxgQNNItTBaeSoCNzRmxfDxRf8tvfiMwGTR58Pn/
1arG1G9Arxb6PgEsRrzas0Vu7dr980KV/qEFox8fxesbXDiMef3TEOpYeU8C8Cq0
VbIUaRP1cjR0+PFKbDL4tlv+j16uMR7ymcfZqmCbfWaJJY+r4sT8k2WN3e8sIbVn
pjnjGt7p1bFRnvqsSwS0z6y3i9Zk9CBl8dOmUcMmsN+ffxmQVqEVz9I60CtICFIM
aZ9VGuCWx2ExIaBPDhvs
=ElP2
-END PGP SIGNATURE-


Accepted:
twidge_1.0.8.dsc
  to main/t/twidge/twidge_1.0.8.dsc
twidge_1.0.8.tar.gz
  to main/t/twidge/twidge_1.0.8.tar.gz
twidge_1.0.8_amd64.deb
  to main/t/twidge/twidge_1.0.8_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pawlb-yx...@franck.debian.org



Accepted twidge 1.0.6 (source amd64)

2010-10-25 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 25 Oct 2010 20:28:16 -0500
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.0.6
Distribution: unstable
Urgency: low
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 twidge - Unix Command-Line Twitter and Identica Client
Closes: 601427
Changes: 
 twidge (1.0.6) unstable; urgency=low
 .
   * Twitter invalidated the twidge API key because it became publicly
 known (sigh).  Have now obfuscated it enough for them.
 twidge will be broken by default without this fix.
 Closes: #601427.
Checksums-Sha1: 
 e6a58945d99bbe7fe75979b79316c5581fc9cd2e 1903 twidge_1.0.6.dsc
 d777830a8d3967b775c9b50e53021386dc1feaa2 54551 twidge_1.0.6.tar.gz
 1e09cbc97412a15d321a72c7d1746564d49aa6a5 1098112 twidge_1.0.6_amd64.deb
Checksums-Sha256: 
 5f121fda73119602468bb53273b527a475fc69f5bfc18321dc2e6e3a9e2da50c 1903 
twidge_1.0.6.dsc
 a7ae66d230090fb1b8ec4275842614cb78e96e41691b651f7ebe13e65ba14a73 54551 
twidge_1.0.6.tar.gz
 279544c6bcbccbc6d61f474efa1c683f5c000a1fa25f7806fb5ffa98ce9da2cc 1098112 
twidge_1.0.6_amd64.deb
Files: 
 24b9bd6d54bb2a925eac6bf5c0d458eb 1903 utils optional twidge_1.0.6.dsc
 8cccfad1ed3f076a85585c22c188ec87 54551 utils optional twidge_1.0.6.tar.gz
 8927e16672bd7ac3f6204f39d2f89102 1098112 utils optional twidge_1.0.6_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iQIcBAEBCAAGBQJMxjLcAAoJEN0p+IRCg57TDvoP/1Ou8tWYnGzoQZQml9WwBVND
u3SEWlnZwKpTQBx7eQOU3bDNPU9KIaHHoRy5q+3bq/zIkV2JrEHXOPgaD3Yqm9nt
vca2KzsuNH+FdeivvwaHuWxXpvt5/5LCiTJjzulKJeuDw/U5TmknVaiemMOKSKTw
ZBOKzp91V550+CjIotEpE3IcR+fVlGbCvqRFkLefL/k8ppP7onhkyU0dPiQAfPO/
RhnBAvFCukWBjorBhocFV+xj2hbQG6M8G/mkAFhiUrzMSR2S3zzvdytteHpO7ejN
q38yslvEy2G1w9qiYOz6GxdzjSe6UuNDpCO2UtCkdbWbTkEDsJRA7a3AGCx77AFB
k2XU+UozAO5B011HEexyUjtz32yLunOGE21b6pSGnPgYaIsawadUF53uLsnDQGFp
HXuonGtVxfikHn+Tt8z19AtWA3U6Vvmf91esplp2BOZbcAL19AlWiCayGg1nUfjB
WBxf9HbPyD4yBZoI0hOG0SO+kQKShRTw+HDVA758VLUeeaPDx2UXXMpTZihL32p9
AEAnw3WV2vZ0/RriGg8KzyAXLLj8e45ZO8JCvUkm79vZemKwUo62hm3HpMrPt0Qx
WVSwBzKRJDClLaw79Aejs42VpC47yaT1bwDc2lEkhwGq20H87LSnBV7cQ0wgZUhZ
DwRpXIhtsqt0nfCzN2t0
=3ssk
-END PGP SIGNATURE-


Accepted:
twidge_1.0.6.dsc
  to main/t/twidge/twidge_1.0.6.dsc
twidge_1.0.6.tar.gz
  to main/t/twidge/twidge_1.0.6.tar.gz
twidge_1.0.6_amd64.deb
  to main/t/twidge/twidge_1.0.6_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1pazz7-0007ip...@franck.debian.org



Accepted twidge 1.0.5 (source amd64)

2010-09-01 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 01 Sep 2010 00:09:38 -0500
Source: twidge
Binary: twidge
Architecture: source amd64
Version: 1.0.5
Distribution: unstable
Urgency: high
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 twidge - Unix Command-Line Twitter and Identica Client
Changes: 
 twidge (1.0.5) unstable; urgency=high
 .
   * Twitter has dropped support for http://twitter.com URLs on some
 servers, and now generally requires http://api.twitter.com/1.  This
 required some minor changes to configuration code.  Twitter uses geoIP
 and some of there servers work fine with 1.0.2 while others don't.
 This version will work with all of them.
Checksums-Sha1: 
 fe9913d76c5889273b4c75e393d0b427bd95443a 1263 twidge_1.0.5.dsc
 a55d272988086ebe2d9afc0f5d1108e2ca4aa2fb 53201 twidge_1.0.5.tar.gz
 8d0aa176a548cedb16cc3c36aeda2fcdda25dfbd 1097212 twidge_1.0.5_amd64.deb
Checksums-Sha256: 
 4e444540ce7a531ea710ed7d5a89050010cd7eb96de8a51f6fd382b80a66124d 1263 
twidge_1.0.5.dsc
 82017778726376878a4455b93bfe8e7395096b2d80dc60efebe4d1dd8ececc58 53201 
twidge_1.0.5.tar.gz
 5373bcb410334b6bca67c74da46d60ffcd1ac4ec4e138e7fc72fdd6b0f4c52e2 1097212 
twidge_1.0.5_amd64.deb
Files: 
 a62d62fdbc812fd13daa5e873f45a757 1263 utils optional twidge_1.0.5.dsc
 0beae3ebaa34c90c2be8df9f64a61bd7 53201 utils optional twidge_1.0.5.tar.gz
 42570425eecf396d5d03d500f9c4da22 1097212 utils optional twidge_1.0.5_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkx+er0ACgkQ3PeFtIodmh+Y+gCgtQHGaAdhpT4op2UAcBhVDuJ1
o1YAoIVd/9EGr4rIh0epx9iL1UeouM43
=sme0
-END PGP SIGNATURE-


Accepted:
twidge_1.0.5.dsc
  to main/t/twidge/twidge_1.0.5.dsc
twidge_1.0.5.tar.gz
  to main/t/twidge/twidge_1.0.5.tar.gz
twidge_1.0.5_amd64.deb
  to main/t/twidge/twidge_1.0.5_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oqpzm-0005fm...@franck.debian.org



Accepted bacula 5.0.2-2 (source all amd64)

2010-08-20 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 20 Aug 2010 14:58:19 -0500
Source: bacula
Binary: bacula bacula-common bacula-common-sqlite3 bacula-common-pgsql 
bacula-common-mysql bacula-director-common bacula-director-sqlite 
bacula-director-sqlite3 bacula-director-mysql bacula-director-pgsql 
bacula-client bacula-fd bacula-server bacula-sd bacula-sd-sqlite3 
bacula-sd-sqlite bacula-sd-mysql bacula-sd-pgsql bacula-console 
bacula-console-qt bacula-traymonitor
Architecture: source all amd64
Version: 5.0.2-2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen jgoer...@complete.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 bacula - network backup, recovery and verification - meta-package
 bacula-client - network backup, recovery and verification - client meta-package
 bacula-common - network backup, recovery and verification - common support 
files
 bacula-common-mysql - network backup, recovery and verification - MySQL common 
files
 bacula-common-pgsql - network backup, recovery and verification - PostgreSQL 
common fil
 bacula-common-sqlite3 - network backup, recovery and verification - SQLite v3 
common file
 bacula-console - network backup, recovery and verification - text console
 bacula-console-qt - Bacula Administration Tool Console
 bacula-director-common - network backup, recovery and verification - Director 
common files
 bacula-director-mysql - network backup, recovery and verification - MySQL 
storage for Dir
 bacula-director-pgsql - network backup, recovery and verification - PostgreSQL 
storage fo
 bacula-director-sqlite - network backup, recovery and verification - SQLite 2 
director tra
 bacula-director-sqlite3 - network backup, recovery and verification - SQLite 3 
storage for
 bacula-fd  - network backup, recovery and verification - file daemon
 bacula-sd  - network backup, recovery and verification - storage daemon
 bacula-sd-mysql - network backup, recovery and verification - MySQL SD tools
 bacula-sd-pgsql - network backup, recovery and verification - PostgreSQL SD 
tools
 bacula-sd-sqlite - network backup, recovery and verification - SQLite SD tools
 bacula-sd-sqlite3 - network backup, recovery and verification - SQLite 3 SD 
tools
 bacula-server - network backup, recovery and verification - server meta-package
 bacula-traymonitor - network backup, recovery and verification - tray monitor
Closes: 591293
Changes: 
 bacula (5.0.2-2) unstable; urgency=medium
 .
   * Remove spurious creation of file_jpfid_idx on upgrade.  Closes: #591293.
Checksums-Sha1: 
 bfabd1529059dead7587a9bfd07e17d9ebdb9ad6 1909 bacula_5.0.2-2.dsc
 d2dcd4e1a2a6f6209333e5e4f955144f8b76d6d2 42538 bacula_5.0.2-2.diff.gz
 569e27a76f9875b2d79ce3aabd048a59be695aef 1020 bacula_5.0.2-2_all.deb
 89caf003c9692ac0aa002937dffcd436e5245e9f 48234 
bacula-director-sqlite_5.0.2-2_all.deb
 427a7daa75d174279ba51477c2d8818b8d57bdb3 48260 bacula-client_5.0.2-2_all.deb
 0fbab4a069bce812193d750f13026f46114f3b11 48182 bacula-server_5.0.2-2_all.deb
 49e9151e30ab463b1cd8f00aab9e650a70e2b95a 637688 bacula-common_5.0.2-2_amd64.deb
 2fa25cf2a6e6a187249771ed806f6d6f122b2ff4 101966 
bacula-common-sqlite3_5.0.2-2_amd64.deb
 9e3f3d37131caa21b96fee8338737c187ec91255 106116 
bacula-common-pgsql_5.0.2-2_amd64.deb
 e67eef9ad56501e39875c6bf92f68c63d8a5f00e 101968 
bacula-common-mysql_5.0.2-2_amd64.deb
 a07651bf5da740d252d2c10355fd80dba795b97e 56876 
bacula-director-common_5.0.2-2_amd64.deb
 3e800b76354b7bcaae819b7edc0a9a3bf981f79e 308052 
bacula-director-sqlite3_5.0.2-2_amd64.deb
 0197e79351fab5c5324958fdce45b8274410475f 308298 
bacula-director-mysql_5.0.2-2_amd64.deb
 08426ecddfaab9f68fb2d6d8527ea12251c187a3 308392 
bacula-director-pgsql_5.0.2-2_amd64.deb
 27a505a386053f97d90e6597d5836f03d66a231f 124364 bacula-fd_5.0.2-2_amd64.deb
 bdb848466bf9b8cbd80e00913c32f9c6f78003a4 459476 bacula-sd_5.0.2-2_amd64.deb
 35c91edcdf5268f54c0acead3e7c5174de0c0ba6 435292 
bacula-sd-sqlite3_5.0.2-2_amd64.deb
 e9129b4bb3364f3011cb1dfa43794a59384c08cb 48172 
bacula-sd-sqlite_5.0.2-2_amd64.deb
 096002d1368b1831f3e083600bcdc53c10161033 435334 
bacula-sd-mysql_5.0.2-2_amd64.deb
 00feec13cd19df90543ce31679de0788041cf53f 435344 
bacula-sd-pgsql_5.0.2-2_amd64.deb
 8b35e5efcb926e3917286899d17d60bc667a77c9 67642 bacula-console_5.0.2-2_amd64.deb
 4f1d19fc3cb464f117080b8f5c0dec3b2911661a 648992 
bacula-console-qt_5.0.2-2_amd64.deb
 50803da9c385f119749b3e6b19d060cf942d580f 70086 
bacula-traymonitor_5.0.2-2_amd64.deb
Checksums-Sha256: 
 aaf0319d8a8fd2bd51fe4c1df6331cf016c1edf4cc1cf26bbcab12a42fe4f7d3 1909 
bacula_5.0.2-2.dsc
 c6507c445bd998ff8cb5a03ed0ff8f99053849bf4d4de61c9e51c4079c372d90 42538 
bacula_5.0.2-2.diff.gz
 bb2e550d89029ac2ccf57afecb7990126c58c8ba4afa02669a25e13b91ebbc01 1020 
bacula_5.0.2-2_all.deb
 84cd62ca4773ca89929f3ef5049906689ab104c62f41dda2e9adece4b4d3c263 48234 
bacula-director-sqlite_5.0.2-2_all.deb
 ee9f20b40896b6a5fa7dc7ffebaccdfa1e5b185085de50024d9a28f13c317b65 48260 
bacula-client_5.0.2-2_all.deb

Accepted offlineimap 6.2.0.2 (source all)

2010-06-29 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 29 Jun 2010 16:51:19 -0500
Source: offlineimap
Binary: offlineimap
Architecture: source all
Version: 6.2.0.2
Distribution: unstable
Urgency: high
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: John Goerzen jgoer...@complete.org
Description: 
 offlineimap - IMAP/Maildir synchronization and reader support
Closes: 549392 557912
Changes: 
 offlineimap (6.2.0.2) unstable; urgency=high
 .
   * Re-import 6.2.0+nmu1 and +nmu2, the changes of which had been
 inadvertantly removed with the upload of 6.2.0.1.
 Closes: #557912, #549392.  Both were RC.
Checksums-Sha1: 
 aec0359177e15427cd28926c1f75f7d6600215b0 1070 offlineimap_6.2.0.2.dsc
 e1dc20222c89a04f7ff79bfea41ddef4e67f42ee 103489 offlineimap_6.2.0.2.tar.gz
 b431b60903c6db562c3d537dbbf04c3dacd7ed7d 156768 offlineimap_6.2.0.2_all.deb
Checksums-Sha256: 
 5b9838bfedce9ef3c483a528a34b53ec9399dc5eda2d05d4d9cd49e60f046804 1070 
offlineimap_6.2.0.2.dsc
 ecec637473ba4da4df4923776999a6128f5f2645063486e628f58cdac2c6c9f0 103489 
offlineimap_6.2.0.2.tar.gz
 1e4196a7f1e9608b1102c49e134e9c97a60d062d0f92a40799900ee329bb352f 156768 
offlineimap_6.2.0.2_all.deb
Files: 
 bd8b49fbb27b35dc277bc455682802ca 1070 mail optional offlineimap_6.2.0.2.dsc
 8d9c24a3b1d4ff8d9e121175fb74dedb 103489 mail optional 
offlineimap_6.2.0.2.tar.gz
 7d50d6f954e24ceba8b35cb96f04b766 156768 mail optional 
offlineimap_6.2.0.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkwqbJYACgkQ3PeFtIodmh/4EQCgx8SfGN9iY2fgtt2f2ptwSljw
KbEAn1AAyIqkExpQQLTX5v+Sgf24Rh0D
=1B5S
-END PGP SIGNATURE-


Accepted:
offlineimap_6.2.0.2.dsc
  to main/o/offlineimap/offlineimap_6.2.0.2.dsc
offlineimap_6.2.0.2.tar.gz
  to main/o/offlineimap/offlineimap_6.2.0.2.tar.gz
offlineimap_6.2.0.2_all.deb
  to main/o/offlineimap/offlineimap_6.2.0.2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1otjof-00062b...@ries.debian.org



  1   2   3   4   5   6   7   8   9   10   >