Bugzilla – Attachment 52028 Details for
Bug 16643
Make debian/list-deps aware of Jessie folder structure
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16643 - Make debian/list-deps aware of Jessie folder structure
Bug-16643---Make-debianlist-deps-aware-of-Jessie-f.patch (text/plain), 1.12 KB, created by
Mirko Tietgen
on 2016-06-04 07:45:57 UTC
(
hide
)
Description:
Bug 16643 - Make debian/list-deps aware of Jessie folder structure
Filename:
MIME Type:
Creator:
Mirko Tietgen
Created:
2016-06-04 07:45:57 UTC
Size:
1.12 KB
patch
obsolete
>From 77ea33b0fdbbdff1d4168af3a518cb327067d86c Mon Sep 17 00:00:00 2001 >From: Mirko Tietgen <mirko@abunchofthings.net> >Date: Sat, 4 Jun 2016 09:44:14 +0200 >Subject: [PATCH] Bug 16643 - Make debian/list-deps aware of Jessie folder > structure > >the old regex did not match the new folder structure >--- > debian/list-deps | 11 ++++++++++- > 1 file changed, 10 insertions(+), 1 deletion(-) > >diff --git a/debian/list-deps b/debian/list-deps >index f12d088..29ab5ce 100755 >--- a/debian/list-deps >+++ b/debian/list-deps >@@ -38,7 +38,16 @@ my %ignore = ( > > my $deps = $C4::Installer::PerlDependencies::PERL_DEPS; > >-my $prefix = "^/usr/((lib|share)/perl5|(lib|share)/perl/[0-9.]+)"; >+# for $prefix we need to match different folder structures depending on >+# distribution and perl version >+# >+# examples that the following regex needs to match: >+# /usr/lib/x86_64-linux-gnu/perl/5.20.2/POSIX.pm >+# /usr/lib/perl/5.14.2/POSIX.pm >+# /usr/lib/perl5/POSIX.pm >+# /usr/lib/x86_64-linux-gnu/perl5/5.20/YAML/Syck.pm >+ >+my $prefix = "^/usr/((lib|share)/(.*-linux-gnu/)?perl5?/?[0-9.]+)?"; > > foreach my $module ( keys %$deps ) { > next if $ignore{$module}; >-- >2.8.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 16643
:
52028
|
54224
|
54226