Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perlPackages.AppSqitch: 1.4.0 -> 1.4.1 #351171

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 34 additions & 6 deletions pkgs/top-level/perl-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -992,15 +992,14 @@ with self; {
};

AppSqitch = buildPerlModule {
version = "1.4.0";
version = "1.4.1";
pname = "App-Sqitch";
src = fetchurl {
url = "mirror://cpan/authors/id/D/DW/DWHEELER/App-Sqitch-v1.4.0.tar.gz";
hash = "sha256-sNs4cDH3dWJmLgA7xV16EComOAtK1/25qKO61XaeUBw=";
url = "mirror://cpan/authors/id/D/DW/DWHEELER/App-Sqitch-v1.4.1.tar.gz";
hash = "sha256-yvMcyPdy46TJ1LP/Oo9oSm61sbPCYfTdwPkKiMNgB8Y=";
};
buildInputs = [ CaptureTiny TestDeep TestDir TestException TestFile TestFileContents TestMockModule TestMockObject TestNoWarnings TestWarn ];
propagatedBuildInputs = [ Clone ConfigGitLike DBI DateTime EncodeLocale HashMerge IOPager IPCRun3 IPCSystemSimple ListMoreUtils PathClass PerlIOutf8_strict PodParser StringFormatter StringShellQuote TemplateTiny Throwable TypeTiny URIdb libintl-perl ];
doCheck = false; # Can't find home directory.
buildInputs = [ CaptureTiny TestExit TestDeep TestDir TestException TestFile TestFileContents TestMockModule TestMockObject TestNoWarnings TestWarn ];
propagatedBuildInputs = [ Clone ConfigGitLike DBI DateTime EncodeLocale HashMerge IOPager IPCRun3 IPCSystemSimple ListMoreUtils PathClass PerlIOutf8_strict PodParser StringFormatter StringShellQuote TemplateTiny Throwable TypeTiny URIdb libintl-perl AlgorithmBackoff ];
meta = {
description = "Sensible database change management";
homepage = "https://sqitch.org";
Expand Down Expand Up @@ -22105,6 +22104,21 @@ with self; {
};
};

ReturnMultiLevel = buildPerlPackage {
pname = "Return-MultiLevel";
version = "0.08";
src = fetchurl {
url = "mirror://cpan/authors/id/P/PL/PLICEASE/Return-MultiLevel-0.08.tar.gz";
hash = "sha256-UbGu8wxcQAn2QCZ6CFiSEuh9zRAYAPDSD5xjXJ/+iKE=";
};
buildInputs = [ TestFatal ];
meta = {
homepage = "https://metacpan.org/pod/Return::MultiLevel";
description = "Return across multiple call levels";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};

Comment on lines +22107 to +22121
Copy link
Member

@zakame zakame Oct 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please commit separately under perlPackages.ReturnMultiLevel: init at 0.08

ReturnValue = buildPerlPackage {
pname = "Return-Value";
version = "1.666005";
Expand Down Expand Up @@ -25039,6 +25053,20 @@ with self; {
};
};

TestExit = buildPerlPackage {
pname = "Test-Exit";
version = "0.11";
src = fetchurl {
url = "mirror://cpan/authors/id/A/AR/ARODLAND/Test-Exit-0.11.tar.gz";
hash = "sha256-+9qS034EgdGO68geSNAlIotXGExZstWm9r34cELox7I=";
};
propagatedBuildInputs = [ ReturnMultiLevel ];
meta = {
description = "Test whether code exits without terminating testing";
license = with lib.licenses; [ artistic1 gpl1Plus ];
};
};

Comment on lines +25056 to +25069
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also commit this separately as perlPackages.TestExit: init at 0.11

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have rearanged the commits in git so they appear in a correct order based on dependencies:

[akegalj@x220:~/projects/nixpkgs]$ git log --pretty=format:%s HEAD^~2..HEAD
perlPackages.AppSqitch: 1.4.0 -> 1.4.1
perlPackages.TestExit: init at 0.11
perlPackages.ReturnMultiLevel: init at 0.08

TestExpect = buildPerlPackage {
pname = "Test-Expect";
version = "0.34";
Expand Down