All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v6] builddeb: Try to determine distribution
@ 2015-01-03  9:50 Sedat Dilek
  2015-01-06 11:39 ` Sedat Dilek
  0 siblings, 1 reply; 6+ messages in thread
From: Sedat Dilek @ 2015-01-03  9:50 UTC (permalink / raw)
  Cc: Sedat Dilek, Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, Michal Marek, linux-kbuild

lsb_release command is a good choice to determine the distribution
name for the changelog file in the generated Debian packages [1].
Its installation is no precondition.
In Debian it is still not essential or build-essential.

Ben gave some helpful informations and detailed explanations in [2].
There he also suggested to have an option to explicitly set the
distribution name (see $KDEB_CHANGELOG_DIST variable).

Embedded the improvement as suggested by Thorsten (see [3]):

"This is suboptimal: if KDEB_CHANGELOG_DIST is defined,
lsb_release is not necessary. The following snippet
also omits using its output if it fails but still
produces any:"

Dealing with this issue I learned about "The Colon in the Shell." and
possible pitfalls in this area (see [4,5]). Furthermore, refreshed my
knowledge about redirecting outputs with the echo command (see [5]).
Special thanks to Thorsten, I enjoyed the IRC session with you.

Cooked together the snippets of Ben and Thorsten (see [2,3]).
Tested against Linux v3.19-rc2.

Thanks goes to Alexander, Ben, maximilian and Thorsten for the very
vital help.

[1] https://lkml.org/lkml/2012/4/23/516
[2] http://marc.info/?l=linux-kbuild&m=142022188322321&w=2
[3] http://marc.info/?l=linux-kbuild&m=142023476825460&w=2
[4] http://blog.brlink.eu/index.html#i70
[5] https://www.mirbsd.org/permalinks/wlog-10_e20141209-tg.htm
[6] http://stackoverflow.com/questions/23489934/echo-2-some-text-what-does-it-mean-in-shell-scripting

CC: Ben Hutchings <ben@decadent.org.uk>
CC: maximilian attems <max@stro.at>
CC: Thorsten Glaser <tg@mirbsd.org>
CC: Alexander Wirt <formorer@debian.org>
CC: Michal Marek <mmarek@suse.cz>
CC: linux-kbuild@vger.kernel.org
Suggested-by: Ben Hutchings <ben@decadent.org.uk>
Suggested-by: Thorsten Glaser <tg@mirbsd.org>
Reviewed-by: Ben Hutchings <ben@decadent.org.uk>
Acked-by: maximilian attems <max@stro.at>
[ dileks: Reviewed his suggested diff in RFC v4 ]
Reviewed-by: Thorsten Glaser <tg@debian.org>
Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
---
v6: Based on RFC v5 with added reviews and acks
v5: Improve commit-message and fix Thorsten's email-address
v4: Embed improvements suggested by Thorsten
v3: Massaged the commit-message
v2: Suppress error messages when lsb_release is not installed.
    (Thanks maximilian and Ben.)

 scripts/package/builddeb | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 5972624..f631c77 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -217,9 +217,20 @@ else
 fi
 maintainer="$name <$email>"
 
+# Try to determine distribution
+if [ -n "$KDEB_CHANGELOG_DIST" ]; then
+        distribution=$KDEB_CHANGELOG_DIST
+elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ]; then
+        : # nothing to do in this case
+else
+        distribution="unstable"
+        echo >&2 "Using default distribution of 'unstable' in the changelog"
+        echo >&2 "Install lsb-release or set \$KDEB_CHANGELOG_DIST explicitly"
+fi
+
 # Generate a simple changelog template
 cat <<EOF > debian/changelog
-linux-upstream ($packageversion) unstable; urgency=low
+linux-upstream ($packageversion) $distribution; urgency=low
 
   * Custom built Linux kernel.
 
-- 
2.2.1


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

* Re: [PATCH v6] builddeb: Try to determine distribution
  2015-01-03  9:50 [PATCH v6] builddeb: Try to determine distribution Sedat Dilek
@ 2015-01-06 11:39 ` Sedat Dilek
  2015-01-06 13:36   ` Sedat Dilek
  2015-01-06 19:49   ` Michal Marek
  0 siblings, 2 replies; 6+ messages in thread
From: Sedat Dilek @ 2015-01-06 11:39 UTC (permalink / raw)
  To: Sedat Dilek
  Cc: Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, Michal Marek, linux-kbuild

On Sat, Jan 3, 2015 at 10:50 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> lsb_release command is a good choice to determine the distribution
> name for the changelog file in the generated Debian packages [1].
> Its installation is no precondition.
> In Debian it is still not essential or build-essential.
>
> Ben gave some helpful informations and detailed explanations in [2].
> There he also suggested to have an option to explicitly set the
> distribution name (see $KDEB_CHANGELOG_DIST variable).
>
> Embedded the improvement as suggested by Thorsten (see [3]):
>
> "This is suboptimal: if KDEB_CHANGELOG_DIST is defined,
> lsb_release is not necessary. The following snippet
> also omits using its output if it fails but still
> produces any:"
>
> Dealing with this issue I learned about "The Colon in the Shell." and
> possible pitfalls in this area (see [4,5]). Furthermore, refreshed my
> knowledge about redirecting outputs with the echo command (see [5]).
> Special thanks to Thorsten, I enjoyed the IRC session with you.
>
> Cooked together the snippets of Ben and Thorsten (see [2,3]).
> Tested against Linux v3.19-rc2.
>
> Thanks goes to Alexander, Ben, maximilian and Thorsten for the very
> vital help.
>
> [1] https://lkml.org/lkml/2012/4/23/516
> [2] http://marc.info/?l=linux-kbuild&m=142022188322321&w=2
> [3] http://marc.info/?l=linux-kbuild&m=142023476825460&w=2
> [4] http://blog.brlink.eu/index.html#i70
> [5] https://www.mirbsd.org/permalinks/wlog-10_e20141209-tg.htm
> [6] http://stackoverflow.com/questions/23489934/echo-2-some-text-what-does-it-mean-in-shell-scripting
>
> CC: Ben Hutchings <ben@decadent.org.uk>
> CC: maximilian attems <max@stro.at>
> CC: Thorsten Glaser <tg@mirbsd.org>
> CC: Alexander Wirt <formorer@debian.org>
> CC: Michal Marek <mmarek@suse.cz>
> CC: linux-kbuild@vger.kernel.org
> Suggested-by: Ben Hutchings <ben@decadent.org.uk>
> Suggested-by: Thorsten Glaser <tg@mirbsd.org>
> Reviewed-by: Ben Hutchings <ben@decadent.org.uk>
> Acked-by: maximilian attems <max@stro.at>
> [ dileks: Reviewed his suggested diff in RFC v4 ]
> Reviewed-by: Thorsten Glaser <tg@debian.org>
> Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
> ---
> v6: Based on RFC v5 with added reviews and acks
> v5: Improve commit-message and fix Thorsten's email-address
> v4: Embed improvements suggested by Thorsten
> v3: Massaged the commit-message
> v2: Suppress error messages when lsb_release is not installed.
>     (Thanks maximilian and Ben.)
>
>  scripts/package/builddeb | 13 ++++++++++++-
>  1 file changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
> index 5972624..f631c77 100755
> --- a/scripts/package/builddeb
> +++ b/scripts/package/builddeb
> @@ -217,9 +217,20 @@ else
>  fi
>  maintainer="$name <$email>"
>
> +# Try to determine distribution
> +if [ -n "$KDEB_CHANGELOG_DIST" ]; then
> +        distribution=$KDEB_CHANGELOG_DIST
> +elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ]; then
> +        : # nothing to do in this case
> +else
> +        distribution="unstable"
> +        echo >&2 "Using default distribution of 'unstable' in the changelog"
> +        echo >&2 "Install lsb-release or set \$KDEB_CHANGELOG_DIST explicitly"
> +fi
> +
>  # Generate a simple changelog template
>  cat <<EOF > debian/changelog
> -linux-upstream ($packageversion) unstable; urgency=low
> +linux-upstream ($packageversion) $distribution; urgency=low
>
>    * Custom built Linux kernel.
>
> --
> 2.2.1
>

According to your explanations about your development workflow and Git
trees this can go now to kbuild.git#misc.
Or is something wrong with that one (commit message, missing credits, etc.)?

Thanks.

- Sedat -

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

* Re: [PATCH v6] builddeb: Try to determine distribution
  2015-01-06 11:39 ` Sedat Dilek
@ 2015-01-06 13:36   ` Sedat Dilek
  2015-01-07  9:47     ` Michal Marek
  2015-01-06 19:49   ` Michal Marek
  1 sibling, 1 reply; 6+ messages in thread
From: Sedat Dilek @ 2015-01-06 13:36 UTC (permalink / raw)
  To: Sedat Dilek
  Cc: Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, Michal Marek, linux-kbuild

On Tue, Jan 6, 2015 at 12:39 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
> On Sat, Jan 3, 2015 at 10:50 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> lsb_release command is a good choice to determine the distribution
>> name for the changelog file in the generated Debian packages [1].
>> Its installation is no precondition.
>> In Debian it is still not essential or build-essential.
>>
>> Ben gave some helpful informations and detailed explanations in [2].
>> There he also suggested to have an option to explicitly set the
>> distribution name (see $KDEB_CHANGELOG_DIST variable).
>>
>> Embedded the improvement as suggested by Thorsten (see [3]):
>>
>> "This is suboptimal: if KDEB_CHANGELOG_DIST is defined,
>> lsb_release is not necessary. The following snippet
>> also omits using its output if it fails but still
>> produces any:"
>>
>> Dealing with this issue I learned about "The Colon in the Shell." and
>> possible pitfalls in this area (see [4,5]). Furthermore, refreshed my
>> knowledge about redirecting outputs with the echo command (see [5]).
>> Special thanks to Thorsten, I enjoyed the IRC session with you.
>>
>> Cooked together the snippets of Ben and Thorsten (see [2,3]).
>> Tested against Linux v3.19-rc2.
>>
>> Thanks goes to Alexander, Ben, maximilian and Thorsten for the very
>> vital help.
>>
>> [1] https://lkml.org/lkml/2012/4/23/516
>> [2] http://marc.info/?l=linux-kbuild&m=142022188322321&w=2
>> [3] http://marc.info/?l=linux-kbuild&m=142023476825460&w=2
>> [4] http://blog.brlink.eu/index.html#i70
>> [5] https://www.mirbsd.org/permalinks/wlog-10_e20141209-tg.htm
>> [6] http://stackoverflow.com/questions/23489934/echo-2-some-text-what-does-it-mean-in-shell-scripting
>>
>> CC: Ben Hutchings <ben@decadent.org.uk>
>> CC: maximilian attems <max@stro.at>
>> CC: Thorsten Glaser <tg@mirbsd.org>
>> CC: Alexander Wirt <formorer@debian.org>
>> CC: Michal Marek <mmarek@suse.cz>
>> CC: linux-kbuild@vger.kernel.org
>> Suggested-by: Ben Hutchings <ben@decadent.org.uk>
>> Suggested-by: Thorsten Glaser <tg@mirbsd.org>
>> Reviewed-by: Ben Hutchings <ben@decadent.org.uk>
>> Acked-by: maximilian attems <max@stro.at>
>> [ dileks: Reviewed his suggested diff in RFC v4 ]
>> Reviewed-by: Thorsten Glaser <tg@debian.org>
>> Signed-off-by: Sedat Dilek <sedat.dilek@gmail.com>
>> ---
>> v6: Based on RFC v5 with added reviews and acks
>> v5: Improve commit-message and fix Thorsten's email-address
>> v4: Embed improvements suggested by Thorsten
>> v3: Massaged the commit-message
>> v2: Suppress error messages when lsb_release is not installed.
>>     (Thanks maximilian and Ben.)
>>
>>  scripts/package/builddeb | 13 ++++++++++++-
>>  1 file changed, 12 insertions(+), 1 deletion(-)
>>
>> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
>> index 5972624..f631c77 100755
>> --- a/scripts/package/builddeb
>> +++ b/scripts/package/builddeb
>> @@ -217,9 +217,20 @@ else
>>  fi
>>  maintainer="$name <$email>"
>>
>> +# Try to determine distribution
>> +if [ -n "$KDEB_CHANGELOG_DIST" ]; then
>> +        distribution=$KDEB_CHANGELOG_DIST
>> +elif distribution=$(lsb_release -cs 2>/dev/null) && [ -n "$distribution" ]; then
>> +        : # nothing to do in this case
>> +else
>> +        distribution="unstable"
>> +        echo >&2 "Using default distribution of 'unstable' in the changelog"
>> +        echo >&2 "Install lsb-release or set \$KDEB_CHANGELOG_DIST explicitly"
>> +fi
>> +
>>  # Generate a simple changelog template
>>  cat <<EOF > debian/changelog
>> -linux-upstream ($packageversion) unstable; urgency=low
>> +linux-upstream ($packageversion) $distribution; urgency=low
>>
>>    * Custom built Linux kernel.
>>
>> --
>> 2.2.1
>>
>
> According to your explanations about your development workflow and Git
> trees this can go now to kbuild.git#misc.
> Or is something wrong with that one (commit message, missing credits, etc.)?
>
> Thanks.
>

Please, push v7.

Thanks.

- Sedat -

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

* Re: [PATCH v6] builddeb: Try to determine distribution
  2015-01-06 11:39 ` Sedat Dilek
  2015-01-06 13:36   ` Sedat Dilek
@ 2015-01-06 19:49   ` Michal Marek
  2015-01-07  6:11     ` Sedat Dilek
  1 sibling, 1 reply; 6+ messages in thread
From: Michal Marek @ 2015-01-06 19:49 UTC (permalink / raw)
  To: sedat.dilek
  Cc: Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, linux-kbuild

Dne 6.1.2015 v 12:39 Sedat Dilek napsal(a):
> On Sat, Jan 3, 2015 at 10:50 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> lsb_release command is a good choice to determine the distribution
>> name for the changelog file in the generated Debian packages [1].
>> Its installation is no precondition.
>> In Debian it is still not essential or build-essential.
[...]
> According to your explanations about your development workflow and Git
> trees this can go now to kbuild.git#misc.

I applied it to kbuild.git#misc now.

Michal


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

* Re: [PATCH v6] builddeb: Try to determine distribution
  2015-01-06 19:49   ` Michal Marek
@ 2015-01-07  6:11     ` Sedat Dilek
  0 siblings, 0 replies; 6+ messages in thread
From: Sedat Dilek @ 2015-01-07  6:11 UTC (permalink / raw)
  To: Michal Marek
  Cc: Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, linux-kbuild

On Tue, Jan 6, 2015 at 8:49 PM, Michal Marek <mmarek@suse.cz> wrote:
> Dne 6.1.2015 v 12:39 Sedat Dilek napsal(a):
>> On Sat, Jan 3, 2015 at 10:50 AM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>>> lsb_release command is a good choice to determine the distribution
>>> name for the changelog file in the generated Debian packages [1].
>>> Its installation is no precondition.
>>> In Debian it is still not essential or build-essential.
> [...]
>> According to your explanations about your development workflow and Git
>> trees this can go now to kbuild.git#misc.
>
> I applied it to kbuild.git#misc now.
>

Thanks.

- Sedat -

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

* Re: [PATCH v6] builddeb: Try to determine distribution
  2015-01-06 13:36   ` Sedat Dilek
@ 2015-01-07  9:47     ` Michal Marek
  0 siblings, 0 replies; 6+ messages in thread
From: Michal Marek @ 2015-01-07  9:47 UTC (permalink / raw)
  To: sedat.dilek
  Cc: Ben Hutchings, maximilian attems, Thorsten Glaser,
	Alexander Wirt, linux-kbuild

On 2015-01-06 14:36, Sedat Dilek wrote:
> On Tue, Jan 6, 2015 at 12:39 PM, Sedat Dilek <sedat.dilek@gmail.com> wrote:
>> According to your explanations about your development workflow and Git
>> trees this can go now to kbuild.git#misc.
>> Or is something wrong with that one (commit message, missing credits, etc.)?
>>
>> Thanks.
>>
> 
> Please, push v7.

Sorry, too late. Our mailserver had some digestive problems yesterday
and needed several hours to process incomming emails ;). So I merged v6
without knowing that there was v7 in the queue.

Michal

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

end of thread, other threads:[~2015-01-07  9:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-03  9:50 [PATCH v6] builddeb: Try to determine distribution Sedat Dilek
2015-01-06 11:39 ` Sedat Dilek
2015-01-06 13:36   ` Sedat Dilek
2015-01-07  9:47     ` Michal Marek
2015-01-06 19:49   ` Michal Marek
2015-01-07  6:11     ` Sedat Dilek

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.