All of lore.kernel.org
 help / color / mirror / Atom feed
From: leonardo.sandoval.gonzalez@linux.intel.com
To: openembedded-core@lists.openembedded.org
Subject: [PATCH v3 3/5] git.inc: remove sed statement removing SVN lines from .packlist
Date: Tue, 17 Oct 2017 12:11:28 -0700	[thread overview]
Message-ID: <20171017191130.41996-3-leonardo.sandoval.gonzalez@linux.intel.com> (raw)
In-Reply-To: <20171017191130.41996-1-leonardo.sandoval.gonzalez@linux.intel.com>

From: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>

The git-perltools package created with perl 5.26.1 does not contain
the  .packlist file thus there is no need to sed on this file.

More general, the buildhistory-diff tool shows the following changes on
the related package, clearly indicating that .packlist is not there anymore.

    diff --git a/packages/i586-poky-linux/git/git-perltools/files-in-package.txt b/packages/i586-poky-linux/git/git-perltools/files-in-package.txt
    index 0780bf9..f5b70f6 100644
    --- a/packages/i586-poky-linux/git/git-perltools/files-in-package.txt
    +++ b/packages/i586-poky-linux/git/git-perltools/files-in-package.txt
    @@ -1,7 +1,7 @@
     drwxr-xr-x root       root               61 ./usr
     drwxr-xr-x root       root               26 ./usr/lib
     drwxr-xr-x root       root               30 ./usr/libexec
    -drwxr-xr-x root       root              269 ./usr/libexec/git-core
    +drwxr-xr-x root       root              288 ./usr/libexec/git-core
     -rwxr-xr-x root       root            42296 ./usr/libexec/git-core/git-add--interactive
     -rwxr-xr-x root       root          2323504 ./usr/libexec/git-core/git-am
     -rwxr-xr-x root       root            36973 ./usr/libexec/git-core/git-archimport
    @@ -12,18 +12,28 @@ drwxr-xr-x root       root              269 ./usr/libexec/git-core
     -rwxr-xr-x root       root             3702 ./usr/libexec/git-core/git-request-pull
     -rwxr-xr-x root       root            52159 ./usr/libexec/git-core/git-send-email
     -rwxr-xr-x root       root            28086 ./usr/libexec/git-core/git-submodule
    +-rwxr-xr-x root       root            64175 ./usr/libexec/git-core/git-svn
     drwxr-xr-x root       root               31 ./usr/lib/perl
     drwxr-xr-x root       root               28 ./usr/lib/perl/site_perl
    -drwxr-xr-x root       root              104 ./usr/lib/perl/site_perl/5.24.1
    -drwxr-xr-x root       root               25 ./usr/lib/perl/site_perl/5.24.1/auto
    -drwxr-xr-x root       root               31 ./usr/lib/perl/site_perl/5.24.1/auto/Git
    --rw-r--r-- root       root             1115 ./usr/lib/perl/site_perl/5.24.1/auto/Git/.packlist
    --r--r--r-- root       root            19087 ./usr/lib/perl/site_perl/5.24.1/Error.pm
    -drwxr-xr-x root       root               53 ./usr/lib/perl/site_perl/5.24.1/Git
    --r--r--r-- root       root             2473 ./usr/lib/perl/site_perl/5.24.1/Git/I18N.pm
    --r--r--r-- root       root              644 ./usr/lib/perl/site_perl/5.24.1/Git/IndexInfo.pm
    --r--r--r-- root       root            48000 ./usr/lib/perl/site_perl/5.24.1/Git.pm
    --rw-r--r-- root       root              226 ./usr/lib/perl/site_perl/5.24.1/perllocal.pod
    +drwxr-xr-x root       root               88 ./usr/lib/perl/site_perl/5.26.1
    +-r--r--r-- root       root            19087 ./usr/lib/perl/site_perl/5.26.1/Error.pm
    +drwxr-xr-x root       root               86 ./usr/lib/perl/site_perl/5.26.1/Git
    +-r--r--r-- root       root             2473 ./usr/lib/perl/site_perl/5.26.1/Git/I18N.pm
    +-r--r--r-- root       root              644 ./usr/lib/perl/site_perl/5.26.1/Git/IndexInfo.pm
    +-r--r--r-- root       root            48000 ./usr/lib/perl/site_perl/5.26.1/Git.pm
    +drwxr-xr-x root       root              195 ./usr/lib/perl/site_perl/5.26.1/Git/SVN
    +-r--r--r-- root       root            16945 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Editor.pm
    +-r--r--r-- root       root            18575 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Fetcher.pm
    +-r--r--r-- root       root             1798 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/GlobSpec.pm
    +-r--r--r-- root       root             9564 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Log.pm
    +drwxr-xr-x root       root               29 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Memoize
    +-r--r--r-- root       root             1748 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Memoize/YAML.pm
    +-r--r--r-- root       root             8145 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Migration.pm
    +-r--r--r-- root       root            71721 ./usr/lib/perl/site_perl/5.26.1/Git/SVN.pm
    +-r--r--r-- root       root             5319 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Prompt.pm
    +-r--r--r-- root       root            19358 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Ra.pm
    +-r--r--r-- root       root             4586 ./usr/lib/perl/site_perl/5.26.1/Git/SVN/Utils.pm
    +-rw-r--r-- root       root              226 ./usr/lib/perl/site_perl/5.26.1/perllocal.pod

Signed-off-by: Leonardo Sandoval <leonardo.sandoval.gonzalez@linux.intel.com>
---
 meta/recipes-devtools/git/git.inc | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc
index 9b4c1284d2..06ff27c70b 100644
--- a/meta/recipes-devtools/git/git.inc
+++ b/meta/recipes-devtools/git/git.inc
@@ -73,7 +73,6 @@ perl_native_fixup () {
 		# module, which does not exist in OE-Core.
 		rm -r ${D}${libexecdir}/git-core/git-svn \
 		      ${D}${libdir}/perl/site_perl/*/Git/SVN*
-		sed -i -e '/SVN/d' ${D}${libdir}/perl/site_perl/*/auto/Git/.packlist
 	fi
 }
 
-- 
2.12.3



  parent reply	other threads:[~2017-10-17 19:11 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-17 19:11 [PATCH v3 1/5] perl-native: upgrade from 5.24.1 to 5.26.1 leonardo.sandoval.gonzalez
2017-10-17 19:11 ` [PATCH v3 2/5] perl: upgrade " leonardo.sandoval.gonzalez
2017-10-17 19:11 ` leonardo.sandoval.gonzalez [this message]
2017-10-17 19:11 ` [PATCH v3 4/5] libxml-namespacesupport-perl: upgrade to 1.12.9 leonardo.sandoval.gonzalez
2017-10-17 19:11 ` [PATCH v3 5/5] ruby: upgrade to 2.4.2 leonardo.sandoval.gonzalez
2017-10-18 10:38 ` [PATCH v3 1/5] perl-native: upgrade from 5.24.1 to 5.26.1 Alexander Kanavin

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=20171017191130.41996-3-leonardo.sandoval.gonzalez@linux.intel.com \
    --to=leonardo.sandoval.gonzalez@linux.intel.com \
    --cc=openembedded-core@lists.openembedded.org \
    /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 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.