1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
$ cd /path/to/debhello-1.7
$ debuild
dpkg-buildpackage -us -uc -ui -i
dpkg-buildpackage: info: source package debhello
dpkg-buildpackage: info: source version 1.7-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Osamu Aoki <osamu@debian.org>
dpkg-source -i --before-build .
dpkg-buildpackage: info: host architecture amd64
debian/rules clean
dh clean
dh_clean
rm -f debian/debhelper-build-stamp
rm -rf debian/.debhelper/
rm -f -- debian/debhello.substvars debian/files
rm -fr -- debian/debhello/ debian/tmp/
find . \( \( \
\( -path .\*/.git -o -path .\*/.svn -o -path .\*/.bzr -o -pat...
\( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE ...
-o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
-o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
-o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \
\) -exec rm -f {} + \) -o \
\( -type d -a \( -name autom4te.cache -o -name __pycache__ \)...
dpkg-source -i -b .
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building debhello using existing ./debhello_1.7.orig.tar.g...
dpkg-source: info: building debhello in debhello_1.7-1.debian.tar.xz
dpkg-source: info: building debhello in debhello_1.7-1.dsc
debian/rules binary
dh binary
dh_update_autotools_config
dh_autoreconf
debian/rules override_dh_auto_configure
make[1]: Entering directory '/path/to/debhello-1.7'
dh_auto_configure -- -DWITH-MATH=1
cd obj-x86_64-linux-gnu && DEB_PYTHON_INSTALL_LAYOUT=deb PKG_CONFIG=/...
CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required):
Compatibility with CMake < 3.10 will be removed from a future version of
CMake.
Update the VERSION argument <min> value. Or, use the <min>...<max> syntax
to tell CMake that the project requires at least <min> but has been updated...
to work with policies introduced by <max> or earlier.
-- The C compiler identification is GNU 14.2.0
-- The CXX compiler identification is GNU 14.2.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done (0.7s)
-- Generating done (0.0s)
CMake Warning:
Manually-specified variables were not used by the project:
CMAKE_EXPORT_NO_PACKAGE_REGISTRY
CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY
CMAKE_FIND_USE_PACKAGE_REGISTRY
CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_SYSCONFDIR
FETCHCONTENT_FULLY_DISCONNECTED
WITH-MATH
-- Build files have been written to: /path/to/debhello-1.7/obj-x86_64-linux-g...
make[1]: Leaving directory '/path/to/debhello-1.7'
dh_auto_build
cd obj-x86_64-linux-gnu && make -j12 "INSTALL=install --strip-program...
make[1]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
/usr/bin/cmake -S/path/to/debhello-1.7 -B/path/to/debhello-1.7/obj-x86_64-lin...
/usr/bin/cmake -E cmake_progress_start /path/to/debhello-1.7/obj-x86_64-linux...
make -f CMakeFiles/Makefile2 all
make[2]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
make -f src/CMakeFiles/hello.dir/build.make src/CMakeFiles/hello.dir/depend
make[3]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
cd /path/to/debhello-1.7/obj-x86_64-linux-gnu && /usr/bin/cmake -E cmake_depe...
make[3]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
make -f src/CMakeFiles/hello.dir/build.make src/CMakeFiles/hello.dir/build
make[3]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
[ 50%] Building C object src/CMakeFiles/hello.dir/hello.c.o
cd /path/to/debhello-1.7/obj-x86_64-linux-gnu/src && /usr/bin/cc -DHAVE_CONFI...
[100%] Linking C executable hello
cd /path/to/debhello-1.7/obj-x86_64-linux-gnu/src && /usr/bin/cmake -E cmake_...
/usr/bin/cc -g -O2 -Werror=implicit-function-declaration -ffile-prefix-map=/p...
make[3]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
[100%] Built target hello
make[2]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
/usr/bin/cmake -E cmake_progress_start /path/to/debhello-1.7/obj-x86_64-linux...
make[1]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
dh_auto_test
rm -fr -- /tmp/dh-xdg-rundir-MRYObVoA
create-stamp debian/debhelper-build-stamp
dh_prep
rm -f -- debian/debhello.substvars
rm -fr -- debian/.debhelper/generated/debhello/ debian/debhello/ debi...
dh_auto_install --destdir=debian/debhello/
install -m0755 -d /path/to/debhello-1.7/debian/debhello
cd obj-x86_64-linux-gnu && make -j12 install DESTDIR=/path/to/debhell...
make[1]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
/usr/bin/cmake -S/path/to/debhello-1.7 -B/path/to/debhello-1.7/obj-x86_64-lin...
make -f CMakeFiles/Makefile2 preinstall
make[2]: Entering directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
make[2]: Nothing to be done for 'preinstall'.
make[2]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
Install the project...
/usr/bin/cmake -P cmake_install.cmake
-- Install configuration: "None"
-- Installing: /path/to/debhello-1.7/debian/debhello/usr/bin/hello
-- Installing: /path/to/debhello-1.7/debian/debhello/usr/share/man/man1/hello...
make[1]: Leaving directory '/path/to/debhello-1.7/obj-x86_64-linux-gnu'
dh_installdocs
install -m0755 -d debian/debhello/usr/share/doc/debhello
install -p -m0644 debian/README.Debian debian/debhello/usr/share/doc/...
install -p -m0644 debian/copyright debian/debhello/usr/share/doc/debh...
dh_installchangelogs
install -m0755 -d debian/debhello/usr/share/doc/debhello
install -p -m0644 debian/.debhelper/generated/debhello/dh_installchan...
dh_installman
man-recode --to-code UTF-8 --suffix .dh-new debian/debhello/usr/share...
mv debian/debhello/usr/share/man/man1/hello.1.dh-new debian/debhello/...
chmod 0644 -- debian/debhello/usr/share/man/man1/hello.1
dh_perl
dh_link
dh_strip_nondeterminism
dh_compress
cd debian/debhello
chmod a-x usr/share/doc/debhello/changelog.Debian usr/share/man/man1/...
gzip -9nf usr/share/doc/debhello/changelog.Debian usr/share/man/man1/...
cd '/path/to/debhello-1.7'
dh_fixperms
find debian/debhello ! -type l -a -true -a -true -print0 2>/dev/null ...
find debian/debhello/usr/share/doc -type f -a -true -a ! -regex 'debi...
find debian/debhello/usr/share/doc -type d -a -true -a -true -print0 ...
find debian/debhello/usr/share/man -type f -a -true -a -true -print0 ...
find debian/debhello -type f \( -name '*.so.*' -o -name '*.so' -o -na...
find debian/debhello/usr/bin -type f -a -true -a -true -print0 2>/dev...
dh_missing
dh_dwz -a
dwz -- debian/debhello/usr/bin/hello
dh_strip -a
install -m0755 -d debian/.debhelper/debhello/dbgsym-root/usr/lib/debu...
objcopy --only-keep-debug --compress-debug-sections debian/debhello/u...
chmod 0644 -- debian/.debhelper/debhello/dbgsym-root/usr/lib/debug/.b...
strip --remove-section=.comment --remove-section=.note debian/debhell...
objcopy --add-gnu-debuglink debian/.debhelper/debhello/dbgsym-root/us...
install -m0755 -d debian/.debhelper/debhello/dbgsym-root/usr/share/do...
ln -s debhello debian/.debhelper/debhello/dbgsym-root/usr/share/doc/d...
install -m0755 -d debian/.debhelper/debhello
dh_makeshlibs -a
rm -f debian/debhello/DEBIAN/shlibs
dh_shlibdeps -a
install -m0755 -d debian/debhello/DEBIAN
dpkg-shlibdeps -Tdebian/debhello.substvars debian/debhello/usr/bin/he...
dh_installdeb
install -m0755 -d debian/debhello/DEBIAN
dh_gencontrol
install -m0755 -d debian/debhello/DEBIAN
echo misc:Depends= >> debian/debhello.substvars
echo misc:Pre-Depends= >> debian/debhello.substvars
install -m0755 -d debian/.debhelper/debhello/dbgsym-root/DEBIAN
dpkg-gencontrol -pdebhello -ldebian/changelog -Tdebian/debhello.subst...
chmod 0644 -- debian/.debhelper/debhello/dbgsym-root/DEBIAN/control
dpkg-gencontrol -pdebhello -ldebian/changelog -Tdebian/debhello.subst...
chmod 0644 -- debian/debhello/DEBIAN/control
dh_md5sums
install -m0755 -d debian/debhello/DEBIAN
cd debian/debhello >/dev/null && xargs -r0 md5sum | perl -pe 'if (s@^...
chmod 0644 -- debian/debhello/DEBIAN/md5sums
install -m0755 -d debian/.debhelper/debhello/dbgsym-root/DEBIAN
cd debian/.debhelper/debhello/dbgsym-root >/dev/null && xargs -r0 md5...
chmod 0644 -- debian/.debhelper/debhello/dbgsym-root/DEBIAN/md5sums
dh_builddeb
dpkg-deb --root-owner-group --build debian/.debhelper/debhello/dbgsym...
dpkg-deb --root-owner-group --build debian/debhello ..
dpkg-deb: building package 'debhello-dbgsym' in '../debhello-dbgsym_1.7-1_amd...
dpkg-deb: building package 'debhello' in '../debhello_1.7-1_amd64.deb'.
dpkg-genbuildinfo -O../debhello_1.7-1_amd64.buildinfo
dpkg-genchanges -O../debhello_1.7-1_amd64.changes
dpkg-genchanges: info: including full source code in upload
dpkg-source -i --after-build .
dpkg-buildpackage: info: full upload (original source is included)
Now running lintian -i -I --show-overrides debhello_1.7-1_amd64.changes ...
N:
E: debhello source: empty-debian-tests-control [debian/tests/control]
N:
N:
N: The debian/tests/control is empty when any comments are removed.
N:
N: Please refer to
N: https://salsa.debian.org/ci-team/autopkgtest/tree/master/doc/README.pack...
N: for details.
N:
N: Visibility: error
N: Show-Always: no
N: Check: testsuite
N:
N:
W: debhello: readme-debian-contains-debmake-template [usr/share/doc/debhello/...
N:
N: The README.Debian file installed by this package contains one of the
N: template phrases from the README.Debian provided by deb-make or dh_make:...
N:
N: Comments regarding the package
N: So far nothing to say
N: <possible notes regarding this package - if none, delete this file>
N: Automatically generated by debmake
N:
N: If there is real information in the file, please delete any generic
N: template phrases. If there is nothing to say in the file, it is best
N: removed.
N:
N: Visibility: warning
N: Show-Always: no
N: Check: debian/readme
N:
N:
W: debhello source: timewarp-standards-version (2021-06-27 < 2022-12-17)
N:
N: The source package refers to a Standards-Version that was released after...
N: the date of the most recent debian/changelog entry. Perhaps you forgot t...
N: update the timestamp in debian/changelog before building the package?
N:
N: Visibility: warning
N: Show-Always: no
N: Check: fields/standards-version
N:
N:
I: debhello source: upstream-metadata-missing-bug-tracking [debian/upstream/m...
N:
N: The DEP 12 metadata file does not specify any upstream bug tracking
N: information (ie. the Bug-Database or Bug-Submit fields are missing).
N:
N: The upstream metadata can be found in the source package in the file
N: debian/upstream/metadata.
N:
N: Please refer to https://dep-team.pages.debian.net/deps/dep12/ for detail...
N:
N: Visibility: info
N: Show-Always: no
N: Check: debian/upstream/metadata
N:
N:
I: debhello source: upstream-metadata-missing-repository [debian/upstream/met...
N:
N: The DEP 12 metadata file does not specify the location of upstream's
N: version control repository (ie. the Repository and Repository-Browse
N: fields are missing).
N:
N: The upstream metadata can be found in the source package in the file
N: debian/upstream/metadata.
N:
N: Please refer to https://dep-team.pages.debian.net/deps/dep12/ for detail...
N:
N: Visibility: info
N: Show-Always: no
N: Check: debian/upstream/metadata
N:
Finished running lintian.
|