Port details |
- p5-Crypt-DSA DSA signature and key generation
- 1.19 security =14 1.19Version of this port present on the latest quarterly branch.
- Maintainer: perl@FreeBSD.org
- Port Added: 2001-09-11 22:10:17
- Last Update: 2024-12-05 06:23:26
- Commit Hash: f581f5c
- People watching this port, also watch:: p5-Crypt-DES, p5-Digest-SHA1, p5-Digest-MD5, unzip, p5-libwww
- Also Listed In: perl5
- License: not specified in port
- WWW:
- https://metacpan.org/release/Crypt-DSA
- Description:
- Crypt::DSA is an implementation of the DSA (Digital Signature Algorithm)
signature verification system. The implementation itself is pure Perl,
although the heavy-duty mathematics underneath are provided by the
Math::Pari library.
This package provides DSA signing, signature verification, and key generation.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- p5-Crypt-DSA>0:security/p5-Crypt-DSA
- To install the port:
- cd /usr/ports/security/p5-Crypt-DSA/ && make install clean
- To add the package, run one of these commands:
- pkg install security/p5-Crypt-DSA
- pkg install p5-Crypt-DSA
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: p5-Crypt-DSA
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1733360360
SHA256 (Crypt-DSA-1.19.tar.gz) = 1d192241b587f0a41b9f1a38bb90c2e10dcf31104eaaaf35d4803b68ff6cda9c
SIZE (Crypt-DSA-1.19.tar.gz) = 30475
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- p5-Digest-SHA1>=0 : security/p5-Digest-SHA1
- p5-Convert-PEM>=0 : converters/p5-Convert-PEM
- p5-Data-Buffer>=0 : misc/p5-Data-Buffer
- p5-File-Which>=0.05 : sysutils/p5-File-Which
- perl5>=5.36<5.37 : lang/perl5.36
- perl5>=5.36<5.37 : lang/perl5.36
- Runtime dependencies:
-
- p5-Digest-SHA1>=0 : security/p5-Digest-SHA1
- p5-Convert-PEM>=0 : converters/p5-Convert-PEM
- p5-Data-Buffer>=0 : misc/p5-Data-Buffer
- p5-File-Which>=0.05 : sysutils/p5-File-Which
- perl5>=5.36<5.37 : lang/perl5.36
- This port is required by:
- for Build
-
- net/p5-Net-SSH-Perl
- security/p5-Crypt-OpenPGP
- for Run
-
- net/p5-Net-SSH-Perl
- security/p5-Crypt-OpenPGP
-
Deleted ports which required this port:
- * - deleted ports are only shown under the This port is required by section. It was harder to do for the Required section. Perhaps later...
Configuration Options:
- No options to configure
- Options name:
- security_p5-Crypt-DSA
- USES:
- perl5
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.19 05 Dec 2024 06:23:26 |
Wen Heping (wen) |
security/p5-Crypt-DSA: Update to 1.19 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.17_1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.17_1 20 Jul 2022 14:22:56 |
Tobias C. Berner (tcberner) |
security: remove 'Created by' lines
A big Thank You to the original contributors of these ports:
* <ports@c0decafe.net>
* Aaron Dalton <aaron@FreeBSD.org>
* Adam Weinberger <adamw@FreeBSD.org>
* Ade Lovett <ade@FreeBSD.org>
* Aldis Berjoza <aldis@bsdroot.lv>
* Alex Dupre <ale@FreeBSD.org>
* Alex Kapranoff <kappa@rambler-co.ru>
* Alex Samorukov <samm@freebsd.org>
* Alexander Botero-Lowry <alex@foxybanana.com>
* Alexander Kriventsov <avk@vl.ru>
* Alexander Leidinger <netchild@FreeBSD.org> (Only the first 15 lines of the commit message are shown above ) |
1.17_1 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.17_1 13 Jun 2019 15:50:20 |
sunpoet |
Add NO_ARCH |
1.17_1 09 Jul 2018 08:40:18 |
mat |
Remove all := from BUILD_DEPENDS, here are never needed.
While there, cleanup, and sort depends.
When build and run dependencies are the same, there are three ways to
avoid duplicating the list while not adding the framework added
BUILD_DEPENDS to the RUN_DEPENDS. In order of preference, they are:
1) use RUN_DEPENDS to set BUILD_DEPENDS:
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= foo:bar/baz
2) create another variable and use it:
MY_DEPENDS= foo:bar/baz
BUILD_DEPENDS= ${MY_DEPENDS}
RUN_DEPENDS= ${MY_DEPENDS}
3) use BUILD_DEPENDS to set RUN_DEPENDS and force evaluation:
BUILD_DEPENDS= foo:bar/baz
RUN_DEPENDS:= ${BUILD_DEPENDS}
Sponsored by: Absolight |
1.17_1 27 May 2018 20:15:20 |
sunpoet |
Update WWW
search.cpan.org is shutting down.
It will redirect to metacpan.org after June 25, 2018.
With hat: perl |
1.17_1 01 Apr 2016 14:25:18 |
mat |
Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.
With hat: portmgr
Sponsored by: Absolight |
1.17_1 26 Nov 2014 13:08:38 |
mat |
Change the way Perl modules are installed, update the default Perl to 5.18.
Before, we had:
site_perl : lib/perl5/site_perl/5.18
site_perl/perl_arch : lib/perl5/site_perl/5.18/mach
perl_man3 : lib/perl5/5.18/man/man3
Now we have:
site_perl : lib/perl5/site_perl
site_arch : lib/perl5/site_perl/mach/5.18
perl_man3 : lib/perl5/site_perl/man/man3
Modules without any .so will be installed at the same place regardless of the (Only the first 15 lines of the commit message are shown above ) |
1.17 06 Nov 2013 07:39:32 |
vanilla |
Support STAGEDIR. |
1.17 20 Sep 2013 22:55:26 |
bapt |
Add NO_STAGE all over the place in preparation for the staging support (cat:
security) |
1.17 02 Aug 2013 18:52:11 |
mat |
- Convert to new perl framework
- Trim Makefile header
- Remove MAKE_JOBS_SAFE=yes, it's the default. |
1.17 10 Jun 2012 18:42:48 |
swills |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi) |
1.17 06 Jun 2012 17:22:52 |
az |
- Remove SITE_PERL from *_DEPENDS |
1.17 18 Jun 2011 00:53:24 |
wen |
- Update to 1.17
ChangeLog: http://search.cpan.org/src/ADAMK/Crypt-DSA-1.17/Changes |
1.16_1 17 May 2011 11:11:48 |
jadawin |
- Cleaning MD5 in perl@'s ports
Approved by: erwin@ (portmgr) |
1.16_1 26 Jan 2010 15:01:10 |
kuriyama |
- Remove unneeded dependencies which is in perl-5.8.9 dist
(part 8).
Approved by: portmgr (itetcu) |
1.16 11 Sep 2009 16:10:05 |
tobez |
Update to 1.16.
Changes: http://search.cpan.org/dist/Crypt-DSA/Changes |
0.14 17 Apr 2008 14:30:31 |
araujo |
- Take advantage of CPAN macro from bsd.sites.mk, change
${MASTER_SITE_PERL_CPAN} to CPAN.
PR: ports/122674
Submitted by: Philip M. Gollucci <pgollucci@p6m7g8.com>
Reworked by: araujo (myself)
Approved by: portmgr (pav) |
0.14 08 Sep 2007 01:04:03 |
linimon |
Welcome bsd.perl.mk. Add support for constructs such as USE_PERL5=5.8.0+.
Drop support for antique perl.
Work done by: gabor
Sponsored by: Google Summer of Code 2007
Hat: portmgr |
0.14 23 Mar 2007 09:47:31 |
linimon |
Reset mharo due to maintainer-timeouts and no response to PRs.
Hat: portmgr |
0.14 28 Jun 2006 01:48:23 |
leeym |
- update to 0.14
PR: 98371
Submitted by: leeym
Approved by: maintainer timeout |
0.13_2 24 Jan 2006 01:03:33 |
edwin |
SHA256ify
Approved by: krion@ |
0.13_2 30 Dec 2005 03:05:29 |
leeym |
- correct dependency (Math::Pari -> Math::BigIng)
- utilize SITE_PERL
- add WWW in pkg-descr
PR: 90126
Submitted by: leeym
Approved by: maintainer timeout |
0.13_1 14 Nov 2005 05:03:34 |
mharo |
Upgrade to 0.13 |
0.12_1 09 Jan 2005 21:28:34 |
mharo |
increment PORTREVISION |
0.12 09 Jan 2005 21:25:11 |
mharo |
Add RUN_DEPENDS
PR: 75803
Submitted by: ITO, Takayuki <yuki@euc.jp> |
0.12 31 Mar 2004 03:12:58 |
trevor |
SIZEify (maintainer timeout) |
0.12 24 Oct 2003 12:05:09 |
ijliao |
utilize SITE_PERL
PR: 58166
Submitted by: Cheng-Lung Sung <clsung@dragon2.net> |
0.12 07 Mar 2003 06:10:51 |
ade |
Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.
E Nomini Patri, E Fili, E Spiritu Sancti. |
0.12 22 Feb 2003 16:12:23 |
nork |
Remove RESTRICTED tag for crypto stuff.
Approved by: kris (implicitly) |
0.12 05 Feb 2003 04:09:04 |
edwin |
p5-Crypt-DSA is more happy when p5-Data-Buffer is available:
Data::Buffer .................ok
Noticed while checking out the p5-Net-SSH-Perl problem. |
12 Sep 2001 02:10:17 |
mharo |
Crypt::DSA is an implementation of the DSA (Digital Signature Algorithm)
signature verification system. The implementation itself is pure Perl,
although the heavy-duty mathematics underneath are provided by the Math::Pari
library. |