summaryrefslogtreecommitdiff
path: root/meta-pkgs
AgeCommit message (Collapse)AuthorFilesLines
2020-07-17pkglint: fix category Makefileswiz1-2/+1
pkglint 20.2.0 (and a bit earlier) does not insist on entries for directories any longer that do not contain complete packages. Remove them. While here, fix security/Makefile that had two missing entries.
2020-07-16texlive-collection-latexextra: add beamertheme'smarkd1-15/+15
2020-07-15meta-pkgs/netbsd-doc-print: update to 1.6snj1-2/+3
add dependency on tex-epstopdf-pkg, which unbreaks pdf generation for me
2020-06-21meta-pkgs/netbsd-doc-print: update to 1.5rillig1-2/+3
Changes since 1.4: Added a dependency on epstopdf, in order to allow the PDF files of the NetBSD Guide and the pkgsrc guide to be generated directly instead of generating them from the PostScript version.
2020-06-19boost: Fix graphics/krita-4.3.0 buildryoon2-1/+18
2020-06-14meta-pkgs/ruby-shoulda: udpate to 4.0.0taca3-37/+32
Update ruby-shoulda to 4.0.0. ## 4.0.0 (2020-06-13) * `shoulda` now brings in `shoulda-context` 2.0.0, which adds compatibility for Ruby 2.7, Rails 6.0, and shoulda-matchers 4.0! Note that there are some backward incompatible changes, so please see the [changelog entry][shoulda-context-2-0-0] for this release to learn more.
2020-06-09kf5: be less strict on versionsmarkd1-70/+70
2020-06-09kde: set default plasma version to 5.18.5markd2-4/+4
2020-06-07kf5: update to 5.70.0markd1-2/+2
2020-06-07kde: update frameworks version to 5.70.0markd1-3/+3
2020-06-02Revbump for icuadam3-6/+6
2020-06-01meta-pkgs/lxqt: update to 0.15.0pin2-29/+30
2020-05-23bulk-medium: don't care about the wine versionnia1-2/+2
2020-05-22texlive-collection-latexextra: add new packagesmarkd1-11/+11
2020-05-22texlive-collection-latexextra: add tex-datetime2* packagesmarkd1-45/+44
2020-05-21meta-pkgs/bulk-medium: update to 20200521taca1-3/+3
* Drop lang/ruby24-base. * Build lang/ruby27-base. Bump to 20200521.
2020-05-21texlive-collection-plaingeneric: missed tex-ruler in last.markd1-2/+2
2020-05-21texlive-collection-plaingeneric: add tex-genmisc replacement packagesmarkd1-8/+8
2020-05-10texlive-collection-pictures: update to rev 54812markd1-2/+3
2020-05-10texlive-collection-latexextra: update to rev 55060markd1-14/+18
2020-05-10texlive-collection-langjapanese: update to rev 54894markd1-2/+3
2020-05-10texlive-collection-bibtexextra: update to rev 54875markd1-5/+6
2020-05-10fix ps2eps dependencytnn1-2/+2
2020-05-10remove reference to removed tex-tetex-doc packagetnn1-3/+2
2020-05-10fix dependency patterntnn1-2/+2
2020-05-10texlive-collection-*: texlive 2020 updatesmarkd39-150/+306
2020-05-06meta-pkgs/ruby-redmine-plugins: update to 1.3.0taca2-9/+5
Update ruby-redmine-plugins to 1.3.0. Drop some plugins which do not support Redmine 4.0 and later.
2020-05-06meta-pkgs/ruby-redmine-themes/Makefile.common: add "used by" linestaca1-2/+5
Add "used by" lines in comments for newer ruby-redmine theme pacakges.
2020-05-06meta-pkgs/ruby-redmine-themes: update to 1.4.0taca1-6/+10
* Add redmine-minimalflat2-theme, redmine-purplemine2-theme and redmine-yh-theme.
2020-05-06boost: updated to 1.73.0adam5-45/+14
1.73.0: Known Issues ------------ These are patches from library authors which were found too late to be fixed in the release. Be careful as they have not been through the normal testing process. New Libraries ------------- Nowide: Standard library functions with UTF-8 API on Windows, from Artyom Beilis. StaticString: A dynamically resizable string of characters with compile-time fixed capacity and contiguous embedded storage, from Vinnie Falco and Krystian Stasiowski Updated Libraries ----------------- Align: * Update aligned_alloc to support older mingw32. Any: * Speedup compilation by not including <algorithm>. * Maintenance work, including CI hardening. Asio: * Fixed compatibility with C++20 concept syntax. * Marked the POSIX descriptor classes' move constructors as noexcept. * Added the ssl::host_name_verification class, which is a drop-in replacement for ssl::rfc2818_verification. The ssl::rfc2818_verification class has been marked as deprecated. As a consequence of this change, SSL support now depends on functions that were introduced in OpenSSL 1.0.2. * Added an ssl::context constructor to take ownership of a native handle. * Changed C++ language version detection with gcc to use __cplusplus macro. * Fixed a work counting issue in the asynchronous resolve operation for endpoints. * Fixed the strand<> converting constructors and assignment operators. * Ensured that resolvers are restarted correctly after a fork. * Fixed compatibility with the current NetBSD release. * Removed spurious handler requirement checks in some async_read overloads. * Changed the ssl::context class to propagate non-EOF errors from the add_certificate_authority function. * Fixed a Windows-specific thread_pool destructor hang that occurred when the pool had an associated I/O object. * Changed the select reactor to recreate the "self pipe trick" sockets on error. This addresses an issue on some versions of Windows, where these sockets are discconected after a system sleep. * Fixed a compile error in the buffered streams due to the lack of reference collapsing in C++98. * Changed the priority_scheduler example to demonstrate calls to shutdown() and destroy(). * Removed some unnecessary null pointer checks. * Changed Windows platform detection to recognise TV titles as Windows apps. * Added some emscripten compatibility patches. * Fixed a compile error in the use_awaitable_t::as_default_on function. * Changed all uses of the boost.bind placeholders to use the boost::placeholders namespace. * Fixed a potential compile error in the async_compose implementation due to incorrect overload selection. * Suppressed some non-virtual destructor warnings. * Various documentation fixes and improvements. Assert: * Added source_location. Atomic: * Implemented C++20 atomic_ref. See docs and especially the caveats section. * Implemented atomic_flag::test operation, which was introduced in C++20. * atomic<T> should now take into account alignment requirements of T, which makes a difference if those requirements are higher than that of the internal storage of atomic. * Added static asserts enforcing the requirements on the value type T used with atomic and atomic_ref. This should prohibit invalid types from being used as atomics. * Improved internal lock pool implementation. The pool is larger, and lock selection accounts for atomic object alignment, which should reduce the potential of thread contention. * Fixed incorrect x86 code generated for bit_test_and_* operations on 8 and 16-bit arguments. Other architectures are not affected. * Fixed a possible unaligned memory access in compare_exchange_* operations, if alignment requirements of value_type are less than that of the internal storage of atomic. * boost/atomic/atomic.hpp no longer includes boost/atomic/atomic_flag.hpp and boost/atomic/fences.hpp and only defines the boost::atomic class template and related typedefs. Include the other headers explicitly or use boost/atomic.hpp to include all parts of Boost.Atomic. * The atomic<T>::storage() accessor and associated atomic<T>::storage_type type are deprecated. Instead, users are advised to use atomic<T>::value() and atomic<T>::value_type, respectively. Users can define BOOST_ATOMIC_SILENCE_STORAGE_DEPRECATION to disable deprecation warnings for the time of transition. The deprecated pieces will be removed in a future release. * Removed support for BOOST_ATOMIC_DETAIL_HIGHLIGHT_OP_AND_TEST. This macro was used as a helper for transition to the updated returned values of *_and_test operations in Boost.Atomic 1.67, which was released 2 years before 1.73. Beast: * This is a maintenance update. * Nested mutable_data_type in Beast dynamic buffers is deprecated. * We'd love to know how you or your company use Beast, consider adding an entry to the Companies and Individuals Using Beast list. * See the full Release Notes for a complete list of changes. Context: * IBM Z: Fix fcontext routines * mips64/n64: .align 3 * Use OSPLAT MIPS32/MIPS64 to set different ABI * Fix non-PIC in RISC-V assembly Conversion: * Added boost::polymorphic_downcast for references (thanks to Julien Delacroix for the patch). * Significant docs update. date_time: * Support constexpr in c++14 and above * Make date_time all inline. Users no longer need to link the library for any functions. Library remains for build compatibility. * Deprecate support for legacy io and USE_DATE_TIME_PRE_1_33_FACET_IO macro * Misc documentation updates and bugfixes. DLL: * Fixes and tests for demangling in boost::dll::smart_library * Make UB sanitizers happy with boost::dll::load_mode::type * Ceased dependence on MPL improving compile times * Clang and ICC on Windows fixes and CI support for those platforms * Maintenance work, including CI hardening and tests improving. Dynamic Bitset: * Fixed a portability issue in the definition of the maximum block limit. Flyweight: * Maintenance work. Geometry: * Improvements - Missing input combinations in intersection() and introduction of tupled-output. - Added d3::point_xyz geometry model (thanks to Digvijay Janartha). * Solved issues - Incorrect definition of EPSG:3785. * Bugfixes - R-tree exception-safety improvement. - Andoyer inverse formula fixed for close points. - Fixed dangling reference in distance algorithm. * Deprecation - Support for C++03 has been deprecated and Geometry will require C++14 from Boost 1.75 onwards. GIL: * Added move constructor and move assignment operator to image class * New member function size() in any_image_view class * Replace Boost.Test with Boost.LightweightTest as the only test framework used in GIL. This also restructured the test/extension/io/ sub-tree and targets in related Jamfile-s. * Removed remaining uses of Boost.MPL * Renamed all macros using BOOST_GIL_ prefix * Renamed all CMake configuration options using BOOST_GIL_ prefix * Removed extension/dynamic_image/reduce.hpp as unused and possibly unfinished. An implementation attempt of techniques described in the paper Efficient Run-Time Dispatching in Generic Programming with Minimal Code Bloat by Lubomir Bourdev, Jaakko Jarvi. * Removed direct dependency on Boost.MPL, Boost.System and Boost.Test. * Started removing public macros for compile-time configuration of I/O extension tests, i.e. BOOST_GIL_IO_TEST_ALLOW_READING_IMAGES and BOOST_GIL_IO_TEST_ALLOW_WRITING_IMAGES. Instead, if a test target is built, it builds all its test cases unconditionally. * Avoid longjmp interaction during destruction of I/O extension objects. * Fixed missing alignment default value in constructor of image class. * Fixed segmentation fault when reading corrupted PNG file. * Fixed illegal initialization of return values in the old IOv1 interface of I/O extension. Histogram: * Added crop command to reduce algorithm * slice command in reduce now works on category axis * Added count accumulator, can be used to add arbitrary metadata to each cell * sum algorithm gained a new argument to optionally sum only over inner bins * Several fixes for bugs in corner cases * Enhanced documentation icl: * Remove references to date_time compiled library. * Fix forward decl lower and upper less equal. * Misc bugfixes. IO: * Made all the IOS state saver classes non-copyable. (Glen Fernandes) * Correctly handle error upon first read from the input stream when reading a quoted string. (Glen Fernandes) * Implemented ostream_joiner for delimiter based joining. (Glen Fernandes) * Relocated ostream_string from the Utility library to the IO library as ostream_put. * Correctly handle stream width and fill in quoted output. (Glen Fernandes) * Optimize quoted output to write directly to the stream buffer. (Glen Fernandes) * Glen Fernandes became the maintainer of the IO library. LexicalCast: * Maintenance work, including CI hardening and better workarounds for broken standard libraries Log: * Default sink used in trivial logging, when no sinks are registered in the logging core, now automatically flushes output after each log record * core::flush now performs a flush on the default sink used for trivial logging, when no sinks are registered. * Added a workaround for some syslog API implementations (e.g. glibc), which do not save the application identification string in openlog call. Such implementations could access already freed memory on each syslog call, resulting in undefined behavior. * Fixed that log file rotation on a specific day of month (e.g. rotation_at_time_point(boost::gregorian::greg_day(1))) could be silently ignored and not happen. * Fixed that text_file_backend::rotate_file could throw if there were no log records written yet and target file name pattern was set. * Ported various components of the library to std::allocator_traits to improve compatibility with C++20 allocators. * Fixed compilation errors when building in MSYS2 Cygwin environment. Math: IMPORTANT: C++03 support is now deprecated and will be removed from March 2021. * Added Cubic Hermite Interpolation. * Added Modified Akima Interpolation. * Added PCHIP Interpolation. * Added Quintic Hermite Interpolation. * Added entropy to numerous distributions. * Allow trivial quadrature case where the two end points are equal, and in addition allow bounds to be interchanged. * Fix exp_sinh quadrature to work with complex types over a non-native range. * Fix miscellaneous compiler warnings in factorial.hpp. * Use std::chrono rather than boost::chrono in timed pFq calculations. * Remove much of the old boost::mpl dependencies to improve constexpr support. Mp11: * Added mp_unique_if (contributed by Kris Jusiak) * Added mp_flatten * Added mp_rotate_left, mp_rotate_right (contributed by Duncan Barber) * Added mp_compose * Added mp_power_set * Added mp_partial_sum * Added mp_iterate Multi-index Containers: * multi_index_container is now AllocatorAware. * Swapping of internal KeyFromValue, Compare, Hash and Pred objects now selects the appropriate swap function between std::swap and ADL candidates, in accordance with standard specifications in [swappable.requirements] * Provided some internal copy constructors and assignment operators whose default implicit definition is deprecated in C++11 onwards ([depr.impldec]), which was warned about on some compilers. Multiprecision: * IMPORTANT: Mark C++03 support as deprecated and due for removal in 2021. * Big update to cpp_int adds faster Karatsuba and Coomba multiplication routines. * Fix conversion of gmp_rational to long double and __float128 * Fix up libtommath support to function with the latest libtom releases. * Fix up some incompatibilities with the latest Intel C++ compiler. * Fix up constexpr arithmetic support for latest MSVC release. Outcome: * Performance of Outcome-based code compiled by clang has been greatly improved. The previous implementation of Outcome's status bitfield confused clang's optimiser, which caused low quality codegen. Unlike most codegen issues, this was noticeably in empirical benchmarks of real world code, as was shown by P1886 Error speed benchmarking. * The safe part of the better_optimisation Outcome v2.2.0 future branch was merged to Outcome v2.1.3 which includes a new status bitfield implementation. This appears to not confuse clang's optimiser, and clang 9 produces code which routinely beats GCC 9's code for various canned use cases. * Installability is now CI tested per commit. Due to installability of standalone Outcome (e.g. make install) breaking itself rather more frequently than is ideal, installability is now tested on CI per commit. * Newer Concepts implementing compilers were unhappy with the early check for destructibility of T and E, so removed template constraints, falling back to static assert which runs later in the type instantiation sequence. * A false positive undefined behaviour sanitiser failure in some use cases of Experimental Outcome was worked around to avoid the failure message. PolyCollection: * Suppressed a potential redundant move warning in boost::poly_collection::for_each. * Fixed a bug by which elements were copied rather than moved in allocator-extended move construction and move assigment between collections with non-propagating, unequal allocators. * Allocator-extended move construction no longer decays to allocator-extended copy construction for the legacy version of libstdc++-v3 shipped with GCC 4.8 (which can also be used by Clang). Stacktrace: * Added documentation on distribution of PDBs * Fixed msvc-9 build * Maintenance work, including test fixes fixing typos CI improvements and hardening, inspect tool fixes. Test: * Boost.test v3.13 see the Changes log for more details. * New feature: It is now possible to combine tolerance indication, user message and collection comparison modifier in a single BOOST_TEST expression. See change logs for more details. ThrowException: * Added an overload of throw_exception that takes a boost::source_location object. * NOTE: Projects using BOOST_THROW_EXCEPTION with exceptions disabled will need to add a definition of this new overload. TTI: * Added introspection of function templates for more recent C++ compilers versions from gcc and vc++. as well as all versions of clang. Older versions of vc++ before 14.0 and gcc prior to 4.8 may fail. * Added specific introspection for elements of struct/class, enum, and union types, which can be used for more fine-grained introspection than the general 'type' introspection. TypeIndex: * Maintenance work, including CI integration with inspect tool. Utility: * The ostream_string facility has moved from the Utility library to the IO library as ostream_put. Variant: * Removed unused includes * Fixed zero-as-null-pointer-constat warnings * Maintenance work, including typo fixes. Variant2: * Added support for std::hash, boost::hash. * variant<T...> is now trivial when all types in T... are trivial. This improves performance by enabling it to be passed to, and returned from, functions in registers. WinAPI: * Headers in boost/detail/winapi are deprecated and will be removed in a future release. * Boost.WinAPI headers no longer include winerror.h. Include boost/winapi/error_codes.hpp to get Windows error codes.
2020-05-02ruby-gnome: update to 3.4.2.tsutsui1-2/+2
pkgsrc changes: - for ruby-gilb2 and ruby-gobject-introspection gems, handle generated source files that are no longer included in distributed gem files by newly introduced GEM_KEEPBUILD variable Upstream changes (from NEWS): == Ruby-GNOME 3.4.2: 2020-05-02 This is a follow-up release of 3.4.1. === Changes ==== Ruby/GLib2 * Improvements * Add support for Ruby 2.8. ==== Ruby/GTK3 * Improvements * (({Gtk::Widget#style_get_property})): Added a validation. * Updated examples. [GitHub#1318][GitHub#1319][GitHub#1320][GitHub#1321][GitHub#1322] [GitHub#1323][GitHub#1324][GitHub#1325][GitHub#1326][GitHub#1327] [GitHub#1328][GitHub#1329][GitHub#1330][GitHub#1331][GitHub#1332] [GitHub#1353][GitHub#1354][GitHub#1355][GitHub#1391] [Patch by kojix2] * Fixes * Fixed a typo. [GitHub#1307][Patch by Ismail Arilik] ==== Ruby/GObjectIntrospection * Improvements * Changed to accept (({nil})) as a false value for boolean. [GitHub#1305][Reported by Matijs van Zuijlen] * Added support for UTF-8 (({GHashTable})) value. * Added workaround for (({rsvg_handle_set_stylesheet()})). * Fixes * Fixed a bug that pointer struct isn't allocated correctly. [GitHub#1315][Reported by Konrad Narewski] ==== Ruby/GtkSourceView4 * Improvements * Added support for auto native package install on Ubuntu. [GitHub#1309][Patch by Ismail Arilik] * Added support for auto native package install on Debian GNU/Linux. ==== Ruby/VTE3 * Improvements * (({Vte::Terminal#spawn})): Made options optional. [GitHub#1333][Patch by kojix2] * Updated README. [GitHub#1335][Patch by kojix2] ==== Ruby/GdkPixbuf2 * Improvements * Updated examples. [GitHub#1336][GitHub#1337][GitHub#1338][GitHub#1339][GitHub#1340] [GitHub#1341][GitHub#1342][GitHub#1343][GitHub#1344][GitHub#1347] [GitHub#1348][GitHub#1349] [Patch by kojix2] * Updated README. [GitHub#1346][Patch by kojix2] ==== Ruby/WebKit2GTK * Fixes * Fixed dependency check. [GitHub#1351][Patch by kojix2] ==== Ruby/RSVG2 * Improvements * Updated examples. [GitHub#1357][Patch by kojix2] [GitHub#1393][Patch by Jean-Christophe Le Lann] === Thanks * Matijs van Zuijlen * Ismail Arilik * Konrad Narewski * kojix2 * Jean-Christophe Le Lann
2020-05-02texlive-collection-basic: remove tex-if{luatex,xetex}markd1-3/+2
2020-05-02texlive-collection-basic-doc: remove tex-if{luatex,xetex}-docmarkd1-3/+2
2020-05-02texlive-collection-plaingeneric: remove tex-ifetexmarkd1-3/+2
2020-04-30bulk-large: remove the older mysql of the two so this package can be builtmaya1-5/+2
by non-pbulk users. remove valgrind because it's rejecting my OS/arch combo and is probably not a sufficiently portable package. bump version.
2020-04-29bulk-small: bump version for removing dependenciesmaya1-3/+2
2020-04-29bulk-small: remove pkg-configmaya1-2/+1
it conflicts with pkgconf that you will build as one of the dependencies.
2020-04-29bulk-small: remove fvwm now that it uses librsvg (and thus rust) by defaultmaya1-2/+1
2020-04-26texlive-collection-fontsrecommended: update to 2020markd1-5/+4
tex-ec moves to collection-basic tex-wasy2-ps replaced by tex-wasy-type1
2020-04-26meta-pkgs/modular-xorg: make hacks.mk optionalrillig1-1/+2
For example, devel/imake doesn't need it.
2020-04-26lxqt: add a comment about icon themesgutteridge1-1/+3
2020-04-26meta-pkgs: add LXQt 0.14.1gutteridge4-1/+71
LXQt is a free desktop environment with comparatively low resource requirements. This makes it especially suitable for resource-constrained personal computers such as netbooks or system-on-a-chip machines. (Packaged in wip by pin@, additional changes by myself.)
2020-04-12Recursive revision bump after textproc/icu updateadam1-2/+2
2020-04-06mate: fix $VERSION entries for some dependenciesgutteridge1-16/+16
2020-04-05mate: align mate-themes required version to pair with 1.24gutteridge1-2/+2
2020-04-05Update all MATE packages (except system-monitor) to 1.24.0.bsiegert2-4/+6
This release contains plenty of new features, bug-fixes, and general improvements. Some of the most important highlights include: * We did it again, the MATE desktop environment is easier to use than before, once the user starts the session. Do you want to hide applications startup? Now you can set which applications to show on startup. * Engrampa now has support for a handful of extra formats, as well as fixed support for passwords and unicode characters in some of them. * Eye of MATE now has support for Wayland and we’ve added support for embedded color profiles. * The thumbnail generation has been reworked and fixed in several places. * Added support for webp files. * Our window manager, marco, has gotten quite a few changes: * We’ve brought a bunch of window decorations from the past to feed your nostalgia. * Finally added invisible resize borders. No more struggling to find a border to grab with your mouse! * All window controls (you know, the min, max, close buttons) are now rendered in HiDPI. * The Alt+Tab and Workspace Switcher popups have been entirely reworked. Now they render in beautiful OSD style, are more configurable, and can respond to keyboard arrows. * Tiling windows with the keyboard now allows you to cycle through different window sizes. You no longer need to feel constrained by only half of your screen. * The System Monitor panel applet now has support for NVMe drives. * Calculator now supports using either “pi” or “π”. * Scientific notation has been improved. * Some fixes for supporting pre-defined physical constants. * The Control Center now displays its icons correctly on HiDPI displays. * A brand new Time And Date Manager app has been added. * The Mouse app now supports acceleration profiles. * The Preferred Applications app has been improved for accessibility, as well as better support for integration with IM clients. * The Indicator Applet has slightly better interaction with oddly-sized icons. * Speaking of icons, the network manager applet icons in our own themes have been entirely redesigned and can now be enjoyed on HiDPI displays. * If you’re the type of person that does not like to be disturbed when busy, or giving a presentation, or watching a movie, you’ll be happy to know that the notification daemon now supports a Do-Not-Disturb mode. * The MATE Panel had several bugs that caused crashes in the past when changing layouts. Those are now fixed! * Support for Wayland compatibility has improved considerably. * Status icons (a.k.a. notification area, or system tray) have support for HiDPI displays. * Wanda the Fish got a make-over and now you can enjoy her in full HiDPI glory. * The window list applet now supports window thumbnails on hover. * Various accessibility improvements throughout the panel and its core applets. * If your system doesn’t, uh, support systemd you might be interested in knowing that we’ve added support for elogind to both the MATE Screensaver and the MATE Session. * We’ve also added a brand new MATE Disk Image Mounter utility. * Mozo, the menu editor, now supports Undo and Redo actions. * Pluma plugins have now fully switched to Python 3. * Pluma no longer has to envy anything from other complex editors, since it can now show the formatting marks. * i18n: All applications have been migrated from intltools to gettext.
2020-03-29meta-pkgs/boost/Makefile.common: define some variable firsttaca1-3/+3
Define USE_TOOLS and USE_LANGUAGES before including <bsd.prefs.mk>.
2020-03-21bulk-large: -ruby-rails42 +ruby-rails60tnn1-3/+3
2020-03-17meta-packages/boost: remove obsolete SUBST actionrillig1-7/+1
boostcpp.jam does not contain the word PREFIX anymore.
2020-03-16fixup more RUBY_VERSIONS_ACCEPTED fallouttnn1-2/+2