Commit graph

289142 commits

Author SHA1 Message Date
ryoon
cecca4e47e textproc/go-diff: import go-go-diff-1.0.0
go-diff offers algorithms to perform operations required for synchronizing
plain text:

    Compare two texts and return their differences.
    Perform fuzzy matching of text.
    Apply patches onto text.
2018-11-18 08:24:23 +00:00
ryoon
26780ef9b2 Enable go-chroma 2018-11-18 08:23:32 +00:00
ryoon
02c42b0e97 Added textproc/go-chroma version 0.5.0 2018-11-18 08:22:50 +00:00
ryoon
516c8b48c5 textproc/go-chroma: import go-chroma-0.5.0
Chroma - A general purpose syntax highlighter in pure Go Build
Status Gitter chat

Chroma takes source code and other structured text and converts it
into syntax highlighted HTML, ANSI-coloured text, etc.

Chroma is based heavily on Pygments, and includes translators for
Pygments lexers and styles.
2018-11-18 08:22:23 +00:00
ryoon
c6395f426c Enable go-locker 2018-11-18 08:18:59 +00:00
ryoon
88f9098d2d Added devel/go-locker version 0.0.0.20171007 2018-11-18 08:17:56 +00:00
ryoon
e4ad6646b6 devel/go-locker: import go-locker-0.0.0.20171007
A simple Golang package for conveniently using named read/write
locks. Useful for synchronizing access to session based storage in
web applications.
2018-11-18 08:17:22 +00:00
ryoon
eb09521ab0 Updated devel/go-jwalterweatherman to 20181028 2018-11-18 08:11:44 +00:00
ryoon
0537608e02 Update to 20181028
Changelog:
Some new logging features
Bugfixes
2018-11-18 08:11:07 +00:00
ryoon
9ac1c2b8bd Enable go-mapstructure-bep 2018-11-18 08:07:44 +00:00
ryoon
9d187be00c Added devel/go-mapstructure-bep version 0.0.20180511 2018-11-18 08:06:51 +00:00
ryoon
57befe949d devel/go-mapstructure-bep: import go-mapstructure-bep-0.0.20180511
mapstructure is a Go library for decoding generic map values to structures and
vice versa, while providing helpful error handling.

This library is most useful when decoding values from some data stream (JSON,
Gob, etc.) where you don't quite know the structure of the underlying data
until you read a part of it. You can therefore read a map[string]interface{}
and use this library to decode it into the proper underlying native Go
structure.
2018-11-18 08:06:21 +00:00
ryoon
a5bbe019d1 Enable go-hashstructure 2018-11-18 08:03:20 +00:00
ryoon
1ca3629717 Added devel/go-hashstructure version 1.0.0 2018-11-18 08:02:38 +00:00
ryoon
988fd1c73c devel/go-hashstructure: import go-hashstructure-1.0.0
hashstructure is a Go library for creating a unique hash value for
arbitrary values in Go.

This can be used to key values in a hash (for use in a map, set,
etc.) that are complex. The most common use case is comparing two
values without sending data across the network, caching values
locally (de-dup), and so on.
2018-11-18 08:02:08 +00:00
ryoon
bc00d13be7 Enable go-try 2018-11-18 08:00:40 +00:00
ryoon
0e038aedc6 Added devel/go-try version 1.0.0.0 2018-11-18 07:59:59 +00:00
ryoon
5137331d04 devel/go-try: import go-try-1.0.0.0
Idiomatic Go retry package.
2018-11-18 07:59:34 +00:00
ryoon
76a17c783f Enable go-repr 2018-11-18 07:58:35 +00:00
ryoon
18e8a8f66f Added devel/go-repr version 0.0.0.20180921 2018-11-18 07:57:54 +00:00
ryoon
4efa19120b devel/go-repr: import go-repr-0.0.0.20180921
This package attempts to represent Go values in a form that can be
used almost directly in Go source code.

Unfortunately, some values (such as pointers to basic types) can
not be represented directly in Go. These values will be represented
as &<value>. eg. &23
2018-11-18 07:57:34 +00:00
ryoon
63b7e06e5b Enable go-kingpin.v3-unstable 2018-11-18 07:56:35 +00:00
ryoon
513fe3e90d Added devel/go-kingpin.v3-unstable version 3.0.0.0.20100811 2018-11-18 07:55:24 +00:00
ryoon
d68dd43444 devel/go-kingpin.v3-unstable: import go-kingpin.v3-unstable-3.0.0.0.20100811
Kingpin is a fluent-style, type-safe command-line parser. It supports
flags, nested commands, and positional arguments.

This package is based on unstable v3 branch.
2018-11-18 07:54:48 +00:00
ryoon
7b3f414eaf Enable go-humanize 2018-11-18 07:52:56 +00:00
ryoon
1855dde269 Added devel/go-humanize version 1.0.0 2018-11-18 07:52:14 +00:00
ryoon
81a708ffa6 devel/go-humanize: import go-humanize-1.0.0
Just a few functions for helping humanize times and sizes.
2018-11-18 07:51:51 +00:00
ryoon
672dfece9c Enable go-colour 2018-11-18 07:50:40 +00:00
ryoon
e57acf7d81 Added devel/go-colour version 0.0.0.20160524 2018-11-18 07:49:53 +00:00
ryoon
c046b0231b devel/go-colour: import go-colour-0.0.0.20160524
Package colour provides Quake-style colour formatting for Unix
terminals.

The package level functions can be used to write to stdout (or
strings or other files). If stdout is not a terminal, colour
formatting will be stripped.
2018-11-18 07:49:26 +00:00
ryoon
c21b673506 Enable go-assert 2018-11-18 07:47:55 +00:00
ryoon
3a086de4a3 Added devel/go-assert version 0.0.0.20170929 2018-11-18 07:47:11 +00:00
ryoon
d9c65a5ee5 devel/go-assert: import go-assert-0.0.0.20170929
Go assertion library (fork of stretchr/testify/require)

This is a fork of stretchr's assertion library that does two things:

    It makes spotting differences in equality much easier. It uses
    repr and diffmatchpatch to display structural differences in
    colour.

    Aborts tests on first assertion failure (the same behaviour as
    stretchr/testify/require).
2018-11-18 07:46:43 +00:00
ryoon
66660e9aef Updated devel/go-purell to 1.1.0 2018-11-18 07:43:09 +00:00
ryoon
64f9d83b89 Update to 1.1.0
Changelog:
2016-11-14 (v1.1.0) : IDN: Conform to RFC 5895: Fold character width
                      (thanks to @beeker1121).
2016-07-27 (v1.0.0) : Normalize IDN to ASCII (thanks to @zenovich).
2015-02-08 : Add fix for relative paths issue (PR #5) and add fix for
             unnecessary encoding of reserved characters (see issue #7).
v0.2.0 : Add benchmarks, Attempt IDN support.
2018-11-18 07:42:38 +00:00
ryoon
20dcf2a70c Add go-urlesc 2018-11-18 07:38:12 +00:00
ryoon
af5897c34c Added www/go-urlesc version 0.0.0.20170810 2018-11-18 07:37:24 +00:00
ryoon
f52a2e10cc www/go-urlesc: import go-urlesc-0.0.0.20170810
Package urlesc implements query escaping as per RFC 3986.

It contains some parts of the net/url package, modified so as to
allow some reserved characters incorrectly escaped by net/url.
2018-11-18 07:36:50 +00:00
ryoon
3db3a218a4 Updated devel/go-errors to 0.8.0 2018-11-18 07:30:18 +00:00
ryoon
40de764811 Update to 0.8.0
Changelog:
0.8.0:
What's new since version 0.7.1

errors 0.8.0 decomposes Wrap (and Wrapf) into their component operations, namely adding a message to an error, and adding a stack trace to an error, which were previously merged into a single operation.

This is accomplished by adding two top level functions, errors.WithMessage and errors.WithStack, and rewriting Wrap and Wrapf in terms of these operations.

The motivation for this change was need to treat each of the following operations as distinct:

    Adding a context message to an existing error without altering the stack trace.
    Adding a stack trace to an existing error without the requirement of adding an additional message.
    Retrieving the immediate cause of an error; popping one element of the error stack.

The addition of WithStack and WithMessage increases the surface area of this package by two methods, after long discussions at GopherCon 2016 it was felt strongly that destructuring the operation of Wrap and Wrapf was necessary.

For the moment Wrap and Wrapf remain, but depending on your feedback may be deprecated in future releases. Please leave comments via the issue link.

Thanks to @nmiyake and @fabstu for their assistance in preparing this release.
Bug fixes

    Add Go 1.7.1 to .travis.yml. Thanks @Thomasdezeeuw

0.7.1:
What's new since version 0.7.0

0.7.1 is a minor release in the 0.7 series which contains bugfixes, documentation improvements and cleanups and some internal refactoring.
Improvements

    Rename StackTrace interface to stacktracer in docs and examples.
    Capitalise first letter of trace in examples. Thanks @jongillham
    Wrapped errors now print full stacktrace.
    Documentation improvements, #69. Thanks @AlekSi
    Added benchmarks comparing stack trace performance. Fixes #72. Thanks @kardianos

Bug fixes

    Fix %q format for wrapped errors. Thanks @greensnark
    Remove trailing newline from LICENSE file. Thanks @vbatts
    Tests now pass when pkg/errors is vendored. Fixes #77. Thanks @exp
    Fix the %q format for errors so it puts "" around the output (caused by a bug introduced between 0.7.0 and 0.7.1). Thanks @ncw

0.7.0:
What's new since version 0.6.0

0.7.0 removes the deprecated errors.Location and errors.Stack interfaces, and the errors.Fprint helper. Types returned from this package now implement the fmt.Formatter interface and can print themselves when passed to fmt.Printf and friends.

For example:

    fmt.Printf("%s\n", err) will print the message of the error as per normal, recursive if the underlying error has a Cause method.
    fmt.Printf(%v\n", err) operates the same as %s.
    fmt.Printf(%+v\n", err) prints the error message as above, then prints a stack trace of the point that the error was created with errors.New, errors.Errorf, etc.

This new behaviour is described in this blog post.

Other changes in 0.7.0 include:

    The Stacktrace() []Frame interface method was renamed to StackTrace() StackTrace. Please note the change in capitalisation. The previous interface was added in 0.6.0 so hopefully this change will not cause to many breaking changes. The name and signature of the method is not expected to change again in the future. Fixes #50.

Bug fixes

    README.md incorrectly reported the licence of this package as MIT, not BSD 2 clause, this has been rectified. Thanks @anthonyfok. Fixes #41.
2018-11-18 07:29:52 +00:00
ryoon
08f8226c23 Updated devel/go-amber to 0.0.20171010 2018-11-18 07:22:08 +00:00
ryoon
3982c1436a Update to 0.0.20171010
Changelog:
Bugfixes
2018-11-18 07:21:36 +00:00
ryoon
ac80820daf Include xpi.mk from firefox52 directory
www/seamonkey is based on gecko 52.
2018-11-18 07:16:48 +00:00
ryoon
b9baf88434 Updated misc/libreoffice to 6.1.3.2 2018-11-18 07:12:14 +00:00
ryoon
e893432d73 Update to 6.1.3.2
* Use hardbuzz-2.1.1 as internal library

Changelog:
Bugs fixed compared to 6.1.3 (rc1):

    tdf#69460 Copy/Paste of a column in Calc file followed by Cmd-Q causes soffice process to consume all resources [Tor Lillqvist]
    tdf#73081 COUNTIF with criterium <>number does not count empty cells. [Eike Rathke]
    tdf#115182 FILEOPEN XLSX Pie chart default percentage format does not match Excels [Eike Rathke]
    tdf#118416 SEGV when Calc exits when it tries to export an image of a whole column on the system clipboard [Tor Lillqvist]
    tdf#118690 Printing does not start if Comments to Margin is set [Jan-Marek Glogowski]
    tdf#118730 Label in report builder doesn't have text [Armin Le Grand]
    tdf#118963 Crash when dragging column from datasource to spreadsheet [Armin Le Grand]
    tdf#119067 REPORTBUILDER: Report label display string lost when saved and the actual string 'LABEL' used when the report is run next. [Armin Le Grand]
    tdf#120003 FILEOPEN: DOC: the first letter of a link URL to a picture get missing [Caolán McNamara]
    tdf#120031 REGRESSION: LibO 6.1 format->character dialog overrides font size to two making chars unreadable [Caolán McNamara]
    tdf#120158 Impossible to paste special in Writer from Calc in Libreoffice 6.1.x in some UI languages - the dialogue caption says "unknown source" [Stephan Bergmann]
    tdf#120376 Draw/Impress: Styles duplicated when copying slides [Michael Stahl]
    tdf#120387 EDITING Copy Chart Axis Title causes LibreOffice Calc crash [Jan-Marek Glogowski]
    tdf#120478 JDBC driver test could not be loaded - wrong icon [Julien Nabet]
    tdf#120487 Delete all comments leaves a comment box behind (and will end in a crash) ( not gtk3 ) [Caolán McNamara]
    tdf#120674 LibO crashes each time I try to add an object (button, check box, etc.) in a Dialog form [Armin Le Grand]
    tdf#120795 LO Writer: Error saving the document: Write error The file could not be written [Julien Nabet]
    tdf#120158 base CMimeContentType on INetMIME::scanContentType [Stephan Bergmann]


Bugs fixed compared to 6.1.2 (rc1):

    ofz#10523 guard aginst 0 pF->nLCode [Caolán McNamara]
    ofz#10526 check with dynamic_cast its really a EMFPStringFormat [Caolán McNamara]
    tdf#69977 freeze/crash when creating a diagram from many thousand cells [Eike Rathke]
    tdf#90376 Dragging toolbar doesn't clean up after itself [Jan-Marek Glogowski]
    tdf#93372 Format of a table is ignored - character only shown in standard-high [Caolán McNamara]
    tdf#100941 LibreLogo: "magic wand" icon inserts incollect '\n' characters instead of paragraph breaks [László Németh]
    tdf#105444 Extra blank lines inserted at end of Comments in DOCX on save when text added in document before comment (steps in Comment 8) [László Németh]
    tdf#106340 Buttons overlap other buttons when assigning Format options in Find & Replace dialog [Caolán McNamara]
    tdf#108402 Avoid crash if filter doesn't match (soffice --convert-to "html:XHTML Writer File UTF8" file.ods) [Julien Nabet]
    tdf#111306 EDITING: The master slide loses the background when changing page format of orientation using the sidebar [Xisco Fauli]
    tdf#113408 FILEOPEN: RTF - Indentation of image not retained [Miklos Vajna]
    tdf#115093 FORMATTING: Copying date formats in cells changes date for all cells in column [Dennis Francis]
    tdf#115262 Image object cumulative placement error affecting Print Preview and PDF export in .ods with irregular row height [Miklos Vajna]
    tdf#115405 Failure to launch Libreoffice 6 after installation [Mike Kaganski]
    tdf#115574 Doesn't work simple pasting spreadsheet from Excel 2010 in to document Writer [Miklos Vajna]
    tdf#116085 Cannot start Certificate Manager with GPG4win v3 [Cor Nouws]
    tdf#118139 FILEOPEN: Incorrect height of textboxes [Armin Le Grand]
    tdf#118199 Draw/Impress crashes upon pasting a table from Writer (not on Windows) [Armin Le Grand]
    tdf#118498 Extrusion of shapes fails [Armin Le Grand]
    tdf#118764 Broken tab key navigation in Properties and Navigator decks [Jim Raykowski]
    tdf#118784 Place holder image when copy/pasting from the web using Safari [Miklos Vajna]
    tdf#119238 Documents opened from desktop are not later saved to the same spot on desktop [Mike Kaganski]
    tdf#119302 Wrong rendering of math formulas with scalable brackets in Writer [Jan-Marek Glogowski]
    tdf#119305 Chart created from fully selected sheet only targets header row [Eike Rathke]
    tdf#119340 Poor loading and scrolling perfs since LO6.1 [Jan-Marek Glogowski]
    tdf#119569 Open Sub-Form causes PostgreSQL error [Lionel Elie Mamane]
    tdf#119599 LibreOffice Writer later versions, 6.1, 6.0, 5.4.7.2 do not handle editing of styles of an imported rtf file. Version 5.4.3.2 allowed me to modify the styles correctly. [Miklos Vajna]
    tdf#119624 LibreOffice quit confirmation dialog shows cancel icon below label [Caolán McNamara]
    tdf#119743 Libreoffice 6.1 base: can't save special options [Julien Nabet]
    tdf#119770 the LibreOffice crashed when i insert a Chart in a table (gtk3) [Caolán McNamara]
    tdf#119814 gtk3_kde5: filepicker causes more "UI freeze" [Michael Weghorn]
    tdf#119904 Spreadsheet formula corrupt with 6.1.1.2 [Dennis Francis]
    tdf#119910 Trying to install. Message states api-ms-win-crt-string-l1-1-0.dll is missing [Mike Kaganski]
    tdf#119922 calc crashes on opening this specific file [Markus Mohrhard]
    tdf#119954 Using a second defined database range in formula expression switches to first range. [Eike Rathke]
    tdf#120015 Crash in: chart::EquidistantTickIter::initIter(long) [Markus Mohrhard]
    tdf#120028 PPTX import: shape text with multiple columns is unreadable [Miklos Vajna]
    tdf#120055 Can't change the tab on Line Dialog with keyboard [Caolán McNamara]
    tdf#120057 On Protect Sheet dialog can not access list item using keyboard only [Xisco Fauli]
    tdf#120069 Crash in: libmergedlo.so attempting to set a page background to 'Color' from 'None' [Xisco Fauli]
    tdf#120175 Breeze Dark icon theme is not detected as the preferred theme [Caolán McNamara]
    tdf#120245 LibreOffice forms refuses to insert empty field with 'not null' database constraint (but filled by trigger or default value) [Julien Nabet]
    tdf#120249 CLI: cannot use a path with trailing backslash on Windows [Mike Kaganski]
    tdf#120271 Disabling "Get involved" infobar in enterprise installs [Mike Kaganski]
    tdf#120301 xml parser preserves whitespace in pretty-formatted vmlDrawing1.vml [Justin Luth]
    tdf#120318 branch crashes in bibliography database -> Data -> autofilter [Julien Nabet]
    tdf#120370 Cannot apply transparency gradient [Caolán McNamara]
    tdf#120422 LibreLogo: format program lines as paragraphs by magic wand to fix 2-page editing environment with page breaking before the program, and fix debug functionality "jump to the bad line" [László Németh]
2018-11-18 07:11:40 +00:00
ryoon
2e548a7da0 Updated lang/rust to 1.30.1 2018-11-18 07:03:32 +00:00
ryoon
aa76975884 Update to 1.30.1
Changelog:
Version 1.30.1 (2018-11-08)

    Fixed overflow ICE in rustdoc
    Cap Cargo progress bar width at 60 in MSYS terminals
2018-11-18 07:03:01 +00:00
bsiegert
517af53db6 qdirstat-1.5 2018-11-17 20:03:15 +00:00
bsiegert
bf794d8e82 Update qdirstat to 1.5.
1.5
- (Optional) breadcrumbs navigation
- (Optional) a new "details" panel for the currently selected item
- (Optional) new tree columns: owner, group, permissions both in "rwxrwxrwx"
  and in octal format
- Package manager support for the major Linux package managers (dpkg / rpm /
  pacman) to see what package a system file belongs to.
- Quick-switchable different layouts for the main window
- A new "General" page in the configuration dialog
- Show in the window title if the program runs with root permissions (sudo
  etc.)
- (Optional) show the URL in the window title
- Some bug fixes


1.4
-   File size statistics window with histogram
-   Filling the gaps in the treemap (directories with lots of small files)
-   Checked code with Coverity and fixed all issues it pointed out
-   Improved support for file and directory names with UTF-8 special characters
    (Qt 4 only issue)
-   Improved support for directories that have read, but not execute permissions

1.3
-    File type statistics window
-    Locate files per directory by file type
-    Display path and size of the current item in the status line while
     hovering over a treemap tile
-    Optional alternate layout of the main window: Tree view and treemap side
     by side
-    Improved logging: More secure and rotating logs
-    New document: QDirStat for Headless Servers for server admins
-    New document: The GitHub Workflow for developers

1.2
-    Btrfs improvements

1.1
-    This is mostly a bug fix release with some small features thrown in.
2018-11-17 20:02:41 +00:00
maya
f59d2e3947 doc: Updated www/firefox-l10n to 63.0.3 2018-11-16 23:40:33 +00:00