Bug#1036965: ITP: libplack-middleware-prometheus-requesttimes-perl -- Perl module that records response times with a prometheus histogram

2023-05-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libplack-middleware-prometheus-requesttimes-perl
  Version : 0.0001
  Upstream Author : Colin Newell 
* URL : 
https://metacpan.org/release/Plack-Middleware-Prometheus-RequestTimes
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module that records response times with a prometheus 
histogram

To setup a prometheus metrics app in your PSGI application, hook this
Plack::Middleware::Prometheus::RequestTimes middleware up with a histogram and
the metrics can report on your response times.

use strict;

use warnings;

use My::Website;

use Net::Prometheus;

use Net::Prometheus::ProcessCollector;

my $client = Net::Prometheus->new;

$client->register( Net::Prometheus::ProcessCollector->new(

prefix => "parent_process",

pid => getppid(),

) );

my $response_times = $client->new_histogram(

name => "response_times",

help => "Application response times",

);


--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034775: ITP: libdbix-class-journal-perl -- auditing for tables managed by DBIx::Class

2023-04-23 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-class-journal-perl
  Version : 0.900201
  Upstream Author : Jess Robinson 
* URL : https://metacpan.org/release/DBIx-Class-Journal
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : auditing for tables managed by DBIx::Class

DBIx::Class::Journal provides the basic utilities to write tests against
DBIx::Class.

The purpose of this DBIx::Class component module is to create an
audit-trail for all changes made to the data in your database (via a
DBIx::Class schema). It creates *changesets* and assigns each
create/update/delete operation an *id*. The creation and deletion date
of each row is stored, as well as the historical contents of any row
that gets changed.

All queries which need auditing must be called using "txn_do" in
DBIx::Class::Schema, which is used to create changesets for each
transaction.

To track who did which changes, the "user_id" (an integer) of the
current user can be set, and a "session_id" can also be set; both are
optional. To access the auditing schema to look at the auditdata or
revert a change, use "$schema->_journal_schema".

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034772: ITP: libdbix-simple-class-perl -- advanced object construction for DBIx::Simple

2023-04-23 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-simple-class-perl
  Version : 1.009
  Upstream Author : Красимир Беров 
* URL : https://metacpan.org/release/DBIx-Simple-Class
* License : Artistic-2.0
  Programming Lang: Perl
  Description : advanced object construction for DBIx::Simple

DBIx::Simple::Class is a database table/row abstraction. At the same
time it is not just a fancy representation of a table row like
DBIx::Simple::Result::RowObject.

Using this module will make your code more organized, clean and reliable
(separation of concerns + input-validation).
You will even get some more performance over plain DBIx::Simple
while keeping it's sexy features when you need them. Last but not
least, this module has no other non-CORE dependencies besides DBIx::Simple
and DBI.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034754: ITP: libdbix-class-toposort-perl -- topological sorting functionality to DBIx::Class

2023-04-23 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-class-toposort-perl
  Version : 0.06
  Upstream Author : Rob Kinyon 
* URL : https://metacpan.org/release/libdbix-class-toposort-perl
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : topological sorting functionality to DBIx::Class

DBIx::Class::TopoSort adds a method to DBIx::Class::Schema which returns the
full list of sources (similar to "sources" in DBIx::Class::Schema) in
topological-sorted order.

A topological sort of the tables returns the list of tables such that any table
with a foreign key relationship appears after any table it has a foreign key
relationship to.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034742: ITP: libcollision-2d-perl -- continuous 2d collision detection

2023-04-22 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcollision-2d-perl
  Version : 0.07
  Upstream Author : Zach Morgan 
* URL : https://metacpan.org/release/Collision-2D
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : continuous 2d collision detection

Collision::2D contains sets of several geometrical classes to help you model
dynamic (continuous) collisions in your programs. It is targeted for any game
or other application that requires dynamic collision detection between moving
circles, rectangles, and points.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034741: ITP: libnet-pop3s-perl -- SSL/STARTTLS support for Net::POP3

2023-04-22 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libnet-pop3s-perl
  Version : 0.12
  Upstream Author : Tomo M. 
* URL : https://metacpan.org/release/Net-POP3S
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : SSL/STARTTLS support for Net::POP3

Net::POP3S implements a wrapper for Net::POP3, enabling over-SSL/STARTTLS
support. This module inherits all the methods from Net::POP3. You may use all
the friendly options that came bundled with Net::POP3. You can control the
SSL usage with the options of new() constructor method. 'doSSL' option is the
switch, and, If you would like to control detailed SSL settings, you can set
SSL_* options that are brought from IO::Socket::SSL. Please see the document
of IO::Socket::SSL about these options detail.

Just one method difference from the Net::POP3, you may select POP AUTH
mechanism as the third option of auth() method.

As of Version 3.10 of Net::POP3(libnet) includes SSL/STARTTLS capabilities,
so this wrapper module's significance disappareing.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1034738: ITP: libjenkins-api-perl -- wrapper around the Jenkins API

2023-04-22 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libjenkins-api-perl
  Version : 0.18
  Upstream Author : Colin Newell 
* URL : https://metacpan.org/release/Jenkins-API
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : wrapper around the Jenkins API

This package provides a Perl wrapper around the Jenkins API.

More info for this Perl module at:
 https://metacpan.org/release/Jenkins-API

More info for the Jenkins API at:
 https://jenkinsapi.readthedocs.io

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031665: ITP: libmojolicious-plugin-templatetoolkit-perl -- Template Toolkit renderer plugin for Mojolicious

2023-02-19 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmojolicious-plugin-templatetoolkit-perl
  Version : 0.006
  Upstream Author : Dan Book 
* URL : 
https://metacpan.org/release/Mojolicious-Plugin-TemplateToolkit
* License : Artistic-2.0
  Programming Lang: Perl
  Description : Template Toolkit renderer plugin for Mojolicious

Mojolicious::Plugin::TemplateToolkit is a renderer for tt2 or Template
Toolkit templates. See Template and Template::Manual for details on the
Template Toolkit format, and Mojolicious::Guides::Rendering for general
information on rendering in Mojolicious.

Along with template files, inline and data section templates can be rendered
in the standard Mojolicious fashion. Template files and data sections will be
retrieved using Mojolicious::Renderer via Template::Provider::Mojo for both
direct rendering and directives such as INCLUDE. This means that instead of
specifying INCLUDE_PATH|Template::Manual::Config/"INCLUDE_PATH", you should
set Mojolicious::Renderer/"paths" to the appropriate paths.

 $app->renderer->paths(['/path/to/templates']);

 push @{$app->renderer->paths}, '/path/to/more/templates';

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031663: ITP: libmojolicious-plugin-templatetoolkit-perl -- Template Toolkit renderer plugin for Mojolicious

2023-02-19 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmojolicious-plugin-templatetoolkit-perl
  Version : 0.006
  Upstream Author : Dan Book 
* URL : 
https://metacpan.org/release/Mojolicious-Plugin-TemplateToolkit
* License : Artistic-2.0
  Programming Lang: Perl
  Description : Template Toolkit renderer plugin for Mojolicious

Mojolicious::Plugin::TemplateToolkit is a renderer for tt2 or Template
Toolkit templates. See Template and Template::Manual for details on the
Template Toolkit format, and Mojolicious::Guides::Rendering for general
information on rendering in Mojolicious.

Along with template files, inline and data section templates can be rendered
in the standard Mojolicious fashion. Template files and data sections will be
retrieved using Mojolicious::Renderer via Template::Provider::Mojo for both
direct rendering and directives such as INCLUDE. This means that instead of
specifying INCLUDE_PATH|Template::Manual::Config/"INCLUDE_PATH", you should
set Mojolicious::Renderer/"paths" to the appropriate paths.

 $app->renderer->paths(['/path/to/templates']);

 push @{$app->renderer->paths}, '/path/to/more/templates';

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031331: ITP: libtemplate-plugin-htmltotext-perl -- plugin interface to HTML::FormatText

2023-02-14 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtemplate-plugin-htmltotext-perl
  Version : 0.03
  Upstream Author : Fayland Lam 
* URL : https://metacpan.org/release/Template-Plugin-HtmlToText
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : plugin interface to HTML::FormatText

Template::Plugin::HtmlToText provides an interface to the HTML::FormatText
module which formats HTML as plaintext.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031255: ITP: libmoosex-logdispatch-perl -- logging role for Moose

2023-02-13 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmoosex-logdispatch-perl
  Version : 1.2002
  Upstream Author : Ash Berlin 
* URL : https://metacpan.org/release/MooseX-LogDispatch
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : logging role for Moose

MooseX::LogDispatch provides a Log::Dispatch role for use with your Moose
classes.

SEE ALSO:

  Log::Dispatch
  Log::Dispatch::Config
  Log::Dispatch::Configurator
  MooseX::LogDispatch::Levels

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031119: ITP: libdata-session-perl -- Perl module for persistent session data management

2023-02-11 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdata-session-perl
  Version : 1.18
  Upstream Author : Ron Savage 
* URL : https://metacpan.org/release/Data-Session
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module for persistent session data management

Data::Session is typically used by a CGI script to preserve state data between
runs of the script. This gives the end user the illusion that the script never
exits.

It can also be used to communicate between 2 scripts, as long as they agree
beforehand what session id to use.

See Data::Session::CGISession for an extended discussion of the design changes
between Data::Session and CGI::Session.

Data::Session stores user data internally in a hashref, and the module
reserves key names starting with '_'.

The current list of reserved keys is documented under "flush()". Of course,
the module also has a whole set of methods to help manage state.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1031075: ITP: libcatmandu-html-perl -- Modules for handling HTML data within the Catmandu framework

2023-02-11 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-html-perl
  Version : 0.02-1+dfsg
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-HTML
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Modules for handling HTML data within the Catmandu framework

Catmandu::HTML contains modules for handling HTML data within the Catmandu
framework.

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030910: ITP: libfile-findlib-perl -- find and use a file/dir from a directory above your script file

2023-02-08 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libfile-findlib-perl
  Version : 0.001004
  Upstream Author : Tye McQueen
* URL : https://metacpan.org/release/File-FindLib
* License : Unlicense
  Programming Lang: Perl
  Description : find and use a file/dir from a directory above your script 
file

File::FindLib starts in the directory where your script (or library) is
located and looks for the file or directory whose name you pass in. If it
isn't found, then FindLib looks in the parent directory and continues moving
up parent directories until it finds it or until there is not another parent
directory.

If it finds the named path and it is a directory, then it prepends it to
@INC. That is,

  use File::FindLib 'lib';

is roughly equivalent to:

  use File::Basename qw< dirname >;
  use lib dirname(__FILE__) . '/../../../lib';

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030800: ITP: liblido-xml-perl -- Lido XML parser and writer

2023-02-07 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: liblido-xml-perl
  Version : 0.07
  Upstream Author : Patrick Hochstenbach
* URL : https://metacpan.org/release/Lido-XML
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Lido XML parser and writer

LIDO is an XML Schema for Contributing Content to Cultural Heritage
Repositories. The Lido::XML parser is a software tool that understands the
Lido Schema and can parse the content of Lido XML files into a Perl hash and
back.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030794: ITP: libcatmandu-oai-perl -- modules for working with OAI repositories within the Catmandu framework

2023-02-07 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-oai-perl
  Version : 0.19
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-OAI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for working with OAI repositories within the 
Catmandu framework

Catmandu::OAI contains modules for working with OAI repositories.

Provides modules:
 Catmandu::Importer::OAI
 Catmandu::Store::OAI

Catmandu::Importer::OAI is an Catmandu importer to harvest metadata
records from an OAI-PMH endpoint.

See also:
 http://www.openarchives.org/pmh/tools/
 http://www.openarchives.org/OAI/openarchivesprotocol.html

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030686: ITP: libwebservice-lucene-perl -- Module to interface with the Lucene indexing webservice

2023-02-06 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libwebservice-lucene-perl
  Version : 0.10
  Upstream Author : Brian Cassidy 
* URL : https://metacpan.org/release/WebService-Lucene
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Module to interface with the Lucene indexing webservice

WebService::Lucene provides a Perl API to the Lucene indexing web service.

See also:
 https://lucene.apache.org

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030679: ITP: liblocale-maketext-extract-dbi-perl -- extract translation keys from a database

2023-02-06 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: liblocale-maketext-extract-dbi-perl
  Version : 0.01
  Upstream Author : Brian Cassidy 
* URL : https://metacpan.org/release/Locale-Maketext-Extract-DBI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : extract translation keys from a database

Locale::Maketext::Extract::DBI extracts translation keys from a database
table.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030652: ITP: libdbix-class-factory-perl -- factory-style fixtures for DBIx::Class

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-class-factory-perl
  Version : 0.04
  Upstream Author : Vadim Pushtaev 
* URL : https://metacpan.org/release/DBIx-Class-Factory
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : factory-style fixtures for DBIx::Class

Ruby has factory_girl, Python has factory_boy. Now Perl has
DBIx::Class::Factory.

Creating big fixture batches may be a pain. This module provides easy way
of creating data in database via DBIx::Class.

To create a factory just derive from DBIx::Class::Factory and apply some
settings. You can also add some data at the moment of creating instance,
redefining factory defaults.

Tests for this module contains a bunch of useful examples.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030651: ITP: libdbix-class-graph-perl -- represent a graph in a relational database using DBIC

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-class-graph-perl
  Version : 1.05
  Upstream Author : Moritz Onken 
* URL : https://metacpan.org/release/DBIx-Class-Graph
* License : BSD-3-clause
  Programming Lang: Perl
  Description : represent a graph in a relational database using DBIC

DBIx::Class::Graph provides a module to create and interact with a directed
graph. It will take care of storing the information in a relational database.
It uses Graph for calculations. This module extends the DBIx::Class::ResultSet.
Some methods are added to the resultset, some to the row objects.

SEE ALSO

 https://metacpan.org/pod/Graph
 https://metacpan.org/pod/DBIx::Class
 https://metacpan.org/pod/DBIx::Class::Tree

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030650: ITP: libdbix-bulkloader-mysql-perl -- Perl extension for mysql bulk loading

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-bulkloader-mysql-perl
  Version : 1.006
  Upstream Author : Michael Shipper
* URL : https://metacpan.org/release/DBIx-BulkLoader-Mysql
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl extension for mysql bulk loading

DBIx::BulkLoader::Mysql provides a simple buffering bulk-loader interface
for mysql.

SEE ALSO
 https://metacpan.org/pod/DBI
 https://metacpan.org/pod/DBD::mysql

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030649: ITP: libchild-perl -- Object oriented simple interface to fork()

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libchild-perl
  Version : 0.013
  Upstream Author : Chad Granum 
* URL : https://metacpan.org/release/Child
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Object oriented simple interface to fork()

Fork is too low level, and difficult to manage. Often people forget to exit
at the end, reap their children, and check exit status. The problem is the
low level functions provided to do these things. Throw in pipes for IPC and
you just have a pile of things nobody wants to think about.

Child is an Object Oriented interface to fork. It provides a clean way to
start a child process, and manage it afterwords. It provides methods for
running, waiting, killing, checking, and even communicating with a child
process.

NOTE: kill() is unpredictable on windows, strawberry perl sends the kill
signal to the parent as well as the child.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030648: ITP: libdbix-class-tree-perl -- manipulate and anaylze tree structured data

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdbix-class-tree-perl
  Version : 0.03003
  Upstream Author : Aran Clary Deltac 
* URL : https://metacpan.org/release/DBIx-Class-Tree
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : manipulate and anaylze tree structured data

DBIx::Class::Tree provides the tools to represent, modify, and analyze trees
of data with DBIx::Class.

COMPONENTS

DBIx::Class::Tree::AdjacencyList
 Manage a tree of data using the common adjacency list model.

DBIx::Class::Tree::AdjacencyList::Ordered
 Glue DBIx::Class::Ordered and DBIx::Class::Tree::AdjacencyList together.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030647: ITP: libpath-class-uri-perl -- Serializes and deserializes Path::Class objects as file:// URI

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libpath-class-uri-perl
  Version : 0.08
  Upstream Author : Tatsuhiko Miyagawa 
* URL : https://metacpan.org/release/Path-Class-URI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Serializes and deserializes Path::Class objects as file:// 
URI

Path::Class::URI is an extension to Path::Class to serialize file path from
and to file:// form URI objects.

Path::Class::URI encodes and decodes non URI-safe characters using its
literal byte encodings. If you call uri methods on Win32 Path::File objects,
you'll get local filename encodings.

If you want to avoid that and always use UTF-8 filename encodings in URI, see
Path::Class::Unicode bundled in this distribution.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030646: ITP: libbiblio-zotero-db-perl -- helper module to access the Zotero SQLite database

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-zotero-db-perl
  Version : 0.004
  Upstream Author : Zakariyya Mughal 
* URL : https://metacpan.org/release/Biblio-Zotero-DB
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : helper module to access the Zotero SQLite database

Biblio::Zotero::DB provides a helper module to access a Zotero SQLite database

Example code:

 use Biblio::Zotero::DB;
 use List::UtilsBy qw(min_by);

 # find the most recently modified
 my $newest = min_by { -M } @{Biblio::Zotero::DB->find_profile_directories};
 my $db = Biblio::Zotero::DB->new( profile_directory => $newest  );

 # if there is an issue with the database lock here,
 # see Biblio::Zotero::DB::Role::CopyDB
 $db->schema->resultset('Item')->all;

See also:

 https://metacpan.org/pod/DBIx::Class
 http://www.zotero.org/support/zotero_data

Zotero is a free and open-source reference management software to manage
bibliographic data and related research materials, such as PDF files.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030644: ITP: libbio-biblio-perl -- modules to access bibliographics repositories and handle citation files

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbio-biblio-perl
  Version : 1.70
  Upstream Author : BioPerl Team 
* URL : https://metacpan.org/release/Bio-Biblio
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules to access bibliographics repositories and handle 
citation files

Bio::Biblio provides both methods to access bibliographic repositories, and to
handle citation files in different formats.

The modules comply (with some simplifications) with the specification
described in the OpenBQS project.

See also:
 http://www.ebi.ac.uk/~senger/openbqs

This distribution is part of the BioPerl project.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030642: ITP: libbiblio-thesaurus-modrewrite-perl -- module to manipulate ontologies

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-thesaurus-modrewrite-perl
  Version : 0.03
  Upstream Author : Nuno Carvalho 
* URL : https://metacpan.org/release/Biblio-Thesaurus-ModRewrite
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : module to manipulate ontologies

Biblio::Thesaurus::ModRewrite implements a compiler to run programs written
in a domain specific language that can be used to manipulate information in
ontologies. This domain specific language is called OML and is described in
the next section.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030639: ITP: libperl-critic-toomuchcode-perl -- perlcritic add-ons that generally check for dead code

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libperl-critic-toomuchcode-perl
  Version : 0.18
  Upstream Author : Kang-min Liu 
* URL : https://metacpan.org/release/Perl-Critic-TooMuchCode
* License : Expat
  Programming Lang: Perl
  Description : perlcritic add-ons that generally check for dead code

Perl::Critic::TooMuchCode is an add-on for Perl::Critic is aiming for
identifying trivial dead code.  Either the ones that has no use, or the
one that produce no effect.  Having dead code floating around causes
maintenance burden. Some might prefer not to generate them in the first place.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030616: ITP: libcode-tidyall-plugin-clangformat-perl -- run clang-format using Code::TidyAll

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcode-tidyall-plugin-clangformat-perl
  Version : 0.0.2
  Upstream Author : Shlomi Fish 
* URL : https://metacpan.org/release/Code-TidyAll-Plugin-ClangFormat
* License : Expat
  Programming Lang: Perl
  Description : run clang-format using Code::TidyAll

Code::TidyAll::Plugin::ClangFormat speeds up clang-format's checking and
reformatting, by caching results using Code::TidyAll.

See also:
 https://clang.llvm.org/docs/ClangFormat.html

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030613: ITP: libffi-platypus-type-enum-perl -- custom platypus type for dealing with C enumerated types

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libffi-platypus-type-enum-perl
  Version : 0.06
  Upstream Author : Graham Ollis 
* URL : https://metacpan.org/release/FFI-Platypus-Type-Enum
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : custom platypus type for dealing with C enumerated types

FFI::Platypus::Type::Enum type plugin is a helper for making enumerated types.
It makes the most sense to use this when you have an enumerated type with a
small number of possible values. For a large set of enumerated values or
constants, see: FFI::Platypus::Constant.

This type plugin has two modes:

 string

 In string mode, string representations of the enum values are converted into
 the integer enum values when passed into C, and the enums are converted back
 into strings when coming from C back into Perl. You can also pass in the
 integer values.

 constant

 In constant mode, constants are defined in the specified package, and with
 the optional prefix. The string representation or integer constants can be
 passed into C, but the integer constants are returned from C back into Perl.

 In both modes, if you attempt to pass in a value that isn't one of the
 possible enum values, an exception will be thrown.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030605: ITP: libffi-c-perl -- C data types for FFI

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libffi-c-perl
  Version : 0.15
  Upstream Author : Graham Ollis 
* URL : https://metacpan.org/release/FFI-C
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : C data types for FFI

FFI::C provide tools for building classes to interface for
common C data types. Arrays, struct, union and nested types based on those
are supported.

Core FFI::Platypus also provides FFI::Platypus::Record for manipulating
and passing structured data. Typically you want to use FFI::C instead,
the main exception is when you need to pass structured data by value
instead of by reference.

To work with C APIs that work with C file pointers you can use FFI::C::File
and FFI::C::PosixFile. For C APIs that expose the POSIX stat structure
use FFI::C::Stat.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030583: ITP: libbiblio-rfid-perl -- perl tools to use different RFID readers for library use

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-rfid-perl
  Version : 0.03
  Upstream Author : Dobrica Pavlinusic 
* URL : https://metacpan.org/release/Biblio-RFID
* License : GPL-2+
  Programming Lang: Perl
  Description : perl tools to use different RFID readers for library use

Biblio::RFID provides a simple API to communicate with RFID
readers. The module provides useful abstractions to quickly write
applications to respond to tags which come in range of RFID readers
using Biblio::RFID::Reader.

Writing support for new RFID readers should be easy.
Biblio::RFID::Reader::API provides documentation on writing support
for different readers.

Currently, two serial RFID readers based on Biblio::RFID::Reader::Serial
are implemented:
 Biblio::RFID::Reader::3M810
 Biblio::RFID::Reader::CPRM02

There is also simple read-only reader using shell commands in
Biblio::RFID::Reader::librfid.

For implementing an application, take a look at Biblio::RFID::Reader:
 scripts/RFID-JSONP-server.pl is example of such application. It's
 provides a local interface to RFID reader and JSONP REST server.

 examples/koha-rfid.js is jQuery based JavaScript code which can be
 inserted in Koha Library System to provide overlay with tags in range
 and check-in/check-out form-fill functionality.

Applications can use Biblio::RFID::RFID501 which is some kind of
semi-standard 3M layout or blocks on RFID tags.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030573: ITP: liblocale-xgettext-perl -- extract Strings To PO Files

2023-02-05 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: liblocale-xgettext-perl
  Version : 0.7
  Upstream Author : Guido Flohr 
* URL : https://metacpan.org/release/Locale-XGettext
* License : LGPL-3+
  Programming Lang: Perl
  Description : extract Strings To PO Files

Locale::XGettext is the base class for various string extractors. These string
extractors can be used as standalone programs on the command-line or as a
module as a part of other software.

See also:
 https://github.com/gflohr/Locale-XGettext
 https://www.gnu.org/software/gettext/manual/html_node/PO-Files.html

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030567: ITP: libbiblio-lcc-perl -- parse and normalize LC-style call numbers

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-lcc-perl
  Version : 0.09
  Upstream Author : 2007 Paul M. Hoffman 
* URL : https://metacpan.org/release/Biblio-LCC
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : parse and normalize LC-style call numbers

Biblio::LCC parses Library of Congress classification ranges and call numbers
and normalizes them into a form suitable for a straight ASCII sort.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030566: ITP: libtemplate-plugin-gettext-perl -- Gettext Support For the Template Toolkit Version 2

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtemplate-plugin-gettext-perl
  Version : 0.7
  Upstream Author : Guido Flohr 
* URL : https://metacpan.org/release/Template-Plugin-Gettext
* License : LGPL-3+
  Programming Lang: Perl
  Description : Gettext Support For the Template Toolkit Version 2

Template::Plugin::Gettext provides an end-to-end localization and
internationalization solution for the Template Toolkit 2.

It consists of a plugin that offers translation functions inside
templates and a string extractor xgettext-tt2 that extracts translatable
strings from templates and writes them to PO files (or rather a .pot file
in PO format).

The string extractor xgettext-tt2 is fully customizable and also usable for
other i18n plugins or frameworks for the Template Toolkit.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030565: ITP: libtext-undiacritic-perl -- remove diacritics from a string

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtext-undiacritic-perl
  Version : 0.07
  Upstream Author : Helmut Wollmersdorfer 
* URL : https://metacpan.org/release/Text-Undiacritic
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : remove diacritics from a string

Text::Undiacritic provides a module that changes characters with diacritics
into their base characters.

Also changes into base character in cases where UNICODE does not provide a
decomposition.

E.g. all characters '... WITH STROKE' like 'LATIN SMALL LETTER L WITH STROKE'
do not have a decomposition. In the latter case the result will be 'LATIN
SMALL LETTER L'.

Removing diacritics is useful for matching text independent of spelling
variants.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030563: ITP: libbiblio-sici-perl -- Provides methods for assembling, parsing, manipulating and serialising SICIs

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-sici-perl
  Version : 0.04
  Upstream Author : Heiko Jansen 
* URL : https://metacpan.org/release/Biblio-SICI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Provides methods for assembling, parsing, manipulating and 
serialising SICIs

A "Serial Item and Contribution Identifier" (SICI) is a code (ANSI/NISO
standard Z39.56) used to uniquely identify specific volumes, articles or
other identifiable parts of a periodical.

Biblio::SICI provides methods for assembling, parsing, manipulating and
serialising SICIs.

Both internal implementation and public API are currently considered BETA and
may change without warning in a future release. For more information on this
have a look at the TODO section|/TODO below.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030561: ITP: libmath-random-mt-auto-perl -- Auto-seeded Mersenne Twister PRNGs

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmath-random-mt-auto-perl
  Version : 6.23
  Upstream Author : Jerry D. Hedden 
* URL : https://metacpan.org/release/Math-Random-MT-Auto
* License : BSD-3-clause
  Programming Lang: Perl
  Description : Auto-seeded Mersenne Twister PRNGs

The Mersenne Twister is a fast pseudorandom number generator (PRNG) that is
capable of providing large volumes (> 10^6004) of "high quality" pseudorandom
data to applications that may exhaust available "truly" random data sources
or system-provided PRNGs such as rand|perlfunc/"rand".

Math::Random::MT::Auto provides PRNGs that are based on the Mersenne Twister.
There is a functional interface to a single, standalone PRNG, and an OO
interface (based on the inside-out object model as implemented by the
Object::InsideOut module) for generating multiple PRNG objects. The PRNGs are
normally self-seeding, automatically acquiring a (19968-bit) random seed from
user-selectable sources. (Manual seeding is optionally available.)

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030517: ITP: libwww-zotero-perl -- Perl interface to the Zotero API

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libwww-zotero-perl
  Version : 0.04
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/WWW-Zotero
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl interface to the Zotero API

WWW::Zotero provides a Perl interface to the Zotero API.

See also:
 https://www.zotero.org/

Zotero is a free and open-source reference management software to manage
bibliographic data and related research materials, such as PDF files.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030515: ITP: libtext-markdowntable-perl -- write Markdown syntax tables from data

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtext-markdowntable-perl
  Version : 0.3.1
  Upstream Author : Jakob Voß 
* URL : https://metacpan.org/release/Text-MarkdownTable
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : write Markdown syntax tables from data

Text::MarkdownTable can be used to write data in tabular form, formatted in
MultiMarkdown syntax. The resulting format can be used for instance to
display CSV data or to include data tables in Markdown files. Newlines and
vertical bars in table cells are replaced by a space character and cell
values can be truncated.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030505: ITP: liboauth-lite2-perl -- OAuth 2.0 Library

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: liboauth-lite2-perl
  Version : 0.11
  Upstream Author : Lyo Kato 
* URL : https://metacpan.org/release/OAuth-Lite2
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : OAuth 2.0 Library

OAuth::Lite2 provides a lightweight OAuth library for Perl and Plack

See also:
 https://oauth.net/2

Client
 OAuth::Lite2::Client::WebServer
 OAuth::Lite2::Client::UsernameAndPassword

Server
 OAuth::Lite2::Server::Endpoint::Token
 Plack::Middleware::Auth::OAuth2::ProtectedResource

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030499: ITP: libstring-util-perl -- String processing utility functions

2023-02-04 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libstring-util-perl
  Version : 1.34
  Upstream Author : Scott Baker  Miko O'Sullivan 

* URL : https://metacpan.org/release/String-Util
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : String processing utility functions

String::Util provides a collection of small, handy functions for processing
strings in various ways.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030479: ITP: libdata-uuid-mt-perl -- fast random UUID generator using the Mersenne Twister algorithm

2023-02-03 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdata-uuid-mt-perl
  Version : 1.001
  Upstream Author : David Golden 
* URL : https://metacpan.org/release/Data-UUID-MT
* License : Apache-2.0
  Programming Lang: Perl
  Description : fast random UUID generator using the Mersenne Twister 
algorithm

Data::UUID::MT provides a UUID generator uses the excellent
Math::Random::MT::Auto module as a source of fast, high-quality (pseudo)
random numbers.

Three different types of UUIDs are supported. Two are consistent with RFC
4122 and one is a custom variant that provides a 'sequential UUID' that can
be advantageous when used as a primary database key.

Note: The Mersenne Twister pseudo-random number generator has excellent
statistical properties, but it is not considered cryptographically secure.
Pseudo-random UUIDs are not recommended for use as security authentication
tokens in cookies or other user-visible session identifiers.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030399: ITP: libwww-orcid-perl -- client for the ORCID 2.0 API

2023-02-03 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libwww-orcid-perl
  Version : 0.0402
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/WWW-ORCID
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : client for the ORCID 2.0 API

WWW::ORCID provides a client for the ORCID 2.0 API

The client is mostly complete. The 2.0 member API is implemented except
notification-permission. The 2.0 public API is implemented except identifiers
and status. The 2.1 member API has not yet been implemented.

Provides modules:
 WWW::ORCID
 WWW::ORCID::API::v2_0
 WWW::ORCID::API::v2_0_public

See also:
 https://api.orcid.org/v2.0/#/Member_API_v2.0

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030398: ITP: libdata-validate-type-perl -- Data type validation functions

2023-02-03 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdata-validate-type-perl
  Version : 1.6.0
  Upstream Author : Guillaume Aubert 
* URL : https://metacpan.org/release/Data-Validate-Type
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Data type validation functions

Data::Validate::Type started as an encapsulation for Params::Util, with some
refactoring and improvements.

See also:
 https://metacpan.org/pod/Params::Util

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030397: ITP: libio-file-withfilename-perl -- filehandles that know their origin

2023-02-03 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libio-file-withfilename-perl
  Version : 0.01
  Upstream Author : Ivan Fomichev 
* URL : https://metacpan.org/release/IO-File-WithFilename
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : filehandles that know their origin

IO::File::WithFilename does everything that IO::File does, but implements
filename method, that File::Temp objects have. It lets you write the code
that is ignorant of what classes of objects it works with.

If you want to check if it is safe to call filename method, you are
recommended to call can method rather than to check an object's inheritance:

  print $obj->filename, "\n" if eval { $obj->can('filename') };

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030299: ITP: libperlude-perl -- shell and powershell pipes, haskell keywords mixed with the awesomeness of perl

2023-02-02 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libperlude-perl
  Version : 0.61
  Upstream Author : Marc Chantreux 
* URL : https://metacpan.org/release/perlude
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : shell and powershell pipes, haskell keywords mixed with the 
awesomeness of perl

Perlude: If you're used to a unix shell, Windows Powershell or any
language coming with the notion of streams, perl could be frustrating
as functions like map and grep only works with arrays.

The goodness of it is that '|' is an on demand operator that can easily
compose actions on potentially very large amount of data in a very memory
and you can control the amount of consummed data in a friendly way.

Perlude gives a better '|' to Perl: as it works on scalars which can be
both strings (like unix shell), numbers or references (like powershell).

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030294: ITP: libbiblio-document-parser-perl -- document parsing framework

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-document-parser-perl
  Version : 1.10
  Upstream Author : Tim Brody 
* URL : https://metacpan.org/release/Biblio-Document-Parser
* License : GPL-2+
  Programming Lang: Perl
  Description : document parsing framework

Biblio::Document::Parser provides generic methods that should be overridden by
specific parsers. This class should not be used directly, but rather be
overridden by specific parsers. Parsers that extend the Document::Parser
class should at least override the parse method.

See also:
 Biblio::Document::Parser
 Biblio::Document::Parser::Brody
 Biblio::Document::Parser::Standard

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030291: ITP: libbiblio-counter-perl -- COUNTER Codes of Practice report processing

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-counter-perl
  Version : 0.11
  Upstream Author : Paul Hoffman 
* URL : https://metacpan.org/release/Biblio-COUNTER
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : COUNTER Codes of Practice report processing

Biblio::COUNTER provides modules for handling COUNTER reports.

Because the COUNTER Codes of Practice are so poorly written and documented,
with incomplete specifications and inconsistent terminology, it has been
necessary to make certain assumptions and normalizations in the code and
documentation of this module.

First, all reports must be in plain text, tab- or comma-delimited format;
Excel spreadsheets are not allowed. (To convert an Excel spreadsheet to
tab-delimited text, consider using Spreadsheet::ParseExcel::Simple.

(XML formats may be handled in a future version of this module.)

See also:
 https://www.projectcounter.org/
 https://metacpan.org/pod/Spreadsheet::ParseExcel::Simple

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030286: ITP: libtext-capitalize-perl -- routines for title-like formatting of strings

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtext-capitalize-perl
  Version : 1.5
  Upstream Author : Joseph Brenner 
* URL : https://metacpan.org/release/Text-Capitalize
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : routines for title-like formatting of strings

Text::Capitalize provides some routines for title-like formatting of strings.
The simple capitalize function just makes the initial character of each word
uppercase, and forces the rest to lowercase.

The capitalize_title function applies English title case rules (discussed
below) where only the "important" words are supposed to be capitalized. There
are also some customization features provided to allow the user to choose 
variant
rules.

See also:
 https://metacpan.org/pod/Text::Autoformat
 https://metacpan.org/pod/Lingua::EN::NameParse

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030247: ITP: libtext-names-perl -- module for proper name parsing, normalization, recognition and classification

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtext-names-perl
  Version : 0.46
  Upstream Author : David Bourget
* URL : https://metacpan.org/release/Text-Names
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : module for proper name parsing, normalization, recognition 
and classification

Text::Namess provides a number of name normalization routines, plus
high-level parsing and name comparison utilities such as those illustrated in
the synopsis.

While it tries to accommodate non-Western names, this module definitely works
better with Western names, especially English-style names.

This modules normalizes names to this format:
  Lastname(s) [Jr], Given name(s)

Some examples:
  1) Bourget, David Joseph Richard

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030242: ITP: libbiblio-citation-compare-perl -- Perl extension for performing fuzzy comparisons between bibliographic citations

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libbiblio-citation-compare-perl
  Version : 0.4
  Upstream Author : David Bourget
* URL : https://metacpan.org/release/Biblio-Citation-Compare
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl extension for performing fuzzy comparisons between 
bibliographic citations

Biblio::Citation::Compare exports two subroutines which perform fuzzy
comparisons between citations (described using Perl hashes) and author lists.
The subroutine attempt to determine if the citations and author lists refer
to the same works and ordered lists of authors, respectively.

See also Text::Names for name normalization.
 https://metacpan.org/pod/Text::Names

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030235: ITP: libdancer-plugin-catmandu-oai-perl -- OAI-PMH provider backed by a searchable Catmandu::Store

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdancer-plugin-catmandu-oai-perl
  Version : 0.0508
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Dancer-Plugin-Catmandu-OAI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : OAI-PMH provider backed by a searchable Catmandu::Store

Dancer::Plugin::Catmandu::OAI is a Dancer plugin to provide OAI-PMH services
for Catmandu::Store-s that support CQL (such as
Catmandu::Store::ElasticSearch). Follow the installation steps below to setup
your own OAI-PMH server.

See also:
 http://metacpan.org/pod/Dancer
 http://metacpan.org/pod/Catmandu
 http://www.openarchives.org/pmh/tools/

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030234: ITP: libcatmandu-zotero-perl -- Catmandu modules for working with Zotero web

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-zotero-perl
  Version : 0.07
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-Zotero
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with Zotero web

Catmandu::Zotero provides modules for working with Zotero web.

Catmandu::Importer::Zotero imports bibliographic data from Zotero reference
management services.

Provides modules:
 Catmandu::Importer::Zotero

See also:
 https://metacpan.org/pod/WWW::Zotero
 https://www.zotero.org/support/dev/web_api/

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030219: ITP: libcatmandu-fix-datahub-perl -- Catmandu utility functions and generic fixes for the Datahub project

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-fix-datahub-perl
  Version : 0.03
  Upstream Author : Pieter De Praetere 
* URL : https://metacpan.org/release/Catmandu-Fix-Datahub
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu utility functions and generic fixes for the 
Datahub project

Catmandu::Fix::Datahub provides utility functions and generic fixes for the
Datahub project.

Provides modules:
 Catmandu::Fix::Bind::each
 Catmandu::Fix::Datahub
 Catmandu::Fix::Datahub::Util

See also:
 https://datahubproject.io/

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030217: ITP: libcatmandu-z3950-perl -- Catmandu module for working with Z3950 data

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-z3950-perl
  Version : 0.06
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-Z3950
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu module for working with Z3950 data

Catmandu::Z3950 provides modules for working with Z3950 data

Provides modules:
 Catmandu::Z3950
 Catmandu::Importer::Z3950

See also:
 https://www.loc.gov/z3950/agency

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030215: ITP: libcatmandu-viaf-perl -- Catmandu modules for retrieving items from VIAF authority files

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-viaf-perl
  Version : 0.05
  Upstream Author : Matthias Vandermaesen 

* URL : https://metacpan.org/release/Catmandu-VIAF
* License : GPL-3
  Programming Lang: Perl
  Description : Catmandu modules for retrieving items from VIAF authority 
files

Catmandu::VIAF provides modules for retrieving items from VIAF authority files.

Provides modules:
 Catmandu::Store::VIAF
 Catmandu::Fix::viaf_match
 Catmandu::Fix::viaf_search
 Catmandu::VIAF::API

See also:
 https://viaf.org/

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030214: ITP: libalgorithm-hyperloglog-perl -- implementation of the HyperLogLog cardinality estimation algorithm

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libalgorithm-hyperloglog-perl
  Version : 0.24
  Upstream Author : Hideaki Ohno 
* URL : https://metacpan.org/release/Algorithm-HyperLogLog
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : implementation of the HyperLogLog cardinality estimation 
algorithm

Algorithm::HyperLogLog provides an algorithm for estimating the cardinality of 
a set.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030213: ITP: libdigest-murmurhash3-pureperl-perl -- pure perl implementation of MurmurHash3

2023-02-01 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libdigest-murmurhash3-pureperl-perl
  Version : 1.01
  Upstream Author : Hideaki Ohno 
* URL : https://metacpan.org/release/Digest-MurmurHash3-PurePerl
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : pure perl implementation of MurmurHash3

Digest::MurmurHash3::PurePerl is pure perl implementation of MurmurHash3.

See also:
 https://metacpan.org/pod/Digest::MurmurHash3

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030207: ITP: libstatistics-topk-perl -- Implementation of the top-k streaming algorithm

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libstatistics-topk-perl
  Version : 0.02
  Upstream Author : gray 
* URL : https://metacpan.org/release/Statistics-TopK
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Implementation of the top-k streaming algorithm

The Statistics::TopK module implements the top-k streaming algorithm, also
know as the "heavy hitters" algorithm. It is designed to process data streams
and probabilistally calculate the k most frequent items while using limited
memory.

A typical example would be to determine the top 10 IP addresses listed in an
access log. A simple solution would be to hash each IP address to a counter
and then sort the resulting hash by the counter size. But the hash could
theoretically require over 4 billion keys.

The top-k algorithm only requires storage space proportional to the number of
items of interest. It accomplishes this by sacrificing precision, as it is
only a probabilistic counter.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030204: ITP: libcatmandu-exporter-table-perl -- Catmandu modules for exporting data in tabular MultiMarkdown

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-exporter-table-perl
  Version : 0.3.0
  Upstream Author : Jakob Voß
* URL : https://metacpan.org/release/Catmandu-Exporter-Table
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for exporting data in tabular MultiMarkdown

format
Catmandu::Exporter::Table provides modules for exporting data in tabular
MultiMarkdown format.

The output can be used for simple display, for instance to preview Excel
files on the command line. Use Pandoc to further convert to other table
formats, e.g. LaTeX, html5, mediawiki:

 catmandu convert XLS to Table < sheet.xls | pandoc -t html5

See also:
 http://johnmacfarlane.net/pandoc
 https://metacpan.org/pod/Text::MarkdownTable

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030202: ITP: libcatmandu-stat-perl -- Catmandu modules for working with statistical data

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-stat-perl
  Version : 0.13
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-Stat
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with statistical data

Catmandu::Stat contains modules for calculating statistics on the availablity
of fields in a data file.

 Provides modules:
  Catmandu::Exporter::Stat
  Catmandu::Fix::stat_mean
  Catmandu::Fix::stat_median
  Catmandu::Fix::stat_stddev
  Catmandu::Fix::stat_variance

See also:
 https://metacpan.org/pod/Catmandu::Breaker
 https://metacpan.org/pod/Statistics::Descriptive
 https://metacpan.org/pod/Statistics::TopK
 https://metacpan.org/pod/Algorithm::HyperLogLog

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030201: ITP: libcatmandu-solr-perl -- Catmandu modules for working with SOLR endpoints

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-solr-perl
  Version : 0.0304
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-Solr
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with SOLR endpoints

Catmandu::SOLR contains modules for working with SOLR endpoints.

Provides modules:
 Catmandu::Importer::Solr
 Catmandu::Store::Solr
 Catmandu::Store::Solr::CQL

See also:
 http://lucene.apache.org/solr/
 https://metacpan.org/pod/WebService::Solr

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030199: ITP: libcatmandu-ris-perl -- Modules for handling RIS data within the Catmandu framework

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-ris-perl
  Version : 0.13
  Upstream Author : Vitali Peil
* URL : https://metacpan.org/release/Catmandu-RIS
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Modules for handling RIS data within the Catmandu framework

Catmandu::RIS contains modules for handling RIS data.

RIS is a standardized tag format developed by Research Information Systems,
Incorporated to enable citation programs to exchange data.

Provides modules:
 Catmandu::Exporter::RIS
 Catmandu::Importer::RIS

See also:
 https://en.wikipedia.org/wiki/RIS_(file_format)

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030147: ITP: libcatmandu-rdf-perl -- Modules for handling RDF data within the Catmandu framework

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-rdf-perl
  Version : 0.32
  Upstream Author : Jakob Voß
* URL : https://metacpan.org/release/Catmandu-RDF
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Modules for handling RDF data within the Catmandu framework

Catmandu::RDF contains modules for handling RDF data within the Catmandu
framework. RDF data is encoded/decoded in aREF as implemented with RDF::aREF.
RDF is a graph-based data structuring format with specialized technologies
such as SPARQL and triple stores.

Using Catmandu::RDF to transform RDF to RDF (e.g. conversion from one RDF
serialization to another) is possible but probably less performant than
decent RDF tools. Catmandu::RDF, however, is more convenient to convert
between RDF and other data formats.

Serialization is based on RDF::Trine::Serializer.

Provides modules:
 Catmandu::Exporter::RDF
 Catmandu::Fix::aref_query
 Catmandu::Fix::rdf_ldf_statements
 Catmandu::Importer::RDF

See also:
 http://gbv.github.io/aREF
 https://metacpan.org/pod/RDF::aREF
 https://metacpan.org/pod/RDF::NS
 https://metacpan.org/pod/RDF::Trine::Serializer

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030136: ITP: libcatmandu-pure-perl -- Catmandu modules for working with data from Pure

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-pure-perl
  Version : 0.05
  Upstream Author : Snorri Briem 
* URL : https://metacpan.org/release/Catmandu-Pure
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with data from Pure

Catmandu::Pure is a Catmandu package that seamlessly imports data from
Elsevier's Pure system using its REST service. In order to use the Pure
Web Service you need an API key. List of all available endpoints and further
documentation can currently be found under /ws on a webserver that is running
Pure.

Note that this version of the importer is tested with Pure API version 5.18
and might not work with later versions.

Provides modules:
 Catmandu::Importer::Pure

See also:
 https://www.elsevier.com/solutions/pure

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030135: ITP: libcatmandu-pubmed-perl -- modules for working with PubMed data within the Catmandu framework

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-pubmed-perl
  Version : 0.01
  Upstream Author : Wouter Willaert 
* URL : https://metacpan.org/release/Catmandu-PubMed
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for working with PubMed data within the Catmandu 
framework

Catmandu::PubMed contains modules for working with PubMed data.

Provides modules:
 Catmandu::Importer::PubMed

See also:
 https://pubmed.ncbi.nlm.nih.gov

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030133: ITP: libcatmandu-plos-perl -- modules for working with PLoS data within the Catmandu framework

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-plos-perl
  Version : 0.01
  Upstream Author : Wouter Willaert 
* URL : https://metacpan.org/release/Catmandu-PLoS
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for working with PLoS data within the Catmandu 
framework

Catmandu::PLoS contains modules for working with PLoS data.

Provides modules:
 Catmandu::Importer::PLoS

See also:
 https://api.plos.org

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030122: ITP: libcatmandu-mediawiki-perl -- Catmandu modules for interfacing with MediaWiki

2023-01-31 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-mediawiki-perl
  Version : 0.021
  Upstream Author : Nicolas Franck
* URL : https://metacpan.org/release/Catmandu-MediaWiki
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for interfacing with MediaWiki

Catmandu::MediaWiki contains modules for importing pages from MediaWiki.

Provides modules:
 Catmandu::Importer::MediaWiki

This importer uses the query api from MediaWiki to get a list of pages that
match certain requirements. It retrieves a list of pages and their content
by using the generators from mediawiki.

See also:
 https://www.mediawiki.org/wiki/API
 https://metacpan.org/pod/MediaWiki::API

Catmandu provides a suite of Perl modules to ease the import, storage, 
retrieval,
export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030111: ITP: libcatmandu-mendeley-perl -- modules wrapping the Mendeley API within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-mendeley-perl
  Version : 0.01
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-Mendeley
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules wrapping the Mendeley API within the Catmandu 
framework

Catmandu::Mendeley contains modules for interfacing with the Mendeley API.

Provides modules:
 Catmandu::Importer::MendeleyCatalog

See also:
 https://dev.mendeley.com/

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030105: ITP: libcatmandu-lido-perl -- modules for handling LIDO data within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-lido-perl
  Version : 0.10
  Upstream Author : Patrick Hochstenbach
* URL : https://metacpan.org/release/Catmandu-LIDO
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for handling LIDO data within the Catmandu framework

Catmandu::LIDO contains modules to handle LIDO, an XML Schema for
contributing content to cultural heritage repositories.

This module is based on Catmandu, Lido::XML and XML::Compile

Provides modules:
 Catmandu::Exporter::LIDO
 Catmandu::Importer::LIDO

See also:
 https://metacpan.org/pod/Lido::XML

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030106: ITP: libcatmandu-markdown-perl -- modules for handling markdown data within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-markdown-perl
  Version : 0.011
  Upstream Author : Nicolas Franck 
* URL : https://metacpan.org/release/Catmandu-Markdown
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for handling markdown data within the Catmandu 
framework

Catmandu::Markdown contains modules to work with markdown data.

Provides modules:
 Catmandu::Fix::markdown_to_html

See also:
 https://metacpan.org/pod/Text::Markdown::Discount

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030102: ITP: libcatmandu-ldap-perl -- modules for working with LDAP directories within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-ldap-perl
  Version : 0.0105
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-LDAP
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for working with LDAP directories within the 
Catmandu framework

Catmandu::LDAP contains modules for working with LDAP directories.

Provides modules:
 Catmandu::Importer::LDAP

See also:
 https://metacpan.org/dist/perl-ldap

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030101: ITP: libcatmandu-inspire-perl -- modules for working with Inspire data within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-inspire-perl
  Version : 0.300
  Upstream Author : Vitali Peil
* URL : https://metacpan.org/release/Catmandu-Inspire
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for working with Inspire data within the Catmandu 
framework

Catmandu::Inspire contains modules for working with Inspire data.

Provides modules:
 Catmandu::Importer::Inspire

See also:
 http://inspirehep.net

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030100: ITP: libcatmandu-identifier-perl -- namespace for handling identifiers within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-identifier-perl
  Version : 0.15
  Upstream Author : Vitali Peil
* URL : https://metacpan.org/release/Catmandu-Identifier
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : namespace for handling identifiers within the Catmandu 
framework

Catmandu::Identifier contains a namespace for handling identifiers (for
normalization, validation, etc.), e.g. ISBN, ISSN, ORCID.

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030099: ITP: libcatmandu-identifier-perl -- namespace for handling identifiers within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-identifier-perl
  Version : 0.15
  Upstream Author : Vitali Peil
* URL : https://metacpan.org/release/Catmandu-Identifier
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : namespace for handling identifiers within the Catmandu 
framework

Catmandu::Identifier contains a namespace for handling identifiers (for
normalization, validation, etc.), e.g. ISBN, ISSN, ORCID.

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030098: ITP: libcatmandu-i18n-perl -- modules for handling text localisation within the Catmandu framework

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-i18n-perl
  Version : 0.01
  Upstream Author : Nicolas Franck
* URL : https://metacpan.org/release/Catmandu-I18N
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : modules for handling text localisation within the Catmandu 
framework

Catmandu::I18N contains modules for handling text localisation within the
Catmandu framework

This module uses Locale::Maketext::Lexicon::Gettext
 https://metacpan.org/pod/Locale::Maketext::Lexicon::Gettext

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030033: ITP: libcatmandu-fix-cmd-perl -- Catmandu module that pipes data to be 'fixed' through an external process

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-fix-cmd-perl
  Version : 0.0201
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-Fix-cmd
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu module that pipes data to be 'fixed' through an 
external process

Catmandu::Fix::cmd provides a module that pipes data to be 'fixed' through an
external process.

Catmandu::Fix is a Perl package that can transform data. These packages are
used for easy data manipulation by non programmers. The main intention is to
use fixes on the command line or in Fix scripts. A small DSL language is
available to execute many Fix command on a stream of data.

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030031: ITP: libcatmandu-filestore-perl -- Catmandu namespace for packages that can make files persistent

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-filestore-perl
  Version : 1.16
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-FileStore
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu namespace for packages that can make files 
persistent

Each Catmandu::FileStore is a Catmandu::Store and inherits all its methods,

A Catmandu::FileStore is package to store and retrieve binary content in
an filesystem, memory or a network. A Catmandu::FileStore contains one or
more Catmandu::FileBag which is a kind of folder.

Each Catmandu::FileBag contains one or more files.

One special Catmandu::FileBag is the index and contains the listing of all
Catmandu::FileBag in the Catmandu::FileStore,

See also:
 Catmandu::Store::File::Simple
 Catmandu::Store::File::Memor
 Catmandu::FileBag

Catmandu provides a suite of Perl modules to ease the import, storage,
retrieval, export and transformation of metadata records.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030022: ITP: libcatmandu-fedoracommons-perl -- low level Catmandu interface to the Fedora Commons REST API

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-fedoracommons-perl
  Version : 0.5
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-FedoraCommons
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : low level Catmandu interface to the Fedora Commons REST API

Catmandu::FedoraCommons is a Perl API to the Fedora Commons REST API
(http://www.fedora.info/).

Supported versions are Fedora Commons 3.6 or better.

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1030021: ITP: libcatmandu-bibtex-perl -- Catmandu modules for working with BibTeX data

2023-01-30 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-bibtex-perl
  Version : 0.21
  Upstream Author : Nicolas Steenlant C<<  >>
* URL : https://metacpan.org/release/Catmandu-BibTeX
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with BibTeX data

Catmandu::BibTeX is a collection of Perl modules for working with BibTeX data.

The following modules are provided:
 Catmandu::Importer::BibTeX
 Catmandu::Exporter::BibTeX

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029818: ITP: libcatmandu-dbi-perl -- Catmandu tools to communicate with DBI based interfaces

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-dbi-perl
  Version : 0.12
  Upstream Author : Nicolas Franck
* URL : https://metacpan.org/release/Catmandu-DBI
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu tools to communicate with DBI based interfaces

Catmandu::DBI provides tools that communicate with DBI based interfaces

The following modules are provided:
 Catmandu::DBI
 Catmandu::Importer::DBI
 Catmandu::Serializer::json_string
 Catmandu::Store::DBI
 Catmandu::Store::DBI::Bag

More information on Perl DBI
 https://dbi.perl.org

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029817: ITP: libcatmandu-crossref-perl -- Catmandu modules to import data from the CrossRef API

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-crossref-perl
  Version : 0.007
  Upstream Author : Vitali Peil 
* URL : https://metacpan.org/release/Catmandu-CrossRef
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules to import data from the CrossRef API

Catmandu::CrossRef provides modules to import data from the CrossRef API.

The following modules are provided:
 Catmandu::CrossRef
 Catmandu::Importer::CrossRef

More information on the CrossRef API:
 https://www.crossref.org/documentation/retrieve-metadata/rest-api/

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029813: ITP: libcatmandu-cmd-repl-perl -- interactive shell for Catmandu

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-cmd-repl-perl
  Version : 0.01
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-Cmd-repl
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : interactive shell for Catmandu


Catmandu::Cmd::repl provides an interactive shell for Catmandu, commonly known
as a REPL - Read, Evaluate, Print, Loop.

This module depends on Devel::REPL for its core functionality.
 https://metacpan.org/pod/Devel::REPL

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029812: ITP: libcatmandu-breaker-perl -- Catmandu modules that export data in a Breaker format

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-breaker-perl
  Version : 0.141
  Upstream Author : Patrick Hochstenbach C<<  
>>
* URL : https://metacpan.org/release/Catmandu-Breaker
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules that export data in a Breaker format

Catmandu::Breaker is inspired by the article "Metadata Analysis at the
Command-Line" by Mark Phillips in http://journal.code4lib.org/articles/7818.
This exporter breaks metadata records into the Breaker format which can be
analyzed further by command line tools.

The following modules are provided:
 Catmandu::Breaker
 Catmandu::Cmd::breaker
 Catmandu::Exporter::Breaker
 Catmandu::Exporter::Breaker::Parser::json
 Catmandu::Exporter::Breaker::Parser::mab
 Catmandu::Exporter::Breaker::Parser::marc
 Catmandu::Exporter::Breaker::Parser::pica
 Catmandu::Exporter::Breaker::Parser::xml

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029778: ITP: libcatmandu-blacklight-perl -- Catmandu module for working with Blacklight catalogs

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-blacklight-perl
  Version : 0.04
  Upstream Author : Patrick Hochstenbach 
* URL : https://metacpan.org/release/Catmandu-Blacklight
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu module for working with Blacklight catalogs

Catmandu::Blacklight is a Perl module for working with Blacklight catalogs.

The following modules are provided:
 Catmandu::Importer::Blacklight

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029777: ITP: libcatmandu-bibtex-perl -- Catmandu modules for working with BibTeX data

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-bibtex-perl
  Version : 0.21
  Upstream Author : Nicolas Steenlant C<<  >>
* URL : https://metacpan.org/release/Catmandu-BibTeX
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu modules for working with BibTeX data

Catmandu::BibTeX is a collection of Perl modules for working with BibTeX data.

The following modules are provided:
 Catmandu::Importer::BibTeX
 Catmandu::Exporter::BibTeX

Catmandu provides a command line client and a Perl API to ease the export (E)
transformation (T) and loading (L) of data into databases or data file, ETL in
short.

Catmandu is specialized in processing, converting, creating library metadata
from various input sources.

Catmandu can process: MARC, MAB, XML, Aleph X-services, BagIt, BibTeX, EAD,
LIDO, JSON Markdown, MODS, OAI-PMH, ORCID, PLoS, PNX, RDF, RIS, SRU, XML, XLS,
XSD , YAML, Z39.50 and many other formats.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029773: ITP: libcatmandu-atom-perl -- Perl module for working with Atom feeds

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-atom-perl
  Version : 0.05
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/release/Catmandu-Atom
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module for working with Atom feeds

Catmandu::Atom is a Perl module for working with Atom feeds

You can use this module from the command line.
 $ catmandu convert Atom --url http://my.host.org/feed.atom to JSON

Or from within Perl.

 use Catmandu;
 my $importer =
   Catmandu->importer( 'Atom', url => 'http://my.host.org/feed.atom' );

 $importer->each(
 sub {
 my $entry = shift;
 printf "%s\n", $entry->{title};
 }
 );

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029769: ITP: libcatmandu-alephx-perl -- Low level client for Aleph X-Services

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-alephx-perl
  Version : 1.073
  Upstream Author : Nicolas Franck 
* URL : https://metacpan.org/release/Catmandu-AlephX
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Low level client for Aleph X-Services

Catmandu::AlephX is a perl module that provides an interface to Ex Libris'
Aleph system.

More information about Aleph X-Services
 https://developers.exlibrisgroup.com/aleph/apis/aleph-x-services

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029759: ITP: libcatmandu-aat-perl -- Catmandu library to retrieve items from the AAT

2023-01-27 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcatmandu-aat-perl
  Version : 0.03
  Upstream Author : Pieter De Praetere 
* URL : https://metacpan.org/release/Catmandu-AAT
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Catmandu library to retrieve items from the AAT

Catmandu::AAT contains a store to lookup a Subject in the AAT using its SPARQL
endpoint.

Also included is a fix to match a term to a Subject and a fix to search for a
term in the AAT.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029687: ITP: libmarc-mir-perl -- Specification for in-memory representation of a MARC record

2023-01-26 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmarc-mir-perl
  Version : 0.4
  Upstream Author : Marc Chantreux 
* URL : https://metacpan.org/release/marc-mir
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Specification for in-memory representation of a MARC record

MARC::MIR is not a library, it's a specification for in-memory representation
of a MARC record with simplcity in mind. The current module comes with a set
of helpers to manipulate it (i call it MARC::MIR DSL).

The DSL itself is designed to be used the more natural way possible.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029685: ITP: libmarc-loader-perl -- Perl module for creating MARC record from a hash

2023-01-26 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmarc-loader-perl
  Version : 0.004001
  Upstream Author : Stephane Delaune 
* URL : https://metacpan.org/release/MARC-Loader
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module for creating MARC record from a hash

MARC::Loader is a Perl module for creating MARC records from a hash variable.

This module depends on MARC::Record.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029679: ITP: libmarc-loop-perl -- mechanism to process a batch of MARC21 records

2023-01-26 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmarc-loop-perl
  Version : 0.01
  Upstream Author : Paul Hoffman 
* URL : https://metacpan.org/release/MARC-Loop
* License : GPL-3
  Programming Lang: Perl
  Description : mechanism to process a batch of MARC21 records

MARC::Loop is an alternative to MARC::File and MARC::Record that eschews an
object-oriented approach in favor of a bare-bones procedural one. .

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029677: ITP: libmarc-fast-perl -- Very fast implementation of MARC database reader

2023-01-26 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmarc-fast-perl
  Version : 0.12
  Upstream Author : Dobrica Pavlinusic (dpav...@rot13.org)
* URL : https://metacpan.org/release/MARC-Fast
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Very fast implementation of MARC database reader

Marc::Fast is very fast alternative to MARC and MARC::Record modules.
It's is also very subtable for random access to MARC records (as opposed to
sequential one).

For an example with command line options look at "dump_fastmarc.pl" in scripts

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029658: ITP: libtext-csv-unicode-perl -- mechanism for comma-separated values manipulation routines, with Unicode support

2023-01-25 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtext-csv-unicode-perl
  Version : 0.400
  Upstream Author : Robin Barker 
* URL : https://metacpan.org/release/Text-CSV-Unicode
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : mechanism for comma-separated values manipulation routines, 
with Unicode support

Text::CSV::Unicode provides facilities for the composition and decomposition
of comma-separated values, based on Text::CSV. Text::CSV::Unicode allows for
input with wide character data but does not permit control characters.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029631: ITP: libtest-dbix-class-perl -- Perl module for creating test cases for DBIx::Class applications

2023-01-25 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtest-dbix-class-perl
  Version : 0.52
  Upstream Author : John Napiorkowski 
* URL : https://metacpan.org/release/Test-DBIx-Class
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : Perl module for creating test cases for DBIx::Class 
applications

Test::DBIx::Class attempts to make it easier to write test cases for your
DBIx::Class based applications. It does this in three ways. First, it tries
to make it easy to deploy your Schema. This can be to your dedicated testing
database, or a simple SQLite database. This allows you to run tests without
interfering with your development work and having to stop and set up a testing
database instance.

Second, we allow you to load test fixtures via several different tools.
Last we create some helper functions in your test script so that you can
reduce repeated or boilerplate code. Overall, we attempt to reduce the
amount of code you have to write before you can begin writing tests.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029620: ITP: libmoosex-attribute-env-perl -- mechanism to set default value of an attribute to a value from %ENV

2023-01-25 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libmoosex-attribute-env-perl
  Version : 0.02
  Upstream Author : John Napiorkowski 
* URL : https://metacpan.org/release/MooseX-Attribute-ENV
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : mechanism to set default value of an attribute to a value 
from %ENV

MooseX::Attribute::ENV is a Moose attribute trait that you use when you want
the default value for an attribute to be populated from the %ENV hash. This
module has a few other features that offer merit, as well as being a simple
enough attribute trait that it can serve as a learning tool.

If the named key isn't found in %ENV, then defaults will execute as normal.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029592: ITP: libtie-cycle-sinewave-perl -- mechanism to cycle through a series of values on a sinewave

2023-01-24 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtie-cycle-sinewave-perl
  Version : 0.05
  Upstream Author : David Landgren
* URL : https://metacpan.org/release/Tie-Cycle-Sinewave
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : mechanism to cycle through a series of values on a sinewave

Tie::Cycle::Sinewave allows you to make a scalar iterate through the values on
a sinewave. You set the maximum and minimum values and the number of steps and
you're set.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029590: ITP: libcolor-spectrum-perl -- Perl module for generating HTML colors

2023-01-24 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libcolor-spectrum-perl
  Version : 1.14
  Upstream Author : Jeff Anderson 
* URL : https://metacpan.org/release/Color-Spectrum
* License : Artistic-2.0
  Programming Lang: Perl
  Description : Perl module for generating HTML colors

Color::Spectrum is a module to make spectrums of colors for web page table
tags. It uses a real simple geometric conversion that gets the job done. It
can shade from dark to light, from saturated to dull, and around the
spectrum all at the same time. It can go thru the spectrum in either direction.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



Bug#1029544: ITP: libtest2-harness-perl -- new and improved test harness with better Test2 integration

2023-01-23 Thread mtj
Package: wnpp
Owner: Mason James 
Severity: wishlist
X-Debbugs-CC: debian-de...@lists.debian.org, debian-p...@lists.debian.org

* Package name: libtest2-harness-perl
  Version : 1.000141
  Upstream Author : Chad Granum 
* URL : https://metacpan.org/release/Test2-Harness
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : new and improved test harness with better Test2 integration

Test2::Harness is the backend code that handles running/processing the tests.
In general a user will not use it directly, instead you should probably be
looking at App::Yath which is the UI layer built around Test2::Harness.

The package will be maintained under the umbrella of the Debian Perl Group.

--
Generated with the help of dpt-gen-itp(1) from pkg-perl-tools.



  1   2   >