From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 68.mail-out.ovh.net ([91.121.185.69]) by linuxtogo.org with smtp (Exim 4.69) (envelope-from ) id 1Otjge-0002mc-9J for openembedded-devel@lists.openembedded.org; Thu, 09 Sep 2010 18:09:21 +0200 Received: (qmail 31073 invoked by uid 503); 9 Sep 2010 16:20:08 -0000 Received: from 30.mail-out.ovh.net (213.186.62.213) by 68.mail-out.ovh.net with SMTP; 9 Sep 2010 16:20:08 -0000 Received: (qmail 17004 invoked by uid 503); 9 Sep 2010 15:52:39 -0000 Received: from b9.ovh.net (HELO mail431.ha.ovh.net) (213.186.33.59) by 30.mail-out.ovh.net with SMTP; 9 Sep 2010 15:52:38 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 9 Sep 2010 18:08:39 +0200 Received: from pac33-2-82-240-38-71.fbx.proxad.net (HELO localhost.localdomain) (ebenard%eukrea.com@82.240.38.71) by ns0.ovh.net with SMTP; 9 Sep 2010 18:08:38 +0200 From: =?utf-8?q?Eric=20B=C3=A9nard?= To: openembedded-devel@lists.openembedded.org Date: Thu, 9 Sep 2010 18:07:11 +0200 Message-Id: <1284048433-20991-1-git-send-email-eric@eukrea.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: References: MIME-Version: 1.0 X-Ovh-Tracer-Id: 470063211894123849 X-Ovh-Remote: 82.240.38.71 (pac33-2-82-240-38-71.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-SA-Exim-Connect-IP: 91.121.185.69 X-SA-Exim-Mail-From: eric@eukrea.com X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on discovery X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 X-SA-Exim-Version: 4.2.1 (built Wed, 25 Jun 2008 17:20:07 +0000) X-SA-Exim-Scanned: Yes (on linuxtogo.org) Subject: [PATCH 1/3] generate-manifest-2.6.py: tune python-modules' RDEPENDS X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Sep 2010 16:09:21 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit * python-dev: pulls several dev packages leading to a >256MB image instead of a 60MB image without this packages Signed-off-by: Eric Bénard --- contrib/python/generate-manifest-2.6.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/python/generate-manifest-2.6.py b/contrib/python/generate-manifest-2.6.py index 1a0f1d3..5ebafb8 100755 --- a/contrib/python/generate-manifest-2.6.py +++ b/contrib/python/generate-manifest-2.6.py @@ -12,7 +12,7 @@ import time VERSION = "2.6.4" __author__ = "Michael 'Mickey' Lauer " -__version__ = "20100711" +__version__ = "20100908" class MakefileMaker: @@ -123,7 +123,7 @@ class MakefileMaker: line = 'RDEPENDS_python-modules="' for name, data in self.packages.iteritems(): - if name != 'python-core-dbg': + if name not in ['python-core-dbg', 'python-dev']: line += "%s " % name self.out( "%s \"" % line ) @@ -164,7 +164,7 @@ if __name__ == "__main__": m.addPackage( "python-core-dbg", "Python core module debug information", "python-core", "config/.debug lib-dynload/.debug ${bindir}/.debug ${libdir}/.debug" ) - m.addPackage( "python-devel", "Python Development Package", "python-core", + m.addPackage( "python-dev", "Python Development Package", "python-core", "${includedir} ${libdir}/libpython2.6.so config" ) # package m.addPackage( "python-idle", "Python Integrated Development Environment", "python-core python-tkinter", -- 1.6.3.3