Key | Value |
---|---|
FileName | ./usr/share/doc/packages/perl-libwww-perl/CONTRIBUTING.md |
FileSize | 4228 |
MD5 | D05CA2311235B8193F96D4770115E1EC |
RDS:package_id | 263811 |
SHA-1 | E05937FF914A2FDB4603FD22CEAFD0C8428E0931 |
SHA-256 | D0CD9618DDB134E9CDE51172E81EE1F2D359C7DAB456A79C19C195D8242C2BEB |
SSDEEP | 96:gtxJoBuaruz5vLsXLdYewBb9es/HQqNWsat9xDv9c1jtxg:ghoEEuzeZi9eVTP1SjU |
TLSH | T1659153BB5540172857C302E091AA50F3F35FC21F5345007AACAE46ED032BA63E2FB9E9 |
insert-timestamp | 1654960411.6219506 |
source | modern.db |
hashlookup:parent-total | 95 |
hashlookup:trust | 100 |
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 |
---|---|
MD5 | 2039A400B01C3E26F879729DFCADE835 |
PackageArch | noarch |
PackageDescription | The 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. |
PackageName | perl-LWP-Protocol-https |
PackageRelease | lp153.29.13 |
PackageVersion | 6.10 |
SHA-1 | 0099619ED11ABA0F78E404ED1FFDB9C453553519 |
SHA-256 | 8B9208F8A7B2C704ADFF4D33DE8688BA58C331B417AD3503EA0F51BD52B5A938 |
Key | Value |
---|---|
MD5 | 91B8A65000C3F2EB04F347E7ADE560C7 |
PackageArch | noarch |
PackageDescription | Perl 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. |
PackageName | perl-Sort-filevercmp |
PackageRelease | 1.37 |
PackageVersion | 0.001 |
SHA-1 | 06FB619E31E7D4AEE4C86C61C0BC97DAA0E6C2DD |
SHA-256 | 818C091BC00E1F1D25FB4727F2E99906A0120DFF23BE99939C62AD7C9CC925BA |
Key | Value |
---|---|
MD5 | 162732DA2A3D20D619B3920F568315D2 |
PackageArch | noarch |
PackageDescription | Mojo::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); |
PackageMaintainer | https://bugs.opensuse.org |
PackageName | perl-Mojo-SQLite |
PackageRelease | lp151.2.1 |
PackageVersion | 3.000 |
SHA-1 | 0C34E99FA073D337605CB10F35B7A7852087D9EB |
SHA-256 | 05124A6A414027BBDF64CA9FB31377C22ED52F2354C83000ECB8C97E26BEAFCF |
Key | Value |
---|---|
MD5 | 22A13068770854779E81B7294A01F685 |
PackageArch | noarch |
PackageDescription | This module implements the URI class. Objects of this class represent "Uniform Resource Identifier references" as specified in RFC 2396 (and updated by RFC 2732). |
PackageMaintainer | Fedora Project |
PackageName | perl-URI |
PackageRelease | 9.module_f33+9696+dc99464e |
PackageVersion | 1.76 |
SHA-1 | 0C56C231DB6672563781451C88CC2F695E2F3901 |
SHA-256 | ECEFDFB6DE309F877BFB7C42638C182D79550EA74FEC0D0D9D724D6E5387E0D9 |
Key | Value |
---|---|
MD5 | 26F653AFE53A64B43CE0BB01172EE0C7 |
PackageArch | noarch |
PackageDescription | This 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 |
PackageName | perl-Lingua-Sentence |
PackageRelease | 1.41 |
PackageVersion | 1.100 |
SHA-1 | 0EC04E0F4F25884F9D06A6F9647119F419311FD1 |
SHA-256 | 73309BB52B2CA0A158F6768DE273D3B7D45EDF2B9751DD2FDD8245493DEABD37 |
Key | Value |
---|---|
MD5 | 519A5187AA132024C800165BD9DA5BD6 |
PackageArch | noarch |
PackageDescription | The 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. |
PackageName | perl-LWP-Protocol-https |
PackageRelease | lp150.29.1 |
PackageVersion | 6.10 |
SHA-1 | 0FED446A570829E097907E19CD3E4957C2325F7F |
SHA-256 | 9D29FAEF5806B2A86B1367E2AB106D01C27982BFE25B4A21446BF1B728F1CB1C |
Key | Value |
---|---|
MD5 | 7A3810CBACECA26040B2392E5B6D8045 |
PackageArch | noarch |
PackageDescription | The World-Wide Web library for Perl |
PackageMaintainer | https://bugs.opensuse.org |
PackageName | perl-libwww-perl |
PackageRelease | lp150.1.3 |
PackageVersion | 6.31 |
SHA-1 | 10B43875ED4EB00F69DD90BB629842A024D182D2 |
SHA-256 | 777A28288123C98069A25AFA75D8B7EAAE2536424017B4D66838A21E55EA0AD1 |
Key | Value |
---|---|
MD5 | F6B6A8FEFD51F2CCC04A89409775CD9F |
PackageArch | noarch |
PackageDescription | This 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'. |
PackageName | perl-Module-Starter |
PackageRelease | 30.1 |
PackageVersion | 1.77 |
SHA-1 | 135B7AA263EE182758EB40FE47FEB677DB9E8785 |
SHA-256 | FAAA86D088D4640AFB0CD576E88672A37625911D5D201283100299F2B491C689 |
Key | Value |
---|---|
MD5 | 92BC9429DDDE9DC05207BB861F13B28A |
PackageArch | noarch |
PackageDescription | This 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'. |
PackageMaintainer | https://bugs.opensuse.org |
PackageName | perl-Module-Starter |
PackageRelease | 1.8 |
PackageVersion | 1.77 |
SHA-1 | 187C882EF5BD11175E0096375F6A91B917F23EBF |
SHA-256 | 4289F024912A6B1B6AF3E66D8B07815A22D4BB9CDB6EC0BCA88C470246981726 |
Key | Value |
---|---|
MD5 | CCBFF758BB266F50D28CA45B9298A13A |
PackageArch | noarch |
PackageDescription | The 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. |
PackageName | perl-LWP-Protocol-https |
PackageRelease | 1.2 |
PackageVersion | 6.10 |
SHA-1 | 1A6A6FA9A781C82929D0446F9E468E2E1240A203 |
SHA-256 | EBEC8B17A8306654C62906535F4ACDB76A26531EBE0C3E64DC18EFCCA25260B8 |