summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-01-11Add hs-libyamlpho1-1/+2
2020-01-11doc: Added textproc/hs-libyaml version 0.1.1.1pho1-1/+2
2020-01-11Import libyaml-0.1.1.1pho4-0/+41
This package provides a haskell wrapper over the libyaml C library version 0.2.1 by Kirill Simonov.
2020-01-11Remove dependency on devel/hs-textpho4-24/+3
It's now part of GHC. Also contravariant, fail, and semigroups are no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-stmpho8-17/+8
It's now part of GHC.
2020-01-11Remove textproc/hs-parsecpho4-44/+0
Parsec is now part of GHC.
2020-01-11Remove hs-parsecpho1-2/+1
2020-01-11doc: Removed textproc/hs-parsecpho1-1/+2
2020-01-11Remove dependency on devel/hs-mtl and devel/hs-parsecpho2-6/+2
They are now part of GHC.
2020-01-11doc: Updated textproc/hs-texmath to 0.12pho1-1/+2
2020-01-11Update to texmath-0.12pho3-14/+12
* Use Text instead of String in data types and functions (Christian Despres) [API change]. Note that there are still a few places where we unpack Text to String with a view pattern: performance could likely be increased with further rewriting. * Avoid use of !! with negative index (jgm/pandoc#5853).
2020-01-11Remove dependency on devel/hs-parsecpho2-5/+2
It's now part of GHC.
2020-01-11doc: Updated textproc/hs-pandoc-types to 1.20pho1-1/+2
2020-01-11Update to pandoc-types-1.20pho4-28/+10
* Change all uses of String in type definitions to strict Text (Christian Despres) [API change]. The MetaValue instances using String have been kept, and parallel ones using Text were added. * Remove the Arbitrary Text orphan instance (Christian Despres). This instance should not have been in the Text.Pandoc.Arbitrary, since it would have been exported with the rest of the instances in that module. Instead, more shrink* functions were added to compensate for the absence of this instance. * Add Text.Pandoc.Legacy.Definition (Christian Despres). To ease the transition to Text, this module provides an interface compatible with the String one, so that any unqualified imports of Text.Pandoc.Definition in other packages can be replaced by Text.Pandoc.Legacy.Definition without other code changes. This is done with PatternSynonyms. Some of the constructors of the types Meta, MetaValue, Block, Inline, Format, and Citation required PatternSynonym handling. The Attr and Target types had to be redefined, and certain functions had to be rewritten to handle String or the old Attr and Target types in this module. This module otherwise exports the definitions in Text.Pandoc.Definition unchanged. This is not a perfect drop-in replacement, since some imports like Inline(..) will no longer work. This may also cause incomplete pattern warnings when used, since the coverage checker does not seem to be aware of PatternSynonyms. * Add Text.Pandoc.Legacy.Builder (Christian Despres). Like Text.Pandoc.Legacy.Definition, this modules provides a compatibility interface while the transition to Text takes place. Unlike that module, this module only requires redefining the ToMetaValue and HasMeta classes and a few functions so that they use the old types. No PatternSynonyms are required. * Change Semigroup/Monoid instance for Meta. Previously `<>` was left-biased, so if meta1 and meta2 both contained a field 'foo', the value from meta1 would be retained in `meta1 <> meta2`, and the value from meta2 ignored. This is counterintuitive and doesn't work well with pandoc; for example, we want to be able to override a value in an earlier `--metadata-file` with a later one on the command line. It also makes the behavior of metadata more like other things (such as reference links, where later definitions take precedence over earlier ones). Note that this change may break some current workflows, if one is relying on metadata fields that occur later in a document to be overridden by those occurring earlier.
2020-01-11Make the pdf-input extension buildable with gcc 8.3.martin4-5/+83
2020-01-11Remove dependency on devel/hs-textpho2-14/+4
It's now part of GHC. Also contravariant, fail, and semigroups are no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-textpho2-4/+2
It's now part of GHC.
2020-01-11lang/gcc9: enable nls on all platforms by defaultrillig2-9/+6
Having nls enabled on some platforms and not on others doesn't make sense since the code for doing that didn't provide any rationale. If some platforms don't support nls, it's better to blacklist them explicitly.
2020-01-11Remove dependency on devel/hs-textpho2-4/+2
It's now part of GHC. Also contravariant, fail, and semigroups are no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-textpho8-54/+9
It's now part of GHC. Also fail and semigroups are no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-failpho2-4/+2
It's no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-textpho2-5/+2
It's now part of GHC.
2020-01-11Remove dependency on devel/hs-mtl and devel/hs-textpho2-9/+2
They are now part of GHC. Also hs-fail is no longer required as of GHC 8.
2020-01-11Update to conduit-1.3.1.2pho3-24/+16
1.3.1.2 * More eagerly emit groups in chunksOf #427 1.3.1.1 * Use lower-case imports (better for cross-compilation) #408 1.3.1 * Add MonadFail instance for ConduitT. 1.3.0.3 * Improve fusion framework rewrite rules 1.3.0.2 * Replace ReadMode with WriteMode in withSinkFile 1.3.0.1 * Test suite compatibility with GHC 8.4.1 #358 1.3.0 * Drop monad-control and exceptions in favor of unliftio * Drop mmorph dependency * Deprecate old type synonyms and operators * Drop finalizers from the library entirely * Much simpler * Less guarantees about prompt finalization * No more yieldOr, addCleanup * Replace the Resumable types with SealedConduitT * Add the Conduit and Data.Conduit.Combinators modules, stolen from conduit-combinators
2020-01-11Remove dependency on deve/hs-stmpho2-5/+2
It's now part of GHC.
2020-01-11doc: Updated devel/hs-mono-traversable to 1.0.15.1pho1-1/+2
2020-01-11Update to mono-traversable-1.0.15.1pho3-14/+10
1.0.15.1 * Remove whitespace after @ in as-patterns for GHC HEAD #186 1.0.15.0 * Added toNonEmpty to Data.NonNull #185 1.0.14.0 * Added WrappedMono to Data.MonoTraversable #182 1.0.13.0 * Added WrappedPoly to Data.MonoTraversable #180 1.0.12.0 * Added filterSet to Data.Containers * Use container specific implementations for filterSet and filterMap #178 1.0.11.0 * Adding monomorphic instances for GHC.Generics and Data.Proxy types #175 1.0.10.0 * Make index work on negative indices #172 #114 1.0.9.0 * Added filterMap to Data.Containers #167
2020-01-11Fix build with GHC 8.8pho4-20/+16
2020-01-11doc: Updated comms/asterisk16 to 16.7.0ryoon1-1/+2
2020-01-11asterisk16: Update to 16.7.0ryoon5-33/+25
Changelog: 16.7.0 Security bugs fixed in this release: ----------------------------------- [ASTERISK-28589] - chan_sip: Depending on configuration an INVITE can alter Addr of a peer (Reported by Andrey V. T.) [ASTERISK-28580] - Bypass SYSTEM write permission in manager action allows system commands execution (Reported by Eliel Sardañons) Improvements made in this release: ----------------------------------- [ASTERISK-28602] - res_pjsip_outbound_registration: Maximum retries reached (Reported by Daniel) [ASTERISK-28586] - Typo in README-SERIOUSLY.bestpractices.md (Reported by Sam Banks) [ASTERISK-22192] - [patch] Allow voicemail forwards with ODBC backend when format differs from attachfmt column (Reported by cmaj) [ASTERISK-28567] - Problem with ASTERISK-20207: Asterisk should clear out any .lock files in the voice mail directory on startup. (Reported by Michael) [ASTERISK-28542] - [patch] add the ability for asterisk to generate on-hold re-invites (Reported by Torrey Searle) [ASTERISK-28512] - Add pass-through support for H.265 (HEVC) codec (Reported by Florian Floimair) Bugs fixed in this release: ----------------------------------- [ASTERISK-28609] - Memory Leak in res_rtp_asterisk.c (Reported by Ted G) [ASTERISK-28604] - app_meetme, chan_ooh323 and cdr_mysql don't build on 17.0.0 (Reported by George Joseph) [ASTERISK-28659] - res_pjsip_sdp_rtp: Bundle includes non-existent media stream if codecs create additional streams and offer does not have them (Reported by nappsoft) [ASTERISK-28641] - res_pjsip Segfaults when realtime configuration to an AOR points to a not existent AOR (Reported by Ross Beer) [ASTERISK-28644] - Stale comment in app_queue about ring_entry exception (Reported by Walter Doekes) [ASTERISK-28445] - res_pjsip_session: ast_json_vpack: Invalid UTF-8 string on hangup when TEST_FRAMEWORK enabled (Reported by Bernhard Schmidt) [ASTERISK-28637] - chan_sip+native_bridge_rtp: directmedia compatibility check failure when negociated ptime is not default ptime. (Reported by Frederic LE FOLL) [ASTERISK-28631] - res_parking: Doesn't park when parkee and parker are the same (Reported by Ross Beer) [ASTERISK-28621] - Enforce T.38 error correction mode at 200 ok received (Reported by Salah Ahmed) [ASTERISK-28624] - res_pjsip_outbound_registration: add SRV failover (Reported by Kevin Harwell) [ASTERISK-28608] - app_amd: Use time calculation to calculate timeout (Reported by Michael Cargile) [ASTERISK-28615] - chan_dahdi: PRI span status may stay "Down, Active" after a short alarm (Reported by Frederic LE FOLL) [ASTERISK-28576] - res_rtp_asterisk: ICE Completion Crash when sent packet length doesn't match (Reported by Joshua Elson) [ASTERISK-26481] - FILE function grabs garbage along with read data when target line has no newline (Reported by Jonathan Harris) [ASTERISK-28618] - bridge_softmix: hold not cleared when joining a softmix bridge (Reported by Kevin Harwell) [ASTERISK-28616] - parking: Deadlock when multi call parking (Reported by Joshua C. Colp) [ASTERISK-28423] - ARI causes STASIS Deadlock (Reported by Ross Beer) [ASTERISK-28572] - Memory leaks in res_calendar_exchange and res_calendar_icalendar (Reported by Yoooooo Ha) [ASTERISK-28585] - ari/resource_events: Crash in event session cleanup (Reported by Kevin Harwell) [ASTERISK-28590] - utils.c throws repeated warnings; "pthread_attr_setstacksize: Invalid argument" (Reported by Speed Dial Dave) [ASTERISK-28578] - race condition on pjsip channelstats command (Reported by Salah Ahmed) [ASTERISK-28571] - cdr_pgsql: accesses obsolete (and finally removed) column (Reported by Christoph Moench-Tegeder) [ASTERISK-28575] - MWI Send Notify Crash on 16.6 (Reported by Joshua Elson) [ASTERISK-28574] - pjproject fails to build on 16.6.0, works on 16.5 (Reported by Niklas Larsson) [ASTERISK-28561] - Asterisk Deadlocks (Reported by Aheliotech) [ASTERISK-28552] - res_pjsip_mwi: Frack during unload on unsolicited_mwi container (Reported by Kevin Harwell) [ASTERISK-28566] - CDR backend unload problem during active call(s) (Reported by Marian Piater) [ASTERISK-28553] - stasis.c: Crash during unload (Reported by Kevin Harwell) [ASTERISK-28086] - chan_pjsip: Crash when initiating PlayDTMF over AMI (Reported by Jeremiah Gadd) [ASTERISK-28544] - Wrong contact representation in ipv6 mode (Reported by Jørgen H) [ASTERISK-28534] - Segmentation fault when there is no priority for an extension (Reported by Timothy Vanderaerden) [ASTERISK-28463] - res_pjsip_path: Crash when invalid contact is configured (Reported by Juan Martin) [ASTERISK-28521] - pjsip: Memory Leak (Reported by Mark) [ASTERISK-28523] - Asterisk 16.5.0 Memory leak (Reported by Cyril Ramière) [ASTERISK-28538] - chan_pjsip: Deadlock on fax detection (Reported by Joshua C. Colp) [ASTERISK-28536] - Asterisk release candidates fail to build on FreeBSD (Reported by Guido Falsi) [ASTERISK-23756] - setvar directive when used in template and a child of said template, results in duplicate variable names (Reported by Michael Goryainov) New Features made in this release: ----------------------------------- [ASTERISK-28614] - app_senddtmf: Allow "receiving" DTMF with PlayDTMF instead of only "sending" (Reported by lvl) [ASTERISK-28613] - func_curl: CURLOPT cannot set Content-Type header (Reported by Martin Tomec) [ASTERISK-28553] - stasis.c: Crash during unload (Reported by Kevin Harwell) [ASTERISK-28086] - chan_pjsip: Crash when initiating PlayDTMF over AMI (Reported by Jeremiah Gadd) [ASTERISK-28544] - Wrong contact representation in ipv6 mode (Reported by Jørgen H) [ASTERISK-28534] - Segmentation fault when there is no priority for an extension (Reported by Timothy Vanderaerden) [ASTERISK-28463] - res_pjsip_path: Crash when invalid contact is configured (Reported by Juan Martin) [ASTERISK-28521] - pjsip: Memory Leak (Reported by Mark) [ASTERISK-28523] - Asterisk 16.5.0 Memory leak (Reported by Cyril Ramière) [ASTERISK-28538] - chan_pjsip: Deadlock on fax detection (Reported by Joshua C. Colp) [ASTERISK-28536] - Asterisk release candidates fail to build on FreeBSD (Reported by Guido Falsi) [ASTERISK-23756] - setvar directive when used in template and a child of said template, results in duplicate variable names (Reported by Michael Goryainov) New Features made in this release: ----------------------------------- [ASTERISK-28614] - app_senddtmf: Allow "receiving" DTMF with PlayDTMF instead of only "sending" (Reported by lvl) [ASTERISK-28613] - func_curl: CURLOPT cannot set Content-Type header (Reported by Martin Tomec) [ASTERISK-28533] - func_jitterbuffer: Add support for video synchronization (Reported by Joshua C. Colp) 16.6.0 Security bugs fixed in this release: ----------------------------------- [ASTERISK-28495] - res_pjsip_t38: 200 OK with SDP answer with declined stream causes crash (Reported by Alexei Gradinari) Bugs fixed in this release: ----------------------------------- [ASTERISK-28521] - pjsip: Memory Leak (Reported by Mark) [ASTERISK-28523] - Asterisk 16.5.0 Memory leak (Reported by Cyril Ramière) [ASTERISK-28538] - chan_pjsip: Deadlock on fax detection (Reported by Joshua C. Colp) [ASTERISK-28536] - Asterisk release candidates fail to build on FreeBSD (Reported by Guido Falsi) [ASTERISK-28511] - codec_resample: Bad sound quality when up sampling from SLIN16 to SLIN32 (Reported by Ruddy G) [ASTERISK-28525] - chan_dahdi: set CHANNEL(hangupsource) when a PRI channel hangs up (Reported by Frederic LE FOLL) [ASTERISK-28527] - ChanIsAvail() creates a CDR if unanswered=yes is set in cdr.conf (Reported by Frederic LE FOLL) [ASTERISK-28499] - translate: Crash when frame does not have a "src" field set (Reported by Gregory Massel) [ASTERISK-25592] - chan_unistim: Clang Warning: variable sized type not at end of a struct (Reported by Alexander Traud) [ASTERISK-28488] - pjsip mwi: n+1 sip notify's sent on re-register (Reported by Chris Savinovich) [ASTERISK-28509] - PJSIP cnonce generated on Linux contains 36 characters, NEC only supports up to 32 characters (Reported by Dan Cropp) [ASTERISK-28505] - app_voicemail/IMAP: segfault in leave_voicemail because not checking mailstream (Reported by Alexei Gradinari) [ASTERISK-28487] - compile menuselect on gentoo (Reported by Kilburn) [ASTERISK-28472] - Asterisk occasionally passes a NULL as srtp->session to srtp_protect/unprotect causing SEGV (Reported by Jonas Swiatek) [ASTERISK-28498] - cel / cdr: Event times may be incorrect (Reported by Joshua C. Colp) [ASTERISK-28480] - json integer overflow in ssrc and timestamp (Reported by Salah Ahmed) [ASTERISK-28228] - res_pjsip: pjsip show contacts prints double entries (Reported by Ian Jones) [ASTERISK-28483] - packet lost on UDPTL wrap around (Reported by Torrey Searle) [ASTERISK-28477] - Crash when not specifying "dbfile" in res_config_sqlite3.conf (Reported by Dennis) [ASTERISK-28478] - Crash performing "core reload" with modified res_config_sqlite3.conf (Reported by Dennis) [ASTERISK-26968] - chan_pjsip: Transfer() does not result in TRANSFERSTATUS reflecting SIP response to transfer (Reported by Dan Cropp) [ASTERISK-28282] - AST_SCHED_REPLACE_UNREF causes wait-on-self deadlocks (in chan_sip) (Reported by Walter Doekes) New Features made in this release: ----------------------------------- [ASTERISK-17808] - [patch] Unregister a realtime moh class (Reported by Byron Clark) [ASTERISK-28489] - Channel variable SIPFROMDOMAIN for chan_pjsip to setup From header URI domain (Reported by Stas Kobzar)
2020-01-11Remove dependency on devel/hs-mtlpho2-7/+3
mtl is now a part of GHC. Also hs-semigroups is no longer required as of GHC 8.
2020-01-11doc: Updated multimedia/deforaos-player to 0.2.0khorben1-1/+2
2020-01-11deforaos-player: update to 0.2.0khorben3-15/+18
Changes since 0.1.6: - Defaults to Gtk+ 3 (like libDesktop) - Defaults to mpv(1) as the video backend - Updated translations - Updated the documentation - Extended the Player API - Added support for reading DVDs
2020-01-11doc: Updated devel/hs-resourcet to 1.2.2pho1-1/+2
2020-01-11Update to resourcet-1.2.2pho4-38/+12
1.2.2 * Add MonadFail instance for ResourceT. 1.2.1 * Support exceptions-0.10. 1.2.0 * Drop monad-control and mmorph dependencies * Change behavior of runResourceT to match runResourceTChecked
2020-01-11Remove dependency on devel/hs-mtlpho2-4/+2
mtl is now a part of GHC.
2020-01-11doc: Updated devel/hs-hint to 0.9.0.2pho1-1/+2
2020-01-11Add missing dependency on sysutils/hs-temporarypho3-7/+9
2020-01-11Update to hint-0.9.0.2pho2-7/+5
0.9.0.2 * Support GHC 8.8 * Drop support for GHC 8.2 0.9.0.1 * Make tests pass with stack 2.1.1 0.9.0 * Support GHC 8.6 * Drop support for GHC 8.0 0.8.0 * Support GHC 8.4 * Drop support for GHC 7.8 and 7.10 * Add runStmt to execute statements in the IO monad and bind new names * Internal changes of temporary files for phantom modules * The files are now called M<nnn>.hs instead of <nnn> * Improved cleanup of phantom module source files * ghc 8.4 only: phantom modules are put into a temporary directory * Add typeChecksWithDetails to obtain type-checking errors * Stop GHC from overwriting the Ctrl-C signal handler * Add SetImportsF to allow finer imports control
2020-01-11Remove dependency on devel/hs-mtlpho8-17/+23
mtl is now a part of GHC. Also hs-fail is no longer required as of GHC 8.
2020-01-11Remove dependency on devel/hs-mtlpho4-13/+11
mtl is now a part of GHC.
2020-01-11Switch from ghc7 to ghc88pho1-2/+2
2020-01-11doc: Updated editors/deforaos-editor to 0.4.1khorben1-1/+2
2020-01-11deforaos-editor: update to 0.4.1khorben2-10/+9
Changes since 0.4.0: - Defaults to Gtk+ 3 (like libDesktop) - Updated translations
2020-01-11Added devel/R-RUnit version 0.4.32mef2-4/+4
2020-01-11devel/R-RUnit: import R-RUnit-0.4.32mef4-0/+45
# RUnit Runit is a testing package for R code, inspired by the xUnit family of testing tools. Originally implemented by Thomas Koenig, Klaus Juenemann, and Matthias Burger, this package has served the R community for over a decade. Since RUnit is no longer actively developed, I provide maintenance of this package mostly to support older projects that still rely on RUnit. # Using RUnit To make RUnit work with `R CMD check`, create a following file in the `tests` subdirectory. This would run the actual tests stored in the packages `inst/tests` subdirectory.
2020-01-11(devel/R-Runit) Name should be R-RUnit, deleting now, sorrymef4-45/+0
2020-01-11Added devel/R-Runit version 0.4.32mef2-2/+4
2020-01-11devel/R-Runit: import R-RUnit-0.4.32mef4-0/+45
# RUnit Runit is a testing package for R code, inspired by the xUnit family of testing tools. Originally implemented by Thomas Koenig, Klaus Juenemann, and Matthias Burger, this package has served the R community for over a decade. Since RUnit is no longer actively developed, I provide maintenance of this package mostly to support older projects that still rely on RUnit. # Using RUnit To make RUnit work with `R CMD check`, create a following file in the `tests` subdirectory. This would run the actual tests stored in the packages `inst/tests` subdirectory.
2020-01-11doc: Updated devel/dejagnu to 1.6.2mef1-1/+2