1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
Commit Graph

505537 Commits

Author SHA1 Message Date
Sunpoet Po-Chuan Hsieh
fea4897c09 Add p5-Keyword-Simple 0.04
Keyword::Simple lets you implement new keywords in pure Perl. To do this, you
need to write a module and call Keyword::Simple::define in your import method.
Any keywords defined this way will be available in the lexical scope that's
currently being compiled.

WWW: https://metacpan.org/release/Keyword-Simple
2020-04-24 18:01:05 +00:00
Sunpoet Po-Chuan Hsieh
af6f1edd21 Add p5-Keyword-Declare 0.001017
Keyword::Declare implements a new Perl keyword: keyword, which you can use to
specify other new keywords.

Normally, to define new keywords in Perl, you either have to write them in XS
(shiver!) or use a module like Keyword::Simple or Keyword::API. Using any of
these approaches requires you to grab all the source code after the keyword,
manually parse out the components of the keyword's syntax, construct the
replacement source code, and then substitute it for the original source code you
just parsed.

Using Keyword::Declare, you define a new keyword by specifying its name and a
parameter list corresponding to the syntactic components that must follow the
keyword. You then use those parameters to construct and return the replacement
source code. The module takes care of setting up the keyword, and of the
associated syntax parsing, and of inserting the replacement source code in the
correct place.

WWW: https://metacpan.org/release/Keyword-Declare
2020-04-24 18:00:58 +00:00
Sunpoet Po-Chuan Hsieh
21992a1f47 Add p5-Data-Object-Vars 2.01
Data::Object::Role::Stashable provides methods for stashing data within the
object.

WWW: https://metacpan.org/release/Data-Object-Vars
2020-04-24 18:00:52 +00:00
Sunpoet Po-Chuan Hsieh
d85d36f180 Add p5-Data-Object-Types 0.04
Data::Object::Types provides type constraints for Data::Object.

WWW: https://metacpan.org/release/Data-Object-Types
2020-04-24 18:00:46 +00:00
Sunpoet Po-Chuan Hsieh
4bc4fd5ce6 Add p5-Data-Object-Try 2.02
Data::Object::Try provides an object-oriented interface for performing complex
try/catch operations.

WWW: https://metacpan.org/release/Data-Object-Role-Tryable
2020-04-24 18:00:39 +00:00
Sunpoet Po-Chuan Hsieh
fd860d59d4 Add p5-Data-Object-Struct 2.00
Data::Object::Struct provides a class that creates struct-like objects which
bundle attributes together, is immutable, and provides accessors, without having
to write an explicit class.

WWW: https://metacpan.org/release/Data-Object-Struct
2020-04-24 18:00:33 +00:00
Sunpoet Po-Chuan Hsieh
6056716052 Add p5-Data-Object-State 2.00
Data::Object::State provides an abstract base class for creating singleton
classes. This package is derived from Moo and makes consumers Moo classes (with
all that that entails). This package also injects a BUILD method which is
responsible for hooking into the build process and returning the appropriate
state.

WWW: https://metacpan.org/release/Data-Object-State
2020-04-24 18:00:27 +00:00
Sunpoet Po-Chuan Hsieh
eee3ba3010 Add p5-Data-Object-Space 2.01
Data::Object::Space provides methods for parsing and manipulating package
namespaces.

WWW: https://metacpan.org/release/Data-Object-Space
2020-04-24 18:00:20 +00:00
Sunpoet Po-Chuan Hsieh
04aa8b6d2d Add p5-Data-Object-RoleHas 2.01
Data::Object::RoleHas provides options for defining class attributes.

WWW: https://metacpan.org/release/Data-Object-RoleHas
2020-04-24 18:00:14 +00:00
Sunpoet Po-Chuan Hsieh
d99b0bdf93 Add p5-Data-Object-Role-Tryable 2.00
Data::Object::Role::Tryable provides a wrapper around the Data::Object::Try
class which provides an object-oriented interface for performing complex
try/catch operations.

WWW: https://metacpan.org/release/Data-Object-Role-Tryable
2020-04-24 18:00:07 +00:00
Sunpoet Po-Chuan Hsieh
1d165eb62a Add p5-Data-Object-Role-Throwable 2.01
Data::Object::Role::Throwable provides mechanisms for throwing the object as an
exception.

WWW: https://metacpan.org/release/Data-Object-Role-Throwable
2020-04-24 18:00:01 +00:00
Sunpoet Po-Chuan Hsieh
d1c416523f Add p5-Data-Object-Role-Stashable 2.01
Data::Object::Role::Stashable provides methods for stashing data within the
object.

WWW: https://metacpan.org/release/Data-Object-Role-Stashable
2020-04-24 17:59:55 +00:00
Sunpoet Po-Chuan Hsieh
e9d48ff501 Add p5-Data-Object-Role-Proxyable 2.03
Data::Object::Role::Proxyable provides a wrapper around the AUTOLOAD routine
which processes calls to routines which don't exist. Adding a build_proxy method
to the consuming class acts as a hook into routine dispatching, which processes
calls to routines which don't exist. The build_proxy routine is called as a
method and receives $self, $package, $method, and any arguments passed to the
method as a list of arguments, e.g. @args. The build_proxy method must return a
routine (i.e. a callback) or the undefined value which results in a "method
missing" error.

WWW: https://metacpan.org/release/Data-Object-Role-Proxyable
2020-04-24 17:59:48 +00:00
Sunpoet Po-Chuan Hsieh
28699be99d Add p5-Data-Object-Role-Pluggable 0.01
Data::Object::Role::Pluggable provides a mechanism for dispatching to plugin
classes.

WWW: https://metacpan.org/release/Data-Object-Role-Pluggable
2020-04-24 17:59:42 +00:00
Dmitri Goutnik
00e4f95246 devel/gh: Update to 0.7.0
Changes:	https://github.com/cli/cli/releases/tag/v0.7.0
PR:		245876
Submitted by:	Lewis Cook <vulcan@wired.sh> (maintainer)
2020-04-24 17:53:07 +00:00
Sunpoet Po-Chuan Hsieh
d30f209415 Add p5-Data-Object-Role-Immutable 2.01
Data::Object::Role::Immutable provides a mechanism for making any derived object
immutable.

WWW: https://metacpan.org/release/Data-Object-Role-Immutable
2020-04-24 17:48:32 +00:00
Sunpoet Po-Chuan Hsieh
28791f8f8f Add p5-Data-Object-Role-Formulatable 0.01
Data::Object::Role::Formulatable provides a mechanism for automatically
inflating objects from constructor arguments.

WWW: https://metacpan.org/release/Data-Object-Role-Formulatable
2020-04-24 17:48:25 +00:00
Sunpoet Po-Chuan Hsieh
3465e20dbb Add p5-Data-Object-Role-Errable 0.01
Data::Object::Role::Errable provides a mechanism for handling errors
(exceptions). It's a more structured approach to being "throwable". The idea is
that any object that consumes this role can set an error which automatically
throws an exception which if trapped includes the state (object as thrown) in
the exception context.

WWW: https://metacpan.org/release/Data-Object-Role-Errable
2020-04-24 17:48:19 +00:00
Sunpoet Po-Chuan Hsieh
5059522292 Add p5-Data-Object-Role-Dumpable 2.01
Data::Object::Role::Dumpable provides methods for dumping the object and
underlying value.

WWW: https://metacpan.org/release/Data-Object-Role-Dumpable
2020-04-24 17:48:12 +00:00
Sunpoet Po-Chuan Hsieh
11e68a8b0e Add p5-Data-Object-Role-Buildable 0.03
Data::Object::Role::Buildable provides methods for hooking into object
construction of the consuming class, e.g. handling single-arg object
construction.

WWW: https://metacpan.org/release/Data-Object-Role-Buildable
2020-04-24 17:48:06 +00:00
Sunpoet Po-Chuan Hsieh
decf89e67f Add p5-Data-Object-Role-Arguable 0.01
Data::Object::Role::Arguable provides a mechanism for unpacking an argument list
and creating a data structure suitable for passing to the consumer constructor.
The argslist routine should return a list of attribute names in the order to be
parsed. An attribute name maybe prefixed with "@" to denote that all remaining
items should be assigned to an arrayref, e.g. @options, or "%" to denote that
all remaining items should be assigned to a hashref, e.g. %options.

WWW: https://metacpan.org/release/Data-Object-Role-Arguable
2020-04-24 17:47:59 +00:00
Sunpoet Po-Chuan Hsieh
6a9d42ce93 Add p5-Data-Object-Role 2.01
Data::Object::Role modifies the consuming package making it a role.

WWW: https://metacpan.org/release/Data-Object-Role
2020-04-24 17:47:53 +00:00
Sunpoet Po-Chuan Hsieh
bbd1ed2d7b Add p5-Data-Object-Plugin 0.01
Data::Object::Plugin provides an abstract base class for defining plugin
classes.

WWW: https://metacpan.org/release/Data-Object-Plugin
2020-04-24 17:47:46 +00:00
Sunpoet Po-Chuan Hsieh
737ab5cd86 Add p5-Data-Object-Opts 2.00
Data::Object::Opts provides methods for accessing command-line arguments.

WWW: https://metacpan.org/release/Data-Object-Opts
2020-04-24 17:47:40 +00:00
Sunpoet Po-Chuan Hsieh
67689a225a Add p5-Data-Object-Name 2.01
Data::Object::Name provides methods for converting "name" strings.

WWW: https://metacpan.org/release/Data-Object-Name
2020-04-24 17:47:33 +00:00
Sunpoet Po-Chuan Hsieh
e2e5600a6d Add p5-Data-Object-Kind 0.01
Data::Object::Kind provides methods common across all Data::Object value
classes.

WWW: https://metacpan.org/release/Data-Object-Kind
2020-04-24 17:47:26 +00:00
Sunpoet Po-Chuan Hsieh
b85d24a2f6 Add p5-Data-Object-Exception 2.02
Data::Object::Exception provides functionality for creating, throwing, and
introspecting exception objects.

WWW: https://metacpan.org/release/Data-Object-Exception
2020-04-24 17:47:20 +00:00
Sunpoet Po-Chuan Hsieh
0c8d3e7065 Add p5-Data-Object-Data 2.01
Data::Object::Data provides methods for parsing and extracting pod-like sections
from any file or package. The pod-like syntax allows for using these sections
anywhere in the source code and having Perl properly ignoring them.

WWW: https://metacpan.org/release/Data-Object-Data
2020-04-24 17:47:13 +00:00
Sunpoet Po-Chuan Hsieh
6c0199e2f7 Add p5-Data-Object-ClassHas 2.01
Data::Object::ClassHas provides options for defining class attributes.

WWW: https://metacpan.org/release/Data-Object-ClassHas
2020-04-24 17:47:07 +00:00
Sunpoet Po-Chuan Hsieh
e87aa527aa Add p5-Data-Object-Class 2.02
Data::Object::Class modifies the consuming package making it a class.

WWW https://metacpan.org/release/Data-Object-Class
2020-04-24 17:47:00 +00:00
Sunpoet Po-Chuan Hsieh
cb7e0bf3bb Add p5-Data-Object-Cast 0.01
Data::Object::Cast provides functions for casting native data types to objects
and the reverse.

WWW: https://metacpan.org/release/Data-Object-Cast
2020-04-24 17:46:54 +00:00
Sunpoet Po-Chuan Hsieh
d581ae4a26 Add p5-Data-Object-Attributes 0.06
Data::Object::Attributes provides options for defining class attributes.
Specifically, this package wraps the has attribute keyword and adds shortcuts
and enhancements. If no directives are specified, the attribute is declared as
read-write and optional.

WWW: https://metacpan.org/release/Data-Object-Attributes
2020-04-24 17:46:47 +00:00
Sunpoet Po-Chuan Hsieh
116cbfacbc Add p5-Data-Object-Args 2.00
Data::Object::Args provides methods for accessing @ARGS items.

WWW: https://metacpan.org/release/Data-Object-Args
2020-04-24 17:46:41 +00:00
Muhammad Moinur Rahman
e85861da17 net/libdaq: Update version 3.0.0-alpha4=>3.0.0-alpha5
Relnotes:	https://github.com/snort3/libdaq/releases
2020-04-24 17:27:18 +00:00
Emanuel Haupt
3aa8bfb3a8 Update to 5.0.17 2020-04-24 17:23:01 +00:00
Tobias C. Berner
eab769eb39 net/kio-gdrive: update to 1.3.0 2020-04-24 17:20:32 +00:00
Tobias C. Berner
a722d37e02 devel/libphonenumber: update to 8.12.2 2020-04-24 17:20:07 +00:00
Muhammad Moinur Rahman
58f92e4896 net-mgmt/centreon-clib: Update version 19.10.0=>20.04.0
Relnotes:	https://github.com/centreon/centreon-clib/releases
2020-04-24 17:06:33 +00:00
Emanuel Haupt
2da10b0539 Update to 0.3.8 2020-04-24 17:02:21 +00:00
Muhammad Moinur Rahman
f58d107aba devel/gsoap: Update version 2.8.100=>2.8.101
- Add OPTIONS IPV6 and make DEFAULT

Relnotes:	https://www.genivia.com/changelog.html#latest
2020-04-24 17:00:12 +00:00
Marc Fonvieille
b25685a6b3 Update to r54073 from the FreeBSD docset.
Approved by:	doceng (implicit)
2020-04-24 16:50:10 +00:00
Jan Beich
60518cad03 mail/mpop: update to 1.4.9
Changes:	https://marlam.de/mpop/news/mpop-1-4-9/
Reported by:	portscout
2020-04-24 16:39:38 +00:00
Yuri Victorovich
0417886e1b textproc/uchardet: Update 0.0.6 -> 0.0.7
Reported by:	portscout
2020-04-24 16:23:11 +00:00
Yuri Victorovich
45192c6198 sysutils/triton: Update 0.7 -> 0.8
Reported by:	portscout
2020-04-24 16:15:58 +00:00
Dmitri Goutnik
0f95d7ceae databases/pspg: Update to 3.0.7
Reported by:	portscout
2020-04-24 16:05:37 +00:00
Dmitri Goutnik
d9e58040bf devel/liteide: Update to 37.1
Changes:	https://github.com/visualfc/liteide/releases/tag/x37.1
2020-04-24 16:00:17 +00:00
Fernando Apesteguía
000b402016 games/gnuchess: update to 6.2.6
While here:

* Remove .info files from pkg-plist
* Do not install duplicated .info file

PR:	245857
Submitted by:	gspurki@gmail.com
2020-04-24 15:57:54 +00:00
Jan Beich
46e5f6d820 devel/cargo-c: update to 0.6.4
Changes:	https://github.com/lu-zero/cargo-c/compare/v0.6.3...v0.6.4
Reported by:	GitHub (watch releases)
2020-04-24 15:54:58 +00:00
Jan Beich
96f179edc2 lang/intel-compute-runtime: update to 20.16.16582
Changes:	https://github.com/intel/compute-runtime/compare/20.15.16524...20.16.16582
Reported by:	GitHub (watch releases)
2020-04-24 15:54:50 +00:00
Muhammad Moinur Rahman
a03d6c1abc databases/freetds-devel: Update version 1.1.108=>1.1.162 2020-04-24 15:09:34 +00:00