View | Details | Raw Unified | Return to bug 228226 | Differences between
and this patch

Collapse All | Expand All

(-)b/ports-mgmt/pkg_cutleaves/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	pkg_cutleaves
4
PORTNAME=	pkg_cutleaves
5
PORTVERSION=	20180108
5
PORTVERSION=	20180513
6
CATEGORIES=	ports-mgmt
6
CATEGORIES=	ports-mgmt
7
MASTER_SITES=	# none
7
MASTER_SITES=	# none
8
DISTFILES=	# none
8
DISTFILES=	# none
(-)b/ports-mgmt/pkg_cutleaves/files/pkg_cutleaves (-2 / +1 lines)
Lines 358-364 sub create_excludelist { Link Here
358
    or die "Failed to open exclude list ($excludefile): $!\n";
358
    or die "Failed to open exclude list ($excludefile): $!\n";
359
  print EXCLFILE '# Auto-generated exclude list ', scalar localtime, "\n";
359
  print EXCLFILE '# Auto-generated exclude list ', scalar localtime, "\n";
360
  for (sort keys %leavestokeep) {
360
  for (sort keys %leavestokeep) {
361
    /^(.+)-\d.*$/o 
361
    /^(.+)-g?\d.*$/o 
362
      ? print EXCLFILE $1, "\n"
362
      ? print EXCLFILE $1, "\n"
363
      : warn 'Unable to extract exclude pattern from ', $_, "\n";
363
      : warn 'Unable to extract exclude pattern from ', $_, "\n";
364
  }
364
  }
365
- 

Return to bug 228226