non port: devel/Makefile |
Number of commits found: 11336 (showing only 100 on this page) |
Saturday, 2 May 2020
|
01:35 sunpoet
Add py-os-client-config1 1.33.0 (copied from py-os-client-config)
- Add PORTSCOUT
|
01:34 sunpoet
Add py-automaton1 1.17.0 (copied from py-automaton)
- Add PORTSCOUT
|
Friday, 1 May 2020
|
14:09 dbaio
Add devel/py-msal-extensions: Microsoft Authentication Extensions for Python
The Microsoft Authentication Extensions for Python offers secure mechanisms for
client applications to perform cross-platform token cache serialization and
persistence. It gives additional support to the Microsoft Authentication
Library for Python (MSAL).
MSAL Python supports an in-memory cache by default and provides the
SerializableTokenCache to perform cache serialization. You can read more about
this in the MSAL Python documentation. Developers are required to implement
their own cache persistance across multiple platforms and Microsoft
Authentication Extensions makes this simpler.
WWW: https://pypi.org/project/msal-extensions/
|
14:08 dbaio
Add devel/py-msal: Microsoft Authentication Library (MSAL) for Python
The Microsoft Authentication Library for Python enables applications to
integrate with the Microsoft identity platform. It allows you to sign in users
or apps with Microsoft identities (Azure AD, Microsoft Accounts and Azure AD
B2C accounts) and obtain tokens to call Microsoft APIs such as Microsoft Graph
or your own APIs registered with the Microsoft identity platform. It is built
using industry standard OAuth2 and OpenID Connect protocols.
WWW: https://github.com/AzureAD/microsoft-authentication-library-for-python
|
05:00 sunpoet
Add py-oslo.privsep1 1.34.0 (copied from py-oslo.privsep)
- Add PORTSCOUT
|
Thursday, 30 Apr 2020
|
13:47 sunpoet
Add rubygem-aws-sdk-iotsitewise 1.0.0
Official AWS Ruby gem for AWS IoT SiteWise.
WWW: https://github.com/aws/aws-sdk-ruby
WWW: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-iotsitewise
|
13:47 sunpoet
Add py-oslo.vmware2 2.35.0 (copied from py-oslo.vmware)
- Add PORTSCOUT
|
Wednesday, 29 Apr 2020
|
15:47 sunpoet
Add py-watchgod 0.6
watchgod is a simple, modern file watching and code reload in python.
watchgod is inspired by watchdog, hence the name, but tries to fix some of the
frustrations I found with watchdog, namely: separate approaches for each OS, an
inelegant approach to concurrency using threading, challenges around debouncing
changes and bugs which weren't being fixed.
WWW: https://github.com/samuelcolvin/watchgod
|
15:46 sunpoet
Add py-oslo.rootwrap5 5.17.1 (copied from py-oslo.rootwrap)
- Add PORTSCOUT
|
Tuesday, 28 Apr 2020
|
23:01 sunpoet
Add py-oslo.reports1 1.31.1 (copied from py-oslo.reports)
- Add PORTSCOUT
|
21:05 bofh
[MOVED] devel/k8048 => devel/pickle
- Project has been renamed. For reference:
http://dev.kewl.org/k8048/
|
06:39 tobik
New port: devel/rust-analyzer
Rust-analyzer is an implementation of Language Server Protocol for
the Rust programming language. It provides features like completion
and goto definition for many code editors.
WWW: https://rust-analyzer.github.io/
|
Monday, 27 Apr 2020
|
20:57 sunpoet
Add py-pytest-lazy-fixture 0.6.3
pytest-lazy-fixture helps to use fixtures in pytest.mark.parametrize.
WWW: https://github.com/TvoroG/pytest-lazy-fixture
|
20:57 sunpoet
Add py-pytest-black 0.3.8
pytest-black is a pytest plugin to enable format checking with black.
WWW: https://github.com/shopkeep/pytest-black
|
20:57 sunpoet
Add py-oslo.versionedobjects1 1.37.0 (copied from py-oslo.versionedobjects)
- Add PORTSCOUT
|
20:54 sunpoet
Add py-jaraco.util13 13.0.0 (copied from py-jaraco.util)
- Add PORTSCOUT
|
20:54 sunpoet
Add py-fluent 0.10.0
This is a Python implementation of Project Fluent, a localization framework
designed to unleash the entire expressive power of natural language
translations.
Project Fluent keeps simple things simple and makes complex things possible. The
syntax used for describing translations is easy to read and understand. At the
same time it allows, when necessary, to represent complex concepts from natural
languages like gender, plurals, conjugations, and others.
WWW: https://github.com/projectfluent/python-fluent
|
20:54 sunpoet
Add p5-File-HomeDir-Tiny 0.01
File::HomeDir::Tiny is useful for the 90% of the time that you only need 10% of
File::HomeDir's functionality. It depends on no other modules and consists of
just fourteen lines of code.
WWW: https://metacpan.org/release/File-HomeDir-Tiny
|
12:43 mandree
New port: devel/py-backports.shutil_which
This package packports Python 3's shutil.which.
Layout copied from kai@'s py-backports.os
Usage:
try:
from shutil import which
except ImportError:
from backports.shutil_which import which
WWW: https://github.com/minrk/backports.shutil_which
Used in an attempt to enable multimedia/streamlink on py27,
because sysutils/py-shutilwhich uses an incompatible layout.
|
Sunday, 26 Apr 2020
|
11:53 sunpoet
Add py-oslo.context2 2.23.0 (copied from py-oslo.context)
- Add PORTSCOUT
|
11:53 sunpoet
Add py-l18n 2018.5
As you may have noticed, l18n is a contraction of i18n and l10n, namely
'internationalisation' and 'localization'. It basically provides lazy
translations for names used for localization purposes (e.g. places and
timezones).
I started writing l18n when I was looking for translations for the pytz library.
Indeed, on a multi-lingual site where users can select the timezone they are in,
it's much better if they can select in their language, as in some cases, the
differences with the english name can be significant, hence the place to look
for it when it's sorted in alphabetical order.
And as I am lazy, I thought of a way to - almost - automatically fetch the
translations from the CLDR (Unicode's Common Locale Data Repository) database.
Integrating function to link timezone to country codes, there was no reason not
to try and provide translations also for the latter. In the near future, I - or
contributors - may also add currencies or measurement units fetched from the
CLDR database ...
WWW: https://github.com/tkhyn/l18n
|
11:53 sunpoet
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
|
10:12 tagattie
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)
|
Friday, 24 Apr 2020
|
21:05 rm
devel/py-liblarch: remove deprecated port
This port has no use beyond now removed deskutils/gtg
|
18:01 sunpoet
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
|
18:01 sunpoet
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
|
18:01 sunpoet
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
|
18:01 sunpoet
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
|
18:01 sunpoet
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
|
18:00 sunpoet
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
|
18:00 sunpoet
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
|
18:00 sunpoet
Add p5-Data-Object-Types 0.04
Data::Object::Types provides type constraints for Data::Object.
WWW: https://metacpan.org/release/Data-Object-Types
|
18:00 sunpoet
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
|
18:00 sunpoet
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
|
18:00 sunpoet
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
|
18:00 sunpoet
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
|
18:00 sunpoet
Add p5-Data-Object-RoleHas 2.01
Data::Object::RoleHas provides options for defining class attributes.
WWW: https://metacpan.org/release/Data-Object-RoleHas
|
18:00 sunpoet
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
|
18:00 sunpoet
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
|
17:59 sunpoet
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
|
17:59 sunpoet
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
|
17:59 sunpoet
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
|
17:48 sunpoet
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
|
17:48 sunpoet
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
|
17:48 sunpoet
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
|
17:48 sunpoet
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
|
17:48 sunpoet
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
|
17:48 sunpoet
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
|
17:47 sunpoet
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
|
17:47 sunpoet
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
|
17:47 sunpoet
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
|
17:47 sunpoet
Add p5-Data-Object-Name 2.01
Data::Object::Name provides methods for converting "name" strings.
WWW: https://metacpan.org/release/Data-Object-Name
|
17:47 sunpoet
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
|
17:47 sunpoet
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
|
17:47 sunpoet
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
|
17:47 sunpoet
Add p5-Data-Object-ClassHas 2.01
Data::Object::ClassHas provides options for defining class attributes.
WWW: https://metacpan.org/release/Data-Object-ClassHas
|
17:47 sunpoet
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
|
17:46 sunpoet
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
|
17:46 sunpoet
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
|
17:46 sunpoet
Add p5-Data-Object-Args 2.00
Data::Object::Args provides methods for accessing @ARGS items.
WWW: https://metacpan.org/release/Data-Object-Args
|
Wednesday, 22 Apr 2020
|
21:20 sunpoet
Add rubygem-batch-loader14 1.4.1 (copied from rubygem-batch-loader)
- Add PORTSCOUT
|
21:20 sunpoet
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
|
17:15 lbartoletti
[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
|
01:16 yuri
New port: devel/desed: Demystify and debug sed scripts from the comfort of your
terminal
|
Tuesday, 21 Apr 2020
|
20:04 dbaio
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/
|
19:40 dbaio
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/
|
19:33 sunpoet
Add py-crashtest 0.3.0
Crashtest manages Python errors to provide better error messages.
WWW: https://github.com/sdispater/crashtest
|
02:29 cy
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
|
Monday, 20 Apr 2020
|
17:21 delphij
python-hglib is a library with a fast, convenient interface to
Mercurial. It uses Mercurial's command server for communication
with hg.
PR: 245756
|
Saturday, 18 Apr 2020
|
09:21 antoine
Attempt to unbreak INDEX
|
08:22 bapt
Lowercase the port category and package name
|
Friday, 17 Apr 2020
|
16:37 bapt
New port devel/libuInputPlus
Easy-to-use uinput library in C++
WWW: https://github.com/YukiWorkshop/libuInputPlus
|
16:35 bapt
new port devel/libevdevPlus
Easy-to-use event device library in C++
WWW: https://github.com/YukiWorkshop/libevdevPlus
|
Tuesday, 14 Apr 2020
|
15:49 mat
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
|
13:17 sunpoet
Add rubygem-googleapis-common-protos-types104 1.0.4 (copied from
rubygem-googleapis-common-protos-types)
- Add PORTSCOUT
|
Sunday, 12 Apr 2020
|
21:32 dmgk
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>
|
12:44 danilo
- Rename devel/aws-c-commons to devel/aws-c-common. That is the correct
project's name.
|
Saturday, 11 Apr 2020
|
19:51 leres
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/
|
Friday, 10 Apr 2020
|
16:35 yuri
New port: devel/mustache: Mustache text templates for modern C++
|
Thursday, 9 Apr 2020
|
18:55 sunpoet
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
|
18:55 sunpoet
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
|
Wednesday, 8 Apr 2020
|
17:06 sunpoet
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>
|
17:03 sunpoet
Add py-oslo.concurrency3 3.31.0 (copied from py-oslo.concurrency)
- Add PORTSCOUT
|
02:21 sunpoet
Add py-tempora1 1.14.1 (copied from py-tempora)
- Add PORTSCOUT
|
Tuesday, 7 Apr 2020
|
15:50 jbeich
lang/intel-compute-runtime: expose oneAPI support
Need help testing runtime e.g., finding a simple consumer.
|
06:22 koobs
[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
|
03:31 yuri
Remove devel/jucipp: It is a duplicate of editors/jucipp
Repology failed to find it by name.
|
Monday, 6 Apr 2020
|
20:48 yuri
New port: devel/jucipp: Lightweight IDE supporting the most recent C++ standards
|
17:31 sunpoet
Move devel/p5-Glib2 to devel/p5-Glib
- Bump PORTREVISION of dependent ports for dependency change
|
Sunday, 5 Apr 2020
|
19:53 sunpoet
Add py-oslo.cache1 1.38.1 (copied from py-oslo.cache)
- Add PORTSCOUT
|
19:53 sunpoet
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
|
19:53 sunpoet
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
|
Saturday, 4 Apr 2020
|
14:45 sunpoet
Add py-keystonemiddleware8 8.0.0 (copied from py-keystonemiddleware)
- Add PORTSCOUT
|
07:29 tobik
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>
|
07:23 sunpoet
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
|
07:22 sunpoet
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
|
07:22 sunpoet
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
|
07:22 sunpoet
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
|
07:21 sunpoet
Add py-futurist1 1.10.0 (copied from py-futurist)
- Add PORTSCOUT
|
Thursday, 2 Apr 2020
|
21:19 sunpoet
Add rubygem-jira-ruby1 1.8.0 (copied from rubygem-jira-ruby)
- Add PORTSCOUT
|
Number of commits found: 11336 (showing only 100 on this page) |