Commit graph

296636 commits

Author SHA1 Message Date
wiedi
fa8b61a378 doc: Updated editors/nano to 4.2 2019-04-29 12:05:14 +00:00
wiedi
6cd4150fab nano: update to 4.2
2019.04.24 - GNU nano 4.2 "Tax the rich, pay the teachers"
• The integrated spell checker does not crash when 'spell' is missing.
• Option --breaklonglines works also when --ignorercfiles is used.
• Automatic hard-wrapping is more persistent in pushing words to the
  same overflow line.
2019-04-29 12:04:33 +00:00
nia
d0f8008e60 doc: Updated emulators/libretro-beetle-psx to 20190203 2019-04-29 12:00:31 +00:00
nia
c83c0c41f6 libretro-beetle-psx: Update to 20190203
Changes from 20180808:

* Dynamic controller port count reporting
* Fix crash when loading Audio CD
* Clamp IR factor to 8 with SSAA.
* "Fix" resolver shader with 16x IR.
* Fix issue #368 and enhance flipped sprite detection
* Don't expose 32x resolution.
* Fix chain allocator behaviour
* Refactor UV offset and limit code to be shared by all renderers.
* Fix PGXP "+CPU" integration
* Prevent crash when cue sheet references a non-existant file
2019-04-29 12:00:16 +00:00
adam
d15a438992 Updated lang/py-parso, textproc/py-defusedxml, net/py-xandikos 2019-04-29 10:39:25 +00:00
adam
343daef6e3 py-xandikos: updated to 0.1.0
0.1.0
Initial release.
2019-04-29 10:39:00 +00:00
adam
c75c3d0a77 py-defusedxml: updated to 0.6.0
defusedxml 0.6.0
- Increase test coverage.
- Add badges to README.

defusedxml 0.6.0rc1
- Test on Python 3.7 stable and 3.8-dev
- Drop support for Python 3.4
- No longer pass *html* argument to XMLParse. It has been deprecated and
  ignored for a long time. The DefusedXMLParser still takes a html argument.
  A deprecation warning is issued when the argument is False and a TypeError
  when it's True.
- defusedxml now fails early when pyexpat stdlib module is not available or
  broken.
- defusedxml.ElementTree.__all__ now lists ParseError as public attribute.
- The defusedxml.ElementTree and defusedxml.cElementTree modules had a typo
  and used XMLParse instead of XMLParser as an alias for DefusedXMLParser.
  Both the old and fixed name are now available.
2019-04-29 10:37:14 +00:00
adam
de9d435ad7 py-parso: updated to 0.4.0
0.4.0
- Python 3.8 support
- FileIO support, it's now possible to use abstract file IO, support is alpha
2019-04-29 10:35:04 +00:00
adam
41d82d5c24 Updated databases/py-sqlalchemy, databases/py-alembic 2019-04-29 10:28:06 +00:00
adam
0e68d1e610 py-alembic: updated to 1.0.10
1.0.10
bug

[bug] [commands]

Fixed bug introduced in release 0.9.0 where the helptext for commands inadvertently got expanded to include function docstrings from the command.py module. The logic has been adjusted to only refer to the first line(s) preceding the first line break within each docstring, as was the original intent.

[bug] [mysql] [operations]

Added an assertion in RevisionMap.get_revisions() and other methods which ensures revision numbers are passed as strings or collections of strings. Driver issues particularly on MySQL may inadvertently be passing bytes here which leads to failures later on.

[bug] [autogenerate] [mysql]

Fixed bug when using the EnvironmentContext.configure.compare_server_default flag set to True where a server default that is introduced in the table metadata on an Integer column, where there is no existing server default in the database, would raise a TypeError.


1.0.9
bug

[bug] [operations]

Simplified the internal scheme used to generate the alembic.op namespace to no longer attempt to generate full method signatures (e.g. rather than generic *args, **kw) as this was not working in most cases anyway, while in rare circumstances it would in fact sporadically have access to the real argument names and then fail when generating the function due to missing symbols in the argument signature.
2019-04-29 10:27:33 +00:00
adam
18d3761b30 py-sqlalchemy: updated to 1.3.3
1.3.3

orm

[orm] [bug]

Fixed 1.3 regression in new “ambiguous FROMs” query logic introduced in Query.join() handles ambiguity in deciding the “left” side more explicitly where a Query that explicitly places an entity in the FROM clause with Query.select_from() and also joins to it using Query.join() would later cause an “ambiguous FROM” error if that entity were used in additional joins, as the entity appears twice in the “from” list of the Query. The fix resolves this ambiguity by folding the standalone entity into the join that it’s already a part of in the same way that ultimately happens when the SELECT statement is rendered.

[orm] [bug]

Adjusted the Query.filter_by() method to not call and() internally against multiple criteria, instead passing it off to Query.filter() as a series of criteria, instead of a single criteria. This allows Query.filter_by() to defer to Query.filter()’s treatment of variable numbers of clauses, including the case where the list is empty. In this case, the Query object will not have a .whereclause, which allows subsequent “no whereclause” methods like Query.select_from() to behave consistently.

postgresql

[postgresql] [bug]

Fixed regression from release 1.3.2 caused by 4562 where a URL that contained only a query string and no hostname, such as for the purposes of specifying a service file with connection information, would no longer be propagated to psycopg2 properly. The change in 4562 has been adjusted to further suit psycopg2’s exact requirements, which is that if there are any connection parameters whatsoever, the “dsn” parameter is no longer required, so in this case the query string parameters are passed alone.

mssql

[mssql] [bug]

Fixed issue in SQL Server dialect where if a bound parameter were present in an ORDER BY expression that would ultimately not be rendered in the SQL Server version of the statement, the parameters would still be part of the execution parameters, leading to DBAPI-level errors. Pull request courtesy Matt Lewellyn.

misc

[bug] [pool]

Fixed behavioral regression as a result of deprecating the “use_threadlocal” flag for Pool, where the SingletonThreadPool no longer makes use of this option which causes the “rollback on return” logic to take place when the same Engine is used multiple times in the context of a transaction to connect or implicitly execute, thereby cancelling the transaction. While this is not the recommended way to work with engines and connections, it is nonetheless a confusing behavioral change as when using SingletonThreadPool, the transaction should stay open regardless of what else is done with the same engine in the same thread. The use_threadlocal flag remains deprecated however the SingletonThreadPool now implements its own version of the same logic.

[bug] [ext]

Fixed bug where using copy.copy() or copy.deepcopy() on MutableList would cause the items within the list to be duplicated, due to an inconsistency in how Python pickle and copy both make use of __getstate__() and __setstate__() regarding lists. In order to resolve, a __reduce_ex__ method had to be added to MutableList. In order to maintain backwards compatibility with existing pickles based on __getstate__(), the __setstate__() method remains as well; the test suite asserts that pickles made against the old version of the class can still be deserialized by the pickle module.


1.3.2

orm

[orm] [bug] [ext]

Restored instance-level support for plain Python descriptors, e.g. @property objects, in conjunction with association proxies, in that if the proxied object is not within ORM scope at all, it gets classified as “ambiguous” but is proxed directly. For class level access, a basic class level``__get__()`` now returns the AmbiguousAssociationProxyInstance directly, rather than raising its exception, which is the closest approximation to the previous behavior that returned the AssociationProxy itself that’s possible. Also improved the stringification of these objects to be more descriptive of current state.

[orm] [bug]

Fixed bug where use of with_polymorphic() or other aliased construct would not properly adapt when the aliased target were used as the Select.correlate_except() target of a subquery used inside of a column_property(). This required a fix to the clause adaption mechanics to properly handle a selectable that shows up in the “correlate except” list, in a similar manner as which occurs for selectables that show up in the “correlate” list. This is ultimately a fairly fundamental bug that has lasted for a long time but it is hard to come across it.

[orm] [bug]

Fixed regression where a new error message that was supposed to raise when attempting to link a relationship option to an AliasedClass without using PropComparator.of_type() would instead raise an AttributeError. Note that in 1.3, it is no longer valid to create an option path from a plain mapper relationship to an AliasedClass without using PropComparator.of_type().

sql

[sql] [bug] [documentation]

Thanks to TypeEngine methods bind_expression, column_expression work with Variant, type-specific types, we no longer need to rely on recipes that subclass dialect-specific types directly, TypeDecorator can now handle all cases. Additionally, the above change made it slightly less likely that a direct subclass of a base SQLAlchemy type would work as expected, which could be misleading. Documentation has been updated to use TypeDecorator for these examples including the PostgreSQL “ArrayOfEnum” example datatype and direct support for the “subclass a type directly” has been removed.

postgresql

[postgresql] [feature]

Added support for parameter-less connection URLs for the psycopg2 dialect, meaning, the URL can be passed to create_engine() as "postgresql+psycopg2://" with no additional arguments to indicate an empty DSN passed to libpq, which indicates to connect to “localhost” with no username, password, or database given. Pull request courtesy Julian Mehnle.

[postgresql] [bug]

Modified the Select.with_for_update.of parameter so that if a join or other composed selectable is passed, the individual Table objects will be filtered from it, allowing one to pass a join() object to the parameter, as occurs normally when using joined table inheritance with the ORM.
2019-04-29 10:26:27 +00:00
adam
693d1ed96a Updated www/py-soupsieve, www/py-httplib2 2019-04-29 08:49:57 +00:00
adam
8192adb169 py-httplib2: updated to 0.12.3
0.12.3:
No changes to library. Distribute py3 wheels.
2019-04-29 08:49:39 +00:00
adam
e800eb8c42 py-soupsieve: updated to 1.9.1
1.9.1
- **FIX**: :root, :contains(), :default, :indeterminate, :lang(), and :dir() will properly account for HTML
iframe elements in their logic when selecting or matching an element. Their logic will be restricted to the document
for which the element under consideration applies.
- **FIX**: HTML pseudo-classes will check that all key elements checked are in the XHTML namespace (HTML parsers that do
not provide namespaces will assume the XHTML namespace).
- **FIX**: Ensure that all pseudo-class names are case insensitive and allow CSS escapes.
2019-04-29 08:48:10 +00:00
adam
dadfd3ef63 Updated devel/py-typed-ast, www/py-django-cors-headers, www/py-django-admin-rangefilter, www/py-django-admin-sortable2 2019-04-29 07:52:18 +00:00
adam
1f44e829ae py-django-admin-sortable2: updated to 0.7.1
0.7.1:
Fix issue with JavaScript loading in Django-2.2.
2019-04-29 07:51:24 +00:00
mrg
831a41108f note cubietruck plus u-boot. 2019-04-29 07:50:01 +00:00
adam
7b387d10ac py-django-admin-rangefilter: updated to 0.3.15
0.3.15:
- Added Spanish translation
- Compatibility Django 2.2
2019-04-29 07:49:45 +00:00
mrg
8abf9c8ae1 add u-boot for cubietruck plus (cubieboard 5). works just fine. 2019-04-29 07:48:49 +00:00
adam
28e3814203 py-django-cors-headers: updated to 2.5.3
2.5.3:
* Tested on Django 2.2. No changes were needed for compatibility.
* Tested on Python 3.7. No changes were needed for compatibility.
2019-04-29 07:48:33 +00:00
adam
a2f1f309f9 py-typed-ast: updated to 1.3.5
1.3.5:
Unknown changes
2019-04-29 07:47:09 +00:00
wiz
abec790aab opencv: add new patch to distinfo 2019-04-29 06:59:17 +00:00
dholland
53014bebb8 Remove BROKEN attached to the yajl option.
It says "The yajl option requires a yajl.pc file which that package
doesn't have." but yajl.pc has existed for several years now.
2019-04-29 03:28:39 +00:00
mef
c95a06d38c (graphics/opencv) Add ad-hoc patch to make package 2019-04-29 03:23:53 +00:00
gdt
8f9e15c4a3 doc: Updated devel/uthash to 2.1.0 2019-04-29 00:18:20 +00:00
gdt
55acc28313 devel/uthash: Update to 2.1.0
Version 2.1.0 (2018-12-20)
--------------------------
* silence some Clang static analysis warnings
* add LL_INSERT_INORDER and LL_LOWER_BOUND etc (thanks, Jeffrey Lovitz and Mattias Eriksson!)
* add uthash_bzero for platforms without <string.h>
* fix a missing HASH_BLOOM_ADD in HASH_SELECT (thanks, Pawel Veselov!)
* permit malloc failure to be recoverable via HASH_NONFATAL_OOM (thanks, Pawel Veselov!)
* avoid repeated calls to uthash_strlen in HASH_FIND_STR
* rename uthash_memcmp to HASH_KEYCMP, leaving the old name for compatibility
* add utstack.h
* remove libut

Version 2.0.2 (2017-03-02)
--------------------------
* fix segfault in HASH_ADD_INORDER etc (thanks, Yana Kireyonok!)
* remove spurious cast to unsigned in utstring_len (thanks, Michal Sestrienka!)
* add uthash_memcmp and uthash_strlen for platforms without <stdlib.h> (thanks, Pawel Veselov!)
* fix a C++ incompatibility in utringbuffer

Version 2.0.1 (2016-07-05)
--------------------------
* in-order insertion macros HASH_ADD_INORDER etc (thanks, Thilo Schulz!)
* by-hashvalue insertion macros HASH_ADD_BYHASHVALUE etc
* during key comparison, check hashvalue before doing a full memcmp
* add utringbuffer.h

Version 1.9.9.1 (2014-11-18)
----------------------------
* inclusion of experimental libut bundle with utvector in opt/
* use shift in Bernstein hash instead of multiply (thanks, Jimmy Zhuo!)
* switch ssize_t types in utarray/utstring to size_t (thanks, Hong Xu!)
* fix utstring pointer math on >4GB strings (thanks, Thomas Bottesch!)
* change FNV hash to FNV-1a varation (thanks, dwest1975!)
* fix bug in HASH_REPLACE_STR (thanks, Ilya Kaliman!)
2019-04-29 00:18:14 +00:00
mef
c49e1e4049 Fix build problem PR pkg/54144, removing NO_CONFIGURE= yes. Tks @tristelo, bsiegert@, leot@ 2019-04-28 23:57:25 +00:00
fox
f20f4bc5f0 cliqz: Added a comment about NOT_PAX_MPROTECT_SAFE so that pkglint(1)
is happy.

This option is needed by the Javascript JIT used by cliqz, else it
will crash.
2019-04-28 22:00:54 +00:00
rillig
7f610ea49f mk/defaults: add option gcc-d 2019-04-28 21:24:26 +00:00
adam
2b5fcc7821 Updated ham/uhd 2019-04-28 20:31:46 +00:00
adam
c7da50ee6e uhd: updated to 3.14.0.0
UHD 3.14.0.0
N320: Add support for N320 and N321
USRP-2974: Add support for USRP-2974
DPDK: Add DPDK-based sockets-like library (for N3xx)
N3xx: clocking API changes for transitioning clock and time sources
N3xx: Bump max rev to G/6
N3xx: Improve error messages for invalid clock/time settings
N3xx: Get RFNoC crossbar baseport from FPGA
N3xx: init peripherals before loading FPGA (to fix SFP0 init issues)
N3xx: Move Linux kernel to 4.15
N3xx/E320: Prepend SDK filename with device name
N3xx: Update max rev to 7 (H)
N3xx: Remove DDR3 from standard BIST collection
N3xx: BIST: Improve DDR3 BIST to check for DmaFIFO
N3xx: BIST: Auto-load the AA image for the ddr3 BIST
N3xx: BIST: DDR3 test only enumerates first block
N310: Modify AD9371 reset function to keep it in reset
N310: move init_rf_cal before JESD de/framer bringup
N310: Fix sporadic power on failures (requires firmware update)
E3xx: Increase spp limit for E3xx radio
E320: bist: Fix ref_clock lock test implementation
E320: bist: Add link_up test
E320: Add all 5 temp sensors, fan sensor and rssi sensors per channel
E320: Fix tx/rx atr - antenna and frequency settings
E320: Enable devtest for E320
E320: images: Separate images package for Aurora image
E320: Get RFNoC crossbar baseport from FPGA
E320: add fpga_version_hash to e320 device info
E310: Fix initialization of antenna and frequency values
E31x: Destruct RFNoC before loading idle image
X300: Reduce default send_frame_size to 4000 over Ethernet
X300: Change Ethernet buffering
X300: Log git hash and compat number as debug message
X300: Move defaults to their own header
X300: Use constrained_args
X300: Enable clock_source and time_source device args
X300: NIRIO: Demote RPC client cancel/abort to TRACE
X300: remove default_buff_args properties
X300: Remove 120 MHz master_clock_rate option
X300: Set minimum master clock rate to 184.32 MHz
X300: Factor our PID -> MB type and MB type -> product name mapping
X300: Remove usage of boost::bind
X300: Fix compiler warnings related to type conversions
X300: Fix tick and sample rate setting
X300: Enable ADC gain through RFNoC API
X300: Demote NIRIO rpc client start/stop log messages to DEBUG
X300: Enable 11.52 MHz and 23.04 MHz system ref rates
X300: Enable x300_device_args.to_string()
X300: Catch more inconsistencies in x300_device_args
X300: Removed invalid 200 MHz sysref rate
X300: Change PLL CP currents in x300_clock_ctrl
B200: Remove superfluous fake lambda
B200: Add support for user regs
B200: Fix compiler warnings related to type conversions
B100: Move fifo_ctrl_excelsior to b100 subdir
B100: Fix fifo_ctrl_excelsior not exiting
B100: Remove all Boostisms from fifo_ctrl_excelsior
B100: Demote some clocking-related log messages to trace
MPM: Get list of temperatures from all thermal zones
MPM: add link_speed xport_info
MPM: Add mpm_device as usrp_hwd module variable
MPM: Add usrp_update_fs
MPM: Add i2c APIs for simple transfers
MPM: Add vector-based transfer function for i2c
MPM: Add variable configuration support to nijesdcore
MPM: Add eyescan utility to nijesdcore
MPM: Add PRBS-31 testing to nijesdcore
MPM: Add convenience function to pull i2c bus from device tree
MPM: Open and close i2c file descriptor on every access
MPM: Multiprocessing instead of threading for claimer loop
MPM: Factor out user EEPROM code into own module
MPM: Add gpgga sensor function to GPSd iface
MPM: Add bridge mode support
MPM: Parameterize max UDP link allocation
MPM: xport: add commit_xport docstring
MPM: Improve error message on double-claim
MPMD: Parallelize broadcast-finding
MPMD: add option to enum rfnoc blocks from args
MPMD: add link speed to xport udp
MPMD: Add API to set RPC timeout atomically
MPMD: Move timeout constants to header
MPMD: Use new RPC API with timeout
MPMD: Increase claim_rpc call timeout
MPMD: implement get_*x_hints
MPMD: honor user supplied send/recv_frame_size args
MPMD: Use 4096 bytes for frame size for liberio transport
MPMD: Use init timeout for update_component
MPMD: Allow reclaim failures on component updates
MPMD: Fix typecast warning in property tree default settings
Device: Parallelize device discovery
Device3: Move from packet-based to byte-based flow control
Device3: Constrain send_buff_size to input fifo size
Device3: remove tx_hint[send_buff_size]
Device3: Replace NULL with 0 for empty function pointers
Device3: Remove redundant function call
Device3: Fix flow control window and interval
UHD: Release recv buffers earlier in rx_streamer
UHD: Fix ADF400x driver for ref counter and charge pump mode
UHD: Improve constrained_device_args_t
UHD API: Add multi_usrp::get_user_settings_iface()
UHD: Remove usage of time_t (except when required)
UHD: add default xport params to udp_zero_copy
UHD: Update rx_frontend_gen3.v controls for 1/4-rate mixer
UHD API: Move definition of ALL_MBOARDS and ALL_CHANS constants to
CPP file.
UHD: Add traffic counter to null source sink
UHD API: Add multi_usrp::set_sync_source() API
UHD: Improve documentation for the UHD exception types
UHD: Improve documentation for set_{time,clock,sync}_source
UHD: add .clang-format file
UHD: Add device arg to enable dual ethernet for tx
UHD API: Add sync source to Python API
UHD API: Add support for Tx LO control to C API
UHD: Improve compatibility of abs() calls
UHD: include <stdint.h> for int64_t for time_spec
UHD: Updates to coding guidelines
UHD: Fix MSVC warnings by changing a size_t to unsigned int or
uint32_t
UHD: Add potentially missing but sometimes inferred include for
experts
UHD: Add default xport params to udp_wsa_zero_copy
UHD: Move device3 flow control functions to header for benchmark
utility
UHD: Make sure BOOST_VERSION is always available
UHD: Make clang-format skip formatting for some data structures
UHD: Remove vim hints in headers
UHD/MPM: Apply clang-format to all files
UHD: Add modified clang-format for headers
UHD: Replace uhd::math::log2 with std::log2
UHD: Replace boost::*::{lcm,gcd}() with portable versions
UHD API: Change get_{tx/rx}_dc_offset_range default from ALL_CHANS
to 0
UHD: Revert to boost instead of std for sleep in some instances
UHD: Replace Boost macros with custom ones for endianness
UHD: muxed_zero_copy_if fixes
UHD: Replace Boost lock & mutex with std variety for AD9361 code
UHD: fix includes for boost::noncopyable
UHD: Fix buffer size warning on UDP transport
UHD: Remove duplicate operator=() for sid_t
UHD: Fix conversion warning in max287x
UHD: Fix various type-conversion compiler warnings
RFNoC: Convert SR_READBACK_REG_FIFOSIZE to bytes
RFNoC: Add ability to enable/disable RX timestamp
RFNoC: add async message handler
RFNoC: Changes to traffic counter register names
RFNoC: Fix replay example port args
RFNoC: Fix default SPP for replay
RFNoC: Add halt to replay API
RFNoC: Fix late packet errors
RFNoC: Fix detection of outstanding acks by ctrl_iface
RFNoC: Add some missing virtual destructors
RFNoC: Update FIFO XML definition
RFNoC: Prevent unnecessary FC ACK packets
RFNoC: More graph traversal fixes
RFNoC: Fix scaling of M and N values in DDC/DUC
RFNoC: Fix typos in legacy_compat
RFNoC: Limit number of control packets in flight
RFNoC: Disable FC ACK packets for lossless links
RFNoC: Add valid num_input_ports check to node_ctrl_base
Utils: Add Zip test to downloader
Utils: Factor wait_for_lo_lock() out of cal utils
Utils: Add check for gdb_eeprom before accessing
Utils: Deny positional options in uhd_image_loader
Utils: Set tx gain to max for rx iq cal
Tools: Add tool to analyze settling time of gain and freq changes
Tools: Make the UHD source gen a plugin for the phase alignment test
Test: Add Python API test
Test: Integrate Python API Tester into Devtest
Test: Add graph impl test to device3_test
Test: Retrofit sph test to use new mock transport
Test: Enable rx_samples_to_file in devtest for X300
Test: Fix CMake endif warning for devtest
Test: Fix compiler warning about unused timestamp
Test: Add #include in system time test
Test: Add benchmark of streaming code paths
Test: replace has_key by using 'in'
Test: Add universal_newlines to subprocess call in devtest
Examples: add rfnoc_radio_loopback example
Examples: Add benchmark_streamer example
Examples: Add dual measurements to benchmark_streamer
Examples: Clean up rfnoc_radio_loopback example
Examples: Add keyboard controls to rx_ascii_art_dft
Examples: Add benchmark_streamer support for multi-channel streamer
Examples: Optimize benchmark_rate start time
Examples: Improve formatting and comments in tx_waveforms
Examples: Optimize tx_waveforms memory allocations
Examples: change boost to std for time commands
Examples: Add LO Offset to rx_samples_to_file
Examples: update lo-offset naming in tx from file
Examples: Add lo-offset to tx_waveforms
Examples: Improved error message in tx_waveforms
Examples: Move ascii_art_dft main function within include guard
Examples: Fix boundary condition in ascii_art_dft plotting
Docs: Fix Doxygen warnings
Docs: Add info on how to implement user regs on B200
Docs: Add manual page on compat numbers
Docs: Add comments for TwinRX and MCR
Docs: N3xx page shell formatting and bb image
Docs: n3xx: fix Salt formatting
Docs: Add note on manually disabling NEON extensions
Docs: Fixed typos in N3xx image names (SD card build)
Docs: Add notes on external reference frequencies for X300
CMake: Bump CMake minimum version to 2.8.12
CMake: Change SOVERSION and VERSION for the library files
CMake: Extend list of additional Boost versions
CMake: fix variable usage
Cmake: remove Boost from dyn libs for tests on Apple
Cmake: Fix MSVC options (add /bigobj)
Cmake: Use native format for setup.py
CPack: Fix RPM generation
2019-04-28 20:31:28 +00:00
adam
aba8c01914 Updated net/grpc, net/py-grpcio, net/py-grpcio-tools 2019-04-28 19:38:53 +00:00
rillig
e9df07bccf textproc/libcroco: remove unknown configure options 2019-04-28 19:37:36 +00:00
adam
84d70cdcb9 py-grpcio[-tools]: updated to 1.20.1
Release v1.20.1
Backport c-ares gevent segfault fix to v1.20.1.
2019-04-28 19:37:25 +00:00
adam
d679a52ecf grpc: updated to 1.20.1
Release v1.20.1
Revert "Enable SIO_LOOPBACK_FAST_PATH on Windows" (for v1.20.x).
2019-04-28 19:34:53 +00:00
nia
8ccb8569c4 games/openttd: Depends on fluidsynth. 2019-04-28 19:13:00 +00:00
adam
4466ecfdb3 Added devel/py-mmh3; Updated textproc/py-deepdiff 2019-04-28 19:07:26 +00:00
adam
9eda37edac py-deepdiff: updated to 4.0.6
v4.0.6:
Found a tiny bug in Python formatting of numbers in scientific notation. Added a workaround.

v4-0-5: Fixing number diffing. Adding number_format_notation and number_to_string_func.
v4-0-4: Adding ignore_string_case and ignore_type_subclasses
v4-0-3: Adding versionbump tool for release
v4-0-2: Fixing installation issue where rst files are missing.
v4-0-1: Fixing installation Tarball missing requirements.txt . DeepDiff v4+ should not show up as pip installable for Py2. Making Murmur3 installation optional.

v4.0.0:
Ending Python 2 support, Adding more functionalities and documentation for DeepHash. Switching to Pytest for testing. Switching to Murmur3 128bit for hashing. Fixing classes which inherit from classes with slots didn't have all of their slots compared. Renaming ContentHash to DeepHash. Adding exclude by path and regex path to DeepHash. Adding ignore_type_in_groups. Adding match_string to DeepSearch. Adding Timedelta object diffing.
2019-04-28 19:07:08 +00:00
rillig
01b6f9a040 sysutils/mc: fix unknown configure option 2019-04-28 18:55:19 +00:00
adam
18f7fb7bbd py-mmh3: added version 2.5.1
Python wrapper for MurmurHash (MurmurHash3), a set of fast and robust hash
functions.
2019-04-28 18:47:13 +00:00
rillig
1b56162416 devel/gettext-lib: disable check for unknown configure options 2019-04-28 18:33:57 +00:00
rillig
f1e3259189 doc: Updated pkgtools/pkglint to 5.7.8 2019-04-28 18:14:25 +00:00
rillig
8b00047de2 pkgtools/pkglint: update to 5.7.8
Changes since 5.7.7:

Warn about definitions of NOT_FOR_* and ONLY_FOR_* which are missing a
rationale. When maintaining such packages it helps a lot to know why the
package cannot be built on a particular platform or with a particular
compiler or Python version.
2019-04-28 18:13:53 +00:00
wiz
633341fc04 doc/TODO: add some
+ MesaLib-19.0.3, confuse-3.2.2, exiv2-0.27.1, lz4-1.9.1,
  mednafen-1.22.2, musicpd-0.21.8, ocaml-lablgtk-2.18.8, polkit-0.116,
  poppler-0.76.0, py-httplib2-0.12.3, subversion-base-1.12.0,
  xcb-util-xrm-1.3, zstd-1.4.0.
2019-04-28 17:11:53 +00:00
fox
ec0612f1d1 cliqz: Added a comment in the Makefile to indicate the build script is not
yet compatible with Python 3.x.

https://firefox-source-docs.mozilla.org/build/buildsystem/python.html
2019-04-28 16:30:05 +00:00
rillig
1a3f25b28f doc/pkgsrc.*: regen 2019-04-28 15:22:38 +00:00
rillig
6e80859641 doc/guide: add autogenerated chapter containing topics from "bmake help" 2019-04-28 15:22:24 +00:00
rillig
c912c9236b doc/guide: add chapters for getting help 2019-04-28 13:41:18 +00:00
fox
6d4ecc1ac5 doc: Updated www/cliqz to version 1.26.4 2019-04-28 13:39:05 +00:00
gdt
2e77121e33 pkgtools/pkglint*: Update DESCR to explain differences
Note that pkglint is current and pkglint4 is old, and that both are
present due to go portability issues.
2019-04-28 13:38:23 +00:00