Commit graph

2932 commits

Author SHA1 Message Date
taca
2438ba3959 devel/Makefile: remove ruby-railties32 2019-03-03 15:54:15 +00:00
taca
6b0eb47fed devel/Makefile: add ruby-railties52 2019-03-03 15:02:14 +00:00
taca
7b6c22dd66 devel/Makefile: add ruby-activestorage52 2019-03-03 14:57:52 +00:00
taca
040385392f devel/Makefile: add ruby-{activejob,activemodel,activesupport}52 2019-03-03 14:48:42 +00:00
adam
bf372cacbf py-pyrsistent: added version 0.14.11
Pyrsistent is a number of persistent collections (by some referred to as
functional data structures). Persistent in the sense that they are immutable.

All methods on a data structure that would normally mutate it instead return a
new copy of the structure containing the requested updates. The original
structure is left untouched.

This will simplify the reasoning about what a program does since no hidden side
effects ever can take place to these data structures. You can rest assured that
the object you hold a reference to will remain the same throughout its lifetime
and need not worry that somewhere five stack levels below you in the darkest
corner of your application someone has decided to remove that element that you
expected to be there.

Pyrsistent is influenced by persistent data structures such as those found in
the standard library of Clojure. The data structures are designed to share
common elements through path copying. It aims at taking these concepts and make
them as pythonic as possible so that they can be easily integrated into any
python program without hassle.
2019-03-02 14:27:15 +00:00
adam
41cf542bb3 py-test-xprocess: added version 0.12.1
Experimental py.test plugin for managing processes across test runs.
2019-02-25 08:47:03 +00:00
bsiegert
77efaa7ea5 Add a package for empty-0.6.20b.
Run applications under pseudo-terminal (PTY) sessions and replace
TCL/Expect with a simple tool under your favorite shell (sh, bash,
csh, tcsh, ksh, zsh, etc.).

Packaged by David Weller-Fahy in PR pkg/53955.
2019-02-16 16:34:09 +00:00
wen
a91062c94d Add p5-Perl-PrereqScanner-NotQuiteLite 2019-02-09 08:20:28 +00:00
wen
2bf19adb65 Add p5-Regexp-Trie 2019-02-09 08:00:33 +00:00
taca
191e4c0fb3 devel/Makefile: add and enable ruby-i18n12 2019-02-03 14:59:05 +00:00
mgorny
a9de3455ce devel/Makefile: add lld 2019-02-01 16:30:54 +00:00
wiz
f223c11edc devel/Makefile: add lua-cqueues 2019-01-31 09:13:55 +00:00
jaapb
0e2e079b44 Added ocaml-resource-pooling to SUBDIRs 2019-01-29 14:21:43 +00:00
wen
079393254b Add p5-Data-Binary 2019-01-26 08:10:11 +00:00
adam
65c70aa1e1 py-pyobjc-framework-CoreServices: added version 5.1.2
The PyObjC project aims to provide a bridge between the Python and Objective-C
programming languages. The bridge is intended to be fully bidirectional,
allowing the Python programmer to take full advantage of the power provided by
various Objective-C based toolkits and the Objective-C programmer transparent
access to Python based functionality.

This package contains wrappers for framework 'CoreSpotlight'.
2019-01-08 20:29:42 +00:00
adam
7d1a8b6681 tevent: added version 0.9.37
Tevent is an event system based on the talloc memory management library. It is
the core event system used in Samba.

The low level tevent has support for many event types, including timers,
signals, and the classic file descriptor events.

Tevent also provide helpers to deal with asynchronous code providing the
tevent_req (tevent request) functions.
2019-01-03 19:30:47 +00:00
taca
6dba70591e devel/Makefile: add and enable ruby-semantic_puppet 2018-12-06 14:39:18 +00:00
taca
96928d69a5 devel/Makefile: add and enable ruby-hocon 2018-12-06 14:35:49 +00:00
taca
f40b62a66c devel/Makefile: add and enable ruby-cucumber-expressions 2018-12-06 14:33:14 +00:00
taca
a094bbfbad devel/Makefile: add and enable ruby-marcel 2018-12-06 14:25:48 +00:00
taca
baf8f5f2bc devel/Makefile: add and enable ruby-c21e. 2018-12-02 06:47:49 +00:00
jaapb
068b9f8d1d Removed removed packages from Makefile SUBDIRs
Packages are:
ocaml-ppx_ast
ocaml-ppx_core
ocaml-ppx_driver
ocaml-ppx_metaquot
ocaml-ppx_traverse_builtins
ocaml-ppx_type_conv
2018-11-27 14:30:02 +00:00
jaapb
fcafb2dd32 Added ocaml-dune to Makefile SUBDIRs 2018-11-27 14:28:56 +00:00
adam
2c7e019926 py-prompt_toolkit2: added version 2.0.7
2.0.7:
Bug fixes:
- Fixed assertion in PromptSession: the style_transformation check was wrong.
- Removed 'default' attribute in PromptSession. Only ask for it in the
  prompt() method. This fixes the issue that passing default once, will
  store it for all consequent calls in the PromptSession.
- Ensure that __pt_formatted_text__ always returns a FormattedText
  instance. This fixes an issue with print_formatted_text.

New features:
- Improved handling of situations where stdin or stdout are not a terminal.
  (Print warning instead of failing with an assertion.)
- Added print_container utility.
- Sound bell when attempting to edit read-only buffer.
- Handle page-down and page-up keys in RadioList.
- Accept any collections.abc.Sequence for HSplit/VSplit children (instead of
  lists only).
- Improved Vi key bindings: return to navigation mode when Insert is pressed.

2.0.6:
Bug fixes:
- Don't use the predefined ANSI colors for colors that are defined as RGB.
  (Terminals can assign different color schemes for ansi colors, and we don't
  want use any of those for colors that are defined like #aabbcc for instance.)
- Fix in handling of CPRs when patch_stdout is used.

Backwards incompatible changes:
- Change to the Buffer class. Reset the buffer unless the accept_handler
  returns True (which means: "keep_text"). This doesn't affect applications
  that use PromptSession.

New features:
- Added AdjustBrightnessStyleTransformation. This is a simple style
  transformation that improves the rendering on terminals with light or dark
  background.
- Improved performance (string width caching and line height calculation).
- Improved TextArea:
  * Exposed focus_on_click.
  * Added attributes: auto_suggest, complete_while_typing, history,
    get_line_prefix, input_processors.
  * Made attributes writable: lexer, completer, complete_while_typing,
    accept_handler, read_only, wrap_lines.

2.0.5:
Bug fixes:
- Fix in DynamicContainer. Return correct result for get_children. This
  fixes a bug related to focusing.
- Properly compute length of start, end and sym_b characters of
  progress bar.
- CPR (cursor position request) fix.

Backwards incompatible changes:
- Stop restoring PromptSession attributes when exiting prompt.

New features:
- Added get_line_prefix attribute to window. This opens many
  possibilities:
  * Line wrapping (soft and hard) can insert whitespace in front
    of the line, or insert some symbols in front. Like the Vim "breakindent"
    option.
  * Single line prompts also support line continuations now.
  * Line continuations can have a variable width.
- For VI mode: implemented temporary normal mode (control-O in insert mode).
- Added style transformations API. Useful for swapping between light and
  dark color schemes. Added swap_light_and_dark_colors parameter to
  prompt() function.
- Added format() method to ANSI formatted text.
- Set cursor position for Button widgets.
- Added pre_run argument to PromptSession.prompt() method.

2.0.4:
Bug fixes:
- Fix render height for rendering full screen applications in Windows.
- Fix in TextArea. Set accept_handler to None if not given.
- Go to the beginning of the next line when enter is pressed in Vi navigation
  mode, and the buffer doesn't have an accept handler.
- Fix the default argument of the prompt function when called multiple
  times.
- Display decomposed multiwidth characters correctly.
- Accept history in prompt() function again.

Backwards incompatible changes:
- Renamed PipeInput to PosixPipeInput. Added Win32PipeInput and
  create_input_pipe.
- Pass buffer argument to the accept_handler of TextArea.

New features:
- Added accept_default argument to prompt().
- Make it easier to change the body/title of a Frame/Dialog.
- Added DynamicContainer.
- Added merge_completers for merging multiple completers together.
- Add vt100 data to key presses in Windows.
- Handle left/right key bindings in Vi block insert mode.

2.0.3:
Bug fixes:
- Fix in 'x' and 'X' Vi key bindings. Correctly handle line endings and args.
- Fixed off by one error in Vi line selection.
- Fixed bugs in Vi block selection. Correctly handle lines that the selection
  doesn't cross.
- Python 2 bugfix. Handle str/unicode correctly.
- Handle option+left/right in iTerm.

2.0.2:
Bug fixes:
- Python 3.7 support: correctly handle StopIteration in asynchronous generator.
- Fixed off-by-one bug in Vi visual block mode.
- Bugfix in TabsProcessor: handle situations when the cursor is at the end of
  the line.
2018-11-21 17:26:46 +00:00
maya
9c87014cd6 Add lua-std-normalize version 2.0.2
This is a collection of normalized lua functions for Lua 5.1
(including LuaJIT), 5.2 and 5.3.

It can inject deterministic versions of core Lua functions that do not
behave identically across all supported Lua implementations into your
module's lexical environment.  Each function is as thin and fast a
version as is possible in each Lua implementation, evaluating to the
Lua C implementation with no overhead when semantics allow.

From Edgar Fuß in PR pkg/53600
2018-11-20 17:29:24 +00:00
maya
5c9f4c254b Add lua-std-_debug
This is a debug hints management library for Lua 5.1 (including LuaJIT),
5.2 and 5.3.

From Edgar Fuß in PR pkg/53600
2018-11-20 17:28:10 +00:00
maya
29f3c1c7c6 Add lua-bitlib
bit32 is the native Lua 5.2 bit manipulation library, in the version
from Lua 5.3; it is compatible with Lua 5.1, 5.2 and 5.3.

From Edgar Fuß in PR pkg/53600
2018-11-20 17:26:20 +00:00
ryoon
c6395f426c Enable go-locker 2018-11-18 08:18:59 +00:00
ryoon
9ac1c2b8bd Enable go-mapstructure-bep 2018-11-18 08:07:44 +00:00
ryoon
a5bbe019d1 Enable go-hashstructure 2018-11-18 08:03:20 +00:00
ryoon
bc00d13be7 Enable go-try 2018-11-18 08:00:40 +00:00
ryoon
76a17c783f Enable go-repr 2018-11-18 07:58:35 +00:00
ryoon
63b7e06e5b Enable go-kingpin.v3-unstable 2018-11-18 07:56:35 +00:00
ryoon
7b3f414eaf Enable go-humanize 2018-11-18 07:52:56 +00:00
ryoon
672dfece9c Enable go-colour 2018-11-18 07:50:40 +00:00
ryoon
c21b673506 Enable go-assert 2018-11-18 07:47:55 +00:00
wiz
24bc9313f3 devel/Makefile: + smake 2018-11-10 19:50:04 +00:00
ryoon
942f42870a Add cbindgen 2018-11-04 00:28:48 +00:00
taca
b5b37d19b4 devel/Makefile: add and enable ruby-cucumber-messages 2018-10-28 15:39:09 +00:00
taca
b6d40a9533 devel/Makefile: add and enable ruby-google-protobuf 2018-10-28 15:33:16 +00:00
taca
8ae283c937 devel/Makefile: add and enable py-zope.{deferredimport,deprecation,hookable} 2018-10-28 15:18:44 +00:00
adam
7552d7e007 py-zope.exceptions: added version 4.3
This package contains exception exceptions and implementations which are so
general purpose that they don't belong in Zope application-specific packages.
2018-10-23 09:39:59 +00:00
riastradh
123fc317c8 Import stem-1.7.0, nyx-2.0.4, and sbws-0.8.0 from the Tor Project.
stem-1.7.0: Python library for controlling the tor daemon
nyx-2.0.4: curses monitor for the tor daemon
sbws-0.8.0: bandwidth scanner

nyx is a standalone application, so give it a meta-package net/nyx
with no py- prefix.

sbws is a standalone application too but only for designated Tor
plumbers, not for ordinary users, so leave it as py-sbws.
2018-10-23 01:42:34 +00:00
minskim
8518d915b3 devel/Makefile: Add py-semantic_version 2018-10-21 19:51:45 +00:00
adam
e1548c577d py-filelock: added version 3.0.9
This package contains a single module, which implements a platform independent
file lock in Python, which provides a simple way of inter-process communication.
2018-10-10 09:55:32 +00:00
adam
4827ca1ebc py-test-randomly: added version 1.2.3
Pytest plugin to randomly order tests and control random.seed.

* Randomly shuffles the order of test items. This is done first at the level of
  modules, then at the level of test classes (if you have them), then at the
  order of functions. This also works with things like doctests.
* Resets random.seed() at the start of every test case and test to a fixed
  number - this defaults to time.time() from the start of your test run, but
  you can pass in --randomly-seed to repeat a randomness-induced failure.
* If factory boy is installed, its random state is reset at the start of every
  test. This allows for repeatable use of its random 'fuzzy' features.
* If faker is installed, its random state is reset at the start of every test.
  This is also for repeatable fuzzy data in tests - factory boy uses faker for
  lots of data.
2018-10-07 08:13:09 +00:00
taca
10e8fc7557 devel/Makefile: add and enable py-python-slugify 2018-09-23 18:17:04 +00:00
adam
2703040d0b py-xdis: added version 3.8.7
The Python dis module allows you to disassemble bytecode from the same version
of Python that you are running on. But what about bytecode from different
versions?

That's what this package is for. It can "marshal load" Python bytecodes from
different versions of Python. The command-line routine pydisasm will show
disassembly output using Python 3.6 disassembly conventions.

Also, if you need to modfiy and write bytecode, the routines here can be of
help. There are routines to pack and unpack the read-only tuples in Python's
Code type. For interoperability between Python 2 and 3 we provide our own
versions of the Code type, and we provide routines to reduce the tedium in
writing a bytecode file.

This package also has an extensive knowledge of Python bytecode magic numbers,
including Pypy and others, and how to translate from sys.sys_info major, minor,
and release numbers to the corresponding magic value.

So If you want to write a cross-version assembler, or a bytecode-level
optimizer this package may also be useful. In addition to the kinds of
instruction categorization that dis offers, we have additional categories for
things that would be useful in such a bytecode optimizer.
2018-09-20 13:45:11 +00:00
fhajny
4e0f436456 devel/rebar3: Import rebar 3.6.1 as devel/rebar3.
Rebar3 is an Erlang tool that makes it easy to create, develop,
and release Erlang libraries, applications, and systems in
a repeatable manner.
2018-09-13 14:56:43 +00:00
minskim
b33d4e8334 devel/Makefile: Add go-logrus 2018-09-11 17:45:10 +00:00
minskim
c7cf5a9cd4 devel/Makefile: Add go-godirwalk 2018-09-11 15:55:28 +00:00
minskim
79c86793b4 devel/Makefile: Add go-godotenv 2018-09-10 23:54:35 +00:00
minskim
1cf2a3d324 devel/Makefile: Add go-colortext 2018-09-10 23:48:58 +00:00
minskim
9549efdcd2 devel/Makefile: Add go-appengine 2018-09-10 22:44:02 +00:00
fhajny
9227b335e6 devel/xxhash: Import xxhash 0.6.5.
xxHash is an Extremely fast Hash algorithm, running at RAM speed
limits. It successfully completes the SMHasher test suite which
evaluates collision, dispersion and randomness qualities of hash
functions.
2018-09-10 13:47:31 +00:00
wiz
da0d45954f devel/Makefile: + py-anytree 2018-09-04 12:44:58 +00:00
wiz
7392e60f98 bugs-everywhere: remove
The software was abandoned by upstream and only supports python
2.7.  One of its dependencies, py-cherrypy, does not support python
2.7 any longer.
2018-09-04 06:10:40 +00:00
adam
b2457332d6 py-setuptools_scm_git_archive: added version 1.0
This is a setuptools_scm plugin that adds support for git archives (for example
the ones GitHub automatically generates).
2018-09-03 07:51:20 +00:00
bsiegert
093260c2f1 Remove pthread-stublib.
"Provide dummy implementations of pthread functions like mutex operations
to enable libraries to be used in both thread-aware and non-threaded
programs.
This is for NetBSD<=2; newer operating systems don't need it."

Announced on tech-pkg on 2018-03-25.
2018-09-01 20:58:11 +00:00
wiz
e2bc391a69 devel/Makefile: + p5-Test-LoadAllModules 2018-08-29 06:16:40 +00:00
adam
aa32b5df02 py-behave: added version 1.2.6
Behavior-driven development (or BDD) is an agile software development technique
that encourages collaboration between developers, QA and non-technical or
business participants in a software project.

behave uses tests written in a natural language style, backed up by Python code.
2018-08-28 09:58:54 +00:00
kamil
f0d3b3198d devel: Register honggfuzz 2018-08-23 22:40:52 +00:00
tnn
7babbe724f devel/Makefile: +git-lfs 2018-08-21 15:51:57 +00:00
wiz
4e2cfc5b66 p5-Alien-Role: remove package, now included in p5-Alien-Build 2018-08-21 12:00:50 +00:00
wiz
1e70c1288b devel/Makefile: + p5-Test-LectroTest 2018-08-21 09:23:13 +00:00
adam
40c9b42b9c py-zc.lockfile: added version 1.3.0
The zc.lockfile package provides a basic portable implementation of
interprocess locks using lock files. The purpose if not specifically to lock
files, but to simply provide locks with an implementation based on file-locking
primitives. Of course, these locks could be used to mediate access to other
files. For example, the ZODB file storage implementation uses file locks to
mediate access to file-storage database files. The database files and lock file
files are separate files.
2018-08-20 12:58:06 +00:00
nia
75f81662ef devel/rgbds: add version 0.3.7
RGBDS (Rednex Game Boy Development System) is a free assembler/linker
package for the Game Boy and Game Boy Color. It consists of:

* rgbasm (an assembler)
* rgblink (a linker)
* rgbfix (a checksum/header fixer)
* rgbgfx (a PNG-to-Game Boy graphics converter)

This is a fork of the original RGBDS which aims to make the programs
more like other UNIX tools.
2018-08-15 15:25:10 +00:00
jperkin
fe64b01247 devel: Import p5-Carton version 1.0.34.
carton is a command line tool to track the Perl module dependencies for
your Perl application. Dependencies are declared using cpanfile format,
and the managed dependencies are tracked in a cpanfile.snapshot file,
which is meant to be version controlled, and the snapshot file allows
other developers of your application will have the exact same versions
of the modules.
2018-08-09 11:50:17 +00:00
jperkin
cb5a724515 devel: Import p5-Menlo-Legacy version 1.9022.
Menlo::Legacy is a package to install Menlo::CLI::Compat which is a
compatibility library that implements the classic version of cpanminus
internals and behavios. This is so that existing users of cpanm and API
clients such as Carton, Carmel and App::cpm) can rely on the stable
features and specific behaviors of cpanm.

This way Menlo can evolve and be refactored without the fear of breaking
any downstream clients, including cpanm itself.
2018-08-09 11:45:48 +00:00
jperkin
ee78614a39 devel: Import p5-Menlo version 1.9019.
Menlo is a backend for cpanm 2.0, developed with the goal to replace
cpanm internals with a set of modules that are more flexible, extensible
and easier to use.
2018-08-09 11:36:36 +00:00
jperkin
051cd83e83 devel: Import p5-Parse-PMFile version 0.41.
Parse::PMFile - parses .pm file as PAUSE does

The most of the code of this module is taken from the PAUSE code as of
April 2013 almost verbatim. Thus, the heart of this module should be
quite stable. However, I made it not to use pipe ("-|") as well as I
stripped database-related code. If you encounter any issue, that's most
probably because of my modification.

This module doesn't provide features to extract a distribution or parse
meta files intentionally.
2018-08-09 11:13:27 +00:00
jperkin
0ca9150380 devel: Import p5-CPAN-Common-Index version 0.010.
This module provides a common library for working with a variety of CPAN
index services.  It is intentionally minimalist, trying to use as few
non-core modules as possible.

The CPAN::Common::Index module is an abstract base class that defines a
common API.  Individual backends deliver the API for a particular index.
2018-08-09 10:05:19 +00:00
adam
2f520654b3 py-cogapp: added version 2.5.1
Cog is a file generation tool. It lets you use pieces of Python code as
generators in your source files to generate whatever text you need.
2018-08-07 09:21:18 +00:00
jaapb
8a51f608f1 Added py-oset to Makefile SUBDIRs 2018-07-26 11:47:32 +00:00
schmonz
4520e3592b Update to 1.20180726. From the changelog:
* [ Mark Haber ]
  * Fix hours_since for git fake bare repos

* [ Tom Hoover ]
  * Fix 'no defined update command error' in example config

* [ Pavel Nakonechnyi ]
  * More meaningful names for temporary files

* [ Paul Wise ]
  * Mitigate vulns caused by git code execution (CVE-2018-7032)
  * Migrate from ack-grep to ack
  * More reliable output supervision
  * Improve the status output for CVS
  * Improve the git-cvs extension
  * Allow prepending commands to existing commands
  * Allow for fallback to default commands
  * Add support for caching command output
  * Add shell extension to maintain a repo status cache
  * Add graph, remote, upgrade extensions
  * git registration improvements
  * webcheckout: prefer https transport

pkgsrc changes:

- Rename directory to myrepos, catching up with package name change years ago
2018-07-26 09:34:27 +00:00
jperkin
e09a9ae3b9 devel: Add apache-ant19. 2018-07-24 16:25:56 +00:00
adam
43a5fd9bac py-hamcrest: added version 1.9.0
PyHamcrest is a framework for writing matcher objects, allowing you to
declaratively define "match" rules. There are a number of situations where
matchers are invaluable, such as UI validation, or data filtering, but it is in
the area of writing flexible tests that matchers are most commonly used.

When writing tests it is sometimes difficult to get the balance right between
overspecifying the test (and making it brittle to changes), and not specifying
enough (making the test less valuable since it continues to pass even when the
thing being tested is broken). Having a tool that allows you to pick out
precisely the aspect under test and describe the values it should have, to a
controlled level of precision, helps greatly in writing tests that are "just
right." Such tests fail when the behavior of the aspect under test deviates
from the expected behavior, yet continue to pass when minor, unrelated changes
to the behaviour are made.
2018-07-24 15:08:19 +00:00
minskim
7bddd392dd devel/Makefile: Add go-colorable 2018-07-22 22:42:53 +00:00
minskim
e67e3ace24 devel/Makefile: Add go-goreturns 2018-07-21 22:07:46 +00:00
minskim
695620279c devel/Makefile: Add c++gsl 2018-07-20 11:32:35 +00:00
minskim
e0ed4afab7 devel/Makefile: Add go-sync 2018-07-18 02:38:18 +00:00
minskim
3639939d74 devel/Makefile: Add py-typing-extensions 2018-07-12 02:27:49 +00:00
minskim
03de97ee31 devel/Makefile: Add go-godef 2018-07-11 00:05:44 +00:00
minskim
57357f2639 devel/py-kafka: Obsoleted by devel/py-kafka-python 2018-07-10 01:18:58 +00:00
minskim
e7753d21f6 devel/Makefile: Add py-kafka-python 2018-07-10 01:16:47 +00:00
minskim
926bd92905 devel/Makefile: Add py-flake8-docstrings 2018-07-09 02:07:00 +00:00
adam
185a3e368f py-jaraco.functools: added version 1.20
Additional functools in the spirit of stdlib’s functools.
2018-07-07 09:00:15 +00:00
joerg
c449daeead + py-hg-evolve 2018-07-07 08:16:21 +00:00
minskim
5ca59f1b19 devel/Makefile: Add py-joblib 2018-07-06 03:13:48 +00:00
minskim
c0b0bb0cf6 devel/Makefile: Add go-fnmatch 2018-07-05 04:34:12 +00:00
taca
cf53ebbaef devel/Makefile: add and enable ruby-highline17 2018-06-24 14:17:10 +00:00
wiz
af309bb652 devel/Makefile: + p5-Test-HTTP-LocalServer 2018-06-24 10:01:20 +00:00
adam
a46643c942 Removed devel/py-spwd 2018-06-17 19:27:53 +00:00
minskim
41774a3de4 devel/Makefile: Add go-debounce 2018-06-14 15:16:02 +00:00
minskim
d295a6df7a devel/Makefile: Add py-doc8 2018-06-05 19:34:28 +00:00
jaapb
2e9e1b4cc9 Added ocaml-lwt_camlp4 to Makefile SUBDIRs 2018-06-05 15:49:13 +00:00
minskim
c0e7d60dbb devel/Makefile: Add py-extratools 2018-05-25 16:01:10 +00:00
bsiegert
c57c1ebe8d +py-fakefs 2018-05-25 04:01:43 +00:00
minskim
054d3897df devel/Makefile: Add go-gocode 2018-05-25 00:53:53 +00:00
minskim
d46f6ccf8e devel/Makefile: Add py-toolz 2018-05-24 16:15:08 +00:00
adam
6ba16be457 py-dash: added version 4.5.0
The kitchen sink of Python utility libraries for doing "stuff" in a functional
way. Based on the Lo-Dash Javascript library.
2018-05-23 09:28:30 +00:00
adam
3ee60dee4a py-test-testmon: added version 0.9.11
This is a py.test plug-in which automatically selects and re-executes only
tests affected by recent changes.
2018-05-23 09:26:54 +00:00
minskim
29e0fce9da devel/Makefile: Add go-gopkgs 2018-05-23 00:32:23 +00:00
adam
4e9d378b6c py-enum: removed, successor py-enum34 or Python 3.x 2018-05-22 12:10:40 +00:00
minskim
9b3fa09d5d devel/Makefile: Add py-typed-ast 2018-05-21 23:14:52 +00:00
minskim
12d9862b66 devel/Makefile: Add aslc86k 2018-05-21 16:23:09 +00:00
minskim
11ed05a787 devel/Makefile: Add lcdis 2018-05-21 16:12:19 +00:00
minskim
efd3a715d9 devel/Makefile: Add py-gitinspector-devel 2018-05-18 18:17:32 +00:00
minskim
4a3691ff2c devel/Makefile: Add R-glue 2018-05-18 01:01:03 +00:00
minskim
d4086d4b6d devel/Makefile: Add py-llvmlite 2018-05-17 15:47:49 +00:00
adam
0412cec2ce py-testrepository: added version 0.0.20
This project provides a database of test results which can be used as part of
developer workflow to ensure/check things like:
* No commits without having had a test failure, test fixed cycle.
* No commits without new tests being added.
* What tests have failed since the last commit (to run just a subset).
* What tests are currently failing and need work.
Test results are inserted using subunit (and thus anything that can output
subunit or be converted into a subunit stream can be accepted).
2018-05-17 08:04:47 +00:00
jaapb
0ca321e721 Added ocaml-ppxlib to Makefile SUBDIRs 2018-05-09 14:49:00 +00:00
jaapb
ce566f992a Added ocaml-parsexp to Makefile SUBDIRs 2018-05-09 14:27:43 +00:00
minskim
65aa42f9d0 devel/Makefile: Add py-hyperscan 2018-05-08 16:54:54 +00:00
minskim
b3210798ef devel/Makefile: Add hyperscan 2018-05-07 22:18:56 +00:00
wiz
bfaf0b036b devel/Makefile: sync 2018-05-06 06:59:59 +00:00
wiz
43079536cf devel/Makefile: + p5-Alien-Role-Alt 2018-05-02 12:57:40 +00:00
minskim
8020c5aaf6 devel/Makefile: Add py-kafka 2018-04-29 23:20:44 +00:00
minskim
84fe6739be devel/Makefile: Add R-inline 2018-04-18 15:37:59 +00:00
minskim
0662ed52cf devel/Makefile: Add R-plogr 2018-04-17 15:22:41 +00:00
minskim
e6f790c41e devel/Makefile: Add R-bindr 2018-04-16 15:54:55 +00:00
minskim
9545ca425a devel/Makefile: Add R-blob 2018-04-15 00:35:07 +00:00
minskim
edbc5ea025 devel/Makefile: Add R-iterators 2018-04-13 16:05:47 +00:00
jaapb
1e53b9ba67 Added ocaml-lwt_log to Makefile SUBDIRs 2018-04-13 13:45:25 +00:00
minskim
2456f18183 devel/Makefile: Add R-BH 2018-04-11 15:23:55 +00:00
jaapb
22d5c1d7d3 Added ocaml-lwt_ppx to SUBDIRs 2018-04-09 09:08:42 +00:00
minskim
8a70cbb8e0 devel/Makefile: Add py-absl-py 2018-04-08 01:34:20 +00:00
minskim
a90239d5cd devel/Makefile: Add R-memoise 2018-04-07 20:52:03 +00:00
minskim
87e8bf07e1 devel/Makefile: Add R-pkgconfig 2018-04-06 18:40:35 +00:00
pho
762be67b23 devel/Makefile: Add cfr 2018-04-04 16:08:46 +00:00
adam
ae42b4e740 py-backcall: added version 0.1.0
Specifications for callback functions passed in to an API

If your code lets other people supply callback functions, it's important to
specify the function signature you expect, and check that functions support
that. Adding extra parameters later would break other peoples code unless
you're careful.

backcall provides a way of specifying the callback signature using a prototype
function.
2018-04-03 11:13:29 +00:00
adam
06972f14c9 Added py-test-fixture-config, py-test-shutil, py-test-virtualenv 2018-03-24 06:50:49 +00:00
adam
1f1c657fbc py-path.py: added version 11.0
path.py implements a path objects as first-class entities, allowing common
operations on files to be invoked on those path objects directly
2018-03-23 10:20:06 +00:00
manu
215b5135e1 liblnk is a library to access the Windows Shortcut File (LNK) format. 2018-03-21 13:16:13 +00:00
taca
22dfa1e698 devel/Makefile: add and enable ruby-cucumber-tag_expressions 2018-03-21 10:24:36 +00:00
taca
ecd3dfcb69 devel/Makefile: ruby-railties51 2018-03-21 10:06:03 +00:00
taca
82e483de44 devel/Makefile: add and enable ruby-activejob51 2018-03-21 09:51:14 +00:00
taca
2e527128ea devel/Makefile: add and enable ruby-activemodel51 2018-03-21 09:48:11 +00:00
taca
e0c070aa3e devel/Makefile: Add and enable ruby-activesupport51 2018-03-21 09:40:41 +00:00
khorben
a43df8a79e Add py-pysha3 2018-03-20 15:41:38 +00:00
khorben
8f289df17a Add py-pyelftools 2018-03-20 15:35:11 +00:00
minskim
8d6abec1f3 devel/Makefile: Add R-lazyeval 2018-03-19 02:31:24 +00:00
jnemeth
7d790bed65 sort 2018-03-15 05:08:07 +00:00
khorben
b674434c2c Add py-angr 2018-03-15 03:14:17 +00:00
khorben
8d1e56f2a2 Add py-archinfo 2018-03-15 02:57:15 +00:00
khorben
cabaae74d2 Add py-pyvex 2018-03-15 02:50:18 +00:00
khorben
5166beba2d Add py-cle 2018-03-15 02:34:03 +00:00
minskim
40c23fda67 devel/Makefile: Add R-rlang 2018-03-14 23:48:02 +00:00
wiz
38b3b756a7 devel/Makefile: + p5-PerlX-Maybe 2018-03-14 17:41:28 +00:00
minskim
b5b11b9483 devel/Makefile: Add R-cli 2018-03-13 17:02:21 +00:00
taca
694b84fbd5 devel/Makefile: add and enable ruby-tomlrb 2018-03-13 14:29:43 +00:00
maya
b84e68a22c new package: p5-ExtUtils-CChecker
Perl5 configure-time utilities for using C headers, libraries, or OS features
2018-03-11 11:20:13 +00:00
maya
a631de2408 p5-Taint-Util: new package
Taint::Util wraps perl's internal routines for checking and setting
the taint flag and thus does not rely on regular expressions for
untainting or odd tricks involving eval and kill for checking
whether data is tainted, instead it checks and flips a flag on the
scalar in-place.
2018-03-11 11:16:46 +00:00
dholland
bc0a5170c0 -ocaml-odn 2018-03-11 04:07:19 +00:00
minskim
451c73d0f2 devel/Makefile: Add R-R6 2018-03-10 01:21:05 +00:00
minskim
dfd3ef40cb devel/Makefile: Add R-bit64 2018-03-06 17:07:56 +00:00
minskim
7fdcdf9b09 devel/Makefile: Add R-bit 2018-03-06 17:06:31 +00:00
wiz
faa6176a33 py-pyev: remove
No user in pkgsrc, and the package was deleted from pypi.
2018-03-04 16:23:45 +00:00
joerg
fffb0823af + py-Pympler 2018-03-02 16:00:59 +00:00
taca
a796d53c8a devel/Makefile: add ane enable ruby-classy_hash 2018-02-28 15:45:55 +00:00
taca
c50355cae3 devel/Makefile: delete ruby-atomic 2018-02-28 15:30:12 +00:00
taca
504b35e79e devel/Makefile: add and enable ruby-concurrent-ruby 2018-02-28 15:27:47 +00:00
wiz
4870bcf332 devel/Makefile: + p5-Module-FromPerlVer 2018-02-28 08:36:50 +00:00
minskim
52a255ef31 devel/Makefile: Add R-assertthat 2018-02-26 17:32:05 +00:00
minskim
d611e12fe1 devel/Makefile: Add py-unittest2pytest 2018-02-25 00:23:37 +00:00
minskim
b3d5b2dac1 devel/Makefile: Add py-prefixspan 2018-02-23 17:26:37 +00:00
khorben
b1ea6b6d87 Add py-manticore 2018-02-22 22:35:43 +00:00
rillig
1925d22908 devel/goyacc: remove package since it is already included in go-tools 2018-02-21 02:05:41 +00:00
rillig
84272a63d2 devel/goyacc: add goyacc 2018-02-20 22:21:48 +00:00
fhajny
2365dd23c6 Import DATA::UUID::Base64URLSafe 0.35 as devel/p5-Data-UUID-Base64URLSafe.
Data::UUID::Base64URLSafe is a wrapper module for Data::UUID.
2018-02-20 14:01:19 +00:00
fhajny
13c8f99d7f Import Cache::Memcached::Fast 0.25 as devel/p5-Cache-Memcached-Fast.
Cache::Memcached::Fast is a Perl client for memcached. Module core
is implemented in C and tries hard to minimize number of systemi
calls and to avoid any key/value copying for speed. As a result,
it has very low CPU consumption.
2018-02-20 13:57:51 +00:00
kamil
fc5e12b055 Detach py-radare2 and radare2-valabind
Only 2 users known migrated away to r2pipe.
radare2-valabind requires unreleased version of vala.
2018-02-19 01:52:49 +00:00
kamil
930ff36bc4 + devel/radare2-cutter 2018-02-19 01:49:54 +00:00
kamil
c5d6366930 Detach devel/bokken
It is a dead project, no longer works. It was already broken with previous
radare2 that was in the tree.
2018-02-18 21:28:00 +00:00
minskim
dd6e28b8fd devel/Makefile: Add py-restructuredtext_lint 2018-02-15 16:45:18 +00:00
minskim
2154d54e18 devel/Makefile: Add R-IRkernel 2018-02-12 19:45:15 +00:00
adam
ec6087a015 py-parameterized: added version 0.6.1
Parameterized testing in Python sucks. 'parameterized' fixes that. For
everything. Parameterized testing for nose, parameterized testing for py.test,
parameterized testing for unittest.
2018-02-09 09:15:28 +00:00
adam
528c710d21 py-pyobjc: updated to 4.1
Version 4.1:
Protection agains buffer overflow and negative indexes in __getitem__ and __setitem__ for objc.varlist instances.

Fix incorrect metadata for +[NSEvent addLocalMonitorForEventsMatchingMask:handler:]

Fix incorrect and misleading error message in the exception that is raised when return a value from a block that should not return a value.

Issue 223: Fix hard crash when executing help(Cocoa)
Fetching the help for PyObjC framework wrappers isn’t very useful due to the sheer size of the output (4.5 million lines of output for help(Cocoa) at the moment), but shouldn’t cause a hard crash of the interpreter.

Issue 218: Explictly cause an ImportError when reloading `objc._objc`
Reloading the PyObjC core extension now raises an ImportError because this cannot work and used to raise a rather vague error.

Updated metadata for Xcode 9.2

Added missing `MAC_OS_X_VERSION_*` constants

Fix memory error in struct wrappers which resulted in a use-after-free error in the initializer for structs.

Add bindings for frameworks Security, SecurityFoundation and and SecurityInterface.
The bindings for the Security framework don’t expose a number of older APIs that were deprecated in macOS 10.7.

Add bindings to libdispatch.
These bindings require macOS 10.8 or later, libdispatch was available earlier but macOS 10.8 changed the API in such a way that wrapping became a lot easier.
2018-02-08 19:54:18 +00:00
minskim
797ab4b2ad devel/Makefile: Add R-IRdisplay 2018-02-08 17:45:04 +00:00
minskim
2773abd07c devel/Makefile: Add R-repr 2018-02-07 20:52:25 +00:00
minskim
59d0581d07 devel/Makefile: Add R-crayon 2018-02-07 17:04:34 +00:00
minskim
2a1defd785 devel/Makefile: Add R-uuid 2018-02-06 20:35:25 +00:00
adam
eb72131cd3 py-test-asyncio: added version 0.8.0
pytest-asyncio is a library, written in Python, for testing asyncio code with
pytest.

asyncio code is usually written in the form of coroutines, which makes it
slightly more difficult to test using normal testing tools. pytest-asyncio
provides useful fixtures and markers to make testing easier.
2018-02-05 16:28:49 +00:00
adam
040b3336d5 py-async_generator: added version 1.9
Python 3.6 added async generators. Python 3.7 adds some more tools to make them
usable, like contextlib.asynccontextmanager. This library gives you all that
back to Python 3.5.
2018-02-05 16:22:42 +00:00
adam
48e618ca8c py-unittest-mixins: added version 1.4
A set of mixin classes and other helpers for unittest test case classes.
2018-02-05 16:12:04 +00:00
jdolecek
d589726dbc Remove php-xdebug-devel, regular php-xdebug updated to same version 2018-02-04 12:01:25 +00:00
bsiegert
ddb0d56e3d Import py-mox-0.5.3 from pkgsrc-wip.
Mox is a mock object framework for Python based on the Java mock object
framework EasyMock.

Dependency of a dependency for PR pkg/52941 :/
2018-02-03 14:59:20 +00:00
bsiegert
07072f278c Add py-retry_decorator version 1.1.0.
retry_decorator is a Python module that exposes a decorator that retries the
decorated function with exponential backoff.

This is yet another dependency for PR pkg/52941.
2018-01-25 19:03:04 +00:00
jperkin
9b574e3115 devel: Add yarn. 2018-01-24 12:40:48 +00:00
wen
658cede731 Add p5-curry 2018-01-21 03:40:39 +00:00
markd
c4a5e0039c devel: Add tex-doclicense{,-doc} 2018-01-18 10:56:54 +00:00
wiz
b3a25a6e71 devel/Makefile: + guile22-slib 2018-01-16 13:34:06 +00:00
fhajny
0dcf873811 Import pygit2 0.26.3 as devel/py-pygit2 (from wip/py-pygit2).
pygit2 is a set of Python bindings to the libgit2 linkable C Git library.
2018-01-09 13:18:01 +00:00
adam
25c4f9b570 py-chai: added version 1.1.2
Chai provides a very easy to use api for mocking, stubbing and spying your
python objects, patterned after the Mocha library for Ruby.
2018-01-05 11:59:06 +00:00
adam
304fbcc030 py-deprecation: added version 1.0.1
The deprecation library provides a deprecated decorator and a
fail_if_not_removed decorator for your tests. Together, the two enable the
automation of several things:

1. The docstring of a deprecated method gets the deprecation details appended to
the end of it. If you generate your API docs direct from your source, you don't
need to worry about writing your own notification. You also don't need to worry
about forgetting to write it. It's done for you.

2. Rather than having code live on forever because you only deprecated it but
never actually moved on from it, you can have your tests tell you when it's
time to remove the code. The @deprecated decorator can be told when it's time
to entirely remove the code, which causes @fail_if_not_removed to raise an
AssertionError, causing either your unittest or py.test tests to fail.
2017-12-31 18:47:08 +00:00
wiz
cbe867dba9 devel/Makefile: + p5-Path-Iter 2017-12-31 13:38:18 +00:00
tsutsui
6e1e7d9846 devel/Makefile: + ruby-diva 2017-12-30 04:38:40 +00:00
tsutsui
248a33d430 devel/Makefile: + ruby-idn 2017-12-30 04:35:40 +00:00
adam
5eca33f72f py-pylint-common: added version 0.2.5
Pylint plugin for augmenting and improving error detection and analysis in the
standard Python library.
2017-12-21 10:15:48 +00:00
jperkin
8323ca0c0b devel: Re-enable py-clint. 2017-12-19 08:50:27 +00:00