Key | Value |
---|---|
FileName | ./usr/share/doc/packages/perl-Test-TempDir-Tiny/LICENSE |
FileSize | 11500 |
MD5 | A801633F1C5BD3F1F7AA60BC72E95DF9 |
SHA-1 | 5304BF21BD261AC05D4427FC4D0B971E8B2731CC |
SHA-256 | A999B03D2B80E5C7F987289AC835FA2D88CAFA9F0DF24ADF8A1FD21E175ACD79 |
SSDEEP | 192:2NU6G5KXSD9VYUKhu1JVF9hFGvV/QiGkS594drFjuHYx5dvTrLh3kTSEn7HbHR:2m9vlKM1zJlFvmNz5VrlkTS07Ht |
TLSH | T1B332532FBA48037716C20162BB9764CBF31E903F3B552568354CC1681F6B96543FB6EA |
hashlookup:parent-total | 301 |
hashlookup:trust | 100 |
The searched file hash is included in 301 parent files which include package known and seen by metalookup. A sample is included below:
Key | Value |
---|---|
MD5 | 754DC5B9E57181EDA4F4FB035F75D4F3 |
PackageArch | noarch |
PackageDescription | This module provides an RFC 2898 compliant PBKDF2 implementation using HMAC-SHA1 or HMAC-SHA2. |
PackageMaintainer | Fedora Project |
PackageName | perl-PBKDF2-Tiny |
PackageRelease | 3.fc23 |
PackageVersion | 0.005 |
SHA-1 | 011158D296CBB2889043C03B0AF1FFE1265CB6E0 |
SHA-256 | C49F33826736DCF06FFA1201F6DC9A850622D085F7B3B9CA46A0C5972DE414D0 |
Key | Value |
---|---|
MD5 | 6A54394E700A1A30A753B86D3E6B1692 |
PackageArch | noarch |
PackageDescription | This module provides an RFC 2898 compliant PBKDF2 implementation using HMAC-SHA1 or HMAC-SHA2 in under 100 lines of code. If you are using Perl 5.10 or later, it uses only core Perl modules. If you are on an earlier version of Perl, you need Digest::SHA or Digest::SHA::PurePerl. |
PackageMaintainer | <chris@computersalat.de> |
PackageName | perl-PBKDF2-Tiny |
PackageRelease | lp153.1.1 |
PackageVersion | 0.005 |
SHA-1 | 01D6339C5914E44B92C05ED4D644C2172459F3D3 |
SHA-256 | 2052F6A40BE75FE9A542C4981DBC4C3995A716F9E9F2ADC78CAF31CC44F7A31B |
Key | Value |
---|---|
MD5 | 146646FD5E3F21F1FBC7F4DFC83208C3 |
PackageArch | noarch |
PackageDescription | This module provides an RFC 2898 compliant PBKDF2 implementation using HMAC-SHA1 or HMAC-SHA2. |
PackageMaintainer | Fedora Project |
PackageName | perl-PBKDF2-Tiny |
PackageRelease | 4.fc24 |
PackageVersion | 0.005 |
SHA-1 | 01E0FA7AC698061DDB980129D7A1159572C736E6 |
SHA-256 | 395B1D1A70E02C6DABF094A2F283C3E9520A4E69AB1C474B7F916028DFBC42E4 |
Key | Value |
---|---|
MD5 | 66E3F5255DCD4FAE2EA0D49862E9EEBE |
PackageArch | noarch |
PackageDescription | This plugin will use the Net::Twitter manpage to send a release notice to Twitter. By default, it will include a link to release on the http://metacpan.org manpage. The default configuration is as follows: [Twitter] tweet_url = https://metacpan.org/release/{{$AUTHOR_UC}}/{{$DIST}}-{{$VERSION}}/ tweet = Released {{$DIST}}-{{$VERSION}}{{$TRIAL}} {{$URL}} !META{resources}{repository}{web} url_shortener = TinyURL The 'tweet_url' is shortened with the WWW::Shorten::TinyURL manpage or whichever other service you choose (use 'none' to use the full URL, in which case Twitter will shorten it for you) and appended to the 'tweet' message. |
PackageName | perl-Dist-Zilla-Plugin-Twitter |
PackageRelease | lp152.1.1 |
PackageVersion | 0.026 |
SHA-1 | 02814F6E8B41479CA39187C3B0161655FE349206 |
SHA-256 | DA5A21E3F682F7888FFF9DD3F50833C404CCEED1C9554BEA7EED15235AB8F853 |
Key | Value |
---|---|
MD5 | 11B6A607E629E867B9B085F9999DB9EA |
PackageArch | noarch |
PackageDescription | At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. This module provides such a function for use with the Test::More manpage. Usage is similar to other test functions described in the Test::More manpage. Semantically, the 'delta_within' function replaces this kind of construct: ok ( abs($p - $q) < $epsilon, '$p is equal to $q' ) or diag "$p is not equal to $q to within $epsilon"; While there's nothing wrong with that construct, it's painful to type it repeatedly in a test script. This module does the same thing with a single function call. The 'delta_ok' function is similar, but either uses a global default value for epsilon or else calculates a 'relative' epsilon on the fly so that epsilon is scaled automatically to the size of the arguments to 'delta_ok'. Both functions are exported automatically. Because checking floating-point equality is not always reliable, it is not possible to check the 'equal to' boundary of 'less than or equal to epsilon'. Therefore, Test::Number::Delta only compares if the absolute value of the difference is *less than* epsilon (for equality tests) or *greater than* epsilon (for inequality tests). |
PackageName | perl-Test-Number-Delta |
PackageRelease | lp152.2.1 |
PackageVersion | 1.060000 |
SHA-1 | 028AE521A86ABED198D4123BFD56279274AD24AB |
SHA-256 | 7A529E1BA5146D94F2E05D22A8E947D199C7937DA4D7608C28B33A972E444B30 |
Key | Value |
---|---|
MD5 | 7CF1BA969C15C85CAA97101F54FD907F |
PackageArch | noarch |
PackageDescription | At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. This module provides such a function for use with the Test::More manpage. Usage is similar to other test functions described in the Test::More manpage. Semantically, the 'delta_within' function replaces this kind of construct: ok ( abs($p - $q) < $epsilon, '$p is equal to $q' ) or diag "$p is not equal to $q to within $epsilon"; While there's nothing wrong with that construct, it's painful to type it repeatedly in a test script. This module does the same thing with a single function call. The 'delta_ok' function is similar, but either uses a global default value for epsilon or else calculates a 'relative' epsilon on the fly so that epsilon is scaled automatically to the size of the arguments to 'delta_ok'. Both functions are exported automatically. Because checking floating-point equality is not always reliable, it is not possible to check the 'equal to' boundary of 'less than or equal to epsilon'. Therefore, Test::Number::Delta only compares if the absolute value of the difference is *less than* epsilon (for equality tests) or *greater than* epsilon (for inequality tests). |
PackageName | perl-Test-Number-Delta |
PackageRelease | 32.1 |
PackageVersion | 1.060000 |
SHA-1 | 055F0D32C4164330C7B89E5129A3F518ED92BB5F |
SHA-256 | C081AA82A526FE21BE068F0118D2081F715CF9A93CD5F33A0C080B68963A0903 |
Key | Value |
---|---|
MD5 | B9AE5596813ED8D49AA38A530291C736 |
PackageArch | noarch |
PackageDescription | This module is a hack to set autoflush for STDOUT and STDERR from the command line or from PERL5OPT for code that needs it but doesn't have it. |
PackageMaintainer | Fedora Project |
PackageName | perl-Devel-Autoflush |
PackageRelease | 20.fc34 |
PackageVersion | 0.06 |
SHA-1 | 05F33CFAD0E14A7B3B60AB5EF621EA24B6E23396 |
SHA-256 | 9BB7C238A95FD91AD3FB5963F318F1DBCD59FB1009937A9237ACDB9A620D0255 |
Key | Value |
---|---|
MD5 | 88F1862CD0EEC500B6B2FE0261445F9F |
PackageArch | noarch |
PackageDescription | At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. This module provides such a function for use with the Test::More manpage. Usage is similar to other test functions described in the Test::More manpage. Semantically, the 'delta_within' function replaces this kind of construct: ok ( abs($p - $q) < $epsilon, '$p is equal to $q' ) or diag "$p is not equal to $q to within $epsilon"; While there's nothing wrong with that construct, it's painful to type it repeatedly in a test script. This module does the same thing with a single function call. The 'delta_ok' function is similar, but either uses a global default value for epsilon or else calculates a 'relative' epsilon on the fly so that epsilon is scaled automatically to the size of the arguments to 'delta_ok'. Both functions are exported automatically. Because checking floating-point equality is not always reliable, it is not possible to check the 'equal to' boundary of 'less than or equal to epsilon'. Therefore, Test::Number::Delta only compares if the absolute value of the difference is *less than* epsilon (for equality tests) or *greater than* epsilon (for inequality tests). |
PackageMaintainer | https://bugs.opensuse.org |
PackageName | perl-Test-Number-Delta |
PackageRelease | bp156.3.1 |
PackageVersion | 1.060000 |
SHA-1 | 070F734EEB7CD2B67978CDACA0B526EB37CE001F |
SHA-256 | 289904CEC78611958A6416625E2C1FECBCEFB1D50024BF786CB6BEA69A5FEF0E |
Key | Value |
---|---|
MD5 | B59D973E272DF40FF3989BC7BB5B6777 |
PackageArch | noarch |
PackageDescription | The 'ylib' module adds paths to '@INC' from a configuration file named '.mylib' in which each line represents a library path. The '.mylib' file can be either in the current directory and/or in the user's home directory. It is equivalent to calling ''use lib'' on each path. Note: 'ylib' will issue a warning if a path in '.mylib' can't be found. |
PackageName | perl-ylib |
PackageRelease | 4.43 |
PackageVersion | 0.003 |
SHA-1 | 07CD23C86F1F3DE0461870ACA88277893974F80B |
SHA-256 | 7D397763179BBAEC0D65DDF7DA4FA4105956AF07402D7C3B37B11BB1981A0D29 |
Key | Value |
---|---|
MD5 | 3FD8FEBB20E4BDAF6E317A0862126E41 |
PackageArch | noarch |
PackageDescription | This module works with Test::More to create temporary directories that stick around if tests fail. It is loosely based on Test::TempDir, but with less complexity, greater portability and zero non-core dependencies. (Capture::Tiny is recommended for testing.) The tempdir and in_tempdir functions are exported by default. If the current directory is writable, the root for directories will be _./tmp_. Otherwise, a File::Temp directory will be created wherever temporary directories are stored for your system. Every _*.t_ file gets its own subdirectory under the root based on the test filename, but with slashes and periods replaced with underscores. For example, _t/foo.t_ would get a test-file-specific subdirectory _./tmp/t_foo_t/_. Directories created by tempdir get put in that directory. This makes it very easy to find files later if tests fail. The test-file-specific name is consistent from run-to-run. If an old directory already exists, it will be removed. When the test file exits, if all tests passed, then the test-file-specific directory is recursively removed. If a test failed and the root directory is _./tmp_, the test-file-specific directory sticks around for inspection. (But if the root is a File::Temp directory, it is always discarded). If nothing is left in _./tmp_ (i.e. no other test file failed), then _./tmp_ is cleaned up as well (unless it's a symlink). This module attempts to avoid race conditions due to parallel testing. In extreme cases, the test-file-specific subdirectory might be created as a regular File::Temp directory rather than in _./tmp_. In such a case, a warning will be issued. |
PackageName | perl-Test-TempDir-Tiny |
PackageRelease | 7.1 |
PackageVersion | 0.018 |
SHA-1 | 09CA9D8EFC40128C3ACFCB3510C9727BB3C39499 |
SHA-256 | A2EA29B0C1BD55C5445AA7A233ADECADFE2D273325EB5C26808197C17D9CF91E |