FreeBSD Upgrade Perl 5.8.x to 5.10.x

by Vivek Gite on September 23, 2009 · 3 comments

How do I upgrade Perl version under FreeBSD operating system?

Perl (Practical Extraction and Report Language) is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It's also a good language for many system management tasks. Perl can be easily upgrade to 5.10.1 from 5.8.x version using the following instructions.

lang/perl5.10 has been updated to 5.10.1. You should update everything that depends on perl. The easiest way to do that is to use "perl-after-upgrade" script supplied with lang/perl5.10.

Upgrade ports tree

Type the following command:
# portsnap fetch update

Upgrade Perl using portupgrade

Type the following commands:
# pkgdb -Ff
# portupgrade -o lang/perl5.10 -f perl-5.8.\*
# portupgrade -fr perl

Update all perl related stuff:
# portupgrade -f p5*

Upgrade Perl using portmaster

Type the following commands:
# portmaster -o lang/perl5.10 lang/perl5.8
# portmaster -r perl-

Notice: If the "perl-" glob matches more than one port you will need to specify the name of the perl directory in /var/db/pkg explicitly:
portmaster -Dr perl- /var/db/pkg/perl-5.10.1/

fixup FreeBSD packages that depend on perl

The standard procedure after a perl port (lang/perl5.X) upgrade is to basically reinstall all other packages that depend on perl. This is always a painful exercise. The perl-after-upgrade utility makes this process mostly unnecessary.
# perl-after-upgrade -f

Upgrade Other Packages

You also need to reinstall all other packages that depends upon perl. For example, amavisd-new. spamassassin, and clamav etc.
# cd /usr/ports/your-port-name
# make deinstall install

References:

  • Read /usr/ports/UPDATING file.
  • man pages portmaster, portupgrade, and perl-after-upgrade

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 3 comments… read them below or add one }

1 Alex Libman January 5, 2010

I wish it worked for me as easily as that (FreeBSD 8.0-RELEASE i386): portupgrade, portmaster, and everything else I’ve tried insist that I must pkg_delete perl-5.8 first, which has way too many dependents…

Reply

2 Max Clements October 11, 2010

Hmm, I know this is an old thread, but you can also just alter the “conflicts with” line in the Makefile of the perl-5.10 port and life will be good, as the -o tells portupgrade to use 5.10 to upgrade 5.8 (assuming you are using portupgrade)

Reply

3 Robert Brown August 8, 2011

For me it required this –

env DISABLE_CONFLICTS=1 portupgrade -o lang/perl5.14 -f perl-5.8.\*

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 2 + 7 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: