diff --git a/devel/p5-Uniq/Makefile b/devel/p5-Uniq/Makefile index 4b711596beaf..18bbca71dbda 100644 --- a/devel/p5-Uniq/Makefile +++ b/devel/p5-Uniq/Makefile @@ -1,19 +1,19 @@ PORTNAME= Uniq PORTVERSION= 0.01 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:SYAMAL PKGNAMEPREFIX= p5- MAINTAINER= ehaupt@FreeBSD.org COMMENT= Perl extension for managing a uniq list of values WWW= https://metacpan.org/release/Uniq USES= perl5 USE_PERL5= configure NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME} .include diff --git a/devel/p5-Uniq/pkg-descr b/devel/p5-Uniq/pkg-descr index 6b20cc108eae..a7caf5be4fd0 100644 --- a/devel/p5-Uniq/pkg-descr +++ b/devel/p5-Uniq/pkg-descr @@ -1 +1,9 @@ -Perl extension for managing list of values. +Uniq is a Perl module designed for simple and effective list management, +specifically targeting the elimination of duplicate values. It includes +functions like uniq, which filters out duplicate entries from a list, +dups for identifying any repeated values, and distinct to guarantee a +list of only unique elements. This module is particularly useful for +tasks that involve data cleaning or when you need to ensure the +uniqueness of list items in your Perl scripts. Easy to integrate and +use, Uniq helps maintain clean and efficient lists in any Perl project, +making it a practical tool for developers and anyone working with data.