All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] builddeb: generate a changes file from the build
@ 2015-05-14 12:35 Yves-Alexis Perez
  2015-05-16  9:43 ` Yves-Alexis Perez
  2015-05-28  9:50 ` Riku Voipio
  0 siblings, 2 replies; 4+ messages in thread
From: Yves-Alexis Perez @ 2015-05-14 12:35 UTC (permalink / raw)
  To: Michal Marek, linux-kbuild, linux-kernel; +Cc: Yves-Alexis Perez

A changes file (also called Debian upload control file) contains
information about binary packages, including the changelog entry, the
maintainer, the package list and the checksums.

It can be used by various Debian tools like dput and dcmd to execute
action on all the build packages at once, for example uploading the
packages to an dedicated Debian repository.
---
 scripts/package/builddeb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 88dbf23..46c2838 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -383,4 +383,7 @@ EOF
 	create_package "$dbg_packagename" "$dbg_dir"
 fi
 
+# Generate a change file
+(cd $KBUILD_OUTPUT; dpkg-genchanges -b > ../linux_${packageversion}_${debarch}.changes)
+
 exit 0
-- 
2.1.4


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

end of thread, other threads:[~2015-05-28 11:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-14 12:35 [PATCH] builddeb: generate a changes file from the build Yves-Alexis Perez
2015-05-16  9:43 ` Yves-Alexis Perez
2015-05-28  9:50 ` Riku Voipio
2015-05-28 11:26   ` Yves-Alexis Perez

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.