all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#27227: [PATCH] gnu: perl: Update to 5.26.0.
@ 2017-06-04  8:40 Leo Famulari
  2017-06-04 13:45 ` Marius Bakke
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-04  8:40 UTC (permalink / raw)
  To: 27227

* gnu/packages/perl.scm (perl): Update to 5.26.0.
* gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
'hints/linux.sh'.
---
 gnu/packages/patches/perl-no-sys-dirs.patch | 72 +++++++++++++++--------------
 gnu/packages/perl.scm                       |  4 +-
 2 files changed, 40 insertions(+), 36 deletions(-)

diff --git a/gnu/packages/patches/perl-no-sys-dirs.patch b/gnu/packages/patches/perl-no-sys-dirs.patch
index da91fef3b..ec5987561 100644
--- a/gnu/packages/patches/perl-no-sys-dirs.patch
+++ b/gnu/packages/patches/perl-no-sys-dirs.patch
@@ -1,6 +1,6 @@
 Don't look for headers and libraries in "traditional" locations.
 
-Patch from Nixpkgs by Eelco Dolstra <eelco.dolstra@logicblox.com>.
+Patch adapted from Nixpkgs by Eelco Dolstra <eelco.dolstra@logicblox.com>.
 
 diff -ru -x '*~' -x '*.rej' perl-5.20.0-orig/Configure perl-5.20.0/Configure
 --- perl-5.20.0-orig/Configure	2014-05-26 15:34:18.000000000 +0200
@@ -185,39 +185,6 @@ diff -ru -x '*~' -x '*.rej' perl-5.20.0-orig/hints/linux.sh perl-5.20.0/hints/li
  case "$plibpth" in
  '') plibpth=`LANG=C LC_ALL=C $gcc $ccflags $ldflags -print-search-dirs | grep libraries |
  	cut -f2- -d= | tr ':' $trnl | grep -v 'gcc' | sed -e 's:/$::'`
-@@ -178,32 +159,6 @@
-     ;;
- esac
- 
--case "$libc" in
--'')
--# If you have glibc, then report the version for ./myconfig bug reporting.
--# (Configure doesn't need to know the specific version since it just uses
--# gcc to load the library for all tests.)
--# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
--# are insufficiently precise to distinguish things like
--# libc-2.0.6 and libc-2.0.7.
--    for p in $plibpth
--    do
--        for trylib in libc.so.6 libc.so
--        do
--            if $test -e $p/$trylib; then
--                libc=`ls -l $p/$trylib | awk '{print $NF}'`
--                if $test "X$libc" != X; then
--                    break
--                fi
--            fi
--        done
--        if $test "X$libc" != X; then
--            break
--        fi
--    done
--    ;;
--esac
--
- # Are we using ELF?  Thanks to Kenneth Albanowski <kjahds@kjahds.com>
- # for this test.
- cat >try.c <<'EOM'
 @@ -367,33 +322,6 @@
  	;;
  esac
@@ -252,3 +219,40 @@ diff -ru -x '*~' -x '*.rej' perl-5.20.0-orig/hints/linux.sh perl-5.20.0/hints/li
  # Linux on Synology.
  if [ -f /etc/synoinfo.conf -a -d /usr/syno ]; then
      # Tested on Synology DS213 and DS413
+diff --git a/hints/linux.sh b/hints/linux.sh
+index 3f38ea0..97aed11 100644
+--- a/hints/linux.sh
++++ b/hints/linux.sh
+@@ -195,32 +195,6 @@ case "$usequadmath" in
+   ;;
+ esac
+ 
+-case "$libc" in
+-'')
+-# If you have glibc, then report the version for ./myconfig bug reporting.
+-# (Configure doesn't need to know the specific version since it just uses
+-# gcc to load the library for all tests.)
+-# We don't use __GLIBC__ and  __GLIBC_MINOR__ because they
+-# are insufficiently precise to distinguish things like
+-# libc-2.0.6 and libc-2.0.7.
+-    for p in $plibpth
+-    do
+-        for trylib in libc.so.6 libc.so
+-        do
+-            if $test -e $p/$trylib; then
+-                libc=`ls -l $p/$trylib | awk '{print $NF}'`
+-                if $test "X$libc" != X; then
+-                    break
+-                fi
+-            fi
+-        done
+-        if $test "X$libc" != X; then
+-            break
+-        fi
+-    done
+-    ;;
+-esac
+-
+ if ${sh:-/bin/sh} -c exit; then
+   echo ''
+   echo 'You appear to have a working bash.  Good.'
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index 812d7548c..c3b486988 100644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -51,14 +51,14 @@
   ;; Yeah, Perl...  It is required early in the bootstrap process by Linux.
   (package
     (name "perl")
-    (version "5.24.0")
+    (version "5.26.0")
     (source (origin
              (method url-fetch)
              (uri (string-append "mirror://cpan/src/5.0/perl-"
                                  version ".tar.gz"))
              (sha256
               (base32
-               "00jj8zr8fnihrxxhl8h936ssczv5x86qb618yz1ig40d1rp0qhvy"))
+               "0zxn9hd7mqgq06ikyi6k70ngbvjf01z1paw0jd25byyl0rlwdrzb"))
              (patches (search-patches
                        "perl-no-sys-dirs.patch"
                        "perl-autosplit-default-time.patch"
-- 
2.13.0

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* bug#27227: [PATCH] gnu: perl: Update to 5.26.0.
  2017-06-04  8:40 bug#27227: [PATCH] gnu: perl: Update to 5.26.0 Leo Famulari
@ 2017-06-04 13:45 ` Marius Bakke
  2017-06-04 16:37   ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Marius Bakke @ 2017-06-04 13:45 UTC (permalink / raw)
  To: Leo Famulari, 27227

[-- Attachment #1: Type: text/plain, Size: 195 bytes --]

Leo Famulari <leo@famulari.name> writes:

> * gnu/packages/perl.scm (perl): Update to 5.26.0.
> * gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
> 'hints/linux.sh'.

LGTM.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27227: [PATCH] gnu: perl: Update to 5.26.0.
  2017-06-04 13:45 ` Marius Bakke
@ 2017-06-04 16:37   ` Leo Famulari
  2017-06-04 18:35     ` Marius Bakke
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-04 16:37 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 27227

[-- Attachment #1: Type: text/plain, Size: 474 bytes --]

On Sun, Jun 04, 2017 at 03:45:50PM +0200, Marius Bakke wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > * gnu/packages/perl.scm (perl): Update to 5.26.0.
> > * gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
> > 'hints/linux.sh'.
> 
> LGTM.

Thanks!

Is core-updates still open for changes like this? Or should I wait until the
next cycle?

So far I built the final 'perl' package and am currently building Git with this
patch.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27227: [PATCH] gnu: perl: Update to 5.26.0.
  2017-06-04 16:37   ` Leo Famulari
@ 2017-06-04 18:35     ` Marius Bakke
  2017-06-04 19:19       ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Marius Bakke @ 2017-06-04 18:35 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27227

[-- Attachment #1: Type: text/plain, Size: 514 bytes --]

Leo Famulari <leo@famulari.name> writes:

> On Sun, Jun 04, 2017 at 03:45:50PM +0200, Marius Bakke wrote:
>> Leo Famulari <leo@famulari.name> writes:
>> 
>> > * gnu/packages/perl.scm (perl): Update to 5.26.0.
>> > * gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
>> > 'hints/linux.sh'.
>> 
>> LGTM.
>
> Thanks!
>
> Is core-updates still open for changes like this? Or should I wait until the
> next cycle?

Perl (and openldap) have not been built yet, so I think it's fine.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27227: [PATCH] gnu: perl: Update to 5.26.0.
  2017-06-04 18:35     ` Marius Bakke
@ 2017-06-04 19:19       ` Leo Famulari
  2017-06-07 22:37         ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-04 19:19 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 27227-done

[-- Attachment #1: Type: text/plain, Size: 710 bytes --]

On Sun, Jun 04, 2017 at 08:35:56PM +0200, Marius Bakke wrote:
> Leo Famulari <leo@famulari.name> writes:
> 
> > On Sun, Jun 04, 2017 at 03:45:50PM +0200, Marius Bakke wrote:
> >> Leo Famulari <leo@famulari.name> writes:
> >> 
> >> > * gnu/packages/perl.scm (perl): Update to 5.26.0.
> >> > * gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
> >> > 'hints/linux.sh'.
> >> 
> >> LGTM.
> >
> > Thanks!
> >
> > Is core-updates still open for changes like this? Or should I wait until the
> > next cycle?
> 
> Perl (and openldap) have not been built yet, so I think it's fine.

I merged master into core-updates and pushed this as
f65805485dac3f8c4586648e3f7e901202095a19.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-04 19:19       ` Leo Famulari
@ 2017-06-07 22:37         ` Leo Famulari
  2017-06-08  0:25           ` bug#27282: Perl 5.26.0 "dotless @INC" Leo Famulari
  2017-06-08 12:28           ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Ludovic Courtès
  0 siblings, 2 replies; 15+ messages in thread
From: Leo Famulari @ 2017-06-07 22:37 UTC (permalink / raw)
  To: 27282

[-- Attachment #1: Type: text/plain, Size: 1341 bytes --]

On Sun, Jun 04, 2017 at 03:19:39PM -0400, Leo Famulari wrote:
> > >> Leo Famulari <leo@famulari.name> writes:
> > >> 
> > >> > * gnu/packages/perl.scm (perl): Update to 5.26.0.
> > >> > * gnu/packages/patches/perl-no-sys-dirs.patch: Update patch context for
> > >> > 'hints/linux.sh'.
> 
> I merged master into core-updates and pushed this as
> f65805485dac3f8c4586648e3f7e901202095a19.

Building locally, I found that SWIG fails to build with this new Perl
release due to the removal of the current directory from @INC. This
change is mentioned in the Perl release notes:

"We removed the current directory from @INC

We consider this a security change, and although it might cause
discomfort to some users, we had to do it. Both Perl 5 Porters and the
Toolchain Gang put effort into easing the transition to a dot-less
@INC.

If you want to load a module from the current directory, you can still
do this in one the following ways:

[...]

# Use the environment variable
PERL_USE_UNSAFE_INC=1"

http://blogs.perl.org/users/sawyer_x/2017/05/perl-5260-is-now-available.html

It doesn't look like this has been addressed by the SWIG maintainers
yet.

We should set this PERL_USE_UNSAFE_INC variable in the SWIG package
definition, right? Probably we will need to set it in several other
packages as well.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC"
  2017-06-07 22:37         ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Leo Famulari
@ 2017-06-08  0:25           ` Leo Famulari
  2017-06-08 12:28           ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Ludovic Courtès
  1 sibling, 0 replies; 15+ messages in thread
From: Leo Famulari @ 2017-06-08  0:25 UTC (permalink / raw)
  To: 27282

[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]

On Wed, Jun 07, 2017 at 06:37:30PM -0400, Leo Famulari wrote:
> We should set this PERL_USE_UNSAFE_INC variable in the SWIG package
> definition, right? Probably we will need to set it in several other
> packages as well.

I'm testing this patch locally:

diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index acf052937..09e9bb92a 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -41,6 +41,14 @@
               (base32
                "0k7ljh07rla6223lhvljgg881b2qr7hmrfgic9a0j1pckpislf99"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'set-env
+           ;; Required since Perl 5.26.0's removal of the current
+           ;; working directory from @INC.
+           ;; TODO Try removing this for later versions of SWIG.
+           (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
     (native-inputs `(("boost" ,boost)
                      ("pcre" ,pcre "bin")))       ;for 'pcre-config'
     (inputs `(;; Provide these to run the corresponding tests.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply related	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-07 22:37         ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Leo Famulari
  2017-06-08  0:25           ` bug#27282: Perl 5.26.0 "dotless @INC" Leo Famulari
@ 2017-06-08 12:28           ` Ludovic Courtès
  2017-06-08 15:29             ` Leo Famulari
  1 sibling, 1 reply; 15+ messages in thread
From: Ludovic Courtès @ 2017-06-08 12:28 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27282

Leo Famulari <leo@famulari.name> skribis:

> Building locally, I found that SWIG fails to build with this new Perl
> release due to the removal of the current directory from @INC. This
> change is mentioned in the Perl release notes:
>
> "We removed the current directory from @INC
>
> We consider this a security change, and although it might cause
> discomfort to some users, we had to do it. Both Perl 5 Porters and the
> Toolchain Gang put effort into easing the transition to a dot-less
> @INC.
>
> If you want to load a module from the current directory, you can still
> do this in one the following ways:
>
> [...]
>
> # Use the environment variable
> PERL_USE_UNSAFE_INC=1"
>
> http://blogs.perl.org/users/sawyer_x/2017/05/perl-5260-is-now-available.html
>
> It doesn't look like this has been addressed by the SWIG maintainers
> yet.
>
> We should set this PERL_USE_UNSAFE_INC variable in the SWIG package
> definition, right? Probably we will need to set it in several other
> packages as well.

We can do that, but probably there will be (or there is already) a patch
for SWIG to not rely on having “.” in @INC, no?

Thanks for the heads-up,
Ludo’.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-08 12:28           ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Ludovic Courtès
@ 2017-06-08 15:29             ` Leo Famulari
  2017-06-12  2:48               ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-08 15:29 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27282

[-- Attachment #1: Type: text/plain, Size: 599 bytes --]

On Thu, Jun 08, 2017 at 02:28:54PM +0200, Ludovic Courtès wrote:
> Leo Famulari <leo@famulari.name> skribis:
> > We should set this PERL_USE_UNSAFE_INC variable in the SWIG package
> > definition, right? Probably we will need to set it in several other
> > packages as well.
> 
> We can do that, but probably there will be (or there is already) a patch
> for SWIG to not rely on having “.” in @INC, no?

I hoped so, but I couldn't find any discussion on the SWIG bug tracker
or mailing list, nor a commit in their source repo.

I guess I should bring it up on their bug tracker :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-08 15:29             ` Leo Famulari
@ 2017-06-12  2:48               ` Leo Famulari
  2017-06-13 19:47                 ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-12  2:48 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27282

[-- Attachment #1: Type: text/plain, Size: 1008 bytes --]

On Thu, Jun 08, 2017 at 11:29:16AM -0400, Leo Famulari wrote:
> On Thu, Jun 08, 2017 at 02:28:54PM +0200, Ludovic Courtès wrote:
> > Leo Famulari <leo@famulari.name> skribis:
> > > We should set this PERL_USE_UNSAFE_INC variable in the SWIG package
> > > definition, right? Probably we will need to set it in several other
> > > packages as well.
> > 
> > We can do that, but probably there will be (or there is already) a patch
> > for SWIG to not rely on having “.” in @INC, no?
> 
> I hoped so, but I couldn't find any discussion on the SWIG bug tracker
> or mailing list, nor a commit in their source repo.
> 
> I guess I should bring it up on their bug tracker :)

I filed a bug report:

https://github.com/swig/swig/issues/997

In the meantime, setting PERL_USE_UNSAFE_INC will give us what we had
before, which is a SWIG that looks for modules in the current working
directory.

Building core-updates locally, I found several other Perl modules that
have the same issue.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-12  2:48               ` Leo Famulari
@ 2017-06-13 19:47                 ` Leo Famulari
  2017-06-14  7:38                   ` Ludovic Courtès
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-13 19:47 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27282

[-- Attachment #1: Type: text/plain, Size: 564 bytes --]

On Sun, Jun 11, 2017 at 10:48:02PM -0400, Leo Famulari wrote:
> I filed a bug report:
> 
> https://github.com/swig/swig/issues/997
> 
> In the meantime, setting PERL_USE_UNSAFE_INC will give us what we had
> before, which is a SWIG that looks for modules in the current working
> directory.

The upstream fix has basically the same effect:

https://github.com/swig/swig/commit/8855ef2b482c09da9255079b0fac92d08c8308fb

To avoid adding another patch, I'll push the change to set
PERL_USE_UNSAFE_INC to core-updates soon unless there is an objection.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-13 19:47                 ` Leo Famulari
@ 2017-06-14  7:38                   ` Ludovic Courtès
  2017-06-14 14:30                     ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Ludovic Courtès @ 2017-06-14  7:38 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27282

Leo Famulari <leo@famulari.name> skribis:

> On Sun, Jun 11, 2017 at 10:48:02PM -0400, Leo Famulari wrote:
>> I filed a bug report:
>> 
>> https://github.com/swig/swig/issues/997
>> 
>> In the meantime, setting PERL_USE_UNSAFE_INC will give us what we had
>> before, which is a SWIG that looks for modules in the current working
>> directory.
>
> The upstream fix has basically the same effect:
>
> https://github.com/swig/swig/commit/8855ef2b482c09da9255079b0fac92d08c8308fb
>
> To avoid adding another patch, I'll push the change to set
> PERL_USE_UNSAFE_INC to core-updates soon unless there is an objection.

Sounds good to me.  Thanks for taking care of it!

Ludo’.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-14  7:38                   ` Ludovic Courtès
@ 2017-06-14 14:30                     ` Leo Famulari
  2017-08-02 22:10                       ` Ludovic Courtès
  0 siblings, 1 reply; 15+ messages in thread
From: Leo Famulari @ 2017-06-14 14:30 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27282

[-- Attachment #1: Type: text/plain, Size: 934 bytes --]

On Wed, Jun 14, 2017 at 09:38:12AM +0200, Ludovic Courtès wrote:
> Leo Famulari <leo@famulari.name> skribis:
> 
> > On Sun, Jun 11, 2017 at 10:48:02PM -0400, Leo Famulari wrote:
> >> I filed a bug report:
> >> 
> >> https://github.com/swig/swig/issues/997
> >> 
> >> In the meantime, setting PERL_USE_UNSAFE_INC will give us what we had
> >> before, which is a SWIG that looks for modules in the current working
> >> directory.
> >
> > The upstream fix has basically the same effect:
> >
> > https://github.com/swig/swig/commit/8855ef2b482c09da9255079b0fac92d08c8308fb
> >
> > To avoid adding another patch, I'll push the change to set
> > PERL_USE_UNSAFE_INC to core-updates soon unless there is an objection.
> 
> Sounds good to me.  Thanks for taking care of it!

Alright, pushed as 503c8c5882550005a7e9d3058a5f6d22f9c33f63. I'll keep
this bug open for a while to document further instances of this problem.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-06-14 14:30                     ` Leo Famulari
@ 2017-08-02 22:10                       ` Ludovic Courtès
  2017-08-02 22:41                         ` Leo Famulari
  0 siblings, 1 reply; 15+ messages in thread
From: Ludovic Courtès @ 2017-08-02 22:10 UTC (permalink / raw)
  To: Leo Famulari; +Cc: 27282

Heya,

Leo Famulari <leo@famulari.name> skribis:

> Alright, pushed as 503c8c5882550005a7e9d3058a5f6d22f9c33f63. I'll keep
> this bug open for a while to document further instances of this problem.

I think we’re mostly done with this bug, or am I optimistic?

Ludo’.

^ permalink raw reply	[flat|nested] 15+ messages in thread

* bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.]
  2017-08-02 22:10                       ` Ludovic Courtès
@ 2017-08-02 22:41                         ` Leo Famulari
  0 siblings, 0 replies; 15+ messages in thread
From: Leo Famulari @ 2017-08-02 22:41 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 27282-done

[-- Attachment #1: Type: text/plain, Size: 411 bytes --]

On Thu, Aug 03, 2017 at 12:10:00AM +0200, Ludovic Courtès wrote:
> Heya,
> 
> Leo Famulari <leo@famulari.name> skribis:
> 
> > Alright, pushed as 503c8c5882550005a7e9d3058a5f6d22f9c33f63. I'll keep
> > this bug open for a while to document further instances of this problem.
> 
> I think we’re mostly done with this bug, or am I optimistic?

Yes, I think so. We can always re-open if necessary :)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2017-08-02 22:42 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-04  8:40 bug#27227: [PATCH] gnu: perl: Update to 5.26.0 Leo Famulari
2017-06-04 13:45 ` Marius Bakke
2017-06-04 16:37   ` Leo Famulari
2017-06-04 18:35     ` Marius Bakke
2017-06-04 19:19       ` Leo Famulari
2017-06-07 22:37         ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Leo Famulari
2017-06-08  0:25           ` bug#27282: Perl 5.26.0 "dotless @INC" Leo Famulari
2017-06-08 12:28           ` bug#27282: Perl 5.26.0 "dotless @INC" [was Re: bug#27227: [PATCH] gnu: perl: Update to 5.26.0.] Ludovic Courtès
2017-06-08 15:29             ` Leo Famulari
2017-06-12  2:48               ` Leo Famulari
2017-06-13 19:47                 ` Leo Famulari
2017-06-14  7:38                   ` Ludovic Courtès
2017-06-14 14:30                     ` Leo Famulari
2017-08-02 22:10                       ` Ludovic Courtès
2017-08-02 22:41                         ` Leo Famulari

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

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.