From: Richard Purdie Date: Thu, 9 Jun 2022 10:30:39 +0000 (+0100) Subject: buildcfg: Drop unused svn revision function X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3881 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09ba96a2d7fa02c7a82758bbf4109b04ffca2c55;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git buildcfg: Drop unused svn revision function This isn't used anywhere and everyone is using git now, the functions are now hardcoded as such too. Drop this function. Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/buildcfg.py b/meta/lib/oe/buildcfg.py index a7549f1e229..364c40a2f02 100644 --- a/meta/lib/oe/buildcfg.py +++ b/meta/lib/oe/buildcfg.py @@ -13,17 +13,6 @@ def detect_branch(d): def get_scmbasepath(d): return os.path.join(d.getVar('COREBASE'), 'meta') -def get_metadata_svn_revision(path, d): - # This only works with older subversion. For newer versions - # this function will need to be fixed by someone interested - revision = "" - try: - with open("%s/.svn/entries" % path) as f: - revision = f.readlines()[3].strip() - except (IOError, IndexError): - pass - return revision - def get_metadata_git_branch(path, d): try: rev, _ = bb.process.run('git rev-parse --abbrev-ref HEAD', cwd=path)