Update librte-pmd-bond1.symbols with new symbol.
[deb_dpdk.git] / debian / README.source
1 How to build the package - for CI systems, etc
2
3 1 - install all the build-dependencies as listed in the debian/control file.
4     From the repo top-level directory:
5
6 apt-get install `dpkg-checkbuilddeps |& sed "s/.*://g" |& sed "s/(...[0-9]*)//g"`
7
8 2 - run debuild (the flags will avoid signing the built packages):
9     From the repo top-level directory:
10
11 debuild -uc -us
12
13 ***************
14
15 quilt patches format
16
17 Note that we use the dquilt format for patches as outlined on Debian's wiki:
18 https://www.debian.org/doc/manuals/maint-guide/modify.en.html#quiltrc
19
20 Please consider using the same format to avoid excessive churn when adding or
21 refreshing patches.
22
23 Add the following to your ~/.bashrc (or equivalent):
24
25 alias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg"
26 complete -F _quilt_completion $_quilt_complete_opt dquilt
27
28 And then create a new ~/.quiltrc-dpkg file with content:
29
30 d=. ; while [ ! -d $d/debian -a `readlink -e $d` != / ]; do d=$d/..; done
31 if [ -d $d/debian ] && [ -z $QUILT_PATCHES ]; then
32     # if in Debian packaging tree with unset $QUILT_PATCHES
33     QUILT_PATCHES="debian/patches"
34     QUILT_PATCH_OPTS="--reject-format=unified"
35     QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto"
36     QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
37     QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33"
38     if ! [ -d $d/debian/patches ]; then mkdir $d/debian/patches; fi
39 fi
40
41 Open a new terminal or souce ~/.bashrc, and then you will be able to use
42 dquilt.