* [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2
@ 2014-01-08 12:27 Francois Perrad
2014-01-08 12:27 ` [Buildroot] [PATCH 2/2] perl-cross: workaround with PERL5LIB no longer needed Francois Perrad
2014-01-08 21:36 ` [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Peter Korsgaard
0 siblings, 2 replies; 5+ messages in thread
From: Francois Perrad @ 2014-01-08 12:27 UTC (permalink / raw)
To: buildroot
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/perl/perl.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index 1c7df9b..bf8eac2 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -5,7 +5,7 @@
################################################################################
PERL_VERSION_MAJOR = 18
-PERL_VERSION = 5.$(PERL_VERSION_MAJOR).1
+PERL_VERSION = 5.$(PERL_VERSION_MAJOR).2
PERL_SITE = http://www.cpan.org/src/5.0
PERL_SOURCE = perl-$(PERL_VERSION).tar.bz2
PERL_LICENSE = Artistic or GPLv1+
@@ -85,7 +85,7 @@ endef
# perlcross's miniperl_top forgets base, which is required by mktables.
# Instead of patching, it's easier to just set PERL5LIB
define PERL_BUILD_CMDS
- PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) perl modules
+ PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) all
endef
define PERL_INSTALL_STAGING_CMDS
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] perl-cross: workaround with PERL5LIB no longer needed
2014-01-08 12:27 [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Francois Perrad
@ 2014-01-08 12:27 ` Francois Perrad
2014-01-08 21:36 ` [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Peter Korsgaard
1 sibling, 0 replies; 5+ messages in thread
From: Francois Perrad @ 2014-01-08 12:27 UTC (permalink / raw)
To: buildroot
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
---
package/perl/perl.mk | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/package/perl/perl.mk b/package/perl/perl.mk
index bf8eac2..ec94e4f 100644
--- a/package/perl/perl.mk
+++ b/package/perl/perl.mk
@@ -82,14 +82,12 @@ define PERL_CONFIGURE_CMDS
$(SED) 's/UNKNOWN-/Buildroot $(BR2_VERSION_FULL) /' $(@D)/patchlevel.h
endef
-# perlcross's miniperl_top forgets base, which is required by mktables.
-# Instead of patching, it's easier to just set PERL5LIB
define PERL_BUILD_CMDS
- PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) all
+ $(MAKE1) -C $(@D) all
endef
define PERL_INSTALL_STAGING_CMDS
- PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl
+ $(MAKE1) -C $(@D) DESTDIR="$(STAGING_DIR)" install.perl
endef
PERL_INSTALL_TARGET_GOALS = install.perl
@@ -99,7 +97,7 @@ endif
define PERL_INSTALL_TARGET_CMDS
- PERL5LIB=$(@D)/dist/base/lib $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS)
+ $(MAKE1) -C $(@D) DESTDIR="$(TARGET_DIR)" $(PERL_INSTALL_TARGET_GOALS)
endef
$(eval $(generic-package))
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2
2014-01-08 12:27 [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Francois Perrad
2014-01-08 12:27 ` [Buildroot] [PATCH 2/2] perl-cross: workaround with PERL5LIB no longer needed Francois Perrad
@ 2014-01-08 21:36 ` Peter Korsgaard
2014-01-09 8:14 ` François Perrad
1 sibling, 1 reply; 5+ messages in thread
From: Peter Korsgaard @ 2014-01-08 21:36 UTC (permalink / raw)
To: buildroot
>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:
> Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Committed both, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2
2014-01-08 21:36 ` [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Peter Korsgaard
@ 2014-01-09 8:14 ` François Perrad
2014-01-28 21:18 ` Thomas Petazzoni
0 siblings, 1 reply; 5+ messages in thread
From: François Perrad @ 2014-01-09 8:14 UTC (permalink / raw)
To: buildroot
2014/1/8 Peter Korsgaard <jacmet@uclibc.org>:
>>>>>> "Francois" == Francois Perrad <fperrad@gmail.com> writes:
>
> > Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
>
> Committed both, thanks.
>
Peter,
what do you think about the serie : pkg-perl infra V3 ?
Fran?ois.
> --
> Bye, Peter Korsgaard
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2
2014-01-09 8:14 ` François Perrad
@ 2014-01-28 21:18 ` Thomas Petazzoni
0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2014-01-28 21:18 UTC (permalink / raw)
To: buildroot
Dear Fran?ois Perrad,
On Thu, 9 Jan 2014 09:14:20 +0100, Fran?ois Perrad wrote:
> what do you think about the serie : pkg-perl infra V3 ?
I think we should discuss it during the Buildroot meeting next week
(Monday/Tuesday). Would you be available for a discussion through
Google Hangout maybe (requires a webcam and a Google account) ?
Best regards,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-01-28 21:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-08 12:27 [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Francois Perrad
2014-01-08 12:27 ` [Buildroot] [PATCH 2/2] perl-cross: workaround with PERL5LIB no longer needed Francois Perrad
2014-01-08 21:36 ` [Buildroot] [PATCH 1/2] perl: bump to version 5.18.2 Peter Korsgaard
2014-01-09 8:14 ` François Perrad
2014-01-28 21:18 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox