Re: [ptxdist] [PATCH 2/2] rauc-image: new package

2016-11-24 Thread Bastian Stender
_KEY=$(PTXDIST_WORKSPACE)/config/rauc/ca.key.pem \ + RAUC_CERT=$(PTXDIST_WORKSPACE)/projectroot/etc/rauc/ca.cert.pem + +$(IMAGE_RAUC_IMAGE): + @$(call targetinfo) + @$(call image/genimage, IMAGE_RAUC) + @$(call finish) + +# vim: syntax=make Regards, Bastian Stender -- Pengutronix e.K.

[ptxdist] [PATCH 3/3] libmnl: version bump 1.0.3 -> 1.0.4

2016-10-26 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/libmnl.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/libmnl.make b/rules/libmnl.make index c71f004..f07bf4e 100644 --- a/rules/libmnl.make +++ b/rules/libmnl.make @@ -16,8 +16,8 @@ PA

[ptxdist] [PATCH 1/3] batctl: add license info

2016-10-26 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/batctl.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/batctl.make b/rules/batctl.make index 9080a07..50f8238 100644 --- a/rules/batctl.make +++ b/rules/batctl.make @@ -23,7 +23,7 @@ BATCTL_

[ptxdist] [PATCH 2/3] alfred: version bump 2015.1 -> 2016.2

2016-10-26 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/alfred.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/alfred.make b/rules/alfred.make index d13ee55..a1b6757 100644 --- a/rules/alfred.make +++ b/rules/alfred.make @@ -16,8 +16,8 @@ PA

[ptxdist] [PATCH] create_docs: fix copy destination

2017-01-03 Thread Bastian Stender
Collecting files from doc/_static in a BSP lead to two nested _static directories. This results in broken javascript and image links in the html documentation. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- bin/ptxdist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[ptxdist] [PATCH] dt-utils: version bump 2016.12.0 -> 2017.03.0

2017-03-31 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/dt-utils.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/dt-utils.make b/rules/dt-utils.make index 8cf801461..67d3b49f3 100644 --- a/rules/dt-utils.make +++ b/rules/dt-utils.make @@ -16,8

[ptxdist] [PATCH] rsyslog: version bump 8.25 -> 8.26

2017-04-11 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/rsyslog.in | 4 ++-- rules/rsyslog.make | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rules/rsyslog.in b/rules/rsyslog.in index 8b5f8dff4..74f639567 100644 --- a/rules/rsyslog.in +++ b/rules/rsys

[ptxdist] [PATCH] util-linux-ng: make nsenter configurable

2017-03-06 Thread Bastian Stender
nsenter is useful to enter a namespace of a process. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/util-linux-ng.in | 6 ++ rules/util-linux-ng.make | 5 - 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/rules/util-linux-ng.in b/rules/util-linux

[ptxdist] [PATCH] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on oldconfig/nconfig/menuconfig

2017-07-28 Thread Bastian Stender
amending ".ptxdist-defaultenv" after oldconfig/nconfig/menuconfig. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/barebox.make | 7 +++ 1 file changed, 7 insertions(+) diff --git a/rules/barebox.make b/rules/barebox.make index bdfefe8c6..d391ec9eb 100644 ---

Re: [ptxdist] [PATCH 1/4] doc: document git patch workflow

2017-07-14 Thread Bastian Stender
Hey, On 07/14/2017 12:57 PM, Roland Hieber wrote: Signed-off-by: Roland Hieber --- doc/dev_manual.rst | 40 +--- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/doc/dev_manual.rst b/doc/dev_manual.rst index

[ptxdist] [PATCH] avahi: version bump 0.6.31 -> 0.7

2017-07-20 Thread Bastian Stender
The "service-types" file is no longer installed. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/avahi.make | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rules/avahi.make b/rules/avahi.make index 2e796bce4..8621bf89f 100644 --- a/

[ptxdist] [PATCH 1/2] avahi: set FILE_OFFSET_BITS to work with 64 bit inodes

2017-07-19 Thread Bastian Stender
In case of 64 bit inodes calls to 32 bit variants of stat() will cause EOVERFLOW and avahi will terminate with Value too large for defined data type FILE_OFFSET_BITS=64 makes the code receive 64 bit values. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/avahi.make | 2

[ptxdist] [PATCH 2/2] iptables: set FILE_OFFSET_BITS to work with 64 bit inodes

2017-07-19 Thread Bastian Stender
In case of 64 bit inodes calls to 32 bit variants of stat() will cause EOVERFLOW and iptables will terminate with Value too large for defined data type FILE_OFFSET_BITS=64 makes the code receive 64 bit values. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/iptables.ma

Re: [ptxdist] [PATCH 1/2] avahi: set FILE_OFFSET_BITS to work with 64 bit inodes

2017-07-24 Thread Bastian Stender
On 07/19/2017 12:19 PM, Uwe Kleine-König wrote: On Wed, Jul 19, 2017 at 11:59:19AM +0200, Bastian Stender wrote: In case of 64 bit inodes calls to 32 bit variants of stat() will cause EOVERFLOW and avahi will terminate with Value too large for defined data type FILE_OFFSET_BITS=64 makes

[ptxdist] [PATCH] fake-overlays: remove obsolete PTXCONF_FAKE_OVERLAYFS_VAR_RUN

2017-06-29 Thread Bastian Stender
The corresponding config option was removed in 46622acac ("make /var/run a symlink to /run"). Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/fake-overlayfs.make | 3 --- 1 file changed, 3 deletions(-) diff --git a/rules/fake-overlayfs.make b/rules/fake-over

[ptxdist] [PATCH] rauc: version bump 0.1 -> 0.1.1

2017-05-15 Thread Bastian Stender
rauc 0.1.1 fixes accidentally packaged systemd service files. This lead to failing services in case the rauc binary location differed from the location on the packaging host. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/rauc.make | 6 +++--- 1 file changed, 3 insertions

[ptxdist] [PATCH] php5: MySQL is no longer broken

2017-05-22 Thread Bastian Stender
Since 875ab2e43 ("mySQL: exhume a gone package by updating it to a new release") MySQL is supported again. Alternatively MariaDB can be used. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/php5.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/rules/php5

[ptxdist] [PATCH] mariadb: new package

2017-05-22 Thread Bastian Stender
MariaDB is a MySQL fork. Therefore the MySQL rule was adapted to fit MariaDB. As MariaDB uses the same binary names as MySQL the packages conflict. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- projectroot/etc/group | 1 + projectroot/etc/mariadb/

[ptxdist] [PATCH v2] mariadb: new package

2017-05-29 Thread Bastian Stender
MariaDB is a MySQL fork. Therefore the MySQL rule was adapted to fit MariaDB. As MariaDB uses the same binary names as MySQL the packages conflict. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- Changes since v1: - clean up mariadb configuration - clean up systemd service - use

[ptxdist] [PATCH] qt5: add choice for SQL backend

2017-05-29 Thread Bastian Stender
MariaDB is a binary drop in replacement for MySQL and satisfies the dependency. So make this a choice field. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- This patch depends on the mariadb package. rules/qt5.in | 17 - rules/qt5.make | 4 ++-- 2 files chang

[ptxdist] [PATCH] php5: add choice for SQL server

2017-05-29 Thread Bastian Stender
MariaDB is a binary drop in replacement for MySQL and satisfies the dependency. So make this a choice field. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- This patch depends on the mariadb package. rules/php5.in | 21 +++-- rules/php5.make | 2 +- 2 files c

Re: [ptxdist] [PATCH v2] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on (interrupted) oldconfig/nconfig/menuconfig

2017-09-14 Thread Bastian Stender
On 09/14/2017 08:47 AM, Michael Olbrich wrote: On Wed, Sep 13, 2017 at 06:49:45PM +0200, Bastian Stender wrote: ptxdist adds ".ptxdist-defaultenv" if PTXCONF_BAREBOX_EXTRA_ENV is enabled. If barebox oldconfig/nconfig/menuconfig do not modify the configuration the barebox config fr

[ptxdist] [PATCH v3] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on (interrupted) oldconfig/nconfig/menuconfig

2017-09-14 Thread Bastian Stender
n unexpected environment. Fix this by amending ".ptxdist-defaultenv" before compiling in case it has not been amended before. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/barebox.make | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a

[ptxdist] [PATCH v2] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on (interrupted) oldconfig/nconfig/menuconfig

2017-09-13 Thread Bastian Stender
n unexpected environment. Fix this by amending ".ptxdist-defaultenv" before compiling in case it has not been amended before. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/barebox.make | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a

Re: [ptxdist] [PATCH] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on oldconfig/nconfig/menuconfig

2017-09-13 Thread Bastian Stender
On 09/13/2017 05:12 PM, Michael Olbrich wrote: On Mon, Sep 11, 2017 at 11:10:10AM +0200, Bastian Stender wrote: On 07/28/2017 12:31 PM, Bastian Stender wrote: ptxdist adds ".ptxdist-defaultenv" if PTXCONF_BAREBOX_EXTRA_ENV is enabled. If barebox oldconfig/nconfig/menuconfig do

Re: [ptxdist] [PATCH] avahi: version bump 0.6.31 -> 0.7

2017-09-13 Thread Bastian Stender
On 07/20/2017 02:56 PM, Bastian Stender wrote: The "service-types" file is no longer installed. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/avahi.make | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/rules/avahi.make b/rules/

Re: [ptxdist] [PATCH] beep: new package

2017-10-10 Thread Bastian Stender
On 10/10/2017 09:22 AM, Michael Olbrich wrote: On Mon, Oct 09, 2017 at 07:02:36PM +0200, Bastian Stender wrote: Extended beep utility that does pretty much the same as busybox' beep, but allows reading stdin and specifying an alternative console device. This is especially useful to test

[ptxdist] [PATCH v2] beep: new package

2017-10-10 Thread Bastian Stender
ify the input device with -e. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- patches/beep-1.3/0001-Makefile-fix.patch | 25 +++ rules/beep.in| 7 + rules/beep.make | 54 3 files changed

Re: [ptxdist] [PATCH v2] beep: new package

2017-10-10 Thread Bastian Stender
On 10/10/2017 12:06 PM, Bastian Stender wrote: Extended beep utility that does pretty much the same as busybox' beep, but allows reading stdin and specifying an alternative console device. This is especially useful to test the kernel drivers "pwm-beeper" and "gpio-beeper&qu

[ptxdist] [PATCH v3] beep: new package

2017-10-10 Thread Bastian Stender
ify the input device with -e. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- patches/beep-1.3/0001-Makefile-fix.patch | 25 +++ rules/beep.in| 7 + rules/beep.make | 54 3 files changed

[ptxdist] [PATCH] beep: new package

2017-10-09 Thread Bastian Stender
ify the input device with -e. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- patches/beep-1.3/0001-Makefile-fix.patch | 33 +++ rules/beep.in| 7 rules/beep.make | 56 3 fi

Re: [ptxdist] [PATCH] barebox: fix CONFIG_DEFAULT_ENVIRONMENT_PATH on oldconfig/nconfig/menuconfig

2017-09-11 Thread Bastian Stender
On 07/28/2017 12:31 PM, Bastian Stender wrote: ptxdist adds ".ptxdist-defaultenv" if PTXCONF_BAREBOX_EXTRA_ENV is enabled. If barebox oldconfig/nconfig/menuconfig do not modify the configuration the barebox config from the BSP is copied without executing the prepare stage r

[ptxdist] [PATCH] iperf3: new package

2017-10-18 Thread Bastian Stender
not conflict. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/iperf3.in | 13 rules/iperf3.make | 59 +++ 2 files changed, 72 insertions(+) create mode 100644 rules/iperf3.in create mode 100644 rules/iperf3.make diff

Re: [ptxdist] udev & kmod

2018-06-05 Thread Bastian Stender
Hi, On 06/05/2018 04:08 PM, Jakov Simunic wrote: Hello, my first question: In ptxdist git repo, I can see in rules/udev.make that you use udev version 182, but that version requires at least libkmod > 5, but I don't see that you use kmod anywhere. How does your udev builds without kmod? udev

[ptxdist] [PATCH 2/2] python3: prevent host path leakage

2018-01-05 Thread Bastian Stender
If host and target architecture match PyBuildExt.compiler.library_dirs and PyBuildExt.compiler.include_dirs contain host paths (e.g. /usr/lib/i386-linux-gnu, /usr/include/i386-linux-gnu) leading to build failures for some extensions (at least _ssl and _socket). Signed-off-by: Bastian Stender &l

[ptxdist] [PATCH 1/2] python2: prevent host path leakage

2018-01-05 Thread Bastian Stender
If host and target architecture match PyBuildExt.compiler.library_dirs and PyBuildExt.compiler.include_dirs contain host paths (e.g. /usr/lib/i386-linux-gnu, /usr/include/i386-linux-gnu) leading to build failures for some extensions (at least _ssl and _socket). Signed-off-by: Bastian Stender &l

[ptxdist] [PATCH v2 2/2] python3: prevent host path leakage

2018-01-08 Thread Bastian Stender
multiarch, so remove this addition when cross-compiling. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- Changes since (implicit) v1: - add local paths when not cross-compiling - perform add_multiarch_paths() only when not cross-compiling --- .../0002-python3-prevent-hos

[ptxdist] [PATCH v2 1/2] python2: prevent host path leakage

2018-01-08 Thread Bastian Stender
multiarch, so remove this addition when cross-compiling. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- Changes since (implicit) v1: - add local paths when not cross-compiling - perform add_multiarch_paths() only when not cross-compiling --- .../0009-python2-prevent-hos

[ptxdist] [PATCH] python3-aiofiles: new package

2018-01-19 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/python3-aiofiles.in | 8 +++ rules/python3-aiofiles.make | 54 + 2 files changed, 62 insertions(+) create mode 100644 rules/python3-aiofiles.in create mode 100644 rules/p

Re: [ptxdist] Remote debugging (2017.05.0)

2018-01-16 Thread Bastian Stender
On 01/16/2018 02:33 PM, Fritz Emboli wrote: I tried the debugger from the toolchain. But it dies, because it cannot find libncurses.so.5. It is OSELAS.Toolchain-2013.12.2. I don't know where it comes from (inherited, not self compiled). I have to investigate... Do i have to use 2013.12.2 for

[ptxdist] [PATCH 3/4] python3-yarl: new package

2018-01-29 Thread Bastian Stender
From: Pim Klanke Signed-off-by: Pim Klanke --- rules/python3-yarl.in | 10 + rules/python3-yarl.make | 54 + 2 files changed, 64 insertions(+) create mode 100644 rules/python3-yarl.in create mode

[ptxdist] [PATCH 2/5] python3-websockets: new package

2018-01-29 Thread Bastian Stender
From: David Jander Signed-off-by: David Jander --- rules/python3-websockets.in | 9 rules/python3-websockets.make | 54 +++ 2 files changed, 63 insertions(+) create mode 100644

[ptxdist] [PATCH 2/4] python3-multidict: new package

2018-01-29 Thread Bastian Stender
From: Pim Klanke Signed-off-by: Pim Klanke --- rules/python3-multidict.in | 10 rules/python3-multidict.make | 54 2 files changed, 64 insertions(+) create mode 100644 rules/python3-multidict.in

[ptxdist] [PATCH 3/5] libyaml: new package

2018-01-29 Thread Bastian Stender
Signed-off-by: Bastian Stender <b...@pengutronix.de> --- patches/libyaml-0.1.7/autogen.sh | 1 + rules/libyaml.in | 7 + rules/libyaml.make | 57 3 files changed, 65 insertions(+) create mode 12 patches/l

[ptxdist] [PATCH 5/5] python3-hbmqtt: new package

2018-01-29 Thread Bastian Stender
From: David Jander Signed-off-by: David Jander --- rules/python3-hbmqtt.in | 12 +++ rules/python3-hbmqtt.make | 54 +++ 2 files changed, 66 insertions(+) create mode 100644 rules/python3-hbmqtt.in

[ptxdist] [PATCH 1/2] python3-ply: new package

2018-01-29 Thread Bastian Stender
From: Robin van der Gracht Signed-off-by: Robin van der Gracht --- rules/python3-ply.in | 8 rules/python3-ply.make | 54 ++ 2 files changed, 62 insertions(+) create mode 100644

[ptxdist] [PATCH 2/2] python3-pyalsaaudio: new package

2018-01-29 Thread Bastian Stender
From: David Jander Signed-off-by: David Jander --- rules/python3-pyalsaaudio.in | 11 + rules/python3-pyalsaaudio.make | 54 ++ 2 files changed, 65 insertions(+) create mode 100644

[ptxdist] [PATCH 2/3] host-python3-shiboken: new package

2018-01-31 Thread Bastian Stender
From: Robin van der Gracht Depends on "python3-shiboken: new package", because we assume a patched shiboken 1.2.2. Signed-off-by: Robin van der Gracht --- rules/host-python3-shiboken.in | 9 +++ rules/host-python3-shiboken.make | 55

[ptxdist] [PATCH 3/3] python3-pyside: new package

2018-01-31 Thread Bastian Stender
From: Robin van der Gracht The patches directory patches/pyside-qt4.8+1.2.2 is ready and compile-time tested with python2 and python3. Because we could not really test pyside qt4.8+1.2.2 (python2), we did not do a version bump for it. Signed-off-by: Robin van der Gracht

Re: [ptxdist] [PATCH] rauc: install rauc service wrapper script for non-systemd systems

2018-02-13 Thread Bastian Stender
On 02/13/2018 01:00 PM, Bastian Stender wrote: On 02/13/2018 12:51 PM, Michael Olbrich wrote: On Tue, Feb 13, 2018 at 11:22:14AM +0100, Bastian Stender wrote: This is called by dbus activation via /usr/share/dbus-1/system-services/de.pengutronix.rauc.service when systemd is not used. Signed

Re: [ptxdist] [PATCH] rauc: install rauc service wrapper script for non-systemd systems

2018-02-13 Thread Bastian Stender
On 02/13/2018 12:51 PM, Michael Olbrich wrote: On Tue, Feb 13, 2018 at 11:22:14AM +0100, Bastian Stender wrote: This is called by dbus activation via /usr/share/dbus-1/system-services/de.pengutronix.rauc.service when systemd is not used. Signed-off-by: Bastian Stender <b...@pengutronix

[ptxdist] [PATCH] rauc: install rauc service wrapper script for non-systemd systems

2018-02-13 Thread Bastian Stender
This is called by dbus activation via /usr/share/dbus-1/system-services/de.pengutronix.rauc.service when systemd is not used. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/rauc.make | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rules/rauc.make b/rules/rauc.make

[ptxdist] [PATCH v2] rauc: install rauc service wrapper script for non-systemd systems

2018-02-13 Thread Bastian Stender
This is called by dbus activation via /usr/share/dbus-1/system-services/de.pengutronix.rauc.service when systemd is not used. Signed-off-by: Bastian Stender <b...@pengutronix.de> --- Changes since v1: - added patch to prevent package host path leakage --- ...le.am-do-not-package-dat

Re: [ptxdist] [PATCH 1/3] pcsc-lite: fix URL

2018-07-25 Thread Bastian Stender
Hi, On 07/24/2018 11:42 AM, Bastian Stender wrote: The alioth.debian.org service is discontinued. Use alioth-archive.debian.org instead. I was told by the Debian folks that alioth.debian.org is not there to stay. I cannot find other stable URLs apart from strange mirror sites. Should we

Re: [ptxdist] [PATCH 1/3] pcsc-lite: fix URL

2018-07-25 Thread Bastian Stender
Hi, On 07/25/2018 03:04 PM, Michael Olbrich wrote: On Wed, Jul 25, 2018 at 11:42:31AM +0200, Roland Hieber wrote: On Wed, Jul 25, 2018 at 09:16:04AM +0200, Bastian Stender wrote: On 07/24/2018 11:42 AM, Bastian Stender wrote: The alioth.debian.org service is discontinued. Use alioth

[ptxdist] [PATCH v2 1/3] pcsc-lite: fix URL

2018-07-25 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use snapshot.debian.org instead. Signed-off-by: Bastian Stender --- rules/pcsc-lite.make | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/pcsc-lite.make b/rules/pcsc-lite.make index e9d474606..cc5e6b52f 100644

[ptxdist] [PATCH v2 2/3] minicom: fix URL

2018-07-25 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use snapshot.debian.org instead. Signed-off-by: Bastian Stender --- rules/minicom.make | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/minicom.make b/rules/minicom.make index 077268917..db80a9258 100644 --- a/rules

[ptxdist] [PATCH v2 3/3] host-chrpath: fix URL

2018-07-25 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use snapshot.debian.org instead. Signed-off-by: Bastian Stender --- rules/host-chrpath.make | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/host-chrpath.make b/rules/host-chrpath.make index 8100fe113..fefb92e9c 100644

[ptxdist] [PATCH 3/3] host-chrpath: fix URL

2018-07-24 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use alioth-archive.debian.org instead. Signed-off-by: Bastian Stender --- rules/host-chrpath.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/host-chrpath.make b/rules/host-chrpath.make index 8100fe113..4027caef0

[ptxdist] [PATCH 1/3] pcsc-lite: fix URL

2018-07-24 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use alioth-archive.debian.org instead. Signed-off-by: Bastian Stender --- rules/pcsc-lite.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/pcsc-lite.make b/rules/pcsc-lite.make index e9d474606..fd1dbb4cb 100644

[ptxdist] [PATCH 2/3] minicom: fix URL

2018-07-24 Thread Bastian Stender
The alioth.debian.org service is discontinued. Use alioth-archive.debian.org instead. Signed-off-by: Bastian Stender --- rules/minicom.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/minicom.make b/rules/minicom.make index 077268917..d5436b5aa 100644 --- a/rules

[ptxdist] [PATCH] ntp: update configure options

2018-03-13 Thread Bastian Stender
-enable-TRAK removed in ba7975983 ("[Bug 340, 342] Deprecate broken TRAK and MSF EES refclocks") --enable-PTBACTS removed in e0da3f545 ("Remove PTB and USNO lint") Signed-off-by: Bastian Stender <b...@pengutronix.de> --- rules/ntp.in | 6 -- rules/ntp.make| 1

Re: [ptxdist] [PATCH] htop: version bump 2.1.0 -> 2.2.0

2018-04-10 Thread Bastian Stender
Hi, On 04/10/2018 05:14 PM, Roland Hieber wrote: Signed-off-by: Roland Hieber --- rules/htop.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/htop.make b/rules/htop.make index 4d3505f29..eff67cdda 100644 --- a/rules/htop.make +++

Re: [ptxdist] [PATCH v2] ntp: update/transform configure options

2018-03-26 Thread Bastian Stender
On 03/26/2018 08:17 AM, Michael Olbrich wrote: On Wed, Mar 21, 2018 at 04:59:47PM +0100, Bastian Stender wrote: Use proper ptx/endis and ptx/wwo options, checked and corrected configure options using configure_helper.py. Some configure options changed over time: --enable-ARCRON_MSF

[ptxdist] [PATCH v2] ntp: update/transform configure options

2018-03-21 Thread Bastian Stender
ove PTB and USNO lint") Signed-off-by: Bastian Stender <b...@pengutronix.de> --- Changes since (implicit) v1: - use ptx/endis, ptx/wwo and ptx/ifdef where appropriate - revisit configure options with helper script - sorted options according to configure --- rules/ntp.in