notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photos
All times are UTC
Ukraine
The recently imposed "must be logged in" restriction is a response to increased bot traffic on the site. This affects search, commits, and vuxml pages.
Search engines are not blocked. Try using "site:www.freshports.org" and your search terms.
non port: devel/Makefile

Number of commits found: 12515 (showing only 100 on this page)

[First Page]  «  34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44  »  [Last Page]

Sunday, 26 Apr 2020
11:53 sunpoet search for other commits by this committer
Add p5-Syntax-Keyword-Try 0.11

Syntax::Keyword::Try provides a syntax plugin that implements exception-handling
semantics in a form familiar to users of other languages, being built on a block
labeled with the try keyword, followed by at least one of a catch or finally
block.

As well as providing a handy syntax for this useful behaviour, this module also
serves to contain a number of code examples for how to implement parser plugins
and manipulate optrees to provide new syntax and behaviours for perl code.

WWW: https://metacpan.org/release/Syntax-Keyword-Try
Original commitRevision:533005 
10:12 tagattie search for other commits by this committer
Gbump is a Git tag semantic version bumper.

It will print the current semver version if any and the bumped version.
If the option -q (quiet) is used it will only print the bumped version.
If the option -t (tag) is used then it will create a git tag with the
bumped version.

WWW: https://github.com/nbari/gbump

PR:		242011
Submitted by:	nbari@tequila.io
Approved by:	ehaupt (mentor)
Original commitRevision:533003 
Friday, 24 Apr 2020
21:05 rm search for other commits by this committer
devel/py-liblarch: remove deprecated port

This port has no use beyond now removed deskutils/gtg
Original commitRevision:532896 
18:01 sunpoet search for other commits by this committer
Add rubygem-azure_mgmt_kubernetes_configuration 0.17.0

Microsoft Azure KubernetesConfiguration Client Library for Ruby.

WWW: https://github.com/Azure/azure-sdk-for-ruby
WWW:
https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_kubernetes_configuration
Original commitRevision:532816 
18:01 sunpoet search for other commits by this committer
Add p5-Test-Auto 0.10

Test::Auto aims to provide, a standard for documenting Perl 5 software projects,
a framework writing tests, test automation, and documentation generation.

This framework lets you write documentation in test files using pod-like comment
blocks. By using a particular set of comment blocks (the specification) this
framework can run certain kinds of tests automatically. For example, we can
automatically ensure that the package the test is associated with is loadable,
that the test file comment blocks meet the specification, that any super-classes
or libraries are loadable, and that the functions, methods, and routines are
properly documented.

WWW: https://metacpan.org/release/Test-Auto
Original commitRevision:532815 
18:01 sunpoet search for other commits by this committer
Add p5-routines 0.02

The routines pragma is used to provide typeable method and function signtures to
the calling package, as well as before, after, around, augment and override
method modifiers.

The registry pragma is used to associate the calling package with Type::Tiny
type libraries. A $registry variable is made available to the caller to be used
to access registry objects. The variable is a callback (i.e. coderef) which
should be called with a single argument, the namespace whose registry object you
want, otherwise the argument defaults to main.

WWW: https://metacpan.org/release/routines
Original commitRevision:532814 
18:01 sunpoet search for other commits by this committer
Add p5-PPR 0.000026

The PPR module provides a single regular expression that defines a set of
independent subpatterns suitable for matching entire Perl documents, as well as
a wide range of individual syntactic components of Perl (i.e. statements,
expressions, control blocks, variables, etc.)

The regex does not "parse" Perl (that is, it does not build a syntax tree, like
the PPI module does). Instead it simply "recognizes" standard Perl constructs,
or new syntaxes composed from Perl constructs.

Its features and capabilities therefore complement those of the PPI module,
rather than replacing them. See "Comparison with PPI".

WWW: https://metacpan.org/release/PPR
Original commitRevision:532813 
18:01 sunpoet search for other commits by this committer
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
Original commitRevision:532812 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532811 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532810 
18:00 sunpoet search for other commits by this committer
Add p5-Data-Object-Types 0.04

Data::Object::Types provides type constraints for Data::Object.

WWW: https://metacpan.org/release/Data-Object-Types
Original commitRevision:532809 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532808 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532807 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532806 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532805 
18:00 sunpoet search for other commits by this committer
Add p5-Data-Object-RoleHas 2.01

Data::Object::RoleHas provides options for defining class attributes.

WWW: https://metacpan.org/release/Data-Object-RoleHas
Original commitRevision:532804 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532803 
18:00 sunpoet search for other commits by this committer
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
Original commitRevision:532802 
17:59 sunpoet search for other commits by this committer
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
Original commitRevision:532801 
17:59 sunpoet search for other commits by this committer
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
Original commitRevision:532800 
17:59 sunpoet search for other commits by this committer
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
Original commitRevision:532799 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532797 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532796 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532795 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532794 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532793 
17:48 sunpoet search for other commits by this committer
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
Original commitRevision:532792 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532791 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532790 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532789 
17:47 sunpoet search for other commits by this committer
Add p5-Data-Object-Name 2.01

Data::Object::Name provides methods for converting "name" strings.

WWW: https://metacpan.org/release/Data-Object-Name
Original commitRevision:532788 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532787 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532786 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532785 
17:47 sunpoet search for other commits by this committer
Add p5-Data-Object-ClassHas 2.01

Data::Object::ClassHas provides options for defining class attributes.

WWW: https://metacpan.org/release/Data-Object-ClassHas
Original commitRevision:532784 
17:47 sunpoet search for other commits by this committer
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
Original commitRevision:532783 
17:46 sunpoet search for other commits by this committer
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
Original commitRevision:532782 
17:46 sunpoet search for other commits by this committer
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
Original commitRevision:532781 
17:46 sunpoet search for other commits by this committer
Add p5-Data-Object-Args 2.00

Data::Object::Args provides methods for accessing @ARGS items.

WWW: https://metacpan.org/release/Data-Object-Args
Original commitRevision:532780 
Wednesday, 22 Apr 2020
21:20 sunpoet search for other commits by this committer
Add rubygem-batch-loader14 1.4.1 (copied from rubygem-batch-loader)

- Add PORTSCOUT
Original commitRevision:532516 
21:20 sunpoet search for other commits by this committer
Add rubygem-aws-sdk-synthetics 1.0.0

Official AWS Ruby gem for Synthetics.

WWW: https://github.com/aws/aws-sdk-ruby
WWW: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-synthetics
Original commitRevision:532515 
17:15 lbartoletti search for other commits by this committer
[NEW PORT] devel/simdjson: Parsing gigabytes of JSON per second

JSON is everywhere on the Internet. Servers spend a lot of time parsing it.
The simdjson library uses commonly available SIMD instructions and
microparallel algorithms to parse JSON 2.5 times faster than anything
else out there.

WWW: https://simdjson.org/

NOTA on Current, clang crashes on AMD processors before revision 359826. See:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=245745

PR:		245744
Submitted by:	Oleg Ginzburg <olevole at olevole dot ru>
Approved by:	tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D24505
Original commitRevision:532489 
01:16 yuri search for other commits by this committer
New port: devel/desed: Demystify and debug sed scripts from the comfort of your
terminal
Original commitRevision:532436 
Tuesday, 21 Apr 2020
20:04 dbaio search for other commits by this committer
Add devel/py-azure-mgmt-core: Microsoft Azure Management Core Library for Python

Azure management core library defines extensions to Azure Core that are
specific to ARM (Azure Resource Management) needed when you use client
libraries.

As an end user, you don't need to manually install azure-mgmt-core because it
will be installed automatically when you install other SDKs.

WWW: https://pypi.org/project/azure-mgmt-core/
Original commitRevision:532405 
19:40 dbaio search for other commits by this committer
Add devel/py-azure-mgmt-redhatopenshift

Microsoft Azure Red Hat Openshift Management Client Library for Python

Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

WWW: https://pypi.org/project/azure-mgmt-redhatopenshift/
Original commitRevision:532348 
19:33 sunpoet search for other commits by this committer
Add py-crashtest 0.3.0

Crashtest manages Python errors to provide better error messages.

WWW: https://github.com/sdispater/crashtest
Original commitRevision:532294 
02:29 cy search for other commits by this committer
Welcome new bitkeeper port. Bitkeeper is a distributed VCS, used by
projects such as nwtime.org, the maintainers of ntp.

The port was orignally written by pfg. I applied tiny bit of spit and
polish to DEPENDS to bring it into the ports tree.

Obtained from:	pfg
Original commitRevision:532246 
Monday, 20 Apr 2020
17:21 delphij search for other commits by this committer
python-hglib is a library with a fast, convenient interface to
Mercurial. It uses Mercurial's command server for communication
with hg.

PR:		245756
Original commitRevision:532213 
Saturday, 18 Apr 2020
09:21 antoine search for other commits by this committer
Attempt to unbreak INDEX
Original commitRevision:532007 
08:22 bapt search for other commits by this committer
Lowercase the port category and package name
Original commitRevision:532003 
Friday, 17 Apr 2020
16:37 bapt search for other commits by this committer
New port devel/libuInputPlus

Easy-to-use uinput library in C++

WWW: https://github.com/YukiWorkshop/libuInputPlus
Original commitRevision:531949 
16:35 bapt search for other commits by this committer
new port devel/libevdevPlus

Easy-to-use event device library in C++

WWW: https://github.com/YukiWorkshop/libevdevPlus
Original commitRevision:531947 
Tuesday, 14 Apr 2020
15:49 mat search for other commits by this committer
USES=lua gained flavors.

Ports using USES=lua:module or lua:flavors will be flavored.  A range of
supported lua versions can be set using XX-YY (or XX-, or -YY, or simply ZZ)
for ports not supporting all lua versions.

USES=lua sets LUA_FLAVOR that needs to be used on all dependencies of
flavored lua ports, in a similar way as PHP or Python flavors.

PR:		245038
Submitted by:	andrew tao11 riddles org uk
Reviewed by:	mat, kevans, russ haley gmail com
Approved by:	mat (portmgr)
Differential Revision:	https://reviews.freebsd.org/D16494
Original commitRevision:531700 
13:17 sunpoet search for other commits by this committer
Add rubygem-googleapis-common-protos-types104 1.0.4 (copied from
rubygem-googleapis-common-protos-types)

- Add PORTSCOUT
Original commitRevision:531687 
Sunday, 12 Apr 2020
21:32 dmgk search for other commits by this committer
New port: devel/git-bug

Fully featured git bug tracker that:

* Is fully embeded in git: you only need
  your git repository to have a bug tracker.
* Is distributed: use your normal git remote
  to collaborate, push and pull your bugs!
* Works offline: in a plane or under the sea?
  Keep reading and writing bugs!
* Prevents vendor lock-in: your usual service
  is down or went bad? You already have a full backup.
* Is fast: listing bugs or opening them is a matter
  of milliseconds.
* Doesn't pollute your project: no files are added
  in your project.
* Integrates with your tooling: use the UI you like
  (CLI, terminal, web) or integrate with your existing
  tools through the CLI or the GraphQL API.
* Bridges to other bug trackers: use bridges to import
  and export to other trackers.

WWW: https://github.com/MichaelMure/git-bug

PR:		245578
Submitted by:	Lewis Cook <vulcan@wired.sh>
Original commitRevision:531558 
12:44 danilo search for other commits by this committer
- Rename devel/aws-c-commons to devel/aws-c-common. That is the correct
project's name.
Original commitRevision:531507 
Saturday, 11 Apr 2020
19:51 leres search for other commits by this committer
devel/py-flynt: New port

flynt is a command line tool to automatically convert a project's
Python code from old "%-formatted" and .format(...) strings into
Python 3.6+'s "f-strings".

WWW: https://github.com/ikamensh/
Original commitRevision:531457 
Friday, 10 Apr 2020
16:35 yuri search for other commits by this committer
New port: devel/mustache: Mustache text templates for modern C++
Original commitRevision:531329 
Thursday, 9 Apr 2020
18:55 sunpoet search for other commits by this committer
Add py-pyyaml-include 1.2

pyyaml-include provides an extending constructor of PyYAML: include YAML files
into YAML document.

WWW: https://github.com/tanbro/pyyaml-include
Original commitRevision:531228 
18:55 sunpoet search for other commits by this committer
Add py-pip-licenses 2.1.1

pip-licenses is a CLI tool for checking the software license of installed Python
packages with pip.

WWW: https://github.com/raimon49/pip-licenses
Original commitRevision:531226 
Wednesday, 8 Apr 2020
17:06 sunpoet search for other commits by this committer
Add p5-Proc-Find-Parents 0.631

Return an array containing information about parent processes of $pid up to the
parent of all processes (usually "init"). If $pid is not mentioned, it defaults
to $$. The immediate parent is in the first element of array, followed by its
parent, and so on.

WWW: https://metacpan.org/release/Proc-Find-Parents

PR:		245445
Submitted by:	Zane C. Bowers-Hadley <vvelox@vvelox.net>
Original commitRevision:531137 
17:03 sunpoet search for other commits by this committer
Add py-oslo.concurrency3 3.31.0 (copied from py-oslo.concurrency)

- Add PORTSCOUT
Original commitRevision:531125 
02:21 sunpoet search for other commits by this committer
Add py-tempora1 1.14.1 (copied from py-tempora)

- Add PORTSCOUT
Original commitRevision:531051 
Tuesday, 7 Apr 2020
15:50 jbeich search for other commits by this committer
lang/intel-compute-runtime: expose oneAPI support

Need help testing runtime e.g., finding a simple consumer.
Original commitRevision:531020 
06:22 koobs search for other commits by this committer
[NEW] devel/g-wrap: Tool for generating function wrappers for Guile

G-Wrap is a tool (and guile library) for generating function wrappers
for inter-language calls. It currently only supports generating Guile
wrappers for C functions. Other languages may be supported in the
future, possibly on both sides.

WWW: http://www.nongnu.org/g-wrap/

PR:		241731
Submitted by:	Andrew <andrew tao11 riddles org uk>
Differential Revision: D22189
Original commitRevision:530947 
03:31 yuri search for other commits by this committer
Remove devel/jucipp: It is a duplicate of editors/jucipp

Repology failed to find it by name.
Original commitRevision:530946 
Monday, 6 Apr 2020
20:48 yuri search for other commits by this committer
New port: devel/jucipp: Lightweight IDE supporting the most recent C++ standards
Original commitRevision:530926 
17:31 sunpoet search for other commits by this committer
Move devel/p5-Glib2 to devel/p5-Glib

- Bump PORTREVISION of dependent ports for dependency change
Original commitRevision:530897 
Sunday, 5 Apr 2020
19:53 sunpoet search for other commits by this committer
Add py-oslo.cache1 1.38.1 (copied from py-oslo.cache)

- Add PORTSCOUT
Original commitRevision:530811 
19:53 sunpoet search for other commits by this committer
Add py-intervals 0.8.1

Intervals can be initialized using the class constructor, various factory
methods or from_string class method. The recommended way is to use the factory
methods.

WWW: https://github.com/kvesteri/intervals
Original commitRevision:530810 
19:53 sunpoet search for other commits by this committer
Add py-infinity 1.4

infinity provides all-in-one infinity value for Python. It can be compared to
any object.

WWW: https://github.com/kvesteri/infinity
Original commitRevision:530809 
Saturday, 4 Apr 2020
14:45 sunpoet search for other commits by this committer
Add py-keystonemiddleware8 8.0.0 (copied from py-keystonemiddleware)

- Add PORTSCOUT
Original commitRevision:530665 
07:29 tobik search for other commits by this committer
New port: devel/sentry-cli

Sentry command line client for some generic tasks.
It can connect to the Sentry API and manage some
data for your projects. It's primarily used for
managing debug information files for iOS, Android
as well as release and source maps management for
other platforms.

WWW: https://docs.sentry.io/cli/

PR:		245337
Submitted by:	Lewis Cook <vulcan@wired.sh>
Original commitRevision:530619 
07:23 sunpoet search for other commits by this committer
Move devel/rubygem-cucumber-tag_expressions to
devel/rubygem-cucumber-tag-expressions

- Update to 2.0.4

Changes:	https://github.com/cucumber/cucumber/blob/master/tag-expressions/CHANGELOG.md
Original commitRevision:530564 
07:22 sunpoet search for other commits by this committer
Add py-python-json-logger 0.1.11

This library is provided to allow standard python logging to output log data as
json objects. With JSON we can make our logs more readable by machines and we
can stop writing custom parsers for syslog type records.

WWW: https://github.com/madzak/python-json-logger
Original commitRevision:530561 
07:22 sunpoet search for other commits by this committer
Add py-nbdime 2.0.0

nbdime provides tools for diffing and merging of Jupyter Notebooks.
- nbdiff compare notebooks in a terminal-friendly way
- nbmerge three-way merge of notebooks with automatic conflict resolution
- nbdiff-web shows you a rich rendered diff of notebooks
- nbmerge-web gives you a web-based three-way merge tool for notebooks
- nbshow present a single notebook in a terminal-friendly way

WWW: https://github.com/jupyter/nbdime
Original commitRevision:530560 
07:22 sunpoet search for other commits by this committer
Add py-jupyter-telemetry 0.0.5

Jupyter Telemetry enables Jupyter Applications (e.g. Jupyter Server, Jupyter
Notebook, JupyterLab, JupyterHub, etc.) to record events - i.e. actions by
application users - and transmit them to remote (or local) destinations as
structured data. It works with Python's standard logging library to handle the
transmission of events allowing users to send events to local files, over the
web, etc.

WWW: https://github.com/jupyter/telemetry
Original commitRevision:530559 
07:21 sunpoet search for other commits by this committer
Add py-futurist1 1.10.0 (copied from py-futurist)

- Add PORTSCOUT
Original commitRevision:530558 
Thursday, 2 Apr 2020
21:19 sunpoet search for other commits by this committer
Add rubygem-jira-ruby1 1.8.0 (copied from rubygem-jira-ruby)

- Add PORTSCOUT
Original commitRevision:530411 
12:18 db search for other commits by this committer
VOLK is a sub-project of GNU Radio. Please see http://libvolk.org for bug
tracking, documentation, source code, and contact information about VOLK.

VOLK is the Vector-Optimized Library of Kernels. It is a library that
contains kernels of hand-written SIMD code for different mathematical
operations. Since each SIMD architecture can be very different and no
compiler has yet come along to handle vectorization properly or highly
efficiently, VOLK approaches the problem differently.

For each architecture or platform that a developer wishes to vectorize for,
a new proto-kernel is added to VOLK. At runtime, VOLK will select the correct
proto-kernel. In this way, the users of VOLK call a kernel for performing
the operation that is platform/architecture agnostic. This allows us to
write portable SIMD code.

Bleeding edge code can be found in our git repository at
https://www.gnuradio.org/git/volk.git/.
Original commitRevision:530361 
11:25 sunpoet search for other commits by this committer
Add rubygem-webpacker4-rails60 4.2.2 (copied from rubygem-webpacker-rails60)

- Add PORTSCOUT
Original commitRevision:530273 
11:19 sunpoet search for other commits by this committer
Add p5-Test2-Plugin-IOEvents 0.001001

Test2::Plugin::IOEvents turns prints to STDOUT and STDERR (including warnings)
into proper Test2 events.

WWW: https://metacpan.org/release/Test2-Plugin-IOEvents
Original commitRevision:530271 
Tuesday, 31 Mar 2020
22:52 sunpoet search for other commits by this committer
Add rubygem-method_source0 0.9.2 (copied from rubygem-method_source)

- Add PORTSCOUT
Original commitRevision:530027 
13:52 sunpoet search for other commits by this committer
Add rubygem-semantic_range 2.3.0

SemanticRange is a semver parser written in Ruby for comparison and inclusion of
semantic versions and ranges.

WWW: https://github.com/librariesio/semantic_range
Original commitRevision:529973 
13:52 sunpoet search for other commits by this committer
Add rubygem-azure_mgmt_synapse 0.17.0

Microsoft Azure Synapse Client Library for Ruby.

WWW: https://github.com/Azure/azure-sdk-for-ruby
WWW:
https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_synapse
Original commitRevision:529972 
13:51 sunpoet search for other commits by this committer
Add rubygem-azure_mgmt_support 0.17.0

Microsoft Azure Support Client Library for Ruby.

WWW: https://github.com/Azure/azure-sdk-for-ruby
WWW:
https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_support
Original commitRevision:529971 
13:51 sunpoet search for other commits by this committer
Add py-woops 0.2.1

Woops handles and manages Python errors to provide better error messages.

WWW: https://github.com/sdispater/woops
Original commitRevision:529970 
13:51 sunpoet search for other commits by this committer
Sort SUBDIRs
Original commitRevision:529969 
Monday, 30 Mar 2020
21:06 bofh search for other commits by this committer
[NEW] devel/py-beautifultable: Print ASCII tables for terminals

This Package provides BeautifulTable class for easily printing tabular data in a
visually appealing ASCII format to a terminal.

Features included but not limited to:
- Full customization of the look and feel of the table
- Build the Table as you wish, By adding rows, or by columns or even mixing both
  these approaches.
- Full support for colors using ANSI sequences or any library of your choice. It
  just works.
- Plenty of predefined styles for multiple use cases and option to create custom
  ones.
- Support for Unicode characters.

WWW: https://github.com/pri22296/beautifultable
Original commitRevision:529920 
19:26 bofh search for other commits by this committer
[NEW] devel/py-dotted: Access dicts and lists with a dotted path notation

A Python library that provides a method of accessing lists and dicts with a
dotted path notation. It is useful to access a deep path inside a complex
object composed of lists and dicts.

WWW: https://github.com/carlosescri/DottedDict/
Original commitRevision:529910 
07:12 mfechner search for other commits by this committer
Obsolete, please use devel/rubygem-slack-notifier instead.
Original commitRevision:529865 
Saturday, 28 Mar 2020
17:51 pi search for other commits by this committer
New port: devel/revive

Fast, configurable, extensible, flexible, and
beautiful linter for Go. Drop-in replacement
of golint. Revive provides a framework for
development of custom rules, and lets you
define a strict preset for enhancing your
development & code review processes.

WWW: https://revive.run

PR:		245127
Submitted by:	Lewis Cook <vulcan@wired.sh>
Original commitRevision:529750 
08:44 mfechner search for other commits by this committer
New ports required for gitlab-ce 12.9 upgrade.
Original commitRevision:529310 
Friday, 27 Mar 2020
10:38 0mp search for other commits by this committer
New port: devel/dbus-java

This port provides a native Java implementation of the D-Bus protocol,
instead of being just a wrapper around the C reference implementation.

WWW: https://dbus.freedesktop.org/doc/dbus-java/
Original commitRevision:529239 
Thursday, 26 Mar 2020
09:44 netchild search for other commits by this committer
Rename sonarqube to sonarqube-community to make it clear it is the
communitiy-edition.
Rename sonar-ant-task to sonarqube-ant-task to follow the naming
of the vendor.
Original commitRevision:529173 
Wednesday, 25 Mar 2020
21:06 0mp search for other commits by this committer
New port: devel/libmatthew

Selection of libraries for Java which are useful and not provided with
Java.

- Unix Sockets Library: This is a collection of classes and native code to
  allow you to read and write Unix sockets in Java.
- Debug Library: This is a comprehensive logging and debugging solution.
- CGI Library: This is a collection of classes and native code to allow you
  to write CGI applications in Java.
- I/O Library: This provides a few much needed extensions to the Java I/O
  subsystem. Firstly, there is a class which will connect and InputStream
  with an OutputStream and copy data between them.  Secondly there are two
  classes for inserting into an Input or OutputStream pipe a command line
  command, so that everything is piped through that command.  Thirdly there
  are a pair of classes for splitting streams in two. This can either be to
  two OuputStreams, or to an OutputStream and a file. Equivelent to the
  UNIX tool tee in UNIX pipes.
- Hexdump: This class formats byte-arrays in hex and ascii for display.

WWW: http://www.matthew.ath.cx/projects/java/
Original commitRevision:529128 
20:55 db search for other commits by this committer
libSavitar is a c++ implementation of 3mf loading with SIP python binding
Original commitRevision:529126 
11:19 rene search for other commits by this committer
Remove expired port:

2020-03-25 devel/py-antlr4-python2-runtime: Uses EoL python27, please use
devel/antlr4-python3-runtime instead
Original commitRevision:529092 
01:10 db search for other commits by this committer
Trimesh is a pure Python (2.7-3.4+) library for loading and using triangular
meshes with an emphasis on watertight surfaces. The goal of the library
is to provide a full featured and well tested Trimesh object which allows
for easy manipulation and analysis, in the style of the Polygon object in
the Shapely library.

The API is mostly stable, but this should not be relied on and is not
guaranteed: install a specific version if you plan on deploying something
using trimesh.

WWW: https://pypi.org/project/trimesh/#description
Original commitRevision:529070 
Tuesday, 24 Mar 2020
01:45 bofh search for other commits by this committer
[NEW] devel/py-pytest-verbose-parametrize: Parametrize hook to generate ids for
parametrized tests

Pytest parametrize hook to generate ids for parametrized tests that are a little
more descriptive than the default (which just outputs id numbers).

WWW:
https://github.com/manahl/pytest-plugins/tree/master/pytest-verbose-parametrize
Original commitRevision:529020 

Number of commits found: 12515 (showing only 100 on this page)

[First Page]  «  34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44  »  [Last Page]