From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (dan.rpsys.net [93.97.175.187]) by mail.openembedded.org (Postfix) with ESMTP id 013F76E367 for ; Tue, 21 Jan 2014 22:23:40 +0000 (UTC) Received: from localhost (dan.rpsys.net [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu4) with ESMTP id s0LMNSs8004656; Tue, 21 Jan 2014 22:23:29 GMT X-Virus-Scanned: Debian amavisd-new at dan.rpsys.net Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id SLX84odIXtei; Tue, 21 Jan 2014 22:23:28 +0000 (GMT) Received: from [192.168.3.10] (rpvlan0 [192.168.3.10]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-2.1ubuntu1) with ESMTP id s0LMNPEY004653 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 21 Jan 2014 22:23:26 GMT Message-ID: <1390342998.874.122.camel@ted> From: Richard Purdie To: Paul Eggleton Date: Tue, 21 Jan 2014 22:23:18 +0000 In-Reply-To: <1390306673-9822-1-git-send-email-paul.eggleton@linux.intel.com> References: <1390306673-9822-1-git-send-email-paul.eggleton@linux.intel.com> X-Mailer: Evolution 3.8.4-0ubuntu1 Mime-Version: 1.0 Cc: openembedded-core@lists.openembedded.org Subject: Re: [PATCH] conf/bitbake.conf: default HOMEPAGE to blank instead of unknown X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Jan 2014 22:23:41 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit On Tue, 2014-01-21 at 12:17 +0000, Paul Eggleton wrote: > The default value for HOMEPAGE of "unknown" has been in place since the > early OE-Classic days, but it doesn't really make sense - "unknown" is > not a valid URL and it just means we have to explicitly check for this > hardcoded string if we're displaying the value in some form of UI, such > as Toaster. There is some code in the unmaintained oelint.bbclass to > check for this value, presumably on the assumption that the recipe will > explicitly set it to "" if there really isn't a homepage, but looking at > recipes in OE-Core and meta-oe suggests that we haven't been using this > convention for some time (with one exception in the latter) and it's > rather uncommon these days to have no URL to associate with a recipe. > > Signed-off-by: Paul Eggleton > --- > meta/conf/bitbake.conf | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf > index 57668e1..4fb6a1c 100644 > --- a/meta/conf/bitbake.conf > +++ b/meta/conf/bitbake.conf > @@ -241,7 +241,7 @@ This package contains documentation." > > LICENSE = "INVALID" > MAINTAINER = "OE-Core Developers " > -HOMEPAGE = "unknown" > +HOMEPAGE = "" > Perhaps we just shouldn't set it at all in bitbake.conf and let recipes elect to set it? Cheers, Richard