All of lore.kernel.org
 help / color / mirror / Atom feed
* [BlueZ PATCH 1/2] gitignore: Add generated files to the ignore list
@ 2021-05-05 18:44 Tedd Ho-Jeong An
  2021-05-05 18:44 ` [BlueZ PATCH 2/2] build: Add generated manpages to distribute list Tedd Ho-Jeong An
  2021-05-05 19:12 ` [BlueZ,1/2] gitignore: Add generated files to the ignore list bluez.test.bot
  0 siblings, 2 replies; 4+ messages in thread
From: Tedd Ho-Jeong An @ 2021-05-05 18:44 UTC (permalink / raw)
  To: linux-bluetooth

From: Tedd Ho-Jeong An <tedd.an@intel.com>

This patch adds generated files like manpages and binaries to the
ignore list so it won't show with 'git status'.
---
 .gitignore | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index f4fb5db28..9c8393a81 100644
--- a/.gitignore
+++ b/.gitignore
@@ -47,23 +47,33 @@ tools/avinfo
 tools/bccmd
 tools/hwdb
 tools/ciptool
+tools/ciptool.1
 tools/hciattach
+tools/hciattach.1
 tools/hciconfig
+tools/hciconfig.1
 tools/hcieventmask
 tools/hcisecfilter
 tools/hcitool
+tools/hcitool.1
 tools/hcidump
+tools/hcidump.1
 tools/hid2hci
+tools/hid2hci.1
 tools/rfcomm
+tools/rfcomm.1
 tools/l2ping
+tools/l2ping.1
 tools/l2test
 tools/cltest
 tools/rctest
+tools/rctest.1
 tools/scotest
 tools/amptest
 tools/oobtest
 tools/advtest
 tools/sdptool
+tools/sdptool.1
 tools/avtest
 tools/bdaddr
 tools/bluemoon
@@ -116,6 +126,7 @@ tools/rfcomm-tester
 tools/bnep-tester
 tools/userchan-tester
 tools/btattach
+tools/btattach.1
 tools/btconfig
 tools/btmgmt
 tools/btsnoop
@@ -125,15 +136,18 @@ tools/btmon-logger
 tools/bluetooth-logger.service
 peripheral/btsensor
 monitor/btmon
+monitor/btmon.1
 emulator/btvirt
 emulator/b1ee
 emulator/hfp
 client/bluetoothctl
 tools/meshctl
 tools/mesh-cfgclient
+tools/mesh-cfgtest
 mesh/bluetooth-meshd
 
 src/bluetoothd.8
+src/bluetoothd.rst
 src/bluetooth.service
 mesh/bluetooth-mesh.service
 
@@ -157,8 +171,6 @@ unit/test-mesh-crypto
 unit/test-*.log
 unit/test-*.trs
 
-doc/btmon.1
-
 android/system-emulator
 android/bluetoothd
 android/avdtptest
-- 
2.26.3


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

* [BlueZ PATCH 2/2] build: Add generated manpages to distribute list
  2021-05-05 18:44 [BlueZ PATCH 1/2] gitignore: Add generated files to the ignore list Tedd Ho-Jeong An
@ 2021-05-05 18:44 ` Tedd Ho-Jeong An
  2021-05-05 19:12 ` [BlueZ,1/2] gitignore: Add generated files to the ignore list bluez.test.bot
  1 sibling, 0 replies; 4+ messages in thread
From: Tedd Ho-Jeong An @ 2021-05-05 18:44 UTC (permalink / raw)
  To: linux-bluetooth

From: Tedd Ho-Jeong An <tedd.an@intel.com>

This patch adds generated manpages to the distribution list.
---
 Makefile.am | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am
index 52e0e9ed8..42c1d0d9a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -594,7 +594,8 @@ if LIBRARY
 pkgconfig_DATA = lib/bluez.pc
 endif
 
-EXTRA_DIST += $(manual_pages:.1=.rst)
+EXTRA_DIST += $(manual_pages) $(patsubst %.1,%.rst, \
+				$(patsubst %.8,%.rst,$(manual_pages)))
 
 DISTCHECK_CONFIGURE_FLAGS = --disable-datafiles --enable-library \
 						--enable-health \
-- 
2.26.3


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

* RE: [BlueZ,1/2] gitignore: Add generated files to the ignore list
  2021-05-05 18:44 [BlueZ PATCH 1/2] gitignore: Add generated files to the ignore list Tedd Ho-Jeong An
  2021-05-05 18:44 ` [BlueZ PATCH 2/2] build: Add generated manpages to distribute list Tedd Ho-Jeong An
@ 2021-05-05 19:12 ` bluez.test.bot
  2021-05-06 22:13   ` Luiz Augusto von Dentz
  1 sibling, 1 reply; 4+ messages in thread
From: bluez.test.bot @ 2021-05-05 19:12 UTC (permalink / raw)
  To: linux-bluetooth, hj.tedd.an

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

This is automated email and please do not reply to this email!

Dear submitter,

Thank you for submitting the patches to the linux bluetooth mailing list.
This is a CI test results with your patch series:
PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=477477

---Test result---

Test Summary:
CheckPatch                    PASS      0.77 seconds
GitLint                       PASS      0.27 seconds
Prep - Setup ELL              PASS      52.92 seconds
Build - Prep                  PASS      0.15 seconds
Build - Configure             PASS      9.25 seconds
Build - Make                  PASS      231.00 seconds
Make Check                    PASS      9.59 seconds
Make Dist                     PASS      13.58 seconds
Make Dist - Configure         PASS      5.69 seconds
Make Dist - Make              PASS      92.58 seconds
Build w/ext ELL - Configure   PASS      9.32 seconds
Build w/ext ELL - Make        PASS      217.51 seconds

Details
##############################
Test: CheckPatch - PASS
Desc: Run checkpatch.pl script with rule in .checkpatch.conf

##############################
Test: GitLint - PASS
Desc: Run gitlint with rule in .gitlint

##############################
Test: Prep - Setup ELL - PASS
Desc: Clone, build, and install ELL

##############################
Test: Build - Prep - PASS
Desc: Prepare environment for build

##############################
Test: Build - Configure - PASS
Desc: Configure the BlueZ source tree

##############################
Test: Build - Make - PASS
Desc: Build the BlueZ source tree

##############################
Test: Make Check - PASS
Desc: Run 'make check'

##############################
Test: Make Dist - PASS
Desc: Run 'make dist' and build the distribution tarball

##############################
Test: Make Dist - Configure - PASS
Desc: Configure the source from distribution tarball

##############################
Test: Make Dist - Make - PASS
Desc: Build the source from distribution tarball

##############################
Test: Build w/ext ELL - Configure - PASS
Desc: Configure BlueZ source with '--enable-external-ell' configuration

##############################
Test: Build w/ext ELL - Make - PASS
Desc: Build BlueZ source with '--enable-external-ell' configuration



---
Regards,
Linux Bluetooth


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

* Re: [BlueZ,1/2] gitignore: Add generated files to the ignore list
  2021-05-05 19:12 ` [BlueZ,1/2] gitignore: Add generated files to the ignore list bluez.test.bot
@ 2021-05-06 22:13   ` Luiz Augusto von Dentz
  0 siblings, 0 replies; 4+ messages in thread
From: Luiz Augusto von Dentz @ 2021-05-06 22:13 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Tedd Ho-Jeong An

Hi Tedd,

On Wed, May 5, 2021 at 12:14 PM <bluez.test.bot@gmail.com> wrote:
>
> This is automated email and please do not reply to this email!
>
> Dear submitter,
>
> Thank you for submitting the patches to the linux bluetooth mailing list.
> This is a CI test results with your patch series:
> PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=477477
>
> ---Test result---
>
> Test Summary:
> CheckPatch                    PASS      0.77 seconds
> GitLint                       PASS      0.27 seconds
> Prep - Setup ELL              PASS      52.92 seconds
> Build - Prep                  PASS      0.15 seconds
> Build - Configure             PASS      9.25 seconds
> Build - Make                  PASS      231.00 seconds
> Make Check                    PASS      9.59 seconds
> Make Dist                     PASS      13.58 seconds
> Make Dist - Configure         PASS      5.69 seconds
> Make Dist - Make              PASS      92.58 seconds
> Build w/ext ELL - Configure   PASS      9.32 seconds
> Build w/ext ELL - Make        PASS      217.51 seconds
>
> Details
> ##############################
> Test: CheckPatch - PASS
> Desc: Run checkpatch.pl script with rule in .checkpatch.conf
>
> ##############################
> Test: GitLint - PASS
> Desc: Run gitlint with rule in .gitlint
>
> ##############################
> Test: Prep - Setup ELL - PASS
> Desc: Clone, build, and install ELL
>
> ##############################
> Test: Build - Prep - PASS
> Desc: Prepare environment for build
>
> ##############################
> Test: Build - Configure - PASS
> Desc: Configure the BlueZ source tree
>
> ##############################
> Test: Build - Make - PASS
> Desc: Build the BlueZ source tree
>
> ##############################
> Test: Make Check - PASS
> Desc: Run 'make check'
>
> ##############################
> Test: Make Dist - PASS
> Desc: Run 'make dist' and build the distribution tarball
>
> ##############################
> Test: Make Dist - Configure - PASS
> Desc: Configure the source from distribution tarball
>
> ##############################
> Test: Make Dist - Make - PASS
> Desc: Build the source from distribution tarball
>
> ##############################
> Test: Build w/ext ELL - Configure - PASS
> Desc: Configure BlueZ source with '--enable-external-ell' configuration
>
> ##############################
> Test: Build w/ext ELL - Make - PASS
> Desc: Build BlueZ source with '--enable-external-ell' configuration

Applied, thanks.

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

end of thread, other threads:[~2021-05-06 22:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-05 18:44 [BlueZ PATCH 1/2] gitignore: Add generated files to the ignore list Tedd Ho-Jeong An
2021-05-05 18:44 ` [BlueZ PATCH 2/2] build: Add generated manpages to distribute list Tedd Ho-Jeong An
2021-05-05 19:12 ` [BlueZ,1/2] gitignore: Add generated files to the ignore list bluez.test.bot
2021-05-06 22:13   ` Luiz Augusto von Dentz

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.