notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine

Bot filter coming soon

To deter bots pegging the database CPU to 100%, a bot testing filter to be added to the website. This should not affect newsfeeds etc. Anubis seems light-weight - it is already in use within the FreeBSD Project. This notice is just a heads up in case you see something odd. This notice will be updated after Anubis is installed.

Port details
p5-Syntax-Keyword-Defer Execute code when leaving a block
0.11 develnew! on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout Package not present on quarterly.This port was created during this quarter. It will be in the next quarterly branch but not the current one.
Maintainer: dvl@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2025-07-22 17:39:11
Last Update: 2025-07-22 17:36:41
Commit Hash: 74d272b
Also Listed In: perl5
License: ART10
WWW:
https://metacpan.org/pod/Syntax::Keyword::Defer
Description:
This module provides a syntax plugin that implements a block which executes when the containing scope has finished. use Syntax::Keyword::Defer; { my $dbh = DBI->connect( ... ) or die "Cannot connect"; defer { $dbh->disconnect; } my $sth = $dbh->prepare( ... ) or die "Cannot prepare"; defer { $sth->finish; } ... }
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (9 items)
Collapse this list.
  1. /usr/local/share/licenses/p5-Syntax-Keyword-Defer-0.11/catalog.mk
  2. /usr/local/share/licenses/p5-Syntax-Keyword-Defer-0.11/LICENSE
  3. /usr/local/share/licenses/p5-Syntax-Keyword-Defer-0.11/ART10
  4. lib/perl5/site_perl/mach/5.40/Syntax/Keyword/Defer.pm
  5. lib/perl5/site_perl/mach/5.40/auto/Syntax/Keyword/Defer/Defer.so
  6. lib/perl5/site_perl/man/man3/Syntax::Keyword::Defer.3.gz
  7. @owner
  8. @group
  9. @mode
Collapse this list.
Dependency lines:
  • p5-Syntax-Keyword-Defer>0:devel/p5-Syntax-Keyword-Defer
To install the port:
cd /usr/ports/devel/p5-Syntax-Keyword-Defer/ && make install clean
To add the package, run one of these commands:
  • pkg install devel/p5-Syntax-Keyword-Defer
  • pkg install p5-Syntax-Keyword-Defer
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: p5-Syntax-Keyword-Defer
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1753197562 SHA256 (Syntax-Keyword-Defer-0.11.tar.gz) = b1f6b0be347efb355968abca961643f8e11144a9f301e81df5432795d9d63751 SIZE (Syntax-Keyword-Defer-0.11.tar.gz) = 29161

Packages (timestamps in pop-ups are UTC):
p5-Syntax-Keyword-Defer
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latest-0.11------
FreeBSD:13:quarterly--------
FreeBSD:14:latest-0.11--0.11---
FreeBSD:14:quarterly--------
FreeBSD:15:latest--n/a-n/a---
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. p5-XS-Parse-Keyword>0 : devel/p5-XS-Parse-Keyword
  2. p5-Module-Build>=0.4234 : devel/p5-Module-Build
  3. perl5>=5.40.r<5.41 : lang/perl5.40
Runtime dependencies:
  1. p5-XS-Parse-Keyword>0 : devel/p5-XS-Parse-Keyword
  2. perl5>=5.40.r<5.41 : lang/perl5.40
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
devel_p5-Syntax-Keyword-Defer
USES:
perl5
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (13 items)
Collapse this list.
  1. ftp://ftp.auckland.ac.nz/pub/perl/CPAN/authors/id/P/PE/PEVANS/
  2. ftp://ftp.cpan.org/pub/CPAN/authors/id/P/PE/PEVANS/
  3. ftp://ftp.cpan.org/pub/CPAN/modules/by-module/Syntax/
  4. ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/id/P/PE/PEVANS/
  5. ftp://ftp.kddlabs.co.jp/lang/perl/CPAN/authors/id/P/PE/PEVANS/
  6. ftp://ftp.mirrorservice.org/sites/cpan.perl.org/CPAN/authors/id/P/PE/PEVANS/
  7. http://backpan.perl.org/authors/id/P/PE/PEVANS/
  8. http://ftp.jaist.ac.jp/pub/CPAN/authors/id/P/PE/PEVANS/
  9. http://ftp.twaren.net/Unix/Lang/CPAN/authors/id/P/PE/PEVANS/
  10. https://cpan.metacpan.org/authors/id/P/PE/PEVANS/
  11. https://cpan.metacpan.org/modules/by-module/Syntax/
  12. https://www.cpan.org/authors/id/P/PE/PEVANS/
Collapse this list.

Number of commits found: 1

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
0.11
22 Jul 2025 17:36:41
commit hash: 74d272b780bd61747bc03c6e033a9ca52bf2d653commit hash: 74d272b780bd61747bc03c6e033a9ca52bf2d653commit hash: 74d272b780bd61747bc03c6e033a9ca52bf2d653commit hash: 74d272b780bd61747bc03c6e033a9ca52bf2d653 files touched by this commit
Dan Langille (dvl) search for other commits by this committer
devel/p5-Syntax-Keyword-Defer: Add new port

This module provides a syntax plugin that implements a block which executes
when the containing scope has finished.

       use Syntax::Keyword::Defer;

       {
          my $dbh = DBI->connect( ... ) or die "Cannot connect";
          defer { $dbh->disconnect; }

          my $sth = $dbh->prepare( ... ) or die "Cannot prepare";
          defer { $sth->finish; }

          ...
       }

Number of commits found: 1