Bug#1064667: ITP: roundcube-plugin-carddav -- carddav plugin for Roundcube Webmail

2024-02-25 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org, j...@paladyn.org

* Package name: roundcube-plugin-carddav
  Version : 5.1.0
  Upstream Contact: Michael Stilkerich 
* URL : https://github.com/mstilkerich/rcmcarddav
* License : GPL-2
  Programming Lang: PHP
  Description : carddav plugin for Roundcube Webmail

This provides the caldav plugin for Roundcube, adding remote
CalDAV address books to Contacts task in Roundcube.

It has been tested with the radicale CardDAV server, which is
alredy integrated in FreedomBox and could enhance the usefulness
of it's roundcube service.

It has been requested in #966494 against roundcube-plugins-extra
which is now a dependency package.

Ideally this will be maintained within Debian Roundcube Maintainers



Bug#1063906: ITP: monitoring-plugins-check-smart -- check S.M.A.R.T. storage system monitoring plugin for nagios compatible monitoring systems

2024-02-14 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: monitoring-plugins-check-smart
  Version : 6.14.1
  Upstream Contact: Claudio Kuenzler
* URL : 
https://www.claudiokuenzler.com/monitoring-plugins/check_smart.php
* License : GPL
  Programming Lang: Perl
  Description : check S.M.A.R.T. storage system monitoring plugin for 
nagios compatible monitoring systems

The check_smart monitoring plugin uses smartmontools to monitor the
health of physical hard drives via a central nagios based monitoring
system.

Ideally it should be maintained within the Debian Nagios Maintainer
Group. It could alternatively be added to monitoring-plugins-contrib,
adding extra sugests for smartmontools and sudo.



Bug#1052280: ITP: erlang-hex -- Package manager for the Erlang ecosystem

2023-09-19 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org, j...@paladyn.org

* Package name: erlang-hex
  Version : 2.0.5
* URL : https://github.com/hexpm/hex
* License : Apache-2.0
  Programming Lang: Elixir
  Description : Package manager for the Erlang ecosystem

Hex is package manager required to build Pleroma (a Federated
Social Media application).

It is primarily intended as a stepping stone towards a pleroma
package



Bug#1030542: ITP: erlang-hex -- Package manager for the Erlang ecosystem

2023-02-04 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: erlang-hex
  Version : 2.0.0
  Upstream Author : Eric Meadows-Jonsson
i URL : https://hex.pm/
* License : Apache Software License 2.0
  Programming Lang: Elixir,Erlang
  Description : Package manager for the Erlang ecosystem

The Hex packaging manager manages dependencies within the Erlang
and Elixir ecosystem. It can download software from repositories
such as hex.pm, and can be used with elixir's mix program or rebar3.

It is a build-depedency for the pleroma federated social network.
Original packaging by Gantua.



Re: Fixed release dates are hurting quality

2021-03-10 Thread John Lines


> 
> 
> But ok, maybe my thinking is too much influenced from the SLES
> release process
> at SUSE which ships with a rather limited set of packages which are
> guaranteed
> to work and are officially supported.
> 
> Adrian
> 
The problem I found using SLES and Redhat, which both had excellent
support for their core packages, is that all the tricky problems you
encounter in real life come from software which is outside the
supported set.

Once you start using third party RPMs you are in a worse state that
using a Debian package which has fallen out of active maintenance, in
that at least old packages met policy at some time in the past.

If the Debian maintainer has moved on to other areas of interest, and
another maintainer finds something they use is in danger of dropping
out of a release then that implies the package was used by at least two
Debian developers, so there is a high chance it is actually helping
many more people who are not developers, and so keeping it in Debian
seems to me a net benefit.

John



Bug#980065: ITP: put-dns -- tool to simply creation of individual DNS records on external providers

2021-01-13 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org, j...@paladyn.org

* Package name: put-dns
  Version : 0.0.1
  Upstream Author : John Lines 
* URL : https://gitlab.com/JohnLines/put-dns
* License : LGPL
  Programming Lang: Shell script , Perl, 
  Description : tool to simply creation of individual DNS records on 
external providers

put-dns is a simple abstraction of the process of creating a
DNS record with some DNS provider. 

It will be a Suggests for packages which require an external
DNS record to be created before they are useful, such as
opendkim, where in the postinst, if put-dns is installed will
be able to do
 put-dns 'rfc1034-format-dns-record'

It has a default 'none' provider, which appends the record
to /var/lib/put-dns/pending.txt for manual creation.

There is a comparison of similar or related projects at
 https://gitlab.com/JohnLines/put-dns/-/wikis/Similar-or-Related-Projects



Re: put-dns - Abstraction of external DNS record creation

2021-01-06 Thread John Lines
> 
> Seems there's a standard protocol https://www.domainconnect.org/
> 
> Their reference code is in Python as well, like octopress, in case 
> that's relevant.
> 
> 
>  - Jonas
> 
I have
written https://gitlab.com/JohnLines/put-dns/-/wikis/Similar-or-Related-Projects
 to describe where I think these projects fit.

The idea behind put-dns is that if someone was packaging,
say Libravatar the could put into their postinst

put-dns "_avatars._tcp.example.com. IN SRV 0 0 80 avatars.example.com"
put-dns "_avatars-sec._tcp.example.com. IN SRV 0 0 443
avatars.example.com"

with appropriate values for avatars.example.com, and if put-dns was
already configured with a working provider then the end user would not
need to do that step.

Complex cases, with multiple redundant servers, load balancing etc will
require much more planning and understanding of the configuration
possibilities and are out of the scope of put-dns.

John


Re: put-dns - Abstraction of external DNS record creation

2021-01-03 Thread John Lines
On Sun, 2021-01-03 at 08:11 +0200, Steve Kemp wrote:
> It's an interesting idea, but I suspect in order to be useful it will
> need to handle a wider number of sites.
> 
> There are several projects out there which attempt to abstract DNS
> entries across systems, allowing you to mirror zones, etc.  For
> example you might consult:
> 
> https://github.com/octodns/octodns
> 
> Steve
> 
Thank you, Octodns looks very interesting, although it seems to be
aimed at rolling out a full set of DNS records for a domain, whereas
for a use in a Debian package it would be more a case of adding, for
example an SRV record in the postinst, so that the user did not have do
do that by hand.

It does have a nice collection of providers, and it would be good to be
able to use them to add a single record without replacing the entire
zone, which may be possible, with some further investigation.

John



put-dns - Abstraction of external DNS record creation

2021-01-02 Thread John Lines
While working towards the creation of a Small Organisation Server,
based around federated and open protocols I needed a way to create DNS
records on an external DNS server.

I could not find an existing general way to do this, so I created a
command put-dns, which is just a shell script which is passed a DNS
record in RFC 1034 format, and then passes this on to a provider-
specific script which does the actual update.

I have this implemented for one real provider, a hosting/DNS provider
called Mythic Beasts, and a 'none' provider which simply outputs the
request to a text file.

Having got this far I thought this might be useful for other projects,
so I have split it off into https://gitlab.com/JohnLines/put-dns

If something which does the same job already exists then please let me
know, and I will use that, and package it if not already packaged.

I have no desire to reinvent the wheel, but have noticed there are
several projects where the instructions for installation contain 'now
set up a DNS record', but there is not much to help an average end user
with this.
There is the namecheap package, which I have not looked at beyond the
description, but that is tied to a single provider, and does more than
is needed.

I would welcome feedback as to whether abstracting external DNS updates
seems a good idea, even if only in a crude way, would other projects
find this useful as an option ?

John


Bug#977495: ITP: smallorganisationserver -- server for a small organisation, internet hosted and web accessed and managed

2020-12-15 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines 
X-Debbugs-Cc: debian-devel@lists.debian.org, j...@paladyn.org

* Package name: smallorganisationserver
  Version : 0.0.1
  Upstream Author : John Lines 
* URL : https://wiki.debian.org/SmallOrganisationServer
* License : AGPL-3+, CC-BY-SA-4.0
  Programming Lang: Perl, Shell scripts, Python 
  Description : server for a small organisation, internet hosted and web 
accessed and managed

The Small Orgnasation Server aims to provide many of the needs of a small
organisation which does not have access to a technically skilled system
administrator, in a single hosted system. The package depends on widely used
systems such as Postfix and Dovecot for email, and simplifies configuration by
limited options to those suitable for a small organisation. It acknowleges
that people often have more than one interest, so aime to federate and work
well with other systems, based on open standards.

The aim is to provide a small organisation, such as an arts group, dance class
model railway socient etc with a viable alternative to conducting all there
operations through one of the giants such as Facebook Google or Microsoft as
a way to communicate between members, and show what they do to the world.

Freedombox does something similar, aimed at being hosted at a user's home,
and has a much greater privacy focus. Its user base tends to a higher degree
of technical competence. 

Debian Edu has some similarities in terms of technology, and working with
teams engaged in similar activities, and with upstreams to make software
easier to deploy for less technically skilled users is key.

I am currently running, or helping to support, the IT for several smalli
organisations whose network activites are scattered across a range of
disparate solutions, which I intend to migrate once it comes out of alpha,
which is very much where it is now
 
Ideally it should be maintained by a team.



Re: Sample Small Organisation Server now has email

2020-12-12 Thread John Lines
On Wed, 2020-12-02 at 21:02 +0100, Jonas Smedegaard wrote:
> Quoting John Lines (2020-12-02 19:47:02)
> > > Where is the code?
> > 
> > Much of the code, which is essentially a set of configuration
> > options 
> > is on my test system at present, but I am cleaning it up and
> > migrating 
> > it to https://salsa.debian.org/jlines/smallorganisationserver
> > 
> > On salsa at present is the start of a framework,
> 
> Great.  Thanks!
> 
>  - Jonas
> 

The salsa project now generates a package which pulls in at least some
of its dependencies, has scripts for a bit of postfix configuration,
including generating a DKIM DNS record, and for one DNS provider
installing it into DNS, and configuring Postfix and OpenDKIM to use it.

If the DNS provider is 'none' in /etc/sos/sos.conf then there is a web
page to access pending DNS items which need to be set up.

There is still a lot to be done, but progress is being made.

Best wishes

John



Re: Sample Small Organisation Server now has email

2020-12-02 Thread John Lines


> 
> Where is the code?

Much of the code, which is essentially a set of configuration options
is on my test system at present, but I am cleaning it up and migrating
it to
https://salsa.debian.org/jlines/smallorganisationserver

On salsa at present is the start of a framework, 

> 
> At the link you share above, I only essentially find "there is no
> step 
> by step guide."
> 
> 
The actual steps I took to get to where the system is had many stages
of going in circles, I now intend to script the installation, so far
and put that onto salsa

> 
> A "Debian Pure Blend" is developed and maintained _in_ Debian.
> 
The intention is to be a Debian Pure Blend. I am aware that there is a
long way to go, but The Greatest Journey Starts with a Single Step.



Best wishes

John




Re: A Small Organisation Server as a Debian Pure Blend

2020-12-02 Thread John Lines
On Tue, 2020-11-17 at 02:07 +, Wookey wrote:
> On 2020-11-16 19:20 +0000, John Lines wrote:
> 
> 
> I think this is a worthy technical goal. Given the decade it has
> taken for Fredombox to get this far I suspect the pandemic will be
> over before we get something working at a reasonably numpty-proof
> level, unless an impressive level of enthusiasm is collected and
> applied.
> 
> I have just set up a small server yesterday in order to experiment
> with this stuff (setting up matrix-synapse initially, but jangouts
> and BBB are also of interest, although neither are packaged).
> 
> So yes, knock something up and I will be happy to at least test it. 
> 
> Wookey
Would you like to pick an Ambridge character, and I will set you up an
account 

John


Sample Small Organisation Server now has email

2020-12-02 Thread John Lines
My demonstrator Small Organisation Server now has working email, set
up, as described, in overview
at https://wordpress.debian.social/jlines/2020/12/02/ambridge-garden-club-email/

Pretty much all the components came from software packaged in Debian,
and I think, even though the current setup went down a number of blind
alleys, it should only need, for the email setup, the domain name to be
served (which is the normal system domain name) and users having
standard fields in an LDAP schema.

There is quite a lot of overlap with Freedombox, although for
flexilbity of LDAP administration it currently has phpldapadmin and
FusionDirectory installed. I also had GOSA installed, but at present it
conflicts in too many places with FusionDirectory.

John




Re: A Small Organisation Server as a Debian Pure Blend

2020-11-23 Thread John Lines


> 
> > I find the name "Small Organisation" a bit misleading. In my
> > experience, often even
> > massive companies and universities need small, easily deployed
> > services that are
> > maintained independently from the core infrastructure.
> > Sometimes it is to serve remote offices with limited connectivity,
> > or
> > to test a new
> > service quickly, or use it on vehicles with intermittent or
> > expensive
> > connectivity, or
> > to keep very sensitive data isolated or ensure legal compliance and
> > so on...
> > 
> 
> Such small offices generally have recourse to a central IT
> organisation. I have supported, as part of a corporate IT team, a
> number of offices which have a small local server on the company WAN,
> and an office administrator who changes the ink in the printer, might
> change backup tapes and do a lot of the day to day work, but they had
> access to more technical help if needed.
> 
> Best wishes
> 
> John

Having said that, I started as a scientist trying to get things done
which were not a good match to the services the central IT team
provided. IT, like many other things, is strongly influenced by 'The
grass is always greener on the other side of the fence' and there are
many advantages to running a large organisation as a set of federated
units, and if they are based on a set of federated standards to
communicate with each other, then they can be more flexible and move
faster. For example running their own specialist departmental web site
etc, rather than having to fit into a central CMS which might not meet
their needs

John


> 



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-23 Thread John Lines
> 
> > You may all also find it useful to look at debian-edu which has
> > some 
> > similar ideas. If you do want to put together something new, it's 
> > possible that a melting together of ideas from Freedombox / Debian-
> > Edu 
> > and other projects will give you a better starting point.
> 
> Given the subject of this email thread, I guess it is already well
> known 
> that this new project share ideas with those projects we collectively
> call Debian Pure Blends.
> 
> If you meant to highlight some overlap with Debian edu in particular
> not 
> found in other Debian Pure Blends, then I suggest you elaborate,
> because 
> that was not clear at least to me from the bits you wrote above,
> Andrew.
> 
> 
>  - Jonas
> 
I think come of the common ground is in the LDAP and Web interface
focus. I hope to have a look at where the common ground in the schemas
is, and where they differ, and to find out if they conflict in approach
anywhere.

I am still going a lot of looking at the fine details of how things are
implemented.

Best wishes

John



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-23 Thread John Lines
On Fri, 2020-11-20 at 17:28 +, Andrew M.A. Cater wrote:
> > 
> You may all also find it useful to look at debian-edu which has some
> similar
> ideas. If you do want to put together something new, it's possible
> that a 
> melting together of ideas from Freedombox / Debian-Edu and other
> projects 
> will give you a better starting point.
> 
I am looking at GOSA as well, as the combination of LDAP and web seems
good.

There are some differences in emphasis, but there is also a strong
overlap in terms of aiming towards simplicity of administration etc

Best wishes

John





Re: A Small Organisation Server as a Debian Pure Blend

2020-11-23 Thread John Lines
On Fri, 2020-11-20 at 14:37 +, Federico Ceratto wrote:
> As Joseph pointed out, the use-case for the Small Organisation Server
> is practically
> the same as FreedomBox, either installed from image or with "apt
> install freedombox".
> 
I think the key differences are:

1) Funding - This is important because paying the bills and control are
strongly related (or should be).
 Freedombox is generally going to be bought by an individual, and in
the way it is projected, one with a strong privacy interest.
 The Small Organisation Server is targeted at group of people with a
common interest, which is probably not technical, and who probably have
other interests as well. Thus it is not aiming to do everything that
each member might want.

2) Location -
 The FreedomBox expects to be on somebody's home network, hence has a
focus on dealing with being on a Dynamic IP address, being discoverable
on a local network, being able to be on a local wifi, and for people to
be able to plug a DOS formatted USB Stick into it.
 The Small Organisation Server expects to be somewhere on the Internet,
on a static address, discovered by DNS. It has no use for support for
hardware it does not have (such as USB ports or Wifi), and should not
be attempting to discover anything about its local network.



> I find the name "Small Organisation" a bit misleading. In my
> experience, often even
> massive companies and universities need small, easily deployed
> services that are
> maintained independently from the core infrastructure.
> Sometimes it is to serve remote offices with limited connectivity, or
> to test a new
> service quickly, or use it on vehicles with intermittent or expensive
> connectivity, or
> to keep very sensitive data isolated or ensure legal compliance and
> so on...
> 

Such small offices generally have recourse to a central IT
organisation. I have supported, as part of a corporate IT team, a
number of offices which have a small local server on the company WAN,
and an office administrator who changes the ink in the printer, might
change backup tapes and do a lot of the day to day work, but they had
access to more technical help if needed.

Best wishes

John



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-23 Thread John Lines
> 
> Seems our defined problem is quite similar, if not identical.
> 
> Would be great if we could find overlap also in our work towards 
> solutions.
> 
Collaboration and working together as much as we can seems central to
successful FLOSS projects

> 
> Makes me happy that you want to give it a try.
> 
> You can toy with it at https://live.jones.dk/demos/ if you want.
> 
> 
I have tried the demos - they are impressive, and nice to see that
janus is packaged - I have not tried installing it on my sample Small
Organisation Server, but I will in order to see how it does with the
limited virtual hardware and how the networking holds up.


> > one of the concepts of the overall Small Organisation Server is to 
> > document why particular components were used - which initially is 
> > likely to be because they are the one I know best.
> 
> What you call components I call features in my Redpill project: 
> https://source.redpill.dk/org/tree/README.md
> https://source.redpill.dk/org/tree/SETUP.md
> 
> My goal is for each feature to become a new (or get absorbed by an 
> existing) Debian package, and that each feature - including its 
> documentation - is only loosely tied to other features.  I.e. that
> one 
> organisation can choose to run "mail" and "mail-lists" features and
> in 
> their documentation not be confused by documentation on "mail-
> accounts" 
> - and another organisation include "mail-accounts" but exclude 
> "mail-list".
> 
Mail is one of the first target applications for a Simple Organisation
Server - I have just installed Postfix on my sample server, and now I
want to integrate it with LDAP, both for forwarding (aliases in LDAP)
and local delivery (into Dovecot with Roundcube for web access)


> For documentation I have defined a set of rules for my work, to help 
> ensure the flexibility of integration: 
> https://source.redpill.dk/org/tree/ADMIN.md
> 
> I am sharing these details because although you didn't show interest
> in 
> my Redpill project (which is perfectly fine) we might still align on
> a 
> writing style for _some_ resuse across projects.
> 
> Feel free to reuse any of the material at
> https://source.redpill.dk/ and 
> (less mature, and only some repos aligned with the Redpill
> constraints) 
> https://source.couchdesign.dk/ - if licensing is acceptable to you, 
> obviously (and if not, please do share why).
> 
> 
I did have a quick look at these and will hope to revisit them at some
point. My Danish is very rusty, when looking at some random pages on
Couchdesign, so I only read them quite slowly.

Best wishes

John

> > 




Re: A Small Organisation Server as a Debian Pure Blend

2020-11-19 Thread John Lines
On Wed, 2020-11-18 at 15:29 +, Jeremy Stanley wrote:
> On 2020-11-18 11:06:20 + (+), John Lines wrote:
> [...]
> > I do suggest in
> > 
> > https://wordpress.debian.social/jlines/2020/11/13/ambridge-garden-club-registering-the-domain/
> > 
> > that AWS might be a possibility, or Azure, or Google Cloud
> 
> If you're going to advocate for free/libre open source software,
> remember that AWS, Azure and Google Cloud are the antithesis of it
> yet have many, many, many competitors based entirely on F/LOSS you
> could be recommending instead.

The https://ambridge-garden-club.org.uk/ is hosted at MythicBeasts, a
small independent hosting provider, who are Linux friendly, but the key
point is that it is based on a standard Debian system, which can be
hosted anywhere, and hence can not be locked in.

I am advocating choice, as the alternative for small organisations,
with no IT sysadmin, is to put everything on Facebook, or Google Docs,
or Microsoft Office 365 - and then every member of your organisation is
locked into that ecosystem.

John



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-19 Thread John Lines
On Wed, 2020-11-18 at 16:18 +0100, Jonas Smedegaard wrote:
> Hi John,
> 
> Quoting John Lines (2020-11-18 13:35:42)
> > On Tue, 2020-11-17 at 02:07 +, Wookey wrote:
> > > On 2020-11-16 19:20 +, John Lines wrote:
> > > > I have written at 
> > > > https://wordpress.debian.social/jlines/2020/11/07/the-ambridge-garden-club/
> > > >  
> > > > about a such a group, as I am interested to know if others
> > > > feel 
> > > > this is also a problem, and a one worth trying to solve.
> 
> I see this problem too, and am working on addressing it.  But slowly.
> 
> My aim is to purely integrate tools officially in Debian (which is
> what 
> I defined as "Debian Pure Blend", btw).  So to me, the first step is
> to 
> make sure all parts are packaged officially in Debian, and is well 
> maintained and in healthy shape upstream as well...
> 

One of my reasons for an example Small Organisation Server with a goal
of being able to be administered and used by non-technical people is to
show the real world need for things to be packaged officially in Debian
(or similar - I have not used Fedora for some time, or other
distributions). The packaging process should act as the arbiter for the
issues which are not relevant to upstreams, such as who gets to 'own'
port 80, or whatever.

I know it is possible for a non-technical person to, for example, set
up and run a video conference, invite attendees etc - as I see this
going on round me all the time, but if the way to do it starts

 git clone ...

they are not going to do it.

Lots of software is being made available as Docker containers, but I
feel this is OK for demonstration, or someone who only wants to do one
thing, but, again taking my Ambrige Garden Club as an example, ideally
they should not need a different username and password for each service
(or get habituated into using their Facebook or Google credentials for
any web site which asks for them)

> 
> > > 
> 
> I distinguish between 4 categories of video conferencing services:
> 
>  a) frontend-only
>  b) frontend + lighweight backend
>  c) frontend + heavyweight backend
>  d) cloud-only or in other ways non-free
> 
> BigBueButton and Jitsi are both in category c).
> 
> My interest is category b) because - unlike c) or d) - can most 
> realistically be hosted on small hardware with reduced
> administration, 
> and - unlike a) - can serve rooms of more than 6-8 participants.
> 
> Among category b) solutions, I am aware of these in active
> development:
> 
>  * jangouts, using janus backend
>  * multiparty-meeting, using mediasoup backend
> 
> I maintain the janus package and am happy to collaborate on getting
> more 
> (both related and competing) components packaged.

I run a small jitsi server on AWS, and it would be good to have an
official package, though the resource requirements are too heavy for my
example Small Organisation Server at the moment

I will look at Janus, one of the concepts of the overall Small
Organisation Server is to document why particular components were used
- which initially is likely to be because they are the one I know best.



> 
> I am also interested in information about tools that I might have 
> missed.  Here's what I am aware of already: 
> https://source.redpill.dk/media-stream-hosting/tree/DEVELOP.md
> 
> 
Thank you - that is a very useful list. 


> If your interest is in integrating something *now* to have it
> quickest 
> possible usable, then I recommend that you collaborate closely with 
> [FreedomBox] to not fork it but improve it to be flexible enought to
> fit 
> also your needs.
> 
> [FreedomBox]: https://wiki.debian.org/FreedomBox

I have forked the freedombox repository, but with the intention of
feeding changes back in, and am now running my forked version
(basically the bits which assume it is running behind NAT on a dynamic
IP address) at https://ambridge-garden-club.org.uk/plinth/


> 
> 
> 



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-18 Thread John Lines
On Wed, 2020-11-18 at 19:48 +0800, Paul Wise wrote:
> On Wed, 2020-11-18 at 11:06 +0000, John Lines wrote:
> 
> > I believe/hope it should be possible to this type of thing another
> > way,
> > and that a technical sysadmin should not be needed.
> 
> You would still need a sysadmin to do the hardware, OS and software
> setup, fixes, tweaks, replacement, etc.
> 
At that level the paid sysadmin would be the hosting provider from
which the host was rented, which might be Amazon, or a independent.

Within the system, apt automatic updates seem to be doing a pretty good
job now. The tricky part is major version upgrades, which Debian does
pretty well - I think - although the system I am writing this on was
installed with wheezy and has been updated through all the releases
since, and is now running bullseye, I usually - like now, jump to a
testing release before the freeze. I have done upgrades from one stable
release to another, and think they should be OK.

Most people running on Windows used to just buy a new server every
major release, which kept everybody (hardware sales and Microsoft)
quite happy


> > I have set up systems on AWS for myself, but it is much too big a
> > barrier for anybody non technical.
> 
> I was suggesting that AWS themselves would be the right folks to do
> this, since they have the scale to distribute the sysadmin/etc costs
> over many many customers in order to make it affordable enough.
> 



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-18 Thread John Lines
On Tue, 2020-11-17 at 02:07 +, Wookey wrote:
> On 2020-11-16 19:20 +0000, John Lines wrote:
> 
> > ...
> >I have written
> >at 
> > https://wordpress.debian.social/jlines/2020/11/07/the-ambridge-garden-club/
> > about
> >a such a group, as I am interested to know if others feel this
> > is also a
> >problem, and a one worth trying to solve.
> 
> Definitely. I have been frustrated that our local charity has to pay
> zoom several hundred pounds to hold our AGM virtually because they
> want some of the advanced features which cost money (broadcasting
> with
> central control of audio and attendees not visible). They have no
> idea
> that things like Big Blue Button exist (which I suspect, but don't
> know) also has these features. And even if they did know they have no
> technical expertise/bandwidth to set it up.

I think Big Blue Button is beyond the scope of the type of organisation
I have in mind, in terms of requirements, though it would be good to
have them more widely known.

I find the mind share that Zoom has a bit alarming, and I seem to be
spending over 8 hours a week in Zoom meetings - I do not thing it is
good that any single product becomes synonymous with a type of service.


> 
> Similarly it would be great if _everything_ wasn't only on twitter
> and
> facebook and somethings made it to matrix, disapora and mastodon. But
> the network effect is really powerful here, and groups might discover
> these things if they had their own service for some other reason
> (such
> as wanting jitsi/wordpress/BBB services they controlled).
> 
> >My proposed solution is a Debian Pure Blend for a Small
> > Organisation
> >Server (sos) designed to be installed at a hosting provider, and
> > accessed
> >and administered through a web interface. It shares quite a lot
> > of
> >similarity, and should probably, have as much as possible in
> > common with
> >the FreedomBox project - for example probably plinth.
> 
> Another relevant model is framasoft, who provide these services (as a
> collective service, rather than a per-organisation server), but would
> like many more organsations to do this. I don't know how easily
> reproducible their setup is.

I like Framasofts software and philosophy. I suppose some of the
motivation for the Small Organisation Server comes down to economics. I
appreciate they way they, as well as the many ethically motivated
groups, provide free services for anybody, but I do not think that
scales to the selfish wider world.

The Ambrige Garden Club - my sample small organisation is funded by its
members subscriptions (hypothetically - actually by me), and has
control of the resources consumed by its members, thus if somebody uses
excessive disk space on the subject, say of steam trains, it is up to
them to suggest that member put those pictures etc somewhere else.

> 
> >It is differentiated from FreedomBox at at technical level by,
> > for
> >example, not using avahi - the Small Organisation Sever would
> > share a
> >local network at an ISP with other completely unrelated servers,
> > neither
> >would should it depend on netcat-openbsd, ppp, pppoe etc, which
> > are
> >targetted at a different situation.
> 
> Does it need to be a new blend to work, or can it be a config option
> on freedombox? The targets are so similar it seems like we ought to
> be
> able to use the same codebase? I have not followed the project
> closely
> after the first year or two so don't actually know exactly how it is
> now.
> 
> >I think it would be good to be able to provide the facilities
> > available
> >via https://wiki.debian.org/Teams/DebianSocial to other
> > organisations, and
> >wonder it you agree ?
> 
> I think this is a worthy technical goal. Given the decade it has
> taken for Fredombox to get this far I suspect the pandemic will be
> over before we get something working at a reasonably numpty-proof
> level, unless an impressive level of enthusiasm is collected and
> applied.
> 
I am really keen for the pandemic to be over, and in the mean time am
seeing how far this will get. I want to avoid re-inventing the wheel as
much as possible, hoping to work with Freedombox people on common
ground.

> I have just set up a small server yesterday in order to experiment
> with this stuff (setting up matrix-synapse initially, but jangouts
> and BBB are also of interest, although neither are packaged).
> 
> So yes, knock something up and I will be happy to at least test it. 
I will let you know when there is something at the testable level.

I am putting bits up at https://wordpress.debian.social/jlines/ though
that often lags where I am.
> 
> Wookey



Re: A Small Organisation Server as a Debian Pure Blend

2020-11-18 Thread John Lines
On Tue, 2020-11-17 at 22:10 +0530, Joseph Nuthalapati wrote:
> FreedomBox has been successfully used in community deployments to
> serve
> a number of useful applications from a locally hosted server. This is
> documented in the WikiBook, FreedomBox for Communities[1].
> 
> I agree with you that a Debian Pure Blend for small organizations
> overlaps significantly with FreedomBox. However, there are some
> differences to keep in mind:
> 
> 1. FreedomBox's primary focus is on privacy, not self-hosting in
> general.
> 2. FreedomBox is meant to be small and personal, so supporting an
> organization with a thousand users is not a priority for the project.
> 
An organisation with a thousand users, or more should expect to be
putting more resources into administration than one of 20 to 200, which
is what I would call a small organisation. I presume, for example that
the members know each other already, as they have something which
brings them together.

An important part of privacy is to separate what you intend to make
public from what you wish to keep private. If all content creation
happens on platforms where the content consumers need (free, but
exchanged for their privacy) registration to access that content then
accessing them through Tor does not provide any benefit.


> The applications desired by home users and office users can be
> different. For example, a home user can be satisfied with a simple
> expense tracker to manage personal finances, while an organization
> might
> require full-blown accounting software.
> 
I would not normally expect the small organisation to do their accounts
on a hosted web service, even self hosted, as that is the type of thing
which I would regard as private (at least up to the stage where they
publish their accounts). I would prefer that their treasurer did they
type of simple home office work via LibreOffice Calc and so on, but
realistically they probably use Excel - but that is a different topic.


> That being said, FreedomBox is currently the only pure blend that is
> primarily meant for hosting servers. Hence it can be a very good
> foundation on which to start the pure blend for small organizations.
> 

I am experimenting with a fork of Freedombox which does takes some of
the things which are only relevant for a system behind NAT on a home
network, and which I hope than then back pulled back into the main code
base.



> FreedomBox is already being published as an Amazon Machine Image for
> easy self-hosting on AWS EC2[2]. Currently, this is only being
> recommended for trial purposes to FreedomBox users.
> 
> As Wookey mentioned, in case of a cloud setup, some modules that
> assume
> that the device is on a home network can be turned off or some
> features
> selectively disabled.
> 
> Regardless of whether applications are integrated into FreedomBox
> itself
> or a new pure blend is made, the primary challenge is still packaging
> large web applications for Debian. In my opinion, it is better to not
> invest effort into building another web application like FreedomBox.
> Instead, reuse the parts which FreedomBox got right and put more
> efforts
> into bringing more server applications into Debian.
> 
> 1. https://en.wikibooks.org/wiki/FreedomBox_for_Communities
> 2. https://freedombox.org/cloud/
> 

One of the first things I want for my ambrige-gaden-club.org.uk example
is email, as in an MTA (postfix), with IMAP server (Dovecot) and web
access (roundcube) - but with the expectation that in general most
members will have an existing mail address, so it will just be
forwarding. This is a very common use-case for small organisations at
present, but hard to get right.  (one of the reasons for using an
example organisation rather then one of the ones I am involved in is
that I can experiment without losing real people's email etc.




Re: A Small Organisation Server as a Debian Pure Blend

2020-11-18 Thread John Lines
On Wed, 2020-11-18 at 00:15 +, Paul Wise wrote:
> On Mon, Nov 16, 2020 at 7:30 PM John Lines wrote:
> 
> > I have been thinking about how to offer alternatives to Facebook,
> > WhatsApp, Zoom etc for non-technical people, many of whom are
> > finding the Internet and computers much more central to their lives
> > than they did before the pandemic.
> 
> This idea reminds me of Sandstorm, which aims to be a platform for
> making it easy for non-technical folks to deploy and run web
> applications. Nextcloud also comes to mind.
> 
> https://sandstorm.io/
> https://nextcloud.com/
> 
> My main concern is who will be the sysadmins for such hosting (both
> the physical machines and the operating system etc) and how will they
> be motivated to continue doing that for the lifetime of the group? A
> volunteer will eventually get bored and wander off at a critical
> moment, leading to security problems, data loss or complete loss of
> the service. Most groups won't have the money to hire a sysadmin.
> There aren't many sustainable SaaS businesses that provide sysadmin
> services by offering hosted FLOSS web applications at a price. Those
> that do exist are mostly focussed around a limited number of
> projects.

That is why my target sysadmin is an 80 year old with an iPad. During
lockdown many people have set up Facebook Groups (open and closed),
managed membership and security for choirs, craft groups etc. They thus
become keen salespeople for closed software systems, as generally, if
their members want to remain in the group they have to join Facebook. I
am not strongly against Facebook, but do not think they should be the
only option.

I believe/hope it should be possible to this type of thing another way,
and that a technical sysadmin should not be needed.

The SaaS businesses providing hosted FLOSS web applications at a price
are a valid model, but they generally, quite reasonably, want to lock
the customer into their service. Everything has to be paid for, but
moving the payment point to a hosted system at an ISP allows
flexibility and freedom by reducing lock-in. 

My thought experiment example is the Ambridge Garden Club, described at
 
https://wordpress.debian.social/jlines/2020/11/07/the-ambridge-garden-club/

I hope to document how it was done, but also how it could have been
done more easily.


> Perhaps eventually AWS could do something like this, but they seem to
> mainly be focussed on providing infrastructure to technical folks
> rather than to consumers.

I have set up systems on AWS for myself, but it is much too big a
barrier for anybody non technical. I do suggest in

https://wordpress.debian.social/jlines/2020/11/13/ambridge-garden-club-registering-the-domain/

that AWS might be a possibility, or Azure, or Google Cloud


> 



A Small Organisation Server as a Debian Pure Blend

2020-11-16 Thread John Lines
I have been thinking about how to offer alternatives to Facebook,
WhatsApp, Zoom etc for non-technical people, many of whom are finding
the Internet and computers much more central to their lives than they
did before the pandemic.

Many people are members of small organisations who are moving online
-and the only option they can find and understand is to create a
Facebook Group, use Facebook messenger or WhatsApp to communicate, and
Zoom for meetings.

Debian developers know there are alternatives, but setting up email
servers, Wordpress, Instant Messenger, ActivityPub servers, jitsi etc
does not appeal to a group whose interests lie not in the technology,
but in what it can do for them.

I have written at 
https://wordpress.debian.social/jlines/2020/11/07/the-ambridge-garden-club/
 about a such a group, as I am interested to know if others feel this
is also a problem, and a one worth trying to solve.

My proposed solution is a Debian Pure Blend for a Small Organisation
Server (sos) designed to be installed at a hosting provider, and
accessed and administered through a web interface. It shares quite a
lot of similarity, and should probably, have as much as possible in
common with the FreedomBox project - for example probably plinth.

It is differentiated from FreedomBox at at technical level by, for
example, not using avahi - the Small Organisation Sever would share a
local network at an ISP with other completely unrelated servers,
neither would should it depend on netcat-openbsd, ppp, pppoe etc, which
are targetted at a different situation.

I think it would be good to be able to provide the facilities available
via https://wiki.debian.org/Teams/DebianSocial to other organisations,
and wonder it you agree ?

John


Accepted taglog 0.2.6-1 (source) into unstable

2020-01-03 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 03 Jan 2020 16:40:27 +
Source: taglog
Architecture: source
Version: 0.2.6-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Changes:
 taglog (0.2.6-1) unstable; urgency=medium
 .
   * New upstream version - source has moved to github
   * Includes periodic action support
Checksums-Sha1:
 a133833126c864b63227aebc61fabdca6da20401 1691 taglog_0.2.6-1.dsc
 8ad18529e21291834274509adec5fc186ee0bf05 552686 taglog_0.2.6.orig.tar.gz
 e2318448c76f959a413e6df823f8e6ac156e64d5 2648 taglog_0.2.6-1.debian.tar.xz
 5666008ce07e111f1e07e7795d35c3e764d851d8 5409 taglog_0.2.6-1_source.buildinfo
Checksums-Sha256:
 a8d1035e0880597275e3307ff69d49c9acfc58e354167d575a24e3a8a7ea5f13 1691 
taglog_0.2.6-1.dsc
 d4b1db4da575dee15bead8db31d772abab7f3797d4489097e1104c285c25745e 552686 
taglog_0.2.6.orig.tar.gz
 396ebaff7dae1740a59d4a0b70b77904f891900f0482eaa82be64be6a74e898b 2648 
taglog_0.2.6-1.debian.tar.xz
 8b41261f972407b7ef1296432e1e0749aa6f1d0278d3625f46066021a7e67be1 5409 
taglog_0.2.6-1_source.buildinfo
Files:
 78543c7a2820244875a4c6c2236705f6 1691 utils optional taglog_0.2.6-1.dsc
 3163180592496b1affd6c31b263932aa 552686 utils optional taglog_0.2.6.orig.tar.gz
 e5587ed372ec387a9b302d79fc826e7f 2648 utils optional 
taglog_0.2.6-1.debian.tar.xz
 f8b43d30e54337584d74fabb3e18ca47 5409 utils optional 
taglog_0.2.6-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAl4PbrcRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhec3Hw/+J760JmyjrGQ9x9wbiSVKJ5ycSo+MFlwU
m8mgX3rJ5B3ma0z7f+080eAEey6TpKFD0remL7tSrkqIRuvgfVCTNdDtAw3VYl0G
hj2NjYZUOzIQELTNOBCx76Q97mO6+TP+DXDk5jUIvjrunTw6sWlk80dT/kxDZB5q
cnMleEfamRtlvjJeliDWdMdGp5gkC52WGz6GyE3+maGmfeT2URxznMlDf9yu4zJj
knid46K95c6MzGC7dddWwpcdd8JGVSfr6/SFVi4T55VrdFc03k77xZ+RES8pjloS
PTxdRFBz9iTz+YMfboyngZSG5Pc4Ad2EGZazpwSVBoxyG1ystLHgsLYkfYZXYl2u
KhrX81DXrEVOM+fU3XHvNXDc0leT8l4snWmzFjWDY6zWtS1oNeK3ejGuUHwDWSEv
kOB9RyUdqS3/B5BmOQx4o1HqoncpemKQav2t+4sCutMLksbrfwcuTRKjrx+9sbGA
6bZocUuIXBynEM3C+CPfjGQidgS4Qzt+a/zPjKgnIHaO40y2CXQkTCSOSPMgjKz0
MyxG5ZBv+2T89/skDeng4AKSEaxgwNeGWM70vLHI3zpTispOol4t0N3WwSwHd37y
26XqE3wdFEjAnPc7AAypIC0zXBpanmqT7VcFfNdzXhNbpZiOVmlc14liBoN1yT/0
RAKxyzhO2q8=
=1e21
-END PGP SIGNATURE-



Accepted zoph 0.9.11-2 (source) into unstable

2019-11-20 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 20 Nov 2019 20:10:29 +
Source: zoph
Architecture: source
Version: 0.9.11-2
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Closes: 945151
Changes:
 zoph (0.9.11-2) unstable; urgency=medium
 .
   * Add php-zip to Depends (Closes: #945151)
Checksums-Sha1:
 88bf60151e3bc7a3a9b734a8269ca4c37da78f79 1720 zoph_0.9.11-2.dsc
 96a085553dafc0e853f719f08ab39236039e5e2d 10824 zoph_0.9.11-2.debian.tar.xz
 2ba80b3b1a56ae0046b86fbac2b6ebde093f80b4 5441 zoph_0.9.11-2_source.buildinfo
Checksums-Sha256:
 36c1ae8f449bc730863cc74c697a00e67e14460c4267560d44a6b375b37dbced 1720 
zoph_0.9.11-2.dsc
 a0fbe8af4ea06e5981f45b6f87c3af5f7c016ab8ccd01cf27b084c035afbd5b7 10824 
zoph_0.9.11-2.debian.tar.xz
 477064625389a47b9c81557aff5e2d256c7064b77a59d780cc907192fbc25327 5441 
zoph_0.9.11-2_source.buildinfo
Files:
 88b8a1bae92562c23826f084fedfdd38 1720 web optional zoph_0.9.11-2.dsc
 c1d8c43d74a01f7dea70583d125d2cf8 10824 web optional zoph_0.9.11-2.debian.tar.xz
 34f955ccdb1f9276ff2923fd96c8200d 5441 web optional 
zoph_0.9.11-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAl3VndsRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhee77w//Q7aI1CmYJ7YRiL51sF3Uq/nw0QnwUTyj
U2uQslcMEumF/mnTLSnHVI3cvD0HnG3kJQH/ba1Ngt8BDFIxjPx777TgJJxwrV1V
ZnQLKXu1ZeO0Fczi5pGTjXRLlmHX/2dI0SIkoAMKULHxLWGIoN2W28Z7RU4db340
ouTJw3JRfFdXw45TdAF+v3ed2ZuRJHyTlWVH0y1frvkR0SbYVxBOZ9bIduXy7g6J
FouMt2gh+XSVXd9SylyaIuVHo5TUyEymWTnVxMmIFa0S5B6tucOwXCTj+PfYxz1U
m46TfAL8aWbCvSfKk5fy05+J+hRNlSMQaHhvgJNjLkDAPoe4CEYC9xa5CZ8NR7gV
gbJxuK5C1yeSpqEetC9L4EpexiL1zy0EWLi6/NTnmUJTVJt5j1W1zwLFVVZaziKK
WEhm4qVfRcOvqnsJf5H9lWjA/47RLnobU7y9Myd4nuACUJ0nqxftpnl1A2ZdKnND
H7uGAKDy95fUwDwqjfMrBt5o+0YdX38K9+RTgln+05z0ZPEs1FHbXJAwrJL5zYHF
gFJMLjk4XtUrgnBcujH0wG/Ga75Js6qIlAZgrH79/KQUu9bB68325Frh0+PR/o9q
iEqa05aAWIR5fzZagZdUZVNr5cbc8abeA4yn/ivS+f+YrV0biRm3u94o0Uytq+t+
085R7RGV158=
=tKT2
-END PGP SIGNATURE-



Accepted zoph 0.9.11-1 (source all) into unstable

2019-05-23 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 23 May 2019 09:28:26 +0100
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.11-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Description:
 zoph   - Web based digital image presentation and management system
Changes:
 zoph (0.9.11-1) unstable; urgency=medium
 .
   * New Upstream version
Checksums-Sha1:
 379874b051e2a693141a8eb8777f150da28c3a15 1720 zoph_0.9.11-1.dsc
 fc94ff768a2b9f989301836c47cca7f0d6eb90c4 11121125 zoph_0.9.11.orig.tar.gz
 e8b8dc3ffa0f840162f3a02cf10f52bd92826e45 10788 zoph_0.9.11-1.debian.tar.xz
 950ea497ecbf85e768ea79afc6e66389cb093370 9492660 zoph_0.9.11-1_all.deb
 82ebb3af21fe082e24340c44bc364b4d5b09aedb 5460 zoph_0.9.11-1_amd64.buildinfo
Checksums-Sha256:
 3d55f47cdd48e28d6269296af92df6de40daca41d74096b5b392364d09612c84 1720 
zoph_0.9.11-1.dsc
 eb8a234aab132a0e87622ee1e6cd6a504712d699345760b203b696cae24175fa 11121125 
zoph_0.9.11.orig.tar.gz
 68404a63feeeaf73ac08ae47a194564a49e4b5df81dcd79636a2c90af3564840 10788 
zoph_0.9.11-1.debian.tar.xz
 37a6a743854e865376c5660a529f709c8d09ba1ac5d7d9e0dd0fedb833dc994b 9492660 
zoph_0.9.11-1_all.deb
 cb8c3a37d8ca5b09df87546852f28c9779977c983df2b1854f5ab2fccfae5859 5460 
zoph_0.9.11-1_amd64.buildinfo
Files:
 d099bc193a88b17e3f17e906d38583fe 1720 web optional zoph_0.9.11-1.dsc
 ecfdac2445edfdc11b4769515d41be0d 11121125 web optional zoph_0.9.11.orig.tar.gz
 9982d6a299bda57978350a95a10e08b1 10788 web optional zoph_0.9.11-1.debian.tar.xz
 042d8d41d862ea9e105395789d4fcce0 9492660 web optional zoph_0.9.11-1_all.deb
 9dfc1f9e7082607fe513ef551954ea0d 5460 web optional 
zoph_0.9.11-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlzmWdsRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhee/QQ/6Aod0MLK2dYqpIc3KsWrZvqkoIaH/Mkq2
vZsX4WqeTzzIUgkHuj86c74g+eMIRXc6WBM5cSqXzfCgMu30i+n5mHGdxyOAcixY
F6XD8u+jjwryYSYTMeNWwES/Mfh8mtTU5NjwfsD5ikJSZdz8tB13x5FktRAg08a+
Ftrj094lqLer6nyUHujgHYTetEmwZ52gDnqKa85zPtqcX1FpnE3A73dYRQ8Vzo+Q
t5HwL5uJ7i2AedhpCLlxIkdY33Y/4dC0wDE27mfrS7r8L6D9zD5Y46520N8pcKXy
6j3nsXso+bjMGpX56Q6VlDK65344nPmigEqww0YZSVLdvz+v+8sKr8mT4IJgDKg8
ia4EblvLF6DVs4rC5E36RToDxytbmF0RxN3dPixH7qG2Rgc1xMeNZZYUou7jGKNF
UIztGOs9a59pUDTT0xf7z+uvFf7AJGLz+OUkEjUV64ofL8u/l2m6vz9uyh6BfZMO
vysQUsPBgaAlqC432vrYonzLNYpPc4/FOIQ8M/5EdGsNkObjeSKJ7myN8/MHSRPU
1cWEkw8iAh5Ea2ZlokNtJhj/AWIcrzSmK4r/2QyFUGnABXL1kmqW6Gr3qUWvJcyr
gET6Cc8sbWqZ2aCyUEqm0Mxci3BmsBRxraB8Oc1SRAPKjR7OZ/fwpqjUqqModIC6
PJLc9hlacMI=
=g6Dk
-END PGP SIGNATURE-



Accepted zoph 0.9.9-1 (source all) into unstable

2018-12-29 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 29 Dec 2018 18:17:10 +
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.9-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Description:
 zoph   - Web based digital image presentation and management system
Changes:
 zoph (0.9.9-1) unstable; urgency=medium
 .
   * New Upstream version
   * Update standards-version to 4.3.0
Checksums-Sha1:
 a4da009b371483c0d31534ac0d2ef4fdd260e350 1713 zoph_0.9.9-1.dsc
 b96afa42f58c0d628e928c858afac867b816ecad 3439 zoph_0.9.9.orig.tar.gz
 ea70ff10093cf92e052ddcd4ae1cc5af2ba51953 10756 zoph_0.9.9-1.debian.tar.xz
 10bc269757711edfa4fd085f9c370c55d40c9385 9487836 zoph_0.9.9-1_all.deb
 a34a419317c34bacad39030eafdbe10ca02c7808 5473 zoph_0.9.9-1_amd64.buildinfo
Checksums-Sha256:
 9534fbb20fe3b8094946263fe1616c6bcdd67f34147e5fccad090c648b1cd747 1713 
zoph_0.9.9-1.dsc
 f6990d628a6e2779fbe923beb1471fc052acac29dc79a9739b04e3a219e1de01 3439 
zoph_0.9.9.orig.tar.gz
 830d3ae2edc7f29da47b53a1ba0def79b20871d93c3aa0921c7b7e315116122c 10756 
zoph_0.9.9-1.debian.tar.xz
 9a29ea478842fc1256e4128a2328898b95d9a7d3c5ba167b592b618d2582ea4a 9487836 
zoph_0.9.9-1_all.deb
 24be0c31a489b3019f0caa3a4a108ec7ec491f3c0bc827cab7f2c60fff84df64 5473 
zoph_0.9.9-1_amd64.buildinfo
Files:
 b94397956b5b438d31fd0c4af2933df0 1713 web optional zoph_0.9.9-1.dsc
 662f03244ea7fcfe08caa13b30f6e2ec 3439 web optional zoph_0.9.9.orig.tar.gz
 503f56c747ada7778b4b68fe5e0978fc 10756 web optional zoph_0.9.9-1.debian.tar.xz
 af5f87f794e58e3c45ac0b37f8d3ad18 9487836 web optional zoph_0.9.9-1_all.deb
 7bb6c85b833125c96a746407e5c8ee1c 5473 web optional zoph_0.9.9-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlwnul0RHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhefBVA/+KtuB9Sw5LZkMp73BAieUoSdeW185uUiQ
i60DTHYFeie9o3Q7uQP9xX1oyAOeD7PkIlSeP2e8/RPU5H9/GMu/kcY0EAgGa63q
M4uK6U/Mu9IdQW+YDot/xSy+fYW0Jyd7mhChgZ4XSqVJc5I6VeK9uT+KN252I+/f
L9vx7/MnyaVf/OPSj8Nq0jiuCKdmC6t7m8xh4mAfRKArIjOMCZ+YaSa4ECXK/HXG
FPdVY6tMZIgAsuznrqP0XwDnbuYcUng82BlDlQiGhUrL6vn7Ow4MdmOkHdNHgGEM
Z6neQn8XVRyA2yzlxm16Pu8RLEaGyvbGpkeBXReFYMiIrHKCTQKv9oOXmvNFThGG
+yEOMmyV1p78oGCuRGJCZBLukyJQtI8JRMKV6j2vu9olmiLg1UeKt4gqFjSXYUSc
VXw54EjoLqEh2cawYlA0ZILKGgzbG4muCkcScG415C/R9krLuhEmmvUUFr1vfV5V
FozmiPwRjfwPvaJVZ/PtlDORTWtph9gTNcF7YIr8nKRDP4qh4C+hcDZFN3k70BVZ
0wlmu3vs4hmTTG7cIoKEW7AZ3+XP2KO7U8WS1eEppT/K9W+Zj3XIqDn1BWQKNaqj
3MGHVvetCtwbk1f1Yub2djCiYSHE9bGX0rk8rdxFwyB+OADdb4f8B9o555swPq22
MTAwgyYWxyU=
=1EOQ
-END PGP SIGNATURE-



Accepted webcheck 1.10.4-1.1 (source all) into unstable

2018-12-29 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 29 Dec 2018 18:43:36 +
Source: webcheck
Binary: webcheck
Architecture: source all
Version: 1.10.4-1.1
Distribution: unstable
Urgency: medium
Maintainer: Arthur de Jong 
Changed-By: John Lines 
Description:
 webcheck   - website link and structure checker
Closes: 891105
Changes:
 webcheck (1.10.4-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Change debhelper version minimum to 11
   * add dh-python to Build-Depends
   * Switch from Beautiful Soup to bs4 (closes: #891105)
Checksums-Sha1:
 1e1572da3f32bd029523e79c8054d2bb32868724 2042 webcheck_1.10.4-1.1.dsc
 9cc422ac9d3ba58e8752a6704c0a20519ce92caa 21296 
webcheck_1.10.4-1.1.debian.tar.xz
 3bad4967699bcae6ad94da09cefda4670421059e 74400 webcheck_1.10.4-1.1_all.deb
 80084e349a02ab1ec7e7200370aaf21dc4b14172 6212 
webcheck_1.10.4-1.1_amd64.buildinfo
Checksums-Sha256:
 aace4325ccba41aecbb387ae18a0bd3d4e301c9808b21e8dbeaad86ce3455da3 2042 
webcheck_1.10.4-1.1.dsc
 8850486f390ae1a1f549bfbd1c71bdb7596b3109a7bce471f54323ac0e1e9a71 21296 
webcheck_1.10.4-1.1.debian.tar.xz
 3f6f3cd9e3dae0992c6aa226afbe3218d3922ce684cbb46e623863b666eed10b 74400 
webcheck_1.10.4-1.1_all.deb
 f430b0be52bd76b70235138a3f41e208bb4d88a9f734ed0428409412259b6bd1 6212 
webcheck_1.10.4-1.1_amd64.buildinfo
Files:
 c7b9f6274d05a8734021675dc8e80912 2042 web optional webcheck_1.10.4-1.1.dsc
 cef9170a44ff905de152d86866483421 21296 web optional 
webcheck_1.10.4-1.1.debian.tar.xz
 67f0942b71b19d578c4a67c29d94aabf 74400 web optional webcheck_1.10.4-1.1_all.deb
 9727672cd6b640510a3a9a1a3734eb72 6212 web optional 
webcheck_1.10.4-1.1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlwnwGsRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhec+Dw//aBI76caUlJiKhsc+QrQ//jz0/3kxxmA/
dPf+HlIikVoGQRLXN+ulBaTfoTGLsX4F8UEcxqyrxdPNVntB187oH8zm4rTH+0Xq
td/P0/gy95jKb1GW9SNks97BvhDgrKgctmq4OmILsct05rzQFV7c/MiOKxukfmHM
Sy0sIQGKZDOLHdGjmfyfPTCUB854124CoOAQUCvYyLC9p3F/fLy77PtX7l65yxnK
IOLwd+u6yJncMP3svDjo0WK0Wuv7rgVdT3Fv7udBB9UZpeyyXMxUsRoBnNw3s0pX
dp1msGcgl2IgJoTMTl6sLnBG4K9OKtmIxc2n6ucXWueXfAkqC5o6oVJFrjQB8MTu
qEvIVgaMUOScGOxVEs2ZtmylIebUBlnAqktc9/6PEJhnQDCvz5qp52w9AXNhMLJW
W4LYlmUMW70NJJA3VqhNHICZ114FLACd43NsgpCzTe5IJoB80zKM7I0WwJ9w9XCu
R21mZlL7Ys0uQrpZDBA7F9wDn9vEHJ36UxqEop0wjtMLZCz38k4LA3RG6ZP0oRQi
gOv1m2D0uwWptahvqBiSWT5cXs8eRHMuuzmx/yfbhqCIF74/eYu0c/wCCvywLxX5
g7DRkNXuI6ZRKdDxG85t177hoZz1f6+T2lVNlORfhDWSmviDBfNE4SxEIUIbWCcI
sN6o2Ln+5D0=
=Syvf
-END PGP SIGNATURE-



Accepted taglog 0.2.5-1 (source all) into unstable

2018-10-25 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 25 Oct 2018 11:35:17 +0100
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.2.5-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Description:
 taglog - Personal time management system
Changes:
 taglog (0.2.5-1) unstable; urgency=medium
 .
   * New upstream version - source has moved to github
Checksums-Sha1:
 bcf6e91fbbcb95bde6419dd2f00cf7f8e4bb2dfd 1691 taglog_0.2.5-1.dsc
 b8f575c90da2afd89635bf4ef8432d1472dea8c4 543209 taglog_0.2.5.orig.tar.gz
 df0335607f79abf12e669217f1827fed0982c0d1 3396 taglog_0.2.5-1.debian.tar.xz
 ba3d0f39e55e87a5d167b79c2bdff189ac7d0f2a 246380 taglog_0.2.5-1_all.deb
 375f703533d257d5ebbc9b086195cefd689008b5 5629 taglog_0.2.5-1_amd64.buildinfo
Checksums-Sha256:
 d3dd43c746a24e96beab2edf4dbc6cc4e98e03ea3815a24c4b1972ba79192eb5 1691 
taglog_0.2.5-1.dsc
 35a41220d180256e22ff1f94e865e33ab6fc29b083964271d2be35788a63abc3 543209 
taglog_0.2.5.orig.tar.gz
 5486308dc43a1df35784c5fd346e0ed8f5610af3e8e120c24df6ac486d671aed 3396 
taglog_0.2.5-1.debian.tar.xz
 9a2e7b0b14f48ed20b41b021f9b9f00ae3a693ae76112729e73ee2c55529e95c 246380 
taglog_0.2.5-1_all.deb
 b59ff8a72febfee166f0e6cc65e98a8b67643403776b5fccdc09422018f9cbc9 5629 
taglog_0.2.5-1_amd64.buildinfo
Files:
 33d4a54b2fcbe474fd84aa9a11884560 1691 utils optional taglog_0.2.5-1.dsc
 45575081d3e9154d7d98d094426e2fc8 543209 utils optional taglog_0.2.5.orig.tar.gz
 11444133d272fb282fda88a48d42b0b1 3396 utils optional 
taglog_0.2.5-1.debian.tar.xz
 2046438fe58394309f5d1457123a2d00 246380 utils optional taglog_0.2.5-1_all.deb
 36a526f3a250b928ffbc9666d6351cdb 5629 utils optional 
taglog_0.2.5-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlvRnO4RHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhefVyw/+Lqp/nBr28H4fLgEMwL5jLZ1GuE4esiO5
7Np0DGLW/uUwhqOvVQVfQLeLkq8GI5z2bBhsURqGnBEwg3JMS6nozG8kwy1lLDV3
AOe+CRJWe08jwf4PZYE/fyOj/69OQUmLHF6YGbcjOaT0GkUaI/mkhJI0Nkyv/SNo
HZXBchVMsp2QMgX2ONnxA7sg7Ou8M9RlB8B+PqnrtnxV4Z3mkIoybzygHL9+nj7G
7qOrWRytEkpAXjKsD4aoaSpxfOijUYLiDv6w54/nl5v6SaI/GL/zO/S5SClmIW0Z
TGC26WmpHALxTFKwI+2AfOvPEvgkJw5r0ayyzyQjdsIlskrT8TQ7j0HpLEIudA5P
dD3YK18VNbYGgnv3/pMXOa6KbMPKNzlMtUveFS2EX0gRRyKKzudWYErNte6gEutn
3yecWxxYeq/4wCclmZu9m3LRXBgQ6/lw3/ISkgK9CUepMxZvYwulp7kEhqzC+eYV
/xSvm/0BhVDIs0qZz4VGIwx+SvupCVONna6RbL2hynvz7N8U8vLtxidNPKxqTT6L
eob6Xxb3IlbDK9RfmjSmEdx+U5FNEF9/CePSLlPQQ2oEUcisZH7NLTYwLgaiKOh8
P5EIz0PmOwODl7kqeq8WXBPOV+4ZRd1hRRwiSvqKmO+1r438BNhl81cpRC0HhS75
opvw3HtwKgE=
=yHfL
-END PGP SIGNATURE-



Accepted zoph 0.9.8-1 (source all) into unstable

2018-09-14 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 14 Sep 2018 09:24:56 +0100
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.8-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines 
Changed-By: John Lines 
Description:
 zoph   - Web based digital image presentation and management system
Closes: 883288
Changes:
 zoph (0.9.8-1) unstable; urgency=medium
 .
   * New upstream version
   * Russian debconf translation (Closes: #883288)
   * Included dbconfig-common upgrade for database version from
 0.9.4 to higher
   * Include patch for upstream bug #111
 - https://github.com/jeroenrnl/zoph/issues/111
   * Update watch to look at gitlab, now locatation for zoph source
 though the 0.9.8 release came from github.
Checksums-Sha1:
 24cd183b5fb7cc3f2fe35dd3e686a296c448adef 1712 zoph_0.9.8-1.dsc
 8ab995e57a7f49f16427ab657f20f846b877c561 11106516 zoph_0.9.8.orig.tar.gz
 aec896bebece99810f2d7ed3dae2f823f4e10ee6 11320 zoph_0.9.8-1.debian.tar.xz
 9fe00914114d435a6f3c6d44b92ed4c4b1d73f55 9482396 zoph_0.9.8-1_all.deb
 e2ee087bbfc50b97634f1ef76a6b5181a54e9951 5545 zoph_0.9.8-1_amd64.buildinfo
Checksums-Sha256:
 281343be93dc2e963de7b14f702769b65b4d1abc2151f6eadd185f3107077c52 1712 
zoph_0.9.8-1.dsc
 4b3731a726f5394194d2f6c5b1f97baf41759a16d8ac444b9c4f23c7984bb4dc 11106516 
zoph_0.9.8.orig.tar.gz
 c2030da91f8a35f6dd71762605bd1d56ebce4c1ab00f020eb6e23430a7c7bd84 11320 
zoph_0.9.8-1.debian.tar.xz
 26761db0af16bfd20a03e03a5b3d31a517716ee17c7124880ae58a9df0594ec9 9482396 
zoph_0.9.8-1_all.deb
 9eb7a413dfe28846bac7441ca5b38102a6b3cbe70f960f46f498d43b5a443290 5545 
zoph_0.9.8-1_amd64.buildinfo
Files:
 7fe6eb203fbfd0e01d9e81cd45e66c4b 1712 web optional zoph_0.9.8-1.dsc
 dfcf6827b76d0d0eb0106bee97fabf1c 11106516 web optional zoph_0.9.8.orig.tar.gz
 f22105d19ebf6d3d58d5beb95b180d98 11320 web optional zoph_0.9.8-1.debian.tar.xz
 9fda759c0c7bce5e78a12584a4921ba6 9482396 web optional zoph_0.9.8-1_all.deb
 9c8ac9697152e92a8b73a8fa194063f6 5545 web optional zoph_0.9.8-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlubcbYRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGheexxA//dYi/i3Ol8MraRCo2ap2/Y3Q420blUd8V
lSkwLsxP65Npf1vJTgMaafThw7ICD1UGvCi9OomLcnUDJwn7omtARmvmaxHirSuU
BviyDYnOkVKmTYU2HLSveWYu3QqxTYs04PSB1d0WpuybSqqz3AbpAz4Uqq3fR94X
suEZ/I7j92sW///EfQ01ee4ukNkHGm8q6S5kSSSjw2kTyUPTm6kt2qU7PCm+J5W+
3kIOOayLwLoor3coxJG275iNowQ6rC6QqxIoDPTaKnHj0/DlTV13l/zj9AtRrFLk
MOIJ4ux3lrV/uZgJBTL3DXXdh0FSp7xos85V+rl/pGPmekKb3D25fAWxiCvfFzTS
C6rZlRoPIJTv+6JPhfGv13ivK5Q5WA1R0gstVR8eOjkebAQNCgKGVT9GPz8vR6Cj
LF6x4+csKf1tUvlvdIWqwsOCF58yDn6EKHNpSYVAnXJY40npqaugREelgz4VdYNo
c8mMBdArkhmRTjVBte2rtVj04iMeXB/FGyMq5/OQTBiZDbN8Pjfm4gSCBX2k99rR
aDUq2SUAMssOshw3bTyGZ8GQDQcSjWIgClBWztKD+Cw/VD6dqKd0PHn6zkDKH3I1
pHpteCthpx5lGJfILnfR5Vb2DpkFyLtToYvAk+8L20VfxQXMacUugYwKwcHm9i0S
SBmq+dUnYHs=
=3KCr
-END PGP SIGNATURE-



Accepted plptools 1.0.13-1 (source amd64) into unstable

2018-05-19 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 19 May 2018 15:13:23 +0100
Source: plptools
Binary: plptools
Architecture: source amd64
Version: 1.0.13-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines <j...@paladyn.org>
Changed-By: John Lines <j...@paladyn.org>
Description:
 plptools   - Access EPOC device (Psion PDA) over a serial link
Closes: 819025 825070 837099 873169
Changes:
 plptools (1.0.13-1) unstable; urgency=medium
 .
   * Acknowledge NMUs
   * Update Japanese debconf translation, thanks to Takuma Yamada
 (Closes: 819025)
   * Add Brazilian Portuguese translation, thanks to Leonardo Rocha
 (Closes: 825070)
   * Update Dutch translation, thanks to Frans Spiesschaert (Closes: 837099)
   * Update Portuguese translation, thanks to Traduz (Closes: 873169)
   * Depend on lsb-base, for fix issue from Lintian report
   * Check policy updates for 4.1.4
Checksums-Sha1:
 8f9607faeadc0e0f5e66228d01dfe58b311c36b2 1887 plptools_1.0.13-1.dsc
 c6e3dd5de6d89ef4114463aac8d8fb5d1bfe6528 27156 plptools_1.0.13-1.debian.tar.xz
 8eb3eecf1896120939cd296ac116ae7a0c4d58a7 1271748 
plptools-dbgsym_1.0.13-1_amd64.deb
 bcc0e61624a97fdb52a2cdf0752f4feca32d2528 6087 plptools_1.0.13-1_amd64.buildinfo
 e4ff033b8c5ce088607c36e1e42147fef93eacf7 229156 plptools_1.0.13-1_amd64.deb
Checksums-Sha256:
 b839fd1bdda7614258b5dc69b4c6bad2ff410e449470299da7665601cdaae276 1887 
plptools_1.0.13-1.dsc
 2cee75f4a9c282e8d0218992b7abe3b768eecd085fc2844dab551418dc2ba10d 27156 
plptools_1.0.13-1.debian.tar.xz
 781cfba7521bb439031cdd033ef369cad409d721b016ce342107419fdfd7 1271748 
plptools-dbgsym_1.0.13-1_amd64.deb
 8946349cf370a451fc1c3089171f83135f38cb5af68ff5972abe2be1d72b1a7e 6087 
plptools_1.0.13-1_amd64.buildinfo
 2fabd0261dbc0a79b5fb0c40f7ccc1469c3aaaf8fc2d8bd47bb06157e1864e2c 229156 
plptools_1.0.13-1_amd64.deb
Files:
 47ca9c42a304ea1ea16f7897f8796fcb 1887 otherosfs optional plptools_1.0.13-1.dsc
 c88b00f9b78f312a9e2507e030d74aaa 27156 otherosfs optional 
plptools_1.0.13-1.debian.tar.xz
 9d9cd73bdf23a6a142093d7bce8154de 1271748 debug optional 
plptools-dbgsym_1.0.13-1_amd64.deb
 7d2cd10f2f61cdc5a464c233a1ddd5f0 6087 otherosfs optional 
plptools_1.0.13-1_amd64.buildinfo
 a55c6d8c0925586e8804aedfbeaf3df1 229156 otherosfs optional 
plptools_1.0.13-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlsANbcRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhecDTA//Vr1YCwh149cVX0zKlmaAcsWW0Uk0u9FX
h9pe+Mmg+KT/nYce1wnlXYg1PPbBBTY/IJM1hjmZT18t0loazrIV5zPmmnIIUAIc
RGNru0Y+7sjsGsLzzVZJ9TguUG1TRIoHHKNd9GvDuTjPNNxrYAG6fwNmu9fZmI9P
QttIOxfBm06o6oVPzEvfmPNm7nZq58xrfLxg24ug0F2gSwEKtquMpqNcBbxnT1fU
vfS/D79dS25HBxr3XEg4CYejkV0ZVyXXvcatyNiOBsnvKqVwQZ3TSQ6VnIkuEx/9
p+buiAe10/HBIqxmXRArkBkMwCbVZPytwNhPfKsD+xz03ApEhLOwnlkOhCjJ63kK
4/tCq7cAZJHwXL9VIuogBhZOJ3V1JQhAP4WFT5DG5/UVAYoFhYe+i3cRjMSnYd3Z
YD8JytWcFTUoJn42ljQd2BCPLLz6mBNDVIzOHv6zypFS66f3qoeqqhIP8Eu1R0Xt
/5pC8WmxnXVWT30Kjn689hIaM+OSIPF29BhiIszeMcNM7NoYHjGfQAJ6IXvt6RoQ
3ozgGnfGKiUEIOo0NcScgwGruUb29Htwtvvp4L/tXsK27z+0vPEmHPPdasu/2USn
EQ2SVEOz6YkyfKVJe/ELJNTuYN/6wTziwKW+5xuqvlNr/24MnS7HtgGaA2WOYyKJ
pfphtqa2h54=
=r9Tr
-END PGP SIGNATURE-



Accepted zoph 0.9.4-4 (source all) into unstable

2017-04-03 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 03 Apr 2017 14:50:21 +0100
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.4-4
Distribution: unstable
Urgency: medium
Maintainer: John Lines <j...@paladyn.org>
Changed-By: John Lines <j...@paladyn.org>
Description:
 zoph   - Web based digital image presentation and management system
Closes: 859340
Changes:
 zoph (0.9.4-4) unstable; urgency=medium
 .
   * Portuguese translation (Closes: #859340)
Checksums-Sha1:
 cd8a10f12f2ddc232b8b96ab5807440af15bc1e7 1709 zoph_0.9.4-4.dsc
 105f4f3dc4c931849d2c533ec4221d82f612de81 10152 zoph_0.9.4-4.debian.tar.xz
 6d2668858f1caf5d0a6d195a2045e65328f54de8 9333602 zoph_0.9.4-4_all.deb
 04d7cfcb6504b33a3676f827392d50f3be3f6ddf 5660 zoph_0.9.4-4_amd64.buildinfo
Checksums-Sha256:
 53db75df743d9f77da41554004a2f167ff3e1b0e9f6df808808012e187ab5ac4 1709 
zoph_0.9.4-4.dsc
 d9f8f7ceaeeb937a1a3df3bc53e7f5cc09e8162f66f139bd650a392148743ea4 10152 
zoph_0.9.4-4.debian.tar.xz
 8ade97f6faf8c3745797fa5c512f0b8da26e990bc4cf5247c9c584af206198c6 9333602 
zoph_0.9.4-4_all.deb
 c707b30fa7ccf647442fd990bbd6835d06444867475de784cf2754da2cc1318a 5660 
zoph_0.9.4-4_amd64.buildinfo
Files:
 5d5413bfa1646779fde462bcc67716dc 1709 web optional zoph_0.9.4-4.dsc
 5157e56e04d9b57f1241595d72cabe8b 10152 web optional zoph_0.9.4-4.debian.tar.xz
 da1f53e3be4e68482f9bdff43de8b250 9333602 web optional zoph_0.9.4-4_all.deb
 667d9a7c92b8736bd099bb1249ea5980 5660 web optional zoph_0.9.4-4_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAljiU84RHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGheeOuw/+JckB7FkwfAa00cdJ+kq2GXA4RGxfB2pO
AabPSvCDdd1jkt0UwR9ADyV245DdP5HeOgOUhktgRz6IXg7QpxhUMLP8Uyn5B0cu
cXAbgsB9IS3kxX/OL1iq+zaOLjFf+EN1iX77YoU1yBl9rlw0iQYqO1YKdV/hZKF3
jMqhMiQDDzkQx56wTRTv1OiQ7RpGcyuxGq5g3OOV6pC3BtDK3wQCrMvH3nstQ792
5AMUvNXz7/VneFdq8ghfD8bhMVJVIB3nc7Es/4lF9UNfzPl5+f4wm8EkSSxGnJ4A
KWlJqjEhBFmeJY7ydqSf8ySJVnaQEMHMT1C8nUHQw0lxOvimkBIJR05QdSdQSWtM
DrwAPLDkjtTllRx6adKMyNZBw3efFJFXkpCGluaSm/xneJO8uMTC9UXDRPdvN+5a
C6Lt6JeaNkEA/Yk3ZNI0/omKsV1S1Fgm4eRCEYpQFukI6iwMiea19ndIIs/B3uyq
yv+yJ7o5J2wSQvls3/MMhmz/2fsQtza0e89Xf2uxHMtkwDMTy8TbyTQidcoxLQ1l
BerT4JwOzDDTeIkCat5d6isedGSATburXoTL1pJSSAX9zZCKO/d/ycQ/hVR8/ems
gDDqjmJK07j9dhmolSfANvBFsbblvLfAbo54yEZ7UiHRnVz5Ym6Lle2k5pPTjSOY
DdTEoyfqmnI=
=Grc7
-END PGP SIGNATURE-



Accepted zoph 0.9.4-3 (source all) into unstable

2017-02-05 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Feb 2017 07:28:05 +
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.4-3
Distribution: unstable
Urgency: medium
Maintainer: John Lines <j...@paladyn.org>
Changed-By: John Lines <j...@paladyn.org>
Description:
 zoph   - Web based digital image presentation and management system
Closes: 854137
Changes:
 zoph (0.9.4-3) unstable; urgency=medium
 .
   * Use dbconfig-common in prerm to remove database, rather than
 mysqladmin in postinst. Fix piuparts issue (Closes: #854137)
Checksums-Sha1:
 a5825e7af2f6f737055af7b5e0647b738e54863e 1706 zoph_0.9.4-3.dsc
 46ffd61e1e7c753b579e32bbdf28a1bcddcb43e0 9804 zoph_0.9.4-3.debian.tar.xz
 b7bcd057fd9b35306b143eb37bd077abaf03be22 948 zoph_0.9.4-3_all.deb
 dc20ca2ff84909f22b46d2c722d66c835bb0adde 4692 zoph_0.9.4-3_amd64.buildinfo
Checksums-Sha256:
 5a3e5c5f63adbe2359b22b94c8600a60343e1b81b165f0f4cb2cfdf88967c97f 1706 
zoph_0.9.4-3.dsc
 36a05a01fd3b26360253ebf5d35dbb3dc4fe3ed91adc83274d1456031455d999 9804 
zoph_0.9.4-3.debian.tar.xz
 ea9f1dd6e186abd8cf0f53e56190521c6f5d6e4e83004054a73a1f373bc2e893 948 
zoph_0.9.4-3_all.deb
 13b5fab20b42daf1b70ad3defa78b1241fed91ce21841720a57ad5e8b0c4bdba 4692 
zoph_0.9.4-3_amd64.buildinfo
Files:
 7556456a989161ef4b553c135c509975 1706 web optional zoph_0.9.4-3.dsc
 31fa962cb7243e71d24ab28ed4fde7e6 9804 web optional zoph_0.9.4-3.debian.tar.xz
 01388cdad6a9d60e96d2cd53789d174d 948 web optional zoph_0.9.4-3_all.deb
 a7dd2ca13310fdfa9eebbe14164d8b44 4692 web optional zoph_0.9.4-3_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAliW1EARHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhee4zg//Zod3/sSAvaS9HiCSBVh7Uw7BQ88WQ8L/
7WFzPl5TyKx81vRORfPDLaTzIeTO3vkMAkcauAraSGRlj9XtguNt9rx7k5rzCC0S
1hPiREQjBGtpdvc0Sf1smOyW8FnfFubk0a1zSMeTfFplHafNysxCHb1dxQ+eyIQM
A57yDAfVzw6JxLz0ITUUs6EMxamucdkGjRLKJDnEe/rb3AmmxyX3iqgUpiL55hHU
1KnQS3RmQYHiilx63qjU+8H8CQc9sKeTFBqQFsUASk/EaLsnvS73LXHWdczySSON
m9Ql0qyb3zHGk/rezOR1dpS6hD4sQugQMvNApBsUYa3Nz/tTIfiKKTcfspU204RF
nH5AHBtFR4QLKKV53dbVQRenr1fv9UpEMw9NUr8vkJ8DVv+wTuxaUwYYDP8kBrbW
QyqDQ6VHMaZzzf1Bh+nSQwdYKJaE3EuUvjlKFALw0SrwJg4rp7kJFIEggCSu1Dom
zkcc2LvadQfXpPSNZ0p0LB54hOq5Q9LPU+tOs2nMIBZdiqpdbyUv5WBE5bkG968h
DVRxwXtfIDP+k80DTy84qxqoEG9xLiZQOH41LJgK+xJrK6eJtJfuAlEFLDAjJ3xp
p+AeOLfY6/vah9NYarJBPMbrtC/6sDCqbaYZbU/UuZwO2ClTVWs3CFq8QvWjBa+4
CxEhjAQIsEw=
=6SRy
-END PGP SIGNATURE-



Accepted zoph 0.9.4-2 (source all) into unstable

2017-02-03 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 03 Feb 2017 08:59:42 +
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.4-2
Distribution: unstable
Urgency: medium
Maintainer: John Lines <j...@paladyn.org>
Changed-By: John Lines <j...@paladyn.org>
Description:
 zoph   - Web based digital image presentation and management system
Closes: 850739 850764 851939 851972
Changes:
 zoph (0.9.4-2) unstable; urgency=medium
 .
   * Only ask about removal of /var/lib/zoph if it was not empty
 Fix piuparts issue (Closes: #850764)
   * Dutch debconf translation (Closes: #850739)
   * French debconf translation (Closes: #851939)
   * German debconf translation (Closes: #851972)
Checksums-Sha1:
 0434101bef2e83d9643a730773188d51bf91c060 1706 zoph_0.9.4-2.dsc
 ee37eb309ecbce08041067be2eb7345315131d3e 9676 zoph_0.9.4-2.debian.tar.xz
 bcde1c0ac3553e7aa18eccdae3f891aeeaf9017f 9333250 zoph_0.9.4-2_all.deb
 63d5423cecc66047f4ebdd00d7add7fd767edece 4692 zoph_0.9.4-2_amd64.buildinfo
Checksums-Sha256:
 9acc0a91d41fd308d8caa6ab3694ebf3737ba062987c27b3d04db024c870104c 1706 
zoph_0.9.4-2.dsc
 463e139175956e8beac535587fcd24184ac9d2868b1cd3b28ddb32cc3176d3f7 9676 
zoph_0.9.4-2.debian.tar.xz
 7a90e0e0ecd229f6da41999fd06d757ec449ed5d4b4d3329611d2ed964e83dab 9333250 
zoph_0.9.4-2_all.deb
 6d81a8da30dcfb0df7f2b39da5a1992471b54a310b47d44d7157a251ef6458da 4692 
zoph_0.9.4-2_amd64.buildinfo
Files:
 a5e556b0fef117a493e9e30dbdaad13b 1706 web optional zoph_0.9.4-2.dsc
 1e61d053b4743766bdae248c7e8f53c3 9676 web optional zoph_0.9.4-2.debian.tar.xz
 b4eb95fd79e122e68b0ecc57f90c6a6a 9333250 web optional zoph_0.9.4-2_all.deb
 2cb39d8452b02fb85d22861e60702ad0 4692 web optional zoph_0.9.4-2_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAliUSE0RHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhedzKBAAmBj3XC2YAjK0FrQ1Yd+DyBq6vK5XkJiA
KFxMuJVnYV05Z3X8geHNBIcWqRUSD3vzeApy76eOnImlqUO0oiKE55SIINgbED5A
ooCD0OIlGHn/7V8Ko0yLOTr2TuYerYHvvVT5wTzjMHZkIa1mlrY9NYJ1OjrxB/KN
82PQxr5G+iFCRMNxMmxnlUVPc5R3/VVmLKNJ5NSCFnEZnl1Sy8Pka1v3SooPahYl
LkHcqUHBRg1KCoG+qo5xbdwH7+fnC8uxbuPjGADA9k6yQ6lfUv1PCN10DtQGakVB
IxT62dFdg5OsguYvAdh0FxJiDzimFm5Zi+BTw5p7o0sDKd9Hn0ujnO3oiBMn+nc9
AHETeXpK/kA3gXqbBRp1Q5MamD7mn66K0OSbuzXUNQeySllWxKFUYTCSaSUWI+Dw
3cgnpqixslRX8BjJmpr09LCGtbWP1EWGLNGCr7DK4SuBOrXLn/VWblTAMSMw64HP
lok12pLn6UTwqkOslT7WZyxJriVKNOaVN20FVOO1WelVqYntb4pvtlrRwuqEwQh9
bE0ONPtS0KYO83JCVMsRJbEYsCHXmSFtDViyCJnn/MtmR6VzzZS37xhbyt9Zg8vJ
2xFTeG5pJb/bx3Ag5aC7BPqgBniI3cWn02eolV0tPQuNC3uZDkkNp6sVh+hy1vVI
b4Yidnvm8UM=
=mTSq
-END PGP SIGNATURE-



Accepted zoph 0.9.4-1 (source all) into unstable, unstable

2016-12-22 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 15 Dec 2016 18:32:23 +
Source: zoph
Binary: zoph
Architecture: source all
Version: 0.9.4-1
Distribution: unstable
Urgency: medium
Maintainer: John Lines <j...@paladyn.org>
Changed-By: John Lines <j...@paladyn.org>
Description:
 zoph   - Web based digital image presentation and management system
Closes: 846317
Changes:
 zoph (0.9.4-1) unstable; urgency=medium
 .
   * Initial release (Closes: #846317)
Checksums-Sha1:
 10890b96438de8772224a53ddc6b4db26365369c 1706 zoph_0.9.4-1.dsc
 c58f5d923966d5f9bb3664e4c7a8fc8ba425ff89 9527605 zoph_0.9.4.orig.tar.gz
 9775034a7bda1364d2196b361a491b5c0b467219 8348 zoph_0.9.4-1.debian.tar.xz
 a0df3f3a67c4f014f76c4e0df756246c10216c5b 9332278 zoph_0.9.4-1_all.deb
 80427977b52917b5bf580baad840bb3005bc2c7c 4661 zoph_0.9.4-1_amd64.buildinfo
Checksums-Sha256:
 92b0c23a292754c9d88b0c5deb98fe41c1cbe8d46faad6e47c1fd7f3623872ba 1706 
zoph_0.9.4-1.dsc
 a228f714da11522d1f2c8324668ba9fecb724f37d872f28f023371e48ddce23e 9527605 
zoph_0.9.4.orig.tar.gz
 d9ab6b77d8b64146641cc2dba31db39de880286754fdf0046c06c0bfb8746048 8348 
zoph_0.9.4-1.debian.tar.xz
 348ee37a1faab7ac141ea91221f94f8a654090366912492e742b3fccc1b31a1d 9332278 
zoph_0.9.4-1_all.deb
 a31c0a48a6b09ea1b2a7211d29b6f873d215953bd0092d4958979e9567c7bb7e 4661 
zoph_0.9.4-1_amd64.buildinfo
Files:
 8f5da7276c247fd2cca5dbdc468790b7 1706 web optional zoph_0.9.4-1.dsc
 712b30dfbc2e249dff2717a641ed220b 9527605 web optional zoph_0.9.4.orig.tar.gz
 7af50973b8fad7968e72e244e56d2a25 8348 web optional zoph_0.9.4-1.debian.tar.xz
 e95e814841fb16233b455d862832b97a 9332278 web optional zoph_0.9.4-1_all.deb
 cc02d3092339858dca504588ee7f4f68 4661 web optional zoph_0.9.4-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlhS5zsRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGheesTQ/5AUhe6ymocBzl3mhCdEnDXP72wqzoFOYV
cOjRuJ4B0/mYuLnYvxv5+7IF9EYceI9wuNzowbA+9isWBjYs6J2iW0gy3YMoHbFx
ft8mknUlLx34p/63Lf/prCuC1f/lRuUKoYRcJqqJl1roWeBwCiTc7B0dBX/ayjVx
ZChfEApEr+pnmLjaYo1yZguiYgtBe+k6YJ8QVOcncCRVgUplogtkiPhBN0h/k53u
8/QU1pThigCDQqAT6v4roDl5JY6rtoy1RuYSwZhztyqXYXn/Q9vWY6BvlQT2+wFX
ukeyoTowGQSBGpmaM0csSEvonSTVFWjnvWryizxyN1Wy1pDARVeI0KgTDK0Z69Bq
iac4GIh8vGDU/YggB+gRDRZG21Fbok3lsfO1XusSQ62yPQUuzSM/HcNBqg6Us3NG
gcMVcQ1XjHG/IkgJS4MYR2QkI/ovlyknrQZJK7Mf9/1M7suBciNOMjN1ilfPZ8Hk
GI1dvFPvknSyu/frBwOb2vW0dviIyRgOS5fhmxIEEK9m/fnvzqvFhiuYh6TA6K3u
Ol5JsxAZPwPuTspRRPf/qbZ+PNva4LH2ZAGJzFeBYbmAFrYqy3DEYQyFncF1slWF
BxA9+F0+fu/RDMNyn6YCxHG/PIMA2luRpXae+Nb6t+BdhxqQzdLucSO/mf7FWBPE
TvYC7laSAHU=
=ZIej
-END PGP SIGNATURE-



Accepted sope 3.0.2-1.1 (source amd64) into unstable

2016-12-22 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 20 Dec 2016 17:41:47 +
Source: sope
Binary: libsope1 libsope-dev
Architecture: source amd64
Version: 3.0.2-1.1
Distribution: unstable
Urgency: medium
Maintainer: Jeroen Dekkers <jer...@dekkers.ch>
Changed-By: John Lines <j...@paladyn.org>
Description:
 libsope-dev - SKYRiX Object Publishing Environment (development files)
 libsope1   - SKYRiX Object Publishing Environment (shared libraries)
Closes: 845910
Changes:
 sope (3.0.2-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update build depends to default-libmysqlclient-dev (Closes: #845910)
Checksums-Sha1:
 6070997569213ed0e3c07febe1ed0503c58488ea 2062 sope_3.0.2-1.1.dsc
 05d31906810957170f06f711f5e8999dd906a84d 4780 sope_3.0.2-1.1.debian.tar.xz
 6767aa0ed5abcade2430a135a7bd05369ff6583e 23 libsope-dev_3.0.2-1.1_amd64.deb
 b14b9472a79357be032b3ffd3593f1cb1d9dc3fa 5215844 
libsope1-dbgsym_3.0.2-1.1_amd64.deb
 ec9f15218aa4229f8a74e9236bad766e56cf0c86 1869964 libsope1_3.0.2-1.1_amd64.deb
 a3396187a589078336e5984ca7aaf82e2d0f0092 6987 sope_3.0.2-1.1_amd64.buildinfo
Checksums-Sha256:
 00996f3e4bbafe9412188451872370be112b89686d8c05d1f82cc8679249d32f 2062 
sope_3.0.2-1.1.dsc
 480e7ed67690ba93e2899c2d248e42e8336b1fade268cb2cbefc1ee31e6d1dcb 4780 
sope_3.0.2-1.1.debian.tar.xz
 7f6a6ea2d189b073a02d350c7499b55f026fd0833f8c90d458d80cb6cb19bcc2 23 
libsope-dev_3.0.2-1.1_amd64.deb
 5326222d72e7ce4cb55ab28371e9867542284a7036b9d83a12d9a35a8d4aae4c 5215844 
libsope1-dbgsym_3.0.2-1.1_amd64.deb
 82c760b7f05360c744c4524ed4d4a9fc838b937781c87f041c186d5338e8 1869964 
libsope1_3.0.2-1.1_amd64.deb
 e1065c74fb7d1e4f7a5adfeaa5a74b162b3f2f78bb5d97b633e21db95fb2568f 6987 
sope_3.0.2-1.1_amd64.buildinfo
Files:
 0fbeaab406471538820d8b0306c63f88 2062 libs optional sope_3.0.2-1.1.dsc
 384361552aa2d463df0b7974a0727285 4780 libs optional 
sope_3.0.2-1.1.debian.tar.xz
 ea5de04edb44ed7789ae6b1e23b33b5d 23 libdevel extra 
libsope-dev_3.0.2-1.1_amd64.deb
 1bad25957b73da640bf5dcda00051d26 5215844 debug extra 
libsope1-dbgsym_3.0.2-1.1_amd64.deb
 16692c63a8c2a70ac7d1900db09eae7a 1869964 libs optional 
libsope1_3.0.2-1.1_amd64.deb
 ba066afd28569dcaee25b11d5f5978b1 6987 libs optional 
sope_3.0.2-1.1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJFBAEBCAAvFiEEqH8J6LTFSJCxem30HxJlOZZGhecFAlhZcQwRHGpvaG5AcGFs
YWR5bi5vcmcACgkQHxJlOZZGhec9MxAAmWb5mv2elPO1otF4u+t9A9d6iH7cA45Z
n0EybmpmkMMpdUZ5EU1NbNRxSfiT/O4C1Klp8JbVVPpSvF+YNSvRFFVOWR/g6DBJ
vj6oFpM2BGvv8QRVqvHeXtxUPDCI+bM5QWE0pTxi+IG0ZmtXgY9yJr4aSdZCgfxy
XpNW7CLTwMAftdtWrXAUn78iUbRJratk3ZSn6M97FNZ2uwgi7sZi+eMp45PYvC6j
jmZvzTKsJyKq4bymr3zWcTDof0oDMgZREGkgavIbvBqujQ9nA//GNuOUV7Yk+ZZ0
s4RCF6ObtI2r8+vxm+5AgNN7Xr7kCPn7DO24TTQPYjSC5s7NCGnYlIxBIvd7HqMK
1oO1ehSevemQ7kb+b0q4Xy1ToIz6TZMBCOMAoZNMvhr0WQyLqhAYwFsUvFd3Z/E1
vP2MVlfbTOa0waW66QuoAukMrG9+bF5fFvr/1G6L/Ivff3kEpfrdjQP1Bk87lZQ0
/KujNPl2bkNnmuYQs/jucjkmFDSAm3ZA8/UDCEjoxTUyrZHbXlVj+voL7QHVEYiF
Mmjq1EgO4CZv1rXrBCQGnaL7yEYJ/6mluYGBGPnBj083kUxHa+LIIu+o+QROW44o
MRXqYDMKmxdQQ9l3Dk99klowOBy1T1ncJnRquJ1BRqMydpn33SQPAZrfm7p89YWJ
gQNp4QbN8iQ=
=ZidA
-END PGP SIGNATURE-



Bug#846317: ITP: zoph -- Web based digital image presentation and management system

2016-11-30 Thread John Lines
Package: wnpp
Severity: wishlist
Owner: John Lines <j...@paladyn.org>

* Package name: zoph
  Version : 0.9.4
* URL : http://www.zoph.org/
* License : GPL-2+
  Programming Lang: PHP
  Description : Web based digital image presentation and management system

Zoph (*Z*oph *O*rganizes *Ph*otos) is a web based digital image presentation
and management system. In other words, a photo album. It is built with
PHP and MySQL.

The backend database can relate an images to one of more albums, places,
people, catagories etc. Albums, places and catagories can be hierarchical.
Multiple users can be created, with individual access to albums.

Images can be imported via a web interface.
 
Gallery used to provide a web based image management system, but is no longer
packaged, and there appear to be no packages offering a similar functionality.
Version 0.8.0 of zoph was packaged for lenny, but dropped at bug #679417



Accepted plptools 1.0.9-2 (source i386)

2010-04-03 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 31 Mar 2010 20:34:13 +0100
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.9-2
Distribution: unstable
Urgency: low
Maintainer: John Lines j...@paladyn.org
Changed-By: John Lines j...@paladyn.org
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 574190 575097
Changes: 
 plptools (1.0.9-2) unstable; urgency=low
 .
   * Update Portuguese debconf translation (closes: #574190)
   * Add Italian debconf translation (closes: #575097)
Checksums-Sha1: 
 aba20ecbcb0644ef068b97c3b6d30f1a044ffbd3 1730 plptools_1.0.9-2.dsc
 098960f7153415ada6f4091718175df64b2835f8 27995 plptools_1.0.9-2.diff.gz
 0c550564932b23b0a695c6feb89c250f44543b60 223096 plptools_1.0.9-2_i386.deb
 09d1b7230e8e94f71e0c92fb99328638e0481a2c 238722 plptools-dev_1.0.9-2_i386.deb
Checksums-Sha256: 
 24df15d4cdd50c68fc9f1a86449a3192c907fe4a88c6b884e66b3e121cd3c815 1730 
plptools_1.0.9-2.dsc
 125234807ffd728151595825ba14be4c08287f72034c7744ad9479a42cbcbd82 27995 
plptools_1.0.9-2.diff.gz
 cfc2b38ea6255e4307240bb46e5c0fd96ee6a8ceecd83848399b8cfc112c8d07 223096 
plptools_1.0.9-2_i386.deb
 2691f8ad072adb58c4d4253869ffbad9ac74201d75316304f9024b173b297c3c 238722 
plptools-dev_1.0.9-2_i386.deb
Files: 
 bc20d1c8ea80629e9af635e738639ab0 1730 otherosfs optional plptools_1.0.9-2.dsc
 4f85b523623ef6dcb7d7e8a2927c4c90 27995 otherosfs optional 
plptools_1.0.9-2.diff.gz
 ed5f5a18fcf136db2ebcc0af8ce1f26f 223096 otherosfs optional 
plptools_1.0.9-2_i386.deb
 40808ce562d5fe17ffaa7ce59c653f42 238722 devel optional 
plptools-dev_1.0.9-2_i386.deb

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

iQIcBAEBCAAGBQJLs6m2AAoJEB8SZTmWRoXnIBUP+QE7Cf5QakMZ1eKk5XwV+t/4
brQVTh4cMrXqpnUlNUyB6d/5/lm3EETc+zfObz8IwYopENFkfq99PZ2yzR2WaKJl
3crCRjvdBsasElslKEiMSNVyw/Tj5PFAODpgxYmyoKUMWGF1S8N8+7juWK7tNe26
iumJCI8vAQMu5k9rXudXHhSPzqcdA4450jisUCy9sHet5gkFhG3RrXwu/O9K+byu
Nn4fLQxO0IamNgynvfWOdGP6YfFk1KlwG6zrx1OreHMJ0tA0/sgYF5tdeIZpItpG
R8TXpt1ZewEk3YagRHQqkp2CAjGre5vMynsMSc00FGDuOz6zl7kykjiCL0CT6/4P
rWpNVwds7mZw7o8Gy59o2yz7cosTAiDdLpXAfRx3OG+/mBdbnKSjx79G8etAIDk2
Z+6EHfnBfQgKw+wo5KNIyxasNqG/XTrCk7DA/lPAloDp/0h3kY6XEHRzAfoE3oZz
3iV0PvVUHIGRn832YbcQARHBBJCLZuDqhN5n8sW3QGFaQKW3ITEJIy/tpAkTJaGK
G8+MDCICoCNLzzeR90/WGCEPXNrl6o5XrII0sj+9CGUkPi0J9t/Om53vSiJmZyyW
lbNz1AD0ynWwNfoqmT7qDPYInbkdWn6uvQ9FsPVSRcMzbJsKsWkDXz020yBRK668
yLtaDqzwpdKtXeyuI//k
=7vaz
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.9-2_i386.deb
  to main/p/plptools/plptools-dev_1.0.9-2_i386.deb
plptools_1.0.9-2.diff.gz
  to main/p/plptools/plptools_1.0.9-2.diff.gz
plptools_1.0.9-2.dsc
  to main/p/plptools/plptools_1.0.9-2.dsc
plptools_1.0.9-2_i386.deb
  to main/p/plptools/plptools_1.0.9-2_i386.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/e1ny8f0-0004we...@ries.debian.org



Accepted plptools 1.0.9-1 (source i386)

2010-03-16 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 14 Mar 2010 07:32:22 +
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.9-1
Distribution: unstable
Urgency: low
Maintainer: John Lines j...@paladyn.org
Changed-By: John Lines j...@paladyn.org
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 539299 563396 563403 563644 564129 573533
Changes: 
 plptools (1.0.9-1) unstable; urgency=low
 .
   * New upstream version (closes: #539299)
   * Update German debconf translation (closes: #563396)
   * Update French debconf translation (closes: #563403)
   * Update Russian debconf translation (closes: #563644)
   * Update Swedish debconf translation (closes: #564129)
   * Update Vietnamese debconf translation (closes: #573533)
Checksums-Sha1: 
 9fe9ac5dfbff0e5cfdab2e66636a8af918bb761d 1730 plptools_1.0.9-1.dsc
 60e3cd7e6b39b37ec9f9f7ef313ee8a93cfb9c4b 810827 plptools_1.0.9.orig.tar.gz
 84172eee59a42d0ee9406ac16ac685ff2b47cc0a 26789 plptools_1.0.9-1.diff.gz
 22610626ed87b5ab2278cd21eb239f614c6e9730 221334 plptools_1.0.9-1_i386.deb
 ae46fe054263537a5376a327f8ecf06ca6a01b5c 238622 plptools-dev_1.0.9-1_i386.deb
Checksums-Sha256: 
 ae7b42489a8168a44f9e38c93406378483b2f4f0285483b6238b6f5bc1c0aed6 1730 
plptools_1.0.9-1.dsc
 652404152227ffcd470155c6ae84828630ebc7d4eb6f5c69223f71318d10c487 810827 
plptools_1.0.9.orig.tar.gz
 feef7564c8ceff906b7d06cf921500ae458134f1c4178217ecf3df79da87cb50 26789 
plptools_1.0.9-1.diff.gz
 34fbca573015f3bbcf54c844bf26cf14989d7860d56ed8e1de1ba7d9801aec24 221334 
plptools_1.0.9-1_i386.deb
 61bf8efa15e73de92e7ff1b465317cd2e260fa5d4cc55b4793e98f7e5ff06d08 238622 
plptools-dev_1.0.9-1_i386.deb
Files: 
 f3c79d8529f30d289a5d86ac8ba9386b 1730 otherosfs optional plptools_1.0.9-1.dsc
 7fafdc42065830086abf2b93ddf07007 810827 otherosfs optional 
plptools_1.0.9.orig.tar.gz
 b42e16d28cd4cfb8c6fb35355d500adb 26789 otherosfs optional 
plptools_1.0.9-1.diff.gz
 59c150e24c97e6d68e4d14c6587d7a36 221334 otherosfs optional 
plptools_1.0.9-1_i386.deb
 ac613822efd61072914a9b4d20fa1251 238622 devel optional 
plptools-dev_1.0.9-1_i386.deb

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

iQIcBAEBCAAGBQJLnLJxAAoJEB8SZTmWRoXn+7YQAINj+J6AGkIKFPEKgKEqTtjy
c7J+CRG72Db69K15wXsWBAwkQzUoiWqdEUb8N1Q8W+RP6Nw9IA+zZc69sTjzmYvS
yu5dBh4zF6ZI1ERcaYGUe9zbIk2pzNbe1qOzmYifcq2wA65mC6mEinGIACWrZj63
Njz+d70YqhUArwAPY1ezdh52kOpPJ1dE9hiPhkk6OXTDkoxP/UU9cgBW7qDhQKb3
LCcfFw9CGcDfa0P+9BK2DFNdeVvSHCwtVjmh3M8rmy0zm5L+CwM+CNNpAzdfm29S
0sIqk3vNLsZZKmBqXWM7Rp3LI7j35lzDwPJst5Wueti7EHWM8cbkGed+X7cS8mQ9
dvVdQ1W1c+DRZw8hvztwsvS85srJRbr0+gkfHAUDCLJqS2Gub8Y/DqoB07sz78Lp
DnS8YiEwHRX8Uveq977WRzNRBNrmKSEcnaj8qMyJ/FVqa7/ozTswdKCQsW7joEJ0
KjUlvDLfi0GS0/uWGz1bwWKQHyTpYQ20UqYONZWquAtszchEHM+1vZw/jIHGdysI
lM8yjcxfthj2+KsZ1nJqUzLVpydYJTxddnuxESJGCCKSzNH4VPaaydo46Ky341Xc
CYSlprZ5jC19MKxDXf+VtJpDrQpz+DAen4uh6oMO6BPj++xh3QToi10MtNk0h7QM
Urqpdiv9hCRVCPmXYAL2
=o5iz
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.9-1_i386.deb
  to main/p/plptools/plptools-dev_1.0.9-1_i386.deb
plptools_1.0.9-1.diff.gz
  to main/p/plptools/plptools_1.0.9-1.diff.gz
plptools_1.0.9-1.dsc
  to main/p/plptools/plptools_1.0.9-1.dsc
plptools_1.0.9-1_i386.deb
  to main/p/plptools/plptools_1.0.9-1_i386.deb
plptools_1.0.9.orig.tar.gz
  to main/p/plptools/plptools_1.0.9.orig.tar.gz


-- 
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/e1nrerj-0002gz...@ries.debian.org



Accepted plptools 1.0.8-1 (source i386)

2009-12-31 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 31 Dec 2009 15:30:58 +
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.8-1
Distribution: unstable
Urgency: low
Maintainer: John Lines j...@paladin.demon.co.uk
Changed-By: John Lines j...@paladin.demon.co.uk
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 505702 518282 523908 526407 534791 539229 547778 553827
Changes: 
 plptools (1.0.8-1) unstable; urgency=low
 .
   * New upstream version (closes: #539229)
   * Includes gcc4.4 fixes (closes: #505702)
   * Build depend on libreadline-dev, (closes: #553827)
   * No longer suggest portmap as not required for plpfuse (closes: #518282)
   * Tidy up package description (closes: #518282,#523908)
   * check if modprobe fuse is required in init script (closes: #526407)
   * Update Czech translation (closes: #534791)
   * Update Spanish translation (closes: #547778)
Checksums-Sha1: 
 8de6d843d439be4a714ce6ce73329a67de6e85c1 1738 plptools_1.0.8-1.dsc
 da58088103cc87871b2db1479ed288f4c9b8ccbf 800415 plptools_1.0.8.orig.tar.gz
 ea1f3219312243b7f45f4b0ff2f6a0110a35d7c8 26873 plptools_1.0.8-1.diff.gz
 2c48214d0c60263c51f362a139b6e08a58334962 220122 plptools_1.0.8-1_i386.deb
 6c9c98246763448766e51247319699275f873bfd 238260 plptools-dev_1.0.8-1_i386.deb
Checksums-Sha256: 
 ad8391dbe6eaff484dd6e310cb3e108b30171614bf035071d38079cfbeb2a2ae 1738 
plptools_1.0.8-1.dsc
 7cac6885f87bf5ae5849206cff1e7819280594742f1b0a538746e862ec924e43 800415 
plptools_1.0.8.orig.tar.gz
 980ddc5efb0af37b17249e2536b2a9f55207a9f1ba6ac191793bc66e2e15ba0e 26873 
plptools_1.0.8-1.diff.gz
 55564c47912fa388e677c38798e6a8eedc3c3c6525c2df775fc6b3715c38ed85 220122 
plptools_1.0.8-1_i386.deb
 8bfc104fceee3b7ca3d2d2582402dc41c6797fa9b091b4e0fbd95277fdea7dd5 238260 
plptools-dev_1.0.8-1_i386.deb
Files: 
 38b308cfac3b4556336beaf242c8dbbc 1738 otherosfs optional plptools_1.0.8-1.dsc
 5efa941186809575346c06cdc18773da 800415 otherosfs optional 
plptools_1.0.8.orig.tar.gz
 a040a87506ade70f3b84edee5af472e4 26873 otherosfs optional 
plptools_1.0.8-1.diff.gz
 a3514540e0e155cc0791d28d65022d00 220122 otherosfs optional 
plptools_1.0.8-1_i386.deb
 8babaccb60d1242fc88d72efde804cce 238260 devel optional 
plptools-dev_1.0.8-1_i386.deb

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

iQIcBAEBCAAGBQJLPO0tAAoJEB8SZTmWRoXnN2sP/3cidcz+q7RF9jtc3RsDv2W+
MOEOHAKkuDFWQti8ZUe9iT0sr7SHIoYGr0Dn7Uk/tJRUFG194uwHSET6so6ZIKzn
wzfDBBdFJKS0TBnAAWvW736aiWbLBnfZGqJHhpDuOC+MtB4kvlQT4GjirFOzX8OJ
teNm05WFTkrP8khHg5HgkjreaNvpmrSyz2WBT2IB0lgksYkwDIl9SFxjoz5E9s2K
stap6rS3VSyv80R+tjmaDsEYs7zdglxGqXgyI4Lx0cmXWqumJTB/afgkdGIxl7Gd
TiU6dgXUfnkF5dLJyVxamZ9lBuDaB3WYyRtm8c6DojZi6GR0ec/6oUKasuqe/r4u
56168v/NYivxDfnYQsTvvmVOwkjb2askuv1N/338f5i/KQ0hfYRbAbTJoWZ0FbJF
KOlf+jZVJK4HirO65uZK25ncB1wBcnuqZHyHyuOD3fTL4jFIpfmT2nIHbZfEp0LH
4NVru0YwkL7H2E1TrMcw9gFcsfuxd2m8jqwxPu8r5EOYruDQgTcmUmp0petLhm+W
8Ufh68pv683DObstJQ3ChLsIH2ZW7zwJx26jJBC9zxvp8/cXBD0EjO6ghsGmejKw
f8Bd6WO1yVjYrjxW/jZsh3GxcmAsAmyaTI8i7BtqmULuPjqtPWJeg2Clmo4FgqX4
t2u4zax7T76/7frac5wT
=IWZ0
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.8-1_i386.deb
  to main/p/plptools/plptools-dev_1.0.8-1_i386.deb
plptools_1.0.8-1.diff.gz
  to main/p/plptools/plptools_1.0.8-1.diff.gz
plptools_1.0.8-1.dsc
  to main/p/plptools/plptools_1.0.8-1.dsc
plptools_1.0.8-1_i386.deb
  to main/p/plptools/plptools_1.0.8-1_i386.deb
plptools_1.0.8.orig.tar.gz
  to main/p/plptools/plptools_1.0.8.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted plptools 1.0.4-3 (source i386)

2008-09-27 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Sep 2008 12:23:48 +0100
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.4-3
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 495571 498803
Changes: 
 plptools (1.0.4-3) unstable; urgency=low
 .
   * Update Russian debconf translation (closes: #495571)
   * Update Portuguese debconf translation (closes: #498803)
Checksums-Sha1: 
 9172ca890c5da803d0782912fa3e7dfd7374bd4c 1210 plptools_1.0.4-3.dsc
 fc3ef6f04445abbba4615c8d50f79fd70fbd45f4 24951 plptools_1.0.4-3.diff.gz
 4f7049a561674ebc11901945d2287b5b24d73c35 219876 plptools_1.0.4-3_i386.deb
 9a06a835e1f7ac2640e7d1f3b3c96039f8918b2b 236324 plptools-dev_1.0.4-3_i386.deb
Checksums-Sha256: 
 b3ba52b8a65598d07f13f99bf16009c61a2fd74ab7d8dfaf046d4d4a39671ea4 1210 
plptools_1.0.4-3.dsc
 1bfeed937715a91240d51e120647967b13ae8330fdaa2a03b8c808e3385ed8bb 24951 
plptools_1.0.4-3.diff.gz
 8704863d20f37b2aa052afb797e1e5ef73623d2f2103f312413ecd80e09c03ea 219876 
plptools_1.0.4-3_i386.deb
 2e9fc4743abc3ac398bdd19a04bd3c63f90d65c14ac8ac63cdfec0543c7c6536 236324 
plptools-dev_1.0.4-3_i386.deb
Files: 
 35fb3c68e1a595752c8fb4b11a3eb71e 1210 otherosfs optional plptools_1.0.4-3.dsc
 c3d19f44bc72e6c44cf5cdeaae611ad3 24951 otherosfs optional 
plptools_1.0.4-3.diff.gz
 72a7731d378cd0a5628e83115e9a53e6 219876 otherosfs optional 
plptools_1.0.4-3_i386.deb
 40bd2f00ce694dc7d904cbaeceab3878 236324 devel optional 
plptools-dev_1.0.4-3_i386.deb

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

iQCVAwUBSN4b650KIkah3rc9AQIStAP/aeVFqppPeA8XKRkxItqSoKEe8PJA7q5U
QoFmW71WKsjejibTqRH0gLePn2bwp64JqtDAaNhkiU+67R3eYPuDZ4pElrZfH6ah
SsUF+ct5KyaiSSVb/3oksOGQFwaG3Z0WV86282GFFfoYXEJshB5Ge66awOZIUAbn
JdiUcYl/SQU=
=AIlf
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.4-3_i386.deb
  to pool/main/p/plptools/plptools-dev_1.0.4-3_i386.deb
plptools_1.0.4-3.diff.gz
  to pool/main/p/plptools/plptools_1.0.4-3.diff.gz
plptools_1.0.4-3.dsc
  to pool/main/p/plptools/plptools_1.0.4-3.dsc
plptools_1.0.4-3_i386.deb
  to pool/main/p/plptools/plptools_1.0.4-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 1.0.4-4 (source i386)

2008-09-27 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 27 Sep 2008 13:46:28 +0100
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.4-4
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Changes: 
 plptools (1.0.4-4) unstable; urgency=low
 .
   * Really include Russian debconf translation
Checksums-Sha1: 
 be14e563643e1e51b419d00c6944f673920414c6 1210 plptools_1.0.4-4.dsc
 355b25ad84b80fb1fd5d43a2abe4213e12db17ca 26732 plptools_1.0.4-4.diff.gz
 fc9065b2430e3e119b7e41cf00b87341b2d12756 221516 plptools_1.0.4-4_i386.deb
 7537ddfe0c5fbe6851da1605a81361326c01ebfe 236340 plptools-dev_1.0.4-4_i386.deb
Checksums-Sha256: 
 d918946f4629bcf633b3b40e18f9966eae0c8599bf8fb4426d160a5199636fa6 1210 
plptools_1.0.4-4.dsc
 0853e586706de0f8eb1d011d22e91abb6a10acbce446e847d81b183206909994 26732 
plptools_1.0.4-4.diff.gz
 7df77f855485a5d5ab25a1950305bf384f30050577f7bf27bd46bfef85e5b289 221516 
plptools_1.0.4-4_i386.deb
 003b73524dd1a67b95ccafbdb89a7c5215e62b855b402e4cc99ceb6eb671b139 236340 
plptools-dev_1.0.4-4_i386.deb
Files: 
 d5e1bdb0cc21f7a74014e30400024c43 1210 otherosfs optional plptools_1.0.4-4.dsc
 633353505bb4c6015b2c62e0583bb531 26732 otherosfs optional 
plptools_1.0.4-4.diff.gz
 36a3258dcc48c7eeabbb5c0502ef9cc5 221516 otherosfs optional 
plptools_1.0.4-4_i386.deb
 761da58e3bd6706166d8d389accc1caa 236340 devel optional 
plptools-dev_1.0.4-4_i386.deb

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

iQCVAwUBSN4slp0KIkah3rc9AQLabwP/R7bYQ3SEhC38fdXpPGBEfBScTyMw9sgq
eomz8VYPxJvi/2fp/fzJ5DD1Fn9K8+jGayOhDExp6yhcN9tpr7lE6iu5eGuRShDp
x9HbqXHtm6GQzAoechG/4i1e19NP0KDGjDN07kVMOYOshPrz/vZGg62ceSxqtQBx
oToZsCUssXQ=
=0JoZ
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.4-4_i386.deb
  to pool/main/p/plptools/plptools-dev_1.0.4-4_i386.deb
plptools_1.0.4-4.diff.gz
  to pool/main/p/plptools/plptools_1.0.4-4.diff.gz
plptools_1.0.4-4.dsc
  to pool/main/p/plptools/plptools_1.0.4-4.dsc
plptools_1.0.4-4_i386.deb
  to pool/main/p/plptools/plptools_1.0.4-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 1.0.4-2 (source i386)

2008-08-18 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Aug 2008 18:25:18 +0100
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.4-2
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 494008 494134 495496
Changes: 
 plptools (1.0.4-2) unstable; urgency=low
 .
   * Update German debconf translation (closes: #494008)
   * Update French debconf translation (closes: #494134)
   * Update Swedish debconf translation (closes: #495496)
Checksums-Sha1: 
 b3cf748ba56e30cdcfdfc7ce95394a1f37ff474c 1210 plptools_1.0.4-2.dsc
 1a59029db15e2212cb5bce20330ba7698252fb59 24907 plptools_1.0.4-2.diff.gz
 3e406f5874b7012edcca43d689d7177d7fab2b78 219494 plptools_1.0.4-2_i386.deb
 d727cef2ccd7d708b07448d6b7b93c7eaa23d67f 236392 plptools-dev_1.0.4-2_i386.deb
Checksums-Sha256: 
 1d6587dc58b94bb5b5980e5166c4c05501e4cdc2c121e86203c0b0be9eeaa9ec 1210 
plptools_1.0.4-2.dsc
 4efe4bffdd5f20679125d4a5fd6fd1aa375c98e9960a667c6110b4afd64da884 24907 
plptools_1.0.4-2.diff.gz
 8b2f66ea51b88cef459ed24e751ca71c35cc4fd665eb8a83bcfd695cf5ffa2b0 219494 
plptools_1.0.4-2_i386.deb
 a3943e20c0cf9aeb9d0537550825323ef7ec474ea4bd0c94765110af56b2cec4 236392 
plptools-dev_1.0.4-2_i386.deb
Files: 
 60471237a2edae5cd35c0e6e3ace8c31 1210 otherosfs optional plptools_1.0.4-2.dsc
 03cf2cf40416246c2c19d89f0866776c 24907 otherosfs optional 
plptools_1.0.4-2.diff.gz
 7da0917ed9e33924ef49ac17c9a71df6 219494 otherosfs optional 
plptools_1.0.4-2_i386.deb
 8c070f325bb98a450658623337e53ba9 236392 devel optional 
plptools-dev_1.0.4-2_i386.deb

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

iQCVAwUBSKmzgp0KIkah3rc9AQLvYwP/QPBrqGdquyjkdigpteqFbq7Nale0ej1g
L9rZPdlEv5817YZBSOyUDunWC3k1Agi6dFFgkpwASdxVv579FW2eEpCy+iA+1GbP
3CvvttWf0zGb220IL8vf7FSgTaaXqXXaacoxpc8H4CG/JFa1JFBdXMpoyh7Yf/82
+EtcK9QOhZI=
=Jl3I
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.4-2_i386.deb
  to pool/main/p/plptools/plptools-dev_1.0.4-2_i386.deb
plptools_1.0.4-2.diff.gz
  to pool/main/p/plptools/plptools_1.0.4-2.diff.gz
plptools_1.0.4-2.dsc
  to pool/main/p/plptools/plptools_1.0.4-2.dsc
plptools_1.0.4-2_i386.deb
  to pool/main/p/plptools/plptools_1.0.4-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taglog 0.2.3-1 (source all)

2008-07-26 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 26 Jul 2008 08:03:09 +0100
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.2.3-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Changes: 
 taglog (0.2.3-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 c7c6bd382916193bf87103b1a5201183020015d8 1089 taglog_0.2.3-1.dsc
 0a6f61c83c9671913dcb85ac8162adff66461489 292999 taglog_0.2.3.orig.tar.gz
 056718ac3983ce9b2472e1379da24dbb03167d8a 2835 taglog_0.2.3-1.diff.gz
 60a243b6b04bfaf7878b5a4beac90d0aa33cebc6 279312 taglog_0.2.3-1_all.deb
Checksums-Sha256: 
 323cedaff6cad4f512f86eb29ba5fafe093d67f2f090591239df906e70f4768f 1089 
taglog_0.2.3-1.dsc
 2fac91e974e1c1a07cb7b81f8725cc89e7d30e4cec687d6ca8a4200292cc4197 292999 
taglog_0.2.3.orig.tar.gz
 cf098492d9457f1a2ce20fd6a32e86c8fb35b2a2eb2964cd1761e4a4e6f246c7 2835 
taglog_0.2.3-1.diff.gz
 20bf6baa430ea18bc678c8539ee8fc7c1e0f71b8b449774f43004a5059706898 279312 
taglog_0.2.3-1_all.deb
Files: 
 5aea9a28ce92ce66d15e810469030630 1089 utils optional taglog_0.2.3-1.dsc
 a678b195fa39ed9e3e35792e18a1799c 292999 utils optional taglog_0.2.3.orig.tar.gz
 7f220789b61b029f511f407f6cb03eaf 2835 utils optional taglog_0.2.3-1.diff.gz
 ffd7cae3cbbf4dce1b81ec0586b8550f 279312 utils optional taglog_0.2.3-1_all.deb

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

iQCVAwUBSIrbgp0KIkah3rc9AQIfpwP9HXFjDkOSIfO+0kOJT2O0srkFr0imUXVa
w9dM9V6m2I8Yh5Bw3hHw35F17rJqxdBUHuRSfPpWrqhbQhAxS3SZuuTUNJgpgGsB
EF3GX6Q8MUxE8WPaEPSazMN1R4mZBnmgGmbVhVgys1nV0NhC5d7qZsFJAUtfXzRw
wGWHO0ntxCg=
=WV1A
-END PGP SIGNATURE-


Accepted:
taglog_0.2.3-1.diff.gz
  to pool/main/t/taglog/taglog_0.2.3-1.diff.gz
taglog_0.2.3-1.dsc
  to pool/main/t/taglog/taglog_0.2.3-1.dsc
taglog_0.2.3-1_all.deb
  to pool/main/t/taglog/taglog_0.2.3-1_all.deb
taglog_0.2.3.orig.tar.gz
  to pool/main/t/taglog/taglog_0.2.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 1.0.4-1 (source i386)

2008-07-25 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 24 Jul 2008 21:36:48 +0100
Source: plptools
Binary: plptools plptools-dev
Architecture: source i386
Version: 1.0.4-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
Closes: 189137 492104
Changes: 
 plptools (1.0.4-1) unstable; urgency=low
 .
   * Package version 1.0.4
   * This version does not provide KDE related packages, remove
  plptools-kde,kpsion and klipsi package.
   * Also remove libplpc2a package and provide it from plptools
   * Remove build dependency on kdoc (closes: #492104)
   * use /etc/default/plptools as the configuration file (closes: #189137)
Checksums-Sha1: 
 0238e943b6097ca6c51680a94922ff992440c5df 1210 plptools_1.0.4-1.dsc
 de6067bec11d8c96c0041f9e5df97b0c023ac3ef 815920 plptools_1.0.4.orig.tar.gz
 6110738ab106609f00977e1d0d561ca54101a794 24835 plptools_1.0.4-1.diff.gz
 6a2267e31c7c812071b367d7394ea6d8e55022a6 218532 plptools_1.0.4-1_i386.deb
 387a2e176c7cce749be816b90432f8ca393d2fdc 236340 plptools-dev_1.0.4-1_i386.deb
Checksums-Sha256: 
 4d56d240ee89654a34f804537c8917927c261aef37fb8773b013e0c10f2d04db 1210 
plptools_1.0.4-1.dsc
 54f96fd7b4af1fb57d0560ce7e9fea74050c596b9814ce783d155c697ebcf391 815920 
plptools_1.0.4.orig.tar.gz
 31b82dcbc9772776245bd91c89ce3726b288ebd7783def0d6f59603b894a54fe 24835 
plptools_1.0.4-1.diff.gz
 17ec4bbccd6744ae69913439cc1ca5c77582f8942f1bda0382581d102ee156aa 218532 
plptools_1.0.4-1_i386.deb
 3b329b926ceb67d983dc7f4f2654616b503138151278ff0b30fa74b8d0d630fc 236340 
plptools-dev_1.0.4-1_i386.deb
Files: 
 099a93a087757b6b188051a64cfdc277 1210 otherosfs optional plptools_1.0.4-1.dsc
 3cbbdca7bcb16e85104c0337d412f888 815920 otherosfs optional 
plptools_1.0.4.orig.tar.gz
 ab6450f3a94425c9c6aed98cf75e04ac 24835 otherosfs optional 
plptools_1.0.4-1.diff.gz
 e747c17939aa00d193c5d2a76137b1c0 218532 otherosfs optional 
plptools_1.0.4-1_i386.deb
 3c79134fdbbbeb6f095da0b3cb42ddad 236340 devel optional 
plptools-dev_1.0.4-1_i386.deb

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

iQCVAwUBSIpZj50KIkah3rc9AQLu4AQAxJga1G4/9hncecr7gBf6tnJVJVpZ+lgz
UB0X1Cvbh9UKNmdoBlHZL5tgJOeA7JjPxhEMPUJ2p2oCZ2b3N5vghAXm56XIUP6f
68yxmishReAGzQJg2C1udSVhc6u52RweVg7Vubx/dvhJlITQzKtgngkCIAyCbi+m
am7xZn7ny3E=
=JWPa
-END PGP SIGNATURE-


Accepted:
plptools-dev_1.0.4-1_i386.deb
  to pool/main/p/plptools/plptools-dev_1.0.4-1_i386.deb
plptools_1.0.4-1.diff.gz
  to pool/main/p/plptools/plptools_1.0.4-1.diff.gz
plptools_1.0.4-1.dsc
  to pool/main/p/plptools/plptools_1.0.4-1.dsc
plptools_1.0.4-1_i386.deb
  to pool/main/p/plptools/plptools_1.0.4-1_i386.deb
plptools_1.0.4.orig.tar.gz
  to pool/main/p/plptools/plptools_1.0.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.18-2 (source i386)

2008-03-05 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 01 Mar 2008 19:11:45 +
Source: plptools
Binary: plptools libplpc2a plptools-dev plptools-kde kpsion klipsi
Architecture: source i386
Version: 0.18-2
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 417483 464747 468890
Changes: 
 plptools (0.18-2) unstable; urgency=low
 .
   * Remove build-depends on libqt3-compat-headers (closes: #464747)
   * Include cstdlib in lib/bufferstore.cc to fix FTBFS with gcc 4.3
   * Include csdtdlib and cstring in most sources
   * Test build with gcc-snapshot, and rebuild with gcc (closes: #417483)
   * Add LSB formatted dependency information into init.d (closes: #468890)
Files: 
 5e1be9c27d32f33ac6718c268002382a 873 otherosfs optional plptools_0.18-2.dsc
 6b8bc0dd7254c8a4ef8c0df45a538046 50591 otherosfs optional 
plptools_0.18-2.diff.gz
 496d7cc95fe3b465dcd97454b51b7f44 223394 otherosfs optional 
plptools_0.18-2_i386.deb
 2a2abbdb1685d92a6dc9324a9b2b35da 92496 libs optional libplpc2a_0.18-2_i386.deb
 c2caf91fbf8d75657c9c3c3e5c2bc1fa 277222 devel optional 
plptools-dev_0.18-2_i386.deb
 1ee6e4176d5127a349f39c1165b9c5f1 125948 otherosfs optional 
plptools-kde_0.18-2_i386.deb
 abf5dcba246314670c0f5631f354884a 318486 otherosfs optional 
kpsion_0.18-2_i386.deb
 11f4c0e5e4065cedc161be79a43ef3e3 40452 otherosfs optional 
klipsi_0.18-2_i386.deb

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

iQCVAwUBR88Qc50KIkah3rc9AQJ3KQP+KxdMiKeDKjFtf8Y92aTnzcHjmGb8tHwC
e8mIQ3flRBbY12jm1ZY4TPNZpu+Y+LL0bR1WSkTYQg9r5hgWrxNrjK8mn76qHKZx
ib6DwC8EsbqPVRUb7B0lc8X63ZakwjPunyVelpvXaFqphsZ0zpC/b6yQG+xg8giO
8CZ41jLVkiA=
=dJ0C
-END PGP SIGNATURE-


Accepted:
klipsi_0.18-2_i386.deb
  to pool/main/p/plptools/klipsi_0.18-2_i386.deb
kpsion_0.18-2_i386.deb
  to pool/main/p/plptools/kpsion_0.18-2_i386.deb
libplpc2a_0.18-2_i386.deb
  to pool/main/p/plptools/libplpc2a_0.18-2_i386.deb
plptools-dev_0.18-2_i386.deb
  to pool/main/p/plptools/plptools-dev_0.18-2_i386.deb
plptools-kde_0.18-2_i386.deb
  to pool/main/p/plptools/plptools-kde_0.18-2_i386.deb
plptools_0.18-2.diff.gz
  to pool/main/p/plptools/plptools_0.18-2.diff.gz
plptools_0.18-2.dsc
  to pool/main/p/plptools/plptools_0.18-2.dsc
plptools_0.18-2_i386.deb
  to pool/main/p/plptools/plptools_0.18-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.18-1 (source i386)

2008-02-04 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  2 Feb 2008 15:13:49 +
Source: plptools
Binary: plptools libplpc2a plptools-dev plptools-kde kpsion klipsi
Architecture: source i386
Version: 0.18-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access EPOC device (Psion PDA) over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 230172 365958 390593 412381 414358 415033 417483 420083 423051
Changes: 
 plptools (0.18-1) unstable; urgency=low
 .
   * New upstream version (closes: #390593, #230172)
   * Includes cstdlib to fix FTBFS with gcc 4.3 (closes: #417483)
   * Include German debconf translation (closes: #412381)
   * Include Spanish debconf translation (closes: #414358, #415033)
   * Include Portuguese debconf translation (closes: #420083)
   * Include Dutch debconf translation (closes: #423051)
   * Update the description to reference EPOC devices and correct the
  english (closes: #365958)
   * Add dh_icons to rules - rebuild Freedesktop icon cache if required.
   * Change menu section to Applications/Mobile Devices
Files: 
 181fc49cd6b50e82e0a21b6808063b51 897 otherosfs optional plptools_0.18-1.dsc
 a2a540c54611912436cbc58bb029155f 1316850 otherosfs optional 
plptools_0.18.orig.tar.gz
 f551584e5591b2b8513f380d97bdf90c 115912 otherosfs optional 
plptools_0.18-1.diff.gz
 0bb95030658674242a412aeb2b41e5bf 222544 otherosfs optional 
plptools_0.18-1_i386.deb
 528b39d7076b254ee9c6e5c2de0bf6f7 92762 libs optional libplpc2a_0.18-1_i386.deb
 09a637fe9178826eb3e1a0ea16c1778e 276864 devel optional 
plptools-dev_0.18-1_i386.deb
 364f636102ce721999b10299031a6aaa 126606 otherosfs optional 
plptools-kde_0.18-1_i386.deb
 a74ce6dea035dce925faa1e9dda3fa57 318012 otherosfs optional 
kpsion_0.18-1_i386.deb
 e6e5db52e18d2c63c245cd72fe0a2e45 40258 otherosfs optional 
klipsi_0.18-1_i386.deb

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

iQCVAwUBR6S++p0KIkah3rc9AQKIVAQAikMVaOz5XfDsrqhHNinN3OeYrp8+W1fT
jTcQ0lvjsEC/nRfVB+7uviMTGdvv4S7mQ0EJVVBaK5w6oEnqjEAKBUqsBd9JDDHg
mfXdvLl1wCy+tVjguQyvHDAoeoPdi/zKqxXRheFZc/DHk1elJb/PcClSQjMYrxoO
lFwqEYULoxw=
=xRo6
-END PGP SIGNATURE-


Accepted:
klipsi_0.18-1_i386.deb
  to pool/main/p/plptools/klipsi_0.18-1_i386.deb
kpsion_0.18-1_i386.deb
  to pool/main/p/plptools/kpsion_0.18-1_i386.deb
libplpc2a_0.18-1_i386.deb
  to pool/main/p/plptools/libplpc2a_0.18-1_i386.deb
plptools-dev_0.18-1_i386.deb
  to pool/main/p/plptools/plptools-dev_0.18-1_i386.deb
plptools-kde_0.18-1_i386.deb
  to pool/main/p/plptools/plptools-kde_0.18-1_i386.deb
plptools_0.18-1.diff.gz
  to pool/main/p/plptools/plptools_0.18-1.diff.gz
plptools_0.18-1.dsc
  to pool/main/p/plptools/plptools_0.18-1.dsc
plptools_0.18-1_i386.deb
  to pool/main/p/plptools/plptools_0.18-1_i386.deb
plptools_0.18.orig.tar.gz
  to pool/main/p/plptools/plptools_0.18.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.15-2 (source i386)

2007-01-17 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 16 Jan 2007 22:16:08 +
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools libplpc2a
Architecture: source i386
Version: 0.15-2
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 347365 378208 386834 386841
Changes: 
 plptools (0.15-2) unstable; urgency=low
 .
   * Acknowledge NMUs
   * Add --wildcards switch to tar in plpbackup (closes: #386834, #378208)
  thanks to Reuben Thomas for the patch.
   * Stop plpnfsd more gracefully in /etc/init.d/plptools (Closes: #386841)
   * Fix problem in plptools-kde prerm and postinst (Closes: #347365)
Files: 
 433e1348f37c2915f67b6e6b5a00e539 896 otherosfs optional plptools_0.15-2.dsc
 05e547662b616e08a0a6c94492083569 43956 otherosfs optional 
plptools_0.15-2.diff.gz
 6274a7f4ddf67dc87a6ebb4d3f841a11 223166 otherosfs optional 
plptools_0.15-2_i386.deb
 90ca8aef304ac37584deca7227129e98 89058 libs optional libplpc2a_0.15-2_i386.deb
 d721f93a7f17874623f77cf71e13a1c1 271144 devel optional 
plptools-dev_0.15-2_i386.deb
 996fda39f07dec6cbbf07bdbb6503499 125990 otherosfs optional 
plptools-kde_0.15-2_i386.deb
 995ce420c24248ae873038c0663cc79b 319976 otherosfs optional 
kpsion_0.15-2_i386.deb
 095b5f713441357a2dd2132af177f20a 40414 otherosfs optional 
klipsi_0.15-2_i386.deb

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

iQCVAwUBRa3R950KIkah3rc9AQKzmQP9HHjDyXT0c9wObJKO4QwFUdzbwPrNj39j
5oWMBNUQq3Uz/BOofOWnDwVkvVaCu/nCiu1k3C2EsDZDtimuYwrYFW9jLr7mAtmV
YsJWs7tYd7COveq+7IAZPfwRMgpkKzMGo5ZjBYu+iaB0NqS2DlHwyj7Ht2vigWo8
pm09V2CJdM0=
=g+jC
-END PGP SIGNATURE-


Accepted:
klipsi_0.15-2_i386.deb
  to pool/main/p/plptools/klipsi_0.15-2_i386.deb
kpsion_0.15-2_i386.deb
  to pool/main/p/plptools/kpsion_0.15-2_i386.deb
libplpc2a_0.15-2_i386.deb
  to pool/main/p/plptools/libplpc2a_0.15-2_i386.deb
plptools-dev_0.15-2_i386.deb
  to pool/main/p/plptools/plptools-dev_0.15-2_i386.deb
plptools-kde_0.15-2_i386.deb
  to pool/main/p/plptools/plptools-kde_0.15-2_i386.deb
plptools_0.15-2.diff.gz
  to pool/main/p/plptools/plptools_0.15-2.diff.gz
plptools_0.15-2.dsc
  to pool/main/p/plptools/plptools_0.15-2.dsc
plptools_0.15-2_i386.deb
  to pool/main/p/plptools/plptools_0.15-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.15-1 (source i386)

2006-08-20 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 07:22:41 +0100
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools libplpc2a
Architecture: source i386
Version: 0.15-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 341822 365031 371044
Changes: 
 plptools (0.15-1) unstable; urgency=low
 .
   * New upstream release (Closes: #371044)
   * Build with --with-serial=/dev/ttyS0 (Closes: #341822)
   * libplpc2a Replaces plptools =0.14-4 (Closes: #365031)
Files: 
 4ce101cb685bb262eb28c484571574a5 896 otherosfs optional plptools_0.15-1.dsc
 0fc1bf07e93620898a501e54f965b8dd 1277274 otherosfs optional 
plptools_0.15.orig.tar.gz
 9dee6e766a674cfb8da53272dd3aec65 48526 otherosfs optional 
plptools_0.15-1.diff.gz
 2fb488fe84d8a9d0e88d8dd4b3131ff6 221280 otherosfs optional 
plptools_0.15-1_i386.deb
 3ecc3e4963318f057e78db04c3761073 85430 libs optional libplpc2a_0.15-1_i386.deb
 7c09a99b097e0cf2385490916e765d74 269950 devel optional 
plptools-dev_0.15-1_i386.deb
 39c64b1a290838aa0129a5c16436a883 125148 otherosfs optional 
plptools-kde_0.15-1_i386.deb
 3a65d2855da12c93d00ea8118e94d74b 319188 otherosfs optional 
kpsion_0.15-1_i386.deb
 4a7677597ad4d94a670181b73afa9201 39936 otherosfs optional 
klipsi_0.15-1_i386.deb

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

iQCVAwUBROgRv50KIkah3rc9AQKHPgQAmQiFGecAVMfsK52yCFByZkPm8atVEfsO
X8lwMOhAvsjhBsqLYQ11f7YN3hcsEOLfppZMlq4jGlE1eZYni8sBB3TahHwENj2a
4VPXQ/SJHxwOtucR96W7253O0ngO5CeeMzstE4oijt8r2WZaV91lKXdPlVHU78SA
WMMJPglpYWw=
=Swov
-END PGP SIGNATURE-


Accepted:
klipsi_0.15-1_i386.deb
  to pool/main/p/plptools/klipsi_0.15-1_i386.deb
kpsion_0.15-1_i386.deb
  to pool/main/p/plptools/kpsion_0.15-1_i386.deb
libplpc2a_0.15-1_i386.deb
  to pool/main/p/plptools/libplpc2a_0.15-1_i386.deb
plptools-dev_0.15-1_i386.deb
  to pool/main/p/plptools/plptools-dev_0.15-1_i386.deb
plptools-kde_0.15-1_i386.deb
  to pool/main/p/plptools/plptools-kde_0.15-1_i386.deb
plptools_0.15-1.diff.gz
  to pool/main/p/plptools/plptools_0.15-1.diff.gz
plptools_0.15-1.dsc
  to pool/main/p/plptools/plptools_0.15-1.dsc
plptools_0.15-1_i386.deb
  to pool/main/p/plptools/plptools_0.15-1_i386.deb
plptools_0.15.orig.tar.gz
  to pool/main/p/plptools/plptools_0.15.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.14-4 (source i386)

2006-04-24 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun,  9 Apr 2006 15:21:24 +0100
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools libplpc2a
Architecture: source i386
Version: 0.14-4
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 339251 341166 351350
Changes: 
 plptools (0.14-4) unstable; urgency=low
 .
   * Split libplp into its own library package (Closes: #339251)
   * Suggest portmap for plptools as plpnfsd needs it, but plpftp does not 
(Closes: #341166)
   * Add Swedish debconf template (Closes: #351350)
Files: 
 5b5d9f68bd434f818ad4513f06bfb6e4 896 otherosfs optional plptools_0.14-4.dsc
 596614c869ce955ba5d3b4eaf7e0fb50 46053 otherosfs optional 
plptools_0.14-4.diff.gz
 60b9bc258d60827c3625d8340466ccee 219646 otherosfs optional 
plptools_0.14-4_i386.deb
 26eb30c5fe522ecb1ea3c5bb5e007ec7 85590 libs optional libplpc2a_0.14-4_i386.deb
 f62c6fb166afbb20fea8e5f069bf5002 270466 devel optional 
plptools-dev_0.14-4_i386.deb
 90a7a2ee0821955b6a7b1af4d2016d17 122446 otherosfs optional 
plptools-kde_0.14-4_i386.deb
 12ac85fa541c2d7ff8f2c9f8dedc4bb7 318534 otherosfs optional 
kpsion_0.14-4_i386.deb
 f2905b6eafef3cb94120de373574cbd9 39594 otherosfs optional 
klipsi_0.14-4_i386.deb

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

iQCVAwUBRDkjXJ0KIkah3rc9AQLEgwP7BLvSXvMIrfccbcClst9xp4dXY8pX4c6h
3pvlyqoRKEew5hvb5Nz7EWgzWr5RcuVtE3ENhuiG8yGmR1w+F46ePPFWoXjtBv0+
8rTZ9o6TrsROuEEcIHRZjLgmct8t7YbA96WthEno9Se0YtywRZ6YU7Igz4qvF7KJ
rAZCefsr66c=
=kkzP
-END PGP SIGNATURE-


Accepted:
klipsi_0.14-4_i386.deb
  to pool/main/p/plptools/klipsi_0.14-4_i386.deb
kpsion_0.14-4_i386.deb
  to pool/main/p/plptools/kpsion_0.14-4_i386.deb
libplpc2a_0.14-4_i386.deb
  to pool/main/p/plptools/libplpc2a_0.14-4_i386.deb
plptools-dev_0.14-4_i386.deb
  to pool/main/p/plptools/plptools-dev_0.14-4_i386.deb
plptools-kde_0.14-4_i386.deb
  to pool/main/p/plptools/plptools-kde_0.14-4_i386.deb
plptools_0.14-4.diff.gz
  to pool/main/p/plptools/plptools_0.14-4.diff.gz
plptools_0.14-4.dsc
  to pool/main/p/plptools/plptools_0.14-4.dsc
plptools_0.14-4_i386.deb
  to pool/main/p/plptools/plptools_0.14-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.14-3 (source i386)

2005-12-27 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 27 Dec 2005 17:34:49 +
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools
Architecture: source i386
Version: 0.14-3
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 332069 339251
Changes: 
 plptools (0.14-3) unstable; urgency=low
 .
   * Rebuild C++ ABI transition (Closes: #339251) - note library is internal to 
plptools suite
   * Allow dh_installdebconf to set up correct debconf dependancy (Closes: 
#332069)
Files: 
 28eb502c2f9e22474d7efd14f5ec1914 889 otherosfs optional plptools_0.14-3.dsc
 1ad2085cd43a793e45cdad0c284bcbf8 44600 otherosfs optional 
plptools_0.14-3.diff.gz
 2aa7b497fc6d4ddd4aecc76f44cdff0a 300112 otherosfs optional 
plptools_0.14-3_i386.deb
 100da1e845b1ec0bca60c4b8163bc5b8 272982 devel optional 
plptools-dev_0.14-3_i386.deb
 cbfcfbf917192b217c2dc740600b2f31 121368 otherosfs optional 
plptools-kde_0.14-3_i386.deb
 1124fe82f60a3ae1e82120e57708e6ab 315198 otherosfs optional 
kpsion_0.14-3_i386.deb
 5d18d5772c8880c44e6d249868ee2356 39232 otherosfs optional 
klipsi_0.14-3_i386.deb

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

iQCVAwUBQ7GD950KIkah3rc9AQKBtQP/QZV7U4XQM3LEpgs57SJscz282wO9Rftm
DR+xZ0Wap7tAyaK0uvAfJywrUrpK2/cTfTzTL7nl5d+tPlBgB41985LpDlAGd193
/oRBRwG5xjmrNMPgiapk5dE8rJ0pPj8DHh1GadpaKuVQTbrlrvmOunkMEgBnbO0k
xSU5yH91k20=
=loqf
-END PGP SIGNATURE-


Accepted:
klipsi_0.14-3_i386.deb
  to pool/main/p/plptools/klipsi_0.14-3_i386.deb
kpsion_0.14-3_i386.deb
  to pool/main/p/plptools/kpsion_0.14-3_i386.deb
plptools-dev_0.14-3_i386.deb
  to pool/main/p/plptools/plptools-dev_0.14-3_i386.deb
plptools-kde_0.14-3_i386.deb
  to pool/main/p/plptools/plptools-kde_0.14-3_i386.deb
plptools_0.14-3.diff.gz
  to pool/main/p/plptools/plptools_0.14-3.diff.gz
plptools_0.14-3.dsc
  to pool/main/p/plptools/plptools_0.14-3.dsc
plptools_0.14-3_i386.deb
  to pool/main/p/plptools/plptools_0.14-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.14-2 (source i386)

2005-11-12 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 12 Nov 2005 14:24:48 +
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools
Architecture: source i386
Version: 0.14-2
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 251601 313940 316870 318434 330034 338133
Changes: 
 plptools (0.14-2) unstable; urgency=low
 .
   * Fix build on amd64, patch from Andreas Jochens (Closes: #330034)
   * Fix typos in debconf question (Closes: #251601)
   * Mark plptools templates strings as translatable (Closes: #338133)
   * Incorporate Czech and Vietnamese debconf templates (Closes: 
#316870,#318434)
   * Correct some spelling errors in de.po, patch from Jens Seidel (Closes: 
#313940)
Files: 
 e9d5e24bcd28650d2e19caa0e29d2acc 889 otherosfs optional plptools_0.14-2.dsc
 47bb89d5ddc679d9c4e2a45772c25324 44506 otherosfs optional 
plptools_0.14-2.diff.gz
 724fafb6d33a91e5d7dee0a7d4c6bef2 312048 otherosfs optional 
plptools_0.14-2_i386.deb
 ad96c1b697e9b7e61bc68a6809b95ddb 289658 devel optional 
plptools-dev_0.14-2_i386.deb
 686a9eb0c2f26b8b644b79094c363852 123740 otherosfs optional 
plptools-kde_0.14-2_i386.deb
 50d158d1c17e4a42d678557400d04845 318114 otherosfs optional 
kpsion_0.14-2_i386.deb
 14bd352e09e56c07baa071431f35ccee 39712 otherosfs optional 
klipsi_0.14-2_i386.deb

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

iQCVAwUBQ3YL4p0KIkah3rc9AQL/lQQAsKvRatg750d8N+3Wo+Wx+qWb7HZ2e3Km
7VOlA1hoB1lFaj+r46pN6+ZBqA8PKMxOS9PvyYnE7gWxrZA5wCzo6srgqpN+6oG5
0bk0076JDoN6onQ3iXP5FDXHpqhvXU3nKBef4kN8y9+Xt/0dIB+xvAT9yXa+ZrEH
5YxgE3TzyZg=
=tlfF
-END PGP SIGNATURE-


Accepted:
klipsi_0.14-2_i386.deb
  to pool/main/p/plptools/klipsi_0.14-2_i386.deb
kpsion_0.14-2_i386.deb
  to pool/main/p/plptools/kpsion_0.14-2_i386.deb
plptools-dev_0.14-2_i386.deb
  to pool/main/p/plptools/plptools-dev_0.14-2_i386.deb
plptools-kde_0.14-2_i386.deb
  to pool/main/p/plptools/plptools-kde_0.14-2_i386.deb
plptools_0.14-2.diff.gz
  to pool/main/p/plptools/plptools_0.14-2.diff.gz
plptools_0.14-2.dsc
  to pool/main/p/plptools/plptools_0.14-2.dsc
plptools_0.14-2_i386.deb
  to pool/main/p/plptools/plptools_0.14-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taglog 0.2.0-1 (source all)

2005-09-28 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 28 Sep 2005 20:10:16 +0100
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.2.0-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Closes: 324375
Changes: 
 taglog (0.2.0-1) unstable; urgency=low
 .
   * New upstream version - Closes: #324375
Files: 
 103c414d3d457329f01d63f2a03c9d7e 703 utils optional taglog_0.2.0-1.dsc
 5dd8eff261f64a4b236cdb3a49b049c5 279122 utils optional taglog_0.2.0.orig.tar.gz
 20d5b3ac07d1c1dba0894482cf1d1d9b 3266 utils optional taglog_0.2.0-1.diff.gz
 e718a8d3bddfbc61123b6660f474c5b8 271974 utils optional taglog_0.2.0-1_all.deb

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

iQCVAwUBQzsBBp0KIkah3rc9AQLqzwQAip3D4y1osVbpfMswrDCzR3XPs6iX/QPA
KbxotlLkUcCr73q0RPPz+iubagfZt/iKFCtfBK4e0nTSZNmKNbM+TWALi1F8FJyz
LhOr2gSJRo6qHrhDuCR1CMv2Bd+g4U9HR9536O4Kcdcjbw/4m5aD+QG49ihyy5Nk
bu9/gM8+B34=
=kfkT
-END PGP SIGNATURE-


Accepted:
taglog_0.2.0-1.diff.gz
  to pool/main/t/taglog/taglog_0.2.0-1.diff.gz
taglog_0.2.0-1.dsc
  to pool/main/t/taglog/taglog_0.2.0-1.dsc
taglog_0.2.0-1_all.deb
  to pool/main/t/taglog/taglog_0.2.0-1_all.deb
taglog_0.2.0.orig.tar.gz
  to pool/main/t/taglog/taglog_0.2.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.14-1 (source i386)

2005-09-24 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 18 Sep 2005 18:33:25 +0100
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools
Architecture: source i386
Version: 0.14-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 268538 303721 304950 325483 326308
Changes: 
 plptools (0.14-1) unstable; urgency=low
 .
   * New Upstream release (Closes: #325483,#304950)
   * Use libreadline5 (Closes: #326308)
   * Add po-debconf to Build-Depends
   * Add plptools-kde, kpsion and klipsi back into control file
   * Correct spelling in plptools-kde control section (Closes: #268538)
   * New upstream contains fixes to enable gcc 4.0 compile (Closes: #303721)
Files: 
 498509d6c6b8733f966012f61cc67457 889 otherosfs optional plptools_0.14-1.dsc
 2b830bcdaee908397b045affdbd51acb 1246344 otherosfs optional 
plptools_0.14.orig.tar.gz
 b50bcac996ad3fccfd08068c4c0385e6 39443 otherosfs optional 
plptools_0.14-1.diff.gz
 ba4f94dbceab2427dc6f1fccabe978a1 313198 otherosfs optional 
plptools_0.14-1_i386.deb
 d46b6ccfc3bbbeb360b7f945cf6b01d8 291264 devel optional 
plptools-dev_0.14-1_i386.deb
 9ff08a21bcfedfbe5ac10f709fb2c02a 126588 otherosfs optional 
plptools-kde_0.14-1_i386.deb
 926cd44485b30c31f3bd00134f1df275 327184 otherosfs optional 
kpsion_0.14-1_i386.deb
 39e41dae71fc4629adb1b4599117cdd6 39832 otherosfs optional 
klipsi_0.14-1_i386.deb

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

iQCVAwUBQy2zp50KIkah3rc9AQLV1wP9EWkh6t+rEftxlw7wJhvFquqqFwHPZhLT
Sjg7CfyYf45jtomjZaJ518VKTC07Ga1d718NwGDAbtNUDcH5FOFz08N0R1FzNixw
KF17lIz+p6u+iABOy8jaINH+EtMDtjeqtQyse2hxRmJTkQCSUAVAclDDSlm5Rud9
h75cdGyg/+k=
=j0cI
-END PGP SIGNATURE-


Accepted:
klipsi_0.14-1_i386.deb
  to pool/main/p/plptools/klipsi_0.14-1_i386.deb
kpsion_0.14-1_i386.deb
  to pool/main/p/plptools/kpsion_0.14-1_i386.deb
plptools-dev_0.14-1_i386.deb
  to pool/main/p/plptools/plptools-dev_0.14-1_i386.deb
plptools-kde_0.14-1_i386.deb
  to pool/main/p/plptools/plptools-kde_0.14-1_i386.deb
plptools_0.14-1.diff.gz
  to pool/main/p/plptools/plptools_0.14-1.diff.gz
plptools_0.14-1.dsc
  to pool/main/p/plptools/plptools_0.14-1.dsc
plptools_0.14-1_i386.deb
  to pool/main/p/plptools/plptools_0.14-1_i386.deb
plptools_0.14.orig.tar.gz
  to pool/main/p/plptools/plptools_0.14.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted smtpd 2.0-8 (i386 source)

2004-12-06 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Mon,  6 Dec 2004 21:23:46 +
Source: smtpd
Binary: smtpd
Architecture: source i386
Version: 2.0-8
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 smtpd  - Mail proxy for firewalls with anti-spam and anti-relay features
Closes: 283028
Changes: 
 smtpd (2.0-8) unstable; urgency=low
 .
   * Added dependency to netbase, so it can use update-inetd on postinst 
(Closes: #283028)
   * Added debian/compat, level 4
   * Changed dh_installmanpages to dh_installman in rules
   * Above changes thanks to Rudy Godoy
   * Test for update-inetd existing before running it in postinst (future 
proofing for
  a time when the package could be installed without an inetd)
Files: 
 e7fa5637c4d1fb8eef2ce60ed9e8a9dc 661 mail extra smtpd_2.0-8.dsc
 da24768c7ee84c8cd9a6099b88378c8d 19200 mail extra smtpd_2.0-8.diff.gz
 73ba80865d845f95b9cf69478449a53a 50918 mail extra smtpd_2.0-8_i386.deb

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

iQCVAwUBQbTYRp0KIkah3rc9AQHjYQQAyxT/+u/HrpeJPdJ4Fo1Ekhqfpn5BsIY6
388a3CdqmnoMq1BE8jqCRXdYCbRIpk2Xwl8ehqqnop5epljstrMZK0cJUnRegn46
fBV/kbFlroM2RjOW43Eh/HYqEPRVzYf9uc9BQCqUQFL5nfoEkd94kOCacm54RdkO
C+ZAZJLeY+Y=
=QAGu
-END PGP SIGNATURE-


Accepted:
smtpd_2.0-8.diff.gz
  to pool/main/s/smtpd/smtpd_2.0-8.diff.gz
smtpd_2.0-8.dsc
  to pool/main/s/smtpd/smtpd_2.0-8.dsc
smtpd_2.0-8_i386.deb
  to pool/main/s/smtpd/smtpd_2.0-8_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: ..d-u support sponsorships, was: Problem with ppp keeping link up

2004-10-13 Thread John Lines
Another possibility would be distribution based lists - e.g. debian-woody, 
debian-sarge  - possibly debian-sid.

Users of a specific distribution can use that list, without having to be asked 
'which version are you running'. It will tend to automatically group the more 
advanced questions (or the 'Does this work at all?') generally asked by the 
people running sid or sarge from the ones asked by people who are running 
woody - which tend to be more of the nature of 'How do I use some specific 
feature'

-- 
John Lines http://www.paladin.demon.co.uk/john.lines.html




Re: Updating scanners and filters in Debian stable (3.1)

2004-10-05 Thread John Lines

 
  clamav can be as stable as a rock but be completely useless... when
  two months after Sarge's release, a new virus hits hard, and in
  order to detect it, clamav needs libfoo, which is not in Debian.
  What then? *Maybe* we could push a new clamav via security.d.o, but
  what about libfoo?

You could take the rather horrible step of building a static copy of libfoo 
into clamav. This would be rather messy, but would allow a single binary to 
be updated.

-- 
John Lines http://www.paladin.demon.co.uk/john.lines.html




Accepted taglog 0.1.52-1 (all source)

2004-09-23 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Thu, 23 Sep 2004 20:28:53 +0100
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.1.52-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Changes: 
 taglog (0.1.52-1) unstable; urgency=low
 .
   * New upstream version.
Files: 
 c5adb1f2f6778dc5892b79f7098fdb33 695 utils optional taglog_0.1.52-1.dsc
 439779942b061c2f4e7c37228b0570f9 269274 utils optional taglog_0.1.52.orig.tar.gz
 779091c9e4901a515e5af66744e97e20 2766 utils optional taglog_0.1.52-1.diff.gz
 0ffd7b2faf49ae30843e5b8efbb92d77 260646 utils optional taglog_0.1.52-1_all.deb

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

iQCVAwUBQVMn5Z0KIkah3rc9AQFDtwP+K8Qw7GKhEjkhDSXwk9U8zXQArylaHflj
aD0DVkGu5br/dyg5gTEGeKds18Yq8QkOyrhgmS4uXuwW5QapXmCr6dA5fEpXWfXI
z5MhE9ms8cj5JEUbhfkTNPnzdZoDlelFR/qMZm5N5qLLf5nv40F9PTakroVM1bIg
LIsI0TVEprA=
=9bd5
-END PGP SIGNATURE-


Accepted:
taglog_0.1.52-1.diff.gz
  to pool/main/t/taglog/taglog_0.1.52-1.diff.gz
taglog_0.1.52-1.dsc
  to pool/main/t/taglog/taglog_0.1.52-1.dsc
taglog_0.1.52-1_all.deb
  to pool/main/t/taglog/taglog_0.1.52-1_all.deb
taglog_0.1.52.orig.tar.gz
  to pool/main/t/taglog/taglog_0.1.52.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.12-5 (i386 source)

2004-09-12 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Sun, 12 Sep 2004 10:41:01 +0100
Source: plptools
Binary: plptools-dev plptools
Architecture: source i386
Version: 0.12-5
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
Closes: 246475
Changes: 
 plptools (0.12-5) unstable; urgency=low
 .
   * Only build plptools and plptools-dev, remove the KDE dependent targets
  as a workaround to get plptools into testing (Closes: #246475)
Files: 
 f15b70a4a5dc1a432011ae1daab00a63 836 otherosfs optional plptools_0.12-5.dsc
 5b0b62f3ee82b008476b2c940ad61c88 181792 otherosfs optional plptools_0.12-5.diff.gz
 77fbd133575a300aa335f9df2b8a244a 253662 otherosfs optional plptools_0.12-5_i386.deb
 6eb78912f61c650c3f14616e39de365d 194720 devel optional plptools-dev_0.12-5_i386.deb

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

iQCVAwUBQUQee50KIkah3rc9AQFG7AP5ATjXP84XeG/e5S5XRA+KL/K407MEDISK
2J6yWnMQRUE2Z7+AtjM1V+hskVUbhVtRy5Mphgus3AYf4pkmaTOT3wbyFY0OuHVg
TM2vp9MTqet5kGkl0pxFCGNXndu0j6A/JZXHdYoK4i8EXPu1vggvsqzN02JfdQ7b
XQYCKBnt94Y=
=qloO
-END PGP SIGNATURE-


Accepted:
plptools-dev_0.12-5_i386.deb
  to pool/main/p/plptools/plptools-dev_0.12-5_i386.deb
plptools_0.12-5.diff.gz
  to pool/main/p/plptools/plptools_0.12-5.diff.gz
plptools_0.12-5.dsc
  to pool/main/p/plptools/plptools_0.12-5.dsc
plptools_0.12-5_i386.deb
  to pool/main/p/plptools/plptools_0.12-5_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted smtpd 2.0-7 (i386 source)

2004-09-01 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Tue, 31 Aug 2004 18:27:19 +0100
Source: smtpd
Binary: smtpd
Architecture: source i386
Version: 2.0-7
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 smtpd  - Mail proxy for firewalls with anti-spam and anti-relay features
Closes: 253353
Changes: 
 smtpd (2.0-7) unstable; urgency=low
 .
   * New script smtpd-setup-chroot creates the libraries in the chroot,
  finding the libraries it needs. Fix install problem on PPC (Closes: #253353)
Files: 
 194015a2fb3d7f43a1e7ba9c1597ed84 649 mail extra smtpd_2.0-7.dsc
 acf666acca9460ceffd6bcdbe89d52d4 18881 mail extra smtpd_2.0-7.diff.gz
 f0375d54a835c9259e5e5815ea93af4d 50494 mail extra smtpd_2.0-7_i386.deb

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

iQCVAwUBQTVmpp0KIkah3rc9AQGT8AP/RQUdDxLezswECQv7NIhnAAc2rybMuPnQ
4BuMV/CR7c0G8UT3SGOlTEsIs0TndAiiNcMgNoDxsI/Bp9oOcamQpCAaGxgW05N/
Y7Tnqi3orZVuDn5zamV8CIGVN9D2dLyYTIYn3tUL+XdE20vDwlkKp9LAa4yp3K5B
oB8C+/fR7FI=
=3FW4
-END PGP SIGNATURE-


Accepted:
smtpd_2.0-7.diff.gz
  to pool/main/s/smtpd/smtpd_2.0-7.diff.gz
smtpd_2.0-7.dsc
  to pool/main/s/smtpd/smtpd_2.0-7.dsc
smtpd_2.0-7_i386.deb
  to pool/main/s/smtpd/smtpd_2.0-7_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taglog 0.1.48-1 (all source)

2004-05-07 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Wed,  5 May 2004 22:09:26 +0100
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.1.48-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Closes: 236915
Changes: 
 taglog (0.1.48-1) unstable; urgency=low
 .
   * New upstream version, looks for help files in /usr/share/taglog and
  other fixes.
   * Closes: #236915: Talog does not start; incorrect path
Files: 
 ee2880c79c92cab47d3bac6f60d321fa 686 utils optional taglog_0.1.48-1.dsc
 9a8efa34be5a84720fabd0e96bbdcf8e 260913 utils optional taglog_0.1.48.orig.tar.gz
 ec724d466a6d1900b283590ffcb4bd74 2824 utils optional taglog_0.1.48-1.diff.gz
 0c3fe8ad5015e5f3c2ec999ccf3cb7d9 255392 utils optional taglog_0.1.48-1_all.deb

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

iQCVAwUBQJlfT50KIkah3rc9AQF/uQP+JqfkP0A7KbaU+yEZkexvyW4AonLTquf8
zrEjHpyzYNFLDcu3dP8pcZLm/+2NIbfvdfhQaomrdB5puIHMnTaAgpXo85T+uO1S
0V+2HVFkz1lGIHlEyvOl8K1FkXVnjLINZxqaYYDLEvYqP5Um99Y5l8On0EXEqAMB
thjTOAuRAw4=
=drdS
-END PGP SIGNATURE-


Accepted:
taglog_0.1.48-1.diff.gz
  to pool/main/t/taglog/taglog_0.1.48-1.diff.gz
taglog_0.1.48-1.dsc
  to pool/main/t/taglog/taglog_0.1.48-1.dsc
taglog_0.1.48-1_all.deb
  to pool/main/t/taglog/taglog_0.1.48-1_all.deb
taglog_0.1.48.orig.tar.gz
  to pool/main/t/taglog/taglog_0.1.48.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taglog 0.1.47-1 (all source)

2004-03-16 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Tue, 16 Mar 2004 08:47:04 +
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.1.47-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Closes: 236915
Changes: 
 taglog (0.1.47-1) unstable; urgency=low
 .
   * New upstream version Can save TimeBooking reports as CSV.
   * Closes: #236915: Talog does not start; incorrect path
Files: 
 c4a75e5d16cc08ac75176dfc5dda6cbb 620 utils optional taglog_0.1.47-1.dsc
 3d621cf32acdc6885eaa7312a75683ad 259663 utils optional taglog_0.1.47-1.tar.gz
 b30903658f322c1e31c2c179c090dcff 252946 utils optional taglog_0.1.47-1_all.deb

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

iQCVAwUBQFbAEZ0KIkah3rc9AQF5CwP/fMhd1APdVGpZemeqafRi3y3QtSlweSPN
lX+qS3V0r1ag9RGTICtczRoMr/hqnLPcatuFaEdgHTxC22X3LSavXBbEIfvoZX7s
42SlR06EI3GzcdgA4JPGN8hgYhyL/MYCUx0T0NBm3hGbGmc8zqDYhzdWxkDvzp4Q
I+iPOFLgeXA=
=Wgv8
-END PGP SIGNATURE-


Accepted:
taglog_0.1.47-1.dsc
  to pool/main/t/taglog/taglog_0.1.47-1.dsc
taglog_0.1.47-1.tar.gz
  to pool/main/t/taglog/taglog_0.1.47-1.tar.gz
taglog_0.1.47-1_all.deb
  to pool/main/t/taglog/taglog_0.1.47-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.12-3 (i386 source)

2004-01-11 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Sun, 11 Jan 2004 12:28:27 +
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools
Architecture: source i386
Version: 0.12-3
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 207100
Changes: 
 plptools (0.12-3) unstable; urgency=low
 .
   * Closes: #207100 fix libnewt dependencies.
Files: 
 87c1ea205b90fc4d1fce9625a9af926e 866 otherosfs optional plptools_0.12-3.dsc
 fd606483a3ef262b7213a213639c94db 128468 otherosfs optional plptools_0.12-3.diff.gz
 f4be1bc14a50aa8967e8385e7441bfaa 253766 otherosfs optional plptools_0.12-3_i386.deb
 5c82f4c30b4365d57f160e1e07e3fec8 194252 devel optional plptools-dev_0.12-3_i386.deb
 6f65cc1fb550f28b8beb2502ac2701d8 90628 otherosfs optional plptools-kde_0.12-3_i386.deb
 c90d076e032463ab57e3083608b1d732 279442 otherosfs optional kpsion_0.12-3_i386.deb
 937376afb4b44bcc71f07ef1938dbdcb 35936 otherosfs optional klipsi_0.12-3_i386.deb

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

iQCVAwUBQAHW3Z0KIkah3rc9AQFnpgP+MYs/j873ZpuqaUrAtTsjXS+egBCzQGSL
bvNbAcH0SWpZFYOnVNeeX1TFT5SOOfnVjzqtyx7wX3SjJIw3c5iXhuwTakU0NkmN
wX+XcRNVBEbMkWvReIFOYwq2V36fqEfP028YkIj8C8z0cM7xm1aGEp+xITwSIo6p
iCVy2tj6ao4=
=ZzxJ
-END PGP SIGNATURE-


Accepted:
klipsi_0.12-3_i386.deb
  to pool/main/p/plptools/klipsi_0.12-3_i386.deb
kpsion_0.12-3_i386.deb
  to pool/main/p/plptools/kpsion_0.12-3_i386.deb
plptools-dev_0.12-3_i386.deb
  to pool/main/p/plptools/plptools-dev_0.12-3_i386.deb
plptools-kde_0.12-3_i386.deb
  to pool/main/p/plptools/plptools-kde_0.12-3_i386.deb
plptools_0.12-3.diff.gz
  to pool/main/p/plptools/plptools_0.12-3.diff.gz
plptools_0.12-3.dsc
  to pool/main/p/plptools/plptools_0.12-3.dsc
plptools_0.12-3_i386.deb
  to pool/main/p/plptools/plptools_0.12-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted plptools 0.12-2 (i386 source)

2003-12-16 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Tue, 16 Dec 2003 12:00:40 +
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools
Architecture: source i386
Version: 0.12-2
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 191986 200062 208869 211268 217900 221004
Changes: 
 plptools (0.12-2) unstable; urgency=low
 .
   * Closes: #217900: FTBFS on ia64 - conflicting type declarations
   * Closes: #221004: config.sub/config.guess out of date
   libtoolize -c --force to regenerate these files
   * Closes: #191986: prerm script breaks if system has two kdebugrc
 files
   * Closes: #200062: Upgrade problems
   * Closes: #208869: Please switch to gettext-based debconf templates
   * Closes: #211268: French translation of gettext debconf template
Files: 
 4476fd855dd7e2c93184b3fbface2b6e 866 otherosfs optional plptools_0.12-2.dsc
 4f3c85d95152e8464aaf6f93c3213379 128310 otherosfs optional plptools_0.12-2.diff.gz
 3d3059412ea5864e59defb58075dbada 253712 otherosfs optional plptools_0.12-2_i386.deb
 42e6e592063871168e29f02b7114361f 194224 devel optional plptools-dev_0.12-2_i386.deb
 98d9aca5e12ddf94c8f4e613444db2cd 90578 otherosfs optional plptools-kde_0.12-2_i386.deb
 e7bfb756d811d96cdec3265d44c16f98 279398 otherosfs optional kpsion_0.12-2_i386.deb
 126956fbe08434ed56b216155cd70691 35914 otherosfs optional klipsi_0.12-2_i386.deb

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

iQCVAwUBP9746p0KIkah3rc9AQH3dQP9FrX8TwWWFfd3o+ptvBiMfyExXgvk8U8X
DAx5T6sGG72GNLF+wUXNfRfL9wJbcvVUnnpk5Z5StY+iTCpeVIgS6CyDofmDtG/3
7/hJLJrmFT3O2QN48PB+Yd3docsfdlTTG6AhU5x7eJrOEjQvNA9On6hIXAnyo4c3
OUUnomP6+jA=
=CrlR
-END PGP SIGNATURE-


Accepted:
klipsi_0.12-2_i386.deb
  to pool/main/p/plptools/klipsi_0.12-2_i386.deb
kpsion_0.12-2_i386.deb
  to pool/main/p/plptools/kpsion_0.12-2_i386.deb
plptools-dev_0.12-2_i386.deb
  to pool/main/p/plptools/plptools-dev_0.12-2_i386.deb
plptools-kde_0.12-2_i386.deb
  to pool/main/p/plptools/plptools-kde_0.12-2_i386.deb
plptools_0.12-2.diff.gz
  to pool/main/p/plptools/plptools_0.12-2.diff.gz
plptools_0.12-2.dsc
  to pool/main/p/plptools/plptools_0.12-2.dsc
plptools_0.12-2_i386.deb
  to pool/main/p/plptools/plptools_0.12-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted smtpd 2.0-6 (i386 source)

2003-12-15 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Mon, 15 Dec 2003 12:45:03 +
Source: smtpd
Binary: smtpd
Architecture: source i386
Version: 2.0-6
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 smtpd  - Mail proxy for firewalls with anti-spam and anti-relay features
Closes: 158340 168786 206365
Changes: 
 smtpd (2.0-6) unstable; urgency=low
 .
   * Do not fail in postinst if /etc/resolv.conf does not exist
   * Closes: #168786: missing libraries in /var/spool/smtpd chroot jail
 directory - in postinst copy libnss_files and libnss_dns into chroot
   * Closes: #206365: postinst should add smtpd to group MAIL in
 inetd.conf
   * Closes: #158340: return code patch applied.to smtpfwdd
Files: 
 0c2f3e8eb3058befb7f8f305b5647fba 649 mail extra smtpd_2.0-6.dsc
 c2c0c85796d1889d36ff18f0388a150d 18321 mail extra smtpd_2.0-6.diff.gz
 7eac231a82feaea72abb2e8ead7fc5e6 49764 mail extra smtpd_2.0-6_i386.deb

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

iQCVAwUBP92/RZ0KIkah3rc9AQEvoQQAxUMfiNkhoI7x1XVCycCJeznymOENq/i4
GSPZ2XW7glND4nDpOzlmTfo7TV02yb2ChBGBxXENunZIzZ4rzNtiGYBQjY7Fc919
H0fygYbBCAV978Mtk8LwCCsSD3ZikaqFEC+NbiLJSluLyWGk0xV498GwAoH75BxW
/iKOhqO9FjM=
=SP8E
-END PGP SIGNATURE-


Accepted:
smtpd_2.0-6.diff.gz
  to pool/main/s/smtpd/smtpd_2.0-6.diff.gz
smtpd_2.0-6.dsc
  to pool/main/s/smtpd/smtpd_2.0-6.dsc
smtpd_2.0-6_i386.deb
  to pool/main/s/smtpd/smtpd_2.0-6_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taglog 0.1.43-1 (all source)

2003-11-20 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Thu, 20 Nov 2003 13:33:44 +
Source: taglog
Binary: taglog
Architecture: source all
Version: 0.1.43-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 taglog - Personal time management system
Changes: 
 taglog (0.1.43-1) unstable; urgency=low
 .
   * New upstream - minor reporting improvements
Files: 
 6cec050f2b11bf28def5826c4c55dfda 620 utils optional taglog_0.1.43-1.dsc
 315f3b74a304616710a39e4b0c648335 257450 utils optional taglog_0.1.43-1.tar.gz
 97211ec3fb0cfdda5aa1109a0a64beb3 250912 utils optional taglog_0.1.43-1_all.deb

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

iQCVAwUBP7zEjJ0KIkah3rc9AQGSbgP/XjlAwbmYbmSb+UHg4Y5exm5ZVtfyp6YR
Vn+PADo0Nnj1DykvE19b3UbemV8TXr3Gwuwja9HX0Aduede/C6EozrqmRHMRG8Ce
gSN6/bFw1xpWvvi/cCvADxY2d0bK2B9ifoA6iZJcbPO3NzGPz3cvATmRmJ3HgwM5
GBSkpJDedaA=
=gKDb
-END PGP SIGNATURE-


Accepted:
taglog_0.1.43-1.dsc
  to pool/main/t/taglog/taglog_0.1.43-1.dsc
taglog_0.1.43-1.tar.gz
  to pool/main/t/taglog/taglog_0.1.43-1.tar.gz
taglog_0.1.43-1_all.deb
  to pool/main/t/taglog/taglog_0.1.43-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Pre-linux Windows program - was Re: bill gates Linux

2002-12-08 Thread John Lines
Reading the thread on installation from Windows - one thing which might help
new Linux users would be a program which they ran from Windows before they
started, which would record all the things Windows knows about their system
which will be required by a Linux installation.

This could include information on the hardware, such as graphics cards, and
some things related to the user, such as language settings and time zones.

These could be written to a floppy and used to supply the information which
Debian Installer will need (a bit like a RedHat Kickstart floppy)


John Lines




Re: postfix/postfix-tls vs. smtpd bug

2002-01-08 Thread John Lines

  I simply see no need to have them both installed at the same time.
  Make them conflict. (smtpd is intended to isolate sendmail on firewalls.
  Postfix does not need this since it already is modular...)
 
 valid point, but i wanted to use smtpd as an alternative transport to
 postfix to be able to do more custom content filtering. but that failed
 anyway, so i guess a conflict would be the best...
 

smtpd does not do content filtering, but it does offer incredibly good control
over which mail is accepted. It requires a 'real' MTA as a back end, and
integrates best with sendmail.

A rules file of allow and deny rules is read for each incoming message, and
the first rule to match on source IP, source envelope address and destination
envelope address will be triggered.

This gives it a performance hit compared to a normal MTA, but for people who
need it the flexibility makes up for it.

John Lines

p.s. hope to upload an update to smtpd which fixes the install this week.




Re: Packages should not Conflict on the basis of duplicate funct

1999-09-29 Thread John Lines
  Ok, let's bring this back to implementation.  How would you propose we 
  handle
  this?  Currently daemons install, set themselves up, and begin running.

 d) have something that keeps track of installed services, perhaps with
priorities akin to alternatives.  If there weren't an issue of
services being run either in inetd or standalone, this could
be accomplished with a souped-up update-inetd.

This debate has been making me wonder about a specific daemon control package.
The idea is that it would provide a file, or command, which would be checked
by the /etc/init.d of a package which is thinking of starting a daemon.

If the daemon control package is not installed then the init.d script should
just start the daemon as currently. If it is installed then the init.d
script will be told whether to start the daemon, to just start it on certain
interfaces or non default ports or ...
The actual package would be simple to write (probably just shell scripts), but
it would be best to have a comprehensive set of things which it should do
before starting to code.

Some of this seems similar to debconf, though I get the impression that
debconf is intended to be invoked at package installation time, rather than
at init runlevel changes. The daemon control package should certainly
integrate with debconf to determine the initial state for the daemons, though
this would probably be done by the packages themselves, i.e. they ask
should I be started by default and do a
daemoncontrol-set 'packagename' on
(or similar)

I would also like it to integrate with the PCMCIA schemes. For example I run
various daemons on my laptop when it is connected to the network at work,
and different ones when it is connected to the network at home, but usually
these are just wasting memory when it is not connected to a network at all.

I have another laptop which I use as a demonstration firewall, as well as it
being loaded up with network probing tools etc. I have tests in its init.d
scripts to check what mode it is in to decide whether to start or not.

Sometimes your laptop may sit behind a SOCKS firewall, and at other times not.


Note that Silicon Graphics IRIX has a scheme like this which allows daemons
to be installed but not enabled. I suspect in their case it is driven by
their desire to have a fancy graphical interface with a 'click here to enable
security hole' feature.

This scheme should provide a balance between the people who want things to
just install and run (because that should be its default behaviour) and those
who want to OK everything. Daemoncontrol would be a convenient place to put
a flag which says 'ask me (the user) before enabling any daemons'


John Lines




Re: y2k compliance - release goal for potato ???

1999-05-18 Thread John Lines

 Linux is almost completely y2k compliant BY DEFAULT.  Any y2k issues that
 haven't been fixed by now will get fixed in SLINK, not just potato.  We
 don't know of any that remain however.  If something binary only in
 non-free breaks, you are on your own unless someone else fixes it.
 

You don't have to do the publicity bit on -devel. I know that there are no
problems with the kernel, but year 2000 issues are subtle and crop up in
many unexpected places - just because the kernel is OK does not mean that
the whole distribution is OK. (and it is main (or even base) that I am
concerned about - not non-free)

Have a look at http://www.debian.org/y2k/   You will see that most of the
packages in the base system are marked as 'Unknown'. It would be better for
Debian if these were checked and marked as OK (or problems found and fixed).

I had a little look at adduser, which was OK, and base-files, which had a
subtle documentation problem (the GPL says you should write a license with
19yy as the date, though this is fixed in the LGPL), which is why it is
marked OK?

Most of the packages need someone who knows their inner workings, to look
through them and check them.

John Lines




y2k compliance - release goal for potato ???

1999-05-17 Thread John Lines
Should we make year 2000 compliance a goal for potato ?- i.e. everyone should
check their packages for year 2000 compliance, and have the Debian web page
updated to confirm this (I am sure there are many packages which are
compliant, but where the maintainer has just not got around to saying so)

John Lines

p.s. Anyone who is running Debian in a corporate environment is probably
being nagged by their management about year 2000 issues. (all our Windows
NT stuff is Year 2000 compliant - it must be because they keep releasing
updates to make it be ;-)




Re: Intent to package KerberosV

1999-05-09 Thread John Lines

 
 Meanwhile, I've identified the following additional packages which can 
 be Kerberized immediately via compile-time flags:
 
   IMAP (get your mail from the site you expected; prevent snooping)
   LPRNG (network print to the site you expected; prevent interceptions)
   POSTGRES (grant access to database via Kerberos tickets)
   
 AMANDA can be K4'd today, and the development version can be K5'd.

 I have heard that the NCSA httpd can be Kerberized, but I haven't
 looked at it in great detail.
 
 XFREE86, unfortunately, uses a slightly older Kerberos V API.


The original Umich LDAP can be Kerberised easily (K4 - I think) I know Kerberos
support is on the development list for OpenLDAP but I am not sure where it
stands.

Unfortunately all of these probably require a fork to a non-us maintainer
(except for the case where the primary maintainer is already non US.
This seems to be in unintentional side effect of US export policy, which is
actively forcing development of opensource crypto applications to be carried
out outside the US.

More and more key software systems are likely to have a cryptographic
component, and as their open source versions are generally developed by
international groups the main effect is to deprive the US developers of the
opportunity to participate in the cryptographic components.

John Lines

p.s. wnpp - please consider this a request to have a kerberised LDAP package
(if the WNPP list is allowed to even mention such things on a US server)




Re: dhcpcd should probably be in base and on the boot floppies

1998-10-10 Thread John Lines
 This just came up on the #Debian IRC channel: a growing number of
 folks have cable modems and wish to install Debian over them. However,
 as it stands, they cannot get on the net from the base floppies,
 because they require a DHCP client to get their IP.
 
 I believe this is adequate need to get dhcpcd moved into base,
 and onto the boot floppies.
 

Also in a corporate environment many people are running DHCP servers to
provide network information to Windows 95 systems. It would be great to be
able to let people try Linux without needing to know more about the details
of IP than that they should answer Yes to Does your network use DHCP ?

John Lines





Re: Conflicts between developers and policy

1998-04-29 Thread John Lines
Someone (I don't have the list archive handy here so I can't remember who)
said on the firewalls list recently that security policy (but I think it
also is valid for debian policy) should be regarded as a cache of good,
well thought out decisions.

Policy represents the collective wisdom of a lot of smart people who have
thought out some of the downstream consequences of doing particular things
and found that some ways of doing things are better than others. Thus
developers should follow policy for their own sakes, because it is likely
to work out better for them in the long run.

If a developer comes across a case where the policy is incorrect (leads to
consequences which are a Bad Thing) then they should not just ignore the
policy but try to explain their particular case and get the overall policy
updated for that case - thus ending up with a better policy and saving
someone else from having to go through the same process.



John Lines



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]