summaryrefslogtreecommitdiff
path: root/meta-pkgs
AgeCommit message (Collapse)AuthorFilesLines
2018-05-22texlive-collection-mathscience: add tex-ebproofmarkd1-3/+3
2018-05-22texlive-collection-plaingeneric: add tex-tracklangmarkd1-3/+3
2018-05-20Enable mozo back.youri1-2/+2
2018-05-18xfce4: Fix version number for xfce4-power-manager.jperkin1-2/+2
2018-05-18+ xfce4-power-manageryouri2-3/+5
2018-05-17gnome: Don't enable mono by default on SunOS.jperkin1-2/+2
2018-05-16Don't install mate-system-monitor in the meta-package,youri1-2/+2
it requires c++ gtk dependencies and doesn't work on NetBSD yet.
2018-05-14Take maintainership of all MATE packages.youri1-1/+3
2018-05-14Comment out mozo, it is pretty much useless.youri1-2/+2
2018-05-14Add mate-calc.youri2-2/+4
2018-05-14Update the MATE meta-package to 1.20.0.youri2-4/+3
2018-05-14texlive-collection-basic-doc: update to 2018.wiz1-3/+2
Remove tex-texconfig-doc, removed.
2018-05-13texlive-collection-all: update to 2018pre1markd1-2/+2
2018-05-13texlive-collection-*: update to 2018 versionsmarkd39-113/+194
2018-05-11boost: Put back SunOS soname fix.jperkin2-1/+18
For some reason this patch file was deleted during the last boost update. Fixes build on SunOS again.
2018-05-11netbsd-doc-print: remove MESSAGE that explains how to view PDFswiz1-10/+0
2018-05-06devel/boost-libs: Make fiber compiles on FreeBSDminskim2-2/+50
https://github.com/boostorg/fiber/commit/225b0d75
2018-05-06devel/boost-headers: Fix wave on FreeBSDminskim2-1/+20
https://github.com/boostorg/wave/commit/0e25913e
2018-05-05devel/boost-headers: Fix an incorrect line in a patchminskim2-8/+6
The patch file deleted a backslash incorrectly, breaking the packages using the header file it patched on some platforms.
2018-05-03ruby-gnome2: update to 3.2.5.tsutsui1-2/+2
Upstream changes (from NEWS): == Ruby-GNOME2 3.2.5: 2018-05-02 This is a bug fix release of 3.2.4. === Changes ==== Document * Fixes * Fixed typos. [GitHub#1158][Patch by kojix2] [GitHub#1160][Patch by kojix2] ==== Ruby/GLib2 * Fixes * Fixed a GC related crash bug. [GitHub#1162][Reported by Izumi Tsutsui] ==== Ruby/GObjectIntrospection * Improvements * Disabled NULL check for GObject Introspection < 1.42. Because GObject Introspection < 1.42 doesn't support "(nullable)" annotation yet. ==== Ruby/GdkPixbuf2 * Improvements * (({GdkPixbuf::Pixbuf#composite})): Suppressed wrong warning. [GitHub#1156][Reported by Chaistrin] [GitHub#1157][Patch by cedlemo] * Fixes * Added a missing white space into message. [GitHub#1155][Reported by Robert A. Heiler] * (({GdkPixbuf::Pixbuf#composite})): Fixed a bug that width and height are ignored. [Patch by cedlemo] ==== Ruby/GTK3 * Improvements * (({Gtk::TextBuffer#initialize})): Accepted "property-name" form. [GitHub#1161][Reported by kojix2] ==== Ruby/Poppler * Improvements * Added a workaround for poppler-glib 0.63 bug. [GitHub#1159][Reported by HIGUCHI Daisuke] === Thanks * Robert A. Heiler * Chaistrin * cedlemo * kojix2 * Izumi Tsutsui * HIGUCHI Daisuke
2018-05-01devel/boost-headers: Add a missing #include.minskim2-1/+18
This fixes Boost ticket #13497 (https://svn.boost.org/trac10/ticket/13497). Patch from https://github.com/boostorg/lockfree/commit/12726cda.
2018-04-30Fix devel/boost-libs build on NetBSDryoon3-3/+18
Bump PKGREVISION of devel/boost-headers
2018-04-29boost: updated to 1.67.0adam8-73/+51
Version 1.67.0: New Libraries: - Contract: Contract programming for C++. - HOF: Higher-order functions for C++. Updated Libraries: - Asio: Added missing const qualifier to basic_socket_acceptor::get_option. Worked around a parsing error that occurs with some versions of gcc. Fixed broken code samples in tutorial. Added new experimental features. (Note that "experimental" features may be changed without notice in subsequent releases.) Added experimental::detached completion token. Added experimental::redirect_error completion token. Added experimental::co_spawn facility for integration with the coroutines technical specification. Updated timeout examples to use latest features. Used asio::steady_timer rather than asio::deadline_timer. Used asio::dynamic_buffer rather than asio::streambuf. Used timed asio::io_context::run_for() function for blocking clients. Added example showing a custom completion token for blocking with timeouts. Fixed unit tests to compile when BOOST_ASIO_NO_DEPRECATED is defined. Changed socket iostreams to use chrono by default, to fix compatibility with the Networking TS. Define BOOST_ASIO_USE_BOOST_DATE_TIME_FOR_SOCKET_IOSTREAM to enable the old Boost.Date_Time interface in basic_socket_streambuf and basic_socket_iostream. Updated examples to use chrono rather than Boost.Date_Time. Fixed an incorrect member function detector in the is_dynamic_buffer trait. Fixed an async_result incompatibility with deprecated handler_type. Added a missing move optimisation in the SSL stream implementation. Fixed incorrect basic_resolver_results::value_type typedef. Fixed a compile error with some OpenSSL versions when SSL_OP_NO_COMPRESSION is defined. Changed add_certificate_authority to process multiple certificates in a bundle. Eliminated deprecation warning with MSVC by using std::invoke_result rather than std::result_of. Changed to use std::string_view for C++17 or later, and std::experimental::string_view for C++14. Define the preprocessor macro BOOST_ASIO_DISABLE_STD_STRING_VIEW to force the use of std::experimental::string_view (assuming it is available) when compiling in C++17 mode. Ensured DynamicBuffer template arguments are decayed before using in enable_if tests. Changed documentation to distinguish legacy completion handlers (which are still required to be CopyConstructible) from new MoveConstructible handlers. Suppressed a discarded return value warning in the buffer debugging support. Fixed basic_yield_context to work with completion signatures containing reference parameters. Ensured that stackful coroutines launched using spawn() correctly store decayed copies of their function and handler arguments. Fixed some compatibility issues with Android. Added cross-compilation support to Jamfiles. Fixed some minor portability issues in examples. - Atomic: Breaking change: Changed the result of the (op)_and_test operations added in Boost 1.66 to the opposite - the functions now return true if the operation result is non-zero. This is consistent with other test methods in Boost.Atomic and the C++ standard library. Users can define BOOST_ATOMIC_DETAIL_HIGHLIGHT_OP_AND_TEST when compiling their code to emit warnings on every use of the changed functions. This way users can locate the code that needs to be updated. Update for C++2a. On C++11 compilers that support scoped enums, the memory_order enumeration is now scoped and contains constants with shorter names like acquire, release or seq_cst (i.e. users can use memory_order::acquire instead of memory_order_acquire). The old constants are also provided for backward compatibility. (P0439R0) Update for C++2a. Added experimental support for atomic operations on floating point types. In addition to general operations, add, sub, negate operations and their fetch_(op) and opaque_(op) versions are supported. Lock-free property can be tested with the new macros BOOST_ATOMIC_FLOAT/DOUBLE/LONG_DOUBLE_LOCK_FREE. The support for floating point types is optional and can be disabled by defining BOOST_ATOMIC_NO_FLOATING_POINT. (P0020R6) Added new experimental operations: negate_and_test and complement_and_test which perform negation or bitwise complement and return true if the result is not zero. add, sub, negate, bitwise_and, bitwise_or, bitwise_xor, bitwise_complement operations which perform the operation and return its result. For generic atomic<T> specialization, the default constructor is now trivial if T's default constructor is. The internal implementation of atomic<T> has been updated to avoid undefined behavior that stems from signed integer overflows. As required by the C++ standard, the library uses two's complement representation of signed integers internally and accroding rules of overflow. Currently, the library requires the native signed integer types to also use two's complement representation (but no defined overflow semantics). Improved Clang support. In particular, fixed DCAS not being lock-free and fixed possible incorrect code generated on 32-bit x86. Improved MinGW support. For gcc versions up to 4.6, fixed compilation of DCAS on x86. In x86 PIE code, asm blocks now preserve ebx value. - Beast: This version fixes significant defects in websocket::stream which can lead to asserts or undefined behavior. Users are encouraged to update to the latest Boost release. For a complete list of changes, please view the official Release Notes. - ContainerHash: Extracted from the functional module to break a dependency cycle. Moved headers to new location to reflect name change, the old include paths will still work. Added support for std::string_view, std::error_code, std::error_condition, std::optional, std::variant, std::monostate where available. Added explicit support for vector<bool>, so that it will work with libc++. More detail in the library change log. - Context: fix i386/macho routines to correctly return transfer_t in EAX/EDX __sanitizer_finish_switch_fiber should be called directly after context switch Clang on Windows : error: No best alternative for libs/context/build/asm_sources fixing C2492 for execution_context (v1) known bug: including all.hpp + <context-impl>ucontext/winfib causes error 'forced_unwind: is not a member of boost::context::detail' More info https://www.boost.org/users/history/version_1_67_0.html
2018-04-25texlive-collection-latexextra: add tex-changesmarkd1-3/+3
2018-04-25texlive-collection-plaingeneric: add tex-lambda-listsmarkd1-3/+3
2018-04-16Recursive bump for new fribidi dependency in pango.wiz5-10/+10
2018-04-14revbump after icu updateadam1-2/+2
2018-04-14kde: default applications version to 18.04.0markd1-2/+2
2018-04-13kde: dont need to extract with gtar any moremarkd1-2/+2
2018-04-13ruby-gnome2: update to 3.2.4.tsutsui1-2/+2
Upstream changes (from NEWS): == Ruby-GNOME2 3.2.4: 2018-04-09 This is a bug fix release of 3.2.3. === Changes ==== Ruby/GLib2 * Fixes * Fixed a bug that some constants aren't defined. If a content name is the same constant name at the top level such as (({Gtk::Object})), the constant isn't defined. [GitHub#1154][Debian#894816][mikutter#1199] [Reported by Akira Ouchi][Forwarded by HIGUCHI Daisuke] ==== RubyRsvg2 * Improvements * Windows: Upgraded bundled librsvg to 2.42.3. === Thanks * Akira Ouchi * HIGUCHI Daisuke == Ruby-GNOME2 3.2.3: 2018-04-03 This is a bug fix release of 3.2.2. === Changes ==== Ruby/GObjectIntrospection * Fixes * Fixed a crash bug when (({GLib::Bytes})) is passed as an argument. == Ruby-GNOME2 3.2.2: 2018-04-02 This is a release to support Ruby 2.5 on Windows. === Changes ==== All * Windows: Added Ruby 2.5 support. [GitHub#1148][Reported by Andy Meneely] * Red Hat: Use (({pkgconfig(name)})) style. [GitHub#1117][Patch by Mamoru TASAKA] ==== Ruby/GLib2 * Improvements * (({GLib::Bytes#to_s})): Changed to return a frozen string to reduce data copy. * Migrated to (({TypedData})) from (({Data})). ==== Ruby/GObjectIntrospection * Improvements * Added (({nil})) argument check. * (({GObjectIntrospection::Loader#rubyish_method_name})): Added (({:n_in_args_offset})) option. * Suppressed a needless copy of (({GLib::Bytes})). * Added filename array support. [GitHub#1151][Patch by cedlemo] * Fixes * Fixed a overflow bug on 32bit. [Debian#766020][Reported by Mario Lang] [GitHub#1137][Forwarded by HIGUCHI Daisuke] ==== Ruby/GTK2 * Fixes * Fix the wrong number of arguments. [GitHub#1133][Reported by Mamoru TASAKA] ==== Ruby/GDK3 * Improvements * Ensured loading GDK 3. [GitHub#1126][Patch by cedlemo] * Fixes * (({Gdk::Screen.default})): Fixed a GC related crash. * (({Gtk::Widget#style_context})): Fixed a GC related crash. [GitHub#1149][Reported by Valentin Pelloin] ==== Ruby/GTK3 * Improvements * Added a tool palette demo. [GitHub#1116][Patch by cedlemo] * Added a shortcut demo. [GitHub#1120][Patch by cedlemo] * Updated demo. [Reported by Titouan Teyssier] [GitHub#1139][Patch by Titouan Teyssier] * Updated README. [GitHub#1127][Patch by cedlemo] * Fixes * (({Gtk::Container#add_child(child)})): Made workable again. ==== Ruby/Poppler * Fixes * (({Poppler::Page#thumbnail_size})): Fixed return value. [GitHub:rcairo/rcairo#51][Reported by Mamoru TASAKA] ==== Ruby/Gnumeric * Improvements * Improved .typelib for Gnumeric detection. [GitHub#1118][Reported by cedlemo] === Thanks * cedlemo * Mamoru TASAKA * Titouan Teyssier * Mario Lang * HIGUCHI Daisuke * Andy Meneely * Valentin Pelloin
2018-04-11kf5: remove Makefile.common, replaced by meta-pkgs/kde/kf5.mkmarkd1-93/+0
2018-04-11kf5: update to 5.44.0markd1-3/+2
3 months of bugfixes.
2018-04-11meta-pkgs: add kdemarkd1-1/+2
2018-04-11kde: Makefile fragments to support kde packages.markd4-0/+126
2018-04-07kf5: Make sure any qt5-qtbase dependency is at least 5.10.1nb2markd1-4/+2
as that fixes the symbol visibility issues with qt5 packages so we can remove the BUILDLINK_TRANSFORM hack for it.
2018-03-14meta-pkgs: add and enable php72-extensionstaca1-1/+2
2018-03-14meta-pkgs/php72-extensions: add version 7.2.3 packagetaca2-0/+74
This package does not contain anything by itself -- it is a "meta-package" that depends on other PHP packages. Its sole purpose is to require dependencies so users can install this package only and have all the PHP stuff pulled in by the package dependency mechanism.
2018-03-12Recursive bumps for fontconfig and libzip dependency changes.wiz6-11/+12
2018-03-07xorgproto: use xorgproto instead of separate *proto packageswiz1-32/+3
Remove now obsolete packages.
2018-02-01kf5: add prisonmarkd2-4/+6
2018-01-31kf5: add qqc2-desktop-stylemarkd1-2/+5
2018-01-31kde4: Build with C++03, large parts are not C++11 clean.jperkin1-2/+2
2018-01-25boost: Fix threading with clang on SunOS.jperkin2-1/+17
2018-01-24kf5: strip -fvisibility=hidden in all kf5 packagesmarkd1-1/+4
as it breaks the plugin mechanism due to not being able to resolve various symbols
2018-01-23kde4: comment out okular as doesn't build with lack of poppler-qtmarkd1-3/+3
2018-01-22kf5: add kirigami2markd2-2/+5
2018-01-19kde4: fix kdelibs4 version.wiz1-3/+3
2018-01-18texlive-collection-latexextra: add tex-fvextra and tex-doclicensemarkd1-4/+4
2018-01-18texlive-collection-mathscience: add tex-mathpartirmarkd1-3/+3
2018-01-18texlive-collection-binextra: add tex-make4ht and tex-tex4ebookmarkd1-4/+4