Re: [ptxdist] Check for specific libc version

2016-01-21 Thread Ladislav Michl
On Mon, Sep 28, 2015 at 12:29:02PM +0200, Michael Olbrich wrote: > On Tue, Aug 18, 2015 at 12:30:41PM +0200, Ladislav Michl wrote: [...] > > This problem has side effect: as it seems the only variable used from > > Versions.make is PTXDIST_FULLVERSION composed from PTXDIST_VERSION_FULL and > >

Re: [ptxdist] [PATCH] openssh: bump version to 7.1p2

2016-01-21 Thread Michael Olbrich
On Thu, Jan 21, 2016 at 01:05:16AM +0100, Clemens Gruber wrote: > Contains important security fixes for a client vulnerability, leaking > private client user keys to a malicious server. > > Changelog: http://www.openssh.com/txt/release-7.1p2 > > Signed-off-by: Clemens Gruber

[ptxdist] [PATCH] usb_modeswitch: version bump 2.2.1 -> 2.3.0

2016-01-21 Thread Ladislav Michl
Also update help to match official description. Signed-off-by: Ladislav Michl --- rules/usb-modeswitch.in | 3 ++- rules/usb-modeswitch.make | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/rules/usb-modeswitch.in b/rules/usb-modeswitch.in index

[ptxdist] Semicolon in filenames

2016-01-21 Thread Ladislav Michl
Now I'm going to be honest. Previous patch 'Add usb-modeswitch-data package' break things - 'ptxdist images' fails as ':' is used as delimiter in perms file. Patch bellow escapes semicolon on producer side, anyone cares about consumer? ladis diff --git a/scripts/lib/ptxd_make_xpkg_pkg.sh

[ptxdist] [PATCH] Add usb-modeswitch-data package

2016-01-21 Thread Ladislav Michl
Signed-off-by: Ladislav Michl --- rules/usb-modeswitch-data.in | 10 ++ rules/usb-modeswitch-data.make | 76 ++ 2 files changed, 86 insertions(+) create mode 100644 rules/usb-modeswitch-data.in create mode 100644

Re: [ptxdist] Semicolon in filenames

2016-01-21 Thread Uwe Kleine-König
Hello, On Fri, Jan 22, 2016 at 01:31:37AM +0100, Ladislav Michl wrote: > Now I'm going to be honest. Previous patch 'Add usb-modeswitch-data package' > break things - 'ptxdist images' fails as ':' is used as delimiter in perms > file. > Patch bellow escapes semicolon on producer side, anyone