From: Jerzy Grzegorek <jerzy.m.grzegorek@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/1] utils/checkpackagelib: add function to check of the default package source variable
Date: Tue, 9 Jan 2018 13:51:11 +0100 [thread overview]
Message-ID: <67387bfc-e6f9-2cdb-a81b-a455bb9a0b21@gmail.com> (raw)
In-Reply-To: <5a5423b8d08a0_5241d7ae4c960fb@ultri3.mail>
Hi Ricardo,
> Hello,
>
> On Mon, Jan 08, 2018 at 08:48 PM, Thomas Petazzoni wrote:
>
>> Ricardo,
>>
>> Do you think you could have a look at the below patch touching
>> checkpackagelib ?
> Thomas,
> Thank you for adding me in CC.
>
>> It looks OK to me, so unless you complain in the next days, I'll apply.
> Don't apply just yet. See at the end.
>
> [snip]
>> On Mon, 18 Dec 2017 13:14:26 +0100, Jerzy Grzegorek wrote:
> Jerzy,
> The code is almost good.
> Below see some nits about the code.
>
> And at the end see my main concerns. I think we will need a whitelist and some
> patches fixing packages.
Thanks for your feedback.
>
> [snip]
>>>
>>> +class RemoveDefaultPackageSourceVariable(_CheckFunction):
>>> + PACKAGE_NAME = re.compile("/([^/]+)\.mk")
>>> +
>>> + def before(self):
>>> + package = self.PACKAGE_NAME.search(self.filename).group(1)
>>> + package_upper = package.replace("-", "_").upper()
>>> + self.package = package
>>> + self.package_upper = package_upper
> These 2 lines are not needed because the variables are not used in other
> methods of this class.
In fact, you're right.
>
>>> + self.FIND_SOURCE = re.compile(
>>> + "^{}_SOURCE\s*=\s*{}-\$\({}_VERSION\)\.tar\.gz"
>>> + .format(package_upper, package, package_upper))
>>> +
>>> + def check_line(self, lineno, text):
>>> + if self.FIND_SOURCE.search(text):
>>> + return ["{}:{}: remove default value of _SOURCE variable ({}#writing-rules-mk)"
> Instead of #writing-rules-mk maybe a better url would be
> #generic-package-reference
> It contains this text for LIBFOO_SOURCE: "If none are specified, then the value
> is assumed to be libfoo-$(LIBFOO_VERSION).tar.gz"
Will do.
>
>>> + .format(self.filename, lineno, self.url_to_manual),
>>> + text]
>>> +
>>> +
>>> class SpaceBeforeBackslash(_CheckFunction):
>>> TAB_OR_MULTIPLE_SPACES_BEFORE_BACKSLASH = re.compile(r"^.*( |\t)\\$")
>>>
Regards,
Jerzy
> Running the new check function in the tree we get warnings from 6 files.
> https://gitlab.com/RicardoMartincoski/buildroot/-/jobs/47157096
>
> Unrelated... but I see there are few more (other) warnings in the tree.
>
>
> 1) daq
> A patch fixing this (removing the unneeded variable) ideally should be added to
> the series because it is tested in gitlab.
>
>
> 2) glibc
> It's a special package, but the removal of the variable seems fine to me (needs
> testing of course).
>
> 3) python-networkmanager
> I guess the variable can be removed. Could it interact with scanpypi? Do we
> care if it does interact?
> By 'interact' I mean: when someone uses scanpypi to create a package should
> he/she use check-package after it?
>
> For these 2 I am not sure which one is the best solution: fix or whitelist.
>
>
> 4) gdb
> The variable is overwritten for ARC. Would removing the variable make the code
> worst in this case? The 'if' would need to be negated, and the non-default
> value be assigned for not-ARC, I guess.
>
> 5) binutils
> It has '?=' later for the same variable. I am not sure the first assignment can
> be removed.
>
> 6) gcc
> Maybe we want it to be explicit to ease the maintenance? Not sure.
>
> These 3 are good candidates for a whitelist.
>
>
> Regards,
> Ricardo
prev parent reply other threads:[~2018-01-09 12:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-18 12:14 [Buildroot] [PATCH 1/1] utils/checkpackagelib: add function to check of the default package source variable Jerzy Grzegorek
2018-01-08 22:48 ` Thomas Petazzoni
2018-01-09 2:06 ` Ricardo Martincoski
2018-01-09 8:50 ` Thomas Petazzoni
2018-01-09 12:54 ` Jerzy Grzegorek
2018-01-09 12:51 ` Jerzy Grzegorek [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=67387bfc-e6f9-2cdb-a81b-a455bb9a0b21@gmail.com \
--to=jerzy.m.grzegorek@gmail.com \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox