From fc79867da9706fa24b71beb1f06a4dca3e77be49 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Thu, 9 Aug 2018 02:37:02 +0200 Subject: gnu: ccrypt: Update to 1.11. * gnu/packages/crypto.scm (ccrypt): Update to 1.11. --- gnu/packages/crypto.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/crypto.scm') diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 730895efd9..87cae1e305 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -794,14 +794,14 @@ using ctypes is included, and several other language bindings are available.") (define-public ccrypt (package (name "ccrypt") - (version "1.10") + (version "1.11") (source (origin (method url-fetch) - (uri (string-append "mirror://sourceforge/ccrypt/ccrypt/" + (uri (string-append "mirror://sourceforge/ccrypt/" version "/ccrypt-" version ".tar.gz")) (sha256 (base32 - "184v9676hx2w875cz04rd3a20wrcms33a1zwybvapb0g2yi6vml7")))) + "0kx4a5mhmp73ljknl2lcccmw9z3f5y8lqw0ghaymzvln1984g75i")))) (build-system gnu-build-system) (home-page "http://ccrypt.sourceforge.net") (synopsis "Command-line utility for encrypting and decrypting files and streams") -- cgit v1.2.3 From 9aba9b127840a116c806a2cbac901cf8077abcd0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 11 Aug 2018 15:53:20 +0200 Subject: Migrate search.cpan.org home pages to metacpan.org. The venerable search.cpan.org has retired[0]. [0]: https://log.perl.org/2018/05/goodbye-search-dot-cpan-dot-org.html * guix/import/cpan.scm (cpan-home): Generate metacpan.org home page URIs. Update all previously generated ones in (gnu packages) to their canonical new homes. --- gnu/packages/crypto.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/crypto.scm') diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 87cae1e305..ae6150b0ab 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -523,7 +523,7 @@ attacks than alternative functions such as @code{PBKDF2} or @code{bcrypt}.") (native-inputs `(("perl-module-build" ,perl-module-build) ("perl-test-nowarnings" ,perl-test-nowarnings))) - (home-page "http://search.cpan.org/dist/Math-Random-ISAAC-XS") + (home-page "https://metacpan.org/release/Math-Random-ISAAC-XS") (synopsis "C implementation of the ISAAC PRNG algorithm") (description "ISAAC (Indirection, Shift, Accumulate, Add, and Count) is a fast pseudo-random number generator. It is suitable for applications where a @@ -551,7 +551,7 @@ This package implements the same interface as @code{Math::Random::ISAAC}.") `(("perl-test-nowarnings" ,perl-test-nowarnings))) (propagated-inputs `(("perl-math-random-isaac-xs" ,perl-math-random-isaac-xs))) - (home-page "http://search.cpan.org/dist/Math-Random-ISAAC") + (home-page "https://metacpan.org/release/Math-Random-ISAAC") (synopsis "Perl interface to the ISAAC PRNG algorithm") (description "ISAAC (Indirection, Shift, Accumulate, Add, and Count) is a fast pseudo-random number generator. It is suitable for applications where a @@ -587,7 +587,7 @@ generator.") ("perl-namespace-clean" ,perl-namespace-clean) ("perl-sub-exporter" ,perl-sub-exporter) ("perl-type-tiny" ,perl-type-tiny))) - (home-page "http://search.cpan.org/dist/Crypt-Random-Source") + (home-page "https://metacpan.org/release/Crypt-Random-Source") (synopsis "Get weak or strong random data from pluggable sources") (description "This module provides implementations for a number of byte-oriented sources of random data.") @@ -616,7 +616,7 @@ byte-oriented sources of random data.") ("perl-math-random-isaac" ,perl-math-random-isaac) ("perl-math-random-isaac-xs" ,perl-math-random-isaac-xs) ("perl-moo" ,perl-moo))) - (home-page "http://search.cpan.org/dist/Math-Random-Secure") + (home-page "https://metacpan.org/release/Math-Random-Secure") (synopsis "Cryptographically secure replacement for rand()") (description "This module is intended to provide a cryptographically-secure replacement for Perl's built-in @code{rand} function. -- cgit v1.2.3