Re: Please block glj....@gmail.com from Debian lists [Re: UOC and Britsh Council lawsuit]

2024-04-23 Thread Jose Luis Tallon

On 22/4/24 21:29, Steve Langasek wrote:

On Mon, Apr 22, 2024 at 05:11:39PM +0200, José Luis González González wrote:

I sent 5 minutes ago an email to "Plaza de Castilla *courts*" setting


                    ^^^

BS. It just doesn't work like this.  A regular citizen can't communicate 
with a Court by email.


    You can't even interact with a case proceedings until you are a 
party to a particular lawsuit.



it crystal clear that it was a long time ago the lawsuit to Universitat
Oberta de Catalunya and British Council had to be solved.

"Kinda or not"


--
Parkinson's Law: Work expands to fill the time alloted to it.



Re: Let's make PostgreSQL multi-threaded

2023-06-08 Thread Jose Luis Tallon

On 8/6/23 15:56, Robert Haas wrote:

Yeah, I've had similar thoughts. I'm not exactly sure what the
advantages of such a refactoring might be, but the current structure
feels pretty limiting. It works OK because we don't do anything in the
postmaster other than fork a new backend, but I'm not sure if that's
the best strategy. It means, for example, that if there's a ton of new
connection requests, we're spawning a ton of new processes, which
means that you can put a lot of load on a PostgreSQL instance even if
you can't authenticate. Maybe we'd be better off with a pool of
processes accepting connections; if authentication fails, that
connection goes back into the pool and tries again.


    This. It's limited by connection I/O, hence a perfect use for 
threads (minimize per-connection overhead).


IMV, "session state" would be best stored/managed here. Would need a way 
to convey it efficiently, though.



If authentication
succeeds, either that process transitions to being a regular backend,
leaving the authentication pool, or perhaps hands off the connection
to a "real backend" at that point and loops around to accept() the
next request.


Nicely done by passing the FD around

But at this point, we'd just get a nice reimplementation of a threaded 
connection pool inside Postgres :\



Whether that's a good ideal in detail or not, the point remains that
having the postmaster handle this task is quite limiting. It forces us
to hand off the connection to a new process at the earliest possible
stage, so that the postmaster remains free to handle other duties.
Giving the responsibility to another process would let us make
decisions about where to perform the hand-off based on real
architectural thought rather than being forced to do a certain way
because nothing else will work.


At least "tcop" surely feels like belonging in a separate process 


    J.L.





Re: Let's make PostgreSQL multi-threaded

2023-06-08 Thread Jose Luis Tallon

On 7/6/23 23:37, Andres Freund wrote:

[snip]
I think we're starting to hit quite a few limits related to the process model,
particularly on bigger machines. The overhead of cross-process context
switches is inherently higher than switching between threads in the same
process - and my suspicion is that that overhead will continue to
increase. Once you have a significant number of connections we end up spending
a *lot* of time in TLB misses, and that's inherent to the process model,
because you can't share the TLB across processes.


IMHO, as one sysadmin who has previously played with Postgres on "quite 
large" machines, I'd propose what most would call a "hybrid model"


* Threads are a very valuable addition for the "frontend" of the server. 
Most would call this a built-in session-aware connection pooler :)


    Heikki's (and others') efforts towards separating connection state 
into discrete structs is clearly a prerequisite for this; 
Implementation-wise, just toss the connState into a TLS[thread-local 
storage] variable and many problems just vanish.


    Postgres wouldn't be the first to adopt this approach, either...

* For "heavyweight" queries, the scalability of "almost independent" 
processes w.r.t. NUMA is just _impossible to achieve_ (locality of 
reference!) with a pure threaded system. When CPU+mem-bound 
(bandwidth-wise), threads add nothing IMO.


Indeed a separate postmaster is very much needed in order to control the 
processes / guard overall integrity.



Hence, my humble suggestion is to consider a hybrid architecture which 
benefits from each model's strengths. I am quite convinced that 
transition would be much safer and simpler (I do share most of Tom and 
other's concerns...)


Other projects to draw inspiration from:

 * Postfix -- multi-process, postfix's master guards processes and 
performs privileged operations; unprivileged "subsystems". Interesting 
IPC solutions
 * Apache -- MPMs provide flexibility and support for e.g. non-threaded 
workloads (PHP is the most popular; cfr. "prefork" multi-process MPM)
 * NginX is actually multi-process (one per CPU) + event-based 
(multiplexing) ...
 * PowerDNS is internally threaded, but has a "guardian" process. Seems 
to be evolving to a more hybrid model.



I would suggest something along the lines of :

* postmaster -- process supervision and (potentially privileged) 
operations; process coordination (i.e descriptor passing); mostly as-is

* *frontend* -- connection/session handling; possibly even event-driven
* backends -- process heavyweight queries as independently as possible. 
Can span worker threads AND processes when needed
* *dispatcher* -- takes care of cached/lightweight queries (cached 
catalog / full snapshot visibility+processing)
* utility processes can be left "as is" mostly, except to be made 
multi-threaded for heavy-sync ones (e.g. vacuum workers, stat workers)


For fixed-size buffers, i.e. pages / chunks, I'd say mmaped (anonymous) 
shared memory isn't that bad... but haven't read the actual code in years.


For message queues / invalidation messages, i guess that shmem-based 
sync is really a nuisance. My understanding is that Linux-specific (i.e. 
eventfd) mechanisms aren't quite considered .. or are they?



The amount of duplicated code we have to deal with due to to the process model
is quite substantial. We have local memory, statically allocated shared memory
and dynamically allocated shared memory variants for some things. And that's
just going to continue.


Code duplication is indeed a problem... but I wouldn't call "different 
approaches/solution for very similar problems depending on 
context/requirement" a duplicate. I might well be wrong / lack detail, 
though... (again: haven't read PG's code for some years already).



Just my two cents.


Thanks,

    J.L.

--
Parkinson's Law: Work expands to fill the time alloted to it.


Re: Detecting File Damage & Inconsistencies

2020-11-11 Thread Jose Luis Tallon

On 11/11/20 21:56, Simon Riggs wrote:

[ŝnip]

REINDEX VERIFY
After the new index is created, but before we drop the old index:
Check whether the two indexes match:
* checks whether the previous index had pointers to row versions that
don't exist
* checks whether the heap has rows that were not in the old index
This approach piggybacks on existing operations. AccessShareLock is
held on both indexes before the old one is dropped.


FWIW, as long as it's optional (due to the added runtime), it'd be a 
welcome feature.


Maybe something along the lines of:

    REINDEX (verify yes) 



Other ideas are welcome.


I still have nightmares from an specific customer case w/ shared storage 
(using VxFS) among two postmaster instances ---supposedly could never be 
active concurrently, not completely sure that it didn't actually 
happen--- and the corruption that we found there. I seem to remember 
that they even had scripts to remove the locking when switching over and 
back :S


I don't think Postgres can do much about this, but maybe someone can 
come up with a suitable countermeasure.



Just my .02€

Thanks,

    / J.L.






Re: Internal key management system

2020-06-18 Thread Jose Luis Tallon

On 18/6/20 19:41, Cary Huang wrote:

Hi all

Having read through the discussion, I have some comments and 
suggestions that I would like to share.


I think it is still quite early to even talk about external key 
management system even if it is running on the same host as PG. This 
is most likely achieved as an extension that can provide communication 
to external key server and it would be a separate project/discussion. 
I think the focus now is to finalize on the internal KMS design, and 
we can discuss about how to migrate internally managed keys to the 
external when the time is right.


As long as there exists a clean interface, and the "default" (internal) 
backend is a provider of said functionality, it'll be fine.


Given that having different KMS within a single instance (e.g. per 
database) is quite unlikely, I suggest just exposing hook-like 
function-pointer variables and be done with it. Requiring a preloaded 
library for this purpose doesn't seem too restrictive ---at least at 
this stage--- and can be very easily evolved in the future --- 
super-simple API which receives a struct made of function pointers, plus 
another function to reset it to "internal defaults" and that's it.




Key management system is generally built to manage the life cycle of 
cryptographic keys, so our KMS in my opinion needs to be built with 
key life cycle in mind such as:


* Key generation
* key protection
* key storage
* key rotation
* key rewrap
* key disable/enable
* key destroy


Add the support functions for your suggested "key information" 
functionality, and that's a very rough first draft of the API ...


KMS should not perform the above life cycle management by itself 
automatically or hardcoded, instead it should expose some interfaces 
to the end user or even a backend process like TDE to trigger the above.
The only key KMS should manage by itself is the KEK, which is derived 
from cluster passphrase value. This is fine in my opinion. This KEK 
should exist only within KMS to perform key protection (by wrapping) 
and key storage (save as file).


Asking for the "cluster password" is something better left optional / 
made easily overrideable ... or we risk thousands of clusters suddenly 
not working after a reboot :S



Just my .02€


Thanks,

    J.L.




Re: Raw device on PostgreSQL

2020-05-01 Thread Jose Luis Tallon

On 30/4/20 6:22, Thomas Munro wrote:

On Thu, Apr 30, 2020 at 12:26 PM Tomas Vondra
 wrote:

Yeah, I think the question is what are the expected benefits of using
raw devices. It might be an interesting exercise / experiment, but my
understanding is that most of the benefits can be achieved by using file
systems but with direct I/O and async I/O, which would allow us to
continue reusing the existing filesystem code with much less disruption
to our code base.

Agreed.

[snip] That's probably the main work
required to make this work, and might be a valuable thing to have
independently of whether you stick it on a raw device, a big data
file, NV RAM
   ^^  THIS, with NV DIMMs / PMEM (persistent memory) possibly 
becoming a hot topic in the not-too-distant future

or some other kind of storage system -- but it's a really
difficult project.


Indeed But you might have already pointed out the *only* required 
feature for this to work: a "database" of relfilenode ---which is 
actually an int, or rather, a tuple (relfilenode,segment) where both 
components are 32-bit currently: that is, a 64bit "objectID" of sorts--- 
to "set of extents" ---yes, extents, not blocks: sequential I/O is still 
faster in all known storage/persistent (vs RAM) systems where the 
current I/O primitives would be able to write.


Some conversion from "absolute" (within the "file") to "relative" 
(within the "tablespace") offsets would need to happen before delegating 
to the kernel... or even dereferencing a pointer to an mmap'd region !, 
but not much more, ISTM (but I'm far from an expert in this area).


Out of the top of my head:

CREATE TABLESPACE tblspcname [other_options] LOCATION '/dev/nvme1n2' 
WITH (kind=raw, extent_min=4MB);


  or something similar to that approac might do it.

    Please note that I have purposefully specified "namespace 2" in an 
"enterprise" NVME device, to show the possibility.


OR

  use some filesystem (e.g. XFS) with DAX[1] (mount -o dax ) where 
available along something equivalent to  WITH(kind=mmaped)



... though the locking we currently get "for free" from the kernel would 
need to be replaced by something else.



Indeed it seems like an enormous amount of work but it may well pay 
off. I can't fully assess the effort, though



Just my .02€

[1] https://www.kernel.org/doc/Documentation/filesystems/dax.txt


Thanks,

    / J.L.






Re: where should I stick that backup?

2020-04-11 Thread Jose Luis Tallon

On 10/4/20 21:38, Andres Freund wrote:

Hi,

On 2020-04-10 12:20:01 -0400, Robert Haas wrote:

- We're only talking about writing a handful of tar files, and that's
in the context of a full-database backup, which is a much
heavier-weight operation than a query.
- There is not really any state that needs to be maintained across calls.
- The expected result is that a file gets written someplace, which is
not an in-memory data structure but something that gets written to a
place outside of PostgreSQL.

Wouldn't there be state like a S3/ssh/https/... connection?
...to try and save opening a new connection in the context of a 
(potentially) multi-TB backup? :S

And perhaps
a 'backup_id' in the backup metadata DB that'd one would want to update
at the end?


This is, indeed, material for external tools. Each cater for a 
particular set of end-user requirements.


We got many examples already, with most even co-authored by this list's 
regulars... and IMHO none is suitable for ALL use-cases.



BUT I agree that providing better tools with Postgres itself, ready to 
use --- that is, uncomment the default "archive_command" and get going 
for a very basic starting point --- is a huge advancement in the right 
direction. More importantly (IMO): including the call to "pgfile" or 
equivalent quite clearly signals any inadvertent user that there is more 
to safely archiving WAL segments than just doing "cp -a" blindly and 
hoping that the tool magically does all required steps [needed to ensure 
data safety in this case, rather than the usual behaviour]. It's 
probably more effective than just ammending the existing comments to 
point users to a (new?) section within the documentation.



This comment is from experience: I've lost count of how many times I 
have had to "fix" the default command for WAL archiving --- precisely 
because it had been blindly copied from the default without further 
thinking of the implications should there happen any 
(deviation-from-expected-behaviour) during WAL archiving  only to be 
noticed at (attempted) recovery time :\



HTH.

Thanks,

    J.L.






Re: where should I stick that backup?

2020-04-11 Thread Jose Luis Tallon

On 10/4/20 15:49, Robert Haas wrote:

On Thu, Apr 9, 2020 at 6:44 PM Bruce Momjian  wrote:

Good point, but if there are multiple APIs, it makes shell script
flexibility even more useful.

[snip]

One thing I do think would be realistic would be to invent a set of
tools that are perform certain local filesystem operations in a
"hardened" way.

+10

  Maybe a single tool with subcommands and options. So
you could say, e.g. 'pgfile cp SOURCE TARGET' and it would create a
temporary file in the target directory, write the contents of the
source into that file, fsync the file, rename it into place, and do
more fsyncs to make sure it's all durable in case of a crash. You
could have a variant of this that instead of using the temporary file
and rename in place approach, does the thing where you open the target
file with O_CREAT|O_EXCL, writes the bytes, and then closes and fsyncs
it.
Behaviour might be decided in the same way as the default for 
'wal_sync_method' gets chosen, as the most appropriate for a particular 
system.

And you could have other things too, like 'pgfile mkdir DIR' to
create a directory and fsync it for durability. A toolset like this
would probably help people write better archive commands


Definitely, "mkdir" and "create-exclusive" (along with cp) would be a 
great addition and simplify the kind of tasks properly (i.e. with 
risking data loss every time)

[excerpted]

pg_basebackup -Ft --pipe-output 'bzip | pgfile create-exclusive - %f.bz2'

[]

pg_basebackup -Ft --pipe-output 'bzip | gpg -e | ssh someuser@somehost
pgfile create-exclusive - /backups/tuesday/%f.bz2'

Yep. Would also fit the case for non-synchronous NFS mounts for backups...

It is of course not impossible to teach pg_basebackup to do all of
that stuff internally, but I have a really difficult time imagining us
ever getting it done. There are just too many possibilities, and new
ones arise all the time.


Indeed. The beauty of Unix-like OSs is precisely this.


A 'pgfile' utility wouldn't help at all for people who are storing to
S3 or whatever. They could use 'aws s3' as a target for --pipe-output,
[snip]
(Incidentally, pg_basebackup already has an option to output the
entire backup as a tarfile on standard output, and a user can already
pipe that into any tool they like. However, it doesn't work with
tablespaces. So you could think of this proposal as extending the
existing functionality to cover that case.)


Been there already :S  Having pg_basebackup output multiple tarballs 
(one per tablespace), ideally separated via something so that splitting 
can be trivially done on the receiving end.


...but that's probably matter for another thread.


Thanks,

    / J.L.






Just for fun: Postgres 20?

2020-02-09 Thread Jose Luis Tallon

Hackers,

    Musing some other date-related things I stumbled upon the thought 
that naming the upcoming release PostgreSQL 20 might be preferrable to 
the current/expected "PostgreSQL 13".



Cons:

 * Discontinuity in versions. 12 -> 20.  Now that we have the precedent 
of 9.6 -> 10 (for very good reasons, I think), this is probably a minor 
issue... Mostly the inconvenience of having to add tests for the skipped 
versions, I believe.


    ¿any others that I don't know about?

Pros:

 * Simplified supportability assessment:  PostgreSQL 20, released in 
2020, would be supported until the release of PostgreSQL 25 (late 2025 
if release cadence is kept as today). Simple and straightforward.


 * We avoid users skipping the release altogether due to superstition 
or analogous reasons ---might be a major issue in some cultures---. 
Postgres 13 would be certainly skipped in production in some 
environments that I know about o_0



Nothing really important, I guess. I think of it as a thought experiment 
mostly, but might spark some ultimate useful debate.



Thanks,

    / J.L.






Re: Richard Laager: Declaration of intent

2020-01-27 Thread Jose Luis Tallon

On 27/1/20 4:59, Richard Laager wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

For nm.debian.org, at 2020-01-27:
I would like to apply to change my status in Debian to Debian Developer,
uploading.  I have maintained multiple packages for several years now.  I was
recently approved as a Debian Maintainer and have successfully uploaded on my
own.  I would like to be a full member of the developer community.


+1. Congrats!


-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEE1Ot9lOeOTujs4H+U+HlhmcBFhs4FAl4uYBQACgkQ+HlhmcBF
hs4qiRAAr2k0NLd8s6Af2nrZMvjZYieTAQok+MCF+Kfuhwe7R7IvpO8UdymMuYuX
fqrgkz0wMJg4ZRkEb30D1GxdWtu2aMuoYCLC0xtz7BbZb/lI8sCKjICAVWRpL5Q4
eCXSpo7U8UVgv4qmaxBrHFv2udyLARl2lVJ/nKIDbxzJz7SBDEJrNqZsd6MnSqaa
4ptYKN7NttL/kC/rg2UvQ7SWUO5QJyVm1kXZX1Ttwy0NgopGLlVHFEK2iV6dMDFp
RFQ5u36KR0ZA6ob7zRIwCbKRBMh468sQAJSFhaqVDCjR5Dsx7VoJpuEWFD0Gzvp5
3gelrkpwzL8Ciw9Bkl9auNg1spTTeZBNBndhRSzZadEkZ/V8qARNh0WPTKIEHnPa
LPDHuhXNirJ0Q9cTcAnQmtMjFUichOVPWf+JOnOEje9A8CZ/KzLRKe791OlZmxQq
Ms26/nuWoZCkuXN/VZOWyzCnKbfaRmd000kNNclPIyCE9/Y3AbfmO6ztO8qIopGG
BVV7XfDKuovYrPWmU0VCl0PbOKLrY8ROK5qeUHg2BKYexjW/ajznptk1EP/sgsj6
gQb1lDEu0BJYXlywYDButT4QTRMsmZtW2x61CqTyfpv30cVg9bdfn2VEdMmSZSSv
+2g4jTMfa0VPLuTUE7Mfbzw22hU1jUXiWUtbo0XU6LLblLmJ1DE=
=/FrA
-END PGP SIGNATURE-

Richard Laager (via nm.debian.org)

For details and to comment, visit https://nm.debian.org/process/715





Re: postsuper manpage: message expiration

2020-01-19 Thread Jose Luis Tallon

On 19/1/20 1:45, Wietse Venema wrote:

I'm adding a new field to the Postfix queue file that says if a
message was forcibly expired. The field is set with the postsuper
command, using syntax that is similar to other postsuper commands.

The new option behaves like 'delete' except of course that it sets
a flag in a file instead of deleting it.

-e queue_id
   Expire  one  message  with  the named queue ID in the named mail
   queue(s) (default: hold, incoming, active and deferred).

   This only marks the message as  expired.  The  message  will  be
   returned  to  the  sender  when  the  queue manager opens it for
   delivery (but mail in the  hold  queue  stays  in  that  queue).
   Deferred  messages  are  returned with the actual reason for the
   delay; other messages are returned with the reason  "5.7.0  mes-
   sage is administratively expired".

   To  expire multiple files, specify the -e option multiple times,
   or specify a queue_id of - to read queue IDs from standard input
   (see the -d option for an example).

As implemented, this does not release a file from 'hold'. It only
sets a flag in a queue file. That is the purist approach. However
I suspect that some people would not want to have to say

To delete one file:
postsuper -e queueid -H queueid


As long as one can specify both commands in the same invocation, I don't 
believe it'd be a great deal...


Counter-argument: less "unixy" --- "do just one thing and do it well"


To delete a bunch of files:
postqueue -pj | script | postsuper -e -
postqueue -pj | script | postsuper -H -


Some script's filtering criteria could have marked a message in the 
queue as "expired"


...but it'd still be held ---say, for manual inspection/forensic 
whathever--- by some other's selection logic



If the intent of expiration is to make messages 'go away' then it
makes sense that '-e' automagically un-holds a message, so that the
queue manager can return it as undeliverable.


Yes, save for the above reasoning. I know I'd use it as described above 
--- of course others will do it differently.



Just my .02€

Thanks,

    / J.L.




Re: color by default

2019-12-31 Thread Jose Luis Tallon

On 31/12/19 14:35, Tom Lane wrote:

Peter Eisentraut  writes:

With the attached patch, I propose to enable the colored output by
default in PG13.

FWIW, I shall be setting NO_COLOR permanently if this gets committed.
I wonder how many people there are who actually *like* colored output?
I find it to be invariably less readable than plain B text.

I may well be in the minority, but I think some kind of straw poll
might be advisable, rather than doing this just because.


+1

...and Happy New Year!


    / J.L.






Re: Proposal: Global Index

2019-12-19 Thread Jose Luis Tallon

On 19/12/19 4:03, Bruce Momjian wrote:

On Mon, Nov 25, 2019 at 03:44:39PM -0800, Jeremy Schneider wrote:

On 11/25/19 15:05, Jeremy Schneider wrote:

... the cost of doing the individual index lookups across 180
partitions (and 180 indexes) was very high, so they stored max and min
txn id per partition and would generate a query with all the dates that
a txn id could have been in so that only a small number of partition
indexes would be accessed.

.. If we are looking for higher concurrency, we can usually
add a hack/workaround that filters on a partition key to provide “pretty
good” pruning.  The net result is that you get 2-3x the IO due to the
lack of global index (same workaround as first story above).

Is that basically like a global BRIN index with granularity at the
partition level?

Exactly!  :-)


Actually, one "kind of" BRIN index *per partitioned table* mapping (key 
range) -> (partition oid)... and so concurrency doesn't need to be very 
affected.


(we don't need to do things just like other RDBMS do, ya know... ;)


IIRC, this precise approach was suggested around 2016 when initially 
discussing the "declarative partitioning" which originated Postgres' 
current partitioning scheme, in order to optimize partition pruning.



Just my .02€

    / J.L.






Re: Allow CLUSTER, VACUUM FULL and REINDEX to change tablespace on the fly

2019-09-20 Thread Jose Luis Tallon

On 20/9/19 4:06, Michael Paquier wrote:

On Thu, Sep 19, 2019 at 05:40:41PM +0300, Alexey Kondratov wrote:

On 19.09.2019 16:21, Robert Haas wrote:

So, earlier in this thread, I suggested making this part of ALTER
TABLE, and several people seemed to like that idea. Did we have a
reason for dropping that approach?

Personally, I don't find this idea very attractive as ALTER TABLE is
already complicated enough with all the subqueries we already support
in the command, all the logic we need to maintain to make combinations
of those subqueries in a minimum number of steps, and also the number
of bugs we have seen because of the amount of complication present.


Yes, but please keep the other options: At it is, cluster, vacuum full 
and reindex already rewrite the table in full; Being able to write the 
result to a different tablespace than the original object was stored in 
enables a whole world of very interesting possibilities including a 
quick way out of a "so little disk space available that vacuum won't 
work properly" situation --- which I'm sure MANY users will appreciate, 
including me



If we add this option to REINDEX, then for 'ALTER TABLE tb_name action1,
REINDEX SET TABLESPACE tbsp_name, action3' action2 will be just a direct
alias to 'REINDEX TABLE tb_name SET TABLESPACE tbsp_name'. So it seems
practical to do this for REINDEX first.

The only one concern I have against adding REINDEX to ALTER TABLE in this
context is that it will allow user to write such a chimera:

ALTER TABLE tb_name REINDEX SET TABLESPACE tbsp_name, SET TABLESPACE
tbsp_name;

when they want to move both table and all the indexes. Because simple
ALTER TABLE tb_name REINDEX, SET TABLESPACE tbsp_name;
looks ambiguous. Should it change tablespace of table, indexes or both?


Indeed.

IMHO, that form of the command should not allow that much flexibility... 
even on the "principle of least surprise" grounds :S


That is, I'd restrict the ability to change (output) tablespace to the 
"direct" form --- REINDEX name, VACUUM (FULL) name, CLUSTER name --- 
whereas the ALTER table|index SET TABLESPACE would continue to work.


Now that I come to think of it, maybe saying "output" or "move to" 
rather than "set tablespace" would make more sense for this variation of 
the commands? (clearer, less prone to confusion)?



Tricky question, but we don't change the tablespace of indexes when
using an ALTER TABLE, so I would say no on compatibility grounds.
ALTER TABLE has never touched the tablespace of indexes, and I don't
think that we should begin to do so.


Indeed.


I might be missing something, but is there any reason to not *require* a 
explicit transaction for the above multi-action commands? I mean, have 
it be:


BEGIN;

ALTER TABLE tb_name SET TABLESPACE tbsp_name;    -- moves the table  
but possibly NOT the indexes?


ALTER TABLE tb_name REINDEX [OUTPUT TABLESPACE tbsp_name];    -- 
REINDEX, placing the resulting index on tbsp_name instead of the 
original one


COMMIT;

... and have the parser/planner combine the steps if it'd make sense (it 
probably wouldn't in this example)?



Just my .02€


Thanks,

    / J.L.






Re: [PATCH] Implement uuid_version()

2019-07-05 Thread Jose Luis Tallon

On 5/7/19 11:00, Peter Eisentraut wrote:

On 2019-07-05 00:08, Jose Luis Tallon wrote:

On 4/7/19 17:30, Alvaro Herrera wrote:

On 2019-Jul-04, Tom Lane wrote:


A possible option 3 is to keep the function in pgcrypto but change
its C code to call the core code.

Updated patch with this change included.

Great, thanks!




Re: [PATCH] Implement uuid_version()

2019-07-04 Thread Jose Luis Tallon

On 4/7/19 17:30, Alvaro Herrera wrote:

On 2019-Jul-04, Tom Lane wrote:


A possible option 3 is to keep the function in pgcrypto but change
its C code to call the core code.

This seems most reasonable, and is what José Luis proposed upthread.  We
don't have to bump the pgcrypto extension version, as nothing changes
for pgcrypto externally.


Yes, indeed.

...which means I get another todo item if nobody else volunteers :)


Thanks!

    / J.L.






Re: [PATCH] Implement uuid_version()

2019-07-02 Thread Jose Luis Tallon

On 2/7/19 9:26, Peter Eisentraut wrote:

On 2019-06-30 14:50, Fabien COELHO wrote:

I'm wondering whether pg_random_uuid() should be taken out of pgcrypto if
it is available in core?

That would probably require an extension version update dance in
pgcrypto.  I'm not sure if it's worth that.  Thoughts?


What I have devised for my upcoming patch series is to use a 
compatibility "shim" that calls the corresponding core code when the 
expected usage does not match the new names/signatures...


This way we wouldn't even need to version bump pgcrypto (full backwards 
compatibility -> no bump needed). Another matter is whether this should 
raise some "deprecation warning" or the like; I don't think we have any 
such mechanisms available yet.



FWIW, I'm implementing an "alias" functionality for extensions, too, in 
order to achieve transparent (for the user) extension renames.


HTH


Thanks,

    / J.L.






Re: [PATCH] Implement uuid_version()

2019-06-11 Thread Jose Luis Tallon

On 11/6/19 13:11, Peter Eisentraut wrote:

On 2019-06-11 12:31, Jose Luis Tallon wrote:

I wonder whether re-implementing some more of the extension's (ie. UUID
v5) in terms of PgCrypto and in-core makes sense / would actually be
accepted into core?

Those other versions are significantly more complicated to implement,
and I don't think many people really need them, so I'm not currently
interested.


For the record: I was volunteering to implement that functionality. I'd 
only need some committer to take a look and erm... commit it :)


Thank you, in any case; The patch you have provided will be very useful.


    / J.L.







Re: [PATCH] Implement uuid_version()

2019-06-11 Thread Jose Luis Tallon

On 11/6/19 10:49, Peter Eisentraut wrote:

On 2019-04-09 08:04, Peter Eisentraut wrote:

On 2019-04-08 23:06, Andres Freund wrote:

The randomness based UUID generators don't really have dependencies, now
that we have a dependency on strong randomness.  I kinda thing the
dependency argument actually works *against* uuid-ossp - precisely
because of its dependencies (which also vary by OS) it's not a proper
replacement for a type of facility a very sizable fraction of our users
need.

Yeah, I think implementing a v4 generator in core would be trivial and
address almost everyone's requirements.

Here is a proposed patch for this.  I did a fair bit of looking around
in other systems for a naming pattern but didn't find anything
consistent.  So I ended up just taking the function name and code from
pgcrypto.

As you can see, the code is trivial and has no external dependencies.  I
think this would significantly upgrade the usability of the uuid type.


Yes, indeed. Thanks!

This is definitively a good step towards removing external dependencies 
for general usage of UUIDs. As recently commented, enabling extensions 
at some MSPs/Cloud providers can be a bit challenging.



I wonder whether re-implementing some more of the extension's (ie. UUID 
v5) in terms of PgCrypto and in-core makes sense / would actually be 
accepted into core?


I assume that Peter would like to commit that potential patch series?


Thanks,

    / J.L.






Re: [PATCH] Implement uuid_version()

2019-04-08 Thread Jose Luis Tallon

On 8/4/19 17:06, Robert Haas wrote:

On Sun, Apr 7, 2019 at 10:15 AM David Fetter  wrote:

I see some.

UUIDs turn out to be super useful in distributed systems to give good
guarantees of uniqueness without coordinating with a particular node.
Such systems have become a good bit more common since the most recent
time this was discussed.

That's not really a compelling reason, though, because anybody who
needs UUIDs can always install the extension.  And on the other hand,
if we moved UUID support into core, then we'd be adding a hard compile
dependency on one of the UUID facilities, which might annoy some
developers.  We could possibly work around that by implementing our
own UUID facilities in core,


Yup. My proposal basically revolves around implementing v3 / v4 / v5 
(most used/useful versions for the aforementioned use cases) in core, 
using the already existing md5 and sha1 facilities (which are already 
being linked from the current uuid-ossp extension as fallback with 
certain configurations) ... and leaving the remaining functionality in 
the extension, just as it is now.


This way, we guarantee backwards compatibility: Those already using the 
extension wouldn't have to change anything, and new users won't need to 
load any extension to benefit from this (base) functionality.



  but I'm not volunteering to do the work,

Of course, I'd take care of that :)

and I'm not sure that the work has enough benefit to justify the
labor.


With this "encouragement", I'll write the code and submit the patches to 
a future commitfest. Then the normal procedure will take care of judging 
whether it's worth being included or not :$



My biggest gripe about uuid-ossp is that the name is stupid.  I wish
we could see our way clear to renaming that extension to just 'uuid',
because as J.L. says, virtually nobody's actually compiling against
the OSSP library any more.  The trick there is how to do that without
annoying exiting users.  Maybe we could leave behind an "upgrade"
script for the uuid-ossp extension that does CREATE EXTENSION uuid,
then alters all objects owned by the current extension to be owned by
the new extension, and maybe even drops itself.


I believe my proposal above mostly solves the issue: new users with 
"standard" needs won't need to load any extension (better than current), 
old users will get the same functionality as they have today (only part 
in core and part in the extension)...


 ...and a relatively simple "alias" (think Linux kernel modules) 
facility would make the transition fully transparent: rename extension 
to "uuid" ---possibly dropping the dependency on uuid-ossp in the 
process--- and expose an "uuid-ossp" alias for backwards compatibility.



Thanks,

    J.L.






Re: [PATCH] Implement uuid_version()

2019-04-07 Thread Jose Luis Tallon

On 6/4/19 18:35, Tom Lane wrote:

Jose Luis Tallon  writes:

      While working on an application, the need arose to be able
efficiently differentiate v4/v5 UUIDs (for use in partial indexes, among
others)
... so please find attached a trivial patch which adds the
functionality.

No particular objection...


      I'm not sure whether this actually would justify a version bump for
the OSSP-UUID extension

Yes.  Basically, once we've shipped a given version of an extension's
SQL script, that version is *frozen*.  Anything at all that you want
to do to it has to be done in an extension update script, because
otherwise there's no clean migration path for users.


Got it, and done. Please find attached a v2 patch with the upgrade 
script included.



Thank you for taking a look. Your time is much appreciated :)


    J.L.


diff --git a/contrib/uuid-ossp/Makefile b/contrib/uuid-ossp/Makefile
index c52c583d64..7f29bec535 100644
--- a/contrib/uuid-ossp/Makefile
+++ b/contrib/uuid-ossp/Makefile
@@ -4,7 +4,7 @@ MODULE_big = uuid-ossp
 OBJS = uuid-ossp.o $(UUID_EXTRA_OBJS) $(WIN32RES)
 
 EXTENSION = uuid-ossp
-DATA = uuid-ossp--1.1.sql uuid-ossp--1.0--1.1.sql uuid-ossp--unpackaged--1.0.sql
+DATA = uuid-ossp--1.1.sql uuid-ossp--1.0--1.1.sql uuid-ossp--1.1--1.2.sql uuid-ossp--unpackaged--1.0.sql
 PGFILEDESC = "uuid-ossp - UUID generation"
 
 REGRESS = uuid_ossp
diff --git a/contrib/uuid-ossp/uuid-ossp--1.1--1.2.sql b/contrib/uuid-ossp/uuid-ossp--1.1--1.2.sql
new file mode 100644
index 00..8e47ca60a1
--- /dev/null
+++ b/contrib/uuid-ossp/uuid-ossp--1.1--1.2.sql
@@ -0,0 +1,9 @@
+/* contrib/uuid-ossp/uuid-ossp--1.1--1.2.sql */
+
+-- complain if script is sourced in psql, rather than via ALTER EXTENSION
+\echo Use "ALTER EXTENSION uuid-ossp UPDATE TO '1.2'" to load this file. \quit
+
+CREATE FUNCTION uuid_version(namespace uuid)
+RETURNS int4
+AS 'MODULE_PATHNAME', 'uuid_version'
+IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c
index f5ae915f24..b4997281c0 100644
--- a/contrib/uuid-ossp/uuid-ossp.c
+++ b/contrib/uuid-ossp/uuid-ossp.c
@@ -122,6 +122,7 @@ PG_FUNCTION_INFO_V1(uuid_generate_v1mc);
 PG_FUNCTION_INFO_V1(uuid_generate_v3);
 PG_FUNCTION_INFO_V1(uuid_generate_v4);
 PG_FUNCTION_INFO_V1(uuid_generate_v5);
+PG_FUNCTION_INFO_V1(uuid_version);
 
 #ifdef HAVE_UUID_OSSP
 
@@ -531,3 +532,16 @@ uuid_generate_v5(PG_FUNCTION_ARGS)
   VARDATA_ANY(name), VARSIZE_ANY_EXHDR(name));
 #endif
 }
+
+Datum
+uuid_version(PG_FUNCTION_ARGS)
+{
+	pg_uuid_t  *arg = PG_GETARG_UUID_P(0);
+	dce_uuid_t uu;
+
+	/* function is marked STRICT, so arg can't be NULL */
+	memcpy(,arg,UUID_LEN);
+	UUID_TO_NETWORK(uu);
+
+	PG_RETURN_INT32(uu.time_hi_and_version >> 12);
+}
diff --git a/contrib/uuid-ossp/uuid-ossp.control b/contrib/uuid-ossp/uuid-ossp.control
index 657476c182..3479b06eff 100644
--- a/contrib/uuid-ossp/uuid-ossp.control
+++ b/contrib/uuid-ossp/uuid-ossp.control
@@ -1,5 +1,5 @@
 # uuid-ossp extension
 comment = 'generate universally unique identifiers (UUIDs)'
-default_version = '1.1'
+default_version = '1.2'
 module_pathname = '$libdir/uuid-ossp'
 relocatable = true
diff --git a/doc/src/sgml/uuid-ossp.sgml b/doc/src/sgml/uuid-ossp.sgml
index b3b816c372..43dd565886 100644
--- a/doc/src/sgml/uuid-ossp.sgml
+++ b/doc/src/sgml/uuid-ossp.sgml
@@ -156,6 +156,22 @@ SELECT uuid_generate_v3(uuid_ns_url(), 'http://www.postgresql.org');
 

   
+
+  
+   Functions Returning UUID attributes
+   
+
+ 
+  uuid_version()
+  
+   
+Returns the UUID version (1,3,4,5). Assumes variant 1 (RFC4122).
+   
+  
+ 
+
+   
+  
  
 
  


[PATCH] Implement uuid_version()

2019-04-06 Thread Jose Luis Tallon

Hackers,

    While working on an application, the need arose to be able 
efficiently differentiate v4/v5 UUIDs (for use in partial indexes, among 
others)


... so please find attached a trivial patch which adds the 
functionality. The "uuid_version_bits()" function (from the test suite?) 
seems quite a bit hackish, apart from inefficient :(



    I'm not sure whether this actually would justify a version bump for 
the OSSP-UUID extension ---a misnomer, BTW, since at least in all the 
systems I have access to, the extension is actually linked against 
libuuid from e2fsutils, but I digress --- or not, given that it doesn't 
change exposed functionality.



    Another matter, which I'd like to propose in a later thread, is 
whether it'd be interesting to include the main UUID functionality 
directly in core, with the remaining functions in ossp-uuid (just like 
it is now, for backwards compatibility): Most current patterns for 
distributed/sharded databases are based on using UUIDs for many PKs.



Thanks,

    J.L.


diff --git a/contrib/uuid-ossp/uuid-ossp--1.1.sql b/contrib/uuid-ossp/uuid-ossp--1.1.sql
index c9cefd7360..a2eb217fd8 100644
--- a/contrib/uuid-ossp/uuid-ossp--1.1.sql
+++ b/contrib/uuid-ossp/uuid-ossp--1.1.sql
@@ -52,3 +52,8 @@ CREATE FUNCTION uuid_generate_v5(namespace uuid, name text)
 RETURNS uuid
 AS 'MODULE_PATHNAME', 'uuid_generate_v5'
 IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
+
+CREATE FUNCTION uuid_version(namespace uuid)
+RETURNS int4
+AS 'MODULE_PATHNAME', 'uuid_version'
+IMMUTABLE STRICT LANGUAGE C PARALLEL SAFE;
diff --git a/contrib/uuid-ossp/uuid-ossp.c b/contrib/uuid-ossp/uuid-ossp.c
index f5ae915f24..b4997281c0 100644
--- a/contrib/uuid-ossp/uuid-ossp.c
+++ b/contrib/uuid-ossp/uuid-ossp.c
@@ -122,6 +122,7 @@ PG_FUNCTION_INFO_V1(uuid_generate_v1mc);
 PG_FUNCTION_INFO_V1(uuid_generate_v3);
 PG_FUNCTION_INFO_V1(uuid_generate_v4);
 PG_FUNCTION_INFO_V1(uuid_generate_v5);
+PG_FUNCTION_INFO_V1(uuid_version);
 
 #ifdef HAVE_UUID_OSSP
 
@@ -531,3 +532,16 @@ uuid_generate_v5(PG_FUNCTION_ARGS)
   VARDATA_ANY(name), VARSIZE_ANY_EXHDR(name));
 #endif
 }
+
+Datum
+uuid_version(PG_FUNCTION_ARGS)
+{
+	pg_uuid_t  *arg = PG_GETARG_UUID_P(0);
+	dce_uuid_t uu;
+
+	/* function is marked STRICT, so arg can't be NULL */
+	memcpy(,arg,UUID_LEN);
+	UUID_TO_NETWORK(uu);
+
+	PG_RETURN_INT32(uu.time_hi_and_version >> 12);
+}
diff --git a/doc/src/sgml/uuid-ossp.sgml b/doc/src/sgml/uuid-ossp.sgml
index b3b816c372..43dd565886 100644
--- a/doc/src/sgml/uuid-ossp.sgml
+++ b/doc/src/sgml/uuid-ossp.sgml
@@ -156,6 +156,22 @@ SELECT uuid_generate_v3(uuid_ns_url(), 'http://www.postgresql.org');
 

   
+
+  
+   Functions Returning UUID attributes
+   
+
+ 
+  uuid_version()
+  
+   
+Returns the UUID version (1,3,4,5). Assumes variant 1 (RFC4122).
+   
+  
+ 
+
+   
+  
  
 
  


Re: phase out ossp-uuid?

2019-02-08 Thread Jose Luis Tallon

On 7/2/19 23:03, Andres Freund wrote:

Hi,

On 2019-02-07 09:03:06 +, Dave Page wrote:

On Thu, Feb 7, 2019 at 8:26 AM Peter Eisentraut
 wrote:

I suggest we declare it deprecated in PG12 and remove it altogether in PG13.

Much as I'd like to get rid of it, we don't have an alternative for
Windows do we? The docs for 11 imply it's required for UUID support
(though the wording isn't exactly clear, saying it's required for
UUID-OSSP support!):
https://www.postgresql.org/docs/11/install-windows-full.html#id-1.6.4.8.8

Given that we've now integrated strong crypto support, and are relying
on it for security (scram), perhaps we should just add a core uuidv4?


This. But just make it "uuid" and so both parties will get their own:

On 7/2/19 11:37, I wrote:

AFAIR, Windows has its own DCE/v4 UUID generation support if needed 
UUID v5 can be generated using built-in crypto hashes. v1 are the ones 
(potentially) more cumbersome to generate plus they are the least 
useful IMHO.


- UUIDv3    <- with built-in crypto hashes

- UUIDv4    <- with built-in crypto random

- UUIDv5    <- with built-in crypto hashes

Only v1 remain. For those use cases one could use ossp-uuid so what 
about:


* Rename the extension's type to ossp_uuid or the like.

* Have uuid in-core (we already got the platform independent required 
crypto, so I wouldn't expect portability issues)


I reckon that most use cases should be either UUID v4 or UUID v5 these 
days. For those using v1 UUIDs, either implement v1 in core or provide 
some fallback/migration path; This would only affect the 
"uuid_generate_v1()" and "uuid_generate_v1mc()" calls AFAICS.



Moreover, the documentation (as far back as 9.4) already states:

"If you only need randomly-generated (version 4) UUIDs, consider using 
the |gen_random_uuid()| function from the pgcrypto 
 module instead."


So just importing the datatype into core would go a long way towards 
removing the dependency for most users.



Thanks,

    / J.L.




Re: phase out ossp-uuid?

2019-02-07 Thread Jose Luis Tallon

On 7/2/19 10:03, Dave Page wrote:

On Thu, Feb 7, 2019 at 8:26 AM Peter Eisentraut
 wrote:

I'm wondering whether we should phase out the use of the ossp-uuid
library? (not the uuid-ossp extension)


Hmm... FWIW, just get it in core altogether? Seems small and useful 
enough... if it carries the opfamily with it, UUID would become really 
convenient to use for distributed applications.


(being using that functionality for a while, already)


   We have had preferred
alternatives for a while now, so it shouldn't be necessary to use this
anymore, except perhaps in some marginal circumstances?  As we know,
ossp-uuid isn't maintained anymore, and a few weeks ago the website was
gone altogether, but it seems to be back now.

I suggest we declare it deprecated in PG12 and remove it altogether in PG13.

Much as I'd like to get rid of it, we don't have an alternative for
Windows do we? The docs for 11 imply it's required for UUID support
(though the wording isn't exactly clear, saying it's required for
UUID-OSSP support!):
https://www.postgresql.org/docs/11/install-windows-full.html#id-1.6.4.8.8


AFAIR, Windows has its own DCE/v4 UUID generation support. UUID v5 can 
be generated using built-in crypto hashes. v1 are the ones (potentially) 
more cumbersome to generate plus they are the least useful IMHO.



Just my .02€

Thanks,

    / J.L.





Bug#918320: openvswitch-switch: ifupdown integration can't work (obsolete/buggy scripts)

2019-01-04 Thread Jose Luis Tallon

Package: openvswitch-switch
Version: 2.10.0+2018.08.28+git.8ca7c82b7d+ds1-10
Severity: important
Tags: patch

Dear Maintainer,

Just configured openvswitch 2.10 on a newly-upgraded Buster machine 
(fresh install with Stretch/9.6, immediately dist-upgraded to Buster). 
When raising the interfaces via ifup, configuration of OpenVSwitch-enabled

interfaces would always failed.

* Command run: # ifup xenbr0
* Outcome: xenbr0 not configured (error)
* Expected outcome: xenbr0 + eno1 enabled and configured

Part of the problem lies in the fact that the supplied ifupdown
integration scripts are outdated: they call 'ifconfig' rather than the
correct "ip link set up" invocation. Trivial patch attached.


Probably unrelated, configuration will still fail... but that's another 
matter


-- /etc/network/interfaces (snippet) ---
auto lo
iface lo inet loopback

auto eno1
allow-hotplug eno1
iface eno1 inet manual
up ip link set up dev eno1
down ip link set down dev eno1
ovs_type OVSPort
ovs_bridge xenbr0

source /etc/network/interfaces.d/*

-- /etc/network/interfaces.d/xenbr0
auto xenbr0
allow-ovs xenbr0
iface xenbr0 inet static
address 172.20.1.54/24
mtu 1500
ovs_type OVSBridge
ovs_ports eno1
dns-nameservers 172.20.0.254
--


-- System Information:
Debian Release: buster/sid
APT prefers testing
APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US.UTF-8 (charmap=UTF-8)

Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages openvswitch-switch depends on:
ii kmod 25-2
ii lsb-base 10.2018112800
ii netbase 5.5
ii openvswitch-common 2.10.0+2018.08.28+git.8ca7c82b7d+ds1-10
ii procps 2:3.3.15-2
ii python 2.7.15-3
ii uuid-runtime 2.33-0.2

openvswitch-switch recommends no packages.

openvswitch-switch suggests no packages.

-- no debconf information


--- /etc/network/if-pre-up.d/openvswitch~   2018-12-14 08:47:15.0 
+0100
+++ /etc/network/if-pre-up.d/openvswitch2019-01-03 15:20:50.911578187 
+0100
@@ -25,6 +25,10 @@
 ovs-vsctl --timeout=5 "$@"
 }
 
+if_up() {
+/bin/ip link set up dev "$1"
+}
+
 if (ovs_vsctl --version) > /dev/null 2>&1; then :; else
 exit 0
 fi
@@ -57,24 +61,24 @@
 "${IFACE}" ${IF_OVS_OPTIONS} \
 ${OVS_EXTRA+-- $OVS_EXTRA}
 
-ifconfig "${IFACE}" up
+if_up "${IFACE}"
 ;;
 OVSIntPort)
 ovs_vsctl -- --may-exist add-port "${IF_OVS_BRIDGE}"\
 "${IFACE}" ${IF_OVS_OPTIONS} -- set Interface "${IFACE}"\
 type=internal ${OVS_EXTRA+-- $OVS_EXTRA}
 
-ifconfig "${IFACE}" up
+if_up "${IFACE}"
 ;;
 OVSBond)
 ovs_vsctl -- --fake-iface add-bond "${IF_OVS_BRIDGE}"\
 "${IFACE}" ${IF_OVS_BONDS} ${IF_OVS_OPTIONS} \
 ${OVS_EXTRA+-- $OVS_EXTRA}
 
-ifconfig "${IFACE}" up
+if_up "${IFACE}"
 for slave in ${IF_OVS_BONDS}
 do
-ifconfig "${slave}" up
+if_up "${slave}"
 done
 ;;
 OVSPatchPort)



Re: Using POPCNT and other advanced bit manipulation instructions

2018-12-20 Thread Jose Luis Tallon

On 20/12/18 6:53, David Rowley wrote:

Back in 2016 [1] there was some discussion about using the POPCNT
instruction to improve the performance of counting the number of bits
set in a word.  Improving this helps various cases, such as
bms_num_members and also things like counting the allvisible and
frozen pages in the visibility map.

[snip]

I've put together a very rough patch to implement using POPCNT and the
leading and trailing 0-bit instructions to improve the performance of
bms_next_member() and bms_prev_member().  The correct function should
be determined on the first call to each function by way of setting a
function pointer variable to the most suitable supported
implementation.   I've not yet gone through and removed all the
number_of_ones[] arrays to replace with a pg_popcount*() call.


IMVHO: Please do not disregard potential optimization by the compiler 
around those calls.. o_0  That might explain the reduced performance 
improvement observed.


Not that I can see any obvious alternative to your implementation right 
away ...



That
seems to have mostly been done in Thomas' patch [3], part of which
I've used for the visibilitymap.c code changes.  If this patch proves
to be possible, then I'll look at including the other changes Thomas
made in his patch too.

What I'm really looking for by posting now are reasons why we can't do
this. I'm also interested in getting some testing done on older
machines, particularly machines with processors that are from before
2007, both AMD and Intel.


I can offer a 2005-vintage Opteron 2216 rev3 (bought late 2007) to test 
on. Feel free to toss me some test code.


cpuinfo flags:    fpu de tsc msr pae mce cx8 apic mca cmov pat clflush 
mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt lm 3dnowext 3dnow 
rep_good nopl extd_apicid eagerfpu pni cx16 hypervisor lahf_lm 
cmp_legacy 3dnowprefetch vmmcall



  2007-2008 seems to be around the time both
AMD and Intel added support for POPCNT and LZCNT, going by [4].


Thanks





Re: Thinking about EXPLAIN ALTER TABLE

2018-12-11 Thread Jose Luis Tallon

We were just busy shooting down a different suggestion of
behavior-changing GUCs.  A GUC that turns all ALTERs into no-ops
sure seems like a foot-gun to me.

Yeah, I like EXPLAIN better.

+1 for EXPLAIN


IMVHO, and for "symmetry" with existing mechanisms:

* EXPLAIN ALTER TABLE    ==> "DDL dry run", but tell me what would be 
done (similar to what EXPLAIN SELECT does)


* EXPLAIN PERFORM ALTER TABLE    (EXPLAIN EXEC?)    would explain + do

    ...and bonus points for explaining each step just before it is 
performed. This way, It'd be easy for users to verify that a particular 
step (i.e. table rewrite) is the one taking æons to run or hammering the 
storage.


    Of course, regular "ALTER TABLE" stays as it is.


Just my .02€ :)

I'm not familiar with this part of the code and clearly can't devote 
enough time to do it in the near future, but count on me to test it if 
accepted.



Thanks,

    Jose





Bug#838071: fixed in up-imapproxy 1.2.8~svn20161210-1

2016-12-12 Thread Jose Luis Tallon
On 12/12/2016 10:09 PM, Tobias Frost wrote:
> Control: reassign -1 up-imapproxy 
> Control: reopen -1
> Control: found -1 1.2.8~svn20161210-1
> Control: retitle -1 Please update the Uploaders field.
> Control: severity -1 minor
>
> Reopening, as Jose Luis Tallon <jltal...@adv-solutions.net> ist still
> listed as Maintainer in d/control, but should have been removed after
> you adopted the package.

Why?  I was involved in this upload, though only marginally.
I guess co-maintainership is now frowned upon?

> We are tracking their status in the MIA team and would like to ask you
> to remove them from the Uploaders list of the package so we can close
> that part of the file.

Hmm.. So?
> As the Jose was listed as Maintainer, what we are asking is to please
> step in as a new maintainer.

I don't know your nationality or whether English is your native
language but that superfluous "the" surely was offensive.


/ J.L.



Bug#828586: Building with OpenSSL 1.0.2 is sufficient for stretch

2016-12-11 Thread Jose Luis Tallon
On 12/11/2016 12:58 AM, Adrian Bunk wrote:
> Not a perfect solution but sufficient for stretch is the patch below to 
> use OpenSSL 1.0.2

Thank you for the patch!

Richard Laager has been preparing a new version, including all pending
patches. CC'ing him so that we keep synchronized.
Tony Mancill has agreed to sponsor that upload.

> The "| libssl-dev (<< 1.1.0~)" is added for backports.
>
> --- debian/control.old2016-12-10 23:57:31.0 +
> +++ debian/control2016-12-10 23:57:36.0 +
> @@ -3,7 +3,7 @@
>  Priority: optional
>  Maintainer: Jose Luis Tallon <jltal...@adv-solutions.net>
>  Build-Depends: autotools-dev, debhelper (>= 5), po-debconf (>= 0.8.2), 
> - libwrap0-dev, libncurses-dev, libssl-dev, dh-systemd
> + libwrap0-dev, libncurses-dev, libssl1.0-dev | libssl-dev (<< 1.1.0~), 
> dh-systemd
>  Homepage: http://www.imapproxy.org
>  Standards-Version: 3.8.4
>  
>
>
> cu
> Adrian
>



Bug#828586: Building with OpenSSL 1.0.2 is sufficient for stretch

2016-12-11 Thread Jose Luis Tallon
On 12/11/2016 12:58 AM, Adrian Bunk wrote:
> Not a perfect solution but sufficient for stretch is the patch below to 
> use OpenSSL 1.0.2

Thank you for the patch!

Richard Laager has been preparing a new version, including all pending
patches. CC'ing him so that we keep synchronized.
Tony Mancill has agreed to sponsor that upload.

> The "| libssl-dev (<< 1.1.0~)" is added for backports.
>
> --- debian/control.old2016-12-10 23:57:31.0 +
> +++ debian/control2016-12-10 23:57:36.0 +
> @@ -3,7 +3,7 @@
>  Priority: optional
>  Maintainer: Jose Luis Tallon <jltal...@adv-solutions.net>
>  Build-Depends: autotools-dev, debhelper (>= 5), po-debconf (>= 0.8.2), 
> - libwrap0-dev, libncurses-dev, libssl-dev, dh-systemd
> + libwrap0-dev, libncurses-dev, libssl1.0-dev | libssl-dev (<< 1.1.0~), 
> dh-systemd
>  Homepage: http://www.imapproxy.org
>  Standards-Version: 3.8.4
>  
>
>
> cu
> Adrian
>



Re: [HACKERS] Sequence Access Method WIP

2016-03-30 Thread Jose Luis Tallon
The following review has been posted through the commitfest application:
make installcheck-world:  not tested
Implements feature:   not tested
Spec compliant:   not tested
Documentation:not tested

[Partial review] Evaluated: 0002-gapless-seq-2016-03-29-2.patch
Needs updating code copyright years ... or is this really from 2013? [ 
contrib/gapless_seq/gapless_seq.c ]
Patch applies cleanly to current master 
(3063e7a84026ced2aadd2262f75eebbe6240f85b)
It does compile cleanly.

DESIGN
The decision to hardcode the schema GAPLESS_SEQ_NAMESPACE ("gapless_seq") and 
VALUES_TABLE_NAME ("seqam_gapless_values") strikes me a bit: while I understand 
the creation of a private schema named after the extension, it seems overkill 
for just a single table.
I would suggest to devote some reserved schema name for internal implementation 
details and/or AM implementation details, if deemed reasonable.
On the other hand, creating the schema/table upon extension installation makes 
the values table use the default tablespace for the database, which can be good 
for concurrency --- direct writes to less loaded storage
   (Note that users may want to move this table into an SSD-backed tablespace 
or equivalently fast storage ... moreso when many --not just one-- gapless 
sequences are being used)

Yet, there is <20141203102425.gt2...@alap3.anarazel.de> where Andres argues 
against anything different than one-page-per-sequence implementations.
   I guess this patch changes everything in this respect.

CODE
  seqam_gapless_init(Relation seqrel, Form_pg_sequence seq, int64 restart_value,
bool restart_requested, bool is_init)
  -> is_init sounds confusing; suggest renaming to "initialize" or "initial" to 
avoid reading as "is_initIALIZED"

DEPENDS ON 0001-seqam-v10.patch , which isn't commited yet --- and it doesn't 
apply cleanly to current git master.
Please update/rebase the patch and resubmit.
-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] WIP: Access method extendability

2016-03-30 Thread Jose Luis Tallon
Referenced by commit commit 473b93287040b20017cc25a157cffdc5b978c254 ("Support 
CREATE ACCESS METHOD"), commited by alvherre

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Default Roles

2016-03-30 Thread Jose Luis Tallon
The following review has been posted through the commitfest application:
make installcheck-world:  tested, passed
Implements feature:   tested, passed
Spec compliant:   tested, passed
Documentation:tested, passed

* Applies cleanly to current master (3063e7a84026ced2aadd2262f75eebbe6240f85b)
* ./configure && make -j4 ok

DOCUMENTATION
* Documentation ok, both code (code comments) and docs.
* Documentation covers signalling backends/backup/monitor as well as the 
obvious modification to the role sections

CODE
* Checks on roles are fairly comprehensive: restrict reserved rolenames 
(creation/modification), prohibit granting to reserved roles
* The patch is surprisingly non-intrusive/self-contained considering the 
functionality.

TOOLS
* Covers pg_upgrade -- "/* 9.5 and below should not have roles starting with 
pg_ */"
* Covers pg_dumpall (do not export creation of system-reserved roles)
* Includes support in psql (\dgS) + accompanying documentation

REGRESSION TESTS
* Includes regression tests; Seem quite complete (including GRANT/REVOKE on 
reserved roles)
   Suggestion for committer: add regression tests for each reserved role? (just 
for completeness' sake)
* make installcheck-world passes; build on amd64 / gcc4.9.2 (Debian 4.9.2-10)
 - btree_gin tests fail / no contrib installed; Assumed ok
* Nitpick: tests mention the still nonexistant pg_monitor / pg_backup reserved 
roles ; Might as well use some obviously reserved-but-absurd rolename instead


Comment for future enhancement: might make sense to split role checking/access 
control functionality into a separate module, as opposed to having to include 
pg_authid.h everywhere
I'm Thinking about Michael and Heikki's upcoming authentication revamp re. 
SCRAM/multiple authenticators: authentication != authorization (apropos 
"has_privs_of_role()" )

Testing:
- pg_signal_backend Ok

Looking forward to seeing the other proposed default roles in!


The new status of this patch is: Ready for Committer

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Bug#806913: udev: user-defined eth naming ignored; worked before upgrade

2015-12-02 Thread Jose Luis Tallon

On 12/02/2015 09:50 PM, Michael Biebl wrote:

Control: tags -1 + moreinfo

Am 02.12.2015 um 21:12 schrieb Jose Luis Tallon:

Package: udev
Version: 215-17+deb8u2
Severity: normal

Dear Maintainer,

After upgrading a system from wheezy+backports to jessie,
udev/systemd-udev
(upgraded to systemd+newer udev) has stopped renaming ethernet interfaces
according to user-defined rules --- as contained in
rules.d/70-persistent-net.rules

Actual outcome / current result: udev assigns names sequentially, using
whatever default rules it has; from eth0 to eth9 in this system

Expected outcome: rules followed, interfaces renamed according to user
specification.

Extra information: running under Xen 4.4 / systemd 215
Snippet from rulefile included. Please note that we are using custom
interface names "teX" and "enX" and/or "giX" in addition to regular "ethX".
Actual MAC address prefixes changed to 'eui64prefN' for privacy reasons.


Which interface(s) specifically are not renamed?

According to your udev-database.txt, I see
eth0-eth3
te1
te2
gi1

So I'm confused about which interface apparently is not renamed


The ethernet interfaces were not renamed at boot, and left as eth0-eth9. 
During boot, systemd actually reported those names (eth0-eth9) when 
configuring networking.
I renamed the interfaces manually using ifrename after boot in order to 
be able to use the machine -- in production right now


ISTM that this is related to #794969, though evidently not the same.
Just upgraded to 228-2 from stretch; Will reboot in the next available 
window to see if this fixes the issue.

  ... would need a backpatch to Jessie or backport in that case, I guess :S

Has happened with three out of three machines upgraded from wheezy *and* 
using custom eth interface names.
Regular eth* interfaces (i.e. not renamed from the standard pattern) 
seem to not be affected.



Thank you, Michael.


Regards,

/ J.L.



Bug#806913: udev: user-defined eth naming ignored; worked before upgrade

2015-12-02 Thread Jose Luis Tallon

On 12/02/2015 09:50 PM, Michael Biebl wrote:

Control: tags -1 + moreinfo

Am 02.12.2015 um 21:12 schrieb Jose Luis Tallon:

Package: udev
Version: 215-17+deb8u2
Severity: normal

Dear Maintainer,

After upgrading a system from wheezy+backports to jessie,
udev/systemd-udev
(upgraded to systemd+newer udev) has stopped renaming ethernet interfaces
according to user-defined rules --- as contained in
rules.d/70-persistent-net.rules

Actual outcome / current result: udev assigns names sequentially, using
whatever default rules it has; from eth0 to eth9 in this system

Expected outcome: rules followed, interfaces renamed according to user
specification.

Extra information: running under Xen 4.4 / systemd 215
Snippet from rulefile included. Please note that we are using custom
interface names "teX" and "enX" and/or "giX" in addition to regular "ethX".
Actual MAC address prefixes changed to 'eui64prefN' for privacy reasons.


Which interface(s) specifically are not renamed?

According to your udev-database.txt, I see
eth0-eth3
te1
te2
gi1

So I'm confused about which interface apparently is not renamed


The ethernet interfaces were not renamed at boot, and left as eth0-eth9. 
During boot, systemd actually reported those names (eth0-eth9) when 
configuring networking.
I renamed the interfaces manually using ifrename after boot in order to 
be able to use the machine -- in production right now


ISTM that this is related to #794969, though evidently not the same.
Just upgraded to 228-2 from stretch; Will reboot in the next available 
window to see if this fixes the issue.

  ... would need a backpatch to Jessie or backport in that case, I guess :S

Has happened with three out of three machines upgraded from wheezy *and* 
using custom eth interface names.
Regular eth* interfaces (i.e. not renamed from the standard pattern) 
seem to not be affected.



Thank you, Michael.


Regards,

/ J.L.


___
Pkg-systemd-maintainers mailing list
Pkg-systemd-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-systemd-maintainers


Accepted bindgraph 0.2a-5 (source all)

2010-04-15 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 20 Mar 2010 21:17:38 +0100
Source: bindgraph
Binary: bindgraph
Architecture: source all
Version: 0.2a-5
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon jltal...@adv-solutions.net
Changed-By: Jose Luis Tallon jltal...@adv-solutions.net
Description: 
 bindgraph  - DNS statistics RRDtool frontend for BIND9
Closes: 563786
Changes: 
 bindgraph (0.2a-5) unstable; urgency=low
 .
   * Packaging
 - Updated to S-V 3.8.3 with no changes
 - Upgraded to debhelper compatibility level 5
 - Converted to using source format 3.0 (quilt)
 .
   * Fixed initscript to declare correct LSB dependencies (Closes: #563786)
 .
   * Upload sponsored by Petter Reinholdtsen.
Checksums-Sha1: 
 9dc2e1f008035670f8c8785a2bda2bfd2bc4ff2c 1023 bindgraph_0.2a-5.dsc
 5720da9fef225dac3545e84f84b9c433885586db 22754 bindgraph_0.2a-5.debian.tar.gz
 743acbec989d0be99152673d7a077730ba799c6a 24270 bindgraph_0.2a-5_all.deb
Checksums-Sha256: 
 e16889decb1731f7a7edfa28e4acbc1aa41ad8e9666465969a5c5611e500aec7 1023 
bindgraph_0.2a-5.dsc
 93982e80a3ec300cb53b4c143b9cacd9e5bd8f1b12a6aca7599e2e252dba2c1a 22754 
bindgraph_0.2a-5.debian.tar.gz
 fadaf842941ddd90f5d84d76efc0f36c5a84f738ee27b98723a480469ddf3b19 24270 
bindgraph_0.2a-5_all.deb
Files: 
 aa9c69e5c57d05d2272002fdc90c9f22 1023 admin extra bindgraph_0.2a-5.dsc
 08c4d0b2bb63e755a96891a34d7a7015 22754 admin extra 
bindgraph_0.2a-5.debian.tar.gz
 cb7b065c98a40111d1951b55147df815 24270 admin extra bindgraph_0.2a-5_all.deb

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

iD8DBQFLxyFO20zMSyow1ykRAo1rAJ0eNcb44QR/3W6t7pvbMrQPYPu10gCfR2zR
nVSODk+dg1WqMY6Gssbu168=
=N0Qo
-END PGP SIGNATURE-


Accepted:
bindgraph_0.2a-5.debian.tar.gz
  to main/b/bindgraph/bindgraph_0.2a-5.debian.tar.gz
bindgraph_0.2a-5.dsc
  to main/b/bindgraph/bindgraph_0.2a-5.dsc
bindgraph_0.2a-5_all.deb
  to main/b/bindgraph/bindgraph_0.2a-5_all.deb


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



Accepted up-imapproxy 1.2.7-1 (source i386)

2010-02-25 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 21 Feb 2010 14:01:09 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.7-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon jltal...@adv-solutions.net
Changed-By: Jose Luis Tallon jltal...@adv-solutions.net
Description: 
 imapproxy  - IMAP protocol proxy
Changes: 
 up-imapproxy (1.2.7-1) unstable; urgency=low
 .
   * New upstream version (identical to previous)
 .
   * Packaging
 - update to S-V 3.8.4 with no changes
 - fix last lintian warnings
Checksums-Sha1: 
 7fbf7a0053b78ca17c66baa8946db45b21538c11 1137 up-imapproxy_1.2.7-1.dsc
 26e751cb754e955e5664e1d2b5bf85815618ada5 111571 up-imapproxy_1.2.7.orig.tar.bz2
 fbbc5d1970cd51524bc305f0bdc093392490d624 19064 
up-imapproxy_1.2.7-1.debian.tar.gz
 20ce9adfa90f532794aed264dcc52ba74e45249f 57970 imapproxy_1.2.7-1_i386.deb
Checksums-Sha256: 
 c3ece61a7b5a5e1bc1c3468dd5b4cf13782ea015d9ffb4e0450f4370fae19015 1137 
up-imapproxy_1.2.7-1.dsc
 1a24b69ac07924089cb7046e4ac814fd7030cdf2905f3c8104535998d5920f1d 111571 
up-imapproxy_1.2.7.orig.tar.bz2
 f0ba95252c879cf702eb496d501d2b66a64595a8bd1d22ba15f0649f86ba6d7c 19064 
up-imapproxy_1.2.7-1.debian.tar.gz
 8278a9187cf3291e6446b85a3ce864b37f1758f6e9ee134b911bf09e84ccb2d6 57970 
imapproxy_1.2.7-1_i386.deb
Files: 
 aedd729af67734cd3af3cf679acf99d8 1137 mail optional up-imapproxy_1.2.7-1.dsc
 097613b2ae6c7701ff16538586c55496 111571 mail optional 
up-imapproxy_1.2.7.orig.tar.bz2
 87532dd720b7e3c42e9bd941b9954341 19064 mail optional 
up-imapproxy_1.2.7-1.debian.tar.gz
 897d0dc10a8034f5e4dc652336780633 57970 mail optional imapproxy_1.2.7-1_i386.deb

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

iD8DBQFLhqqX1OXtrMAUPS0RApwWAJ9LQPiiya6Q3Gap0X2hEL8nqO+T9QCgl1wj
cPIZVaxDP1ntigBtpWW/+Jc=
=h8wb
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.7-1_i386.deb
  to main/u/up-imapproxy/imapproxy_1.2.7-1_i386.deb
up-imapproxy_1.2.7-1.debian.tar.gz
  to main/u/up-imapproxy/up-imapproxy_1.2.7-1.debian.tar.gz
up-imapproxy_1.2.7-1.dsc
  to main/u/up-imapproxy/up-imapproxy_1.2.7-1.dsc
up-imapproxy_1.2.7.orig.tar.bz2
  to main/u/up-imapproxy/up-imapproxy_1.2.7.orig.tar.bz2


-- 
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/e1nkh6e-00016v...@ries.debian.org



Accepted libconfig 1.3.2-1 (source amd64)

2009-06-20 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Apr 2009 21:13:16 +0200
Source: libconfig
Binary: libconfig8 libconfig++8 libconfig8-dev libconfig++8-dev
Architecture: source amd64
Version: 1.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon jltal...@adv-solutions.net
Changed-By: Jose Luis Tallon jltal...@adv-solutions.net
Description: 
 libconfig++8 - parsing and manipulation of structured configuration files(C++ 
bi
 libconfig++8-dev - parsing and manipulation of structured config files(C++ 
developme
 libconfig8 - parsing and manipulation of structured configuration files
 libconfig8-dev - parsing and manipulation of structured config 
files(development)
Closes: 521725
Changes: 
 libconfig (1.3.2-1) unstable; urgency=low
 .
   * New upstream release (Closes: #521725)
 - soname bump to 8
 - Updated to S-V 3.8.1 with no changes
Checksums-Sha1: 
 4184902c87a0be9374d012ea8abbd1136d51ffda 1154 libconfig_1.3.2-1.dsc
 0dce0cd5fc103c4801feea2f68a9c57dcb16d6dc 531217 libconfig_1.3.2.orig.tar.gz
 c7376cbf4f2b4c95880902daeed9528954563cab 3033 libconfig_1.3.2-1.diff.gz
 08a6ecfb55702b7e1640265a8c776d351c079c9e 50272 libconfig8_1.3.2-1_amd64.deb
 4e0d1617f76a3b20c0a7c15896ecc737fc60320d 40638 libconfig++8_1.3.2-1_amd64.deb
 b7a752ba0f8502382bcd75028d9367cccee79392 213314 
libconfig8-dev_1.3.2-1_amd64.deb
 435a15f2f6643dad9d04f5cc57db8d1f9046ae4d 42686 
libconfig++8-dev_1.3.2-1_amd64.deb
Checksums-Sha256: 
 aa6207a6570a0f2a0e9797d7226cb1bbfd7367daf3c476083a62ce33ab78 1154 
libconfig_1.3.2-1.dsc
 2a680bb33e290c3c799e3a90cf2c0fb9f5482dd930ad93d9f83ce39923258c0a 531217 
libconfig_1.3.2.orig.tar.gz
 c152cc08817b0527ee4c46f2f5f1314f216502127070e35a0ff290e440dc76b9 3033 
libconfig_1.3.2-1.diff.gz
 e19f2740258f7f92c546ea06d2768ca6f3e3eda6fd9b4f0ecbe4d3422523229f 50272 
libconfig8_1.3.2-1_amd64.deb
 82ea6a34720a6d9d0eebe59571efd79875da15e8c93b8537fd40f9659d7c9dd9 40638 
libconfig++8_1.3.2-1_amd64.deb
 ee4c1cc0d6f74d4e451e931b0ec86cc0f6709592ee4a6b438adb18207558a8c9 213314 
libconfig8-dev_1.3.2-1_amd64.deb
 cfbfc9fe10eea8306819f1b0a92f04ccc271a5b066f233e946ff4ca72a08a84e 42686 
libconfig++8-dev_1.3.2-1_amd64.deb
Files: 
 1dfc6ec7b6c3ca0d002180cfc31245cf 1154 libs optional libconfig_1.3.2-1.dsc
 094a82afd382aa2305c6cc3c06025c2d 531217 libs optional 
libconfig_1.3.2.orig.tar.gz
 e889fc76b687b812fe398823d9675dab 3033 libs optional libconfig_1.3.2-1.diff.gz
 595f38f6014e86f2206be882afd342cd 50272 libs optional 
libconfig8_1.3.2-1_amd64.deb
 fa62c478cb0236ac80bfbb869089dc92 40638 libs optional 
libconfig++8_1.3.2-1_amd64.deb
 7fb7dec70a71beca53ca88777ce3e94b 213314 libdevel optional 
libconfig8-dev_1.3.2-1_amd64.deb
 bd140b78a514aaefa3379452f5a6657a 42686 libdevel optional 
libconfig++8-dev_1.3.2-1_amd64.deb

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

iEYEARECAAYFAko2Bx0ACgkQpGK1HsL+5c1m5wCfdfJsUdntlXLMC7jyULcCgxaU
T5MAn3vLzld6O4ZC84hWE7RGPTroDn//
=uuxM
-END PGP SIGNATURE-


Accepted:
libconfig++8-dev_1.3.2-1_amd64.deb
  to pool/main/libc/libconfig/libconfig++8-dev_1.3.2-1_amd64.deb
libconfig++8_1.3.2-1_amd64.deb
  to pool/main/libc/libconfig/libconfig++8_1.3.2-1_amd64.deb
libconfig8-dev_1.3.2-1_amd64.deb
  to pool/main/libc/libconfig/libconfig8-dev_1.3.2-1_amd64.deb
libconfig8_1.3.2-1_amd64.deb
  to pool/main/libc/libconfig/libconfig8_1.3.2-1_amd64.deb
libconfig_1.3.2-1.diff.gz
  to pool/main/libc/libconfig/libconfig_1.3.2-1.diff.gz
libconfig_1.3.2-1.dsc
  to pool/main/libc/libconfig/libconfig_1.3.2-1.dsc
libconfig_1.3.2.orig.tar.gz
  to pool/main/libc/libconfig/libconfig_1.3.2.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 up-imapproxy 1.2.6-5 (source amd64)

2009-02-07 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri,  6 Feb 2009 21:27:19 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source amd64
Version: 1.2.6-5
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon jltal...@adv-solutions.net
Changed-By: Jose Luis Tallon jltal...@adv-solutions.net
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 510432
Changes: 
 up-imapproxy (1.2.6-5) unstable; urgency=high
 .
   * Don't overwrite the config file on upgrades. (Closes: #510432)
 - Urgency=high since we are fixing an RC after the freeze
 - Included patch from Niko Tyni. Many thanks!!
 - Now depends on ucf (= 0.28)
Checksums-Sha1: 
 53ac39555039e70fa1956bec262ac0a41d0a05c6 1108 up-imapproxy_1.2.6-5.dsc
 0e450475c7b640ad60acd93813c12f15917a794a 13881 up-imapproxy_1.2.6-5.diff.gz
 d525c5bfc175d8395c524bb8dac3908c7192adb9 59146 imapproxy_1.2.6-5_amd64.deb
Checksums-Sha256: 
 fc0e5f2392f01e74072f13e3f14ffa29e8c5200769c81ee13438c02282cd747c 1108 
up-imapproxy_1.2.6-5.dsc
 e30725ded04f11ebf1c1d2ed154251dc100cf0a34644ba98f5e671a9d7c63fd0 13881 
up-imapproxy_1.2.6-5.diff.gz
 d57706458a32753e785c4e5c13f23f417cb592c68bf2f41350d655eef537e4db 59146 
imapproxy_1.2.6-5_amd64.deb
Files: 
 3abd77ce05c743d7e19617fd0768116a 1108 mail optional up-imapproxy_1.2.6-5.dsc
 8866032fd0f8a2488983f79bf7e5d1a4 13881 mail optional 
up-imapproxy_1.2.6-5.diff.gz
 108ac55da182a80a80feeb5cb9cc5326 59146 mail optional 
imapproxy_1.2.6-5_amd64.deb

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

iEYEARECAAYFAkmN3e8ACgkQiyizGWoHLTmGBQCgqA9tVcbA06HxcKfHziWpPHBY
/ZIAnjUTH/xe9HP6irpAERBV8W2+jnMq
=ek49
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.6-5_amd64.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.6-5_amd64.deb
up-imapproxy_1.2.6-5.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-5.diff.gz
up-imapproxy_1.2.6-5.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-5.dsc


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



Accepted libconfig 1.3.1-1 (source amd64)

2008-12-29 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 31 Oct 2008 22:13:47 +0100
Source: libconfig
Binary: libconfig6 libconfig++6 libconfig6-dev libconfig++6-dev
Architecture: source amd64
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon jltal...@adv-solutions.net
Changed-By: Jose Luis Tallon jltal...@adv-solutions.net
Description: 
 libconfig++6 - parsing and manipulation of structured configuration files(C++ 
bi
 libconfig++6-dev - parsing and manipulation of structured config files(C++ 
developme
 libconfig6 - parsing and manipulation of structured configuration files
 libconfig6-dev - parsing and manipulation of structured config 
files(development)
Closes: 438683
Changes: 
 libconfig (1.3.1-1) unstable; urgency=low
 .
   * First upload to Debian (Closes: #438683)
 .
   * New upstream release
 - soname bump to 6.1
Checksums-Sha1: 
 767bfd476d37389a035f91aec3821e0a8d975e5d 1123 libconfig_1.3.1-1.dsc
 d7b852cbba70ddd6aba2d5e71be700641bf1a556 524593 libconfig_1.3.1.orig.tar.gz
 8e245ceedc4a22577a05f6165c362e608a6134e1 3222 libconfig_1.3.1-1.diff.gz
 46a351a05808ae32be82c391a7a7083e2e60914c 49592 libconfig6_1.3.1-1_amd64.deb
 5edfbc6f04ed3cfc3a06168450052695f87d8d65 40214 libconfig++6_1.3.1-1_amd64.deb
 d7bb34aad33182d3759be9c455b1f966813e9ae5 24732 libconfig6-dev_1.3.1-1_amd64.deb
 67eacde933a7190e41dfc7879ba982497e5a6a9c 42316 
libconfig++6-dev_1.3.1-1_amd64.deb
Checksums-Sha256: 
 969b8d24b2fe405805305d36053d1c678e3545dfc1b1fb55eb8766a2d0eb536a 1123 
libconfig_1.3.1-1.dsc
 be9a5a5ba77deba640d2c75cd2bfc7ed3c5fe4a0b61d062e74a4dd49b58c2951 524593 
libconfig_1.3.1.orig.tar.gz
 0f08a782509a24f0143e7302675e9092b1c927e15cf6b69f34387be85806fb9a 3222 
libconfig_1.3.1-1.diff.gz
 81eec168b60c0cb700cd04ef9b5726cc8c4ab1cd53577da6c74adac48eaf6d1f 49592 
libconfig6_1.3.1-1_amd64.deb
 d324ccd33e47617c4e762c2567a96f55362b2e756e084f929c33e536eb0474ac 40214 
libconfig++6_1.3.1-1_amd64.deb
 b46539d173e34bf2c3dac46d4cbf8cabfe60103effa4c3160bd48e95b4aeebc4 24732 
libconfig6-dev_1.3.1-1_amd64.deb
 a1df5c035379931a0665dba8c89a2e78890c10ed63fe9b7dc580a58e7f10756f 42316 
libconfig++6-dev_1.3.1-1_amd64.deb
Files: 
 5f6f95c70bf1f35914d8036dc110ca9c 1123 libs optional libconfig_1.3.1-1.dsc
 4ca945f27990b80343f3559c9bce3a3a 524593 libs optional 
libconfig_1.3.1.orig.tar.gz
 a86eabbdc8404c5a3746ac6bc33457e7 3222 libs optional libconfig_1.3.1-1.diff.gz
 25b9a65dec8ca8011fbc42a8c0643757 49592 libs optional 
libconfig6_1.3.1-1_amd64.deb
 de315c301d96db2b0c8a04eb964d13a6 40214 libs optional 
libconfig++6_1.3.1-1_amd64.deb
 c2a5075954ddc8e788582973b97a7e23 24732 libdevel optional 
libconfig6-dev_1.3.1-1_amd64.deb
 596eb5a28636db8154e65e1603bee4cf 42316 libdevel optional 
libconfig++6-dev_1.3.1-1_amd64.deb

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

iEYEARECAAYFAklY47sACgkQpGK1HsL+5c3JZwCg4W38/5Rz81xzS4dkP1gFjDgX
W/sAoM24a5G4KU1zE3rBiyjPF6HKjHcV
=lv3W
-END PGP SIGNATURE-


Accepted:
libconfig++6-dev_1.3.1-1_amd64.deb
  to pool/main/libc/libconfig/libconfig++6-dev_1.3.1-1_amd64.deb
libconfig++6_1.3.1-1_amd64.deb
  to pool/main/libc/libconfig/libconfig++6_1.3.1-1_amd64.deb
libconfig6-dev_1.3.1-1_amd64.deb
  to pool/main/libc/libconfig/libconfig6-dev_1.3.1-1_amd64.deb
libconfig6_1.3.1-1_amd64.deb
  to pool/main/libc/libconfig/libconfig6_1.3.1-1_amd64.deb
libconfig_1.3.1-1.diff.gz
  to pool/main/libc/libconfig/libconfig_1.3.1-1.diff.gz
libconfig_1.3.1-1.dsc
  to pool/main/libc/libconfig/libconfig_1.3.1-1.dsc
libconfig_1.3.1.orig.tar.gz
  to pool/main/libc/libconfig/libconfig_1.3.1.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



Bug#506933: ITP: piwik -- open source web analytics

2008-11-25 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: piwik
  Version : 0.2.24
  Upstream Author : Matt  others pending
* URL : http://www.piwik.org/
* License : GPL-2
  Programming Lang: PHP, JavaScript
  Description : open source web analytics

 Piwik provides detailed reports on your website visitors: the search engines
 and keywords they used, the language they speak, your popular pages and more.
 It aims to be an open source alternative to Google Analytics.
 .
 Piwik is a PHP MySQL software program that you download and install on your
 own webserver. At the end of the five minute installation process you will
 be given a JavaScript tag. Simply copy and paste this tag on websites you
 wish to track, or alternatively, use an existing plugin to do it automatically
 for you. There exist plugins for many popular packages, such as WordPress,
 DokuWiki, Drupal, TYPO3, DotClear2 and more.
 .
 What makes Piwik unique from the competition:
 - Piwik's features are built inside plugins: you can add new features and
 remove the ones you don't need. Open API for plugin developers
 - you own your data: because Piwik is installed on your server, the data is
 stored in your own database and you can get all the statistics using open
 APIs
 - the user interface is fully customizable: you can drag and drop the
 widgets you want to display and create a report especially tailored to you


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)



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



Bug#506933: ITP: piwik -- open source web analytics

2008-11-25 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: piwik
  Version : 0.2.24
  Upstream Author : Matt  others pending
* URL : http://www.piwik.org/
* License : GPL-2
  Programming Lang: PHP, JavaScript
  Description : open source web analytics

 Piwik provides detailed reports on your website visitors: the search engines
 and keywords they used, the language they speak, your popular pages and more.
 It aims to be an open source alternative to Google Analytics.
 .
 Piwik is a PHP MySQL software program that you download and install on your
 own webserver. At the end of the five minute installation process you will
 be given a JavaScript tag. Simply copy and paste this tag on websites you
 wish to track, or alternatively, use an existing plugin to do it automatically
 for you. There exist plugins for many popular packages, such as WordPress,
 DokuWiki, Drupal, TYPO3, DotClear2 and more.
 .
 What makes Piwik unique from the competition:
 - Piwik's features are built inside plugins: you can add new features and
 remove the ones you don't need. Open API for plugin developers
 - you own your data: because Piwik is installed on your server, the data is
 stored in your own database and you can get all the statistics using open
 APIs
 - the user interface is fully customizable: you can drag and drop the
 widgets you want to display and create a report especially tailored to you


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)



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



Bug#506933: ITP: piwik -- open source web analytics

2008-11-25 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: piwik
  Version : 0.2.24
  Upstream Author : Matt  others pending
* URL : http://www.piwik.org/
* License : GPL-2
  Programming Lang: PHP, JavaScript
  Description : open source web analytics

 Piwik provides detailed reports on your website visitors: the search engines
 and keywords they used, the language they speak, your popular pages and more.
 It aims to be an open source alternative to Google Analytics.
 .
 Piwik is a PHP MySQL software program that you download and install on your
 own webserver. At the end of the five minute installation process you will
 be given a JavaScript tag. Simply copy and paste this tag on websites you
 wish to track, or alternatively, use an existing plugin to do it automatically
 for you. There exist plugins for many popular packages, such as WordPress,
 DokuWiki, Drupal, TYPO3, DotClear2 and more.
 .
 What makes Piwik unique from the competition:
 - Piwik's features are built inside plugins: you can add new features and
 remove the ones you don't need. Open API for plugin developers
 - you own your data: because Piwik is installed on your server, the data is
 stored in your own database and you can get all the statistics using open
 APIs
 - the user interface is fully customizable: you can drag and drop the
 widgets you want to display and create a report especially tailored to you


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)



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



Accepted bindgraph 0.2a-4 (source all)

2008-11-17 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 16 Nov 2008 22:50:27 +0100
Source: bindgraph
Binary: bindgraph
Architecture: source all
Version: 0.2a-4
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 bindgraph  - DNS statistics RRDtool frontend for BIND9
Closes: 490102 491938 503713 503742
Changes: 
 bindgraph (0.2a-4) unstable; urgency=low
 .
   * Acknowledge l10n NMU (thanks, Christian) (Closes: #491938)
 .
   * Fix overwritting of user-defined config options
 on upgrade/reconfig (Closes: #503713)
 Preserve changes to /etc/default/bindgraph by applying those settings
 (if available) in debconf before prompting.
 .
   * Set more strict permissions on /var/log/bind9-query.log if/when
 we create it (Closes: #490102)
 .
   * Localization:
 - Dutch (Closes: #503742)
Checksums-Sha1: 
 db7c831c1255f3c3de75295a3a743cb6fc4901f1 1010 bindgraph_0.2a-4.dsc
 bb7b128be4159bebe822075c5b4d750665476aef 21110 bindgraph_0.2a-4.diff.gz
 473b45af5814678d6a0b2e75630243d7fc13209d 23924 bindgraph_0.2a-4_all.deb
Checksums-Sha256: 
 337f90c4dfcd30f98d0444b4038fe2b990f89ff66d89213a856ccfe4489ccd44 1010 
bindgraph_0.2a-4.dsc
 2a24587fe8480ba9146ecc1c5ab41297de8d0dece5185509425cdf7b5cf8708e 21110 
bindgraph_0.2a-4.diff.gz
 77c4f65a72e81f8940a3d92374079bd0f3d0d1a6a973c4bac12eb9246c99bf57 23924 
bindgraph_0.2a-4_all.deb
Files: 
 1ee3a1699146fa7030c65df0d8cbb16e 1010 admin extra bindgraph_0.2a-4.dsc
 d522e9a6f8bacca63aeffc8a97340085 21110 admin extra bindgraph_0.2a-4.diff.gz
 5942a18cdfa3afda5b4d7112bcfe360e 23924 admin extra bindgraph_0.2a-4_all.deb

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

iEYEARECAAYFAkkhID8ACgkQ1OXtrMAUPS0QMQCfVnRxhlhdx4beNrMxHaQKcyp6
HWgAn0Kd0h/T9JiC3D1Qw0+iL7SB264E
=0rxX
-END PGP SIGNATURE-


Accepted:
bindgraph_0.2a-4.diff.gz
  to pool/main/b/bindgraph/bindgraph_0.2a-4.diff.gz
bindgraph_0.2a-4.dsc
  to pool/main/b/bindgraph/bindgraph_0.2a-4.dsc
bindgraph_0.2a-4_all.deb
  to pool/main/b/bindgraph/bindgraph_0.2a-4_all.deb


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



Accepted libsmbios 2.0.3.dfsg-1 (source all amd64)

2008-10-08 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed,  1 Oct 2008 1:15:56 +0200
Source: libsmbios
Binary: libsmbios2 libsmbios-dev libsmbios-bin libsmbios-doc
Architecture: source all amd64
Version: 2.0.3.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios2 - Provide access to (SM)BIOS information -- dynamic library
Closes: 394898 488278 491795 494316
Changes: 
 libsmbios (2.0.3.dfsg-1) unstable; urgency=low
 .
   [ Jose Luis Tallon ]
   * New upstream version (Closes: #494316)
 - merged enhancements from Ubuntu (thanks, guys)
 .
   * debian/control:
 - Drop build depend on libxml2, xml packages since they are no longer
 supported upstream
 - Build libsmbios2 packages (soname bump)
 - Add dpatch to build-depends
 - Enable building on lpia (Closes: #488278)
 .
   * debian/rules:
 - Add dpatch support
 - Don't clean up ltmain.sh, config.sub, or config.guess
   as they are shipped in the upstream tarball (Closes: #491795)
 .
   * Additions:
 - removed (lib)smbiosxml.pc; it isn't needed anymore
 .
   [ Loic Minier ]
   * Add empty dpatch 00list.
   * Add myself as Uploader.
   * Wrap build-deps and deps.
   * Drop useless debian/*.dirs.
   * Cleanup rules; drop useless vars, commented out sample constructs etc.
   * Pass -s to dh_* in binary-arch; call dh_testroot, and dh_install*,
 _compress, _fixperms, _installdeb, _gencontrol, _md5sums, _builddeb in
 binary-indep (with -i).
   * Drop useless dh_installdirs, dh_installexamples and dh_link calls.
   * Actually pass CFLAGS to ./configure; set LDFLAGS in the same way.
   * Prepend -z defs to LDFLAGS for safety with --as-needed.
   * Move configure flags to their own var, configure_flags.
   * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
 differ.
   * Honor distclean exit status.
   * Drop configure from .PHONY, no such target.
   * Add patch and unpatch to .PHONY as dpatch.make doesn't do so.
   * Drop debian/README.Debian which only has a description of the packages and
 still listed libsmbiosxml.
   * Cleanup watch file.
   * Drop maintainer scripts which were mostly unused except for a manual
 ldconfig call which is handled by debhelper anyway.
   * Drop --disable-rpath configure flag; doesn't seem to be supported.
   * Drop duplicate dh_installman call and move man page symlinks to
 binary-arch.
   * Refactor man page symlinks shell snippet.
   * Drop useless debian/libsmbios-bin.docs.
   * Cleanup debian/Makefile.
   * Fix watch file.
   * Cleanup debian/*.install files.
   * Add ${shlibs:Depends} and ${misc:Depends} to libsmbios-dev.
   * Don't fixup the perms or include/smbios; these should be fixed on the
 package's dirs and dh_fixperms will fix them anyway.
   * Let config.status depend on $(DPATCH_STAMPFN) instead of build depending
 on patch-stamp.
   * Bump up debhelper compat level to 5; build-dep on = 5.
   * Disable manpage and symlinks for now; closes: #394898.
   * Build-dep on chpath and chrpath -d binaries in usr/sbin after install to
 drop the RPATHes on the binaries (usually caused by a broken upstream
 libtool).
   * Do update build/config.guess and build/config.sub; this is safe and
 actually recommended; see autotools-dev README.Debian for rationale;
 ideally, we'd also save and restore upstream's files to keep a minimum
 Debian .diff, but this isn't too nice with the dpatch include.
   * Drop now useless libtool bdep.
   * Mention full download address in copyright.
   * Redo copyright and stop installing COPYING-OSL; do some copyright holders
 research aside of the upstream's COPYING information.
   * Don't ship README which only has licensing and build/install information.
   * Stop shipping obsolete TODO.
   * Jump on the SONAME package renaming train to stop shipping *.la files.
   * Fix snippet to avoid shipping boost_LICENSE_1_0_txt in libsmbios-dev.
   * Run testsuite after build unless nocheck is set in DEB_BUILD_OPTIONS.
   * Remove build-stamp in clean.
   * Strip binary blobs from the tarball (hence use a .dfsg version suffix) as
 the upstream tarball includes binary blobs in cppunit/platform/ which are
 memory dumps including a proprietary BIOS; document this in copyright;
 NB: upstream was contacted and will reply ASAP.  Comment out testsuite as
 a result.  Update watch file to mangle version number appropriately.
Checksums-Sha1: 
 bc84580fcd2456851c39690a72b949faff177f47 1167 libsmbios_2.0.3.dfsg-1.dsc
 615b86f1cb032d27fa485fa2f00de42d453ccb57 778370 
libsmbios_2.0.3.dfsg.orig.tar.gz
 9cddcc78746637411d0a9fb1ed79f2ab68bc11ea 11707

Accepted libtrash 2.4-2 (source i386)

2008-09-12 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 5 Sep 2008  1:01:16 +0200
Source: libtrash
Binary: libtrash
Architecture: source i386
Version: 2.4-2
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libtrash   - A trash can library to use with LD_PRELOAD
Closes: 488467
Changes: 
 libtrash (2.4-2) unstable; urgency=medium
 .
   * Applied patch from Mike Hommey to fix consistent SEGV
 on amd64 (bad pointer decl) (Closes: #488467)
 .
   * Upgraded to S-V 3.8.0: added Homepage source control field
Checksums-Sha1: 
 76f1bfce8e84ba9188df878ae3bdb70ea49918b7 1013 libtrash_2.4-2.dsc
 92def84d03abfa10553fcaee4f18857fdbd219d0 3763 libtrash_2.4-2.diff.gz
 16e328fe1a6d946a41f9f66ead900683500cca26 60522 libtrash_2.4-2_i386.deb
Checksums-Sha256: 
 84e7398b9084f23ea57688a7d41e1095c6612c013ea8d00fee30d46162df5d7b 1013 
libtrash_2.4-2.dsc
 6e85c6de65be7e05c754c5ddb229b7ef2de958024447687fcd6d609c90b915d2 3763 
libtrash_2.4-2.diff.gz
 f7550f06146945377e20aede200dce360791af728948af766ceaf70ea41b08f5 60522 
libtrash_2.4-2_i386.deb
Files: 
 a4328e374050b1eef8e898e0d3b012fd 1013 admin optional libtrash_2.4-2.dsc
 f4bcee42ef066c568f7f660fb0f8009d 3763 admin optional libtrash_2.4-2.diff.gz
 1fcfa26b7f86ec5b801f21088a1f1f70 60522 libs optional libtrash_2.4-2_i386.deb

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

iEYEARECAAYFAkjKoBIACgkQlAuUx1tI/65UYgCeLHSnKWOYq0oa/4mvMEwVek/4
V6wAniK+gNPFu7waFTWByAaK/k6icN7S
=/XYM
-END PGP SIGNATURE-


Accepted:
libtrash_2.4-2.diff.gz
  to pool/main/libt/libtrash/libtrash_2.4-2.diff.gz
libtrash_2.4-2.dsc
  to pool/main/libt/libtrash/libtrash_2.4-2.dsc
libtrash_2.4-2_i386.deb
  to pool/main/libt/libtrash/libtrash_2.4-2_i386.deb


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



Accepted up-imapproxy 1.2.6-4 (source i386)

2008-06-26 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Jun 2008 02:18:37 +0200
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.6-4
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 487761
Changes: 
 up-imapproxy (1.2.6-4) unstable; urgency=medium
 .
   * 'postinst' script: configuration file processing
 - Fix typo which would truncate existing config file (Closes: #487761)
 .
   * Packaging enhancement: remove all files created during installation
 (postinst), but leave alone any user-created files unless purging
Checksums-Sha1: 
 83e0c9d834294f755d66b0d2a92cdbcbfda45cb7 1108 up-imapproxy_1.2.6-4.dsc
 ef397a5a77a3da8458d3772835820f497cec01e4 13410 up-imapproxy_1.2.6-4.diff.gz
 4d1666a716ad6d6fbb7d5d2dbc5b16e5050144a7 55396 imapproxy_1.2.6-4_i386.deb
Checksums-Sha256: 
 1e2498575e820c95234063e85e0bad7216c1283cda2f62d7627595ec72f5ea57 1108 
up-imapproxy_1.2.6-4.dsc
 c0edd94642c06739a4148c5af372314cf4d57ade4733c888562a1550076e986c 13410 
up-imapproxy_1.2.6-4.diff.gz
 78af78d4f8c9d2a1945db304c4cdc2f55c114a45664de372b5b6c6aad16677c0 55396 
imapproxy_1.2.6-4_i386.deb
Files: 
 89837b9f44dff77aa62046d69619b759 1108 mail optional up-imapproxy_1.2.6-4.dsc
 ccd6e83fdf3f3fb5f1134afb0c04f54f 13410 mail optional 
up-imapproxy_1.2.6-4.diff.gz
 1397da789c13dd44d73dae181242bf4c 55396 mail optional imapproxy_1.2.6-4_i386.deb

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

iEYEARECAAYFAkhj1/gACgkQ1OXtrMAUPS3C+QCdE3We8Pim5btG3jnic0GDdrMl
NvkAoLki8JSssFbG/3wlLrqIZ+kINL+F
=IJKj
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.6-4_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.6-4_i386.deb
up-imapproxy_1.2.6-4.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-4.diff.gz
up-imapproxy_1.2.6-4.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-4.dsc


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



Accepted up-imapproxy 1.2.6-3 (source i386)

2008-06-23 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 22 Jun 2008 23:03:20 +0200
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.6-3
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Changes: 
 up-imapproxy (1.2.6-3) unstable; urgency=low
 .
   * postinst script: configuration file processing
 - PERL 5.10 introduces an incompatibility affecting cfg file creation
 - Updated the relevant script to work properly under this version
Checksums-Sha1: 
 7134bf8ad21efd0e6328f8c818867727f12c99c0 1108 up-imapproxy_1.2.6-3.dsc
 8c204d0111db99f9f68243e9f3ed48ca60aee0ce 13159 up-imapproxy_1.2.6-3.diff.gz
 0ba567de1a9e3df94e1ad0b4fb7d13993954746a 55202 imapproxy_1.2.6-3_i386.deb
Checksums-Sha256: 
 ceb992fec243ac11e1619f18525e1bf8984e77a60919845c260bbb73a85d4047 1108 
up-imapproxy_1.2.6-3.dsc
 6e72c549b818a1e3ec8ed2ec69a02ee092989ddef6c9c5cbf9f7969e478f4789 13159 
up-imapproxy_1.2.6-3.diff.gz
 5a947669f87571bac7a0e2bdf7eace3c02e9df4350a4d0baaa589a601a47ed59 55202 
imapproxy_1.2.6-3_i386.deb
Files: 
 fd2e789345a3a8bcb225a1d1559a8afc 1108 mail optional up-imapproxy_1.2.6-3.dsc
 dfbced50eef808d39c389f4df52a5006 13159 mail optional 
up-imapproxy_1.2.6-3.diff.gz
 e32a295c168421eb5b095da24c028005 55202 mail optional imapproxy_1.2.6-3_i386.deb

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

iEYEARECAAYFAkhf630ACgkQ1OXtrMAUPS0wCQCgsy2qwHhwnzTXO0f5V8UpiNRw
M0kAoJLIhoJCQCYkxbLRRuNip4TWJeBG
=zZeb
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.6-3_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.6-3_i386.deb
up-imapproxy_1.2.6-3.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-3.diff.gz
up-imapproxy_1.2.6-3.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-3.dsc


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



Accepted up-imapproxy 1.2.6-2 (source i386)

2008-06-18 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Jun 2008 00:59:55 +0200
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.6-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 400454 436555 452298 452298 470431 485488 485743 486161 486533
Changes: 
 up-imapproxy (1.2.6-2) unstable; urgency=low
 .
   * Packaging
 - Updated to Standards-Version 3.8.0 with no changes:
 Homepage control field was already there
 we unfortunately do not support parallel=n builds.
 - Minor fix to debian/rules to clean stale 'stamp-h' file
 .
   * Configuration
 - Changed local listen port when configured to bind to localhost
   (default) -- fixes new behaviour in 1.2.5 (Closes: #470431)
 - By default, copy etc/localtime to chroot directory (Closes: #436555)
 .
   * Licensing et al.
 - Updated debian/copyright wrt OpenSSL exception (Closes: #400454)
   Upstream has been requested to document it themselves.
 .
   * Localization
 - Included russian translation (ru.po) (Closes: #452298)
 - Re-included portuguese translation, which got misplaced sometime
   after 1.2.4-5 (Closes: #452298)
 - Galician (Closes: #485488)
 - Vietnamese (Closes: #485743)
 - Basque [euskera] (Closes: #486161)
 - Turkish (Closes: #486533)
Checksums-Sha1: 
 d73cafab3b082c88b42a6590972f919840342876 1108 up-imapproxy_1.2.6-2.dsc
 49e5ec57f1836cd1a8e64383585da52648fd4bcd 13028 up-imapproxy_1.2.6-2.diff.gz
 f52ed6fec1f82d7acada330473872dda7ca01f54 55072 imapproxy_1.2.6-2_i386.deb
Checksums-Sha256: 
 65606566f2b8fbe5cf6fa82396dd7cb64c8c03b3e31a644f61f5bdaada28dccd 1108 
up-imapproxy_1.2.6-2.dsc
 6cec708d848903b8ccf9972ad43b2d8aaeebc8b122d49d7ba69a1cfbec9fe8a6 13028 
up-imapproxy_1.2.6-2.diff.gz
 bfbe87a83d242139ff4b93a92b24207b4ca5bc2e25b8125588774bb990aeefeb 55072 
imapproxy_1.2.6-2_i386.deb
Files: 
 77c457ae3c944fb0933443d81b49b867 1108 mail optional up-imapproxy_1.2.6-2.dsc
 b98d3bd57a74ee3518403ba76cc562fd 13028 mail optional 
up-imapproxy_1.2.6-2.diff.gz
 2849f9ae3b452359bfd65eb3547cdd5d 55072 mail optional imapproxy_1.2.6-2_i386.deb

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

iEYEARECAAYFAkhZOjIACgkQ1OXtrMAUPS3i1wCfRt+zrh3gACD5s7piCeizMgn+
uz8AoLNNGyIK/Wyf1F332Nvto0TbOYeT
=+tVL
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.6-2_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.6-2_i386.deb
up-imapproxy_1.2.6-2.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-2.diff.gz
up-imapproxy_1.2.6-2.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-2.dsc


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



Accepted bindgraph 0.2a-3 (source all)

2008-05-10 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 09 Mar 2008 01:18:35 +0100
Source: bindgraph
Binary: bindgraph
Architecture: source all
Version: 0.2a-3
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 bindgraph  - DNS statistics RRDtool frontend for BIND9
Closes: 318458 414729 427160 427204 462407 475388
Changes: 
 bindgraph (0.2a-3) unstable; urgency=high
 .
   * Acknowledge NMU
 - Updated to S-V 3.7.3 with no changes
 .
   * Bindgraph.cgi already worked with RRDtool 1.2.x since 2a (Closes: #462407)
 .
   * Reconfigure now updates logfile location (Closes: 318458)
 .
   * Debconf translations
 - Vietnamese (Closes: #427204)
 - Danish (Closes: #427160)
 - Finish (Closes: #475388)
 - Traditional Chinese (Closes: #414729)
 .
   * Remove debconf note 'configure_bind', considered to be abusive.
Checksums-Sha1: 
 1a99a02aab0f9e3747df31dc4eaafe712960f42c 1002 bindgraph_0.2a-3.dsc
 36fda48175a079d5e34a5cbd6725ca2e99d2a2e5 2 bindgraph_0.2a-3.diff.gz
 75f7a4623bceea0878eda811ce5e28e225a4918e 22580 bindgraph_0.2a-3_all.deb
Checksums-Sha256: 
 b53b005ebbc021b252bde16b5c04bb7ef08316a0528d6ad7e9f1ae012a58cf97 1002 
bindgraph_0.2a-3.dsc
 de0a8c1975902d95fbee50ca03f99bbce69c3347a8ce897f45f5bbc1a6249e33 2 
bindgraph_0.2a-3.diff.gz
 a5f989f4a7ade32722e92c31a3dc6f5754804ec96212bcdcc06581187054f3b1 22580 
bindgraph_0.2a-3_all.deb
Files: 
 629a4a7e404a47575210359bc34b5e62 1002 admin extra bindgraph_0.2a-3.dsc
 95969ffc6366d5018d288169f55de4e2 2 admin extra bindgraph_0.2a-3.diff.gz
 32873020ad9981412fcaeec49a38e15b 22580 admin extra bindgraph_0.2a-3_all.deb

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

iD8DBQFIJaKu1OXtrMAUPS0RApIgAJ4gbhOlxEvFkcJM55Lo30yu0RoUxQCdGIIN
AIg7X4sCQSvUXRmMJeMf2vY=
=crqp
-END PGP SIGNATURE-


Accepted:
bindgraph_0.2a-3.diff.gz
  to pool/main/b/bindgraph/bindgraph_0.2a-3.diff.gz
bindgraph_0.2a-3.dsc
  to pool/main/b/bindgraph/bindgraph_0.2a-3.dsc
bindgraph_0.2a-3_all.deb
  to pool/main/b/bindgraph/bindgraph_0.2a-3_all.deb


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



Bug#480530: libconfig: package name too generic; conflicts with other projects

2008-05-10 Thread Jose Luis Tallon
Package: libconfig
Severity: important
Tags: patch

ABZ's libconfig conflicts with HyperRealm's libconfig in its basename
(the actual sonames are different: libconfig0 for Abraham's, libconfig3 for
hyperrealms')

Querying the rdepends shows that no packages depend on libconfig:

$ apt-cache rdepends libconfig0
libconfig0
Reverse Depends:
  libconfig0-dev


I request that libconfig be renamed as libabzconfig, to make room for
hyperrealms' libconfig.

RATIONALE: As Abraham himself recognized, libabzconfig is only intended to
be used by his own projects.
On the other hand, hyperrealms' is designed to be widely used by other
projects.

In the spirit of keeping the namespace as clean and uncluttered as possible,
I think that we should give the libconfig name to the most general package
among them.
Abraham's other library is already called libabz0, so libabzconfig or
libabz-config would be a very suitable name for this.


Besides, as #438683 states, other DDs (namely, at least Julien Danjou) are
interested in having hyperrealms' libconfig in Debian.
Vincent Bernat also seems to agree on the proposed name change.

Despite ABZ's claim in the bug report (10th Aug 2007), the latest upload 
happened 
almost five years ago, and the package is essentially unmaintained since
then (e.g. Standards-Version 3.5.2)


Full disclosure: Hyperrealm's libconfig is a direct dependency of a
framework which I am going to package (as I stated in the aforementioned bug
report)


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.25.1 (SMP w/2 CPU cores; PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash



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



Bug#478779: ITP: mumble -- Low latency VoIP system

2008-04-30 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: mumble
  Version : 1.1.3
  Upstream Author : Mikkel Krautz [EMAIL PROTECTED] and others
* URL : http://mumble.sourceforge.net/
* License : GPL-2
  Programming Lang: C++
  Description : Low latency VoIP system

 Mumble is a low-latency, high quality voice chat program for gaming.
 It features noise suppression, automatic gain control and low latency audio
 with support for multiple audio standards.
 Mumble includes an in-game overlay compatible with most open-source and
 commercial 3D applications.
 Mumble is just a client and uses a non-standard protocol. You will need
 a dedicated server to talk to other users. Server functionality is provided
 by the package mumble-server.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22.5 (SMP w/2 CPU cores; PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash



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



Accepted libsieve 2.2.6-1 (source amd64)

2008-04-30 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Apr 2008 20:22:45 +0200
Source: libsieve
Binary: libsieve2-dev libsieve2-1
Architecture: source amd64
Version: 2.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsieve2-1 - a library for parsing, sorting and filtering your mail
 libsieve2-dev - a library for parsing, sorting and filtering your mail
Closes: 411070
Changes: 
 libsieve (2.2.6-1) unstable; urgency=low
 .
   * New upstream version
 - Updated build-depends (added flex)
 - Updated to Standards-Version 3.7.3 with no changes
 .
   * Conflict with libmailutils1 (Closes: 411070)
 - temporary fix until maintainer decides to split libsieve.so.1
 into another package
Checksums-Sha1: 
 1fc70a5cf27d154eac3924190e182621cc2b80f5 1038 libsieve_2.2.6-1.dsc
 5746d56a9ce50ae773a5f690c3163dd0dd6bc8ea 564722 libsieve_2.2.6.orig.tar.gz
 98b9f2b45c1ad845c280c58104e13cff22dbcfd5 5147 libsieve_2.2.6-1.diff.gz
 c71e1e6799ec41395716bf9e25c9d56bff7e9800 106438 libsieve2-dev_2.2.6-1_amd64.deb
 15645ded03d40e7da3dde7e09fa17cdfa6eccbc9 83134 libsieve2-1_2.2.6-1_amd64.deb
Checksums-Sha256: 
 0d2d91cbb3fbcb9588c36ca2c783ff981721e5194caab918f79baecf5814c52c 1038 
libsieve_2.2.6-1.dsc
 dce45d73fba98afbffc6fbb6743b3f727cd41d5d3b09ac398a0cb90b21e7f0f0 564722 
libsieve_2.2.6.orig.tar.gz
 f1dbd51183e23613e3c90c2ebb30f799b990a67088efb3cc623622877d84bc9d 5147 
libsieve_2.2.6-1.diff.gz
 278707b2eae1ef0f0d123b3673151a235a8e1328dcaf9bbf21b1014f2ce657a6 106438 
libsieve2-dev_2.2.6-1_amd64.deb
 2a1d3bed9cbbe5e42c4a736b8681ce51d686832b4d304c65d90001279186efac 83134 
libsieve2-1_2.2.6-1_amd64.deb
Files: 
 0074ead02561dbc8ba4ae49c3285127d 1038 libs optional libsieve_2.2.6-1.dsc
 c97050a3e823de8f6e960ab92cd8bd98 564722 libs optional 
libsieve_2.2.6.orig.tar.gz
 500a611e812a51903274ecfebfa21720 5147 libs optional libsieve_2.2.6-1.diff.gz
 e8128c9f0fa4cdeefad3799270d0ed8a 106438 libdevel optional 
libsieve2-dev_2.2.6-1_amd64.deb
 23de20783b39ba698b585587ed0077a1 83134 libs optional 
libsieve2-1_2.2.6-1_amd64.deb

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

iEYEARECAAYFAkgYSVYACgkQNFDtUT/MKpB6ngCgpmKChhKFhR3wGs0Xkug5gsHu
4AAAoO6foYaj8rk/kMrDH7MVZGkzlnK2
=1HGv
-END PGP SIGNATURE-


Accepted:
libsieve2-1_2.2.6-1_amd64.deb
  to pool/main/libs/libsieve/libsieve2-1_2.2.6-1_amd64.deb
libsieve2-dev_2.2.6-1_amd64.deb
  to pool/main/libs/libsieve/libsieve2-dev_2.2.6-1_amd64.deb
libsieve_2.2.6-1.diff.gz
  to pool/main/libs/libsieve/libsieve_2.2.6-1.diff.gz
libsieve_2.2.6-1.dsc
  to pool/main/libs/libsieve/libsieve_2.2.6-1.dsc
libsieve_2.2.6.orig.tar.gz
  to pool/main/libs/libsieve/libsieve_2.2.6.orig.tar.gz


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



Accepted lcdproc 0.5.2-1 (source amd64)

2008-04-30 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 09 Mar 2008 00:25:50 +0100
Source: lcdproc
Binary: lcdproc
Architecture: source amd64
Version: 0.5.2-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 lcdproc- LCD display driver daemon and clients
Closes: 400066
Changes: 
 lcdproc (0.5.2-1) unstable; urgency=medium
 .
   * New upstream version
 .
   * Compilation issues
 - restrict building to just i386, amd64 (Closes: #400066)
 .
   * Packaging
 - bumped standards-version to 3.7.3 with no changes
Checksums-Sha1: 
 46f97c2b1cbaac528d90791e775988142db917c9 1086 lcdproc_0.5.2-1.dsc
 924fca84eb5a07464a3d38df86d9a4427fd06dd7 822695 lcdproc_0.5.2.orig.tar.gz
 d1353854bda38d6013bb2297e04f4cb09f8795f6 13058 lcdproc_0.5.2-1.diff.gz
 b6e91dc6c9d0e21b9b2aa7891c2490b10c62b0c5 372716 lcdproc_0.5.2-1_amd64.deb
Checksums-Sha256: 
 a7884d7f6d31dcbb8507d75f4eee50569d0683dd5bd072c1b22c6fe179fcaf19 1086 
lcdproc_0.5.2-1.dsc
 3261910dd9155229a2a6067c82ec4cca0d7900420f2d74c87a24b41b9b961036 822695 
lcdproc_0.5.2.orig.tar.gz
 a7334b536a54d739ebdfe8ff44965d4007a74d620e11875fc27aaf7f5b6b13fc 13058 
lcdproc_0.5.2-1.diff.gz
 5cd2760632a495a1855482c138f117b4af189bbeb19824acf0ab4feedf8ae16e 372716 
lcdproc_0.5.2-1_amd64.deb
Files: 
 7fba7130dfa1e27f6d21b3f20be51727 1086 utils extra lcdproc_0.5.2-1.dsc
 860f192d061d87dda6512b11b79daac2 822695 utils extra lcdproc_0.5.2.orig.tar.gz
 193b0798972dd935247616871677e15a 13058 utils extra lcdproc_0.5.2-1.diff.gz
 f956ab58817f5bb5cba724f838d351bc 372716 utils extra lcdproc_0.5.2-1_amd64.deb

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

iEYEARECAAYFAkgYSFEACgkQNFDtUT/MKpBEBACgmlswoqWx1M7ZOPTVRlHv3X4S
gM4AnjQM+6mkP2WpBv8gaRHGUGuG4A0W
=fqoc
-END PGP SIGNATURE-


Accepted:
lcdproc_0.5.2-1.diff.gz
  to pool/main/l/lcdproc/lcdproc_0.5.2-1.diff.gz
lcdproc_0.5.2-1.dsc
  to pool/main/l/lcdproc/lcdproc_0.5.2-1.dsc
lcdproc_0.5.2-1_amd64.deb
  to pool/main/l/lcdproc/lcdproc_0.5.2-1_amd64.deb
lcdproc_0.5.2.orig.tar.gz
  to pool/main/l/lcdproc/lcdproc_0.5.2.orig.tar.gz


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



Accepted kchmviewer 3.1-2 (source amd64)

2008-04-30 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Apr 2008 01:27:32 +0200
Source: kchmviewer
Binary: kchmviewer
Architecture: source amd64
Version: 3.1-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Closes: 449696 474869
Changes: 
 kchmviewer (3.1-2) unstable; urgency=low
 .
   * Fixed FTBFS with gcc-4.3 (Closes: #474869)
 - Updated to S-V 3.7.3 with no changes
 .
   * Fixed uscan (Closes: #449696)
Checksums-Sha1: 
 ec3c68dc8e1e24441c4ae5d15f678eadce1213d7 1008 kchmviewer_3.1-2.dsc
 8eb74ceb0fe8e5873260b623e7a5550a265baead 4003 kchmviewer_3.1-2.diff.gz
 7b89c42f4d4a73fd43cf75b208e1bc6c97879315 453320 kchmviewer_3.1-2_amd64.deb
Checksums-Sha256: 
 6d1cbf0855b59670de89283d86d395c5243c2e4446c487c51ba6198ed26cf075 1008 
kchmviewer_3.1-2.dsc
 d79fab42d874faf92b1d179702a39a861db6ebd392ed2df2ae10ad161809302f 4003 
kchmviewer_3.1-2.diff.gz
 32cf328a4c6d352862a55c3b799cca95283ba3b40f80032bdd24590cc1044202 453320 
kchmviewer_3.1-2_amd64.deb
Files: 
 d96079f641ee3f06a32a7a10fc1f6c50 1008 kde optional kchmviewer_3.1-2.dsc
 499214da5033985c44599648dfdf7e09 4003 kde optional kchmviewer_3.1-2.diff.gz
 fb084dd882820659e337f1d1976f1511 453320 kde optional kchmviewer_3.1-2_amd64.deb

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

iEYEARECAAYFAkgYhTQACgkQNFDtUT/MKpCn9gCgiWaBt5gdWLDF8Oek28TqUUWG
IDAAoJW/C9GoUKCR/gSrHNUlRLwrskO+
=o1LD
-END PGP SIGNATURE-


Accepted:
kchmviewer_3.1-2.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_3.1-2.diff.gz
kchmviewer_3.1-2.dsc
  to pool/main/k/kchmviewer/kchmviewer_3.1-2.dsc
kchmviewer_3.1-2_amd64.deb
  to pool/main/k/kchmviewer/kchmviewer_3.1-2_amd64.deb


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



Accepted couriergraph 0.25-4 (source all)

2008-04-30 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 17 Jun 2007 14:48:33 +0200
Source: couriergraph
Binary: couriergraph
Architecture: source all
Version: 0.25-4
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 couriergraph - Mail statistics RRDtool frontend for Courier-{POP,IMAP}
Closes: 369839 410013 468134
Changes: 
 couriergraph (0.25-4) unstable; urgency=low
 .
   * Acknowledge previous NMUs. Thank you, guys.
 .
   * Packaging
 - Add LSB dependency info (Closes: #468134)
 - Ensured debhelper 4 compatibility level
 - Updated to S-V 3.7.3 with no changes
 .
   * Cosmetic changes
 - Fix graph formatting (Closes: #410013)
 - Ensure README.Debian is accurate (Closes: #369839)
Checksums-Sha1: 
 c685736cf0b1e7a22fc28db28dd528a8600a48ed 1028 couriergraph_0.25-4.dsc
 eb4c88dd44694303544789fcfc744de607cb9d5c 16960 couriergraph_0.25-4.diff.gz
 0ff761559852084900958cf25931ac7bf01ee24f 19564 couriergraph_0.25-4_all.deb
Checksums-Sha256: 
 c2163a3eea2aed468767e0964cd05fde190bbb6c06d3fffbfe7fd7ec58626b13 1028 
couriergraph_0.25-4.dsc
 ffb9e3461a183f582fe9e6e9f17afd491c4ac546db469ef72459e49b9ea8c97e 16960 
couriergraph_0.25-4.diff.gz
 8f6b5f17fa7a5df56daf671d3e4ca41dd83b4e14075214e958f38375d5c12dfd 19564 
couriergraph_0.25-4_all.deb
Files: 
 eb84b1928e704f8ad6a5667b94aeb7ae 1028 admin extra couriergraph_0.25-4.dsc
 38a7a1b79510830bcce713754bf2c12f 16960 admin extra couriergraph_0.25-4.diff.gz
 bac3e969c97f06a5eea746cf78613617 19564 admin extra couriergraph_0.25-4_all.deb

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

iEYEARECAAYFAkgYpAcACgkQNFDtUT/MKpDxgwCgrN2/mjlt8HDZcuW8hDSna/hH
opkAoNEdvHpHRpertrJkFgHiBgbbyjOC
=rIo1
-END PGP SIGNATURE-


Accepted:
couriergraph_0.25-4.diff.gz
  to pool/main/c/couriergraph/couriergraph_0.25-4.diff.gz
couriergraph_0.25-4.dsc
  to pool/main/c/couriergraph/couriergraph_0.25-4.dsc
couriergraph_0.25-4_all.deb
  to pool/main/c/couriergraph/couriergraph_0.25-4_all.deb


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



Bug#478779: ITP: mumble -- Low latency VoIP system

2008-04-30 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: mumble
  Version : 1.1.3
  Upstream Author : Mikkel Krautz [EMAIL PROTECTED] and others
* URL : http://mumble.sourceforge.net/
* License : GPL-2
  Programming Lang: C++
  Description : Low latency VoIP system

 Mumble is a low-latency, high quality voice chat program for gaming.
 It features noise suppression, automatic gain control and low latency audio
 with support for multiple audio standards.
 Mumble includes an in-game overlay compatible with most open-source and
 commercial 3D applications.
 Mumble is just a client and uses a non-standard protocol. You will need
 a dedicated server to talk to other users. Server functionality is provided
 by the package mumble-server.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22.5 (SMP w/2 CPU cores; PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash



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



Bug#478779: ITP: mumble -- Low latency VoIP system

2008-04-30 Thread Jose Luis Tallon
Package: wnpp
Severity: wishlist
Owner: Jose Luis Tallon [EMAIL PROTECTED]


* Package name: mumble
  Version : 1.1.3
  Upstream Author : Mikkel Krautz [EMAIL PROTECTED] and others
* URL : http://mumble.sourceforge.net/
* License : GPL-2
  Programming Lang: C++
  Description : Low latency VoIP system

 Mumble is a low-latency, high quality voice chat program for gaming.
 It features noise suppression, automatic gain control and low latency audio
 with support for multiple audio standards.
 Mumble includes an in-game overlay compatible with most open-source and
 commercial 3D applications.
 Mumble is just a client and uses a non-standard protocol. You will need
 a dedicated server to talk to other users. Server functionality is provided
 by the package mumble-server.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22.5 (SMP w/2 CPU cores; PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash



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



Accepted up-imapproxy 1.2.6-1 (source i386)

2008-03-10 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  4 Feb 2008 23:49:37 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Changes: 
 up-imapproxy (1.2.6-1) unstable; urgency=low
 .
   * New upstream version
 - Upstream included all debian-specific patches
 .
   * Build process
 - Updated to Standards-Version 3.7.3
 - Updated build dependencies
 - As needed linking
Files: 
 46a852a859002c26292c55d3d3440ca2 994 mail optional up-imapproxy_1.2.6-1.dsc
 decc6693a1497e5a1bc5704e5ed28c9b 134745 mail optional 
up-imapproxy_1.2.6.orig.tar.gz
 48dda96eaa3db9851f998e52328cde1b 11909 mail optional 
up-imapproxy_1.2.6-1.diff.gz
 3de1ea470382105f43524d6453a11097 53684 mail optional imapproxy_1.2.6-1_i386.deb

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

iQEVAwUBR9VM3mz0hbPcukPfAQKT+ggAhRe3tdx9IW72MpjG6YLInbS4dIbnWrl5
9aJNyKf8li4GcYWe2muuYov7fy7RL5iALRF+E4pFtiZoe1NS4lbeDoXXLpdGB/1L
vH17bUXDu3aPpLmTyaIiQXDhO1m4fF5DRvCCbX5Fzdwpmitv7YtsOkaZzDbFFr6A
f7MfW5Lwsz8XgC8II9RWOQGr64hDCVF2LnJHLqpa1UaXKH50ob/9b9cBOMrF9qC5
p96ABryLkMhjiZasR6ff4wvJ8VSszojSTmnMUYIRBB5b0rSlCOUL3InriZED2/eC
nQEoszawVQBa56PDrBeflMAT3I2nKm//wil2BeiUV+yZA013+wHHtQ==
=nUVM
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.6-1_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.6-1_i386.deb
up-imapproxy_1.2.6-1.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-1.diff.gz
up-imapproxy_1.2.6-1.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6-1.dsc
up-imapproxy_1.2.6.orig.tar.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.6.orig.tar.gz


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



Accepted libsmbios 0.13.13-1 (source all amd64)

2008-03-09 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 07 Mar 2008 23:40:37 +0100
Source: libsmbios
Binary: libsmbios1 libsmbios-dev libsmbios-bin libsmbios-doc libsmbiosxml1 
libsmbiosxml-dev
Architecture: source amd64 all
Version: 0.13.13-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 443723 455641
Changes: 
 libsmbios (0.13.13-1) unstable; urgency=low
 .
   * Fixed FTBFS with gcc4.3 *again* (Closes: 455641)
 - Thanks to Cyril Brulebois for providing the patch
 .
   * Added missing additional README files (Closes: #443723)
Files: 
 61ca7179c544de472e1434409bb13137 759 libs optional libsmbios_0.13.13-1.dsc
 a6901017eebef17abcec59f2e30a27b6 3802626 libs optional 
libsmbios_0.13.13.orig.tar.gz
 d2b8d0c6508cefc46a1da8c87ed27b67 8061 libs optional libsmbios_0.13.13-1.diff.gz
 e2378b0c6bf67e60b6ca76de8490e5ce 210500 libs optional 
libsmbios1_0.13.13-1_amd64.deb
 5911f913560f098cb31278aa24f02947 529888 libdevel optional 
libsmbios-dev_0.13.13-1_amd64.deb
 868d44ec4039b56ac26468d5e8781583 04 admin optional 
libsmbios-bin_0.13.13-1_amd64.deb
 99306c048b4b749aaa4a1e1a4347 6869826 libs optional 
libsmbios-doc_0.13.13-1_all.deb
 e45bd7c1d0a0d5271e88f9e5d9887e74 56890 libs optional 
libsmbiosxml1_0.13.13-1_amd64.deb
 5877a07536e107309ee6395b92dc92ca 66304 libdevel optional 
libsmbiosxml-dev_0.13.13-1_amd64.deb

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

iD8DBQFH08AuKb5dImj9VJ8RAiWSAJwIAamLcjykFa1tGLL+I+BTRTANrwCgkZGF
yNQlwFFZ+mJ79Zq5mMPQLWM=
=8jAn
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.13.13-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.13.13-1_amd64.deb
libsmbios-dev_0.13.13-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.13.13-1_amd64.deb
libsmbios-doc_0.13.13-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.13.13-1_all.deb
libsmbios1_0.13.13-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios1_0.13.13-1_amd64.deb
libsmbios_0.13.13-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.13-1.diff.gz
libsmbios_0.13.13-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.13.13-1.dsc
libsmbios_0.13.13.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.13.orig.tar.gz
libsmbiosxml-dev_0.13.13-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.13.13-1_amd64.deb
libsmbiosxml1_0.13.13-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.13.13-1_amd64.deb


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



Accepted libsmbios 0.13.10-1 (source all amd64)

2007-09-10 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun,  7 Sep 2007 23:46:42 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all amd64
Version: 0.13.10-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 441288
Changes: 
 libsmbios (0.13.10-1) unstable; urgency=low
 .
   * New upstream version (Closes: #441288)
 .
   * Build process fixes/enhancements
 - Fixed debian/control to be binNMU-safe
 - Upstream's libtool had enabled 'rpath': re-libtoolize'd source
 - Added dependency on libtool following fix above
 .
   * Kudos to Julien Blache for his support and sponsoring
Files: 
 170f0c5c6a61fe71a9de31b1f63d43b5 760 libs optional libsmbios_0.13.10-1.dsc
 23faf207803e7249be7662697f8218a9 3802278 libs optional 
libsmbios_0.13.10.orig.tar.gz
 1b885398a6d7d6eb87099b7c323acd9d 55825 libs optional 
libsmbios_0.13.10-1.diff.gz
 2b12d36c0a433be514c8335d2fe4934d 212002 libs optional 
libsmbios1_0.13.10-1_amd64.deb
 2b644597fe57191b28d2c7eb1d0dd5e2 528634 libdevel optional 
libsmbios-dev_0.13.10-1_amd64.deb
 a6964fb0324a4966eab6bfa52c02a5f9 110282 admin optional 
libsmbios-bin_0.13.10-1_amd64.deb
 4ada58c290c158d66e7297ce841ee06c 31351386 libs optional 
libsmbios-doc_0.13.10-1_all.deb
 173491af328bcfb799ba5080938838a4 57394 libs optional 
libsmbiosxml1_0.13.10-1_amd64.deb
 cad46510e1a2df5ad667178e6857db52 66382 libdevel optional 
libsmbiosxml-dev_0.13.10-1_amd64.deb

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

iD8DBQFG5TxtzWFP1/XWUWkRAluJAJ9DkuLI3+hYemjm+bfYzbfmTB7oDgCg4AXF
9Slb2rulem3w0sK8dd+6Xzs=
=E1aU
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.13.10-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.13.10-1_amd64.deb
libsmbios-dev_0.13.10-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.13.10-1_amd64.deb
libsmbios-doc_0.13.10-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.13.10-1_all.deb
libsmbios1_0.13.10-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios1_0.13.10-1_amd64.deb
libsmbios_0.13.10-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.10-1.diff.gz
libsmbios_0.13.10-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.13.10-1.dsc
libsmbios_0.13.10.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.10.orig.tar.gz
libsmbiosxml-dev_0.13.10-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.13.10-1_amd64.deb
libsmbiosxml1_0.13.10-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.13.10-1_amd64.deb


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



Accepted kchmviewer 3.1-1 (source i386)

2007-07-03 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 17 Jun 2007 13:55:44 +0200
Source: kchmviewer
Binary: kchmviewer
Architecture: source i386
Version: 3.1-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Closes: 403032 420561 428128
Changes: 
 kchmviewer (3.1-1) unstable; urgency=low
 .
   * New upstream version (Closes: #428128)
 - Fixed crash if last file gone (Closes: #420561)
 .
   * Fixed menu entry to file into Apps/Viewers (Closes: #403032)
Files: 
 54e677a9d96e4ec6b2a7a2f0a39b3290 620 kde optional kchmviewer_3.1-1.dsc
 bc376ce29784f33bf0b5f8d1ae5141bf 945640 kde optional kchmviewer_3.1.orig.tar.gz
 92ea98c08557cf12c27c77436964ea49 3819 kde optional kchmviewer_3.1-1.diff.gz
 f5cb69d18e46d65b9b0b8f850d1b7852 325800 kde optional kchmviewer_3.1-1_i386.deb

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

iD8DBQFGilLRgY5NIXPNpFURAu7fAKDS9RDKSMNgLUdYN8DsABPHXfS8IACffrm9
wweMhWA5o9zYvMC7S/xPvSo=
=lVJH
-END PGP SIGNATURE-


Accepted:
kchmviewer_3.1-1.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_3.1-1.diff.gz
kchmviewer_3.1-1.dsc
  to pool/main/k/kchmviewer/kchmviewer_3.1-1.dsc
kchmviewer_3.1-1_i386.deb
  to pool/main/k/kchmviewer/kchmviewer_3.1-1_i386.deb
kchmviewer_3.1.orig.tar.gz
  to pool/main/k/kchmviewer/kchmviewer_3.1.orig.tar.gz


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



Accepted kcheckgmail 0.5.6-1 (source i386)

2007-05-15 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 22 Apr 2007 20:54:46 +0200
Source: kcheckgmail
Binary: kcheckgmail
Architecture: source i386
Version: 0.5.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kcheckgmail - KDE systray application to check GMail accounts
Closes: 296420 349531 378192 378192 407509 415234 420264 420264
Changes: 
 kcheckgmail (0.5.6-1) unstable; urgency=low
 .
   * New upstream version (Closes: #415234)
 - Works on amd64 (Closes: #420264, #378192)
 .
   * Several upstream fixes
 - More efficient (Closes: #349531)
 - Fixes charset issues (Closes: #296420)
 - Proprely opens GMail (Closes: #378192, #420264)
 .
   * Build enhancements
 - Completely disable debug verbose debugging code (Closes: #407509)
 .
   * Many thanks to Raphael G [EMAIL PROTECTED], for adopting KCheckGmail
 upstream and providing so much help and feedback.
Files: 
 1d88e9f9aa53dffc6d181a9333ec4cc3 643 kde optional kcheckgmail_0.5.6-1.dsc
 eb2bbc155c7b5ee7cda52009edc659ff 658150 kde optional 
kcheckgmail_0.5.6.orig.tar.gz
 0c530c89bc1d5c92a737edc61a387239 8920 kde optional kcheckgmail_0.5.6-1.diff.gz
 2575f8c0591fb7dbf02454b97ce14cec 129140 kde optional 
kcheckgmail_0.5.6-1_i386.deb

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

iD8DBQFGSVYIipBneRiAKDwRAgomAJ9SzjPWr3X0oJg98Y1G2Dlq0ychIACaA4kI
xPKNI+9xUEm6imF/Bh8zbrQ=
=70QC
-END PGP SIGNATURE-


Accepted:
kcheckgmail_0.5.6-1.diff.gz
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.6-1.diff.gz
kcheckgmail_0.5.6-1.dsc
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.6-1.dsc
kcheckgmail_0.5.6-1_i386.deb
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.6-1_i386.deb
kcheckgmail_0.5.6.orig.tar.gz
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.6.orig.tar.gz


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



Bug#422543: roundcube: Missing dependencies

2007-05-06 Thread Jose Luis Tallon
Package: roundcube
Version: 0.1~beta2.2~dfsg-2
Severity: grave
Tags: patch
Justification: renders package unusable

Roundcube does not depend (not even recommends!) any IMAP client extension.
Therefore, it is unusable until the user manually installs one. The error
messages given by roundcube itself (both at the frontpage and within the
logs) are not that helpful.

The solution: to depend on php5-imap | php4-imap in addition to the
current dependencies.


I have tested it on a couple servers already, same behaviour.
Please note that my own roundcube package does depend on php5-imap and works
out-of-the box in the same system (I don't have time to maintain it
properly, otherwise, I would have uploaded it quite some time ago)


Thanks,

J.L.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21 (PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash

Versions of packages roundcube depends on:
[excerpted]
ii  apache2-mpm-prefork [httpd]   2.2.3-4+b1 Traditional model for Apache HTTPD
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  mysql-client-5.0 [mysql-clien 5.0.38-3   mysql database client binaries
ii  php5  5.2.2-1server-side, HTML-embedded scripti
ii  php5-mysql5.2.2-1MySQL module for php5
ii  ucf   3.001  Update Configuration File: preserv

roundcube recommends no packages.


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



Bug#422545: roundcube places logs within an strange hierarchy

2007-05-06 Thread Jose Luis Tallon
Package: roundcube
Version: 0.1~beta2.2~dfsg-2
Severity: wishlist
Tags: patch


The symbolic link /usr/share/roundcube/logs currently points to
/var/lib/roundcube/logs, which is strange.

Please point it to /var/log/roundcube instead:

- include /var/log/roundcube in debian/dirs
- dh_link /var/log/roundcube to /usr/share/roundcube/logs


While you are at it, providing a logrotate config file for said location
would be a plus.



Nevertheless, thank you for maintaining roundcube :-)

J.L.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21 (PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash


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



Bug#422543: roundcube: Missing dependencies

2007-05-06 Thread Jose Luis Tallon
Package: roundcube
Version: 0.1~beta2.2~dfsg-2
Severity: grave
Tags: patch
Justification: renders package unusable

Roundcube does not depend (not even recommends!) any IMAP client extension.
Therefore, it is unusable until the user manually installs one. The error
messages given by roundcube itself (both at the frontpage and within the
logs) are not that helpful.

The solution: to depend on php5-imap | php4-imap in addition to the
current dependencies.


I have tested it on a couple servers already, same behaviour.
Please note that my own roundcube package does depend on php5-imap and works
out-of-the box in the same system (I don't have time to maintain it
properly, otherwise, I would have uploaded it quite some time ago)


Thanks,

J.L.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21 (PREEMPT)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash

Versions of packages roundcube depends on:
[excerpted]
ii  apache2-mpm-prefork [httpd]   2.2.3-4+b1 Traditional model for Apache HTTPD
ii  debconf [debconf-2.0] 1.5.13 Debian configuration management sy
ii  mysql-client-5.0 [mysql-clien 5.0.38-3   mysql database client binaries
ii  php5  5.2.2-1server-side, HTML-embedded scripti
ii  php5-mysql5.2.2-1MySQL module for php5
ii  ucf   3.001  Update Configuration File: preserv

roundcube recommends no packages.


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



Accepted libsmbios 0.13.6-1 (source all amd64)

2007-04-22 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 22 Apr 2007 13:04:55 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all amd64
Version: 0.13.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 418621
Changes: 
 libsmbios (0.13.6-1) unstable; urgency=low
 .
   * New upstream version
 - Adds complete support for EFI (i.e. intel-based Macs)
 .
   * Fixed FTBFS with gcc4.3 (missing includes) (Closes: #418621)
Files: 
 912bc62900b397888c08b2f60fbe6804 735 libs optional libsmbios_0.13.6-1.dsc
 125aa17d61b2bc49918961c74637b960 3818290 libs optional 
libsmbios_0.13.6.orig.tar.gz
 14d390ecdbe591adf006ff304262b06d 6924 libs optional libsmbios_0.13.6-1.diff.gz
 d2f0dd648bcc18060801817553bb6b70 192268 libs optional 
libsmbios1_0.13.6-1_amd64.deb
 d1cfe973b2424c0c09ad1b9acbb044fb 526326 libdevel optional 
libsmbios-dev_0.13.6-1_amd64.deb
 f6e190e1efecf3f7c8605ff6d3f24294 104804 admin optional 
libsmbios-bin_0.13.6-1_amd64.deb
 d27fcd6b660268ec14903fbee451206b 4199660 libs optional 
libsmbios-doc_0.13.6-1_all.deb
 8ada6a97cd69bd913605374eefa364cf 54576 libs optional 
libsmbiosxml1_0.13.6-1_amd64.deb
 d54bf7660cedb42a8970be1f9854aa03 66870 libdevel optional 
libsmbiosxml-dev_0.13.6-1_amd64.deb

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

iD8DBQFGK18XzWFP1/XWUWkRAmtXAJ4pa37hMVEJzTQcI2Y3wiC5vrwPDACdHuvI
rOEz/bDGKit8cvY7Ne+a1nc=
=JwQb
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.13.6-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.13.6-1_amd64.deb
libsmbios-dev_0.13.6-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.13.6-1_amd64.deb
libsmbios-doc_0.13.6-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.13.6-1_all.deb
libsmbios1_0.13.6-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios1_0.13.6-1_amd64.deb
libsmbios_0.13.6-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.6-1.diff.gz
libsmbios_0.13.6-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.13.6-1.dsc
libsmbios_0.13.6.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.6.orig.tar.gz
libsmbiosxml-dev_0.13.6-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.13.6-1_amd64.deb
libsmbiosxml1_0.13.6-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.13.6-1_amd64.deb


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



Accepted libsmbios 0.13.5-1 (source all amd64)

2007-04-21 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 10 Apr 2007 22:06:25 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all amd64
Version: 0.13.5-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 418018 418134 418425
Changes: 
 libsmbios (0.13.5-1) unstable; urgency=medium
 .
   * New upstream version (Closes: #418018)
 - Fix broken libtool in previous version (Closes: #418425)
 - New libtool version used: relibtoolized source (Closes: #418134)
 .
   * Fixed debian/rules to put config.{sub,guess} into proper place
Files: 
 fba8648218b579df3506d4ee4ad46eb1 735 libs optional libsmbios_0.13.5-1.dsc
 8f3c38aec4c2dd59bdceaecd96f3d662 3815081 libs optional 
libsmbios_0.13.5.orig.tar.gz
 fc36538394330b59281bfa9caf3bf6c8 6752 libs optional libsmbios_0.13.5-1.diff.gz
 b84dc403e6612e6e35de9d7afc915188 191834 libs optional 
libsmbios1_0.13.5-1_amd64.deb
 1eee5bd903a9a607df960f6f7fa2aa08 526006 libdevel optional 
libsmbios-dev_0.13.5-1_amd64.deb
 e2267a8e298a89bde1a607e079bbe5d9 105024 admin optional 
libsmbios-bin_0.13.5-1_amd64.deb
 25eb96c2df9b8097e1c13f65facbfaea 4189222 libs optional 
libsmbios-doc_0.13.5-1_all.deb
 003f0b657f5b14a121c6ef397abce128 54502 libs optional 
libsmbiosxml1_0.13.5-1_amd64.deb
 f6b117f56881e335dcfea152da58ddd5 66842 libdevel optional 
libsmbiosxml-dev_0.13.5-1_amd64.deb

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

iD8DBQFGKiE4zWFP1/XWUWkRArJdAJ9mLOCC6WDdKBWYpZREdFsCZfSGQQCgjxL0
Jxi/gtqiKPwNY22yJVodHys=
=wjL2
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.13.5-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.13.5-1_amd64.deb
libsmbios-dev_0.13.5-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.13.5-1_amd64.deb
libsmbios-doc_0.13.5-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.13.5-1_all.deb
libsmbios1_0.13.5-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios1_0.13.5-1_amd64.deb
libsmbios_0.13.5-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.5-1.diff.gz
libsmbios_0.13.5-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.13.5-1.dsc
libsmbios_0.13.5.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.5.orig.tar.gz
libsmbiosxml-dev_0.13.5-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.13.5-1_amd64.deb
libsmbiosxml1_0.13.5-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.13.5-1_amd64.deb


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



Accepted libsmbios 0.13.4-1 (source all i386)

2007-04-06 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 14 Mar 2007 13:17:20 +0100
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all i386
Version: 0.13.4-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 399200 399201
Changes: 
 libsmbios (0.13.4-1) unstable; urgency=low
 .
   * New upstream version
 - Xerces is not a build-dep anymore
 .
   * Source tarball cleanup: do not ship generated binaries (Closes: 399201)
 .
   * libsmbios-doc: package now contains the Doxy-generated
 libsmbios documentation (in HTML format) (Closes: #399200)
 .
   * Enhanced man page a bit, barring proper documentation from upstream
 A separate, complete version for every binary shipped is still pending,
 though
Files: 
 d3cf70ccba29fa931dc2d14a818ce228 745 libs optional libsmbios_0.13.4-1.dsc
 fa6e98339093b3321bffdbfb4613c7f2 3682050 libs optional 
libsmbios_0.13.4.orig.tar.gz
 61e2c1be6a7c195143e2e1965eeb9ab2 6775 libs optional libsmbios_0.13.4-1.diff.gz
 cc74ccf863d4f7163ff4dcb85abe613f 192524 libs optional 
libsmbios1_0.13.4-1_i386.deb
 9116a27c405fb4da5aaafe610a935e49 500138 libdevel optional 
libsmbios-dev_0.13.4-1_i386.deb
 c9d20cab936a29ae2638d6d191fab796 94664 admin optional 
libsmbios-bin_0.13.4-1_i386.deb
 5eb9f6c447ae8d462039acf305d733b9 4167740 libs optional 
libsmbios-doc_0.13.4-1_all.deb
 3d4874df154f2aac4e42bd9036437618 53360 libs optional 
libsmbiosxml1_0.13.4-1_i386.deb
 6095ad0fda2f10016c06df1865a2e1b6 64598 libdevel optional 
libsmbiosxml-dev_0.13.4-1_i386.deb

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

iD8DBQFGFgXcipBneRiAKDwRAtY5AJ9SJROZLJIdA+vExxNrWn4/pjIVbACdHQ8j
GMGlo1jm4I636RloqSmeUho=
=JSjW
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.13.4-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.13.4-1_i386.deb
libsmbios-dev_0.13.4-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.13.4-1_i386.deb
libsmbios-doc_0.13.4-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.13.4-1_all.deb
libsmbios1_0.13.4-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios1_0.13.4-1_i386.deb
libsmbios_0.13.4-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.4-1.diff.gz
libsmbios_0.13.4-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.13.4-1.dsc
libsmbios_0.13.4.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.13.4.orig.tar.gz
libsmbiosxml-dev_0.13.4-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.13.4-1_i386.deb
libsmbiosxml1_0.13.4-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.13.4-1_i386.deb


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



Accepted up-imapproxy 1.2.4-10 (source i386)

2007-03-20 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 19 Mar 2007 19:42:46 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-10
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 415455
Changes: 
 up-imapproxy (1.2.4-10) unstable; urgency=high
 .
   * Bashism in initscript made upgrade sequence fail when sh was not bash
 One-liner fix, and hopefully ready to go (Closes: #415455)
Files: 
 ec12c0f50fd5e9287020520dc17029af 673 mail optional up-imapproxy_1.2.4-10.dsc
 73da48d06c7d6ff729f5f007bc50e580 60391 mail optional 
up-imapproxy_1.2.4-10.diff.gz
 7c5b14915ab167a28cede66710b0f297 53846 mail optional 
imapproxy_1.2.4-10_i386.deb

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

iD8DBQFGAF4rKN6ufymYLloRAt8AAKCFIgoVGhQ+3d0Kb8eeSp6sHoSfmwCdFvAr
okAovKI+sCbvt9krw5gz2Iw=
=74nH
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-10_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-10_i386.deb
up-imapproxy_1.2.4-10.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-10.diff.gz
up-imapproxy_1.2.4-10.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-10.dsc


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



Accepted up-imapproxy 1.2.4-9 (source i386)

2007-03-15 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 15 Mar 2007 2:04:05 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-9
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 405704
Changes: 
 up-imapproxy (1.2.4-9) unstable; urgency=high
 .
   * Bug #405704 (crash on startup when IMAP server is not available):
 I made a mistake when applying the supplied patch. The correct changes
 have been merged in this time. (Closes: #405704)
Files: 
 79b4055d77488182f9126e163a5d6c6c 671 mail optional up-imapproxy_1.2.4-9.dsc
 5397f76d475248dbc08bf7fa942ddb61 60306 mail optional 
up-imapproxy_1.2.4-9.diff.gz
 ad2b70cdef4bf6b43babaf938623cb29 53780 mail optional imapproxy_1.2.4-9_i386.deb

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

iD8DBQFF+SFNKN6ufymYLloRApMiAJ91E9vreY/kx4gBxvtjAamWXcWN0QCfXbCm
9UHvrkfgRWH14mn8KuTMMMY=
=f55p
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-9_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-9_i386.deb
up-imapproxy_1.2.4-9.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-9.diff.gz
up-imapproxy_1.2.4-9.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-9.dsc


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



Accepted bindgraph 0.2a-2 (source all)

2007-03-11 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 11 Mar 2007 14:57:44 +0100
Source: bindgraph
Binary: bindgraph
Architecture: source all
Version: 0.2a-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 bindgraph  - DNS statistics RRDtool frontend for BIND9
Closes: 412619 412620 413344 413359 413547 413615 413823 413863 413919 414052 
414220
Changes: 
 bindgraph (0.2a-2) unstable; urgency=low
 .
   * All localization fixes below prepared by Christian Perrier. Many thanks.
 .
   * Fix errors in debconf templates. (Closes: #412620)
 .
   * Debconf translations:
 - Galician. (Closes: #413359)
 - German. (Closes: #412619)
 - Czech. (Closes: #413344)
 - Russian. (Closes: #413547)
 - Brazilian Portuguese. (Closes: #413615)
 - Tamil. (Closes: #413823)
 - Japanese. (Closes: #413863)
 - Portuguese. (Closes: #413919)
 - Romanian. (Closes: #414052)
 - Spanish. (Closes: #414220)
Files: 
 a9f178fbe56ecd729810a531f6cafeb3 622 admin extra bindgraph_0.2a-2.dsc
 7a9624abe3e71cc1bca641f3b1b109f8 18807 admin extra bindgraph_0.2a-2.diff.gz
 6bed59857f56deaed00acd12acdb9297 21546 admin extra bindgraph_0.2a-2_all.deb

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

iD8DBQFF9FWs1OXtrMAUPS0RAsaZAJ92H5MNZE+ZOthcJW4ydjdu0yrgbwCfQDe+
oV2eO8bzTFe+ABFi1HgC6z4=
=uKDx
-END PGP SIGNATURE-


Accepted:
bindgraph_0.2a-2.diff.gz
  to pool/main/b/bindgraph/bindgraph_0.2a-2.diff.gz
bindgraph_0.2a-2.dsc
  to pool/main/b/bindgraph/bindgraph_0.2a-2.dsc
bindgraph_0.2a-2_all.deb
  to pool/main/b/bindgraph/bindgraph_0.2a-2_all.deb


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



Accepted up-imapproxy 1.2.4-8 (source i386)

2007-03-11 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 10 Mar 2007 21:59:37 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-8
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 352999 369020 405704 409861 412221
Changes: 
 up-imapproxy (1.2.4-8) unstable; urgency=high
 .
   * Fixed crash on startup when IMAP server is not available (Closes: #405704)
 .
   * Security: backported possible DoS fix from 1.2.5rc2 (Closes: #409861)
 .
   * Enhance security: enable chroot by default (Closes: #352999)
 (Patch provided by Kees Cook [EMAIL PROTECTED])
 .
   * Build process: fixed using files from current autotools-dev
 .
   * Made initscript a bit more intelligent, so that it won't fail so easily
 when imapproxyd is slower to start than expected (Closes: #369020)
 .
   * Localization
 - Updated DE translation (Closes: #412221)
Files: 
 799d1ea0450b74da3e0e1fb8ac48fe54 671 mail optional up-imapproxy_1.2.4-8.dsc
 cbe938cc40ea584ccfd5e65b8c0c48ef 60135 mail optional 
up-imapproxy_1.2.4-8.diff.gz
 125e6fa637b0551d401657c0c34c7283 53674 mail optional imapproxy_1.2.4-8_i386.deb

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

iD8DBQFF9KNzKN6ufymYLloRAiSAAKDRn+4HyF2SlLoVHkf5QyVHSYed6wCguaKH
ydFMpPWOvsVzuN+YkfqFEGs=
=QZPG
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-8_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-8_i386.deb
up-imapproxy_1.2.4-8.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-8.diff.gz
up-imapproxy_1.2.4-8.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-8.dsc


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



Accepted bindgraph 0.2a-1 (source all)

2007-02-05 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  8 Dec 2006 15:24:19 +0100
Source: bindgraph
Binary: bindgraph
Architecture: source all
Version: 0.2a-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 bindgraph  - DNS statistics RRDtool frontend for BIND9
Closes: 311177 373994 375237 381078 383490 403799
Changes: 
 bindgraph (0.2a-1) unstable; urgency=low
 .
   * Too many fixes for just a regular debian release - a release
 (no new upstream version yet)
 - Updated to Standards-Version 3.7.2 with no changes
 .
   * bindgraph.cgi:
 - Updated to work with newer rrdtool(1.2.x) (Closes: #383490)
 - Updated to properly parse logfiles (Closes: #375237)
 .
   * Postinst/postrm:
 - Fixed purge logic (Closes: #311177)
 .
   * Depends:
 - Relaxed pre-depends on debconf to a regular depends
 .
   * Internationalization / Localization
 - Brazilian portuguese (Closes: #373994)
 - Portuguese (corrected) (Closes: #381078)
 - Removed incorrect zh-tw (Closes: #403799)
Files: 
 9296172f25bf69dcae9a40fefa86cbbb 622 admin extra bindgraph_0.2a-1.dsc
 0a0788fb27768c447743051534646478 16066 admin extra bindgraph_0.2a.orig.tar.gz
 34ccc400470890cc61a8b99d55f2a23b 14653 admin extra bindgraph_0.2a-1.diff.gz
 b9df06df5924a9ff1fc844d1db6b34d1 20554 admin extra bindgraph_0.2a-1_all.deb

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

iD8DBQFFxs9Z1OXtrMAUPS0RAjUhAKCyVIj/m/BYiRG3r1kb+z3UsQqvLgCguWr1
p1J0Z4xguZcdeZd6UVj2G0Y=
=oydl
-END PGP SIGNATURE-


Accepted:
bindgraph_0.2a-1.diff.gz
  to pool/main/b/bindgraph/bindgraph_0.2a-1.diff.gz
bindgraph_0.2a-1.dsc
  to pool/main/b/bindgraph/bindgraph_0.2a-1.dsc
bindgraph_0.2a-1_all.deb
  to pool/main/b/bindgraph/bindgraph_0.2a-1_all.deb
bindgraph_0.2a.orig.tar.gz
  to pool/main/b/bindgraph/bindgraph_0.2a.orig.tar.gz


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



Accepted couriergraph 0.25-3 (source all)

2007-01-22 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 23 Jan 2007 08:11:24 +0100
Source: couriergraph
Binary: couriergraph
Architecture: source all
Version: 0.25-3
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 couriergraph - Mail statistics RRDtool frontend for Courier-{POP,IMAP}
Closes: 407983 407986
Changes: 
 couriergraph (0.25-3) unstable; urgency=low
 .
   * Late debconf translations:
 - Norwegian Bokmål. Closes: #407986
 - German. Closes: #407983
Files: 
 ae33b95eba6671e452058d2193d28079 630 admin extra couriergraph_0.25-3.dsc
 3e794bbd5063b43a7d739c1888ed7961 14978 admin extra couriergraph_0.25-3.diff.gz
 62f21a2429d1a28fb2b888f7d93f40b9 18186 admin extra couriergraph_0.25-3_all.deb

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

iD8DBQFFtbYw1OXtrMAUPS0RAm7HAJ9SFjsbFEfBfaTRoftvwkPhRPKZ/gCgvqY3
SCqu4LZUfhf5UIWKguRLJaY=
=t3R2
-END PGP SIGNATURE-


Accepted:
couriergraph_0.25-3.diff.gz
  to pool/main/c/couriergraph/couriergraph_0.25-3.diff.gz
couriergraph_0.25-3.dsc
  to pool/main/c/couriergraph/couriergraph_0.25-3.dsc
couriergraph_0.25-3_all.deb
  to pool/main/c/couriergraph/couriergraph_0.25-3_all.deb


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



Accepted kchmviewer 2.7-1 (source i386)

2006-12-09 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  8 Dec 2006 02:11:46 +0100
Source: kchmviewer
Binary: kchmviewer
Architecture: source i386
Version: 2.7-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Closes: 390329
Changes: 
 kchmviewer (2.7-1) unstable; urgency=low
 .
   * New upstream version
 - Should fix crashes due to bad encoding detection (Closes: #390329)
Files: 
 e796a99f72671b4240b619769e2422d3 620 kde optional kchmviewer_2.7-1.dsc
 f7bb9fb4b10f351f93d32a5ebca5e078 685588 kde optional kchmviewer_2.7.orig.tar.gz
 13e4875f80427f83514815aa627b30b0 3710 kde optional kchmviewer_2.7-1.diff.gz
 fcfaf625fc7b3e0c16d32f188120d2b4 210562 kde optional kchmviewer_2.7-1_i386.deb

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

iD8DBQFFemn6ipBneRiAKDwRAuxrAKCn0ZL71Y80QV5wzsg4O16HPVbgYQCbB3qK
4DvT5BKZXKgtTQoOWlR0fss=
=1jPF
-END PGP SIGNATURE-


Accepted:
kchmviewer_2.7-1.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_2.7-1.diff.gz
kchmviewer_2.7-1.dsc
  to pool/main/k/kchmviewer/kchmviewer_2.7-1.dsc
kchmviewer_2.7-1_i386.deb
  to pool/main/k/kchmviewer/kchmviewer_2.7-1_i386.deb
kchmviewer_2.7.orig.tar.gz
  to pool/main/k/kchmviewer/kchmviewer_2.7.orig.tar.gz


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



Accepted up-imapproxy 1.2.4-7 (source i386)

2006-12-08 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu,  7 Dec 2006 23:26:03 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-7
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 400470
Changes: 
 up-imapproxy (1.2.4-7) unstable; urgency=medium
 .
   * Control file: debconf is now a regular dependency.
 Andreas Metzler's suggestion was indeed correct.
 Fixed letting dh_installdebconf do its magic (Closes: #400470)
 .
   * Postrm: remove manual invocation of db_purge (which caused a bug)
 DebHelper will take care of it properly.
Files: 
 bba1c01980045ca3433e20e0ed710216 671 mail optional up-imapproxy_1.2.4-7.dsc
 2b8834a2fe04cd8412a8ca8602e96c06 58803 mail optional 
up-imapproxy_1.2.4-7.diff.gz
 d330dc561870ca23264d65755ac92a6d 53610 mail optional imapproxy_1.2.4-7_i386.deb

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

iD8DBQFFeT2/HTOcZYuNdmMRAtNcAKCVforyyuDpHTof5/tWZyYsZcxVGACgjRW6
tLVrkVhsgTql7WheUuWkDi0=
=EWB8
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-7_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-7_i386.deb
up-imapproxy_1.2.4-7.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-7.diff.gz
up-imapproxy_1.2.4-7.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-7.dsc


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



Accepted libsieve 2.2.3-1 (source i386)

2006-12-08 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  2 Dec 2006 18:15:26 +0100
Source: libsieve
Binary: libsieve2-1 libsieve2-dev
Architecture: source i386
Version: 2.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsieve2-1 - a library for parsing, sorting and filtering your mail
 libsieve2-dev - a library for parsing, sorting and filtering your mail
Closes: 394855
Changes: 
 libsieve (2.2.3-1) unstable; urgency=low
 .
   * New upstream version: several improvements and bugfixes
 Closes: #394855
Files: 
 4d946a9dad8b6ba2a359ebf7791c8a50 644 libs optional libsieve_2.2.3-1.dsc
 c0167a026f6c77bdf2f5de2534562cb2 569214 libs optional 
libsieve_2.2.3.orig.tar.gz
 defb7a0d0be8a9b402f841d4b793f345 4966 libs optional libsieve_2.2.3-1.diff.gz
 cdbd0467198e459353287aee586c527b 105742 libdevel optional 
libsieve2-dev_2.2.3-1_i386.deb
 93411fd00bcdfd38787de58a0c9bd60b 74884 libs optional 
libsieve2-1_2.2.3-1_i386.deb

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

iD8DBQFFema8ipBneRiAKDwRAgJEAJ9FoRgzkk6PBWAbkevPlIge8DSTCwCggu3C
PXqb/2SyWvJdXOmcGGJEof0=
=WdYn
-END PGP SIGNATURE-


Accepted:
libsieve2-1_2.2.3-1_i386.deb
  to pool/main/libs/libsieve/libsieve2-1_2.2.3-1_i386.deb
libsieve2-dev_2.2.3-1_i386.deb
  to pool/main/libs/libsieve/libsieve2-dev_2.2.3-1_i386.deb
libsieve_2.2.3-1.diff.gz
  to pool/main/libs/libsieve/libsieve_2.2.3-1.diff.gz
libsieve_2.2.3-1.dsc
  to pool/main/libs/libsieve/libsieve_2.2.3-1.dsc
libsieve_2.2.3.orig.tar.gz
  to pool/main/libs/libsieve/libsieve_2.2.3.orig.tar.gz


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



Accepted lcdproc 0.5.1-3 (source i386)

2006-12-08 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  8 Dec 2006 15:37:56 +0100
Source: lcdproc
Binary: lcdproc
Architecture: source i386
Version: 0.5.1-3
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 lcdproc- LCD display driver daemon and clients
Closes: 400066
Changes: 
 lcdproc (0.5.1-3) unstable; urgency=medium
 .
   * Compilation issues
 - restrict building to just i386, amd64 (Closes: #400066)
Files: 
 42088fbbd869fbeac72fb6cd4f1442f4 666 utils extra lcdproc_0.5.1-3.dsc
 d55de8ffc17884d0309ab9e24f637aa7 13800 utils extra lcdproc_0.5.1-3.diff.gz
 db31f06ab423eea2c13f2c6cd71c6d68 313286 utils extra lcdproc_0.5.1-3_i386.deb

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

iD8DBQFFemPZipBneRiAKDwRAsG7AJ9/uTR0S8eMb5s0YjxReosXr2UAwQCfcwfj
1cnyAMndgKS9ZtnNWYYfp9o=
=Zn/W
-END PGP SIGNATURE-


Accepted:
lcdproc_0.5.1-3.diff.gz
  to pool/main/l/lcdproc/lcdproc_0.5.1-3.diff.gz
lcdproc_0.5.1-3.dsc
  to pool/main/l/lcdproc/lcdproc_0.5.1-3.dsc
lcdproc_0.5.1-3_i386.deb
  to pool/main/l/lcdproc/lcdproc_0.5.1-3_i386.deb


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



Accepted up-imapproxy 1.2.4-6 (source i386)

2006-12-01 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 26 Nov 2006 19:56:07 +0100
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-6
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 369020 387992 389695 393212 399362 400459 400468 400470
Changes: 
 up-imapproxy (1.2.4-6) unstable; urgency=high
 .
   * Acknowledge NMUs
 .
   * Enhance daemon()ization process a bit (Closes: #387992)
 .
   * Building
 - Re-enable -Wall (Closes: #400468)
 .
   * Localization:
 - ja translation added (Closes: #393212)
 .
   * Init.d infrastructure
 - Fixed startup logic (Closes: #369020)
 - Fixed stop logic (Closes: #389695)
 - Fixed bashism in initscript (==) (Closes: #399362)
 - ensured lsb-functions are sourced; Depend on lsb-base(Closes: #400459)
 .
   * Control file: debconf pre-depend *is* necessary (Closes: #400470)
Files: 
 d7e88200f43404592670eeb7823002e8 671 mail optional up-imapproxy_1.2.4-6.dsc
 83709ab41802444749caf6db77c00242 58773 mail optional 
up-imapproxy_1.2.4-6.diff.gz
 c32df44630487598326b61415d605c71 52974 mail optional imapproxy_1.2.4-6_i386.deb

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

iD8DBQFFcLD0ipBneRiAKDwRArBDAJ9fEcO9L6hKUbEH+K4XTJjdtiknsACgsv29
DU9IYtyGdrTNhroVk0yFuWE=
=7LY+
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-6_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-6_i386.deb
up-imapproxy_1.2.4-6.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-6.diff.gz
up-imapproxy_1.2.4-6.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-6.dsc


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



Accepted lcdproc 0.5.1-2 (source i386)

2006-11-28 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 12 Nov 2006 14:20:28 +0100
Source: lcdproc
Binary: lcdproc
Architecture: source i386
Version: 0.5.1-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 lcdproc- LCD display driver daemon and clients
Closes: 395986 397072
Changes: 
 lcdproc (0.5.1-2) unstable; urgency=low
 .
   * Compilation issues
 - restrict building to just i386, amd64 and ppc (Closes: #395986)
 - remaining arches will be re-added once lcdproc is migrated to 'ppdev'
 .
   * Updated initscript to work with new syntax (Closes: #397072)
 - also fixed duplicate $NAME output
Files: 
 a8fd93a8964f31b13f7069f49a3d0030 674 utils extra lcdproc_0.5.1-2.dsc
 6aa8ed22e1ba8c9d3e1f9e581b06ddd1 13768 utils extra lcdproc_0.5.1-2.diff.gz
 0843191932dc51f2de937e1c12a2eb18 313250 utils extra lcdproc_0.5.1-2_i386.deb

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

iD8DBQFFbILYipBneRiAKDwRAlyUAJ9pg1gqwYfHdYAOPVw6RbePjfu9jgCgpjPc
mSLCzuN0UL1sR5GP1DIcwtw=
=fmzS
-END PGP SIGNATURE-


Accepted:
lcdproc_0.5.1-2.diff.gz
  to pool/main/l/lcdproc/lcdproc_0.5.1-2.diff.gz
lcdproc_0.5.1-2.dsc
  to pool/main/l/lcdproc/lcdproc_0.5.1-2.dsc
lcdproc_0.5.1-2_i386.deb
  to pool/main/l/lcdproc/lcdproc_0.5.1-2_i386.deb


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



Accepted libsmbios 0.12.1-3 (source all i386)

2006-11-28 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 18 Nov 2006 16:57:48 +0100
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all i386
Version: 0.12.1-3
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 399205
Changes: 
 libsmbios (0.12.1-3) unstable; urgency=low
 .
   * Ensure including libsmbios.so in -dev (Closes: #399205)
Files: 
 01af09a2a676fec0db6d1b5c954bf319 742 libs optional libsmbios_0.12.1-3.dsc
 b800441d59eb0d6f5ad7e3983e4e85f2 6166 libs optional libsmbios_0.12.1-3.diff.gz
 8f47949c4ddaca05bc0eccb22b92a14a 184912 libs optional 
libsmbios1_0.12.1-3_i386.deb
 9bb4e7c3c91b26607050446893a40835 39058 libdevel optional 
libsmbios-dev_0.12.1-3_i386.deb
 be94ff12e3ffac2d9244265104903101 86812 admin optional 
libsmbios-bin_0.12.1-3_i386.deb
 f956cae233db6fd5e29af61cbacc5f03 7136 libs optional 
libsmbios-doc_0.12.1-3_all.deb
 0f1f939e69dfa83f8d034e1d8fe6062c 53270 libs optional 
libsmbiosxml1_0.12.1-3_i386.deb
 42c187d7beff3972182abc0181655986 6870 libdevel optional 
libsmbiosxml-dev_0.12.1-3_i386.deb

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

iD8DBQFFbIOTipBneRiAKDwRAoIJAJ93+2zdHxLKlJelxxNVnQv9WvU5nACgr18g
TqMAk06V9MdzQ6BsdDI8h9M=
=+LAk
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.12.1-3_i386.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.12.1-3_i386.deb
libsmbios-dev_0.12.1-3_i386.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.12.1-3_i386.deb
libsmbios-doc_0.12.1-3_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.12.1-3_all.deb
libsmbios1_0.12.1-3_i386.deb
  to pool/main/libs/libsmbios/libsmbios1_0.12.1-3_i386.deb
libsmbios_0.12.1-3.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.12.1-3.diff.gz
libsmbios_0.12.1-3.dsc
  to pool/main/libs/libsmbios/libsmbios_0.12.1-3.dsc
libsmbiosxml-dev_0.12.1-3_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.12.1-3_i386.deb
libsmbiosxml1_0.12.1-3_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.12.1-3_i386.deb


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



Accepted libsieve 2.2.1-1 (source i386)

2006-10-31 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 24 Oct 2006 11:26:34 +0200
Source: libsieve
Binary: libsieve2-1 libsieve2-dev
Architecture: source i386
Version: 2.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsieve2-1 - a library for parsing, sorting and filtering your mail
 libsieve2-dev - a library for parsing, sorting and filtering your mail
Changes: 
 libsieve (2.2.1-1) unstable; urgency=low
 .
   * New upstream version
 - Upstream removed RFCs' text. Hence, the source package was renamed.
 - Fixed upstream compilation errors, which prevented release of 2.2.0
Files: 
 9bddf2532e7dae3943646908001419de 644 libs optional libsieve_2.2.1-1.dsc
 5ecd8366a89f1b574376f9fc64d85abe 479758 libs optional 
libsieve_2.2.1.orig.tar.gz
 861575df0fed4e00cacaebc40c82446a 4921 libs optional libsieve_2.2.1-1.diff.gz
 6e4cac9d39835580a6c5beab5bf5f69a 103182 libdevel optional 
libsieve2-dev_2.2.1-1_i386.deb
 5ca57b656cc0220e94453b9d831aca32 73318 libs optional 
libsieve2-1_2.2.1-1_i386.deb

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

iD8DBQFFQhoQipBneRiAKDwRAhYQAJ9AX7ZgK6/LtfgHAQ32sXWQ54Li6QCfY1Pk
kkb5a4qK1MeoH+q0Lk49pEc=
=6HLP
-END PGP SIGNATURE-


Accepted:
libsieve2-1_2.2.1-1_i386.deb
  to pool/main/libs/libsieve/libsieve2-1_2.2.1-1_i386.deb
libsieve2-dev_2.2.1-1_i386.deb
  to pool/main/libs/libsieve/libsieve2-dev_2.2.1-1_i386.deb
libsieve_2.2.1-1.diff.gz
  to pool/main/libs/libsieve/libsieve_2.2.1-1.diff.gz
libsieve_2.2.1-1.dsc
  to pool/main/libs/libsieve/libsieve_2.2.1-1.dsc
libsieve_2.2.1.orig.tar.gz
  to pool/main/libs/libsieve/libsieve_2.2.1.orig.tar.gz


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



Accepted lcdproc 0.5.1-1 (source i386)

2006-10-27 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 15 Oct 2006 14:48:37 +0200
Source: lcdproc
Binary: lcdproc
Architecture: source i386
Version: 0.5.1-1
Distribution: unstable
Urgency: medium
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 lcdproc- LCD display driver daemon and clients
Closes: 389294 391912
Changes: 
 lcdproc (0.5.1-1) unstable; urgency=medium
 .
   * New upstream version
 - Fixes compiling on hppa (Closes: #389294)
 - Many new features and some config changes. Please read upstream's
 release notes for more information
 .
   * Avoid needing a /etc/mtab file at build time (Closes: #391912)
Files: 
 10f648bf63f89430d6aa10d8d8bb9e5c 659 utils extra lcdproc_0.5.1-1.dsc
 ad13d6cce7a7e068d85a66d30285af95 800205 utils extra lcdproc_0.5.1.orig.tar.gz
 c3b29e795d2d7e34ff857b4b382a6b96 13572 utils extra lcdproc_0.5.1-1.diff.gz
 566ad56d8013d5cade6e4efb25eae487 312950 utils extra lcdproc_0.5.1-1_i386.deb

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

iD8DBQFFQhFuipBneRiAKDwRAouWAJ9eGZszJpu61VEpcFmYlEBLHlFxRgCgtIdF
R+cA17Jc22Dkc658q1NajgM=
=TyL9
-END PGP SIGNATURE-


Accepted:
lcdproc_0.5.1-1.diff.gz
  to pool/main/l/lcdproc/lcdproc_0.5.1-1.diff.gz
lcdproc_0.5.1-1.dsc
  to pool/main/l/lcdproc/lcdproc_0.5.1-1.dsc
lcdproc_0.5.1-1_i386.deb
  to pool/main/l/lcdproc/lcdproc_0.5.1-1_i386.deb
lcdproc_0.5.1.orig.tar.gz
  to pool/main/l/lcdproc/lcdproc_0.5.1.orig.tar.gz


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



Accepted libsmbios 0.12.1-2 (source all i386)

2006-10-27 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 23 Oct 2006 19:32:27 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all i386
Version: 0.12.1-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 393443
Changes: 
 libsmbios (0.12.1-2) unstable; urgency=low
 .
   * Acknowledge NMU (Closes: #393443)
 - Thanks, Bas
Files: 
 c1b0ad9f41e8a5543bc356411e14b660 742 libs optional libsmbios_0.12.1-2.dsc
 09fd9ac36b2c91f7f090fc3425a32fcd 6102 libs optional libsmbios_0.12.1-2.diff.gz
 13050c610adf196fd9afd485982ef2ea 185026 libs optional 
libsmbios1_0.12.1-2_i386.deb
 7fb839d621109a196083c3d66dce1216 38980 libdevel optional 
libsmbios-dev_0.12.1-2_i386.deb
 6e4516a035fc5b5f478dcb0e990f90ab 86756 admin optional 
libsmbios-bin_0.12.1-2_i386.deb
 db7f50fc8b2625c47fc16ed81dba302e 7086 libs optional 
libsmbios-doc_0.12.1-2_all.deb
 71fcfe8294d9ec348bc837422adcc422 53218 libs optional 
libsmbiosxml1_0.12.1-2_i386.deb
 44883e47c647d8877d67b27fe22cf047 6820 libdevel optional 
libsmbiosxml-dev_0.12.1-2_i386.deb

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

iD8DBQFFQhcNipBneRiAKDwRAlvsAJsGP2M/usz+9QoF56CexU0es5bWgACdFuhW
y0I4UctvJkg2Cm2wBXfXhMA=
=XNgF
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.12.1-2_i386.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.12.1-2_i386.deb
libsmbios-dev_0.12.1-2_i386.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.12.1-2_i386.deb
libsmbios-doc_0.12.1-2_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.12.1-2_all.deb
libsmbios1_0.12.1-2_i386.deb
  to pool/main/libs/libsmbios/libsmbios1_0.12.1-2_i386.deb
libsmbios_0.12.1-2.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.12.1-2.diff.gz
libsmbios_0.12.1-2.dsc
  to pool/main/libs/libsmbios/libsmbios_0.12.1-2.dsc
libsmbiosxml-dev_0.12.1-2_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.12.1-2_i386.deb
libsmbiosxml1_0.12.1-2_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.12.1-2_i386.deb


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



Accepted baghira 0.8-1 (source i386)

2006-10-27 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 25 Oct 2006 0:52:07 +0200
Source: baghira
Binary: kwin-baghira
Architecture: source i386
Version: 0.8-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kwin-baghira - KDE theme for Apple junkies :)
Changes: 
 baghira (0.8-1) unstable; urgency=low
 .
   * New upstream version
Files: 
 a878eb6d9f18d05a438c56bddd41ab5c 623 kde optional baghira_0.8-1.dsc
 7e4b44466e9defefec96a5b6ef8ac74d 1112702 kde optional baghira_0.8.orig.tar.gz
 af3931055de25bc35a3dbd2d3f8641f1 3779 kde optional baghira_0.8-1.diff.gz
 1967e4fe0325b6367046c4c5990daa08 783118 kde optional 
kwin-baghira_0.8-1_i386.deb

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

iD8DBQFFQhyYipBneRiAKDwRAsloAJ97fe9bUkE0tCGiN45otvTNGBlTowCfR8OM
J9drOhyCUVfLWHFUDECQAr8=
=Bo+k
-END PGP SIGNATURE-


Accepted:
baghira_0.8-1.diff.gz
  to pool/main/b/baghira/baghira_0.8-1.diff.gz
baghira_0.8-1.dsc
  to pool/main/b/baghira/baghira_0.8-1.dsc
baghira_0.8.orig.tar.gz
  to pool/main/b/baghira/baghira_0.8.orig.tar.gz
kwin-baghira_0.8-1_i386.deb
  to pool/main/b/baghira/kwin-baghira_0.8-1_i386.deb


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



Accepted kchmviewer 2.6-1 (source i386)

2006-09-23 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Aug 2006 02:56:52 +0200
Source: kchmviewer
Binary: kchmviewer
Architecture: source i386
Version: 2.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Changes: 
 kchmviewer (2.6-1) unstable; urgency=low
 .
   * New upstream version
Files: 
 5b57948f0f9a6bd0a6e6bc9a91768d05 620 kde optional kchmviewer_2.6-1.dsc
 7898095c413b4262c5aff6bf5fcaf25b 671666 kde optional kchmviewer_2.6.orig.tar.gz
 0c533bcf03cccbdb4a373053f6eb775d 3652 kde optional kchmviewer_2.6-1.diff.gz
 52ddd074a701f68d1de4966a8825a8fb 208090 kde optional kchmviewer_2.6-1_i386.deb

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

iD8DBQFFE56hNFDtUT/MKpARAmOoAKCBQKAoM117TYg/dQT8Mz1VTR8ZowCg9KL4
alcm8Ril0RHTO7D5u7NvESI=
=E1i6
-END PGP SIGNATURE-


Accepted:
kchmviewer_2.6-1.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_2.6-1.diff.gz
kchmviewer_2.6-1.dsc
  to pool/main/k/kchmviewer/kchmviewer_2.6-1.dsc
kchmviewer_2.6-1_i386.deb
  to pool/main/k/kchmviewer/kchmviewer_2.6-1_i386.deb
kchmviewer_2.6.orig.tar.gz
  to pool/main/k/kchmviewer/kchmviewer_2.6.orig.tar.gz


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



Accepted up-imapproxy 1.2.4-5 (source i386)

2006-09-23 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 20 Sep 2006 23:10:36 +0200
Source: up-imapproxy
Binary: imapproxy
Architecture: source i386
Version: 1.2.4-5
Distribution: unstable
Urgency: high
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 imapproxy  - IMAP protocol proxy
Closes: 333847 339752 370022 375665 381663 388500
Changes: 
 up-imapproxy (1.2.4-5) unstable; urgency=high
 .
   * Code enhancements
 - Change priority of 'peer verify' messages to LOG_INFO (Closes: #339752)
 - Fixed typo in src/main.c (Closes: #388500)
 .
   * IPv6 support added (Closes: #370022)
 .
   * Localization:
 - pt translation added (Closes: #381663)
 .
   * Init.d infrastructure
 - Added /etc/default/imapproxy support (Closes: #375665)
 - Reduce initscript's verbosity again (Closes: #333847)
Files: 
 0af98709f0787c22af3e74e756e8d983 671 mail optional up-imapproxy_1.2.4-5.dsc
 ad68dd2258255ac6ef87165f518390e9 131331 mail optional 
up-imapproxy_1.2.4.orig.tar.gz
 502d08b2c284f962c43ae50b0a8a0252 14077 mail optional 
up-imapproxy_1.2.4-5.diff.gz
 fe00dc62221c9ed27f933e595586fbe1 51658 mail optional imapproxy_1.2.4-5_i386.deb

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

iD8DBQFFE6gnNFDtUT/MKpARAhwDAKCzMYGD+5kLdG1Rz5o699ZylG7CzQCfSiJI
qANJY6oJOPgziDmtinjuE3A=
=KnAT
-END PGP SIGNATURE-


Accepted:
imapproxy_1.2.4-5_i386.deb
  to pool/main/u/up-imapproxy/imapproxy_1.2.4-5_i386.deb
up-imapproxy_1.2.4-5.diff.gz
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-5.diff.gz
up-imapproxy_1.2.4-5.dsc
  to pool/main/u/up-imapproxy/up-imapproxy_1.2.4-5.dsc


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



Accepted kcheckgmail 0.5.5-2 (source i386)

2006-09-23 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 21 Sep 2006  0:18:14 +0200
Source: kcheckgmail
Binary: kcheckgmail
Architecture: source i386
Version: 0.5.5-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kcheckgmail - KDE systray application to check GMail accounts
Closes: 345177 385834
Changes: 
 kcheckgmail (0.5.5-2) unstable; urgency=low
 .
   * Acknowledge NMU (Closes: #385834)
 .
   * Added upstream SV localization (Closes: #345177)
 .
   * Updated to Standards-Version 3.7.2 with no changes.
Files: 
 51d83c6aa3d0385fb368ccf7e60ef512 645 kde optional kcheckgmail_0.5.5-2.dsc
 6b50cdca028558173b2fb700f2e24ec8 613861 kde optional 
kcheckgmail_0.5.5.orig.tar.gz
 bcb900b90f466120f4cb7cd3d4591251 108526 kde optional 
kcheckgmail_0.5.5-2.diff.gz
 8c0462d3083ed9249f3e73d8d8372dcf 103302 kde optional 
kcheckgmail_0.5.5-2_i386.deb

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

iD8DBQFFE7s1NFDtUT/MKpARAmC9AKCW3LvBQahZBmfTTarn7ns5n6YsKQCeLH90
Aa/s+L4DQa1FsT8xIC11NNA=
=NuLp
-END PGP SIGNATURE-


Accepted:
kcheckgmail_0.5.5-2.diff.gz
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.5-2.diff.gz
kcheckgmail_0.5.5-2.dsc
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.5-2.dsc
kcheckgmail_0.5.5-2_i386.deb
  to pool/main/k/kcheckgmail/kcheckgmail_0.5.5-2_i386.deb


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



Accepted libsmbios 0.12.1-1 (source all i386 amd64)

2006-09-03 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri,  1 Sep 2006 18:59:08 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all i386 amd64
Version: 0.12.1-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Changes: 
 libsmbios (0.12.1-1) unstable; urgency=low
 .
   * New upstream version
Files: 
 426df6438692f978edb358cfe8c13ba9 742 libs optional libsmbios_0.12.1-1.dsc
 3d6951713648dc87016a2930742fdeb0 4964457 libs optional 
libsmbios_0.12.1.orig.tar.gz
 505829c3c949293f18e36ccf22c97b42 5912 libs optional libsmbios_0.12.1-1.diff.gz
 fa2866e4019fb9f86dae63314b4d1fa8 193656 libs optional 
libsmbios1_0.12.1-1_i386.deb
 0d8799c78c3f075ba4366a6f160e04a2 38830 libdevel optional 
libsmbios-dev_0.12.1-1_i386.deb
 280aeee6986fec43f2bfe6b3ece1ccc9 85004 admin optional 
libsmbios-bin_0.12.1-1_i386.deb
 946e9c02d4144bc74bf3d9c471ffc011 1230096 libs optional 
libsmbios-doc_0.12.1-1_all.deb
 61cd4c21d3e9361a30f79e61df6925dd 53918 libs optional 
libsmbiosxml1_0.12.1-1_i386.deb
 989d6c0778dab202e91ba6db12ecd3ed 6678 libdevel optional 
libsmbiosxml-dev_0.12.1-1_i386.deb
 2fe70408cc9a20dc80dcaaa1b21e868e 196886 libs optional 
libsmbios1_0.12.1-1_amd64.deb
 a9496684c72148d50b064adb6c91f585 38826 libdevel optional 
libsmbios-dev_0.12.1-1_amd64.deb
 876398a1de93a028d798e6b8b2d757be 91902 admin optional 
libsmbios-bin_0.12.1-1_amd64.deb
 30d16bdc305eca59352ae1b571876b85 55082 libs optional 
libsmbiosxml1_0.12.1-1_amd64.deb
 7d8cbc0db8658d5f89bc326c6925d670 6680 libdevel optional 
libsmbiosxml-dev_0.12.1-1_amd64.deb

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

iD8DBQFE+3EcipBneRiAKDwRAugLAJ9Ir+rCiDoojB+i6nVi63wfM3BtDQCePH/e
YwcBylKOPXrT/16xO282+WQ=
=J4SA
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.12.1-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.12.1-1_amd64.deb
libsmbios-bin_0.12.1-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.12.1-1_i386.deb
libsmbios-dev_0.12.1-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.12.1-1_amd64.deb
libsmbios-dev_0.12.1-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.12.1-1_i386.deb
libsmbios-doc_0.12.1-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.12.1-1_all.deb
libsmbios1_0.12.1-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbios1_0.12.1-1_amd64.deb
libsmbios1_0.12.1-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios1_0.12.1-1_i386.deb
libsmbios_0.12.1-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.12.1-1.diff.gz
libsmbios_0.12.1-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.12.1-1.dsc
libsmbios_0.12.1.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.12.1.orig.tar.gz
libsmbiosxml-dev_0.12.1-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.12.1-1_amd64.deb
libsmbiosxml-dev_0.12.1-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.12.1-1_i386.deb
libsmbiosxml1_0.12.1-1_amd64.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.12.1-1_amd64.deb
libsmbiosxml1_0.12.1-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.12.1-1_i386.deb


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



Accepted lcdproc 0.5.0-1 (source i386 sparc amd64)

2006-09-03 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 23 Jul 2006 20:23:48 +0200
Source: lcdproc
Binary: lcdproc
Architecture: source i386 sparc amd64
Version: 0.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 lcdproc- LCD display driver daemon and clients
Closes: 331885 355458 355460 365436 365496 367945 376449
Changes: 
 lcdproc (0.5.0-1) unstable; urgency=low
 .
   * New upstream version (Closes: #367945)
 - New maintainer. Thank you for your previous work, Jon!
 - Upstream added suport for 'imon' devices (Closes: #365496)
 - Upstream fixed descriptor leak (Closes: #355460)
 - Upstream fixed placing widgets in frame (Closes: #355458)
 .
   * Packaging
 - Depend on debconf-2.0; Allow transition (Closes: #331885)
 - Remove dependency on automake (Closes: #376449)
 - Include missing INSTALL instructions (Closes: #365436)
 - Changed most by hand installation steps into debhelper-based ones
 - Updated to 3.7.2 standards version
Files: 
 25e2543034b524b7409661958a5b7b87 659 utils extra lcdproc_0.5.0-1.dsc
 4b67e421c19063fa322611a849ab5b80 78 utils extra lcdproc_0.5.0.orig.tar.gz
 4acfd3f0660d83de024cc5f1cb78dd7f 12554 utils extra lcdproc_0.5.0-1.diff.gz
 b666166dfd6cf5fda800d1f314f94079 272230 utils extra lcdproc_0.5.0-1_i386.deb
 c760d2cda4653de48465ca12edf42829 305142 utils extra lcdproc_0.5.0-1_amd64.deb
 94526884ab75bf786994394475874112 240790 utils extra lcdproc_0.5.0-1_sparc.deb

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

iD8DBQFE+4KkipBneRiAKDwRAnv/AJ9wGUyhRSlrm98uibadmkSpyIl4KQCeJIR8
QunIY557muF+aE6VdDzJgok=
=hNWe
-END PGP SIGNATURE-


Accepted:
lcdproc_0.5.0-1.diff.gz
  to pool/main/l/lcdproc/lcdproc_0.5.0-1.diff.gz
lcdproc_0.5.0-1.dsc
  to pool/main/l/lcdproc/lcdproc_0.5.0-1.dsc
lcdproc_0.5.0-1_amd64.deb
  to pool/main/l/lcdproc/lcdproc_0.5.0-1_amd64.deb
lcdproc_0.5.0-1_i386.deb
  to pool/main/l/lcdproc/lcdproc_0.5.0-1_i386.deb
lcdproc_0.5.0-1_sparc.deb
  to pool/main/l/lcdproc/lcdproc_0.5.0-1_sparc.deb
lcdproc_0.5.0.orig.tar.gz
  to pool/main/l/lcdproc/lcdproc_0.5.0.orig.tar.gz


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



Accepted libsieve-dfsg 2.1.13-1 (source i386)

2006-08-31 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 22 Aug 2006 23:57:34 +0200
Source: libsieve-dfsg
Binary: libsieve2-1 libsieve2-dev
Architecture: source i386
Version: 2.1.13-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsieve2-1 - a library for parsing, sorting and filtering your mail
 libsieve2-dev - a library for parsing, sorting and filtering your mail
Closes: 325086
Changes: 
 libsieve-dfsg (2.1.13-1) unstable; urgency=low
 .
   * Initial debian release, fulfil ITP (Closes: #325086)
 - new upstream version
 - third internal release (First was: Mon,  5 Jun 2006 02:03:34 +0200)
 .
   * Packaging based on previous efforts
 by Paul J Stevens [EMAIL PROTECTED]. Thanks.
 - Removed non-DFSG RFCs
 - miscelaneous fixes/enhancements of packaging
 .
   * Upload sponsored by Amaya Rodrigo [EMAIL PROTECTED]
Files: 
 62517c08dc931ed9b58f86d7f905dfc9 662 libs optional libsieve-dfsg_2.1.13-1.dsc
 2e384c68782d3cf60054aa04b251744a 593171 libs optional 
libsieve-dfsg_2.1.13.orig.tar.gz
 2dbf811a43a02d10e4819341025fa55f 4837 libs optional 
libsieve-dfsg_2.1.13-1.diff.gz
 9d157d5336a8aedbc99a5a78063c94b9 102050 libdevel optional 
libsieve2-dev_2.1.13-1_i386.deb
 fcf56189ac9d368cb548632555c0c248 72200 libs optional 
libsieve2-1_2.1.13-1_i386.deb

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

iD8DBQFE7dluNFDtUT/MKpARArLZAKDkmqgsC2M8Bo5T67iBtsRpJvoKFwCglejO
fdJT6uYCd8qkgHCtlvSia08=
=HEj0
-END PGP SIGNATURE-


Accepted:
libsieve-dfsg_2.1.13-1.diff.gz
  to pool/main/libs/libsieve-dfsg/libsieve-dfsg_2.1.13-1.diff.gz
libsieve-dfsg_2.1.13-1.dsc
  to pool/main/libs/libsieve-dfsg/libsieve-dfsg_2.1.13-1.dsc
libsieve-dfsg_2.1.13.orig.tar.gz
  to pool/main/libs/libsieve-dfsg/libsieve-dfsg_2.1.13.orig.tar.gz
libsieve2-1_2.1.13-1_i386.deb
  to pool/main/libs/libsieve-dfsg/libsieve2-1_2.1.13-1_i386.deb
libsieve2-dev_2.1.13-1_i386.deb
  to pool/main/libs/libsieve-dfsg/libsieve2-dev_2.1.13-1_i386.deb


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



Accepted libsmbios 0.11.5-1 (source all i386)

2006-07-27 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 10 Jun 2006 14:54:36 +0200
Source: libsmbios
Binary: libsmbios-dev libsmbiosxml1 libsmbios1 libsmbiosxml-dev libsmbios-doc 
libsmbios-bin
Architecture: source all i386
Version: 0.11.5-1
Distribution: unstable
Urgency: low
Maintainer: Amaya Rodrigo [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 libsmbios-bin - Provide access to (SM)BIOS information -- utility binaries
 libsmbios-dev - Provide access to (SM)BIOS information - development files
 libsmbios-doc - Access to (SM)BIOS information in an OS-indepent way (docs)
 libsmbios1 - Provide access to (SM)BIOS information -- dynamic library
 libsmbiosxml-dev - Provide access to (SM)BIOS information - development files
 libsmbiosxml1 - Provide XML access to (SM)BIOS information -- dynamic library
Closes: 354900 368915
Changes: 
 libsmbios (0.11.5-1) unstable; urgency=low
 .
   * New upstream version (Closes: #354900)
 .
   * Packaging
 - Depend on libxerces27-dev now (Closes: #368915)
 - Upgraded to Standards-Version 3.7.2 with no changes
 .
   * Package sponsored by Roberto Lumbreras [EMAIL PROTECTED]
Files: 
 1b0f7766328351296954e358918a 729 libs optional libsmbios_0.11.5-1.dsc
 137a76471f0e7d70972b7ac2456ab687 3485164 libs optional 
libsmbios_0.11.5.orig.tar.gz
 abef7c4189e15cb7efd7b17403a03612 5727 libs optional libsmbios_0.11.5-1.diff.gz
 4a284185a2eed3c8f3793ae52de67a79 158610 libs optional 
libsmbios1_0.11.5-1_i386.deb
 b0f17bf1a4c129e657cce634d6cb50e9 34116 libdevel optional 
libsmbios-dev_0.11.5-1_i386.deb
 c2ac3de7920892bf6c4a07c78c0010db 88382 admin optional 
libsmbios-bin_0.11.5-1_i386.deb
 a3b952dedb0b4690f57a1062d3d5d10b 1122266 libs optional 
libsmbios-doc_0.11.5-1_all.deb
 f7c0959abddcf4bb2c33657636a87d53 51290 libs optional 
libsmbiosxml1_0.11.5-1_i386.deb
 950666da7786dd2b27ee43c9db5c75a4 2740 libdevel optional 
libsmbiosxml-dev_0.11.5-1_i386.deb

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

iD8DBQFEyQkcNFDtUT/MKpARAlg3AJ4v+kXwzY8HhXRSSxMkHmpUwiqtdQCg+eCX
Ifk6+ffCIlNWefO3BMeMs6Q=
=4tHw
-END PGP SIGNATURE-


Accepted:
libsmbios-bin_0.11.5-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-bin_0.11.5-1_i386.deb
libsmbios-dev_0.11.5-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios-dev_0.11.5-1_i386.deb
libsmbios-doc_0.11.5-1_all.deb
  to pool/main/libs/libsmbios/libsmbios-doc_0.11.5-1_all.deb
libsmbios1_0.11.5-1_i386.deb
  to pool/main/libs/libsmbios/libsmbios1_0.11.5-1_i386.deb
libsmbios_0.11.5-1.diff.gz
  to pool/main/libs/libsmbios/libsmbios_0.11.5-1.diff.gz
libsmbios_0.11.5-1.dsc
  to pool/main/libs/libsmbios/libsmbios_0.11.5-1.dsc
libsmbios_0.11.5.orig.tar.gz
  to pool/main/libs/libsmbios/libsmbios_0.11.5.orig.tar.gz
libsmbiosxml-dev_0.11.5-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml-dev_0.11.5-1_i386.deb
libsmbiosxml1_0.11.5-1_i386.deb
  to pool/main/libs/libsmbios/libsmbiosxml1_0.11.5-1_i386.deb


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



Bug#374811: python-gtk2: Unterminated 's' command to SED

2006-06-21 Thread Jose Luis Tallon
Package: python-gtk2
Version: 2.8.2-3.1
Severity: grave
Tags: patch
Justification: renders package unusable

Just dist-upgraded. Python-gtk2 was updated alongside others.
Postinst fails with sed: unterminated 's' command, line #1 char #32

There is a slash missing at postinst (case 'configure'):

- PYVERS=$(dpkg-query -s $PACKAGE | sed -n -e '/^Python-Version:/s/.*:\(.*\)/\1'
+ PYVERS=$(dpkg-query -s $PACKAGE | sed -n -e 
'/^Python-Version:/s/.*:\(.*\)/\1/'

I assume it's just a typo. Shit happens :-)
Thanks for maintaining this package.


Cheers,
J.L.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages python-gtk2 depends on:
ii  libatk1.0-0  1.11.4-2The ATK accessibility toolkit
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libcairo21.0.4-2 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-1The GLib library of C routines
ii  libgtk2.0-0  2.8.18-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.3-1Layout and rendering of internatio
ii  libx11-6 2:1.0.0-6   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  python   2.3.5-10An interactive high-level object-o
ii  python-cairo 1.0.2-2 Python bindings for the Cairo vect
ii  python-central   0.5.0   register and build utility for Pyt
ii  python-numeric   24.2-3  Numerical (matrix-oriented) Mathem

python-gtk2 recommends no packages.

-- no debconf information


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



Bug#374811: python-gtk2: Unterminated 's' command to SED

2006-06-21 Thread Jose Luis Tallon
Package: python-gtk2
Version: 2.8.2-3.1
Severity: grave
Tags: patch
Justification: renders package unusable

Just dist-upgraded. Python-gtk2 was updated alongside others.
Postinst fails with sed: unterminated 's' command, line #1 char #32

There is a slash missing at postinst (case 'configure'):

- PYVERS=$(dpkg-query -s $PACKAGE | sed -n -e '/^Python-Version:/s/.*:\(.*\)/\1'
+ PYVERS=$(dpkg-query -s $PACKAGE | sed -n -e 
'/^Python-Version:/s/.*:\(.*\)/\1/'

I assume it's just a typo. Shit happens :-)
Thanks for maintaining this package.


Cheers,
J.L.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) (ignored: 
LC_ALL set to [EMAIL PROTECTED])

Versions of packages python-gtk2 depends on:
ii  libatk1.0-0  1.11.4-2The ATK accessibility toolkit
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libcairo21.0.4-2 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-1The GLib library of C routines
ii  libgtk2.0-0  2.8.18-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.3-1Layout and rendering of internatio
ii  libx11-6 2:1.0.0-6   X11 client-side library
ii  libxcursor1  1.1.5.2-5   X cursor management library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  python   2.3.5-10An interactive high-level object-o
ii  python-cairo 1.0.2-2 Python bindings for the Cairo vect
ii  python-central   0.5.0   register and build utility for Pyt
ii  python-numeric   24.2-3  Numerical (matrix-oriented) Mathem

python-gtk2 recommends no packages.

-- no debconf information


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



Accepted kchmviewer 2.5-2 (source i386)

2006-06-09 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 08 Jun 2006 20:08:39 +0200
Source: kchmviewer
Binary: kchmviewer
Architecture: source i386
Version: 2.5-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Closes: 372168
Changes: 
 kchmviewer (2.5-2) unstable; urgency=low
 .
   * Fix FTBFS with g++4.1 (Closes: #372168)
Files: 
 ce2e4b6b7caf6af218696aca6bd4f310 620 kde optional kchmviewer_2.5-2.dsc
 eb4898f98326e3b07cbbae027090f521 3783 kde optional kchmviewer_2.5-2.diff.gz
 23bbfd8693ae050a9ddc9fdd9f993686 206098 kde optional kchmviewer_2.5-2_i386.deb

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

iD8DBQFEiYmTfIEQE/XJcI0RAjRZAJ4gIYn2RHAanRqVia3v/0K78V84RQCdH2P4
kxiCjdc6wPeb2YqwQDMv64I=
=Qlsq
-END PGP SIGNATURE-


Accepted:
kchmviewer_2.5-2.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_2.5-2.diff.gz
kchmviewer_2.5-2.dsc
  to pool/main/k/kchmviewer/kchmviewer_2.5-2.dsc
kchmviewer_2.5-2_i386.deb
  to pool/main/k/kchmviewer/kchmviewer_2.5-2_i386.deb


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



Accepted kchmviewer 2.5-1 (source i386)

2006-06-06 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 11 May 2006  2:32:41 +0200
Source: kchmviewer
Binary: kchmviewer
Architecture: source i386
Version: 2.5-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kchmviewer - CHM viewer for KDE
Closes: 356517
Changes: 
 kchmviewer (2.5-1) unstable; urgency=low
 .
   * New upstream version
 .
   * Fix building with g++4.1 (Closes: #356517)
 .
   * Updated to standards version 3.7.2 with no changes
Files: 
 7681d6e20a6344e6d832a712edc37483 620 kde optional kchmviewer_2.5-1.dsc
 31aa10f89b92ec5323fef7c26b1e1eed 659755 kde optional kchmviewer_2.5.orig.tar.gz
 9b5ff32b2cd1e43d79bcddf808dd9a6e 3579 kde optional kchmviewer_2.5-1.diff.gz
 14a5b5fc44401a2f2948988d8c68f880 206070 kde optional kchmviewer_2.5-1_i386.deb

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

iD8DBQFEhc6ofIEQE/XJcI0RAj88AKC281KV7G8IQAtk9hibZY3yrUwUigCgtSIm
Rk5pbCKFiB7+PZtU3ruSTS0=
=VK5f
-END PGP SIGNATURE-


Accepted:
kchmviewer_2.5-1.diff.gz
  to pool/main/k/kchmviewer/kchmviewer_2.5-1.diff.gz
kchmviewer_2.5-1.dsc
  to pool/main/k/kchmviewer/kchmviewer_2.5-1.dsc
kchmviewer_2.5-1_i386.deb
  to pool/main/k/kchmviewer/kchmviewer_2.5-1_i386.deb
kchmviewer_2.5.orig.tar.gz
  to pool/main/k/kchmviewer/kchmviewer_2.5.orig.tar.gz


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



Accepted baghira 0.7+cvs20060507-2 (source i386)

2006-05-21 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 20 May 2006 21:54:39 +0200
Source: baghira
Binary: kwin-baghira
Architecture: source i386
Version: 0.7+cvs20060507-2
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kwin-baghira - KDE theme for Apple junkies :)
Closes: 368015
Changes: 
 baghira (0.7+cvs20060507-2) unstable; urgency=low
 .
   * Restore missing libtool support files (Closes: #368015)
 .
   * Package sponsored by Roberto Lumbreras [EMAIL PROTECTED]
Files: 
 adb3b72f04a6f4782edde8fd8858a123 659 kde optional baghira_0.7+cvs20060507-2.dsc
 0f1a23dbc7c0aa4a45e6a6e6b96dab28 3760 kde optional 
baghira_0.7+cvs20060507-2.diff.gz
 c29e2bed8604ace1ad4d97a956a5f437 787938 kde optional 
kwin-baghira_0.7+cvs20060507-2_i386.deb

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

iD8DBQFEcJWXfIEQE/XJcI0RArXuAJ9Cdo6Zkp4n0icPE/YPsKeVuS2eXgCdF6e+
77MnA4FnuamtEpJrgzGecKg=
=cIaW
-END PGP SIGNATURE-


Accepted:
baghira_0.7+cvs20060507-2.diff.gz
  to pool/main/b/baghira/baghira_0.7+cvs20060507-2.diff.gz
baghira_0.7+cvs20060507-2.dsc
  to pool/main/b/baghira/baghira_0.7+cvs20060507-2.dsc
kwin-baghira_0.7+cvs20060507-2_i386.deb
  to pool/main/b/baghira/kwin-baghira_0.7+cvs20060507-2_i386.deb


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



Accepted baghira 0.7+cvs20060507-1 (source i386)

2006-05-18 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 12 May 2006  4:33:17 +0200
Source: baghira
Binary: kwin-baghira
Architecture: source i386
Version: 0.7+cvs20060507-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 kwin-baghira - KDE theme for Apple junkies :)
Closes: 327935 343957 345833 345872 356583
Changes: 
 baghira (0.7+cvs20060507-1) unstable; urgency=low
 .
   * New upstream version
 - Fixes for g++4.1 (Closes: #356583)
 - Sidebar builds natively (Closes: #345872)
 - Sidebar uses proper remote:/ handler (Closes: #345833)
 .
   * Rebuild
 - new C++ ABI (Closes: #327935)
 - newer autotools/libtool (Closes: #343957)
 - Build with KDE 3.5.2 tools
 .
   * Package sponsored by Roberto Lumbreras [EMAIL PROTECTED]
Files: 
 7fd2874b2b4d74a4642406ac0e5cedbd 659 kde optional baghira_0.7+cvs20060507-1.dsc
 d7db614828cf5b4b28d9ffb75565f1b2 1095877 kde optional 
baghira_0.7+cvs20060507.orig.tar.gz
 51372351f5eb2564da90c6c791c3e35e 3725 kde optional 
baghira_0.7+cvs20060507-1.diff.gz
 703b197c7be8ec08fe1a682b323cbb8d 782990 kde optional 
kwin-baghira_0.7+cvs20060507-1_i386.deb

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

iD8DBQFEbDxCfIEQE/XJcI0RAqfvAJkBYeIv6pvl8KMq2e/1vnE7cCWk4ACeM5Qg
k3Tbt9L4yqgnYLjtbq6Ts7c=
=yi6W
-END PGP SIGNATURE-


Accepted:
baghira_0.7+cvs20060507-1.diff.gz
  to pool/main/b/baghira/baghira_0.7+cvs20060507-1.diff.gz
baghira_0.7+cvs20060507-1.dsc
  to pool/main/b/baghira/baghira_0.7+cvs20060507-1.dsc
baghira_0.7+cvs20060507.orig.tar.gz
  to pool/main/b/baghira/baghira_0.7+cvs20060507.orig.tar.gz
kwin-baghira_0.7+cvs20060507-1_i386.deb
  to pool/main/b/baghira/kwin-baghira_0.7+cvs20060507-1_i386.deb


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



Accepted couriergraph 0.25-1 (source all)

2006-05-17 Thread Jose Luis Tallon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 12 May 2006  3:25:49 +0200
Source: couriergraph
Binary: couriergraph
Architecture: source all
Version: 0.25-1
Distribution: unstable
Urgency: low
Maintainer: Jose Luis Tallon [EMAIL PROTECTED]
Changed-By: Jose Luis Tallon [EMAIL PROTECTED]
Description: 
 couriergraph - Mail statistics RRDtool frontend for Courier-{POP,IMAP}
Closes: 325729 340330 351040
Changes: 
 couriergraph (0.25-1) unstable; urgency=low
 .
   * New upstream version (Closes: #351040)
 - Couriergraph now works with rrdtool 1.2 (Closes: #325729)
 - Couriergraph: Y-axis caption should be logins/hour on
   the second graph (Closes: #340330)
 .
   * Postrm: clean remaining /etc/default/couriergraph on purge
 .
   * New standards version conformance (3.7.2)
 - Moved couriergraph.pl to /usr/share/cgi-lib (per 3.7.0.0)
Files: 
 109ec016cc6479fd3160af6ab5c1b8cc 633 admin extra couriergraph_0.25-1.dsc
 72b44c284dd07de83f8a5a24cc920f0b 7567 admin extra couriergraph_0.25.orig.tar.gz
 30719f91d33bcf497f36ff3a31895a80 11469 admin extra couriergraph_0.25-1.diff.gz
 6edd21ac8a4561c90048a0912730374a 14690 admin extra couriergraph_0.25-1_all.deb

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

iD8DBQFEayj3ipBneRiAKDwRAiLYAKCqfCC5q531oWEG5zHukHdipdcN2ACeIDs+
E2zBxcFiKcYCSMbuaiY24hU=
=L3Yn
-END PGP SIGNATURE-


Accepted:
couriergraph_0.25-1.diff.gz
  to pool/main/c/couriergraph/couriergraph_0.25-1.diff.gz
couriergraph_0.25-1.dsc
  to pool/main/c/couriergraph/couriergraph_0.25-1.dsc
couriergraph_0.25-1_all.deb
  to pool/main/c/couriergraph/couriergraph_0.25-1_all.deb
couriergraph_0.25.orig.tar.gz
  to pool/main/c/couriergraph/couriergraph_0.25.orig.tar.gz


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



  1   2   >