Skip to content

Commit 1066663

Browse files
committedJan 29, 2018
perlPackages: bump some package versions
- Crypt-JWT: 0.018 -> 0.019 - DBIx-Class: 0.082840 -> 0.082841 - Getopt-Long-Descriptive: 0.100 -> 0.101 - SQL-Abstract: 1.81 -> 1.85
1 parent 393e39e commit 1066663

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed
 

‎pkgs/top-level/perl-packages.nix

+11-16
Original file line numberDiff line numberDiff line change
@@ -2722,10 +2722,10 @@ let self = _self // overrides; _self = with self; {
27222722
};
27232723

27242724
CryptJWT = buildPerlPackage rec {
2725-
name = "Crypt-JWT-0.018";
2725+
name = "Crypt-JWT-0.019";
27262726
src = fetchurl {
27272727
url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz";
2728-
sha256 = "90e78f7f0ced17e5c2080ad8c7008ce3badd05186e2ff20cf9c7232ed863cdaf";
2728+
sha256 = "26aaaaedc153b04bdaaba7df7ac2f7ce3bdf672c8d7111d09347a8d0c794725c";
27292729
};
27302730
propagatedBuildInputs = [ CryptX JSONMaybeXS ];
27312731
meta = {
@@ -3835,15 +3835,12 @@ let self = _self // overrides; _self = with self; {
38353835
};
38363836

38373837
DBIxClass = buildPerlPackage rec {
3838-
# tests broken again
3839-
doCheck = false;
3840-
name = "DBIx-Class-0.082840";
3838+
name = "DBIx-Class-0.082841";
38413839
src = fetchurl {
38423840
url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz";
3843-
sha256 = "4049afd175e315ebcab945b19030aec40bcec46cc5611b0286a5a267ca7181ef";
3841+
sha256 = "d705f85825aced299020534349778537524526d64f524217ca362787f683c3bd";
38443842
};
3845-
patches = [ ../development/perl-modules/dbiclassx-fix.patch ]; # Remove after next release
3846-
buildInputs = [ DBDSQLite PackageStash SQLTranslator TestDeep TestException TestWarn ];
3843+
buildInputs = [ DBDSQLite PackageStash TestDeep TestException TestWarn ];
38473844
propagatedBuildInputs = [ ClassAccessorGrouped ClassC3Componentised ClassInspector ConfigAny ContextPreserve DBI DataDumperConcise DataPage DevelGlobalDestruction HashMerge MROCompat ModuleFind Moo PathClass SQLAbstract ScopeGuard SubName TryTiny namespaceclean ];
38483845
meta = {
38493846
homepage = http://www.dbix-class.org/;
@@ -6053,18 +6050,17 @@ let self = _self // overrides; _self = with self; {
60536050
};
60546051

60556052
GetoptLongDescriptive = buildPerlPackage rec {
6056-
name = "Getopt-Long-Descriptive-0.100";
6053+
name = "Getopt-Long-Descriptive-0.101";
60576054
src = fetchurl {
60586055
url = "mirror://cpan/authors/id/R/RJ/RJBS/${name}.tar.gz";
6059-
sha256 = "1451e79310d1630de37690e3aba5c38ea5f01a486c5a43f0cd95bef2a02dffb6";
6056+
sha256 = "752e898ea6eb8706ceb836668ca645704f5dcbc3124b6d1b21d04007dbc46948";
60606057
};
60616058
buildInputs = [ CPANMetaCheck TestFatal TestWarnings ];
60626059
propagatedBuildInputs = [ ParamsValidate SubExporter ];
60636060
meta = {
60646061
homepage = https://github.com/rjbs/Getopt-Long-Descriptive;
60656062
description = "Getopt::Long, but simpler and more powerful";
60666063
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
6067-
maintainers = [ maintainers.rycee ];
60686064
};
60696065
};
60706066

@@ -12313,17 +12309,16 @@ let self = _self // overrides; _self = with self; {
1231312309
};
1231412310

1231512311
SQLAbstract = buildPerlPackage rec {
12316-
name = "SQL-Abstract-1.81";
12312+
name = "SQL-Abstract-1.85";
1231712313
src = fetchurl {
12318-
url = "mirror://cpan/authors/id/R/RI/RIBASUSHI/${name}.tar.gz";
12319-
sha256 = "5f4d5618ce2424d62bbfdb5228b382e8be0e0ccedbb273d6d850e25d07e64f9f";
12314+
url = "mirror://cpan/authors/id/I/IL/ILMARI/${name}.tar.gz";
12315+
sha256 = "9f44afe031a0cc63a6ccabaa46ba7ec58ef4db940559cee7fbc2dfbbf37bccab";
1232012316
};
1232112317
buildInputs = [ TestDeep TestException TestWarn ];
12322-
propagatedBuildInputs = [ HashMerge MROCompat Moo ];
12318+
propagatedBuildInputs = [ HashMerge MROCompat Moo SubQuote ];
1232312319
meta = {
1232412320
description = "Generate SQL from Perl data structures";
1232512321
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
12326-
maintainers = [ maintainers.rycee ];
1232712322
};
1232812323
};
1232912324

0 commit comments

Comments
 (0)
Please sign in to comment.