Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST
@ 2010-08-06 14:18 Uwe Kleine-König
  2010-08-06 14:18 ` [PATCH 2/2] add three missing api documents to EXTRA_DIST Uwe Kleine-König
  2010-08-11 17:35 ` [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Marcel Holtmann
  0 siblings, 2 replies; 6+ messages in thread
From: Uwe Kleine-König @ 2010-08-06 14:18 UTC (permalink / raw)
  To: linux-bluetooth

This makes further changes to the list easier to review

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 Makefile.am |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 65d4312..4bb82fe 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -309,11 +309,18 @@ udevdir = $(libexecdir)/udev
 dist_udev_SCRIPTS = scripts/bluetooth_serial
 endif
 
-EXTRA_DIST += doc/manager-api.txt \
-		doc/adapter-api.txt doc/device-api.txt \
-		doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
-		doc/serial-api.txt doc/network-api.txt \
-		doc/input-api.txt doc/audio-api.txt doc/control-api.txt
+EXTRA_DIST += \
+	      doc/adapter-api.txt \
+	      doc/agent-api.txt \
+	      doc/attribute-api.txt \
+	      doc/audio-api.txt \
+	      doc/control-api.txt \
+	      doc/device-api.txt \
+	      doc/input-api.txt \
+	      doc/manager-api.txt \
+	      doc/network-api.txt \
+	      doc/serial-api.txt \
+	      doc/service-api.txt \
 
 AM_YFLAGS = -d
 
-- 
1.7.1


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

* [PATCH 2/2] add three missing api documents to EXTRA_DIST
  2010-08-06 14:18 [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Uwe Kleine-König
@ 2010-08-06 14:18 ` Uwe Kleine-König
  2010-08-11 17:38   ` Marcel Holtmann
  2010-08-11 17:35 ` [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Marcel Holtmann
  1 sibling, 1 reply; 6+ messages in thread
From: Uwe Kleine-König @ 2010-08-06 14:18 UTC (permalink / raw)
  To: linux-bluetooth

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
Hello,

there are still a few files in bluez.git/doc that are not listed in EXTRA_DIST:

 - bluez-docs.xml
 - gtk-doc.make
 - version.xml.in

I didn't know if I should add these, too, so I just point that out.

Best regards
Uwe

 Makefile.am |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 4bb82fe..7007026 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -316,9 +316,12 @@ EXTRA_DIST += \
 	      doc/audio-api.txt \
 	      doc/control-api.txt \
 	      doc/device-api.txt \
+	      doc/health-api.txt \
+	      doc/hfp-api.txt \
 	      doc/input-api.txt \
 	      doc/manager-api.txt \
 	      doc/network-api.txt \
+	      doc/node-api.txt \
 	      doc/serial-api.txt \
 	      doc/service-api.txt \
 
-- 
1.7.1


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

* Re: [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST
  2010-08-06 14:18 [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Uwe Kleine-König
  2010-08-06 14:18 ` [PATCH 2/2] add three missing api documents to EXTRA_DIST Uwe Kleine-König
@ 2010-08-11 17:35 ` Marcel Holtmann
  1 sibling, 0 replies; 6+ messages in thread
From: Marcel Holtmann @ 2010-08-11 17:35 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: linux-bluetooth

Hi Uwe,

> This makes further changes to the list easier to review
> 
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
>  Makefile.am |   17 ++++++++++++-----
>  1 files changed, 12 insertions(+), 5 deletions(-)
> 
> diff --git a/Makefile.am b/Makefile.am
> index 65d4312..4bb82fe 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -309,11 +309,18 @@ udevdir = $(libexecdir)/udev
>  dist_udev_SCRIPTS = scripts/bluetooth_serial
>  endif
>  
> -EXTRA_DIST += doc/manager-api.txt \
> -		doc/adapter-api.txt doc/device-api.txt \
> -		doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
> -		doc/serial-api.txt doc/network-api.txt \
> -		doc/input-api.txt doc/audio-api.txt doc/control-api.txt
> +EXTRA_DIST += \
> +	      doc/adapter-api.txt \
> +	      doc/agent-api.txt \
> +	      doc/attribute-api.txt \
> +	      doc/audio-api.txt \
> +	      doc/control-api.txt \
> +	      doc/device-api.txt \
> +	      doc/input-api.txt \
> +	      doc/manager-api.txt \
> +	      doc/network-api.txt \
> +	      doc/serial-api.txt \
> +	      doc/service-api.txt \

I prefer actually to not to do this and keep them in a bit more logical
order. The manager is the initial one, followed by adapter etc.

Regards

Marcel



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

* Re: [PATCH 2/2] add three missing api documents to EXTRA_DIST
  2010-08-06 14:18 ` [PATCH 2/2] add three missing api documents to EXTRA_DIST Uwe Kleine-König
@ 2010-08-11 17:38   ` Marcel Holtmann
  2010-08-11 18:46     ` [PATCH] Add hfp-api.txt " Uwe Kleine-König
  0 siblings, 1 reply; 6+ messages in thread
From: Marcel Holtmann @ 2010-08-11 17:38 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: linux-bluetooth

Hi Uwe,

> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
> Hello,
> 
> there are still a few files in bluez.git/doc that are not listed in EXTRA_DIST:
> 
>  - bluez-docs.xml
>  - gtk-doc.make
>  - version.xml.in

they are not suppose to be there. They are leftovers and might be should
removed since we don't really do gtk-doc generation anymore.

> I didn't know if I should add these, too, so I just point that out.
> 
> Best regards
> Uwe
> 
>  Makefile.am |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/Makefile.am b/Makefile.am
> index 4bb82fe..7007026 100644
> --- a/Makefile.am
> +++ b/Makefile.am
> @@ -316,9 +316,12 @@ EXTRA_DIST += \
>  	      doc/audio-api.txt \
>  	      doc/control-api.txt \
>  	      doc/device-api.txt \
> +	      doc/health-api.txt \
> +	      doc/hfp-api.txt \
>  	      doc/input-api.txt \
>  	      doc/manager-api.txt \
>  	      doc/network-api.txt \
> +	      doc/node-api.txt \
>  	      doc/serial-api.txt \
>  	      doc/service-api.txt \

please send a patch that just adds hfp-api.txt to EXTRA_DIST.

The node-api.txt has never been implemented and might become obsolete
soon. So that should not be in the distribution.

The health-api.txt will come soon, but until we merged the code for it,
I prefer not adding it into the distribution.

Regards

Marcel



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

* [PATCH] Add hfp-api.txt to EXTRA_DIST
  2010-08-11 17:38   ` Marcel Holtmann
@ 2010-08-11 18:46     ` Uwe Kleine-König
  2010-08-11 18:55       ` Marcel Holtmann
  0 siblings, 1 reply; 6+ messages in thread
From: Uwe Kleine-König @ 2010-08-11 18:46 UTC (permalink / raw)
  To: linux-bluetooth

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
 Makefile.am |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index aa95ed7..83a90c9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -332,7 +332,8 @@ EXTRA_DIST += doc/manager-api.txt \
 		doc/adapter-api.txt doc/device-api.txt \
 		doc/service-api.txt doc/agent-api.txt doc/attribute-api.txt \
 		doc/serial-api.txt doc/network-api.txt \
-		doc/input-api.txt doc/audio-api.txt doc/control-api.txt
+		doc/input-api.txt doc/audio-api.txt doc/control-api.txt \
+		doc/hfp-api.txt
 
 AM_YFLAGS = -d
 
-- 
1.7.1


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

* Re: [PATCH] Add hfp-api.txt to EXTRA_DIST
  2010-08-11 18:46     ` [PATCH] Add hfp-api.txt " Uwe Kleine-König
@ 2010-08-11 18:55       ` Marcel Holtmann
  0 siblings, 0 replies; 6+ messages in thread
From: Marcel Holtmann @ 2010-08-11 18:55 UTC (permalink / raw)
  To: Uwe Kleine-König; +Cc: linux-bluetooth

Hi Uwe,

> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
>  Makefile.am |    3 ++-
>  1 files changed, 2 insertions(+), 1 deletions(-)

patch has been applied, but in the future stop using signed-off-by
lines. We are not using them. That is more for kernel patches.

Regards

Marcel



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

end of thread, other threads:[~2010-08-11 18:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-06 14:18 [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Uwe Kleine-König
2010-08-06 14:18 ` [PATCH 2/2] add three missing api documents to EXTRA_DIST Uwe Kleine-König
2010-08-11 17:38   ` Marcel Holtmann
2010-08-11 18:46     ` [PATCH] Add hfp-api.txt " Uwe Kleine-König
2010-08-11 18:55       ` Marcel Holtmann
2010-08-11 17:35 ` [PATCH 1/2] list api docs alphabetically and one per line in EXTRA_DIST Marcel Holtmann

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