public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] dbus: Update to 1.11.20
@ 2017-10-12  8:16 Stefan Schantl
  2017-10-12  9:45 ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Schantl @ 2017-10-12  8:16 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 835 bytes --]

This is a minor update to the latest available version
of dbus.

* Enable testsuite.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 dbus/dbus.nm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dbus/dbus.nm b/dbus/dbus.nm
index acdb939..5ddd3b1 100644
--- a/dbus/dbus.nm
+++ b/dbus/dbus.nm
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = dbus
-version    = 1.11.16
+version    = 1.11.20
 release    = 1
 
 maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
@@ -33,6 +33,12 @@ build
 	configure_options += \
 		--with-systemdsystemunitdir=%{unitdir} \
 		--with-dbus-user=dbus
+
+	export LD_LIBRARY_PATH = %{DIR_APP}/.libs
+
+	test
+		make check
+	end
 end
 
 packages
-- 
2.9.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] dbus: Update to 1.11.20
  2017-10-12  8:16 [PATCH] dbus: Update to 1.11.20 Stefan Schantl
@ 2017-10-12  9:45 ` Michael Tremer
  2017-10-12 10:40   ` [PATCHv2] " Stefan Schantl
  0 siblings, 1 reply; 4+ messages in thread
From: Michael Tremer @ 2017-10-12  9:45 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 5951 bytes --]

Good morning,

this won't build on my machine in release mode:

Running stage test:                                                                                                                                                                                                
+ '[' -d /builddir/source/dbus-1.11.20 ']'                                                                                                                                                                         
+ cd /builddir/source/dbus-1.11.20                                                                                                                                                                                 
+ make check                                                                                                                                                                                                       
Making check in dbus                                                                                                                                                                                               
make[1]: Entering directory '/builddir/source/dbus-1.11.20/dbus'                                                                                                                                                   
make  check-am                                                                                                                                                                                                     
make[2]: Entering directory '/builddir/source/dbus-1.11.20/dbus'                                         
make[2]: Nothing to be done for 'check-am'.                                                              
make[2]: Leaving directory '/builddir/source/dbus-1.11.20/dbus'                                          
make[1]: Leaving directory '/builddir/source/dbus-1.11.20/dbus'                                          
Making check in bus                                 
make[1]: Entering directory '/builddir/source/dbus-1.11.20/bus'                                          
make[1]: Nothing to be done for 'check'.            
make[1]: Leaving directory '/builddir/source/dbus-1.11.20/bus'                                           
Making check in tools                               
make[1]: Entering directory '/builddir/source/dbus-1.11.20/tools'                                        
make[1]: Nothing to be done for 'check'.            
make[1]: Leaving directory '/builddir/source/dbus-1.11.20/tools'                                         
Making check in test                                
make[1]: Entering directory '/builddir/source/dbus-1.11.20/test'                                         
Making check in .                                   
make[2]: Entering directory '/builddir/source/dbus-1.11.20/test'                                         
  GEN      copy-config-local                        
-- No need to copy test data as srcdir = builddir                                                        
  GEN      uninstalled-config-local                                                                      
make  check-TESTS                                                                                        
make[3]: Entering directory '/builddir/source/dbus-1.11.20/test'                                         
make[4]: Entering directory '/builddir/source/dbus-1.11.20/test'                                         
ERROR: test-shell - missing test plan                                                                    
ERROR: test-shell - exited with status 1                                                                 
ERROR: test-printf - missing test plan                                                                   
ERROR: test-printf - exited with status 1           
============================================================================                             
Testsuite summary for dbus 1.11.20                                                                       
============================================================================                             
# TOTAL: 4                                          
# PASS:  0                                          
# SKIP:  0                                          
# XFAIL: 0                                          
# FAIL:  0                                          
# XPASS: 0                                          
# ERROR: 4                                          
============================================================================                             
See test/test-suite.log                             
Please report to https://bugs.freedesktop.org/enter_bug.cgi?product=dbus                                 
============================================================================

On Thu, 2017-10-12 at 10:16 +0200, Stefan Schantl wrote:
> This is a minor update to the latest available version
> of dbus.
> 
> * Enable testsuite.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  dbus/dbus.nm | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/dbus/dbus.nm b/dbus/dbus.nm
> index acdb939..5ddd3b1 100644
> --- a/dbus/dbus.nm
> +++ b/dbus/dbus.nm
> @@ -4,7 +4,7 @@
>  #############################################################################
> ##
>  
>  name       = dbus
> -version    = 1.11.16
> +version    = 1.11.20
>  release    = 1
>  
>  maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
> @@ -33,6 +33,12 @@ build
>  	configure_options += \
>  		--with-systemdsystemunitdir=%{unitdir} \
>  		--with-dbus-user=dbus
> +
> +	export LD_LIBRARY_PATH = %{DIR_APP}/.libs
> +
> +	test
> +		make check
> +	end
>  end
>  
>  packages

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCHv2] dbus: Update to 1.11.20
  2017-10-12  9:45 ` Michael Tremer
@ 2017-10-12 10:40   ` Stefan Schantl
  2017-10-16 18:16     ` Michael Tremer
  0 siblings, 1 reply; 4+ messages in thread
From: Stefan Schantl @ 2017-10-12 10:40 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 840 bytes --]

This is a minor update to the latest available version
of dbus.

* Enable testsuite.

Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
 dbus/dbus.nm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dbus/dbus.nm b/dbus/dbus.nm
index acdb939..bfa5ed0 100644
--- a/dbus/dbus.nm
+++ b/dbus/dbus.nm
@@ -4,7 +4,7 @@
 ###############################################################################
 
 name       = dbus
-version    = 1.11.16
+version    = 1.11.20
 release    = 1
 
 maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
@@ -33,6 +33,12 @@ build
 	configure_options += \
 		--with-systemdsystemunitdir=%{unitdir} \
 		--with-dbus-user=dbus
+
+	export LD_LIBRARY_PATH = %{DIR_APP}/dbus/.libs
+
+	test
+		make check
+	end
 end
 
 packages
-- 
2.9.4


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv2] dbus: Update to 1.11.20
  2017-10-12 10:40   ` [PATCHv2] " Stefan Schantl
@ 2017-10-16 18:16     ` Michael Tremer
  0 siblings, 0 replies; 4+ messages in thread
From: Michael Tremer @ 2017-10-16 18:16 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 994 bytes --]

Thanks. This one works for me.

On Thu, 2017-10-12 at 12:40 +0200, Stefan Schantl wrote:
> This is a minor update to the latest available version
> of dbus.
> 
> * Enable testsuite.
> 
> Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
> ---
>  dbus/dbus.nm | 8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/dbus/dbus.nm b/dbus/dbus.nm
> index acdb939..bfa5ed0 100644
> --- a/dbus/dbus.nm
> +++ b/dbus/dbus.nm
> @@ -4,7 +4,7 @@
>  #############################################################################
> ##
>  
>  name       = dbus
> -version    = 1.11.16
> +version    = 1.11.20
>  release    = 1
>  
>  maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
> @@ -33,6 +33,12 @@ build
>  	configure_options += \
>  		--with-systemdsystemunitdir=%{unitdir} \
>  		--with-dbus-user=dbus
> +
> +	export LD_LIBRARY_PATH = %{DIR_APP}/dbus/.libs
> +
> +	test
> +		make check
> +	end
>  end
>  
>  packages

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2017-10-16 18:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-12  8:16 [PATCH] dbus: Update to 1.11.20 Stefan Schantl
2017-10-12  9:45 ` Michael Tremer
2017-10-12 10:40   ` [PATCHv2] " Stefan Schantl
2017-10-16 18:16     ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox