Bug#1068823: Stepwise Debian upgrade to enable systems with little free storage space to upgrade without breaks due to "No space left on device"

2024-04-13 Thread Bernd Zeimetz
On Thu, 2024-04-11 at 16:46 +, mYnDstrEAm wrote:
> 
> For example, I think a good approach to this would be something like
> this (if the user is low on root partition disk space):
> 1. asking for *at least* 400MB to be available
> 2. if a parameter for stepwise is set or it detected low free disk
> space:
> 3. downloading the first 300 MB or so of packages
> 4. installing these
> 5. deleting the cached packages from /var/cache/apt/archives/
> 6. downloading the next batch up to the storage limit set at start
> 7. and so on (without exiting in-between)
> 

quick and dirty and not tested:

while apt -s upgrade | grep '^Inst' | head -1 | awk '{print $2}' |
xargs apt install; do apt clean; done

Use head -10 or whatever fits for more/less packages.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Debian openssh option review: considering splitting out GSS-API key exchange

2024-04-07 Thread Bernd Zeimetz
On Tue, 2024-04-02 at 12:04 +0200, Marco d'Itri wrote:
> On Apr 02, Colin Watson  wrote:
> 
> > At the time, denyhosts was popular, but it was removed from Debian
> > several years ago.  I remember that, when I dealt with that on my
> > own
> > systems, fail2ban seemed like the obvious replacement, and my
> > impression
> > is that it's pretty widely used nowadays; it's very pluggable but
> > it
> > normally works by adding firewall rules.  Are there any similar
> > popular
> > systems left that rely on editing /etc/hosts.deny?
> Yes, people. I object to removing TCP wrappers support since the
> patch 
> is tiny and it supports use cases like DNS-based ACLs which cannot be
> supported by L3 firewalls.
> 

There are more than enough ways to keep the entries based on dns
records in your l3 firewalls uptodate, I can't see how this should
warrant to keep yet another patch Jan^WMarco.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: syslog-ng: identified for time_t transition but no ABI in shlibs

2024-04-05 Thread Bernd Zeimetz
Hi Attila,

On Fri, 2024-04-05 at 09:47 +0100, Attila Szalay wrote:
> Based on https://wiki.debian.org/NonMaintainerUpload, the binNMU
> should
> be careful

I think you are confusing binNMUs and NMUs.
See https://wiki.debian.org/binNMU

They are handled more or less automatic as soon as a rebuild is needed
for a transition.

You might want to read the bug report again, it basically says that no
NMU will be uploaded, but you package will break if you don't apply the
attached patch. And the binNMU that will most likely break it will
happen.

The way how the time_t change happens was discussed for a *long* time,
you are a bit late with complaints.


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Rebuilding old packages to get rid of overalignment on amd64 which reduces ASLR

2024-03-10 Thread Bernd Zeimetz
On Thu, 2024-03-07 at 11:48 +0100, Mathias Krause wrote:
> 
> To get rid of the over-alignment, a rebuild with a linker that
> doesn't enforce
> the overly huge alignment any more is sufficient. In Debian terms
> that would be
> anything starting with buster.
> 
> I, thereby, request to rebuild affected packages.

So as I understand it: this will be fixed by itself as soon as somebody
uploads or binNMUs the package?

Then I would wait for some point near the release. And packages that
haven't been touched since buster might need some qa love anyway!?


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: proposal: dhcpcd-base as standard DHCP client starting with Trixie

2024-03-10 Thread Bernd Zeimetz
Hi,


On Mon, 2023-06-19 at 13:54 +0300, Martin-Éric Racine wrote:
> I hereby propose bin:dhcpcd-base:
> 
> 1) already supported by ifupdown.
> 2) dual stack (DHCPv4, Bonjour, RA, DHCPv6 with PD) with privilege
> separation.
> 3) writes both IPv4 and IPv6 name servers to /etc/resolv.conf
> 4) supports /etc/resolv.conf.head and /etc/resolv.conf.tail
> 5) a mere inet line in /etc/network/interfaces is sufficient to
> configure both stacks.
> 

why not switch to systemd-networkd + networkmanager for gui installs?

I'm not sure how well NM is integrated with systemd-networkd now, but I
would rather spend time on supporting such a combination and getting
rid of all the old ways of configuring networking stuff than
implementing yet another "client" solution.



Bernd

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: dpkg --verify not helpful?

2024-03-02 Thread Bernd Zeimetz
On Sat, 2024-03-02 at 10:53 +0100, Andreas Metzler wrote:
> 
> 
> cd / && find  /var/lib/dpkg/info -name '*.md5sums' -exec md5sum --
> check --quiet {} +
> 


➜  sudo rm /usr/share/doc/zsh/changelog.gz 
➜  debsums -c zsh
debsums: missing file /usr/share/doc/zsh/changelog.gz (from zsh
package)

(By default it scans all packages...)

If md5sums are really something the Debian project should trust on and
if the way we ship them without an easy way to verify them its a
different issue.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Another take on package relationship substvars

2024-02-24 Thread Bernd Zeimetz
On Thu, 2024-02-22 at 20:52 +0100, IOhannes m zmölnig wrote:
> 
> While I like the idea in general, I wonder how I could override these
> automatic additions.
> I think there are some packages that even demote `${shlibs:Depends}`
> to Recommends.
> 

Absolutely. collectd for example - otherwise you would install *all*
plugin dependencies with collectd, which would be a big waste of space.

The other option would be to make one packe per plugin as redhat does,
but do we really want 20 packages with a single file?


Bernd
 
-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Firmware GR result - what happens next?

2022-10-16 Thread Bernd Zeimetz
On Sun, 2022-10-02 at 12:26 -0700, Steve Langasek wrote:
> 
> I heartily endorse ubuntu-release-upgrader, it has been useful in addressing
> uncounted upgrade issues over the years and I think something like this
> would be a nice addition to Debian as well.  Two caveats:

That thing is actually one of the main reasons I'm not using Ubuntu.

I expect properly maintained and upgradable packages, and not a hacky thing.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: What are desired semantics for /etc/shells?

2021-06-27 Thread Bernd Zeimetz
On Mon, 2021-06-14 at 22:02 +, Holger Levsen wrote:
> On Mon, Jun 14, 2021 at 02:50:29PM -0600, Sam Hartman wrote:
> > As an admin, I expect to be able to install a shell, say because I want
> > to write scripts in it, without allowing users to select it as a login
> > shell.
> > I expect installing a shell, and remove-shelling that shell to work for
> > this purpose.
>  
> 
> 
> 
> point taken, I guess. OTOH, if, as an admin, I apt install a shell, I'd
> assume it to work as a login shell?!? :)

True, but sometimes you have to protect users from doing dumb things.
Or protect yourself from the time you have to spend if users accidentally
choose shells they don't understand.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F




Re: Thanks and Decision making working group (was Re: General Resolution: Statement regarding Richard Stallman's readmission to the FSF board result)

2021-04-19 Thread Bernd Zeimetz

On 2021-04-19 02:46, Brian Thompson wrote:

Is it really still an open question whether Debian is a political



project that has opinions on non-technical topics like the board of

the


FSF or the legal status of Taiwan, Palestine and Kosovo, or whether



Debian is a technical project where people of diverse backgrounds

and


political opinions can work together on making a good distribution?


I'm very new to the project, but for those who were unaware of this
discussion, it makes the project a lot less appealing to contribute to
upon hearing about it.  It doesn't make any sense for a "FOSS" project
to have any weight whatsoever on political on goings.  To put it
bluntly, political opinion shouting is repulsive, and very
disappointing at best.  I can probably safely say that many people who
are a part of this project already work for the elite IT companies who
push their garbage political agendas all day, every day.  The last
thing people want to do is contribute to a project in their free time
that does the same thing.



Exactly what I'm thinking.
And exactly the reason why I like the outcome of the GR.

Please lets get back to technical issues.

--
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Thanks and Decision making working group (was Re: General Resolution: Statement regarding Richard Stallman's readmission to the FSF board result)

2021-04-19 Thread Bernd Zeimetz

On 2021-04-19 08:57, Jonathan Carter wrote:



That's more than just a big assumption, I'd go as far to say that it's 
a

big leap to assume that from that option. Additionally, you're assuming
that that attempts to fix the problems in our voting system would
somehow make us more political? How do you come to that conclusion?
We've had very large technical GRs which have shown significant 
problems

in that process causing huge amounts of pain and frustration in our
community, and it comes up regularly how useful it would be to take a
formal project-wide poll on something.


So how does changing the voting system change the way we come up with
"something" to vote on? It doesn't matter which voting system you are
using if your problem is to decide what you want to vote on.



At the same time, there's often
confusion about what exact vote rankings actually mean. To the point
where a significant people either don't vote at all exactly because of
that,


How do you come to that conclusion? If I remember right we had
40-50% voter turnout, so you think that 30...40% fail to understand
rankings? And out of these none bothers to ask for explanations?
(I know that there were some questions regarding the meaning of FD,
but the amount of participating non-voters in that discussion is
way too low to support your statement).


or their vote actually has a significantly different effect than
what they intended.


Care to explain that?
A voting system works as designed and the Debian voting system is
actually one of the easier systems to understand. Ranking options
is not that hard. Maybe we should educate voters about the voting
system if necessary?


--
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Thanks and Decision making working group (was Re: General Resolution: Statement regarding Richard Stallman's readmission to the FSF board result)

2021-04-18 Thread Bernd Zeimetz
On Sun, 2021-04-18 at 14:04 +0200, Jonathan Carter wrote:
> 
> However, I don't think we're quite in a position to pat ourselves on the
> back here. This vote has once again highlighted some problems in our
> methods for making decisions. I think that we should set up a working
> group to specifically deal with voting, polling and project-wide
> decision making so that we can deal more efficiently with problems in
> the future.

Except for making a vote secret, what do you think the problem is?
Debian has an excellt voting system, why should we change that? Because some
people don't like the outcome? That is what happens when people are allowed
to vote. Live with it.


> While this vote caught a lot of heat, essentially it's quite a trivial
> vote. Ultimately it had become a question of if and how we should
> respond to an external situation. I think that as Debian grows, as the
> free software eco-system grows, and as software gets ever more ingrained
> in our every day life, the questions and problems we're going to face
> will become increasingly complex and that we should adapt to be able to
> deal with those as a project.

Adapt so its harder to vote for things that people might not like?


> Can we go ahead and set up such a working group? I'm thinking that it
> would involve mailing list discussions, video calls, sessions at
> DebConf, probably at least one GR, research on different voting methods
> that could be used, voting software, etc. Fortunately, we're not the
> only organisation in the world facing issues like these and we can make
> use of some external experts too. Although all of this will also take
> some time and effort so I'd really like to have you on board as one of
> the drivers of this project and also others who have a keen interest in
> this. What do you think?

Experts for what? Designing voting systems that prefer one option over other
options? 

Your plan is a major a waste of time and will result in a lot of useless
discussions and anger. It is not what the project needs. And if you'd have
suggested that earlier, I'd have ranked you way below FD in the DPL election.

If it is possible to vote, there might be results people don't like. If
people are not allowed to vote, its not Debian anymore. We have an excellent
way of voting and actually a good amount of allowed voters take part in
votes. Please take these useless discussions elsewhere, lets make a release.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F




Re: Virtual Debian BSP Salzburg

2021-02-09 Thread Bernd Zeimetz
On Tue, 2021-02-09 at 19:31 +0100, Luna Jernberg wrote:
> Hello!
> 
> Is it okay to only attend some of the BSP Event?, Noticed now in my
> calendar that i was double booked on that weekend 

Of course. Every single minute spent on fixing bugs is welcome :)


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F




Re: Proposal: plocate as standard for bookworm

2021-02-06 Thread Bernd Zeimetz



On 2/6/21 6:10 PM, Steinar H. Gunderson wrote:

> I believe a good, fast locate is something that we should have in our base
> install; it is fine to keep it out of the cloud image (as today), but it is
> genuinely useful for both desktops and servers, and with a low cost.

seconded, thanks for writing plocate!

> Thoughts?

I think plocate should have a Conflicts: mlocate. There is no need to
install two locate implementations in parallel, it will just create
useless IO.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Possible DEP proposal - contribution preferences

2021-02-02 Thread Bernd Zeimetz



On 2/2/21 4:48 PM, Adrian Bunk wrote:
> A debhelper compat bump is a breaking change that must not be done 
> without the maintainer verifying that it didn't introduce any
> regression.
> 
> This is the whole point of compat levels.
> 
> Unfortunately there is a lack of recognition how many bugs are 
> introduced by blindly updating debhelper compat levels - staying
> at a deprecated compat level is better than a not properly tested
> compat bump.

I'm less concerned about compat levels, usually these things produce
failing builds or the package is just not comparable to the one you had
before.


But I think(!) what people bump easily is the Standards Version without
checking anything. Lintian is happy if you change the number...


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Bug#981176: RFP: doas -- minimal replacement for sudo

2021-01-27 Thread Bernd Zeimetz
Package: wnpp
Severity: wishlist
X-Debbugs-Cc: debian-devel@lists.debian.org

* Package name: doas
  Version : 6.8
  Upstream Author : Duncan Overbruck znc others
* URL : https://github.com/Duncaen/OpenDoas
* License : bsd
  Programming Lang: c
  Description : minimal replacement for sudo


OpenDoas: a portable version of OpenBSD's doas command

With the regular security issues in sudo it would make sense
to have an alternative tools with a much smaller codebase.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Added hundreds of media types to /etc/mime.types

2021-01-09 Thread Bernd Zeimetz



On 1/9/21 12:22 AM, Charles Plessy wrote:
 implement a choice in this script.
> 
> If this is too close to the freeze, I can temporarly remove `sdf` for
> `application/vnd.stardivision.math` and re-add it later.



sdf from Stardivision Math rings a bell as something I've used when I
was in School. Which is ... long...long ago.

For those who don't remember it: Stardivision had a really nice office
suite which was at some point bought by Sun. Years later libreoffice is
still able to open Staroffice Writer files. But as far as I can tell
libreoffice math is not even able to read sdf files anymore.

So I think it is really save to drop that in favour of the other one (no
clue what that is, though).



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: On doing 3000 no-source-change source-only uploads in January 2021

2020-12-31 Thread Bernd Zeimetz
Hi Holger,

> 
> as described in Message-ID: <20201231124509.gb3...@layer-acht.org>
> or 
> http://layer-acht.org/thinking/blog/20201231-no-source-change-source-uploads/
> I plan to do 3000 NMUs soon. 

Thanks for your work!

Although the high number of packages makes me wonder, if at least a
quick MIA check of the maintainers is warranted, or - if those packages
are needed in bullseye at all.
Of course, there are some packages which are working just fine with the
same source for years, but at least some debhelper/compat or policy
check and upload at some point makes sense.

I think Debian should sometimes be better and faster in removing
unmaintained stuff.


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa License list

2020-12-08 Thread Bernd Zeimetz
Hi,

> However while the license template lists

... does not really matter what they list, just create a repository
without choosing a license and commit your own LICENSE file.


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Lenovo discount portal update (and a few other things)

2020-09-11 Thread Bernd Zeimetz

On 2020-09-03 00:11, Marco d'Itri wrote:

On Sep 02, Mark Pearson  wrote:

You should just be able to register with your debian.org email address 
to
get the discount on any Lenovo equipment. Do let me know if any 
problems.

This is great news, even if I do not live in the USA so this is not
relevant for me at this time.
But you should be aware that not all developers choose to enable their
debian.org email address, so given time it would be useful to have an
alternative authorization method.


I think its a bit harsh to ask for other ways of authentication.
A DD should be able to enable the mail account and configure procmail
(or $preferred_other_way) to reject all mails but those from lenovo.


--
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Tagging in Salsa -> upload: status?

2020-08-20 Thread Bernd Zeimetz



On 8/19/20 7:28 PM, Ansgar wrote:

> Well, I can't fix it without creating dgit-ng (and setting up
> infrastructure for that) as dgit upstream won't accept patches from me.

That is just one of the reasons why I think that salsa should be used
for "official" services like tag2upload.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Source only upload

2020-07-14 Thread Bernd Zeimetz
Hi Michael,

> I just fell into the trap (again) and uploaded a binary package instead of
> sources only. We don't want the binaries to be uploaded, that much I get, but
> could anyone please explain to me, why we still accept binary uploads and why
> no tool in the whole chain gives as much as a warning, let alone is configured
> to do the right thing?

I've changed my workflow so I won't build binary packages all, that is
only done by the salsa CI. I regularly forget that NEW need binary
packages, but those few cases don't matter much.

I know its just a workaround, but it works well for me.


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Bug#925530: cloud.debian.org: Debian docker images pointing to github for bug tracking

2020-06-28 Thread Bernd Zeimetz



On 6/28/20 10:58 PM, Lucas Nussbaum wrote:
> Well, I think that it would a good thing for Debian to enforce some
> consistency on Debian images for clouds and software that require
> VM images, at least about where to find information about such images,
> and where to report problems.
> 
> And I don't think that pointing to github for our tooling, and for bug
> reporting, is really an acceptable solution for something that is
> officially endorsed by Debian.

Official *Docker* images come from
https://github.com/docker-library/official-images

It might be possible to pull git repositories from the outside of git
hub in there, though, but I doubt it is. At least you'll have to use
github pull requests.

Of course you are free to run your own registry even under a debian.org
domain and provide official Debian images for docker there, but as long
as you want to have them in the docker hub, I think the current practice
is just fine. And: its an image from DOCKER, maintained by Debian
developers - its not an image from DEBIAN. It says 'Docker official
images', not 'Debian official images'.

To be honest, I fail to understand why this needs discussion at all.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Pimp your shell - Debian developer tips?

2020-06-04 Thread Bernd Zeimetz
Hi,

> Do we have Debian devs here who have pimped their shell heavily with
> custom prompts, colors, command line fonts, shell window title hacks,
> perhaps using zsh etc? Have you written blogs about you experiences, can
> you share some good reads (with screenshots) of what you have done?

I'm using the grml zsh config. There are some differences to the
oh-my-zsh-config:

https://unix.stackexchange.com/questions/58319/what-is-the-key-difference-between-grml-zsh-config-and-oh-my-zsh-config

I prefer grml because it just works well and I know where the grml
people are ;)


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: UDD/dmd: fails to load when debci data is missing

2020-05-27 Thread Bernd Zeimetz


> Thanks for pointing to the cause! It finally motivated me to look into
> this. I fixed the bug in DMD.

Thanks Lucas!

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-29 Thread Bernd Zeimetz



On 4/28/20 3:20 PM, Thomas Goirand wrote:

> That's not the case. An MITM attack could gain a session and maintain it
> open, while the end user would just notice "oh shit, I miss-typed the
> 2FA numbers, let's try again". Then the only thing the attacker needs to
> do is keep the session open to not loose access...

I hope you realize that no session is open forever.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-28 Thread Bernd Zeimetz

On 2020-04-28 14:27, PICCA Frederic-Emmanuel wrote:
Is it possible to use it's ssh key in order to  have acces to the salsa 
api ?

I mean instead of the token, which looks to me quite fragile compare
to ssh via a gpg card and the gpg agent.



The api works with a token - and without 2fa. That will not change if 
you

enforce 2fa.

If you use ssh, you can create an own account for the ssh key and give
it very special permissions, if you need it for automatic pushes or
similar things.


--
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-28 Thread Bernd Zeimetz



On 4/27/20 2:49 AM, Paride Legovini wrote:
> An active MITM attack is way more complicated than just sniffing and
> storing traffic for later analysis. Changing the 2FA or password is not
> a great strategy, as you would immediately realize what's going on.
> Silently gaining access to an account allows to act when the conditions
> are the best from the attacker's point of view.

Exactly.
An attacker would gain access to a few accounts, wait and see what they
can do with the gained permissions in the long run. And at some point
compromise something.

2FA stops this kind of attacks completely. Without a current 2fa token,
your password knowledge is useless.

Gaining access with a MITM attack once gives you a very short amount of
time to do whatever you want to do, as your login will be gone as soon
as the next login without MITM happens.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-28 Thread Bernd Zeimetz


On 4/26/20 10:29 PM, Jeremy Stanley wrote:
> You're already seeing quite a few folks responding that being
> required to use an additional application or device each time they
> authenticate would be an inconvenience to them. This is a signal. I
> personally wouldn't enjoy being prompted to activate my TOTP client
> software every time I invoke `git push` so I can understand the
> resistance to your proposal.

Well, use an ssh key than. No need for 2fa there.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



signature.asc
Description: OpenPGP digital signature


Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 8:46 PM, Johannes Schauer wrote:
> Quoting Bernd Zeimetz (2020-04-26 20:34:12)
>> On 4/26/20 12:41 AM, Thomas Goirand wrote:
>>> On 4/25/20 11:14 PM, Bernd Zeimetz wrote:
>>>> Actually I think 2FA should be enforced for everybody.
>>>> Even debian.org related passwords might get lost.
>>> I use strong password, stored with keepassxc, with the password db
>>> encrypted using the HMAC of my yubikey. In what way is this not safe enough
>>> already? 2FA will add nothing in my case, just more annoyance.
>> And then somebody sends you a phishing mail and you enter your password into
>> salsa.debiana.org...
> 
> This cannot happen with a password manager that keeps track of the domain for
> which it stores the passwords.

So you have a browser integrated password manager and consider it secure?
Interesting...


>> And if it doesn't happen to you, it happens to somebody else. Or you or
>> somebody else has to use a more public or work computer for whatever reason.
> 
> this means, that if 2FA would be made mandatory, people like me without a
> smartphone would not be able to use other computers than their private ones
> anymore.

As discussed before, you don't need a smartphone.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 8:30 PM, Bastian Blank wrote:
> On Sat, Apr 25, 2020 at 11:14:39PM +0200, Bernd Zeimetz wrote:
>> Actually I think 2FA should be enforced for everybody.
> 
> No, we don't enforce 2FA for everybody.  And I don't consider it
> appropriate to raise the option.

Could you explain why?

There is nothing bad on an extra bit of security.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 12:31 AM, Gard Spreemann wrote:

> Right, but what's the threat model here? For some of us, losing the
> Salsa password is essentially only possible if we have had our PGP
> dongle or offline private key backup compromised. In this case, the
> attacker can sign uploads to the archive anyway, which is arguably more
> serious than a compromised Salsa account.

It might not be you, it might be somebody else. Not everybody is doing that.

Also: even you wouldn't be the first one to click on a fake link to
salsa.debiana.org or a similar site. Targeted attacks are nothing
uncommon and it is very likely that they succeed, at least with some of
the users.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 2:40 PM, Michael Biebl wrote:
> Am 26.04.20 um 14:36 schrieb Mattia Rizzolo:
>> On Sun, Apr 26, 2020 at 02:07:54PM +0200, Bernd Zeimetz wrote:
>>> There are even cli tools that do the same stuff. I'd guess there is at 
>>> least one on Debian.
>>
>> Indeed, after I first lost a phone, and a second one broke, leaving me
>> with a quite huge pain to recover my accounts, I started using
> 
> On Android I switched from Google Authenticator to andOTP [1] because it
> has builtin backup functionality and being open source is a nice bonus.

Nice, thanks, I was looking for a tool like that!



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 12:41 AM, Thomas Goirand wrote:
> On 4/25/20 11:14 PM, Bernd Zeimetz wrote:
>> Actually I think 2FA should be enforced for everybody.
>> Even debian.org related passwords might get lost.
> 
> I use strong password, stored with keepassxc, with the password db
> encrypted using the HMAC of my yubikey. In what way is this not safe
> enough already? 2FA will add nothing in my case, just more annoyance.

And then somebody sends you a phishing mail and you enter your password
into salsa.debiana.org...

And if it doesn't happen to you, it happens to somebody else. Or you or
somebody else has to use a more public or work computer for whatever reason.

There are more ways to loose a password than you seem to be able to
think of.



Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz



On 4/26/20 7:12 PM, Sean Whitton wrote:

> In such a case, though, haven't you essentially turned it back into one
> factor authentication (the single factor being your laptop)?

Still better than losing a single password in whatever way in the
internet. Targeted phishing attacks for example.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-26 Thread Bernd Zeimetz
Hi, 

Google Authenticator is a software-based authenticator by Google that 
implements two-step verification services using the Time-based One-time 
Password Algorithm (TOTP; specified in RFC 6238) and HMAC-based One-time 
Password algorithm (HOTP; specified in RFC 4226), for authenticating users of 
software applications.

There are even cli tools that do the same stuff. I'd guess there is at least 
one on Debian.

No need for a mobile phone. 


Bernd 

Am 26. April 2020 10:06:14 MESZ schrieb Johannes Schauer :
>Quoting Bernd Zeimetz (2020-04-25 23:14:39)
>> On 4/25/20 10:05 PM, IOhannes m zmölnig (Debian/GNU) wrote:
>> > On 4/25/20 8:34 PM, Bernd Zeimetz wrote:
>> >> https://docs.gitlab.com/ee/security/two_factor_authentication.html
>> >>
>> >> Enforce that (if Salsa is doing that in the meantime,  ignore me).
>> > i hope you don't suggest to enforce 2FA system-wide for all users
>of salsa.
>> > i read you original mail as a requirement to enforce 2FA for users
>who
>> > want to use salsa as an authentication provider for their own
>> > applications (which is fine with me)
>> Actually I think 2FA should be enforced for everybody.
>> Even debian.org related passwords might get lost.
>
>I never used 2FA before, so I want to your link and then, to learn more
>about
>it to this one:
>
>https://docs.gitlab.com/ee/user/profile/account/two_factor_authentication.html
>
>There I read that I have to install some application on my iOS, Android
>or
>SailFish OS device. I do not own any device with either of those
>operating
>system and neither does anybody else in my household. I guess I would
>need to
>use Qemu to run an emulated Android on my laptop instead. But if I do
>that --
>how would that improve security at all?
>
>Thanks!
>
>cheers, josch

-- 
Diese Nachricht wurde von meinem Android-Gerät mit K-9 Mail gesendet.

Re: Salsa update: no more "-guest" and more

2020-04-25 Thread Bernd Zeimetz



On 4/25/20 10:05 PM, IOhannes m zmölnig (Debian/GNU) wrote:
> On 4/25/20 8:34 PM, Bernd Zeimetz wrote:
>> Hi, 
>>
>> https://docs.gitlab.com/ee/security/two_factor_authentication.html
>>
>> Enforce that (if Salsa is doing that in the meantime,  ignore me).
> 
> i hope you don't suggest to enforce 2FA system-wide for all users of salsa.
> i read you original mail as a requirement to enforce 2FA for users who
> want to use salsa as an authentication provider for their own
> applications (which is fine with me)


Actually I think 2FA should be enforced for everybody.
Even debian.org related passwords might get lost.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa update: no more "-guest" and more

2020-04-25 Thread Bernd Zeimetz
Hi, 

https://docs.gitlab.com/ee/security/two_factor_authentication.html

Enforce that (if Salsa is doing that in the meantime,  ignore me).

Bernd 

Am 25. April 2020 18:49:41 MESZ schrieb Bastian Blank :
>Hi Bernd
>
>On Fri, Apr 24, 2020 at 11:13:52PM +0200, Bernd Zeimetz wrote:
>> On 4/18/20 11:33 PM, Bastian Blank wrote:
>> > You are encouraged to use Salsa as an authentication provider for
>Debian
>> > services.  GitLab supports plain OAuth2 and OpenID Connect as
>> > authentiation protocols.  Every user can register their own
>applications
>> > and allow authentication through Salsa.
>> Could we require 2FA for this please?
>
>I'm not sure what you like us to do.  Please enlighten us.
>
>Regards,
>Bastian
>
>-- 
>Most legends have their basis in facts.
>   -- Kirk, "And The Children Shall Lead", stardate 5029.5

-- 
Diese Nachricht wurde von meinem Android-Gerät mit K-9 Mail gesendet.

Re: Salsa update: no more "-guest" and more

2020-04-24 Thread Bernd Zeimetz
Hi Bastian,

thanks for your work!

On 4/18/20 11:33 PM, Bastian Blank wrote:
> You are encouraged to use Salsa as an authentication provider for Debian
> services.  GitLab supports plain OAuth2 and OpenID Connect as
> authentiation protocols.  Every user can register their own applications
> and allow authentication through Salsa.

Could we require 2FA for this please?


Thanks,

Bernd



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



signature.asc
Description: OpenPGP digital signature


Re: What to do when DD considers policy to be optional? [kubernetes]

2020-03-26 Thread Bernd Zeimetz



On 3/25/20 11:30 PM, Dmitry Smirnov wrote:
> Given that logic even re-compiling using different compiler would not be 
> trustworthy. And indeed some people make exactly that argument -- "use our 
> tested binary" as one can't be sure if re-compiling introduces any bugs.

Indeed I'd expect it that you'd at least compile it using the same
golang version.

> That questions the very usability of source code releases, whether you 
> understand it or not.
> 
> With this and your next arguments you are questioning the very usability of 
> packaging and I might agree that Kubernetes may not be worth packaged, 
> especially if we can't do it properly.


k8s is a way too fast moving target to be able to package it in a sane
way. It will be versions behind already when we release Debian.


>> What you suggest is a nice idea, but hard for go sources and impossible
>> for packages like k8s.
> 
> I don't know how to respond nicely when someone who did not maintain a 
> complex Golang application tells me that the way myself and others maintain 
> packages like docker,io, consul, nomad, vault, syncthing is "impossible"...

Not sure how I should respond nicely, but

A) you have no clue what I do (there is life outside of Debian, you know)

B) there are reasons why people recommend not to use the packaged
versions of docker.io. No opinion on the others, never touched them.



Applying the Debian "library" policy on go code is imho impossible -
there are no sonames, often no proper releases. The way how Debian
packages source code does not fit for go.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: What to do when DD considers policy to be optional? [kubernetes]

2020-03-25 Thread Bernd Zeimetz
Hi,

> As a person who originally introduced Kubernetes to Debian I can say that it 
> is indeed a lot of work to maintain this package and to reuse packaged 
> libraries. But I've demonstrated that it is possible at least to some extent.

if you've maintained k8s you would know that it is only tested with the
exact versions of the libraries as it was released with.

Choosing different versions is prone to introduce subtle bugs and should
never be done and accepted if that k8s version is supposed to be ready
for production usage.

What you suggest is a nice idea, but hard for go sources and impossible
for packages like k8s.

The DD you called inexperienced has done everything right.


Bernd

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: f...@packages.debian.org Re: moving mg from salsa to github?

2020-02-15 Thread Bernd Zeimetz



On 2/15/20 3:14 PM, Geert Stappers wrote:

> FWIW  Consider to use email address  m...@packages.debian.org for it.
> 
>[...]

> The idea is that it helps you to explain that you are maintainer
> of the package in Debian.  Hope this helps.

So far I did not find a single upstream that was not able to understand
a sentence like "Hi, my name is foo and I'm the Debian developer who is
maintaining blubb in Debian".

And if they fail to understand it... not sure if you should package
their software.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Can Debian packaging changes require a CLA?

2020-02-14 Thread Bernd Zeimetz
On 2/14/20 4:46 PM, Dimitri John Ledkov wrote:
> Can a Debian Package Maintainer require CLA for accepting packaging
> changes and distro patches to be uploaded into Debian itself?

you can always fork the current packaging and upload/NMU it.
Send patches to the BTS or open an issue in github, pointing to your fork.

Its up to the maintainer then to figure out on how to integrate your
patches and up to them to fight their CLA/lawyers to accept your
changes. Or they'll have to remove your changes and do the same work
again... whatever works.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-10 Thread Bernd Zeimetz



On 2/10/20 7:17 AM, Dmitry Smirnov wrote:

> It appears to me that Salsa admins don't use packaged Gitlab-Runner simply 
> because they don't want to, and I don't understand why.

Seriously, stop that.

Instead of complaining, you could send tested patches:

https://salsa.debian.org/salsa/salsa-ansible/tree/master/roles/gitlab-runner

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-05 Thread Bernd Zeimetz



On 2/6/20 12:13 AM, Dmitry Smirnov wrote:
> On Thursday, 6 February 2020 9:52:47 AM AEDT Bernd Zeimetz wrote:
> 
>> Really don't care.
> 
> I see that... :(

See, I prefer to spend my time on doing open source software. I use
tools I can use and that are provided by others, even if the build was
done by other people on a different platform. Its still open source
software. The world would be much better if people would not discuss
about what is free or not, but just create free software. If there is
more free software, there is less need to use proprietary software. I'd
rather see that schools everywhere use linux instead fighting for a dfsg
free gitlab runner image.

>> You are free to setup and run your own runner.
> 
> Just because you did not setup yours properly?

Its not my runner, I'm just happy with what salsa provides, and I'm
using my own one gitlab instance and runners for projects like ceph
where salsa is just undersized for.

The salsa admins are overworked and busy, so I'm sure you have the
biggest chance if you provide something ready to run in k8s, replacing
the existing image should not be too hard if there is a working, tested
and maintained one. Just make sure the latest version is available asap
after a release.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-05 Thread Bernd Zeimetz



On 2/5/20 11:52 PM, Bernd Zeimetz wrote:

> You are free to setup and run your own runner.
> Its even possible to share them for everybody.
> If you do, I'd suggest you add some appropriate tags so people can force
> their builds to run on a runner built from Debian source.
> (there is not irony here, if you think that would improve Debian, just
> do it)

If you want salsa to use a packaged gitlab runner, the first start would
be to create a docker image on salsa with it and maintain it. Then
people can use it easily.
But please note that you image will still run on proprietary hardware
and closed source software somewhere in gke (I think..).




-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-05 Thread Bernd Zeimetz



On 2/5/20 11:42 PM, Dmitry Smirnov wrote:

> Sources are somewhere, true. But build (binary) is not DFSG-compliant.

Why? Because it was not built in Debian?

> Don't you think it would be _better_ to use (only) components from "main"?
> Certainly there will be more integrity if you can do that.

For something like producing build logs? Really don't care.

>> Where is the problem?
> 
> Lack of self-reliance? Using non-trusted vendor binaries (and/or container 
> image)? Using sloppy vendor build over proper one that we have in Debian? 
> Pick any.


You are free to setup and run your own runner.
Its even possible to share them for everybody.
If you do, I'd suggest you add some appropriate tags so people can force
their builds to run on a runner built from Debian source.
(there is not irony here, if you think that would improve Debian, just
do it)

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-05 Thread Bernd Zeimetz



On 2/5/20 10:33 PM, Dmitry Smirnov wrote:
> Upstream binaries are not DFSG compliant.

Why?

> Not only they use shitload of 
> vendored libraries

That is how go works. The exact version is available, the source code also.
The way how the docker image is being built is actually in the sources,
follow

https://gitlab.com/gitlab-org/gitlab-runner/-/blob/master/.gitlab-ci.yml

If you replace the used base image by debian:stable, and fix the way the
needed packages are installed, you could run this on salsa and have
Debian images out of it.

> but also bundle pre-built source-less Alpine-based helper 
> image 

Alpine linux, including the source to build their images is here:
https://github.com/alpinelinux
Afaik there is nothing in alpine linux that is non-free.

> fetched on build-time and incorporated into executable.

That is how go works.


> Instead of of telling me to go some place else consider that gitlab-runner 
> was rather difficult to introduce as an official package. Now when we have a 
> proper package for a while what excuse do you have to continue to use vendor 
> binaries that could not be accepted to Debian?

Still can't find a reason why the official and supported images are not
dfsg-free. They are not shipped in Debian, but they are free software,
binaries with sources being available, as far as I can see all under a
dfsg free license. Where is the problem?



Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Salsa CI news

2020-02-05 Thread Bernd Zeimetz



On 2/5/20 9:25 PM, Dmitry Smirnov wrote:
> On Tuesday, 26 February 2019 1:19:35 AM AEDT Inaki Malerba wrote:
>> [0] https://salsa.debian.org/salsa-ci-team/pipeline/blob/master/README.md
> 
> Thank you for providing this useful service.
> 
> My big concern though is that primary gitlab-runner 12.7.0 (HEAD)
> on salsa-runner.debian.net f0fdd533 is not DFSG compliant.
> 
> Frankly I don't understand why such issue is tolerated on official 
> infrastructure.
> 
> Please use properly packaged gitlab-(ci-multi-)runner package.

You are free not to use salsa or not to use the gitlab runners.
You are also free to rewrite the gitlab runner in a free version, if I
remember right the api is published, so this should not be hard.

Also the gitlab runner is licensed under the MIT license, so if you did
find something that is not free enough for your needs, take the source
and replace what you do not like. Please send it as patch to gitlab then.
https://gitlab.com/gitlab-org/gitlab-runner/

On the first look all used and vendored git modules are also under a
free license, so you might want to provide some more details if you want
people to take this serious.



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: Heads up: persistent journal has been enabled in systemd

2020-02-01 Thread Bernd Zeimetz



On 2/1/20 2:36 PM, Steve McIntyre wrote:
> Michael Biebl wrote:
>>
>> with today's upload of systemd 244.1-2 I finally enabled persistent
>> journal by default [1]. It has been a long requested feature.
>>
>> The package will create a directory /var/log/journal on upgrades and new
>> installs, which enables persistent journal in so called auto mode.
> 
> Fine for new installations, but please *don't* do this for
> upgrades. Those people with existing logging setups will be surprised
> by this.


Yes, Steve is right here, please don't mess with existing
configurations. In most cases the result would not be what people wanted
to have.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted ceph 14.2.6-6 (source) into unstable

2020-01-26 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 26 Jan 2020 15:39:29 +0100
Source: ceph
Architecture: source
Version: 14.2.6-6
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 949743
Changes:
 ceph (14.2.6-6) unstable; urgency=medium
 .
   * [c18d632] Remove broken patch (Option::TYPE_SIZE as uint64_t).
 This patch actually results in a segfault while parsing options.
 Revert it and then see what it was actually needed for on 32bit.
 Thanks to Martin Mlynář (Closes: #949743)
   * [b5c7be8] Update patch with a non-segfaulting version.
 Took me some time to figure out that in option.cc size_t is not what you
 expect, but a struct instead, just with the same name.
 So to make clang happy we'll use static_cast now, although
 this will for sure show various other issues on 32bit as not all
 possible config values will fit into 32bit numbers.
 Fixing this will need a lot of upstream work unfortunately.
Checksums-Sha1:
 29062e99f0f06dee013efcfb98cd498aaef68566 5850 ceph_14.2.6-6.dsc
 810d15dadc6ba39057ef1aa5e88c4566b3ac2e06 109204 ceph_14.2.6-6.debian.tar.xz
 612caad86eb46a22f8c4d0ff4c2d3f10b16a91b1 19576 ceph_14.2.6-6_source.buildinfo
Checksums-Sha256:
 c397df158c8d7e2ed64b5a92f9674aa44d603a6af96ad5b148315aa4b5035d5d 5850 
ceph_14.2.6-6.dsc
 7c8861e9a9fbc07a66a2d5741dbcf810a423c77df59c3b2c33ab2e8b8ed15a8d 109204 
ceph_14.2.6-6.debian.tar.xz
 69441b6d61da6960f2293aab9cd66eee54d086fe2ebc94a8355f8a7ac730315e 19576 
ceph_14.2.6-6_source.buildinfo
Files:
 564f058d06f5cd9e6b780ef25bb70bcd 5850 admin optional ceph_14.2.6-6.dsc
 e490d9ba5f831a850b26b7643b8b0584 109204 admin optional 
ceph_14.2.6-6.debian.tar.xz
 1bc8058c0077c1053ea3cdb67447213e 19576 admin optional 
ceph_14.2.6-6_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4tqgwACgkQ6zYXGm/5
Q19ZpRAArn1ZvTbM5aVNJQ9mC/9FCZKA39kpD2KVS7VItcFNR1HN6/5xUWPNJOia
aY5SjRf3wQDvh73MOHEpSGufmZuC0x1bafQ25wUm+7Yk+fW/t6sp1//sYLu/DJFh
eZprWdqFvAeInXj99211uVA4uwtu+Nn3SZWiGGDnApHX9Nhs3JQ8ei1/RPe41xEo
h0aSxKx83jZnR3kQycM+yfoZ6GD9uknBVuRLbPKnNLhtg1nn0hrAZ8c7y7PpMg5y
aazFRKpGxVPUToyKlFV6gC2SIjhtHCIureswzgCVf53H3MQTfC3t8EbBahIJyoGY
rm66GqbjSUafh+xN17eesckjA+V2qyyBS5gXJX3QV71dDrQCuIgbxHuza7cwOLef
jGak1luu3SUO26CeVal0kaLPqug1MpxXyUAyJ5xHjLNn0h6nRrv6+Lzc+/efK+sS
Cfi42FsIpvBSZXMZsKpDkC6pEKGpM1Jokcg9QybZkt/s5B3lYjNcw3OoIM7IuQBS
hPpbfWojjKG+U3I1EioHU2k3gEF6SmkmDNWfBnn9h2jKXEFDqThn76qI8pk3mvpB
GJHoKExj6kd7LSO9693Q/prqgg1H0GNQs/FkorpQImoyxMaREsCvHU9CUVaxAowE
X+lL9PboBjQPYmTuYNwXjmOnFB6HxmyYA4zX9RIZx6P2fCOlOk4=
=wjFZ
-END PGP SIGNATURE-



Accepted ceph 14.2.6-5 (source) into unstable

2020-01-21 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 21 Jan 2020 21:21:17 +0100
Source: ceph
Architecture: source
Version: 14.2.6-5
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 936282 949528
Changes:
 ceph (14.2.6-5) unstable; urgency=medium
 .
   * [966df1a] Removing cython from Build-deps.
 Thanks to Sandro Tosi (Closes: #936282)
   * [38fdd89] clang ist not available on sh4
   * [3c97474] Replace findstring by filter where needed.
 Thanks jrtc27 for the hint.
   * [c694d0d] Pass -DHAVE_NEON=0 to cmake on armel.
 Instead of "fixing" CMakeCache.txt.
   * [825a942] Revert "Don't build ceph on mipsel."
 This reverts commit 424ea9b82f956daa8fa9c0539d0752ccfdc7caf6.
 Thanks to peter green (Closes: #949528)
   * [79aef26] Remove merge fail
Checksums-Sha1:
 e4e1ad7cfcdd94c997a98e8f9f9f518fd314437b 5850 ceph_14.2.6-5.dsc
 6059e9be9f9c2c11a050aa457215cc906cb58816 108928 ceph_14.2.6-5.debian.tar.xz
 8a05e8d32bde51e0bfb247714aed19868822aee7 19576 ceph_14.2.6-5_source.buildinfo
Checksums-Sha256:
 73459e05b03a40ab3f9203e7d7eed41d3d02f3bc6df702cf1fb428a745af9104 5850 
ceph_14.2.6-5.dsc
 40ed2cf1aa93f34ea6cddf2e11a18b9fd08acf12d88ea64a45fff33eceec9684 108928 
ceph_14.2.6-5.debian.tar.xz
 77ad5f9d279a3cc3f6d625ec6411860134c8c163829ffca0633c6e886c0eba65 19576 
ceph_14.2.6-5_source.buildinfo
Files:
 da15c5722fdb7ac858fb7655428243e0 5850 admin optional ceph_14.2.6-5.dsc
 9e9930e27e800c2c49cdd7b478731115 108928 admin optional 
ceph_14.2.6-5.debian.tar.xz
 fb383f75e8571e3ab41c3824be6bb7a0 19576 admin optional 
ceph_14.2.6-5_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4nXiIACgkQ6zYXGm/5
Q197zhAAv3470Cbq260NpnHEWqlgwg27aYZ9h/Za4wtnsByp7QSQajRWyrTQ+OS5
L7m6+L3L6hHoO/XfUUCOBK0e1pieKvuZr7gYXyAhpmBSrShgYivZKfeLsi9lJkbK
nevI9CfAufZqilIIA2LmriIPAti0DijclBrrE9kFvI2HQnWOAmXixZ+FPctGeIz2
KmBqdJoLBc/V0zU9DdQPFj/yYGEDxEUCg9KdD3Z931CImkxkgEUn+k9cw4FH/UhA
9YjzkZbmePSEAe/w1r37o3Up/LYDFdH8cK3xXlNIVbtuE//vT8d61ouxEWGvDEk2
ezaqM5JkwM1RK3ZPSZHfCH7vPc6f2Es5mNXIoEHO0K3xJ7ntWfBsEKK2wrWr/Wvx
yyFiAuWYccdFrntrjlRCmDn5Hg/xpKliG1/TH3of3f87EyLxBKs/LrxKOHP7rfQ7
ftqeDd5vRhNBGQ9GyOlBqjApKwQrjrEj8Oqmzav6/rVcKcead9wBzsh6VRExBq0D
R9irYxiLz7gG9TSLIkSKD6hdyAo7oe3reKz2XxetTxFgGhVwDgtRhcSmX299O10S
M2uMqEfDiMpqkGqEtCkuRclyMIK2xR99/Sb9KlyTzDwhGCfMynWbht9ca0ubhPhh
Vx0NQZ5+WWdCPdOPiQFIIFuKnpbmbwcRTBW2/xjvUfDtxFvEaSs=
=Q+N5
-END PGP SIGNATURE-



Accepted ceph 14.2.6-4 (source) into unstable

2020-01-18 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Jan 2020 19:58:32 +0100
Source: ceph
Architecture: source
Version: 14.2.6-4
Distribution: unstable
Urgency: high
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.6-4) unstable; urgency=high
 .
   * Really uploading to unstable now.
Checksums-Sha1:
 9187a81e52b564641eabdeb1297954bbb277325d 8690 ceph_14.2.6-4.dsc
 d085a9511c335b5c9ece71bbb96acbeca6552c0d 108848 ceph_14.2.6-4.debian.tar.xz
 21420dc21317095e0667af34cf3ce3b2c0fec22c 19604 ceph_14.2.6-4_source.buildinfo
Checksums-Sha256:
 ab83b3f6e5e8986f817adb1cf1a754b1cd49765168fdb0c332b530f7ded166b5 8690 
ceph_14.2.6-4.dsc
 741ab2860c52444e63dae51761f929e2bccbb1508c662d82959089b2b88a676e 108848 
ceph_14.2.6-4.debian.tar.xz
 201ca4e19976e4f44aa0bd94a3bd880f95fe74b38b9cc9f6520a919cd83e7c41 19604 
ceph_14.2.6-4_source.buildinfo
Files:
 450f5318d0faa83629459e95937edc38 8690 admin optional ceph_14.2.6-4.dsc
 c7c40aa6ebe2c1b41e39b09a12be73d1 108848 admin optional 
ceph_14.2.6-4.debian.tar.xz
 5cedf86121aa53b0504c839f0197944d 19604 admin optional 
ceph_14.2.6-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4jVmEACgkQ6zYXGm/5
Q18iag//cspyONLEPFg7zPpM+3CtVteVtlAiDepRCTnQVpjyYi/h7EzYuw+owKo6
agm+kSkRjwESbDXRKbZpeKKqrckxpmbOa051qZN4OmYATUFwFhiervg5iRsa6xZH
KW5ltZuR9BZ30t1hXZ/pCtwUl/Ip2Q+sHP7hZ3wTca/w6KZMvKs/volpHluBAY2c
RgvnHSVsNyqtiUZczUE6Euy9YQMOSe5gSUcICLqshjG3M9XyjHI4Orv6FGuWmKDW
a48B8ax47Y9GIDIOrdKIQHf1bWVyLY40ksQoI8pnMVMz2+9gV2T/zwIIaWNXeg1f
Jhr8c4aAO5tgRQKk49ePzwkVdqDTGr85/IROe2WPedqLiH7Pee4TtTLkq+jJp2yE
J+SH7TPIvbzBsI5RIl78xD6Y+ouK9+4tlGwvdw6ILf5/q5f5PF26LuUphKRZOPQK
ci+Tn5ZRBQ8/48M/fSznx8Ly5wcKYLQ3WRZumYcmXWpqqzgNdOfbtqnzV8p44Vtw
yPtMVxh+ZaMd/Fop96Z03zoWSwc/5UcUNQS4qgfEIL3yWeUES53BqWt09gMMCfuh
OBKRWT4RZ1Q1yDw+0+ym8Rwwz8LCZBC7vxx17OBAl72mdr45WztJke8MXl4fSdiD
u3T8DNMUc1BN//Nxb9Im7VVHyXJjrqoTkaYB7K9RH6nI7TZaEeU=
=kcWC
-END PGP SIGNATURE-



Accepted ceph 14.2.6-3 (source) into experimental

2020-01-18 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Jan 2020 19:11:22 +0100
Source: ceph
Architecture: source
Version: 14.2.6-3
Distribution: experimental
Urgency: high
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 948722 949206
Changes:
 ceph (14.2.6-3) experimental; urgency=high
 .
   * Uploading to unstable, including changes to make ceph
 build on mipsel again (Closes: #948722).
   * [1bac6f0] mgr/dashboard: fix improper URL checking.
 This change disables up-level references beyond the HTTP base directory.
 [CVE-2020-1699]
 Upstream commit 0443e40c11280ba3b7efcba61522afa70c4f8158
 Thanks to Salvatore Bonaccorso (Closes: #949206)
   * [720ce76] Updating changelog (from experimental)
Checksums-Sha1:
 6379a5f7a9edea93fed5b97c628858a2b83c0b53 8690 ceph_14.2.6-3.dsc
 4c35305ebe2d1a4663ca4c3671e3f07588ad0564 108836 ceph_14.2.6-3.debian.tar.xz
 e40fccb8240d0052a018fdf1ca8766e3c5dcf58e 19604 ceph_14.2.6-3_source.buildinfo
Checksums-Sha256:
 9ae563adbc7d7790c8f34d766b4498c6a558e7e963a3dcbb3bb558fac1aa8030 8690 
ceph_14.2.6-3.dsc
 e9b3194cbf69f5ce69b59f54d2c5e858518dc1bfd3512de795c559586462eb73 108836 
ceph_14.2.6-3.debian.tar.xz
 59c3fd7bc52ef3fa56a4c01d635a7cf1b983f00b41e61273488c1f5530322b2d 19604 
ceph_14.2.6-3_source.buildinfo
Files:
 75016abf3bbc9479d3a1b4785eff359b 8690 admin optional ceph_14.2.6-3.dsc
 ca1e1d3d7a73d8ff5dd165cff79a0cb0 108836 admin optional 
ceph_14.2.6-3.debian.tar.xz
 797ea44c4eb1229c40edf08de0847462 19604 admin optional 
ceph_14.2.6-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4jS2IACgkQ6zYXGm/5
Q19OpxAApj2h9Cgd8wtJUOJh7l3p9eUJffaZdfMe+tYnCmX80YZVdmvxBZXJKNNH
gBilHJusZf3SazHWojVVnzNqFQmU3eij7dxkhE2k2T9amrEtNWqjDTRHNraVtWqU
BZUPq923iLpPF+tl1MPk9IvpSG/IIX2MBccb5AhNGWtwgBFowDts0TwJd4b3822g
2CuvP2rUVmQoSggeEGFcfkxZErEdJGhQXhyqCfxiiOfmdbBjCl1h2aA2QB8VFbI2
++PbawRH+Bhk3LXL4BxW8AyMjA5jIisc+4RHv1t8WogOoRygJAV4rgJLBCPiX1x4
o+E7kNoV6Evqji1UNBYiZbIMs1G9T6zvsx5G3NVLRnhOYv6m89wLI2QNpqhhKzcP
C5RkG0sC7attVh1YHrf+/rUaz6W3lJpzY/crw6U3voAkkp27t288pUulpvEjCUy3
Kk08eV9o1OogrRbrSNGmL0XDIDts1DIiLjlIbPgyPo2usKuPzEK0p4EcgRtNG15J
2CpJBb4+DthbyOKH78FZQA8QFz6UC+v6fz8W/3jNSWzQxKPMs2CJHmRc0fLxeWsm
bkyRYcA4YN8hF2EQHCWNRsovX/JeW+8Mjoxonic7Upb7PO/aVRhlWNYtsbUi0vzt
zN+GTrlrtX07+0mgnHs/FQl3Gol7mwgxs66jGrzwbShpImCAZKg=
=YGV+
-END PGP SIGNATURE-



Accepted ceph 14.2.6-2 (source) into experimental

2020-01-17 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jan 2020 23:59:37 +0100
Source: ceph
Architecture: source
Version: 14.2.6-2
Distribution: experimental
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.6-2) experimental; urgency=medium
 .
   * [fc4df2f] d/rules: make sure mips doesn't match on mipsel/mips64el
   * [3d9ed86] Add patch to disable dencoder build if needed.
   * [ce0c9bb] Don't build ceph-dencoder on mipsel.
 Its a debugging tool and does not build on mipsel due to g++/clang++
 running out of memory.
 Replacing it by a shellscript that prints an error message.
   * [0d83e22] Configure gbp for experimental
Checksums-Sha1:
 95adb3266062b0e8bcf8cdaf20040598fa33b131 8690 ceph_14.2.6-2.dsc
 8e1d9306b1d3af58c365d55fa47037641847f6ed 108180 ceph_14.2.6-2.debian.tar.xz
 14904e9775b9c691ffea763c17931f9047a11e38 19606 ceph_14.2.6-2_source.buildinfo
Checksums-Sha256:
 3381ae229e39688babb628e865578993d72571fbbcf608a67e387882a4f3649d 8690 
ceph_14.2.6-2.dsc
 81be3681833e732ff0432a158a180d24f8719967fb755f62699b25ffa4bfa1cf 108180 
ceph_14.2.6-2.debian.tar.xz
 d0433c7b09d86886468daacda9497614ed927b00b4590a979d7b1cb01fac5734 19606 
ceph_14.2.6-2_source.buildinfo
Files:
 8fc6f92f7d9cc34c349f3955cbacd408 8690 admin optional ceph_14.2.6-2.dsc
 f4f6986c1276b08e7fef2ddea499ea7b 108180 admin optional 
ceph_14.2.6-2.debian.tar.xz
 0df7791d0838922400cca0c63b75bfc8 19606 admin optional 
ceph_14.2.6-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4g668ACgkQ6zYXGm/5
Q1/BWA//Vg7KPeln9n3GKCZDH4i8FacG88z0/nOjdgPtSFmaGpIFe8zwO1AsBq/q
c4KNvi0iZDdJ27cZguIqij0PyIhMjaNAVYkQEbCFubk53Z72DuaMR1MUOvub4GM7
pZlerTKsn0Zbou+zIcSJCmpl6cWiU5UgbtNW8R9ZNky8fgEnOC4LGKc3abwfvdox
OyRR+EtrPxR9gaESkSYTG7f/3cd4TqqV7LDE+SaBSdLidp0QF7ESmjjpAF70W4I+
gZlkTsuWmgZ5Sx2ZwRnR5M+Z8WfJStAIl5s7x699Q1WJDnoXjaxw1WkipVG719uG
F9xuB7wq2e+iPAqrM0TrMsM6h5VfTvWHgWLP4/3NDdDDPJarEQY63kqOjTaqiCVP
cMgeBMpbtzpRpIdRca67zkk8mHcJW3mk9bJ4+Yna8xRR87KRcL+646kmgFvFIRkI
YKjnS3Tcmwc1kJdfxgNEoDIRi4uCAQ4ZtXcLZlNatr+Vck/YL2ZVD41yXC24hzrE
qaE1gQq0nKB20OBV1SwAzVEGLWFurKryjWRqmBY/lrHtEfwYPIFtfB88Fe/UC6/7
PA9h8KjbWiX5Gv8cBpApKlhiYydRSmOGMtJqI4mbcEJcVakC5+fbTcf1ADuYKPQa
WIV+4TXzSsqiKFuzhhVXAJKEDwqn7MJyER/isdbZaGB21dfdIAI=
=kdm6
-END PGP SIGNATURE-



Accepted open-vm-tools 2:11.0.5-1 (source) into unstable

2020-01-16 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 16 Jan 2020 14:05:36 +0100
Source: open-vm-tools
Architecture: source
Version: 2:11.0.5-1
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 949011
Changes:
 open-vm-tools (2:11.0.5-1) unstable; urgency=medium
 .
   * [e302fbf] Depend on lsb-release instead of recommending it.
   * [7731b26] Update upstream source from tag 'upstream/11.0.5'
 Update to upstream version '11.0.5'
 with Debian dir 7744f94a9026a7a3178032ef206d5d5798206fa5
 Closes: #949011
   * [68e74c1] snapshot changelog
   * [6ce977f] Refreshing patches
Checksums-Sha1:
 4b53d71c1e0f805bbc288822600aa74b40cf284e 2343 open-vm-tools_11.0.5-1.dsc
 f0f99d4d2e15b956394ec7f593951a54e84c6efd 1740004 
open-vm-tools_11.0.5.orig.tar.xz
 3f3c7ba164ede2c1f212d1c5736d1db101e54670 30144 
open-vm-tools_11.0.5-1.debian.tar.xz
 335d5249aa4e4cb2cc3cda3f7acfa2449c8a00cb 6387 
open-vm-tools_11.0.5-1_source.buildinfo
Checksums-Sha256:
 aa10efba952ac21b813cd902f73637944b9e148a6be2aec1c863504ca4be5325 2343 
open-vm-tools_11.0.5-1.dsc
 27f88f7f498b145f4bc94123e0e321de287776bc3991d42dd5554e63be459eb5 1740004 
open-vm-tools_11.0.5.orig.tar.xz
 9b139e31378d68c78ddc204ec6a70977682a4c8d430f678a958ccfd9a22a3a2f 30144 
open-vm-tools_11.0.5-1.debian.tar.xz
 c49b100139f289123199c311883bd7de9455a7fa08ba46ebbf580c9c077fe681 6387 
open-vm-tools_11.0.5-1_source.buildinfo
Files:
 ca7b00cf5402e3ee1b3d16f8201a649f 2343 admin optional open-vm-tools_11.0.5-1.dsc
 f9a8201a9f1c3d6d3e6124b4e89c4e99 1740004 admin optional 
open-vm-tools_11.0.5.orig.tar.xz
 c640a119505b99464cabdeea77110e4a 30144 admin optional 
open-vm-tools_11.0.5-1.debian.tar.xz
 fb8dddb8dad6af980cd7d65447a6b2d0 6387 admin optional 
open-vm-tools_11.0.5-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4gX/EACgkQ6zYXGm/5
Q197fQ//Rsu+quPfbgaQ5GDcM+lR8I53L0j2qsNqpY54YWA1JSCARbtwwll/K9ZO
v6nub1o/CxxNssZSkGt0ApJ2SjHjBlft23iUbBW/aTd5/adj3uebIQzrhG9LmuCa
PISgGs4ylo8GI7HXhUFCuqZztfFfdiur4Vu6hLQeJyxRYUqGpR92b2eD7AM3Cy0o
auZS4c5Aw16NXwyVDPU5eycanNdMMeeo45SKyqVDrReBR+FXHgkeBwHLs3skX1Jv
MsY1gelsTH7Kfg6KWzqiUgjNVHXWFoW5T3Oj5JuwyCuBRfuQT2mOW0dXEl9RyOCb
0nHIX4aQzplgz7HDPcOx+UmHihAbkZKm1zQpj4pYoB8BmHhZqNvAGbsoQ+cN5DbG
yOLN/mEQgGjQI/bU7FBHviqBPtZpG6cDLAMSAj3/aZwgRGVVRPusPCckpWMChc6z
wQjh5g82LEpsokMZZdIqZ30T/F/DzEw1+P0yiwMhCKArGzD/ziHYb7SxnKwjS7OV
3U9TkBUDdmzsiqkTRkTMlDUnc8niPtqV43sAzS41+Hj6UsGsWk9dcv5ZyGL9MZpO
ndl5euy559MNMUI/WXidYVnVvQQ71MfNanqfCzj0f/vyxN/F7luBe7MJ6kHJ9sZd
nxlfbR4ItQ/wgTFGosyUI9KdX3SBI+Dm79a1SNfQRN1W2mx/qwQ=
=Bx3L
-END PGP SIGNATURE-



Accepted viking 1.7-2 (source) into unstable

2020-01-14 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 14 Jan 2020 22:48:25 +0100
Source: viking
Architecture: source
Version: 1.7-2
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 948777
Changes:
 viking (1.7-2) unstable; urgency=medium
 .
   * [809f9c42] updating .gitlab-ci.yml
   * [97fdf04c] Support gps.h API 9.
 Thanks to Mattia Rizzolo (Closes: #948777)
Checksums-Sha1:
 dd4ad921e50cc733275793b57417519b21c1065d 2237 viking_1.7-2.dsc
 56a5dcf36005a407184d6df13b693cd215fd4c4c 11048 viking_1.7-2.debian.tar.xz
 6914b82a4d800f5d9a3beb4329024fdb8f921ec0 17434 viking_1.7-2_source.buildinfo
Checksums-Sha256:
 ab8a791310f610ccbdbaa103283d872c511a5cae16d71dad726cc3c07e12a872 2237 
viking_1.7-2.dsc
 6093372e71fdad485209efd7ce09f8e0f02fe946fef6963f0409acb752bb25be 11048 
viking_1.7-2.debian.tar.xz
 34cd52dfa29280c2c53c9bdb0e8c358ba66ee6ea222f44e2fd991f1379964bef 17434 
viking_1.7-2_source.buildinfo
Files:
 52f48240e925edf770ebb69f3be22eea 2237 utils optional viking_1.7-2.dsc
 55d3c6e3745e3394a251bdc62dd0c4af 11048 utils optional 
viking_1.7-2.debian.tar.xz
 2ad8dcb3824236f838775095a631131a 17434 utils optional 
viking_1.7-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4eOCYACgkQ6zYXGm/5
Q1+IUhAAowgL9w5Jnp61ZJtqCQvsYJPL1EMqbe6CxmqXdtiiPlmGG8Vjn9ahDwin
lmFlQbVypIOxFiwNjpU1fYTiHqok+qA1g+diwpEFvmZkk+jfNUt8sble6Lr0R2Zx
YQwcTZmt2KcJvT/U8ZLMsKN67C/mWQb5qvm4mOHuotZM9rKPsyP+AW2ig7vyAptc
MVDtkH0w7/tEPFvBo74n87WwPU80xFCI87PBHGuN+NVuePco85KfyWtGQnR2MZY+
W84i8ABM9a9THDkg98SddfaP8G+MH/xrqNhWKT/wVurW8Eef9E2I0704/zRY1eCW
KDOZNGUo3B6mQxyBrTbRb+h95Sk+2jZxsf215u+HM4IA5IkU9ZYzPxJ9q0pwhL7j
psYU0lIJhdmOcwdqd8P6jECL0zvpEqxNsdItdg7pqAGrMgiidOPVLKlVT+L8nF9H
oRfX6C/embYWUTSMPZR58r65p1fVLwqQ7wIBnSKS0cBqvGZWONRi7n0Yhk33Gfvf
jMS+5bAU7d8TyNtzszn5qBp2CKKI/EAHyZP3fG/VcpDZyj9GYoUM5StFHAK5mjqN
gaSCcIjzMX7w1zL92fEyeCoSzP6a2mPrn9+3L7/7CoWCfCjRfF/BFzWrcJ3WgpKA
Ph9dKi67sG0o2m+pgGgSa+TKEg9YqdgYCStfCB88ajuvoMUTZk0=
=zQJh
-END PGP SIGNATURE-



Accepted ceph 14.2.6-1 (source) into unstable

2020-01-12 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 12 Jan 2020 23:13:27 +0100
Source: ceph
Architecture: source
Version: 14.2.6-1
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.6-1) unstable; urgency=medium
 .
   [ James Page ]
   * [2e50d5b] Fix misnamed package Recommends brbd1 -> librbd1
   * [11df8ed] Add missing debhelper misc:Depends for python3-ceph
   * [08c3c8b] Add missing Depends on python3-{distutils,routes} to 
ceph-mgr-dashboard package
 .
   [ Bernd Zeimetz ]
   * [a87f434] Update upstream source from tag 'upstream/14.2.6'
 Update to upstream version '14.2.6'
 with Debian dir f37aa9f99ec09cc88d8e5e468c1f642fa7f77ef1
   * [e91626b] Revert "Fix ceph-mgr - indefinite queue growth hangs"
 This reverts commit 010db9a30458a6417ff667c3c11a3870edb8ee0c.
 Patches were applied upstream for 14.2.6
Checksums-Sha1:
 5338635b501e9e8be57f093a2c88f181a88094a6 8690 ceph_14.2.6-1.dsc
 5abda2fb799ffc54ef9db8ae87ceec6355d1b25f 80371388 ceph_14.2.6.orig.tar.xz
 999c00963e9fd095b11398045b5086043c7cdc40 107664 ceph_14.2.6-1.debian.tar.xz
 77c7a2da438fc4c27af12e561fc9dc74f1d8f8a6 19603 ceph_14.2.6-1_source.buildinfo
Checksums-Sha256:
 2a13e64e878217dc810ecf7b5e099a6c8d95e47282ed9cd69db0f1472416e994 8690 
ceph_14.2.6-1.dsc
 9d1fd40044a5c23fe41840b9b4eed3f457311066af7abe14570f164568648046 80371388 
ceph_14.2.6.orig.tar.xz
 b278a05c2cde5f2a7bcb6457f30d7b76e05212cdca7e34c6668e845172019806 107664 
ceph_14.2.6-1.debian.tar.xz
 a413db53760af0f24e284a888eff3bedefca2a1cd2270e1f6a2287236c7c8b68 19603 
ceph_14.2.6-1_source.buildinfo
Files:
 9dbdb60b424a16269eabd36552d5ec60 8690 admin optional ceph_14.2.6-1.dsc
 473d8c031213d88a507da7f8b4b705e5 80371388 admin optional 
ceph_14.2.6.orig.tar.xz
 a2d80c03610ac5c642d2a123bad9c3a1 107664 admin optional 
ceph_14.2.6-1.debian.tar.xz
 8597a6d905b5a7baed1e8b13acf2e5e5 19603 admin optional 
ceph_14.2.6-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4bmt4ACgkQ6zYXGm/5
Q18w5BAAuzw4MM6awS5ZmJ14EVPKWm1njEoovWZ6+bEYIKap+ZihnSpoTnVmUO+d
tliZ4xm+9GBOayQ5hDwGFWknG52X51i2pys21R8ZoNy8/HrXlUTOfzpFSEUAqL4c
G2qowXZYH7emSxWhuM0miZKc+Btt3KqKyLjKdwlnnUWVRq3HikhDHAQJzMuIl9Pv
ImKfGoT3tftIYZUTjO91J0ov5CIKpw+idCUgRhwVVaLBQZjcKj4ovykQqQZzRGsc
DbLdOqvucH/I8o89rqcWIzTap1JnuYzf18+KpbBPxp09CqYmGsS++fsteFsTXQ88
sHb/dwrjS1GlqbDrb1lD1ICAKnIBENmz8m04FDs1h15O3/75QpXd1EJIQBsdVnr4
mHijkPOzxiDSGr0hMrlseaXo3/CXLVjzJ0SK41zZoDbBc0w3zJshh+jVJx4Wcl5Y
6Ju3zjpF3WNVfHMz8goQcY7NJoqkPTDYz1cF0yq2ZXQB9LKBnJfK7aYdIWj2HFtB
4uekC7lTfv0ctAVe/BOiks1fjLmoJTXQiowgURw6q0N/GhwhSa5cOjfizqbf9wvk
bf5KQtVZ54pZYMdfGch0rJyVStyE8iBdZXy4JmoACIc5HpxwgqVmBnhuyGcOWpo1
PkDR9pqu4YDx++o7Cp51EcCYs2tTzZpfHd/hcIZVufqN3YGQlg8=
=F00X
-END PGP SIGNATURE-



Accepted gpsd 3.20-3 (source) into unstable

2020-01-12 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 12 Jan 2020 20:16:47 +0100
Source: gpsd
Architecture: source
Version: 3.20-3
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 gpsd (3.20-3) unstable; urgency=medium
 .
   * Uploading to unstable.
Checksums-Sha1:
 6e24b2bf65070071e6476fb947dc8c076963c56e 2627 gpsd_3.20-3.dsc
 8d6bc943f0a4eb26063f168f44bb6d31d5a69788 45688 gpsd_3.20-3.debian.tar.xz
 9be1d389d0aeea778c319c10fe4465d160d5031b 11789 gpsd_3.20-3_source.buildinfo
Checksums-Sha256:
 61c3b5b3180ac6969f36a08c78136bb2711ceaffd87957e2ed38c63e25fb9320 2627 
gpsd_3.20-3.dsc
 56700530afb5c948ebc806970f707e6433f07d22c2a2bb7cf149ef1563fb3c6f 45688 
gpsd_3.20-3.debian.tar.xz
 b08108c465af97749caa45e8e6956409955de35f3799d46be4b3c828bb3cde0e 11789 
gpsd_3.20-3_source.buildinfo
Files:
 f473efc4b904c3e99843a74cd3782735 2627 misc optional gpsd_3.20-3.dsc
 a2635241341867f56885773e38b9d5b1 45688 misc optional gpsd_3.20-3.debian.tar.xz
 c2fd075a24791a108be605b4baa63984 11789 misc optional 
gpsd_3.20-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4bc2kACgkQ6zYXGm/5
Q19xmw/+N52byvXW7q+OxEvfwgC5N6tkY+5f9dASA+RI8TBK9KO5W4YgrofCjR1U
jPSzYNAaHGTS9hbzoIWHGOf71tnmL0Lyz0HSG23avB88mVxZ/MtKmiKnQiyb8CK4
8hMuUo4uB4/4gkI7CLOzJIbvrQC0ftLG9cNL6ASb27AtOE3YMx/LSddkbSMRR3/l
V7W/wKm0z1tksJu4kMCfQcw13S7lwxHruBE+6xmGVu/mGkh1xdNGZBs+LHfeu1Bt
+DBUk0SLdh+1pBwVFzYN64c4FZoUSHoWaEoYhfafAbKalkYwmgwWDhftOGlsy/Au
NRaNfmygZGnl6/Z3qjjiBLfI2ary6cbOU0lyM90O7rWGQ6lLQN/pIEw5hElHzMM1
9yWa0EMLHWtA1irokYsjlbsKGx+CLpvOc/HSMHWVQB7ZASFVGXVhLHixJ90hRw5t
6b3MHSwAremsDgxSQSKmJCfY8U6FrlyYeV205ugFji/lvYzlrZEF/H7NlCopje1v
IQzPVvf6xgNXoBUjrWuNeBgx2BwlhbiXsSYz3hwzPb/f8XwHFTqUUPjqkS/06eqF
45qrHA5nsyl8q+HB5cgv1D0+D/yipfV0LHjj8M5GqPH8MTmAMxLwPKsE5OnJyyxH
HxDpNy0OXgcqQkUPxJNUIhC3yKuzQsamfYYzE4VyuTKXiP2DlzY=
=kqpo
-END PGP SIGNATURE-



Accepted gpsd 3.20-2 (source amd64) into experimental, experimental

2020-01-12 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 08 Jan 2020 23:21:55 +0100
Source: gpsd
Binary: gpsd gpsd-clients gpsd-clients-dbgsym gpsd-dbg gpsd-dbgsym libgps-dev 
libgps26 libgps26-dbgsym libqgpsmm-dev libqgpsmm26 libqgpsmm26-dbgsym 
python3-gps python3-gps-dbgsym
Architecture: source amd64
Version: 3.20-2
Distribution: experimental
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Description:
 gpsd   - Global Positioning System - daemon
 gpsd-clients - Global Positioning System - clients
 gpsd-dbg   - Global Positioning System - debugging symbols
 libgps-dev - Global Positioning System - development files
 libgps26   - Global Positioning System - library
 libqgpsmm-dev - Global Positioning System - Qt wrapper for libgps (development)
 libqgpsmm26 - Global Positioning System - Qt wrapper for libgps
 python3-gps - Global Positioning System - Python 3 libraries
Changes:
 gpsd (3.20-2) experimental; urgency=medium
 .
   * [4f1c9d4f] Merge branch 'non-linux' into 'master'
 Build fixes for non-Linux archs
 See merge request debian-gps-team/pkg-gpsd!2
   * [7196c903] Updating debian/control from debian/control.in
   * [2227686a] Redo changes accidentally done in d/control
   * [f3a7fb54] Add patch to fix soname.
 Went missing upstream somewhere
   * [49d89d24] Update gbp.conf for experimental
Checksums-Sha1:
 c0a18e7bafa3f116c4fae74e92697535e0aa35a8 2627 gpsd_3.20-2.dsc
 b9d8ed9c9c4e90ebab561a36bc43cbbafdcbf96e 45680 gpsd_3.20-2.debian.tar.xz
 c8d65c45bc0d0dee29569f417b5f613ef235eb47 3609404 
gpsd-clients-dbgsym_3.20-2_amd64.deb
 534d454e8787eebfea61a1e995cc6e2f0daf9d1e 605408 gpsd-clients_3.20-2_amd64.deb
 2ccfa4904170bdc42936959642c44eb8ad2e7b16 353856 gpsd-dbg_3.20-2_amd64.deb
 4ce802d643a8a16881a91ec1bca960f87cf789a8 980384 gpsd-dbgsym_3.20-2_amd64.deb
 6f35c595dede194367802e96206ceece2c7f62cc 15663 gpsd_3.20-2_amd64.buildinfo
 f390077c8a277c69eba72ccde665aa7fb6bbcd6a 321196 gpsd_3.20-2_amd64.deb
 6ea0dd3ee513cc930ac848b642325d01f5bcfa67 150364 libgps-dev_3.20-2_amd64.deb
 efa756b2d556877c1e045296925762dbcaefd600 147876 
libgps26-dbgsym_3.20-2_amd64.deb
 43bf3e11355a4d45f88968ae687c20bb14198dbb 97144 libgps26_3.20-2_amd64.deb
 61243fee6745c692c05498ec335ebb214d608f43 51364 libqgpsmm-dev_3.20-2_amd64.deb
 22081d2af388e8974bf4692bcd925336711e225c 335436 
libqgpsmm26-dbgsym_3.20-2_amd64.deb
 772c72e433f8e27cad1110f09fde12d5af871a84 99896 libqgpsmm26_3.20-2_amd64.deb
 a2ebee261c60d8ed7ae18604cdf5cad67f662797 84532 
python3-gps-dbgsym_3.20-2_amd64.deb
 570290e2af79d078151b2dd46c479adefc7c6abe 106384 python3-gps_3.20-2_amd64.deb
Checksums-Sha256:
 7585ff669049365974e5a06514f30f613c3a2164825326117be0ae9e76fce901 2627 
gpsd_3.20-2.dsc
 842a946231db3e68f22a6cd2423ab6b5f134f7bea9996fb6d501660dde159816 45680 
gpsd_3.20-2.debian.tar.xz
 8ac16a065d0c5683c1a9e6abefdb95cf1cd3938d476ccd993b38baee80c90b8e 3609404 
gpsd-clients-dbgsym_3.20-2_amd64.deb
 93272f3d31e18e6b317ef8041b8576d5ccb37e2bdd6e126fec97d939859feb54 605408 
gpsd-clients_3.20-2_amd64.deb
 124f222729435a4aa32d31bedfad8e3f52a4c276372f40a0136e775b56610029 353856 
gpsd-dbg_3.20-2_amd64.deb
 916de0730fc328d27089930628d77dd265efbf5dd6abe13f1007ade2e4dcbd9d 980384 
gpsd-dbgsym_3.20-2_amd64.deb
 c1b89269abb2e9e4f568564c4a12ce86551e58976b166c9e0d615004c96d22a0 15663 
gpsd_3.20-2_amd64.buildinfo
 477eeb01f801ff2beb396834dd70eaf82b60c8aa5babe42471d8e73a0f014ece 321196 
gpsd_3.20-2_amd64.deb
 f9823a6eaf2b22f0e975e276fbbc90d0307422f8aed91882b62ea8eff09e9404 150364 
libgps-dev_3.20-2_amd64.deb
 071bfa40d9a46dcb73566fd7f5e6f6eadc87735e228a5d58dc270f2e897874b3 147876 
libgps26-dbgsym_3.20-2_amd64.deb
 3dda03a835e07811095219ff35d896d4491884552acda3a466447161f590b38c 97144 
libgps26_3.20-2_amd64.deb
 c71de9087fdbfccd46c5c956c19201b63b3e8e79b5ef6003135bf9504e4d190d 51364 
libqgpsmm-dev_3.20-2_amd64.deb
 8b1d1fe88fc84872aac2da13024c24cac34410a630d18edff262accd9df72355 335436 
libqgpsmm26-dbgsym_3.20-2_amd64.deb
 e752d65414008b12bdb043a017e203559fef7875b191eebe19c678c287ce67e0 99896 
libqgpsmm26_3.20-2_amd64.deb
 a264de6cf5574da46cc2f447f8539fb6967b66ebc1bf4168111a38e9756d1188 84532 
python3-gps-dbgsym_3.20-2_amd64.deb
 0572b2674e3ded2510b9000552b9ca8afd963235705db3f827bf45f53109c828 106384 
python3-gps_3.20-2_amd64.deb
Files:
 e1685db4b16756badb7c02ae6d1010ca 2627 misc optional gpsd_3.20-2.dsc
 65a88f4fed30d4e2d9eb7c377e652279 45680 misc optional gpsd_3.20-2.debian.tar.xz
 7446ef8191bebc4a63f6aaca8f5fb9d8 3609404 debug optional 
gpsd-clients-dbgsym_3.20-2_amd64.deb
 e30ddd0637b242ce9e3729064a3f158b 605408 misc optional 
gpsd-clients_3.20-2_amd64.deb
 8212272d46c29c4e9728d53e8839cc1b 353856 debug optional 
gpsd-dbg_3.20-2_amd64.deb
 885112297e7046e0bbbfb2f4e1de5b86 980384 debug optional 
gpsd-dbgsym_3.20-2_amd64.deb
 e760b2791f003c179a1dc450a9beed92 15663 misc optional 
gpsd_3.20-2_amd64.buildinfo
 848e666f26f8da9d1b766059da2f5a06 321196 misc optional gpsd_3.20-2_amd64.deb
 238954693d61c8d8ab9d01a92c49d770 150364

Accepted ceph 14.2.5-3 (source) into unstable

2020-01-07 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Jan 2020 20:50:28 +0100
Source: ceph
Architecture: source
Version: 14.2.5-3
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 947969
Changes:
 ceph (14.2.5-3) unstable; urgency=medium
 .
   * Uploading to unstable
 .
   * [010db9a] Fix ceph-mgr - indefinite queue growth hangs.
 Applying the backport for the fix
 https://github.com/ceph/ceph/pull/32466
 Thanks to Milan Kupcevic (Closes: #947969)
   * [b01de37] Merge branch 'debian/unstable' into debian/experimental
   * [c8f35e5] Add breaks/replaces for ceph-common - ceph mds.
   * [ee905cb] Revert "Configure gbp for experimental"
 This reverts commit 3bcd5ac5f416b902a868036c243d7f19752c82f8.
   * [6303513] Revert "CI: build in experimental"
 This reverts commit d481122833e611c69c28e2b381e1cc1c8f689385.
   * [f1a9482] Snapshot changelog
   * [6e955c8] Removing automatic Ubuntu header
   * [b90d95a] Mark patch as forwarded
Checksums-Sha1:
 2e3ca58180ad2cc66822e6a69b8847cd2e717e82 8690 ceph_14.2.5-3.dsc
 36c40d06e45a140daad730fd1b39d4d5e9908dbc 108624 ceph_14.2.5-3.debian.tar.xz
 4c83bc48b5c46d0da9d3e89dcf573f9e4f2b4eed 20809 ceph_14.2.5-3_source.buildinfo
Checksums-Sha256:
 df391eb0ab2be0b3c119028633a43efa9aad7190ae9b3eb42c0729d3bc1cc86b 8690 
ceph_14.2.5-3.dsc
 1dc680af3f8c1bb2881e1acfe70e62f8ffa0660f86c1ededf498b3f079686033 108624 
ceph_14.2.5-3.debian.tar.xz
 a39d3122d631e3491e7f7db9b4ab337c5e8ecd56b68ce1597e59a7881a0411aa 20809 
ceph_14.2.5-3_source.buildinfo
Files:
 4ad6d6cb53f1962457949018149f0173 8690 admin optional ceph_14.2.5-3.dsc
 e8a13e2cb4832aee8f9eb138da23653b 108624 admin optional 
ceph_14.2.5-3.debian.tar.xz
 8ff7ccf8ed6f27574865d76d7708510a 20809 admin optional 
ceph_14.2.5-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4U6FMACgkQ6zYXGm/5
Q18ZJxAAoT+HjAmyuZuCJ4S/kwygp+DHBKLfYR3dPhvPhyLyIu0B3cHX4jJ1T+d/
ltzSs23TcZvy6Ju3w1sRvO59UZsAD5SDVHqas+RHU/wcfNniOx0EivFrdsIrCJCh
wvWtsLDmOerBu/PiOGXivdW7YX5sEP2RmtSSlNEMxvJdNkM47S3bHC+uRzA7olNz
I2xqHLO9g+wjoHds3Prk59KnWcj7Cu9d28kuOAqH9ahLyOm/ykh3uqUIIs6uD/HD
2+06V18Q1sG2eMwhTbKbV0paM8uNgz9HRKI5MR8NyXmj5edhFtVHZGJvuQKDB7pq
l8R3LCbJAgSczhxq/lU41iKFlejNDba8H0RSj3TLSbDV9VXiJjpkGsIXPkWu4qgq
bnPiWyqyPPXGeUXN8CkVd04iWZc4GAA5Vc39t6IWoAzlLpHL1vr0BSbfB87qfc/b
vJ//HP9l8HNWNKD/RbBKJ4tT24HjPXjyMctSzKVg4ZduZ8ZYhV7+d5wjx51YnQ78
u8iQ0IixjBskcGBp/7rpuiaVKd7ezrxchpNWTwcNjmGBITB5llrOuxIgO8O43R33
sRxHK/u0a7Wzjc/VtzfoFK1Bjstlab2ruu5fRV7WwjncN5Tf4BWkSwOM4mDemPB1
5aSoKfngoRGYyjZzMksfPmoUrD0nfXAAXevyYNkwpvmqao2CtfA=
=vVH9
-END PGP SIGNATURE-



Accepted ceph 14.2.5-2 (source) into experimental

2020-01-04 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Jan 2020 00:04:23 +0100
Source: ceph
Architecture: source
Version: 14.2.5-2
Distribution: experimental
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 948021 948165
Changes:
 ceph (14.2.5-2) experimental; urgency=medium
 .
   * [8c74414] lower --max-parallel for >=16GB
 g++ loves to eat ram
   * [b15dcdd] Build-dep. on python3-dev instead python3-all-dev.
 Thanks to Graham Inggs (Closes: #948021)
   * [d481122] CI: build in experimental
   * [4303a75] 32bit: fix more size_t vs uint64_t issues.
   * [c98ea07] Install bash-completion in /usr again.
 This change went missing somewhere during the import of the
 changes done in Ubuntu between 12.2.11 and 14.2.4.
 Thanks to Andreas Beckmann (Closes: #948165)
   * [c7d90b9] Move manpages to ceph-common again.
 This also went missing during the import.
   * [3e5a680] Use a better way to check if we are on 32bit.
   * [c03cd06] rm d/p/boost-py37-compat.patch.
 Upstream renamed assert.h to ceph_assert.h, so this patch should not be
 necessary anymore.
Checksums-Sha1:
 7f8227c1d9727f1b051305807a0072c45f33942e 8762 ceph_14.2.5-2.dsc
 9111f81a5940a5b1b72054133eac07c936e2bcb9 107176 ceph_14.2.5-2.debian.tar.xz
 8b324ead287d15781389f959cedfab6ea315ee66 20740 ceph_14.2.5-2_source.buildinfo
Checksums-Sha256:
 39e2c518637c073a99f2fb03913322af5d3a94d16c02137c074cada8517115ea 8762 
ceph_14.2.5-2.dsc
 d32a5be3dd59ce28a531083fa4259eafe4700abdf2a7ed440f45dda41c169f55 107176 
ceph_14.2.5-2.debian.tar.xz
 ac63f2b6db0211de96ae94c46b9141f92e39e530c5a9f0d79b08dd3687684554 20740 
ceph_14.2.5-2_source.buildinfo
Files:
 cbd02912e3614db8c164309d85addbb7 8762 admin optional ceph_14.2.5-2.dsc
 23bdccbea020c018e80870356083d800 107176 admin optional 
ceph_14.2.5-2.debian.tar.xz
 71c6b8599ae237f3c583f0b5876389f3 20740 admin optional 
ceph_14.2.5-2_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4RIS0ACgkQ6zYXGm/5
Q181Yg/+IfvPfCGljyAMC5RFxitNOo9Qny8G0WoDh/7VTtM6ld7CSNRlUt4zS5OP
753RDSiI/QC3FyP7aAPL1F3JSbChP438+u+AgoGFiwXtK1Od+nYhCRUyfWPMcldP
rrSe5ycUL5f+BshbVe8TjBr+BFRKG5XIjeCy69YATHKQD405+0dwArQBOQwLhpIy
3r9MA3nWkWs16rj8wPIH4BhgP62hrCBc39eQU7Xl7kiylhtLD80UgO1z6RpbTNFx
6yI6NLGrWDfjRuUDUh1Zr2QxYuvSzqaU5CnieyXO4aNTjLOsZ3PPzlnooHj3i/rq
7H/jIjr9enid9soA7PmgC0JzjVKC1pszmwb74BsWJobEIkESMqW7K2v8pZ3T+q1T
cyJGQ3bcDTAs4WfIEXdC1555aSyrWaS9ryvroA+1h1AkZ01mdd3+QoYxh08nXK9i
zCdZx/qTfrFD0l3KS5ZuX4hHxoGaG7SI6sJ/b0MU4QztVR8+sQ2brcU6rESQPkGm
zyQyTz14zzjnwZTOkn9vcay2DTq4huiZgy5gcHEmTl5qphdP5llBLHUST8XYQwdp
v0tN2wjbqvDgsYs1DsaUUOJ5YP5LaKaU5H9TTfvgxav/KjBiZioOFP/Ta5cLvGqk
BXtVy58IweFcoe2nbKq85DP+DZNJV7TXivhcJgv1YZWiJWsgqcs=
=CMOY
-END PGP SIGNATURE-



Accepted ceph 14.2.4-9 (source) into unstable

2020-01-04 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Jan 2020 00:22:21 +0100
Source: ceph
Architecture: source
Version: 14.2.4-9
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 948021 948165
Changes:
 ceph (14.2.4-9) unstable; urgency=medium
 .
   * [8c74414] lower --max-parallel for >=16GB
 g++ loves to eat ram
   * [b15dcdd] Build-dep. on python3-dev instead python3-all-dev.
 Thanks to Graham Inggs (Closes: #948021)
   * [c98ea07] Install bash-completion in /usr again.
 This change went missing somewhere during the import of the
 changes done in Ubuntu between 12.2.11 and 14.2.4.
 Thanks to Andreas Beckmann (Closes: #948165)
   * [c7d90b9] Move manpages to ceph-common again.
 This also went missing during the import.
Checksums-Sha1:
 223b4bd5fef0eb4c521aabb0badfd83061ee9281 8917 ceph_14.2.4-9.dsc
 f56f45bad6b5b3b0fa09b9ff312020893a5d5235 117620 ceph_14.2.4-9.debian.tar.xz
 b8889aae296a855b17d035ae16da21e50ab9859c 20912 ceph_14.2.4-9_source.buildinfo
Checksums-Sha256:
 4dda45a527d6d281f99a72df6069b93d7f8d9e5c0eef26737fa5715fe2d80677 8917 
ceph_14.2.4-9.dsc
 8062a4ad10b3693013237d7268a3f4ed98bcdc20b02d84414451cba2141e0e55 117620 
ceph_14.2.4-9.debian.tar.xz
 0b908ff253641f829eed4387ce284e6ca5357b475492a6e23f18bd8592b0d614 20912 
ceph_14.2.4-9_source.buildinfo
Files:
 f07d738ffaa4468c762b6247eb374c9e 8917 admin optional ceph_14.2.4-9.dsc
 39a5c3eea04c8a939c925efa6b191e34 117620 admin optional 
ceph_14.2.4-9.debian.tar.xz
 1d2a0fd71d0a15ca05dfce8a2d3881a0 20912 admin optional 
ceph_14.2.4-9_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4RH5YACgkQ6zYXGm/5
Q1+tsBAAu7SbQ8Htr7ylVI1wFltbrNHrIYoLbv1B1BoQBFTKKz+gsA1ImwGYfTP+
+MnMpNYG23lZKRuszfQoyg+ThOOo7frXcNL36gyobRkPDuby5wBdUJQBw/Fzrdr6
meqkwupuP2DI08XLvnu4kz671Tjk03MKP4EuCZuhq3rz/IAug1p7QdPmIYrOVlDh
oeruLQfC0uelLJp0b/cYUwsBy9Uqt6AU/hCR7PP1COaTtAQMCUB2S8xIceygDYYa
J9mWcoiZVbKAMNgjGcBLzLCt5sLlYu70vhB8iOCsWUa7W2eaS/rnTlGHgmWm54u0
a5g+k57yPkqOSulr2DnguawsKN0pZ5wSL02gUx7C2QX83THd39Ub8eAfzcOXYdP3
NxbMEdXPzln/7XxCnEHUjRZm/NIXmCn2C33qWdO0PP1vKxcV3kQA6r03Wn7ByWMm
1bcslEG+FGmiCHH6BU8ZD5nBxZc+VSrcm/N97xGYpCB8kjctg/zDNVo/b3HePmWi
026XnoxETgtu+TwLNeIDpRe6XMr2VboUK/2qOMkIBUfv3tapFOAy0bTj2o+Oep+7
LgyJ6cofq7vW6Ea/XVg2x8sQvRK4UNVamstOWyhwJNZzwT+Rb1kSnKNei2/gCjKC
FsM45TnV/UGu7f4X3sV2/rEZWXOHq2GiBOjTZIz+b0ASXb5Oj/w=
=Hxmo
-END PGP SIGNATURE-



Accepted gpsd 3.20-1 (source) into unstable

2020-01-04 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 04 Jan 2020 02:34:41 +0100
Source: gpsd
Architecture: source
Version: 3.20-1
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 944521
Changes:
 gpsd (3.20-1) unstable; urgency=medium
 .
   * [9edad156] It is /dev/ttyACM[0-9]+, not /dev/ACM[0-9]+.
 Fix the apparmor profile. (Closes: #944521)
   * [13daa71f] Update upstream source from tag 'upstream/3.20'
 Update to upstream version '3.20'
 with Debian dir d2e29602486466a54dcd800a73e727aa3ef129ce
   * [51f56687] Refreshing patches.
   * [55d0b5b4] Updating changelog
   * [fd2a44f4] Fix gpsd.docs for asciidoc.
 Files were converted by upstream
   * [2da3f0f4] python-gps is gone, remove .install file also
   * [9759c33a] python3-gps.install: update for new file/module names.
   * [10f81da8] gpsd-dbg.install: update debug binaries
   * [f529940a] Updating symbols files
   * [5c851b49] Ignore the build-time test for xgps deps.
 We'll deliver them as dependency, no worries.
   * [32358c88] Use python_libdir instead of a mv hack.
   * [bf7651e1] Install soelim stubs instead of links for manpages.
 Seems to work fine, so why keep the extra work?
   * [7ee82f94] Remove chrpath hack. Not needed anymore it seems.
   * [55d2d180] Depend on asciidoc.
   * [c8f81b96] Don't install non-build-related python deps.
   * [aa045a15] libQgpsmm.3 is not yet compressed at install time
   * [cfa6a5d3] Fix shebang in the debug scripts
   * [53178b81] Updating changelog
   * [9133a8a2] Limit the shebang fix to python files only
Checksums-Sha1:
 fa691b2281fbaf4705e9ba3c16c62b377f909205 2676 gpsd_3.20-1.dsc
 db21fb46a7a46cec32a02bd123fee0bfae796f32 2455060 gpsd_3.20.orig.tar.xz
 72538899943cf8242fb16d157c44beb132a3bf2c 45392 gpsd_3.20-1.debian.tar.xz
 a41f6d604544d09b5118f81e6a614ab2c1df9c97 13391 gpsd_3.20-1_source.buildinfo
Checksums-Sha256:
 c665edf7aa1443ab802dc860e29ed59fea039c15ae0610d22c37ea0e143bb1dd 2676 
gpsd_3.20-1.dsc
 3998a5cbb728e97f896f46c3c83301b1e6c5d859393e58c2fad8c5426774d571 2455060 
gpsd_3.20.orig.tar.xz
 b4a9b0d76643ce6704cc5558fbf47d0e693dd5c78240eb1215b1ce68efde1441 45392 
gpsd_3.20-1.debian.tar.xz
 ef8b9402b042a58a4a172796ebe946eb8e0576fc6cf6f54a671221b1b41503a2 13391 
gpsd_3.20-1_source.buildinfo
Files:
 f85de71859d488a59e115281519af29d 2676 misc optional gpsd_3.20-1.dsc
 c07c1753465ed34463b8192bdf8295e2 2455060 misc optional gpsd_3.20.orig.tar.xz
 7802126b8aad2567035e7016b50018c8 45392 misc optional gpsd_3.20-1.debian.tar.xz
 2668aac109bf1b4b7bb9e17f3bff1d13 13391 misc optional 
gpsd_3.20-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4P6+UACgkQ6zYXGm/5
Q19Q4Q//W0LszlSsfNfSz5urb8tmzWkhMBfv//whd+Wa1twXXfLJuLOm2zfDnVq/
xWR71i1hKWP9154GChoO/PQC4DAjf9+R8sg1HVCRO5fR4Y2fOCPmErDfk7PJ7d8o
uag+rq/ISeXDZdPB+v2tJJnk9ILqO35ExB5yrebP0few60ePV6ThMhOkDnGP/24n
mNyezqqzufJ7cKTeHLUNChJbZabNSza5BnSA8Z1B0gk8d2PMXc5rx0pCqSvJbUga
XczHrUCzJp5Qzg9Cux9uy5urdQU2zoX4aXmuElKBZqEdBOAyfUD49PQcS4FRQZpR
9OZuhmpl4ytI6cq0+BgFiLNVgIXhn+mFYFaRHh8rxsqGFlBahlBeqFN/21qc+/Di
fftqPgdhiJsn+S7B5K5FUvN02q35eUVhJbC4vvJHLQLZpOd7tXMprEypOb79l/wm
NxQqUt70C+nlXlc62iY8G6NyeNJmhDib//f8T0OteASR9gAUVAIZGvMbJDwMSDNO
qZAeMML6k1pN4VXUFeopVyy1QBjFkIMXLHQpfIc3GUiQugxAujyQGE7zzfj+9Ryq
KXnV2MuDI+w9orzbGIhmH6Q4dDNjiLckg3rIpDkRfhj5a9LaJzyDDrUHAY3LlK6d
a2Nrgd3MDLnQfsQBkyPX6mN00p5L7WqmmmnNisWBYPxyf0fCy3I=
=ibQg
-END PGP SIGNATURE-



Re: opentmpfiles & opensysusers, and its use in the Debian policy

2020-01-04 Thread Bernd Zeimetz



On 1/3/20 10:05 AM, Thomas Goirand wrote:
> On 1/3/20 2:33 AM, Sam Hartman wrote:
>> Secondly, by using systemd-tmpfiles when we can, we gain support for any
>> additional features that are implemented.
> 
> That's where I don't agree. While it's nice to have such a declarative
> system, I don't think it's reasonable to impose the implementation of
> any change to systemd to all the other init systems. At some point, *we*
> must be able to decide.

We have decided. Its systemd. Please lets not start this discussion again.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted ceph 14.2.5-1 (source amd64 all) into experimental, experimental

2020-01-02 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jan 2020 10:52:50 +0100
Source: ceph
Binary: ceph ceph-base ceph-base-dbgsym ceph-common ceph-common-dbgsym 
ceph-fuse ceph-fuse-dbgsym ceph-mds ceph-mds-dbgsym ceph-mgr ceph-mgr-dashboard 
ceph-mgr-dbgsym ceph-mgr-diskprediction-cloud ceph-mgr-diskprediction-local 
ceph-mgr-k8sevents ceph-mgr-rook ceph-mgr-ssh ceph-mon ceph-mon-dbgsym ceph-osd 
ceph-osd-dbgsym ceph-resource-agents cephfs-shell libcephfs-dev libcephfs-java 
libcephfs-jni libcephfs-jni-dbgsym libcephfs2 libcephfs2-dbgsym librados-dev 
librados-dev-dbgsym librados2 librados2-dbgsym libradospp-dev 
libradosstriper-dev libradosstriper1 libradosstriper1-dbgsym librbd-dev librbd1 
librbd1-dbgsym librgw-dev librgw2 librgw2-dbgsym python3-ceph 
python3-ceph-argparse python3-cephfs python3-cephfs-dbgsym python3-rados 
python3-rados-dbgsym python3-rbd python3-rbd-dbgsym python3-rgw 
python3-rgw-dbgsym rados-objclass-dev radosgw radosgw-dbgsym rbd-fuse 
rbd-fuse-dbgsym rbd-mirror rbd-mirror-dbgsym rbd-nbd rbd-nbd-dbgsym
Architecture: source amd64 all
Version: 14.2.5-1
Distribution: experimental
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Description:
 ceph   - distributed storage and file system
 ceph-base  - common ceph daemon libraries and management tools
 ceph-common - common utilities to mount and interact with a ceph storage cluste
 ceph-fuse  - FUSE-based client for the Ceph distributed file system
 ceph-mds   - metadata server for the ceph distributed file system
 ceph-mgr   - manager for the ceph distributed file system
 ceph-mgr-dashboard - dashboard plugin for ceph-mgr
 ceph-mgr-diskprediction-cloud - diskprediction-cloud plugin for ceph-mgr
 ceph-mgr-diskprediction-local - diskprediction-local plugin for ceph-mgr
 ceph-mgr-k8sevents - kubernetes events plugin for ceph-mgr
 ceph-mgr-rook - rook plugin for ceph-mgr
 ceph-mgr-ssh - ssh orchestrator plugin for ceph-mgr
 ceph-mon   - monitor server for the ceph storage system
 ceph-osd   - OSD server for the ceph storage system
 ceph-resource-agents - OCF-compliant resource agents for Ceph
 cephfs-shell - interactive shell for the Ceph distributed file system
 libcephfs-dev - Ceph distributed file system client library (development files)
 libcephfs-java - Java library for the Ceph File System
 libcephfs-jni - Java Native Interface library for CephFS Java bindings
 libcephfs2 - Ceph distributed file system client library
 librados-dev - RADOS distributed object store client library (development 
files)
 librados2  - RADOS distributed object store client library
 libradospp-dev - RADOS distributed object store client C++ library 
(development fi
 libradosstriper-dev - RADOS striping interface (development files)
 libradosstriper1 - RADOS striping interface
 librbd-dev - RADOS block device client library (development files)
 librbd1- RADOS block device client library
 librgw-dev - RADOS client library (development files)
 librgw2- RADOS Gateway client library
 python3-ceph - Meta-package for all Python 3.x modules for the Ceph libraries
 python3-ceph-argparse - Python 3 utility libraries for Ceph CLI
 python3-cephfs - Python 3 libraries for the Ceph libcephfs library
 python3-rados - Python 3 libraries for the Ceph librados library
 python3-rbd - Python 3 libraries for the Ceph librbd library
 python3-rgw - Python 3 libraries for the Ceph librgw library
 rados-objclass-dev - RADOS object class development kit.
 radosgw- REST gateway for RADOS distributed object store
 rbd-fuse   - FUSE-based rbd client for the Ceph distributed file system
 rbd-mirror - Ceph daemon for mirroring RBD images
 rbd-nbd- NBD-based rbd client for the Ceph distributed file system
Changes:
 ceph (14.2.5-1) experimental; urgency=medium
 .
   [ Bernd Zeimetz ]
   * [3bcd5ac] Configure gbp for experimental
   * [bd0b051] New upstream version 14.2.5
   * [46cbe61] Merge upstream changes for 14.2.5
   * [4dfd819] Refreshing patches
   * [da26f25] Fix copy errors in build-deps.
   * [7ff43a2] Mark build-deps needed for make check.
 And remove the need to install them.
   * [5ef8ac3] Remove left over patch file
   * [91ab5b9] */lib_tp.so files are not built, don't install them.
   * [44591e4] Don't try to install files we don't build
   * [db0994e] librbd1.symbols: add new symbols.
   * [d53724e] Add install/postinstall files for ceph-mgr-k8sevents
   * [acada37] Add lintian override for .chm file.
 Source and build info is shipped.
   * [bbb0bd6] copy the radosgw init file in override_dh_installinit.
   * [a5958d5] Avoid duplicate files.
 etc/bash_completion.d/ceph was accidentally shipped in ceph-base again.
   * [fbc33a3] Add missing > in Dependency.
Checksums-Sha1:
 a0573ffaae4667840b4920f32b32a72da0682663 8766 ceph_14.2.5-1.dsc
 54ae5fccc7afb153c32c320239a85b805d6d4043 80746108 ceph_14.2.5.orig.tar.xz
 9783be1f850741abb94abe84619326a38376dc84 106748 ceph_14.2.5-1.debian.tar

Accepted ceph 14.2.4-8 (source) into unstable

2020-01-01 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 01 Jan 2020 19:29:48 +0100
Source: ceph
Architecture: source
Version: 14.2.4-8
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.4-8) unstable; urgency=medium
 .
   * [e187e6a] Use WITH_CCACHE from cmake to build with ccache.
   * [8cbe25e] Hack CMakeCache.txt to disable HAVE_ARM_NEON on armel.
 after trying to patch the various places where HAVE_ARM_NEON is used
 the easiest way to get rid of it on armel seems to be to patch the cmake
 cache file.
   * [424ea9b] Don't build ceph on mipsel.
 No compiler is able to build the code without running into oom-issues.
Checksums-Sha1:
 3830cab58b681c55ba3e3781d4fc6f600c899e3c 8921 ceph_14.2.4-8.dsc
 a31394d28bb358957f4c30f13dcb9335768249df 117332 ceph_14.2.4-8.debian.tar.xz
 ee5f1fa955a94b676db8656abab101e09e10f1a3 21001 ceph_14.2.4-8_source.buildinfo
Checksums-Sha256:
 3e89fa018aba4cecc532e791a2030e22cae4d6c8c41468e452c06eb0678dd292 8921 
ceph_14.2.4-8.dsc
 f31b7bbc8b807e871df0a8c002d8a44b2730613347ca2cc67f5675e8ebd33f95 117332 
ceph_14.2.4-8.debian.tar.xz
 98059318b13199a48c2e0e53e59d6ba860007600a4656d4b15ad8a8f7ef9c394 21001 
ceph_14.2.4-8_source.buildinfo
Files:
 3fbf4196f82fecdc5a7da4e8764d76ae 8921 admin optional ceph_14.2.4-8.dsc
 dccac364e8904b0345933f1348b5df05 117332 admin optional 
ceph_14.2.4-8.debian.tar.xz
 b4950855ae6c44d00e78bebf21f013ea 21001 admin optional 
ceph_14.2.4-8_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4M5vYACgkQ6zYXGm/5
Q1+/Bg/9HwreOlk+4f/dORl7ZMPbIPfD37aAeAtkcZuAjnADc1mwFsbFFOFnVxSc
dNelIXTB/NrBpRYWdLtx7+I2yIbMdZhl1trJPN+QzvMXg5VYCEA1iMbp+nhLs+7g
j6i7o8TR8yuD3P2+imbDkHQDLVlxNhIuLH/v1J7g7P5cCA+Mvc7IKc/9vd7pz3oC
QDj369NsCBgHqimsLrZnxpOMBzLVLXLLM+qbbz8mtXzZmU7qIf/ULSdUcSGhrX2Z
C4rVM2fn2lnDJ3NOiz5sJLq2Sh6kl+qF9HSLPKQkUjzKA/cuo1X1xINCsd5awuG+
tUStbS+0kEj9vXgLUKUsvtIxK5b/lg3mQxNilutKNU3hiRrXMXwId19F5d38gVwv
zAuqXD0nK1kRPhqUBkBAmegYTIpNCyqV2OhEVBOFU3Z5lfZGMMARCZVuAWCtATGi
ITmF7bjNFNowiQLPxDTauGj6kfi8y18uS5+VpyJZR1QSZFuWYtIDflmo6i3N4pqi
2KWuyWOYNKpBTOD+YYtDY+n9kjHPPdPdV3IOciMaAHiiQIuljAey2Huf/OmTjh8r
ZeGQ7+EuNM9aTOp7nAY4kysZGEaQP8auFHUmn9IDfJABcWsKFLkKvhjnApElgBGi
/T6jmhVwBcD6e1eh4Tnp4jss75GP6ykVu+Khn7s7+vfPofct+cw=
=4hCN
-END PGP SIGNATURE-



Accepted ceph 14.2.4-7 (source) into unstable

2019-12-30 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 31 Dec 2019 00:13:23 +0100
Source: ceph
Architecture: source
Version: 14.2.4-7
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.4-7) unstable; urgency=medium
 .
   * [9b97753] Make sure we use ccache if needed.
   * [e11bd05] Make ceph build with clang.
   * [cd20706] Disable NEON for armel.
 Patching cmake/modules/SIMDExt.cmake and
 src/erasure-code/jerasure/gf-complete/m4/ax_ext.m4 to avoid -mfpu=neon
 on armel.
   * [3dbd1ac] d/rules: Remove the armel fpu options.
 Hopefully properly patched now.
   * [da253e4] m68k, sh4: build with clang to avoid gcc OOM.
Checksums-Sha1:
 6e3e3997b7f9696a13f25ec8b4638aa2c45f49b3 5891 ceph_14.2.4-7.dsc
 3336e51fdf6de87838e53c1e005fffcea26c1c9d 117048 ceph_14.2.4-7.debian.tar.xz
 d6d3d0f65ef12e3a1daabff167a53b342b4d65e9 21001 ceph_14.2.4-7_source.buildinfo
Checksums-Sha256:
 8f86ac34f19e58a1ae68a95eabf5416bc43149234f2f20cc5f970d5df3ff2613 5891 
ceph_14.2.4-7.dsc
 89a62f8462a08e2e3d1369548c2ce32d167f83bf5210e9bd59ce02483d71b1a4 117048 
ceph_14.2.4-7.debian.tar.xz
 d9e6adaa7e14dc27edad481761dd00453eed6f0090d18ba66a8df1be6c5d9d2d 21001 
ceph_14.2.4-7_source.buildinfo
Files:
 d7094b3df75de9b487241c2e4df299b3 5891 admin optional ceph_14.2.4-7.dsc
 cd72b1db318abd943f0492b864f77169 117048 admin optional 
ceph_14.2.4-7.debian.tar.xz
 3f5bac49aeadcc44cd44b5baa37553ba 21001 admin optional 
ceph_14.2.4-7_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4KiKgACgkQ6zYXGm/5
Q1/jcxAAr/k4uTHP/E2QLORRz26Xp+ocpjdnKRJe82vx8AYKwFPGED0bJNXaxHOW
LZHy37E4zmcKYuyh5tW749ukxUDSXhRMOyF9ctf1FetofdNM1/RxSz7Gk7wbwdp/
ceVtWITwNOIPnx1XL7S0PVdvgn5hKeqYk+K0kIZ037AuVK5i19YuacqQB6bZNDRa
uYmXSZL22DzXQWlZASoRasflFDDgj+TN0el8spt/HsaAN8ZYFVipunLOi80kwQ28
Dn9FPXp4LcMU3PsdIrg+eQAJ4SkfLDrKSrGMUvtKresk6PFoBFEy0iM+WQDrH7fT
e6bGctqs0rmu+Mfv9+gSrD8E8kZgs+LdXIxymFT1vDelnIVjcBgCyBxS7rTszsku
w8llbZgcwTjD+ZGFM4AB9GmLemhcM/YVe25m3trY1076MtH0nZVIDo3oumNig0ZA
s8kia04rmTvSpUsf7x4sG1abtr3jbLmgNBH2wO5VlWjyKh+ragI5N69Q9jkxCZyJ
u0cV41Abv04aUUjaSeYF/eiTgylXfDGX8bVV5pSC8n+wpKiEHXhTjgQ8QVZXt0sm
2m+N9CkBms3WdKPXhb4tj+KMzJFZQ9pKOSvzkDa6DImh9iuLLmFp0cZVAGh6NA0U
iNbUgEnXKm7YjzBjKCgILnG1F8P9eoBN/yuyvz+z3+eyBT/bP/Q=
=fdpA
-END PGP SIGNATURE-



Re: Help needed: conflicting interests between Salsa admins and Salsa users (Re: Git Packaging Round 2: When to Salsa)

2019-12-30 Thread Bernd Zeimetz



On 12/30/19 11:29 AM, Raphael Hertzog wrote:
> I don't think that salsa-ci is particularly problematic in terms of
> "efficiency". With the exception of the LXC usage, there's not much
> that can be "cut" to save resources.

Also, if resources are an issue: I've offered several times to see if I
can get some k8s resources for gitlab runners, but never got a reply.
Not even a no.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted open-vm-tools 2:11.0.1-4 (source) into unstable

2019-12-29 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 30 Dec 2019 00:56:03 +0100
Source: open-vm-tools
Architecture: source
Version: 2:11.0.1-4
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 open-vm-tools (2:11.0.1-4) unstable; urgency=medium
 .
   [ Christian Ehrhardt ]
   * [e30fabc] d/p/lp-1855686-Avoid-vmtoolsd-crash-in-HostInfo.patch:
 fix crash with uncommon lsb_output behavior (LP: #1855686)
Checksums-Sha1:
 5cb758b618ec46d7b8eab5654096b6e647e9ca01 2343 open-vm-tools_11.0.1-4.dsc
 cb934eb0ff1ca01bfabe688fc0340b1919ff6c54 31324 
open-vm-tools_11.0.1-4.debian.tar.xz
 0b6c483119bbcb676cb85bf917d39a943588a2bb 16400 
open-vm-tools_11.0.1-4_source.buildinfo
Checksums-Sha256:
 77c5eebe20f96ea9a910d78e7ab7a051acbea52221157dea8bae4b0531851030 2343 
open-vm-tools_11.0.1-4.dsc
 13d7c9bed5a8db288dbb00967fd23abeca577e65ee3f498a7325c38f7c1242c1 31324 
open-vm-tools_11.0.1-4.debian.tar.xz
 245f1f155822e2b1a5424f73d48dd879350b2cea2e7d2bb5000d3297379afa31 16400 
open-vm-tools_11.0.1-4_source.buildinfo
Files:
 2929cb2b0db6eab07a6d6e9bacbbf7e3 2343 admin optional open-vm-tools_11.0.1-4.dsc
 2bd099b2d4b4b0c0bd94730a1d31868f 31324 admin optional 
open-vm-tools_11.0.1-4.debian.tar.xz
 d9f6c33d4894d65bb7fb53a1176fb29d 16400 admin optional 
open-vm-tools_11.0.1-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4JPasACgkQ6zYXGm/5
Q190lBAAmBUpPG9bExqHFJSjU+Ni/yvGuO2PzMQGcevuR/bIDRP+EOcmY7uiq6/O
Nr9fOBAzigmRrrNR6VRy+rToRZ7KpLiwCY0wuY62hu15BXHNOgbsFtkR373tfsG/
byw4C7m38FEf0ZmtPR8UOUpiHtuLWPFslvX/98HfApbr6WmKGrpyKT44iZzcEpKh
TjGNhzkzIij750e0JWMpPvB3sQyyJUmwYSYjMEJH7BrvF7f0KsPn/hGjthx1D8te
KbV0Fm2Cz5t1hxUUCT0tpeN6SfkgM7s4LAm6wEYIsxQDVCPdTD2vE3iG62WAW6jU
tbVVlJEEETHfdxOZoqqSPpzcEAZFfUlkNTJJOObgdiWxeTTtzyMllfK5Cd3dUzf9
70rlJ82R+rZ4hgAcMlngQP6x70Qz2MZg//Qlt5yotykN5i+mf3C+9Gh3HItZMGZH
+ykO9z+QJpalL8x8ghGykQrYBNmlb6quGmQZaDoJMGZnsRTccPmnK69/Xu6n84BZ
+4CA3bNdtJcb3s9ciw4U19ET/QTUwAr0VVwaucYPLI3UoOnAkMVI0eYkNF/8Gwbg
DWAuMViOxPBBAR+7xJyhEAhUj07be5Lr6PxWRSmOQFOQZq79G4jwt0JivqEmuf5o
b9Qg9gy2xFLDBhFFhmDe7j//m/zIY/uXxXr0MF2LJ6Ay+Zsoc8o=
=Z+do
-END PGP SIGNATURE-



Accepted ceph 14.2.4-6 (source) into unstable

2019-12-29 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 29 Dec 2019 17:38:10 +0100
Source: ceph
Architecture: source
Version: 14.2.4-6
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.4-6) unstable; urgency=medium
 .
   * [b1c9b5d] Try to reduce memory usage even further if needed.
 gcc loves to eat too much memory on armhf mipsel armel.
   * [d695778] Remove softfp patch in favour of build flags.
 This hopefully avoids the need to update and debug the patch.
   * [6eddb32] Build with clang(++) on armhf mipsel armel.
 Reports seem to suggest that clang does not need as much memory as gcc.
   * [b9420ba] Fix unsigned/size_t issue for sh4 & m86k.
   * [0027181] Updating changelog
   * [6502f60] Fix another 32bit size_t/uint64_t issue.
 In src/common/options.cc line 192.
   * [4a0b044] Fix another 32bit size_t/uint64_t issue.
 This time: powerpc.
Checksums-Sha1:
 d7fab7ef496672ab520e88c1a70ac742e8a9816a 5882 ceph_14.2.4-6.dsc
 3b095e6e0a0bf8ffbe33fb860295db552305d77b 116168 ceph_14.2.4-6.debian.tar.xz
 8746553b9edbc61938cb77326da0c08376bce72c 21151 ceph_14.2.4-6_source.buildinfo
Checksums-Sha256:
 27a49590cb82181dae9bde20bac6fbf3c43c07f83822c12217ff6f1a0e3564c5 5882 
ceph_14.2.4-6.dsc
 b52dff740e6983a6a59ab2576ef25eb3be46efddb238c5bbe436ccfd9963aed9 116168 
ceph_14.2.4-6.debian.tar.xz
 3925f3ebbe502f248838bbc0c63aa03dd9805a23f8abd9ab46767bd99f6368d9 21151 
ceph_14.2.4-6_source.buildinfo
Files:
 ef792563d35c6419d82c1bb258aee977 5882 admin optional ceph_14.2.4-6.dsc
 be86cb892e0af0fd70a77270b8380425 116168 admin optional 
ceph_14.2.4-6.debian.tar.xz
 440768a34a4cc0119a0dca1902e2b294 21151 admin optional 
ceph_14.2.4-6_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4I194ACgkQ6zYXGm/5
Q18Exg//XxicrPcxPKViueRQkI47zDSRhkLd5TB0qVDTGiNupqlwKWEeVfQB0Cxz
np+jUe1FhyUgnGeYYvM9EVO8HOVMX5lNystVSgZFU/tMJch9ydnH4CeTmERXfnre
Otfh0B2zf+1RXVCtRZ7J6QcCpRrSZfWv8ms6zt0Qb/YHW1D/ZjGBYrJo/old7883
7OXUk4OH+qHRU4j0GI1xC6q5zyDreAOEf14rCH/i41fCY6u3cVc2uq0sVEpJaW3i
P2zGCC8+3iU/5fDJAcrETfE32VHdJYQmnRif1fw3Q2mUeb7F1cBEGjQgUGYlUhMZ
eEf4DhzSPHIeYh/XJMhazCT804j2yZuMfnKlQQcog6L53f+1rEguqN/81DqMtIoC
EcnBnyrtCZ+qSLtgm0jm1TGeYcjjmT85f71Y9qLhqMTuJDz9UPJv/OldU09JSlld
iT7iQ+Bycrr5HO/zc/ZUNmip27yhAQDjr1aHZv48S7H7qYI4TXvh/cpCux1TDs0F
zlJj44yyBnUIYy86hQ34cbvbljqSWVC7UcFWrvsvya13wnyH/tpRy1QtkBWRhkVq
swGdr3XD6kld3IeBOhf97izRWcrtXOfNo1fJozGQGNApW2Mj7T6gUpmO3Kbq8utq
hZTOXn3QyKMVMtyLV7OyFm3aa8EmXj4YG/Kb5wpIDBsVglBThdE=
=l866
-END PGP SIGNATURE-



Accepted ceph 14.2.4-5 (source) into unstable

2019-12-28 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 28 Dec 2019 15:54:51 +0100
Source: ceph
Architecture: source
Version: 14.2.4-5
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 947457
Changes:
 ceph (14.2.4-5) unstable; urgency=medium
 .
   [ Bernd Zeimetz ]
   * [453eaa4] Avoid using make -j 32 on powerpc.
 A lot of CPU do not always help.
 .
   [ Milan Kupcevic ]
   * [c6ec924] cherry pick critical bluestore data corruption fix
 (Closes: #947457)
 .
   [ Bernd Zeimetz ]
   * [e88fc21] Set -DWITH_BOOST_CONTEXT=OFF where necessary.
 [!s390x !mips64el !ia64 !m68k !ppc64 !riscv64 !sh4 !sparc64 !x32]
Checksums-Sha1:
 6f4690a16ac9a60a437df04c704ee6762fc759b7 5854 ceph_14.2.4-5.dsc
 a25fa358b04128c9f14012d3fe9dbb42d8b72d63 115996 ceph_14.2.4-5.debian.tar.xz
 4a929360565a9a469fcd1851e444d92e8606d9d1 21151 ceph_14.2.4-5_source.buildinfo
Checksums-Sha256:
 3343372577c5fd0e14a35668a54fa9969576a0ee67b3a5f82b7bb392bb09368c 5854 
ceph_14.2.4-5.dsc
 1cc7e35ab6557b0439ed6bc761046b100547f1746c9cd20251f3671b38d35cee 115996 
ceph_14.2.4-5.debian.tar.xz
 b411cfc1d0b71e8a2c9cf7c0c8c724c2a595301b36db22d705fed4a3f5b97dc7 21151 
ceph_14.2.4-5_source.buildinfo
Files:
 24bc6b44759c53fcd7038efb286d4d04 5854 admin optional ceph_14.2.4-5.dsc
 5fe13fb13093e29ca760fc6e6ade5c37 115996 admin optional 
ceph_14.2.4-5.debian.tar.xz
 9372dce7320adb6fef50b7b23d8d3143 21151 admin optional 
ceph_14.2.4-5_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4HdzMACgkQ6zYXGm/5
Q19eZxAAmPRN6avA181set2D/6ulEiK0VX/q2GVOv2vV57o/bYusKJ5La1kmGNgT
zcWiI82/o1GXtWzLSIM4Z8e4n1gVUYeswK61R0MTvkBgls/i0YdlNuYDkf1PgLGQ
ktu50CBuJi2AUAQy1F9bYnNm/TleUO39aJSm1gTnzuo5YammzZKy1+bhT1ISmASw
B6ShRK2AXoJdlnKDT3w0bxpl7HU3ubOoCCvPx75968n/yFX4Zmbc5T4NdbOHS2p7
4RDp0QaBMoKs3ch2Li3TuveIyxQLr7qY3CIxk6DRmlDMfWmhJo/k4LvKCmJ/abht
uMROxCLeYWG3RggOuyUmjC0Vp3nH71wYDA68nO7M2kbm/9nbFF8XogHkiclRrQFi
bolUiS0Ms8RIXQueym16rL4hpYJt0JCkODkhP6yaNX2EN3OdXRZPgR3La3kwMLKu
M0tU3WTmX/+V+W+X7stnVwad40GY3wrDxfqXSCvDppEY7s3LUIbSGakoGuxce+VZ
KvRQxWiT2sP4lpsNRS/fKvdQVn6NgZrLOe117lWYeEA4Ka2NJLykaFLBcLVY3Wgv
ipCs0k4zR6zbJdnMAiT7YnqC0OMVHB5i5Swvas1deD0kMqAoGis8OYG0hKL0wFYb
Amgt1FRkmA9LjH8+PVP3I7pzVIdCW/EdTGQ8dtPNEVRpYAXRm9U=
=kdCG
-END PGP SIGNATURE-



Accepted ceph 14.2.4-4 (source) into unstable

2019-12-26 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 26 Dec 2019 16:03:51 +0100
Source: ceph
Architecture: source
Version: 14.2.4-4
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 ceph (14.2.4-4) unstable; urgency=medium
 .
   * [b70efb1] Create missing directories for arch:all build.
   * [3e4530f] try to save even more memory on armhf.
 Don't build debug flags at all.
   * [b478ee5] Avoid overloading on mipsel.
 Add mipsel to debian/patches/32bit-avoid-overloading.patch
   * [85eb6e9] Also build jerasure with softfp on armel.
Checksums-Sha1:
 8004038bfdc25dfa9cc2f5e64928ce37a79b46af 5740 ceph_14.2.4-4.dsc
 737d9fd23e5459b99a236a150a55b72890103faf 115448 ceph_14.2.4-4.debian.tar.xz
 9a17bc15ff6292551b102d582255497437c7d43c 19097 ceph_14.2.4-4_source.buildinfo
Checksums-Sha256:
 70e8099300cceeafe576072dce8e1f9db8b3744e509d022ae72538e4a970c9ab 5740 
ceph_14.2.4-4.dsc
 191bac0de27050120b6aa85c4f0e28277d04385b383bf05037d3832748322f57 115448 
ceph_14.2.4-4.debian.tar.xz
 60977e6d91e98a93f06bf573891b573cbbc5ab6e5829e00a60b9418dfed5a95b 19097 
ceph_14.2.4-4_source.buildinfo
Files:
 8de05f29365c95f1ee08e00d71c3ccf8 5740 admin optional ceph_14.2.4-4.dsc
 6687a9e3404f9844a987bf3bfeb8ad86 115448 admin optional 
ceph_14.2.4-4.debian.tar.xz
 bac25b60663c5340afb202d2ac92bd57 19097 admin optional 
ceph_14.2.4-4_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4E0mcACgkQ6zYXGm/5
Q1+9ehAApZvj7wBiiDuha8TYfP3EoP7v4AfsX/Mm3Bc84fsNZJKxRTI7EFyzSUVa
Lvp1OJ5oI7jnKXflMaiPxaeswOp7kvgmLSaeO0q8u15rEpKmeqPPBua65k0gFSaI
OJex9xRE1h8jB2P5XHb2NBRYfV53xFc/Hs7GSTRdGLk066MMvd2CyuDbYay45CLW
y5KOGx+H8TqOV7zjPCj3gZnG4O3Elcm8sF/wWTTJMxP3ShRoNCWwmUtJwkC2MmqF
lvOQozNSsa16Gy+ISCTKAWK7C7f0A2MmKMj4RtpBrhuOhwdSlZm5mbmynttk4SGy
IxBAOJ2U94MXHPzFTsuj2t5KvBBKiQqqzqVF6e6Oj8z0ErMGLGioHs7aEyLGdND7
2OqjNGioSPozgGkPX9SOhDnwstqQAVHUTNpPwrn43W1ZJR5px8HFsq4wNUqQ7ZCV
iyPCOk4o9ArAg/KwbyyyrcPjWC5mgRoJyUGeYc16Mc5hLo/M16Ew74dSJg4qj5/C
r1iuR0TjE23COL/p40tkyFKJU6309yS75T7ctiPDRK41RC6B000OO+Y8HTWwON7w
Kuew8Kgm+7ufCyVXbLv0Iau1tQKTsgXqJW90GiF4G53/DtTI9GC9ijdCBpk/Anoa
N4YZeN+CDgXxxKPZhg3g9oU55h9+NCKrpHiERd76pV1mfkJGfM8=
=Lxkt
-END PGP SIGNATURE-



Accepted ceph 14.2.4-3 (source) into unstable

2019-12-24 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 24 Dec 2019 13:03:45 +0100
Source: ceph
Architecture: source
Version: 14.2.4-3
Distribution: unstable
Urgency: medium
Maintainer: Ceph Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 760538 947156
Changes:
 ceph (14.2.4-3) unstable; urgency=medium
 .
   [ Bernd Zeimetz ]
   * [f3f47f5] CI: disable extra-long running tests.
 .
   [ Steve Langasek ]
   * [9794fc4] Drop uninstallable and unneeded server binaries on i386.
 (Closes: #947156)
 .
   [ Bernd Zeimetz ]
   * [6c2993f] Merge tag 'debian/14.2.4-0ubuntu3' into debian/unstable
   * [0c5b41f] Use a tracker.d.o list instead of a closed one. (Closes: #760538)
   * [d95db97] Try to build with --max-parallel=1 on slow arches.
 We run into out-of-memory errors again.
   * [e8d9e63] Use -mfloat-abi=softfp on armel for NEON instructions.
 And again, that patch went missing somewhere.
 Taken from
 
https://salsa.debian.org/ceph-team/ceph/commit/fa7d0d84f736d0b8450572f3192a43ff7b3252c4
Checksums-Sha1:
 d26aac789b1fa9b067a208f5885d0399779e700b 5740 ceph_14.2.4-3.dsc
 f7da3d4c42f2a028755563cae31c87a3fd542558 115180 ceph_14.2.4-3.debian.tar.xz
 28d2ca0274cc8518b826c283b021c8464ab19d75 19097 ceph_14.2.4-3_source.buildinfo
Checksums-Sha256:
 5f870fa1b5955b882d53ee6db4019eb7f33772c9c14514d2249bfe6d98ea3494 5740 
ceph_14.2.4-3.dsc
 fde159219cf4c552b6f609b25860fcf7c99cb767cf206b1ec1efce66f404b695 115180 
ceph_14.2.4-3.debian.tar.xz
 284e7fd8ea37fc522f9a3a7e5aafda00d822bf382e064bbb6cddd78195a6d15e 19097 
ceph_14.2.4-3_source.buildinfo
Files:
 a6f12f47583adca4447350d9cb9bc925 5740 admin optional ceph_14.2.4-3.dsc
 d00184d10f9d5acd189250934753ddec 115180 admin optional 
ceph_14.2.4-3.debian.tar.xz
 631f3b118ff85c0b3c6e673b87d39d4e 19097 admin optional 
ceph_14.2.4-3_source.buildinfo
Original-Maintainer: Ceph Packaging Team 

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl4CANMACgkQ6zYXGm/5
Q1/y5A/8DjYk76jaWmCKgbhVu2ft74pnJ5TzC6CwmUSvqmzFczTL4PhuYh+8aSBd
Xk+gLMZjRJ8flzcWFK8q6DOdXIl1Y0Lvin25Dn9J1NbaG41XHXo9wPGZaRhJqpeS
bwEu+IyfTEGPIT0uNqn+XoAyq1T5xVelaQQ98HHjfLuU/fO192ene6boAYqTsckN
iSiGFGcyxWSTwcTA772K3l+AVoq6F1pdlMNxraPtlTyC+W0OroiBbtJ5A8y7Nzuw
Aqz9vAB+8NHf7ymRihtsololGTN0rtpK6Ghs/iNFYZGFpzJvGaie5+sXwipV0lKt
TtyFEMQkI1uqxwjWsvHyztbD4bpQ/hakC1885sPJkR3/0t3u6JWEAnYYUAcxNwuj
TblN5oAbxBxWqJazK6CliQZF8lEUXLDA+IbjxKbArRoSKQD4zvcK8PbeOfPbh/sS
qOKwo7gKb8/TmQvR4EKDKLp/B/vb8vHRYsdnfR2WT0Q0nTh0XlkZ3Knhu7QYJVjL
MNyUZ9R1WOJwRACr6i+cmNSRJ1YNMlejEKtT0/PUJcZdH1ZqvWIbziA22BA7qbFf
3K6LkDYJWA8tEVtII54StSWPnHr7/blJPrshf1F+Ya8umfBAGMVMAbFd6k4FVFyl
/uJIgf8pV/HC3dFHQUx+0HsXlZuFSAW7NXDlbFjniIzL5eIgWBs=
=Vpql
-END PGP SIGNATURE-



Accepted ceph 14.2.4-2 (source amd64 all) into unstable, unstable

2019-12-23 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 28 Nov 2019 09:43:37 +0100
Source: ceph
Binary: ceph ceph-base ceph-base-dbgsym ceph-common ceph-common-dbgsym 
ceph-fuse ceph-fuse-dbgsym ceph-mds ceph-mds-dbgsym ceph-mgr ceph-mgr-dashboard 
ceph-mgr-dbgsym ceph-mgr-diskprediction-cloud ceph-mgr-diskprediction-local 
ceph-mgr-rook ceph-mgr-ssh ceph-mon ceph-mon-dbgsym ceph-osd ceph-osd-dbgsym 
ceph-resource-agents cephfs-shell libcephfs-dev libcephfs-java libcephfs-jni 
libcephfs-jni-dbgsym libcephfs2 libcephfs2-dbgsym librados-dev 
librados-dev-dbgsym librados2 librados2-dbgsym libradospp-dev 
libradosstriper-dev libradosstriper1 libradosstriper1-dbgsym librbd-dev librbd1 
librbd1-dbgsym librgw-dev librgw2 librgw2-dbgsym python3-ceph 
python3-ceph-argparse python3-cephfs python3-cephfs-dbgsym python3-rados 
python3-rados-dbgsym python3-rbd python3-rbd-dbgsym python3-rgw 
python3-rgw-dbgsym rados-objclass-dev radosgw radosgw-dbgsym rbd-fuse 
rbd-fuse-dbgsym rbd-mirror rbd-mirror-dbgsym rbd-nbd rbd-nbd-dbgsym
Architecture: source amd64 all
Version: 14.2.4-2
Distribution: unstable
Urgency: medium
Maintainer: Ceph Maintainers 
Changed-By: Bernd Zeimetz 
Description:
 ceph   - distributed storage and file system
 ceph-base  - common ceph daemon libraries and management tools
 ceph-common - common utilities to mount and interact with a ceph storage cluste
 ceph-fuse  - FUSE-based client for the Ceph distributed file system
 ceph-mds   - metadata server for the ceph distributed file system
 ceph-mgr   - manager for the ceph distributed file system
 ceph-mgr-dashboard - dashboard plugin for ceph-mgr
 ceph-mgr-diskprediction-cloud - diskprediction-cloud plugin for ceph-mgr
 ceph-mgr-diskprediction-local - diskprediction-local plugin for ceph-mgr
 ceph-mgr-rook - rook plugin for ceph-mgr
 ceph-mgr-ssh - ssh orchestrator plugin for ceph-mgr
 ceph-mon   - monitor server for the ceph storage system
 ceph-osd   - OSD server for the ceph storage system
 ceph-resource-agents - OCF-compliant resource agents for Ceph
 cephfs-shell - interactive shell for the Ceph distributed file system
 libcephfs-dev - Ceph distributed file system client library (development files)
 libcephfs-java - Java library for the Ceph File System
 libcephfs-jni - Java Native Interface library for CephFS Java bindings
 libcephfs2 - Ceph distributed file system client library
 librados-dev - RADOS distributed object store client library (development 
files)
 librados2  - RADOS distributed object store client library
 libradospp-dev - RADOS distributed object store client C++ library 
(development fi
 libradosstriper-dev - RADOS striping interface (development files)
 libradosstriper1 - RADOS striping interface
 librbd-dev - RADOS block device client library (development files)
 librbd1- RADOS block device client library
 librgw-dev - RADOS client library (development files)
 librgw2- RADOS Gateway client library
 python3-ceph - Meta-package for all Python 3.x modules for the Ceph libraries
 python3-ceph-argparse - Python 3 utility libraries for Ceph CLI
 python3-cephfs - Python 3 libraries for the Ceph libcephfs library
 python3-rados - Python 3 libraries for the Ceph librados library
 python3-rbd - Python 3 libraries for the Ceph librbd library
 python3-rgw - Python 3 libraries for the Ceph librgw library
 rados-objclass-dev - RADOS object class development kit.
 radosgw- REST gateway for RADOS distributed object store
 rbd-fuse   - FUSE-based rbd client for the Ceph distributed file system
 rbd-mirror - Ceph daemon for mirroring RBD images
 rbd-nbd- NBD-based rbd client for the Ceph distributed file system
Changes:
 ceph (14.2.4-2) unstable; urgency=medium
 .
   [ Thomas Goirand ]
   * [4b2327d] Add a python3-ceph metapackage.
 .
   [ Bernd Zeimetz ]
   * [dbc7d2f] Add lintian override for empty python3-ceph package.
   * [5381390] Remove -en from description.
 We actually want to have a description in the changes file...
   * [4a57f31] Make python3-ceph dependencies binNMU safe
Checksums-Sha1:
 8d1f46818e4ef666484638a6d760bbb7c3b41261 5740 ceph_14.2.4-2.dsc
 208c4a084a29705502f41fc8f6ae7755448fb7b1 114576 ceph_14.2.4-2.debian.tar.xz
 be234c8a53fd4576d9e819d03f2a4d90a0283bb1 65559864 
ceph-base-dbgsym_14.2.4-2_amd64.deb
 371cdb3ee84b0e6803742f4af6a630edc5498660 1525920 ceph-base_14.2.4-2_amd64.deb
 25cbaa071780042450088b76cbe022def5f3da60 483271084 
ceph-common-dbgsym_14.2.4-2_amd64.deb
 506dfc18caa2cd4b1fd2cecc9f10a857160036d6 11945288 
ceph-common_14.2.4-2_amd64.deb
 09ae21bfb27ae9e6a2d3cb9313470e825f43841c 17546928 
ceph-fuse-dbgsym_14.2.4-2_amd64.deb
 80900aa79ede3d5f42b6a3ad09372a92a5d9651f 570496 ceph-fuse_14.2.4-2_amd64.deb
 dd102457a7c1408b2e6466e7987686e7affd4ea8 414853560 
ceph-mds-dbgsym_14.2.4-2_amd64.deb
 0064b3c6284c770c4daafbf8b313de8ae3ccfb22 5115304 ceph-mds_14.2.4-2_amd64.deb
 346a5f2b6919a998c3249736e5bfec580503d291 3192828 
ceph-mgr-dashboard_14.2.4-2_all.deb

Accepted ceph 14.2.4-1 (source amd64 all) into unstable, unstable

2019-12-23 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 18 Nov 2019 14:18:10 +0100
Source: ceph
Binary: ceph ceph-base ceph-base-dbgsym ceph-common ceph-common-dbgsym 
ceph-fuse ceph-fuse-dbgsym ceph-mds ceph-mds-dbgsym ceph-mgr ceph-mgr-dashboard 
ceph-mgr-dbgsym ceph-mgr-diskprediction-cloud ceph-mgr-diskprediction-local 
ceph-mgr-rook ceph-mgr-ssh ceph-mon ceph-mon-dbgsym ceph-osd ceph-osd-dbgsym 
ceph-resource-agents cephfs-shell libcephfs-dev libcephfs-java libcephfs-jni 
libcephfs-jni-dbgsym libcephfs2 libcephfs2-dbgsym librados-dev 
librados-dev-dbgsym librados2 librados2-dbgsym libradospp-dev 
libradosstriper-dev libradosstriper1 libradosstriper1-dbgsym librbd-dev librbd1 
librbd1-dbgsym librgw-dev librgw2 librgw2-dbgsym python3-ceph-argparse 
python3-cephfs python3-cephfs-dbgsym python3-rados python3-rados-dbgsym 
python3-rbd python3-rbd-dbgsym python3-rgw python3-rgw-dbgsym 
rados-objclass-dev radosgw radosgw-dbgsym rbd-fuse rbd-fuse-dbgsym rbd-mirror 
rbd-mirror-dbgsym rbd-nbd rbd-nbd-dbgsym
Architecture: source amd64 all
Version: 14.2.4-1
Distribution: unstable
Urgency: medium
Maintainer: Ceph Maintainers 
Changed-By: Bernd Zeimetz 
Description:
 ceph   - distributed storage and file system
 ceph-base  - common ceph daemon libraries and management tools
 ceph-common - common utilities to mount and interact with a ceph storage cluste
 ceph-fuse  - FUSE-based client for the Ceph distributed file system
 ceph-mds   - metadata server for the ceph distributed file system
 ceph-mgr   - manager for the ceph distributed file system
 ceph-mgr-dashboard - dashboard plugin for ceph-mgr
 ceph-mgr-diskprediction-cloud - diskprediction-cloud plugin for ceph-mgr
 ceph-mgr-diskprediction-local - diskprediction-local plugin for ceph-mgr
 ceph-mgr-rook - rook plugin for ceph-mgr
 ceph-mgr-ssh - ssh orchestrator plugin for ceph-mgr
 ceph-mon   - monitor server for the ceph storage system
 ceph-osd   - OSD server for the ceph storage system
 ceph-resource-agents - OCF-compliant resource agents for Ceph
 cephfs-shell - interactive shell for the Ceph distributed file system
 libcephfs-dev - Ceph distributed file system client library (development files)
 libcephfs-java - Java library for the Ceph File System
 libcephfs-jni - Java Native Interface library for CephFS Java bindings
 libcephfs2 - Ceph distributed file system client library
 librados-dev - RADOS distributed object store client library (development 
files)
 librados2  - RADOS distributed object store client library
 libradospp-dev - RADOS distributed object store client C++ library 
(development fi
 libradosstriper-dev - RADOS striping interface (development files)
 libradosstriper1 - RADOS striping interface
 librbd-dev - RADOS block device client library (development files)
 librbd1- RADOS block device client library
 librgw-dev - RADOS client library (development files)
 librgw2- RADOS Gateway client library
 python3-ceph-argparse - Python 3 utility libraries for Ceph CLI
 python3-cephfs - Python 3 libraries for the Ceph libcephfs library
 python3-rados - Python 3 libraries for the Ceph librados library
 python3-rbd - Python 3 libraries for the Ceph librbd library
 python3-rgw - Python 3 libraries for the Ceph librgw library
 rados-objclass-dev - RADOS object class development kit.
 radosgw- REST gateway for RADOS distributed object store
 rbd-fuse   - FUSE-based rbd client for the Ceph distributed file system
 rbd-mirror - Ceph daemon for mirroring RBD images
 rbd-nbd- NBD-based rbd client for the Ceph distributed file system
Closes: 936015 936282 940854 942733 943961
Changes:
 ceph (14.2.4-1) unstable; urgency=medium
 .
   * Uploading 14.2.4 to Debian.
 (Closes: #936282, #943961, #940854, #942733)
   * Adding missing sources (two.js, bootstrap 3.3.4)
   * ceph-mon.postinst missed the interpreter
   * Add missing dependency on python3
   * ignore lintian errors about minified js with shipped sources
   * Radowgw uses a systemd template, override lintian.
   * libcephfs-jni: rpath to java libraries needed.
 Add lintian override.
   * Remove .pc folder from debian folder.
   * Adding myself to Uploaders
   * Merging the work done in Ubuntu.
 .
   [ Dariusz Gadomski ]
   * d/p/issue37490.patch: Cherry pick fix to optimize LVM queries in
 ceph-volume, resolving performance issues in systems under heavy load
 or with large numbers of disks (LP: #1850754).
 .
   [ James Page ]
   * d/p/issue40114.patch: Cherry pick endian fixes to resolve issues
 using Ceph on big-endian architectures such as s390x (LP: #1851290).
   * New upstream release (LP: #1850901):
 - d/p/more-py3-compat.patch,ceph-volume-wait-for-lvs.patch,
   ceph-volume-wait-for-lvs.patch: Drop, included upstream.
 - d/p/bluefs-use-uint64_t-for-len.patch: Cherry pick fix to resolve
   FTBFS on 32 bit architectures.
   * d/rules: Disable SPDK support as this generates a build

Accepted gpsbabel 1.6.0+ds-10 (source) into unstable

2019-12-21 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 22 Dec 2019 00:27:08 +0100
Source: gpsbabel
Architecture: source
Version: 1.6.0+ds-10
Distribution: unstable
Urgency: medium
Maintainer: Debian GPS team 
Changed-By: Bernd Zeimetz 
Changes:
 gpsbabel (1.6.0+ds-10) unstable; urgency=medium
 .
   * [a1fdee8] Install gmapbase.html.
 Also patch a useful path into gpsbabelfe. (LP: #1015886)
Checksums-Sha1:
 15a95d2185b3363351fb80343f959232b5b7bb56 2379 gpsbabel_1.6.0+ds-10.dsc
 0b6efe709c54f69663f9834818a8cede0e5965da 19712 
gpsbabel_1.6.0+ds-10.debian.tar.xz
 03423cfb1e19b79411de5a251ea41361a3c35bd1 12620 
gpsbabel_1.6.0+ds-10_source.buildinfo
Checksums-Sha256:
 09d63303436bff84881a1f51f08fb663406e7c1d5cf95ce18f15b6e32d1d000a 2379 
gpsbabel_1.6.0+ds-10.dsc
 f0c173acb63ceb4437e94a22990e9366ce98c0e56b9ca6fbfa8c54b29e150c65 19712 
gpsbabel_1.6.0+ds-10.debian.tar.xz
 6078c1967d4a18101d1d443b66985171cea235aab2934225b6d71858d8e8aa3d 12620 
gpsbabel_1.6.0+ds-10_source.buildinfo
Files:
 c08eaa463c7239962f642c6cbfb3 2379 utils optional gpsbabel_1.6.0+ds-10.dsc
 aaaca87f0001e86a676499091bc86417 19712 utils optional 
gpsbabel_1.6.0+ds-10.debian.tar.xz
 9ced3ecc42d09d822a346e098b8fe3aa 12620 utils optional 
gpsbabel_1.6.0+ds-10_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3+qo8ACgkQ6zYXGm/5
Q19ceBAAtv6tAOv2W4RO2MlmV+yYEdQzHOVFI6aD+kmuqS1meQIIzooDiGP3Gk4k
yhQ9vFhCWRDreG1vabl6Oaxl3MORvCL28MOULvjIICqdFP62BQa0WMHnIVF8g0lm
XPZxD3PSvb8uBizDOwFgrcnSOVqtuS9PlGYxgmjDSJIvQ14dXRxQ4UkkQ9N+M9r2
5W5wiTeAOtdzCyHWLoo0wRYprUcL+orCVU9lm1Cb1nym8+LAln0R8lfhU06jClVk
UbXYmmLJfMHyY771dedN9Ue0QVg3SzYvVRexcBjsLIlkh8j5QKqwD/hNhJKf/Oy6
DwAiKLeOziD497rydGEijYDxavjckkmchX6EnAGswFyZkbU63qZdMonJm3eRDJ2T
axIBHtAqC2/N6xGGsJq9i/LxYRNSS2VLg3mg72zUyZ9pzTEs2l47KGgiiK8jsb43
epvoJz012h5PNjvbvfIhkcLXPQZB/sF6D5CQDxtQMD93i89ZGKVUq412N7vhK7B6
JQ61l140S54Vb1OMRdzPBbNEynSkJmbtElIMGt0GJIzW2O6PxE40P/2dRL1M6Irv
+EMV+viN+DrzdaKr7yZMCKEUHCZg+h2M3go0xoCFCqHJD7W4Kc5cKd3sOQw6X+ID
yO9mrM2nN6ws2PPKI3y/F0TrbzfAmuchMVl5CEvFNy5gXfm7o44=
=kSMQ
-END PGP SIGNATURE-



Re: Requesting to take over maintenance of lilo

2019-12-21 Thread Bernd Zeimetz
Hi,

> I knocked out the sanity check preventing it from being installed on
> my RAID array. If I did it for distribution I'd have it actually check
> if the RAID array is RAID 1 (as no other will function).

can you explain why this is necessary? Do you have a raid over the whole
device (like /dev/sda + /dev/sdb)?


If so, I'd assume you can talk grub into doing what you need by
modifying /etc/grub.d/10_linux

Does that help?


Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: default firewall utility changes for Debian 11 bullseye

2019-12-19 Thread Bernd Zeimetz
On 7/31/19 7:56 AM, Aron Xu wrote:
> be useful for a "standard" server installation with graphic desktop,

If we really start to provide that, we should better rename the project
to SAPian or SUSian or something like that...


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: d/changelog and experimental

2019-12-08 Thread Bernd Zeimetz



On 12/3/19 8:21 AM, Russ Allbery wrote:
> Paolo Greppi  writes:
> 
>> What is the best approach for d/changelog when releasing a package to
>> unstable after it has been through a few iterations to experimental ?
> 
>> It would seem that the right thing to do is to keep all experimental
>> changelog entries, and add a new one for unstable.
> 
> This is the typical practice, including all the intermediate experiments
> or false starts in experimental.
> 
> [.]

I'm all in favour of keeping the upload history, but recently I had to
do a major rework of the packaging in experimental while updating
unstable at the same time. So over several weeks, unstable got various
cherry-picks from experimental and at some point a big merge happened,
which made it more or less impossible to keep the changelog from
experimental as lots of changes would be documented twice and, even
worse, there would be a mix of version X and X+1 entries in the
changelog as the uploads were not linear.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted gpsd 3.19-3 (source) into unstable

2019-11-21 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 21 Nov 2019 19:51:42 +0100
Source: gpsd
Architecture: source
Version: 3.19-3
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 945238
Changes:
 gpsd (3.19-3) unstable; urgency=medium
 .
   * [ba252b48] Use one sconsign file per pickle version.
 Thanks to Graham Inggs (Closes: #945238)
Checksums-Sha1:
 3fbddbf2ac6033dffdc1a87abcc1ccd6b39366c0 2676 gpsd_3.19-3.dsc
 0bc0f3a4d36388d26544eb85c7a74ec1cfa1a53c 45472 gpsd_3.19-3.debian.tar.xz
 adb9b8b205bb3beb2ca72b2e4748ac23cc9f4598 13293 gpsd_3.19-3_source.buildinfo
Checksums-Sha256:
 527bf7bdf41309caf3a1fc2f9c57826adb738572792257a65c999799c8dbd014 2676 
gpsd_3.19-3.dsc
 fab99f00d1c18b396424769cdca134a360192d2189cad6ea277c7479920db7c7 45472 
gpsd_3.19-3.debian.tar.xz
 cabdb0cdfc5e7deb88abc698fa875f781ae8126a88ca6925027b016cf56a16d8 13293 
gpsd_3.19-3_source.buildinfo
Files:
 7c960242a2543dd730cc926e38a05002 2676 misc optional gpsd_3.19-3.dsc
 63a9ec9a56b00e31337f6a340121dfc2 45472 misc optional gpsd_3.19-3.debian.tar.xz
 c207a15e54ab8c3239d527b6d37a022a 13293 misc optional 
gpsd_3.19-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3W3VEACgkQ6zYXGm/5
Q1+Cjg/+N20xVE2UvqTfCDMbYEEXKqwpruVQV/3M2gGEcJXH0GRqeV2U0t3aK/gW
No6bZYOIUWX7ls/S/GYegXv/WamM0Nnhlsb4/xwRM6hsbE2UsDFdUmQEss3NJuJi
mR9ICYYvKVBCAmBXYnrjBcuJKkT7VQrKdF0N+mf8qsHtwQi01VRA74pGB6hBqCju
pdovt+py+4vBzZOWzXLuPHIpy2zKmVP927r3+Jt3LVT0D6Ma3VX+ss3Bit390Sxy
Qn0+P42DOrlz9PJOe2rLLt/QeQxm6WaOEe5detchhuSe0DzhofG0YwjUPGWvcdff
vcGRy5YRmrQez0S+lE7Y8fZ0NydNXtwLfa/8RU8br5wpN4FrES/egLDlCEFEXlaj
ByRVnhMOR/yzaHD0Ek6xFA1P2xtx3/OSD2+Azza1KtGxqvw4bShGK4SZd+XkZc93
jhY3Zrw7Jurs9EkSFCuXrGy7+7YgzWHSxBZqS5E4fEm+vq7ZDhTrDXTlFfp9bxur
Pvq5QRmavjgjRgdZ/DTYp5mKiDeh0GnwL5CyngghCSlySwV+m1jl4SKAOQenrQRh
a0H8MDk15OaT0p02rRi7Fomeg0cKTawAlBSujybranhkl6rU+a3758FzaiibKg5W
ZyJtfMb5WAKqsvj7rt1tuGKaCoXgVVkHp696xZjxaFuCNur0HgE=
=+TQQ
-END PGP SIGNATURE-



Accepted mod-wsgi 4.6.8-1 (source) into unstable

2019-11-20 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 20 Nov 2019 06:27:08 +0100
Source: mod-wsgi
Architecture: source
Version: 4.6.8-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Bernd Zeimetz 
Closes: 769052 942684
Changes:
 mod-wsgi (4.6.8-1) unstable; urgency=medium
 .
   [ Ondřej Nový ]
   * Use debhelper-compat instead of debian/compat.
 .
   [ Bernd Zeimetz ]
   * [0dd1e46] use salsa CI
   * [83f0e68] Update upstream source from tag 'upstream/4.6.8'
 Update to upstream version '4.6.8'
 with Debian dir 54c4f71125211a3d91e80f11588fb02a87bc0a41
 Closes: #942684
   * [09eb90b] Provide httpd-wsgi3 for python3 (Closes: #769052)
Checksums-Sha1:
 11cc9b98eef734b2d04c0cd800aa1e266a1048c7 2148 mod-wsgi_4.6.8-1.dsc
 c58ecc0faa560a87aaf3eb2bc881140bf6adb50f 583536 mod-wsgi_4.6.8.orig.tar.xz
 2c778f0c9859dd05f821044033fd8b444671e3c3 10504 mod-wsgi_4.6.8-1.debian.tar.xz
 d2e14c64ccb00992c50f5af2a90b51ed06dc1a48 8079 mod-wsgi_4.6.8-1_source.buildinfo
Checksums-Sha256:
 ae44cb3e62dbbe59052375f5fadafeb9cb5f0778c93d6b00ace4a971c6819407 2148 
mod-wsgi_4.6.8-1.dsc
 ee066b7795ad688431445d918ba671517549fecd6ce9849e73b4ca053e6d6321 583536 
mod-wsgi_4.6.8.orig.tar.xz
 e74ed4557e203d797dea52f72288294f3674cba5e9c525f41d08449b945f088a 10504 
mod-wsgi_4.6.8-1.debian.tar.xz
 ac2f6fe0b1868e8decab0ce88d0f1f0b70182b7bac9e3d5edfc61ea5140ef6fa 8079 
mod-wsgi_4.6.8-1_source.buildinfo
Files:
 d0de62673e93ea727f220b6b8656b768 2148 httpd optional mod-wsgi_4.6.8-1.dsc
 2712b1fed0870b843f280ec1aca34bc5 583536 httpd optional 
mod-wsgi_4.6.8.orig.tar.xz
 388fee089cd6ad9549e544dba16249d2 10504 httpd optional 
mod-wsgi_4.6.8-1.debian.tar.xz
 f85a79bf6376025715008c5669556371 8079 httpd optional 
mod-wsgi_4.6.8-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3VCu8ACgkQ6zYXGm/5
Q1/3jxAAtF56KbmYD66t+OYcw0DGJJlEpCzp7NVRiP3Cu9275SaEd70kBKyXzSUh
hK7TskrXGz6+9phDQxz9UX3Xyy2cavF31U0sY28hHvSP/kk1JG+D9Wxvn6vkUAbT
5tAWcA/UWfu58D2GpXsCfONIY2CrOjGVmGoukfZRBF8gSIisbwfnl2KiI1rp1Ed+
Z7VGH3ViPwAvG8UbMm+hmZBEiDq82X/pdtzBUC1U9Onn53BQgLMiI14C8w6bsl9d
kW5QxWOT5aD4JqzXOviNS302X5+67JYgY4eseHrCjUQOV5N4z8x3in3JjjaxF6Mx
3HwWkdw/g4SHRk8Iqq1PmMGgDyZgV+/vGFaIaGx7da+GuBA9H4CNp/4SMKzRDx2a
D300cBc0hHnTWXYFYpa3yPuSpXsF31E+Ib+dbh2Fv+O34xjoIYbNdvFvoxWYdNSJ
nNtA7lPa/mkMh+J+JtIPFFR+teVO5pR/vWUI96abWgYC28YewEKPOUkTx1Dj0Gkc
GJ8BdfeHxei+5bfoWMkazgaZD32DzeJ2fCeEFP3cuSOFufZNySUMmZRy6TWNQdx0
eWePCzYuGFzctdibyIiFf07gesnxEVwBHYMu3xlBYvxfzSLIKUqmdzjJ03l4p3j6
Ezrvk3sP9hvatlO7ewVVYXfbDVBXGeNlegVClDyg/ij8RDu7fH0=
=VKJ0
-END PGP SIGNATURE-



Accepted ipy 1:1.00-1 (source) into unstable

2019-11-16 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Nov 2019 00:56:17 +0100
Source: ipy
Architecture: source
Version: 1:1.00-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Modules Team 

Changed-By: Bernd Zeimetz 
Changes:
 ipy (1:1.00-1) unstable; urgency=medium
 .
   * [c1ff678] Update upstream source from tag 'upstream/1.00'
 Update to upstream version '1.00'
 with Debian dir 39f50eb679cd08c3fbb9df6596f61f7ffbd3cff8
   * [d96bca4] Remove werner@ from uploaders
   * [8204a77] Updating changelog
   * [4d5ec4d] Add gitlab-ci config
   * [fea0fa2] Move it to the proper folder
   * [ddca032] README was renamed to README.rst
   * [f412009] Also install README.rst, not README
   * [b8dca50] Add our own autopkgtests.
 autodep8 fails as the module name is IPy, not ipy.
 See #929957 for details.
   * [728750e] Install python for tests
   * [0daafed] Fix DeprecationWarnings
   * [4fcfe36] Tets should be silent on stderr.
Checksums-Sha1:
 3cb85241c66d9c62579de53687f987e899b62c99 2002 ipy_1.00-1.dsc
 7a228637b11eb8143a0b8654b7610b1918eed6fc 27816 ipy_1.00.orig.tar.xz
 aab93b792dcc07acfbd7c27384f62f5503065aec 7152 ipy_1.00-1.debian.tar.xz
 d83c32c22fc40e88fbe9c153c196e87f163cd921 6608 ipy_1.00-1_source.buildinfo
Checksums-Sha256:
 a96b82341e73c47d0bd6dccfa8cd9a101afa3370e1fd69397da84e25b2351aaa 2002 
ipy_1.00-1.dsc
 9797eb609925692f76e3268f9257990b1a24e13d697e80d29805de3266381301 27816 
ipy_1.00.orig.tar.xz
 4552e276650b1519e57cf39fd4aabd68bb5c766f2fa2f69cebf1cbf42cdb28ac 7152 
ipy_1.00-1.debian.tar.xz
 2a981d770ebb08ea6d1828785be66103563bc862004311f2eb5b3b2dfcb83691 6608 
ipy_1.00-1_source.buildinfo
Files:
 eb98cf9847a65f6813aa755b0969225f 2002 python optional ipy_1.00-1.dsc
 4eb9b17a91518e5ea449efdbef4ef283 27816 python optional ipy_1.00.orig.tar.xz
 dfa6c93d1f15be83ba26b9d8ae5a4a98 7152 python optional ipy_1.00-1.debian.tar.xz
 afbf91f5c89b106ce5ee6571958852be 6608 python optional 
ipy_1.00-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3QjO4ACgkQ6zYXGm/5
Q1/rLQ//bqdc7QgQ40Oz5IrHTOvYPhCGs4vg1rFZGLBSN9jZ8GYyx8IiBuS/V3EN
gRleBv+SHs4692iDiIf9tHKmOPrjW0jhqzDONaQVXtSPCPOWYTShz3+fbt8wf/Kj
DIyjldj7AaSD3YHJVes0+vaQhcRUrsHQbPgfw/uVilVfb45WnEQivCaK3wlkcwJT
ZSjwZZ1LZFuUHM7q46Sr3arbJU61ZZnEmcHH7JrtKnQCBLeYkaWXy5/QyBS1fagN
/Q5snn5SK70LES1EZprtNuFApXDbHDaOPfX8kuXYgHcWeBa5TqyC8zJug2m2sDNP
F7+RDFbyBBGS73AAwdtF6m04IHC4Cj+Jq5wq/j4Fbfg52CzYKyBf6Az4mIrrnPgG
aNkMcP0x7JwcipZG1VYJVcxha8Aviz5aZUcPYEYRRtwCezlmKk1QXdmbHTiF52Ly
UTR0HVGLrEFBC37rYhPWKyD1c5oJy78+Uw/SW8UbRCYvZvnBy03susk8UcSCgRGj
QfLyB9rgQchS9F6wBGUnbU6Kf75OxoneZVOf/vkEdN0qu8EE1xOjjKqioEiLgKw0
b4J6SOSy2tn/LhCyNiA/G36aBKbOftZWi24SFLFevgWsf4JssicFqfdsFgHJrpVo
Zp/QxLvjKHcXVXtSfezeL39k3pWjnJv5mQ2h9tb2/RjoZRfFC8Y=
=ktVN
-END PGP SIGNATURE-



Re: please avoid writing useless/annoying stuff in debian/gbp.conf (was: source only upload with git-buildpackage)

2019-11-15 Thread Bernd Zeimetz



On 11/11/19 6:30 PM, Theodore Y. Ts'o wrote:
> Yes, and that's why I use debian/master instead of debian/buster or
> debian/bullseye.  :-)
> 
> When I do create debian/buster (once it became the stable branch), the
> first thing I did after I branched off debian/buster from
> debian/master was to edit debian/gbp.conf was to have:
> 
> debian-branch=debian/buster
> 
> I only do this when I need to do the first stable backport of a
> serious/security bug, such that I have to create the debian/buster
> branch in the first place.  So it hasn't been all that annoying for
> me.

+1
I do pretty much similar things in my repositories, and I neither want
people to mess with the way I choose branch names nor do NMUers want do
have to figure out which branch to use for what.
debian/gbp.conf is perfect for that, so please maintain it. It is very easy!

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted collectd 5.9.2.g-1 (source) into unstable

2019-11-14 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 14 Nov 2019 13:01:20 +0100
Source: collectd
Architecture: source
Version: 5.9.2.g-1
Distribution: unstable
Urgency: medium
Maintainer: Collectd Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 944535
Changes:
 collectd (5.9.2.g-1) unstable; urgency=medium
 .
   * [978cc41] Use github tags instead of collectd.org.
 Seems the build process is buggy, Closes: #944535
   * [8929f0e] Update upstream source from tag 'upstream/5.9.2.g'
 Update to upstream version '5.9.2.g'
 with Debian dir 3d9a5865a5c149693e7dc99672fbd725af72b2be
   * [31e5ca1] Snapshot changelog
Checksums-Sha1:
 b41f57e659483dfa3edaba1ad0c3ce7298e520eb 4222 collectd_5.9.2.g-1.dsc
 e8d0cb152194f3b51ee762a62ab647f7bb42e259 1831777 collectd_5.9.2.g.orig.tar.bz2
 10772e712432c5373f3010e401c949df47d4e7f8 77388 collectd_5.9.2.g-1.debian.tar.xz
 ae04224b2ab1264d94c61561aecb7969e6c8b329 16751 
collectd_5.9.2.g-1_source.buildinfo
Checksums-Sha256:
 1fa8d9f4f2e557850385c8dc5fa1de9aa95a25b55cec5f4345c137ddfdb885b9 4222 
collectd_5.9.2.g-1.dsc
 917c483608b9b38438b121737b510c3d68f335c091bc286aa6ebcc0c8e372a09 1831777 
collectd_5.9.2.g.orig.tar.bz2
 d7c61ca231666de9523aa7a8d38628677dbaf3a0009a77cc493e681436dc7946 77388 
collectd_5.9.2.g-1.debian.tar.xz
 76eaec0269b215e403238674aa9edee3d4398105f53b88085216e0a49b99f722 16751 
collectd_5.9.2.g-1_source.buildinfo
Files:
 142e4b71092d45c8f5a790bafdd46df2 4222 utils optional collectd_5.9.2.g-1.dsc
 764c62767a85885f4856224a30ee1a31 1831777 utils optional 
collectd_5.9.2.g.orig.tar.bz2
 efc25c9e336352a8eaf51b3b41d84bc6 77388 utils optional 
collectd_5.9.2.g-1.debian.tar.xz
 d59ec1ed13a6183c3a952e497285fef6 16751 utils optional 
collectd_5.9.2.g-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3NQkYACgkQ6zYXGm/5
Q1+3aA//WSXfrjKxT7YerTMK39wgMZOWBw1PwdjbpHjobTObFOxfxvtpl6c+jhQi
0HZmc+O8Q6+jeo+1nt04Hq1jidYfa6lmCSbWR1Dqw6R98MxnZrPf9Tvzm2/TDFLo
GAMD4rdzhnSR8V1/b8HrFyis+DIPSXViFhucCdkTr0Wmjy51p7NrEktYcleZloRz
0bb5lsAvRF5N1jjN511WawsRYIlS2tI1hTxJKXLGRG1VmXoG3gIhheCVZQk9+i8V
VZJjCkT8Uh+H5id6z8v9iWzgAYTvxWX/EpnzwJghsu0VEbyoAk7eEoFOxfOLV3Ge
bz9QJNLStun4FALuK85PAsNEosub3YRuViPHj9gqbY4c6ZzyJ3MfuL1SY+IOzX7S
0zKHvyKjKj+PkyJ63Pv3LyhrgZASiTpwpRp7qsmWO0S4DqwJk1TdQNR5nmDD426h
MBs4oYe9smin/gGiK9HaUE2ue+RmEIurDQF2QbopOvZBHW3EZif4gBczh16Yfaoy
sPYdC091dnblhNa3cOJ/2ePxq9GSphkK0H0nBFySsWC6orqaDZoL7zOkQTZjIUKE
RuGaIPTrteD6swVn+1weLJnJ42RCoUSQZ3tigbcot9kXFpUYCpHAqroqN2lAwAOb
90i6mjD7OkzBdmB17FawF0VPZUulOlWis/CsA0ZG1LZ2g7yT9ww=
=k7Lv
-END PGP SIGNATURE-



Accepted collectd 5.9.2-4 (source) into unstable

2019-11-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Nov 2019 02:06:32 +0100
Source: collectd
Architecture: source
Version: 5.9.2-4
Distribution: unstable
Urgency: medium
Maintainer: Collectd Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 collectd (5.9.2-4) unstable; urgency=medium
 .
   * The "do not dput without looking at the CI upload".
   * [4720c20] Finish the NEWS file renaming.
Checksums-Sha1:
 bb72caa87239ffc8c7f1d1cf070dabe7c5841c5c 4205 collectd_5.9.2-4.dsc
 9c21ec3c6fa70692546b318c9b64bb47db6ce75b 77292 collectd_5.9.2-4.debian.tar.xz
 4637d43d9c116cf13df91c460d77005898a08f06 16743 
collectd_5.9.2-4_source.buildinfo
Checksums-Sha256:
 db8b7f25371bf3228f3487583c998ada3ee7b45e33e636427f59e324349c4aa7 4205 
collectd_5.9.2-4.dsc
 71093483ac10790062badadf071b1b43dc1e19731b9749aa2a2927ada75c0c86 77292 
collectd_5.9.2-4.debian.tar.xz
 d2322c049b65632e0bde8e7fc55a0de435324717818d6706459eb0b252548cc9 16743 
collectd_5.9.2-4_source.buildinfo
Files:
 6bd5b68fdb4d31db5376a6ad9121aa29 4205 utils optional collectd_5.9.2-4.dsc
 d73d2eb12dbe1670fd084146549252f1 77292 utils optional 
collectd_5.9.2-4.debian.tar.xz
 7eb8f0755a1c62747b0da8481ecf6e31 16743 utils optional 
collectd_5.9.2-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3ItGIACgkQ6zYXGm/5
Q1/I1w//d3RsxkrZEQKFd8hca8nnWl8qB6tDfzdWZ8kF1MNvxKs6yiFeSVmXZ05O
CsYQ0FsvAaR63hqJAu333BuTmsqH00fe1gmpIsE7BKzJujfjK17A75JAiLszoDlA
LH4vZB0YSOimJREjkbv3f5uuPPmYhYQBAvl429T+BJYEWi+5kBcRgJLhYqR1f1He
wj+83DE9KNddrzIEYxsK2rUfCdaqOmN+cWvbbFkJMv65b7a/9MdFROLN9Iioyw4i
7ued3x+iUim8CEvOkUliaybeet2x6p/0Bj7JMlTTfAXp8R1+6nl4zWRFh853jgcF
Dbm6mzy1Q1DMEq30MquW+/h8GnNqzp3b1FWmME+hv2UsgEvsDOpKFvH7PmQ19pRN
TNw2pDtQL3VaraJA5U6lMwFzlUAmK38HYQzfxH5tCStbPPiBtG4TRYl4CqsgMJM+
REwL9fUXvh2eFi8owkHZLpUtfOPJH974zrs6AflSoalYMw+iM68gCgU9t79UxJko
yvMWH3XIeSpv0dKZ5o+4txrfzZg0n2Eanq0tS9CCXIlHiarreRrvNy+ZknN1W8Yx
5z51eIn1Aj7JLSJMxrzbcQ3MwM5kGdQGURm2Mv2WrtrC6q9PfwpbMTdtuUvoFyGe
c7Nj0t4ovRF3IxxYqXiy8Z76yPU5gVHaC5mClkM7MZPtZre34aU=
=0pnH
-END PGP SIGNATURE-



Accepted collectd 5.9.2-3 (source) into unstable

2019-11-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Nov 2019 01:47:49 +0100
Source: collectd
Architecture: source
Version: 5.9.2-3
Distribution: unstable
Urgency: medium
Maintainer: Collectd Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 collectd (5.9.2-3) unstable; urgency=medium
 .
   * [e4535ac] Migrate to python3
   * [53fe51f] It is debian/NEWS, not debian/NEWS.Debian
   * [5f21e0e] Mention migration to Python3 in debian/NEWS
   * [8846b45] Disable nut plugin for now.
 Nut has too many rc bugs to enter testing soon.
Checksums-Sha1:
 c17e1114d689eb506b9271197daa4d7d05122ed8 4205 collectd_5.9.2-3.dsc
 de4d70721e11abbc32a09f72eccb65c9d706e5b6 77168 collectd_5.9.2-3.debian.tar.xz
 47daeac46eed7484b9976fe561e583338ad11266 16743 
collectd_5.9.2-3_source.buildinfo
Checksums-Sha256:
 5b3b47baa8c3db13bb8c46ac6dab0b466e50ac7f0a9356347d1d1958cd24710c 4205 
collectd_5.9.2-3.dsc
 65c81ef310837930b0c10edf18615c8153a7e0697d4644eba6d4dc316722c064 77168 
collectd_5.9.2-3.debian.tar.xz
 4d88b0b5fe7432b0e66f27d00d92c63c9ce3a417294b42deb825ace87b4c6bea 16743 
collectd_5.9.2-3_source.buildinfo
Files:
 29ac398578f295b542757cd2f4e167ff 4205 utils optional collectd_5.9.2-3.dsc
 4f8ee8ff4fb1becb9eb2e847f3888adc 77168 utils optional 
collectd_5.9.2-3.debian.tar.xz
 b63ff55775f2cf48bd3050446a89f7cf 16743 utils optional 
collectd_5.9.2-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3IsBYACgkQ6zYXGm/5
Q1+xXw/8CoBmbf9B25+/RNjJSM5uYiyYGcPkiDBRgHG5BBxeHtTwsaMqse6M3iSq
+eYMmVUqU1XS+LuSX6FkGTbcsmZHwI3wV5M7WqJRcjjsji36yLXVueCzigGQtqmG
FhwH/+nAZMxckSF575eIIKN4AQAPU4Om38qdE5ytOi1RvpH/BxTuWH5KVG/o4sHO
g7p1+2mM03MwVbF+QoTfxY/iATcFMUBeGUpZIF3C/0D/5qLz21Nr+amc4TODlXmM
IPbaBICpaZglJbeE/7OX05axep02H0HGlRIvkIckJVRwMRAcfdmiyANyyAhKcPPT
GKqwFrJB1RG6uCcuANvNV/iAX/5ordpkhqG74NmORJrpRPDKLo0uFeqNaSuWroUB
+hfnhCHPaBbZRoKmuT66RoGEJiVVsWYdmenKmFeJiaJuU3kVQYP8WXK5SNyyCGBp
GEGA5jCbxfY0lgpgQt0rVk1RcINDh1zmSUnUyVbbQ/G1oZAt8CqMv7i0K6HGx5Ji
AKnhuhVysZUMwLHxKBTdiClptr2Hk0uJHqzNMTwxDsBSYtqtj7THmLeXeCM0Z716
whqyi8K0YKdjfDmT3C+Cg8aaMUeRyZ8dx7FcHAFXjsuxcezvSQpS2NltxGKW4rog
szd1ztpJq64E0V5wUTQDMxOVshJc6lU37bK+Vsmf8JbdJdrhJlo=
=k/h+
-END PGP SIGNATURE-



Accepted collectd 5.9.2-2 (source) into unstable

2019-11-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Nov 2019 01:00:31 +0100
Source: collectd
Architecture: source
Version: 5.9.2-2
Distribution: unstable
Urgency: medium
Maintainer: Collectd Packaging Team 
Changed-By: Bernd Zeimetz 
Changes:
 collectd (5.9.2-2) unstable; urgency=medium
 .
   * [0155b6e] revert @zenity's configure exit change
   * [9df748b] LVM is still deprecated
   * [fbc4f98] Build-depend on libqpid-proton11-dev.
 For the amqp1 module
   * [dfb3ff6] Disable gpu_nvidia module.
 Needs non-free libraries.
   * [3fe11c6] Enable mqtt again - moquitto is in testing
   * [6f7072b] pci_errors module is broken on some arches
   * [21de403] Mention amqp1 output plugin in description.
Checksums-Sha1:
 52ebd6724b3acdd52595db0766a984346bbce0e2 4230 collectd_5.9.2-2.dsc
 845a33f578f9324b53b637e6553cd300cf6fe8b5 76996 collectd_5.9.2-2.debian.tar.xz
 392fb46c04cb52318f380ad66439a29002f82e6e 16764 
collectd_5.9.2-2_source.buildinfo
Checksums-Sha256:
 36806229ad11c5ed15ac88b6aa51bc0206d32eec570f2ef0bfa6976b41fc2be7 4230 
collectd_5.9.2-2.dsc
 65aa8cb74cbd680bf3866a08c630ef59d9976c8173266e1e14b67e6591a90daa 76996 
collectd_5.9.2-2.debian.tar.xz
 fb779d0a00dc9102d9b7ffc8df64c85c51bb72eebacf91a959005a9c35d335f8 16764 
collectd_5.9.2-2_source.buildinfo
Files:
 3fb2c0b13296e1fc4c51c346c9d8685b 4230 utils optional collectd_5.9.2-2.dsc
 0d2ebbd80e5748450f1725951940012f 76996 utils optional 
collectd_5.9.2-2.debian.tar.xz
 6ebe3253e61f8530720fd25dc720e128 16764 utils optional 
collectd_5.9.2-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3IpVQACgkQ6zYXGm/5
Q1/Kmg/+KM5G6bqn6N98XHFoX+0DQPOyHaeKdLezoKv2EgOBnuKGPtiSe1i31But
ORpFk4VXiosGWFJWXQLKVsOMDYUm8htkPV1fD41A2LgEWBLSxiKQmptavuyxDRyp
VN/d86YWLNivD5ojaPv806xU8GGxIeedfe66LkTT85q7SIAaudJB5HsJOf3+zTMm
5u3wCt8tTyT28kqfdFQ79fpTq+AvyiWyhoY45VMlrIxTYobwHqOyQQ256/19dFKl
N7kNiqyV2+8axIcSJe+yg0RZiQc/h5aze+/QxcB5ZM/sSolDRf26DqAZ3Fx1titF
Y2tMXQyjT9bPJO8C0T4lfo90CtEgu0zHFEocSSp4KsfVl+4LoEM8Ybd00hEmvK43
dK+Otz1UiWnBrywNI7ZLnhBIBcET3vvMMxRtlnmBghhVdNBYRq74cjglOK4C0yRO
LUNfW4raq0G1UNjLmrUhqosaOaUEXux0u9LplHTbBbGSBwYHVpMVM3b8g1EOQhRM
fMJaVvz9Nd5KZ9YHke98HLGiN9G1608RVr3iDo4iST5UkjWWmDIKNUcNp0j8VnGi
Yz+aWJpR+WYz6JhH457+yqRcho8ZN64pLGM+xlEEgeTSAuDI6K34rMGEixeMRNhV
zZvvScHXv8RW0BoGudLOdB5gn9TE4S+b1FuibOKX6MaWFhrIpA0=
=P8Vj
-END PGP SIGNATURE-



Accepted collectd 5.9.2-1 (source) into unstable

2019-11-10 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 10 Nov 2019 22:29:36 +0100
Source: collectd
Architecture: source
Version: 5.9.2-1
Distribution: unstable
Urgency: medium
Maintainer: Collectd Packaging Team 
Changed-By: Bernd Zeimetz 
Closes: 926528
Changes:
 collectd (5.9.2-1) unstable; urgency=medium
 .
   * [e2bc528] Stay with the common debian/version tag.
   * [989ce6e] Collect and review changes from @zebity
 https://github.com/zebity/pkg-debian
   * [6119616] Configure gitlab-ci
   * [4f34b97] Update upstream source from tag 'upstream/5.9.2'
 Update to upstream version '5.9.2'
 with Debian dir af7c66a8817dcb447a93e60e87aff32a05a0b4c3
 This fixes build issues with recent libgps-dev.
 Closes: #926528
   * [ccc5baf] snapshot changelog
   * [ad672e1] fake commit for CI
   * [65f9d1b] Make deps for collectd automatic
   * [07a98ce] Set CXXFLAGS from dpkg-buildflags
   * [918a39f] Updating git urls
   * [41e284a] Use a tracker.d.o team as maintainer.
 Adding myself as uploader.
Checksums-Sha1:
 08352e03ef9682f4f2132f1f7e43acd2020ca3b9 4215 collectd_5.9.2-1.dsc
 74d3abd097367a01284efc42861854e17751723c 1572628 collectd_5.9.2.orig.tar.xz
 c8f447bcf7728c6ac987fbd5095537d927e1b59b 76736 collectd_5.9.2-1.debian.tar.xz
 b5841186c40ad7ab1581eaa4d198821506fe51fb 16764 
collectd_5.9.2-1_source.buildinfo
Checksums-Sha256:
 f6e2ecdf3be30a9b65922945004be8e8526401f5ccd61c7d114f025faa737784 4215 
collectd_5.9.2-1.dsc
 dfcb2a2fa7de0ab02c9e6c1457bee2069957d4ffc9b428851661e9c5e5fc35b7 1572628 
collectd_5.9.2.orig.tar.xz
 82710eb166abfd95db4ac51ba95097111e45b19f25f0c85b8e1de982d4ad01d3 76736 
collectd_5.9.2-1.debian.tar.xz
 0dd1ddb7c29d2826a973ddaf1e9d097d979e94bb851eda7e3e551f28e22e1ab5 16764 
collectd_5.9.2-1_source.buildinfo
Files:
 56e0b3532cb870ebe363b59ea6e1407f 4215 utils optional collectd_5.9.2-1.dsc
 4ec308f256a3d3575f6c8a2be4338966 1572628 utils optional 
collectd_5.9.2.orig.tar.xz
 39bfccef64ba7a02498b08d66fa46d5b 76736 utils optional 
collectd_5.9.2-1.debian.tar.xz
 96d694a81ec6d6538c81e9726feba4e0 16764 utils optional 
collectd_5.9.2-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3IgYoACgkQ6zYXGm/5
Q1/3jBAAgc9q/rFKFBE7WHAOUdWKu5WP50ePMZHDrFqPb3VDjaTRztomqsFdJ6zp
Wd4LHGZTYzeFzuVXQLVE0OhzBoolYDen7BTWBHDIvnSbvxkYtFmH4wB3jAe2ZMNL
4QCGPrdBw1B0SkicfFfRWp5ZdYPMtuK0r/bLa/GHu37RT4+cEQuwEnWnC5xYG2nN
ApPf+CXbc+K68CkjDZc97MxlXVvYEIX4VtsGcd2PFbPVYFvWfb3e+bueJofi6742
Uo3Z7mU4xgIbDwspjGQTlg7ZIm6oEkSxh1dfDCXHCEGMBwRtWUSET3z4ByWb0qEe
cCoKjkcHUttJRHdZsoNiXjnjZs4srL3PNKTAu+tN3T/by/oFazEvCXxjRZB977+b
R9oL2LVt+m5xaQE/Avkm8lA570NeoMfmA0ujNCdEfi77Ss1m9mCuofb3uXxVvDeV
ba8zduPQq0HEt4DyXUUWpytxBiOTrBU9QgWTs38MEhjPthSRXbZWqwqZBnkpnvA7
QNiH9pFYtcWdTqtoAaYPLG7sENyWPigg9YhE/dxwo4f/D8LJlQzAlYeSDJFme1zj
JEbN5s4yJFmkDIxqV4Ba13LXQM6d1D71wRZ5EFBYo5Z73ePdQczmHVr8aSTSp7oX
GzGGru9dX6xeMnaJ+kCltu25pqYgGZSbFXTZdrnGjflDm15lBDc=
=RZT+
-END PGP SIGNATURE-



Accepted open-vm-tools 2:11.0.1-3 (source) into unstable

2019-11-05 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 30 Oct 2019 21:16:31 +0100
Source: open-vm-tools
Architecture: source
Version: 2:11.0.1-3
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 open-vm-tools (2:11.0.1-3) unstable; urgency=medium
 .
   * [c30953f] gitlab-ci: disable reprotest
   * [ee6873b] Use upstream patch to fix (ignore) ZFS.
Checksums-Sha1:
 0309dde824e256fa8d7189076fff49c80e1b4077 2343 open-vm-tools_11.0.1-3.dsc
 ea20974fa28d1215ade286ffe67737f7c417483b 30588 
open-vm-tools_11.0.1-3.debian.tar.xz
 14392d23d1d76848ef1357ee0fdb6a2000dafaf5 16329 
open-vm-tools_11.0.1-3_source.buildinfo
Checksums-Sha256:
 1e69345878eadc61ffabb1d572f6b408a74b6f0c5ec611d38a05a88b09f77c6e 2343 
open-vm-tools_11.0.1-3.dsc
 516ae86a367dfe6b22f1eb19657570b927cc3c41c4346d96deea3f7298c9f643 30588 
open-vm-tools_11.0.1-3.debian.tar.xz
 03342ab93f078d37be868ac4238a4e6d4fe1e2293c01c5255cded7a91a08f2cf 16329 
open-vm-tools_11.0.1-3_source.buildinfo
Files:
 53c52fc89f47ec0cda3502d4bfdbca09 2343 admin optional open-vm-tools_11.0.1-3.dsc
 6b3f52c0c80e08fe10eb374f99c032da 30588 admin optional 
open-vm-tools_11.0.1-3.debian.tar.xz
 48c9eb645f9dfac34a1688f720deace6 16329 admin optional 
open-vm-tools_11.0.1-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl3BYhUACgkQ6zYXGm/5
Q1+KyQ//T974bqX8GN5L2JPxofbZq98HVo58CdktGuyGqBJ/IoINcqGXpjqkL0o+
WaFRGn4EywE5ZM04T98tHBD1O8YaAGycGJZcbpcS5m0/pbJajd8kO9t0Mh2YcuSl
JBgmsRp+efj1abSOzG4gse01XVNzD7LE+x+q26iJdZQpAEf7emgVmYRq7KToaNri
PDWz6+7T53QAgme/m4xq5VkX96fWk0ZJrPqa9aRSyZ4SE5EiaOY5wlMI4I0rASh5
MKuG66RE9sNLkgWg330i51Meh0M1TtL5kSBZWSvqjGF9Z19RJfJwSTbMP8kWvFpo
XZfSTv4naOQrer0RF78kECB24plS3QfgwPyhWsg7/c7n4fw8R4rz4w5xIZVvYMUU
zmlE2Me9sXLtckleGN1cFZ0Cu0xc0c4VgDRdieX63BSCyk8/x8CYiQ2ghIvApiLM
Wj2MEZuOHi0X4Izhd6HZm7Q0/yjSN6LhY7klMNyzn1eVP/4q/vNmaElDaqXtuq9I
PK97rVH2bZmQbroBvhAyUUpULkOZQe/7RD7ic0URckemyHHaIbYmKCt2F5a45JQ4
wW4H5gAuO6a6ugbEpSI5esVxjw3avMBqhY97kccTxTjo/CqOIAdIMttevj2aPrLP
qUv/6s0rb2CkpKYoR4+tHf1yCmO7QTbVkogAcW3QkgizT4WicfM=
=43Nx
-END PGP SIGNATURE-



Re: BITS from the DPL For September/October 2019

2019-11-01 Thread Bernd Zeimetz



On 10/31/19 8:07 PM, Alf Gaida wrote:
> I read it the same way - and also a logical consequece: if these
> patches lead to bugs, the maintainer should not be forced to fix the
> mess. I for myself would just remove buggy things that nobody care in a
> certain amount of time.

That leads to the question how long it takes until these bugs are being
noticed.

I am definitely not going to test init scripts properly when the systemd
units are exactly doing what they are supposed to. The number of people
not using systemd are probably low enough to ensure bugs are not found
until its to late.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: should all bug reports be filed against /source/ packages?

2019-10-26 Thread Bernd Zeimetz



On 10/23/19 11:53 PM, Moritz Mühlenhoff wrote:
> Fully agreed. It's also hard for users to pinpoint the correct binary
> package and they tend to get stale with changes to binary names anyway
> (soname changes to libs etc.)

I think its easier for users to find the binary package name, as the
package is being installed and the user might even to remember that
they've installed the package. Or if there is a segfault in libfoo123, I
think the first idea would be to report a bug against libfoo123 and not
against foo-bar-fuzz, the source of libfoo.
So I think at the end reportbug just needs to do the right thing....

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted open-vm-tools 2:11.0.1-2 (source) into unstable

2019-10-22 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Oct 2019 15:48:48 +0200
Source: open-vm-tools
Architecture: source
Version: 2:11.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Closes: 942692
Changes:
 open-vm-tools (2:11.0.1-2) unstable; urgency=medium
 .
   * [76c600f] Fix segfault for fs devices without /
 See https://github.com/vmware/open-vm-tools/issues/378 for details.
 Thanks to Mo Zhou (Closes: #942692)
Checksums-Sha1:
 6543d4ef75833575de666033067fa150d7ab7571 2343 open-vm-tools_11.0.1-2.dsc
 2b4ba8f726219cf2577d06595bf2889a45c71120 30116 
open-vm-tools_11.0.1-2.debian.tar.xz
 0e0d68e2b425e3b04ee96c25456a3c83b793d9f4 16329 
open-vm-tools_11.0.1-2_source.buildinfo
Checksums-Sha256:
 797f78039a1b8c0a89535516d702d1dc8c1b11a14ab688f16c7c5113bd5de083 2343 
open-vm-tools_11.0.1-2.dsc
 79038e69789034a96f440a2626a4a6eb4925b3ed82343290c6381b5e47ae5c3f 30116 
open-vm-tools_11.0.1-2.debian.tar.xz
 2b1c47c90c26009765e7a3ee9af97d173a021d07f4ef120982de87a8727683b8 16329 
open-vm-tools_11.0.1-2_source.buildinfo
Files:
 da2014e06adefbb9c816b800cc8c3a46 2343 admin optional open-vm-tools_11.0.1-2.dsc
 328799e6c39e99e042764f0db3e022a9 30116 admin optional 
open-vm-tools_11.0.1-2.debian.tar.xz
 90ba7824e69b1d14e10b42f649009072 16329 admin optional 
open-vm-tools_11.0.1-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl2vJfoACgkQ6zYXGm/5
Q1/MdQ/9FTBRGdkEuBWlf7x6U6xp77YQfWY063jH8T8h5+Mc0KCjanTQXYcc6r+d
o6ONjhGcqj1ss+PWkTkKz/blkEfeGlXqx/cBvHj8ETvZ/vT4cgwPYmtfgQLR8l/o
AZumC66GnBS5yvPlCeclhaj2QOzVGIoCREIdqm2Wgzv0u8v7FmCOZFwz4yPgJyfy
fmsNdK9/Z5u5Z0GGf7jQ3bOxNKTSTlkYv4xVA16/FWIawGY4AF4qp+M9NSY4CKhO
Ar3sN2aYrM8xUwAF4OePa4vml81oBn4HCq7TjuKqQtqQ+gtLzJ+3Sk5x88hRjjwx
z9iU641u5nP2QQZrhDwVP9j07ZWrIAN3yCAR+7i8aIyAB6S9Whq91rc0/g8NyX99
r0qIULXSk99PIeTo28DWbn1BDFr1W2Zs7J6ytU3aaeUPU9n5wFgbn2gtTdg5XWUg
awARVS+TSfoUiEfmcvdtiY9bYkWiRJpLQ7gJPzIYDsSZFkoJ85pvPkamROFEOOtq
rI8VI+tiKUyFuKHSFJb9TDmkzdEYolrC+V000AEVfbMEneHXS21JPqC0exjMhUvr
p0qR7M3/wlOkkdeBGO1pgiZFYMfqbs/MEj4+K14LDgajR+0q5jOHuRyIFi6DSv2q
7y6EAiHlRWuXzfN4L7QCELvPCTAHcv7Q6oe22JKKLEeyfyc6i4w=
=luY/
-END PGP SIGNATURE-



Accepted open-vm-tools 2:11.0.1-1 (source) into unstable

2019-10-22 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 22 Oct 2019 09:40:50 +0200
Source: open-vm-tools
Architecture: source
Version: 2:11.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 open-vm-tools (2:11.0.1-1) unstable; urgency=medium
 .
   * [bb36e10] Update upstream source from tag 'upstream/11.0.1'
 Update to upstream version '11.0.1'
 with Debian dir 60c0d512096774b9a2a7cc9e4e94556b2893ae8a
Checksums-Sha1:
 fc6e4622053601eb2063a2db65700cf6df8a7943 2343 open-vm-tools_11.0.1-1.dsc
 5364d17db68ef8f36a9dd81fd522171aef2fb7fd 1732672 
open-vm-tools_11.0.1.orig.tar.xz
 08d7bd5c3feee3812f8d789f5ca02e16554e0f25 29824 
open-vm-tools_11.0.1-1.debian.tar.xz
 0786c466ec34f79f3ad74e63ad4364b44339f7dc 16329 
open-vm-tools_11.0.1-1_source.buildinfo
Checksums-Sha256:
 bc7176eeda6fceacf802213b35e7c32da5d6417b7c19f6035d6889eef6ff7df1 2343 
open-vm-tools_11.0.1-1.dsc
 39b671c7a25c210cf35a5e40b6448e9e59848c6ac4d291c00be87d7535bc8584 1732672 
open-vm-tools_11.0.1.orig.tar.xz
 b4dae027a631b9f20b0d2bd25087f16de5f15ba0f1759971e534d3dc619102d1 29824 
open-vm-tools_11.0.1-1.debian.tar.xz
 7f8d7107e19814e46c0059992d1af48194a61f4f6097864dd30029252e6d6f79 16329 
open-vm-tools_11.0.1-1_source.buildinfo
Files:
 cee987a4486ca27d81296056c5b97798 2343 admin optional open-vm-tools_11.0.1-1.dsc
 67550ae699c93b4beaef6803b4c7b472 1732672 admin optional 
open-vm-tools_11.0.1.orig.tar.xz
 1c4a417abcadaf9258db1306185cecbf 29824 admin optional 
open-vm-tools_11.0.1-1.debian.tar.xz
 a9ef63d9798f3b5d374c64796bafeece 16329 admin optional 
open-vm-tools_11.0.1-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl2uyRgACgkQ6zYXGm/5
Q184yA//eEZ2vuD/msDxuBfKTzT699CxeWVsaqFAyX1AAYOJfbhxA5jFmpejE6rG
qGmcdmykLWJFclbUh4c8C592TTdo/NWv8TCG+d5iBgZ+6U+XmrY8jD59HRzsSR/1
KQJqeun8EULf/pBc4RNNBfzIm8VbT8UQbezb99Xa/nLHzaLCc44RoKrcDBMU5gE6
ZmT0xWob5TyVp+4FVO9WTpYanjFS26FzRehISfytwzEYJyBPr7iZbJX4mVc9FQzj
UAcHpLrNJLD8/oGX6l0wUu0+Vu+nc0qo+NMpOWh4E2Yvo6G3BRYR/aEPe4LbVqK+
AOCVa7fdHdMcnXgCxPP4zyeoTeJR4rIT+yM+0l2X7JiuFOcdOKeJDR6sUKCSnh4y
0L8OUsrNU8Rh7BMfRy+X4wFsj1J/K5dj54dx28fEA7edH4qbwpmM1+eG6408BASz
OuorojmsQMKfazJI6WMXGo6cm6Tb/JUFgt/X662r80+qEm4mbGUonahAfxiC++XD
jd+lc0NAbRLqwd5DC6+MtcloPeX4Z6yik9ZY4MjifzOoTbNzeZ/6qxNy4liXQy0n
/IUXAk4yZj1UbF8gjsv1THE9K0x4JSb9H6tMMS2Xo5sTX9lM3T7PxUP2kmNOXa+C
qkoskZQbb5/3YHB7YQHpXLFEAcTR8A68j9f1EbzsCx1r5thhtFA=
=jmq3
-END PGP SIGNATURE-



Re: [RFC] Proposal for new source format

2019-10-22 Thread Bernd Zeimetz



On 10/22/19 6:29 AM, Russ Allbery wrote:
> Bastian Blank  writes:
> 
>> I would like to have some comments on a large revision on the source
>> format.  It also needs modifications to dak to handle some parts of it.
> 
>> - Source format version would be "4.0".
>> - Each source includes an arbitrary number of "tar" layers, which are
>>   applied sequentially and override files from previous steps.  I'm not
>>   sure if we need tombstones to be able to remove files.
> 
> If we're going to go to the trouble of defining a new source format, I'd
> prefer we embrace a VCS-based one rather than once again rolling our own
> idiosyncratic representation of a tree of files and their history.  Even
> if one is not convinced of the merits of uploading a true Git history of
> the package, I think it's clear that a lot of us *do* want to do this and
> see this as a very valuable step forward in providing a more complete
> history of the package and of decisions made in maintaining that package.

Ack!

Although a layered format might come handy if docker and friends would
be able to handle it. But I do NOT think we should go that way...



-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Accepted open-vm-tools 2:11.0.0-2 (source) into unstable

2019-10-15 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Oct 2019 23:25:24 +0200
Source: open-vm-tools
Architecture: source
Version: 2:11.0.0-2
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 open-vm-tools (2:11.0.0-2) unstable; urgency=medium
 .
   * [4cfe383] Update Vcs-Git/Browser to point to salsa.
   * [bc253ad] Remove .travis.yml, add debian/.gitlab-ci.yml
   * [c92ca3a] Add add_patch.sh script to add patches from upstream.
   * [1d9b491] Add patch to remove deprecated inline functions
   * [3e2e307] Rename lintian-override file properly
Checksums-Sha1:
 684f2ee5bcfc99f3146685b666ab1bcfb30d0a3a 2343 open-vm-tools_11.0.0-2.dsc
 7e2dca8198a960d8114e2c21263f6782dbadae9c 29772 
open-vm-tools_11.0.0-2.debian.tar.xz
 9e698c77ff640cc12e11f514a301db9ebffae7e1 16329 
open-vm-tools_11.0.0-2_source.buildinfo
Checksums-Sha256:
 87cdd8146d4158a99cdfa8efda41718d936d04123d1a57dd4ee31cd8b0cf0eb5 2343 
open-vm-tools_11.0.0-2.dsc
 db6ce88c50e8ff8734ac52b2146a03f8c673565f55010e07b90d35e35dce2e62 29772 
open-vm-tools_11.0.0-2.debian.tar.xz
 c36188c903941b9c50fee1c5530fee0f0a8cba6b73b6154fecb67495c97790c6 16329 
open-vm-tools_11.0.0-2_source.buildinfo
Files:
 d1a9956f839984b8b05da15c0e17ac0c 2343 admin optional open-vm-tools_11.0.0-2.dsc
 3ac122c5e834c120fca1e481ae680807 29772 admin optional 
open-vm-tools_11.0.0-2.debian.tar.xz
 5c0217defc0c2dc87c73892ea3bb4799 16329 admin optional 
open-vm-tools_11.0.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl2mOX4ACgkQ6zYXGm/5
Q182XA//Ru8tkEwkF9ULIdPToth5xtkLyyD21fKKKUOZWWElScdBfvbkxHg21CKK
j/iK/4qdykN7vc4XD6ZyXsNoseKtbJm8zA4mrElP1YldYl+uHOD3kDefuAgD5RHj
991ins0PWe6ZQrSiuDg5cdTpAsEWSYUx5GutdZYI+X8brZWzrNTKoei5ogEaUuNo
xXo7aehvUtR/AFKRV3gKV76uXVRkYBA2WPv68Tks+JqSuSu1NTNcSTqQeL+sKf6m
Y727lLn7/rhf/ryEQ4kNQbzX4YsBLQAVxE95UBEwi5N72ZM0VOfH/rMyFNI8pGc5
u6OAjOhx7sBWhj1qYXiBJ8y2zmnuq2Zet1zn8Fzu7l8KM3jSUBkdmeRqA+axDIee
30SV3Hs4jv5eJzbLy9dhEUkFv2vW7j+/OTJNhGJPwoj7Jhgyfh40IyZIJp9b26y+
1g6rgrEe8Iv2rfqW3zTNiRJHZ3tSyPin3NoiWGrgQn3HDkokdumsfnrtFAVUolw3
I0lbFh1YTVZuNNYSysEmgF3bl2cND5Rz5CV2utaqkcYo8pAcrM8sOVtWHiqGoau1
RQNVeDUD6PNqnEtl25yWLWXaZpCeMAku8vkhTFD/RhkkEyu4+7k+yApVhzT6Qwyv
l39R3G22id8MVdJbi46PRBTCiOxqH7n81XXsB3qj5M1u5s3P8VM=
=UR9b
-END PGP SIGNATURE-



Accepted gpsd 3.19-2 (source) into unstable

2019-10-13 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Oct 2019 21:56:20 +0200
Source: gpsd
Architecture: source
Version: 3.19-2
Distribution: unstable
Urgency: medium
Maintainer: Bernd Zeimetz 
Changed-By: Bernd Zeimetz 
Changes:
 gpsd (3.19-2) unstable; urgency=medium
 .
   * [06ae5582] Add debian/.gitlab-ci.yml
   * [b200620e] Update Vcs-Git Urls
   * [1991f99e] git is not available on buildds.
   * [809c6c4a] Remove weird env flag overrides
   * [85c4fbb7] snapshot changelog
   * [24e0be41] try again
   * [ede12b7b] Merge branch 'master' of 
salsa.debian.org:debian-gps-team/pkg-gpsd
   * [29fe8717] Remove options only used by the init script.
   * [0232f523] Scons ignores hardening-flags and others, try this.
   * [d163bdcd] Revert "Scons ignores hardening-flags and others, try this."
 This reverts commit 0232f52302f65f545118f653f787daf2429d0c0a.
   * [27d27ef5] A better try to fix scons env handling
   * [fc43714a] More fixes for the env-handling.
   * [9b34a869] Fix the broken fix
   * [6fd99707] Also merge CFLAGS/CXXFLAGS/...
   * [200cf80c] Also try to fix python cflags handling
   * [0dd50707] Use python3 for default scons things.
 After building the first version with python 3, the pickle version of
 the cached scons data will be too old.
   * [bbf652ee] Remove python2 support.
 Building both python versions got impossible since recent python3
 versions use a new picke version and scons stores its state in a pickle
 file...
   * [8eee1d20] Also remove dependencies on python-gps
   * [e3b30066] Updating debian/control from debian/control.in
   * [0332c8e5] Remove duplicate build-deps
   * [62b43a57] Updating changelog
   * [a8bbbce5] Use python3 for gpsd-clients
   * [288e9075] gpsd-clients breaks/replaces python-gps
   * [2f21db33] use aptly
   * [fd092a4d] Use python3-gi instead of python3-gtk
   * [0be9eebd] changes need to go into control.in
   * [a620b1d5] Depend on python3
   * [cbf832dd] Updating debian/control from debian/control.in
Checksums-Sha1:
 5eb849d7757e4f709118468008e869fd9d813930 2676 gpsd_3.19-2.dsc
 a2e00d770d1f3347a6c04fe6d9dab6777be86d6f 45028 gpsd_3.19-2.debian.tar.xz
 a57e576562b29be31c4b273472519d8ea6a838be 13293 gpsd_3.19-2_source.buildinfo
Checksums-Sha256:
 2a43307f5eceb857221732e7bb4d78f319885a20ca01cda33b4c7d082b526760 2676 
gpsd_3.19-2.dsc
 df4cb596417e030fb9fbaa950ac624d8722a02c71f2a08e139097ab9628f636a 45028 
gpsd_3.19-2.debian.tar.xz
 458a59a268467aa054de69564126c75cda366090b8f2cb383807b71068e716e2 13293 
gpsd_3.19-2_source.buildinfo
Files:
 d89cd1ce52f759aa7d23ab77490b7d24 2676 misc optional gpsd_3.19-2.dsc
 2a32bb94cffe96fbd7a894257c3001cb 45028 misc optional gpsd_3.19-2.debian.tar.xz
 eca8dcac1c2ff0972207db414e188fd8 13293 misc optional 
gpsd_3.19-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCAAdFiEE7KHj8o4RJDLUhd2V6zYXGm/5Q18FAl2jgZYACgkQ6zYXGm/5
Q1+Y+hAAuCv02F80b/EGYOcew/9uefWICxabE0n+EAHs7vRPPtZ2BRd2dStRil2R
FCflgj5mKMf9zqdwgX3ZQXHeVYjyKVGQsAim3kMrzBNKfMBQgxn+iMY3oBpTAFcQ
nVcU8Xsa0qphDJG8MvTJ0QmVUMmrHAGY35nCQJE4NDTKMAI+k+PqlTl/FmkY1Awe
xYv0T0bi5XsnZB7mVmh9M7cdhn/c7fw85F5ZN6QmJ/Y9YatpCsOzIaUAb0DQJ0I3
nUabdPXBBujzPu0yoNTgpcxCGXJNOtGQfJ7GQJ3jcC0zI7g0HGb2XGRzI46Fgu5r
aL34CFvaCwAwj0gK6ls4mGm/hTkRo08HYrCIZUJpRguMJYN9CXYCh0LA41hmMF+a
6c5KI/OqFq5xNRY3+LfEOH6XucXHsS6c9uOegMJQxzeS0tBcxIPld7IIzP5s6Asj
8wwA5VyqBDkeVETD7ZUbWHpSTiB+PosJlpSa9VFYi+YKL2GGeQKdSvZ5QzGUETCi
Ks9stAJtLEjA1huvMvkLCGqL/i/yjMgoFkSEfzwIZN9PGzTe5BwUg3d0ZGuTH4d9
M+oWcLEZ4x3HOHdbqzvuMhYlqE8Af7/WN4UC0UHcT/VgNEkzzg5yO6VG1QUqkajj
1Yd0co2nYQzfj6b9nLVW5V+TDMKx6nlnLI1eUF7liekIwYKeTwU=
=jH6C
-END PGP SIGNATURE-



Re: Init systems and docker

2019-10-13 Thread Bernd Zeimetz
Hi Tomas!

On 10/12/19 7:00 PM, Tomas Pospisek wrote:
> I have to say that I disagree with you and many others on this thread.
> Maybe Docker was *meant* for single application containers, I do not know.

In theory, yes.

> However running a service ("a single application") often implies
> surrounding services. F.ex. you want logs to be saved? Maybe you need to
> run cron or at? Maybe you want to get notified about problems, stats,
> whatever via email?

There are several options:
- use more than one container. Your mailserver happily runs in a
different container and can still be used by your application. Same for
cronjobs (with k8s, you'd want to look into k8s based cronjobs) - in a
lot of cases there is no need to have cron running in the same container
as your application.
- start more than one application from your entrypoint.sh
- if you really, really need it: use supervisord.


>[...]
> Now the next problem is how to start those. Easiest way is to hook the
> provided Debian init scripts into whatever mini-init system one chooses.
> And so forth.

please don't use init-scripts in containers... see above.


Containers are not meant to be full-blown Linux stacks with everything
you can imagine in one container.



Bernd


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: source only upload with git-buildpackage

2019-10-06 Thread Bernd Zeimetz



On 10/6/19 11:15 PM, PICCA Frederic-Emmanuel wrote:
> And what about
> 
> dgit --gbp push-source ?

not going to touch that. dgit is imho way to over-engineered while
having requirements at the same time, that I don't want to have (like
using dgit.debian.org...).
We have salsa as central repository, there is absolutely no need to have
something else.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



Re: source only upload with git-buildpackage

2019-10-06 Thread Bernd Zeimetz
Hi,

> I'm struggling with it for a while now and I couldn't find the solution.
> I have a package maintained with git-buildpackage. And now, that I
> "cannot" upload binary packages I tried to compile the new version with
> the option to create a source-only changes file too. But for some reason
> that changes files are not created.

I'm using this alias:

% type git-bcS
git-bcS is an alias for gbp buildpackage --git-builder='debuild -i^\.git 
-i^\.travis.yml -I.git -S -d'

That should do what you want :)

Bernd

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F



  1   2   3   4   5   6   7   8   9   10   >