Result for E05937FF914A2FDB4603FD22CEAFD0C8428E0931

Query result

Key Value
FileName./usr/share/doc/packages/perl-libwww-perl/CONTRIBUTING.md
FileSize4228
MD5D05CA2311235B8193F96D4770115E1EC
RDS:package_id263811
SHA-1E05937FF914A2FDB4603FD22CEAFD0C8428E0931
SHA-256D0CD9618DDB134E9CDE51172E81EE1F2D359C7DAB456A79C19C195D8242C2BEB
SSDEEP96:gtxJoBuaruz5vLsXLdYewBb9es/HQqNWsat9xDv9c1jtxg:ghoEEuzeZi9eVTP1SjU
TLSHT1659153BB5540172857C302E091AA50F3F35FC21F5345007AACAE46ED032BA63E2FB9E9
insert-timestamp1654960411.6219506
sourcemodern.db
hashlookup:parent-total95
hashlookup:trust100

Network graph view

Parents (Total: 95)

The searched file hash is included in 95 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD52039A400B01C3E26F879729DFCADE835
PackageArchnoarch
PackageDescriptionThe LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. If hostname verification is requested by LWP::UserAgent's 'ssl_opts', and neither 'SSL_ca_file' nor 'SSL_ca_path' is set, then 'SSL_ca_file' is implied to be the one provided by Mozilla::CA. If the Mozilla::CA module isn't available SSL requests will fail. Either install this module, set up an alternative 'SSL_ca_file' or disable hostname verification. This module used to be bundled with the libwww-perl, but it was unbundled in v6.02 in order to be able to declare its dependencies properly for the CPAN tool-chain. Applications that need https support can just declare their dependency on LWP::Protocol::https and will no longer need to know what underlying modules to install.
PackageNameperl-LWP-Protocol-https
PackageReleaselp153.29.13
PackageVersion6.10
SHA-10099619ED11ABA0F78E404ED1FFDB9C453553519
SHA-2568B9208F8A7B2C704ADFF4D33DE8688BA58C331B417AD3503EA0F51BD52B5A938
Key Value
MD591B8A65000C3F2EB04F347E7ADE560C7
PackageArchnoarch
PackageDescriptionPerl implementation of the 'filevercmp' function from at https://www.gnu.org/software/gnulib/. 'filevercmp' is used by the sort(1) ('-V' option) and ls(1) ('-v' option) GNU coreutils commands for "natural" sorting of strings (usually filenames) containing mixed version numbers and filename suffixes.
PackageNameperl-Sort-filevercmp
PackageRelease1.37
PackageVersion0.001
SHA-106FB619E31E7D4AEE4C86C61C0BC97DAA0E6C2DD
SHA-256818C091BC00E1F1D25FB4727F2E99906A0120DFF23BE99939C62AD7C9CC925BA
Key Value
MD5162732DA2A3D20D619B3920F568315D2
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleaselp151.2.1
PackageVersion3.000
SHA-10C34E99FA073D337605CB10F35B7A7852087D9EB
SHA-25605124A6A414027BBDF64CA9FB31377C22ED52F2354C83000ECB8C97E26BEAFCF
Key Value
MD522A13068770854779E81B7294A01F685
PackageArchnoarch
PackageDescriptionThis module implements the URI class. Objects of this class represent "Uniform Resource Identifier references" as specified in RFC 2396 (and updated by RFC 2732).
PackageMaintainerFedora Project
PackageNameperl-URI
PackageRelease9.module_f33+9696+dc99464e
PackageVersion1.76
SHA-10C56C231DB6672563781451C88CC2F695E2F3901
SHA-256ECEFDFB6DE309F877BFB7C42638C182D79550EA74FEC0D0D9D724D6E5387E0D9
Key Value
MD526F653AFE53A64B43CE0BB01172EE0C7
PackageArchnoarch
PackageDescriptionThis module allows splitting of text paragraphs into sentences. It is based on scripts developed by Philipp Koehn and Josh Schroeder for processing the Europarl corpus (http://www.statmt.org/europarl/). The module uses punctuation and capitalization clues to split paragraphs into an newline-separated string with one sentence per line. For example: This is a paragraph. It contains several sentences. "But why," you ask? goes to: This is a paragraph. It contains several sentences. "But why," you ask? Languages currently supported by the module are: * Catalan * Czech * Dutch * English * French * German * Greek * Hungarian * Icelandic * Italian * Latvian * Polish * Portuguese * Russian * Spanish * Slovak * Slovenian * Swedish
PackageNameperl-Lingua-Sentence
PackageRelease1.41
PackageVersion1.100
SHA-10EC04E0F4F25884F9D06A6F9647119F419311FD1
SHA-25673309BB52B2CA0A158F6768DE273D3B7D45EDF2B9751DD2FDD8245493DEABD37
Key Value
MD5519A5187AA132024C800165BD9DA5BD6
PackageArchnoarch
PackageDescriptionThe LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. If hostname verification is requested by LWP::UserAgent's 'ssl_opts', and neither 'SSL_ca_file' nor 'SSL_ca_path' is set, then 'SSL_ca_file' is implied to be the one provided by Mozilla::CA. If the Mozilla::CA module isn't available SSL requests will fail. Either install this module, set up an alternative 'SSL_ca_file' or disable hostname verification. This module used to be bundled with the libwww-perl, but it was unbundled in v6.02 in order to be able to declare its dependencies properly for the CPAN tool-chain. Applications that need https support can just declare their dependency on LWP::Protocol::https and will no longer need to know what underlying modules to install.
PackageNameperl-LWP-Protocol-https
PackageReleaselp150.29.1
PackageVersion6.10
SHA-10FED446A570829E097907E19CD3E4957C2325F7F
SHA-2569D29FAEF5806B2A86B1367E2AB106D01C27982BFE25B4A21446BF1B728F1CB1C
Key Value
MD57A3810CBACECA26040B2392E5B6D8045
PackageArchnoarch
PackageDescriptionThe World-Wide Web library for Perl
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-libwww-perl
PackageReleaselp150.1.3
PackageVersion6.31
SHA-110B43875ED4EB00F69DD90BB629842A024D182D2
SHA-256777A28288123C98069A25AFA75D8B7EAAE2536424017B4D66838A21E55EA0AD1
Key Value
MD5F6B6A8FEFD51F2CCC04A89409775CD9F
PackageArchnoarch
PackageDescriptionThis is the core module for Module::Starter. If you're not looking to extend or alter the behavior of this module, you probably want to look at module-starter instead. Module::Starter is used to create a skeletal CPAN distribution, including basic builder scripts, tests, documentation, and module code. This is done through just one method, 'create_distro'.
PackageNameperl-Module-Starter
PackageRelease30.1
PackageVersion1.77
SHA-1135B7AA263EE182758EB40FE47FEB677DB9E8785
SHA-256FAAA86D088D4640AFB0CD576E88672A37625911D5D201283100299F2B491C689
Key Value
MD592BC9429DDDE9DC05207BB861F13B28A
PackageArchnoarch
PackageDescriptionThis is the core module for Module::Starter. If you're not looking to extend or alter the behavior of this module, you probably want to look at module-starter instead. Module::Starter is used to create a skeletal CPAN distribution, including basic builder scripts, tests, documentation, and module code. This is done through just one method, 'create_distro'.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Module-Starter
PackageRelease1.8
PackageVersion1.77
SHA-1187C882EF5BD11175E0096375F6A91B917F23EBF
SHA-2564289F024912A6B1B6AF3E66D8B07815A22D4BB9CDB6EC0BCA88C470246981726
Key Value
MD5CCBFF758BB266F50D28CA45B9298A13A
PackageArchnoarch
PackageDescriptionThe LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. If hostname verification is requested by LWP::UserAgent's 'ssl_opts', and neither 'SSL_ca_file' nor 'SSL_ca_path' is set, then 'SSL_ca_file' is implied to be the one provided by Mozilla::CA. If the Mozilla::CA module isn't available SSL requests will fail. Either install this module, set up an alternative 'SSL_ca_file' or disable hostname verification. This module used to be bundled with the libwww-perl, but it was unbundled in v6.02 in order to be able to declare its dependencies properly for the CPAN tool-chain. Applications that need https support can just declare their dependency on LWP::Protocol::https and will no longer need to know what underlying modules to install.
PackageNameperl-LWP-Protocol-https
PackageRelease1.2
PackageVersion6.10
SHA-11A6A6FA9A781C82929D0446F9E468E2E1240A203
SHA-256EBEC8B17A8306654C62906535F4ACDB76A26531EBE0C3E64DC18EFCCA25260B8