Commit graph

7410 commits

Author SHA1 Message Date
taca
857894f275 misc/Makefile: delete ruby-mimemagic 2021-06-03 14:54:17 +00:00
taca
a40d1b4222 misc/ruby-bundler: update to 2.2.19
2.2.19 (May 31, 2021)

Bug fixes:

* Restore support for configuration keys with dashes #4582
* Fix some cached gems being unintentionally ignored when using rubygems
  3.2.18 #4623
2021-06-03 14:50:55 +00:00
wiz
9f50982921 *: recursive PKGREVISION bump for sneaky gsl shared library version number change 2021-06-01 09:12:22 +00:00
taca
3b191edc62 misc/ruby-bundler: update to 2.2.18
2.2.18 (May 25, 2021)

Security fixes:

* Fix dependency confusion issues with implicit dependencies #4609

Enhancements:
* Use simpler notation for generated required_ruby_version #4598
* Undeprecate bundle show #4586
* Make sure link to new issue uses the proper template #4592

Bug fixes:
* Fix platform specific gems being removed from the lockfile #4580
2021-05-30 11:08:38 +00:00
taca
e1eee35b10 misc/ruby-slop: update to 4.9.1
4.9.1 (2021-05-28)

Bug fixes:

* Fixed a bug where flag=arg syntax would raise an error when an empty value
  was passed. #266
2021-05-30 09:55:25 +00:00
taca
a5bc64c7df misc/ruby-bundler1: remove ruby-bundler1
Remove ruby-bundler1 package.  No package refers it any more.
2021-05-30 09:47:16 +00:00
taca
ab82dd60a1 misc/Makefile: remove ruby-bundler1 2021-05-30 09:45:51 +00:00
wiz
6eae1297d5 *: recursive bump for perl 5.34 2021-05-24 19:49:01 +00:00
ryoon
84c2fd29c6 libreoffice: Do not hardcode MySQL dependency
Bump PKGREVISION.
2021-05-24 14:14:15 +00:00
wiz
7e0f6b0727 todoman: update to 4.0.0.
v4.0.0
------

Breaking changes in the configuration format
********************************************

The configuration format is changing with release 4.0.0. We currently depend on
an unmaintained library for configuration. It's not currently in a working
state, and while some distributions are patching it, setting up a clean
environment is a bit non-trivial, and the situation will only degrade in future.

The changes in format are be subtle, and also come with an intention to add
further extensibility in future. Configuration files will be plain python. If
you don't know Python don't worry, you don't _need_ to know Python.

I'll take my own config as a reference. The pre-4.0.0 format is:

```dosini
[main]
path = ~/.local/share/calendars/*
time_format = '%H:%M'
default_list = todo
humanize = true
startable = true
```

The 4.0.0 version would look like this:

```python
path = "~/.local/share/calendars/*"
time_format = "%H:%M"
default_list = "todo"
humanize = True
startable = True
```

Key differences:

- The `[main]` header is no longer needed.
- All strings must be quoted (this was previously optional).
- True and False start with uppercase.
- Using `yes` or `on` is no longer valid; only `True` and `False` are valid.

That's basically it. This lets up drop the problematic dependency, and we don't
actually need anything to read the config: it's just python code like the rest
of `todoman`!

For those users who _are_ python developers, you'll note this gives some
interesting flexibility: you CAN add any custom python code into the config
file. For example, you can defined the `path` programatically:

```python
def get_path() -> str:
    ...


path = get_path
```

Dropped support
***************

* Dropped support older Python versions. Only 3.8 and 3.9 are now supported.

Minor changes
*************

* Added support for python 3.9.
* The dependency `configobj` is no longer required.
* Click 8.0 is now supported.
* Fix crash when ``default_command`` has arguments.
2021-05-23 11:08:39 +00:00
triaxx
f931f1e13c erlang-p1_utils: Update to 1.0.22
upstream changes:
-----------------
Version 1.0.22
  o Update copyright year to 2021
  o Unit tests + plugin in release workflow
  o Support Docker + VScode development
2021-05-20 20:42:12 +00:00
wiz
c7403f4cc9 *: recursive bump for poppler shlib major bump 2021-05-20 11:55:55 +00:00
pin
3e1fbc260f Add deckster 2021-05-17 07:48:27 +00:00
pin
adff7e6652 misc/deckster: import package
TUI to study flashcards in the terminal.

Spaced repetition in the terminal. Inspired by Anki and uses a modified SM2
algorithm.

Cards should be saved in TOML format.
2021-05-17 07:47:42 +00:00
nia
7c1da800fb fd: honor CFLAGS/LDFLAGS 2021-05-14 13:26:27 +00:00
nia
274851088c iwatch: needs wide curses 2021-05-14 13:23:22 +00:00
taca
41a99fa04d misc/ruby-ohai: update to 16.13.0
16.13.0 (2021-04-07)

Merged Pull Requests

* Create os_release plugin for parsing data from /etc/os-release #1646
  (ramereth)
2021-05-09 14:56:01 +00:00
bsiegert
c13a431938 Remove net/go-grpc, misc/go-genproto and misc/go-genproto-googleapis-rpc
The latter two were only useful to support the go-grpc and go-tools builds.
go-grpc has no useful binaries (the CLI is in net/grpc), it only consists
of libraries that are now unused. No replacements.
2021-05-09 08:54:07 +00:00
taca
b825aebe45 misc/ruby-daemons: update to 1.4.0
pkgsrc change: add "USE_LANGUAGES=	# none".


1.4.0 (2021-05-01)

* Allow for customization which signals are sent to stop process (thanks to
  philister)
* Resolves mismatched indentations (thanks to Luis M Rodriguez)
* Allow to use pry-byebug 3.8.0 (thanks to kamipo)
2021-05-09 04:29:57 +00:00
taca
efb032e011 misc/ruby-bundler: update to 2.2.17
2.2.17 (2021-05-05)

Enhancements:

* Improve authentication required error message to include an alternative
  using ENV #4565
* Discard partial range responses without etag #4563
* Fix configuring ENV for a gem server with a name including dashes #4571
* Redact credentials from bundle env and bundle config #4566
* Redact all sources in verbose mode #4564
* Improve bundle pristine error if BUNDLE_GEMFILE does not exist #4536
* [CurrentRuby] Add 3.0 as a known minor #4535
* Prefer File.read instead of IO.read #4530
* Add space after open curly bracket in Gemfile and gems.rb template #4518

Bug fixes:

* Make sure specs are fetched from the right source when materializing #4562
* Fix bundle cache with an up-to-date lockfile and specs not already
  installed #4554
* Ignore deployment setting in inline mode #4523

Performance:

* Don't materialize resolutions when not necessary #4556
2021-05-09 04:24:41 +00:00
bsiegert
2af0bedf36 Revbump all Go packages after go116 update 2021-05-08 15:02:22 +00:00
ryoon
893f376558 libreoffice: Update to 7.1.3.2
* Back to TLS backend to NSS from OpenSSL.
  NSS's symbol problem was fixed.

Changelog:
7.1.3.2
Bugs fixed compared to 7.1.3 rc1:

 1. i#123539 CRASH when open particular .XLS with 3D Chart [Xisco Fauli]
 2. tdf#86321 EDITING, FORMATTING: diagram didn't automatic update when change
    variable (steps in comment 28) [Xisco Fauli]
 3. tdf#132472 FILEOPEN PPTX Table text imported with white color [Xisco Fauli]
 4. tdf#132901 Tools > Options > LibreOffice > Online update crashes if "online
    update" feature is not installed [Xisco Fauli]
 5. tdf#137470 Fix temporary URL in additionsdialog [Christian Lohmaier]
 6. tdf#138785 Empty frames after deleting an image and (auto-saving the file)
    (track changes involved) [Michael Stahl]
 7. tdf#141244 Controls in Modify DDE Link dialog missing [Aron Budea]
 8. tdf#141419 UI: Missing Backcolor in Preview of conditional format dialog
    [Caol??n McNamara]
 9. tdf#141703 EDITING Tab key no longer moves to next cell in Impress table
    [Samuel Mehrbrodt]
10. tdf#141715 incorrect horizontal scaling of glyphs in sm formula nodes
    [Lubo? Lu????k]
11. tdf#141770 Cancel/Ok buttons don't work in Modify DDE Link dialog (gen)
    [Caol??n McNamara]
12. tdf#141887 Crash on closing Writer via window decoration (X) with
    unmodified document and active IM [Jan-Marek Glogowski]
13. tdf#141902 translations into Dutch are still shown in English [Julien
    Nabet]
14. tdf#141914 document with chart set as modified (follow-up bug 31231) [Mike
    Kaganski]
15. tdf#141924 A specific file crashes with Style Inspector open, after
    deleting some text [Mike Kaganski]

7.1.3.1
Bugs fixed compared to 7.1.2 RC2

 1. cid#1473830 resource leak [Caol??n McNamara]
 2. commit be18f xmlsec: fix signing documents on WNT [Michael Stahl]
 3. ofz#32499 overflowing pos [Caol??n McNamara]
 4. ofz#32796 no pdfium during wmf fuzzing [Caol??n McNamara]
 5. tdf#35986 Parts of EMF file not visible/stretched to an enormous extent
    [Bartosz Kosiorek]
 6. tdf#37281 emf file display yellow square instead of yelow circle [Bartosz
    Kosiorek]
 7. tdf#40427 Sections in Navigator are not listed in order of occurrence in
    document [Mike Kaganski]
 8. tdf#45820 insanely slow wmf import (complex clipping and
    basegfx::tools::findCuts) [Bartosz Kosiorek]
 9. tdf#48916 FORMATTING: The clipping of EMF files are ignored. [Bartosz
    Kosiorek]
10. tdf#55058 (emf-testbed) EMF+ List of EMF import bugs with examples [Bartosz
    Kosiorek]
11. tdf#58745 EDITING Extending date lists with dates of 29th or greater by
    dragging misses month ends [Andreas Heinisch]
12. tdf#81396 XLSX IMPORT: Data plots in chart not visible when cells have
    formula, needs Ctrl+Shift+F9 (Steps in Comment 5) [Xisco Fauli]
13. tdf#89754 using autofill on dates is wrong when increment should be 0
    [Andreas Heinisch]
14. tdf#93441 EDITING: cursor jumps to different horizontal position when
    moving to a different line with Up / Down [Xisco Fauli]
15. tdf#97569 Filesave as docx saves lists with bulgarian or serbian character
    numbering as simple digit numbering (see comment 12) [Justin Luth]
16. tdf#99913 Importing autofiltered XLSX and selecting cells copies hidden
    cells, too [T??nde T??th]
17. tdf#106181 FILESAVE: Check boxes get lost when saving as .XLSX [Justin
    Luth]
18. tdf#117750 Some of the image filters aren't working (like Aging or Relief)
    [Julien Nabet]
19. tdf#118482 Doesn't work mouse scrolling in list of conditions in dialogue
    Conditional formatting for... [Caol??n McNamara]
20. tdf#122717 FILEOPEN DOCX: Horizontal line has wrong size/position and
    vertical line rendered horizontally [Xisco Fauli]
21. tdf#122894 FILEOPEN DOC: Crash: SwFrame::RemoveFromLayout() [Caol??n
    McNamara]
22. tdf#125936 FILEOPEN DOCX: Wrong format for characters [Justin Luth]
23. tdf#126742 writer: OLE object resized incorrectly [Armin Le Grand
    (Allotropia)]
24. tdf#127471 Copied calc diagram in gdi format looks ok under linux, but the
    fonts looks weird under windows. [Armin Le Grand (Allotropia)]
25. tdf#128334 Assert using FormulaR1C1 [Eike Rathke]
26. tdf#131031 F5 navigator in calc opens initially very wide [Armin Le Grand
    (Allotropia)]
27. tdf#131171 Slide animation "diagonal squares" has wrong labels for
    directions [Katarina Behrens]
28. tdf#131269 A particular PPT with unusual order of Master-Note-Presentation
    fails to open in Impress [nd101]
29. tdf#132393 Page numbers for alphabetical index not displayed, if index is
    in more than one column (see comment 8) [Miklos Vajna]
30. tdf#133159 Navigator: Selected item changes to the previous one (gtk3)
    [Caol??n McNamara]
31. tdf#133487 z-index wrong for shape with style:run-through="background"
    [Michael Stahl]
32. tdf#133933 CRASH: Undoing paste of table with images of cats [Miklos Vajna]
33. tdf#134736 Draw PDF export to Archive/A-1b and without "Reduce image
    resolution" duplicates, resizes and misplaces images [Caol??n McNamara]
34. tdf#135364 Pen color and width not stored under Gtk (see comment 9) [Caol??
    n McNamara]
35. tdf#136740 pasting RTF content to LO writer resets tab stops setting in
    options [Mike Kaganski]
36. tdf#136918 Style down arrow not completely visible [Jan-Marek Glogowski]
37. tdf#136956 CRASH: Undoing merge cell [Mark Hung]
38. tdf#137367 [FILEOPEN PPTX] direct hyperlink colors aren't supported [Tibor
    Nagy]
39. tdf#138646 The "Excel R1C1" formula syntax does not allow you to refer to a
    named range (single cell or cell range) by name [Andreas Heinisch]
40. tdf#138895 FILEOPEN DOCX Shape distance from text imported with rounding
    error [Miklos Vajna]
41. tdf#139075 UI: Format Cell, borders Borders tab has drawing glitches when
    applying diagonal lines [Caol??n McNamara]
42. tdf#139495 Import of DOC file broken on 64 bit, ok on 32 bit [Justin Luth]
43. tdf#139786 VBA code modified while saving to .xls format - no longer works
    in Excel [Justin Luth]
44. tdf#139804 Button inside document can't be triggered with Alt-<Mnemonic>
    [Samuel Mehrbrodt]
45. tdf#139926 CSS/visual design: Explore making notes less visually dominant;
    it gets annoying in some pages [Adolfo Jayme Barrientos]
46. tdf#140229 Link to External Data - Calc not responding/very slow [Jan-Marek
    Glogowski]
47. tdf#140271 EMF Displayed lines are too thin and have equal line weight
    [Bartosz Kosiorek]
48. tdf#140292 Empty frame at undo [Michael Stahl, Miklos Vajna]
49. tdf#140395 "Font effects" screenshot has to be updated so that it does not
    show "blinking" control [Seth Chaiklin]
50. tdf#140404 No "Paste Special" dialog on Wayland with kf5 vclplug [Jan-Marek
    Glogowski]
51. tdf#140489 FILEOPEN XLSX Chart display is incorrect [Szymon K??os]
52. tdf#140556 Master document view not launching subdocument from pulldown
    [Caol??n McNamara]
53. tdf#140590 Crash in: mergedlo.dll: Using Save-As dialog in Tools>Chapter
    Numbering [Noel Grandin]
54. tdf#140639 It is not possible to work with an older document from LO 6.4 in
    new LO 7.0, slow perf [Caol??n McNamara]
55. tdf#140714 FILEOPEN PPTX: image styles that clip images into curvy shapes
    missing (and images shown rectangular) [G??l?ah K?se]
56. tdf#140813 Use GetUpdatedClipboardFormats Vista API to minimize
    clipboard-related overhead [Mike Kaganski]
57. tdf#140828 Caption frame content (image) detached from frame [Attila Bakos
    (NISZ)]
58. tdf#140848 FORMATTING: Display errors of rotated vector graphics [Lubo? Lu
    ????k]
59. tdf#140863 Error hiding and unhiding sections [Xisco Fauli, Bjoern
    Michaelsen]
60. tdf#140865 FILEOPEN FILESAVE PPTX: Wordart 3D is lost on round trip [Regina
    Henschel]
61. tdf#140977 Assert is failed closing Table Properties dialog with table
    selected [Caol??n McNamara]
62. tdf#140986 LO hangs when you select a cell with validity's drop-down [Noel
    Grandin]
63. tdf#141011 Password is requested to open MailMerge database when opening
    More Fields dialog *on any tab* [Mike Kaganski]
64. tdf#141012 Password to the associated DB asked again twice after cancelled
    first time, when opening More Fields dialog in a MailMerge document [Mike
    Kaganski]
65. tdf#141015 It's not visible to user that a MailMerge document without
    database fields is associated with the database [Mike Kaganski]
66. tdf#141021 Extrusion North has wrong Origin [Regina Henschel]
67. tdf#141027 LibreOffice freezes when checking russian spelling [Caol??n
    McNamara]
68. tdf#141050 CCur does not accept negative strings [arpit1912]
69. tdf#141079 Hard to select field when it's the first character in a table
    cell [Samuel Mehrbrodt]
70. tdf#141084 URL input of form config popup : cursor jump at start after 1
    key press [Caol??n McNamara]
71. tdf#141115 Crash in: connectivity::OSQLParseTreeIterator::getOrderTree
    [Lionel Elie Mamane]
72. tdf#141127 FILEOPEN ODP LibreOffice uses wrong default skew angle in
    extruded custom shape [Regina Henschel]
73. tdf#141146 LOOKUP picks data from unreferenced sheet [Eike Rathke]
74. tdf#141197 Buttons in LO startcenter are not available through
    accessibility [Caol??n McNamara]
75. tdf#141201 Basic: MOD result is different for values passed as literals vs.
    using variables [Andreas Heinisch]
76. tdf#141258 LibreOffice Writer freeze when you try use a spellchecking in RU
    GUI [Caol??n McNamara]
77. tdf#141282 .uno:DecrementSubLevels ("Demote One Level with Subpoints") has
    the wrong icon [Rizal Muttaqin]
78. tdf#141284 UI: Inconsistent Colibre Icon for "Next/Previous Track Change"
    and "Accept/Reject Track Change and select the next one" [Rizal Muttaqin]
79. tdf#141297 Removing links for external images doesn't work [Arnaud Versini]
80. tdf#141318 "Close" button in "Target in Hyperlink" dialog missing its left
    border [Caol??n McNamara]
81. tdf#141394 EMF FILLRGN record is not displayed correctly [Bartosz Kosiorek]
82. tdf#141416 [FILEOPEN] Excel file very long to open (more than one hour)
    [Xisco Fauli]
83. tdf#141515 BASE - Relationsships were shown with big space in Tableviews
    [Caol??n McNamara]
84. tdf#141528 Linked OLE: Error when breaking linked OLE [Armin Le Grand
    (Allotropia)]
85. tdf#141529 Linked OLE: OLE content is changed independent from hosting
    Document [Armin Le Grand (Allotropia)]
86. tdf#141547 CRASH: opening Standard Filter dialog [Mike Kaganski]
87. tdf#141549 FILEOPEN: DOCX: Missing images in header [Michael Stahl]
88. tdf#141600 UI: The vertical line of Anchor marker is blurry in Colibre icon
    theme [Rizal Muttaqin]
89. tdf#141618 UI: The vertical line of Anchor marker is blurry in Sukapura
    icon theme [Rizal Muttaqin]
90. tdf#141623 Qt5 refresh problem when starting LO start center and cairo
    (text) rendering ennabled [Jan-Marek Glogowski]
2021-05-07 16:33:41 +00:00
taca
bfa46e54b2 misc/ruby-pry: update to 0.14.1
0.14.1 (April 12, 2021)

Bug fixes

* Fixed bad coloring of some RDoc-style docs (#2182)
* Fixed broken --plugins option. It shows a warning now (#2180)
* Fixed bad output on printing non-visible characters with color codes
  (#2154)
* Fixed bad output when colors are disabled and a string with color codes is
  printed (#2158)
2021-05-04 16:16:03 +00:00
taca
407f694553 misc/ruby-commander: update to 4.6.0
4.6.0 (2021-04-09)

* Fix error with SortedSet on Ruby 3.0 (#98).
* Remove `#reset_io` as it didn't do anything.
* Drop support for Ruby < 2.4.
2021-05-04 15:30:16 +00:00
taca
b339761825 misc/ruby-bundler: update to 2.2.16
2.2.16 (April 8, 2021)

Enhancements:

* Add --github-username option and config to bundle gem #3687
* Bump vendored tmpdir library copy #4506
* Add rake build:checksum task to build checksums for a gem package #4156
* Enable bundler-cache for GitHub Actions template #4498
* Improve bundle info error when gem is on a "disabled" group #4492
* Small tweak to yank message #4494
* Don't show duplicate entries in bundle outdated output #4474
* Never downgrade top level gems when running bundle update #4473

Bug fixes:

* Fix incorrect logic for filtering metadata matching candidates #4497
2021-05-04 15:26:45 +00:00
gutteridge
c773861766 mate-calc: update to 1.24.2
Change log:

mate-calc 1.24.2

  * Translations update
  * mp-serializer: fix memory leaks reported by valgrind

mate-calc 1.24.1

  * Translations update
  * fixes incorrect parenthesis handling
  * build: silent build warnings for distcheck
  * use default MATE_COMPILE_WARNINGS level
  * math-buttons: add space character after inverse trig. functions
  * mate-calc.desktop: Do not collect the translation for Icon
  * Read authors (updated) from mate-calc.about
2021-05-04 00:07:28 +00:00
pho
4d74cf7192 *: Bump PKGREVISION for ghc-9.0.1 2021-05-03 19:00:52 +00:00
nia
773cde7da8 *: Use the tools framework for itstool
Now it should be more obvious when a package needs it as a dependency,
as it will fail loudly if it isn't declared as a tool.

While here, some duplicate dependencies on itstool were removed from the
MATE packages
2021-05-02 10:24:47 +00:00
wiz
10fc54e195 p5-Locale-libintl: update to 1.32.
Version 1.32 - 26 Oct 2020

* Bugs fixed:

  https://github.com/gflohr/libintl-perl/issues/5
2021-04-27 09:01:47 +00:00
schmonz
8c29d6443e Update to 2.2.3.2. From the changelog:
- Libraries and binaries don't have the .note.GNU-stack section stripped
  anymore. Previously, "make strip" would strip that section, which
  would sometimes (depending on the toolchain) cause binaries to be
  incorrectly tagged as needing an executable stack. This is not a
  security issue in itself, but an executable stack makes it easier for
  an attacker to turn bugs into exploits, so it should be avoided
  whenever possible. Thanks to Xavier Stonestreet for reporting and
  finding the cause of the problem.

- Link tests are now performed with a regular file as their
  output, instead of /dev/null, which makes them more portable to
  old/buggy linkers.
2021-04-26 15:04:27 +00:00
pho
e5d05d534e Update to cabal-install-3.4.0.0
3.4.0.0 Oleg Grenrus <oleg.grenrus@iki.fi> February 2021
	* See https://github.com/haskell/cabal/blob/master/release-notes/cabal-install-3.4.0.0.md

3.2.0.0 Herbert Valerio Riedel <hvr@gnu.org> April 2020
	* `v2-build` (and other `v2-`prefixed commands) now accept the
	  `--benchmark-option(s)` flags, which pass options to benchmark executables
	  (analogous to how `--test-option(s)` works). (#6209)
	* Add solver optimization to skip a version of a package if it does not resolve
	  any conflicts encountered in the last version, controlled by flag
	  '--fine-grained-conflicts'. (#5918)
	* `cabal v2-exec` doesn't fail in clean package (#6479)
	* Show full ABI hash for installed packages in solver log (#5892)
	* Create incoming directory even for empty packages (#4130)
	* Start GHCi with `main-is` module in scope (#6311)
	* Implement `--benchmark-options` for `v2-bench` (#6224)
	* Fix store-dir in ghc env files generated by `cabal install --lib
	  --package-env` (#6298)
	* `cabal v2-run` works with `.lhs` files (#6134)
	* `subdir` in source-repository-package accepts multiple entries (#5472)

3.0.1.0 Herbert Valerio Riedel <hvr@gnu.org> April 2020
	* Create store incoming directory
	  ([#4130](https://github.com/haskell/cabal/issues/4130))
	* `fetchRepoTarball` output is not marked
	  ([#6385](https://github.com/haskell/cabal/pull/6385))
	* Update `setupMinCabalVersionConstraint` for GHC-8.8
	  ([#6217](https://github.com/haskell/cabal/pull/6217))
	* Implement `cabal install --ignore-project`
	  ([#5919](https://github.com/haskell/cabal/issues/5919))
	* `cabal install executable` solver isn't affected by default
	  environment contents
	  ([#6410](https://github.com/haskell/cabal/issues/6410))
	* Use `lukko` for file locking
	  ([#6345](https://github.com/haskell/cabal/pull/6345))
	* Use `hackage-security-0.6`
	  ([#6388](https://github.com/haskell/cabal/pull/6388))
	* Other dependency upgrades
2021-04-25 13:43:44 +00:00
wiz
7a8b5f1ae4 kp: remove dead download link 2021-04-25 06:47:11 +00:00
wiz
9662431e53 root: remove dead download link 2021-04-25 06:45:56 +00:00
wiz
877eafe514 latin-words-bin: remove dead download link 2021-04-25 06:42:49 +00:00
wiz
941d03d4cf xjdic: remove dead download link 2021-04-24 20:06:35 +00:00
wiz
bed4bccadd ibutton-pdkit: remove dead links 2021-04-24 10:41:27 +00:00
wiz
18d0accc0a utftools: remove dead download link 2021-04-24 10:40:35 +00:00
wiz
a2a061dc3d molden: remove
Upstream website gone, the distfile was not re-distributable, and
noone had updated it since 2007.
2021-04-24 08:47:53 +00:00
pho
23eb10a4c2 Update to extra-1.7.9
1.7.9, released 2020-12-19
    #72, add pureIf
    #73, make takeEnd, dropEnd, splitAtEnd: return immediately if i <= 0
    #71, add compareLength and comparingLength
1.7.8, released 2020-09-12
    #68, make sure Data.Foldable.Extra is exposed
1.7.7, released 2020-08-25
    #67, defer to System.IO readFile', hGetContents' in GHC 9.0
1.7.6, released 2020-08-21
    #66, add lots of functions to Data.Foldable.Extra (anyM etc)
1.7.5, released 2020-08-12
    #65, add Data.Foldable.Extra
    #65, add sum', product', sumOn' and productOn'
1.7.4, released 2020-07-15
    #59, add whileJustM and untilJustM
    #61, optimise nubOrd (10% or so)
    Add first3, second3, third3
1.7.3, released 2020-05-30
    #58, add disjointOrd and disjointOrdBy
1.7.2, released 2020-05-25
    #56, add zipWithLongest
    #57, make duration in MonadIO
    Simplify and optimise Barrier
    Mark modules that are empty as DEPRECATED
    Remove support for GHC 7.10
1.7.1, released 2020-03-10
    Add NOINLINE to errorIO to work around a GHC 8.4 bug
1.7, released 2020-03-05
*   #40, delete deprecated function for
*   zipFrom now truncates lists, rather than error, just like zip
1.6.21, released 2020-03-02
    #54, deprecate nubOn since its O(n^2). Use nubOrdOn
    #53, add some nub functions to NonEmpty
1.6.20, released 2020-02-16
    Add firstM, secondM
1.6.19, released 2020-02-11
    #50, add headDef, lastDef, and dropEnd1
2021-04-24 05:50:38 +00:00
wiz
b238e6380f granulate: remove dead download link 2021-04-23 22:22:52 +00:00
wiz
7f7f71f613 *: remove dead download site 2021-04-21 15:31:18 +00:00
adam
da0a125726 revbump for boost-libs 2021-04-21 13:24:06 +00:00
adam
9d0e79c401 revbump for textproc/icu 2021-04-21 11:40:12 +00:00
wiz
d257b8d322 *: remove dead download site 2021-04-21 08:44:30 +00:00
nia
f732ad66f4 vttest: update to 20210210
20210210
        + improve test-screen for VT420 cursor movement, when left/right
          margins are enabled (prompted by discussion with Tom Szilagyi).

	+ updated/improved configure macros, i.e., for shellcheck-warnings

20201225
	+ correct highlighting for ISO Greek, Hebrew and Latin-5.

	+ correct highlighting for DEC Cyrillic, Greek and Hebrew.

	+ add Latin-2 character set for VT510.

	+ updated/improved configure macros, i.e., for compiler-warnings

	+ update config.guess, config.sub
2021-04-21 07:23:17 +00:00
leot
a9e5812401 tmux: Add a reference to upstream PR 2021-04-17 10:28:22 +00:00
leot
34adb36632 tmux: Update to 3.2
Changes:
3.2
---
 * Add a flag to disable keys to close a message.
 * Permit shortcut keys in buffer, client, tree modes to be configured with a
   format (-K flag to choose-buffer, choose-client, choose-tree).
 * Add a current_file format for the config file being parsed.
 * When display-message used in config file, show the message after the config
   file finishes.
 * Add client-detached notification in control mode.
 * Improve performance of format evaluation.
 * Make jump command support UTF-8 in copy mode.
 * Support X11 colour names and other colour formats for OSC 10 and 11.
 * Add "pipe" variants of "copy-pipe" commands which do not copy.
 * Include "focused" in client flags.
 * Send Unicode directional isolate characters around horizontal pane borders if
   the terminal supports UTF-8 and an extension terminfo(5) capability "Bidi" is
   present.
 * Add a -S flag to new-window to make it select the existing window if one
   with the given name already exists rather than failing with an error.
 * Addd a format modifier to check if a window or session name exists (N/w or
   N/s).
 * Add compat clock_gettime for older macOS.
 * Add a no-detached choice to detach-on-destroy which detaches only if there
   are no other detached sessions to switch to.
 * Add rectangle-on and rectangle-off copy mode commands.
 * Change so that window_flags escapes # automatically. A new format
   window_raw_flags contains the old unescaped version.
 * Add -N flag to never start server even if command would normally do so.
 * With incremental search, start empty and only repeat the previous search if
   the user tries to search again with an empty prompt.
 * Add a value for remain-on-exit that only keeps the pane if the program
   failed.
 * Add a -C flag to run-shell to use a tmux command rather than a shell command.
 * Do not list user options with show-hooks.
 * Remove current match indicator in copy mode which can't work anymore since we
   only search the visible region.
 * Make synchronize-panes a pane option and add -U flag to set-option to unset
   an option on all panes.
 * Make replacement of ##s consistent when drawing formats, whether followed by
   [ or not. Add a flag (e) to the q: format modifier to double up #s
 * Add -N flag to display-panes to ignore keys.
 * Change how escaping is processed for formats so that ## and # can be used in
   styles.
 * Add a 'w' format modifier for string width.
 * Add support for Haiku.
 * Expand menu and popup -x and -y as formats.
 * Add numeric comparisons for formats.
 * Fire focus events even when the pane is in a mode.
 * Add -O flag to display-menu to not automatically close when all mouse buttons
   are released.
 * Allow fnmatch(3) wildcards in update-environment.
 * Disable nested job expansion so that the result of #() is not expanded again.
 * Use the setal capability as well as (tmux's) Setulc.
 * Add -q flag to unbind-key to hide errors.
 * Allow -N without a command to change or add a note to an existing key.
 * Add a -w flag to set- and load-buffer to send to clipboard using OSC 52.
 * Add -F to set-environment and source-file.
 * Allow colour to be spelt as color in various places.
 * Add n: modifier to get length of a format.
 * Respond to OSC colour requests if a colour is available.
 * Add a -d option to display-message to set delay.
 * Add a way for control mode clients to subscribe to a format and be notified
   of changes rather than having to poll.
 * Add some formats for search in copy mode (search_present, search_match).
 * Do not wait on shutdown for commands started with run -b.
 * Add -b flags to insert a window before (like the existing -a for after) to
   break-pane, move-window, new-window.
 * Make paste -p the default for ].
 * Add support for pausing a pane when the output buffered for a control mode
   client gets too far behind. The pause-after flag with a time is set on the
   pane with refresh-client -f and a paused pane may be resumed with
   refresh-client -A.
 * Allow strings in configuration files to span multiple lines - newlines and
   any leading whitespace are removed, as well as any following comments that
   couldn't be part of a format. This allows long formats or other strings to be
   annotated and indented.
 * Instead of using a custom parse function to process {} in configuration
   files, treat as a set of statements the same as outside {} and convert back
   to a string as the last step. This means the rules are consistent inside and
   outside {}, %if and friends work at the right time, and the final result
   isn't littered with unnecessary newlines.
 * Add support for extended keys - both xterm(1)'s CSI 27 ~ sequence and the
   libtickit CSI u sequence are accepted; only the latter is output. tmux will
   only attempt to use these if the extended-keys option is on and it can detect
   that the terminal outside supports them (or is told it does with the
   "extkeys" terminal feature).
 * Add an option to set the pane border lines style from a choice of single
   lines (ACS or UTF-8), double or heavy (UTF-8), simple (plain ASCII) or number
   (the pane numbers). Lines that won't work on a non-UTF-8 terminal are
   translated back into ACS when they are output.
 * Make focus events update the latest client (like a key press).
 * Store UTF-8 characters differently to reduce memory use.
 * Fix break-pane -n when only one pane in the window.
 * Instead of sending all data to control mode clients as fast as possible, add
   a limit of how much data will be sent to the client and try to use it for
   panes with some degree of fairness.
 * Add an active-pane client flag (set with attach-session -f, new-session -f
   or refresh-client -f). This allows a client to have an independent active
   pane for interactive use (the window client pane is still used for many
   things however).
 * Add a mark to copy mode, this is set with the set-mark command (bound to X)
   and appears with the entire line shown using copy-mode-mark-style and the
   marked character in reverse. The jump-to-mark command (bound to M-x) swaps
   the mark and the cursor positions.
 * Add a -D flag to make the tmux server run in the foreground and not as a
   daemon.
 * Do not loop forever in copy mode when search finds an empty match.
 * Fix the next-matching-bracket logic when using vi(1) keys.
 * Add a customize mode where options may be browsed and changed, includes
   adding a brief description of each option. Bound to C-b C by default.
 * Change message log (C-b ~) so there is one for the server rather than one per
   client and it remains after detach, and make it useful by logging every
   command.
 * Add M-+ and M-- to tree mode to expand and collapse all.
 * Change the existing client flags for control mode to apply for any client,
   use the same mechanism for the read-only flag and add an ignore-size flag.
   refresh-client -F has become -f (-F stays for backwards compatibility) and
   attach-session and switch-client now have -f flags also. A new format
   client_flags lists the flags and is shown by list-clients by default.
   This separates the read-only flag from "ignore size" behaviour (new
   ignore-size) flag - both behaviours are useful in different circumstances.
   attach -r and switchc -r remain and set or toggle both flags together.
 * Store and restore cursor position when copy mode is resized.
 * Export TERM_PROGRAM and TERM_PROGRAM_VERSION like various other terminals.
 * Add formats for after hook command arguments: hook_arguments with all the
   arguments together; hook_argument_0, hook_argument_1 and so on with
   individual arguments; hook_flag_X if flag -X is present; hook_flag_X_0,
   hook_flag_X_1 and so on if -X appears multiple times.
 * Try to search the entire history first for up to 200 ms so a search count can
   be shown. If it takes too long, search the visible text only.
 * Use VIS_CSTYLE for paste buffers also (show \012 as \n).
 * Change default formats for tree mode, client mode and buffer mode to be more
   compact and remove some clutter.
 * Add a key (e) in buffer mode to open the buffer in an editor. The buffer
   contents is updated when the editor exits.
 * Add -e flag for new-session to set environment variables, like the same flag
   for new-window.
 * Improve search match marking in copy mode. Two new options
   copy-mode-match-style and copy-mode-current-match-style to set the style for
   matches and for the current match respectively. Also a change so that if a
   copy key is pressed with no selection, the current match (if any) is copied.
 * Sanitize session names like window names instead of forbidding invalid ones.
 * Check if the clear terminfo(5) capability starts with CSI and if so then
   assume the terminal is VT100-like, rather than relying on the XT capability.
 * Improve command prompt tab completion and add menus both for strings and -t
   and -s (when used without a trailing space). command-prompt has additional
   flags for only completing a window (-W) and a target (-T), allowing C-b ' to
   only show windows and C-b . only targets.
 * Change all the style options to string options so they can support formats.
   Change pane-border-active-style to use this to change the border colour when
   in a mode or with synchronize-panes on. This also implies a few minor changes
   to existing behaviour:
   - set-option -a with a style option automatically inserts a comma between the
     old value and appended text.
   - OSC 10 and 11 no longer set the window-style option, instead they store the
     colour internally in the pane data and it is used as the default when the
     option is evaluated.
   - status-fg and -bg now override status-style instead of the option values
     being changed.
 * Add extension terminfo(5) capabilities for margins and focus reporting.
 * Try $XDG_CONFIG_HOME/tmux/tmux.conf as well as ~/.config/tmux/tmux.conf for
   configuration file (the search paths are in TMUX_CONF in Makefile.am).
 * Remove the DSR 1337 iTerm2 extension and replace by the extended device
   attributes sequence (CSI > q) supported by more terminals.
 * Add a -s flag to copy-mode to specify a different pane for the source
   content. This means it is possible to view two places in a pane's history at
   the same time in different panes, or view the history while still using the
   pane. Pressing r refreshes the content from the source pane.
 * Add an argument to list-commands to show only a single command.
 * Change copy mode to make copy of the pane history so it does not need to
   freeze the pane.
 * Restore pane_current_path format from portable tmux on OpenBSD.
 * Wait until the initial command sequence is done before sending a device
   attributes request and other bits that prompt a reply from the terminal. This
   means that stray relies are not left on the terminal if the command has
   attached and then immediately detached and tmux will not be around to receive
   them.
 * Add a -f filter argument to the list commands like choose-tree.
 * Move specific hooks for panes to pane options and windows for window options
   rather than all hooks being session options. These hooks are now window options:
   window-layout-changed
   window-linked
   window-pane-changed
   window-renamed
   window-unlinked
   And these now pane options:
   pane-died
   pane-exited
   pane-focus-in
   pane-focus-out
   pane-mode-changed
   pane-set-clipboard
   Any existing configurations using these hooks on a session rather than
   globally (that is, set-hook or set-option without -g) may need to be changed.
 * Show signal names when a process exits with remain-on-exit on platforms which
   have a way to get them.
 * Start menu with top item selected if no mouse and use mode-style for the
   selected item.
 * Add a copy-command option and change copy-pipe and friends to pipe to it if
   used without arguments, allows all the default copy key bindings to be
   changed to pipe with one option rather than needing to change each key
   binding individually.
 * Tidy up the terminal detection and feature code and add named sets of
   terminal features, each of which are defined in one place and map to a
   builtin set of terminfo(5) capabilities. Features can be specified based on
   TERM with a new terminal-features option or with the -T flag when running
   tmux. tmux will also detect a few common terminals from the DA and DSR
   responses.
   This is intended to make it easier to configure tmux's use of terminfo(5)
   even in the presence of outdated ncurses(3) or terminfo(5) databases or for
   features which do not yet have a terminfo(5) entry. Instead of having to grok
   terminfo(5) capability names and what they should be set to in the
   terminal-overrides option, the user can hopefully just give tmux a feature
   name and let it do the right thing.
   The terminal-overrides option remains both for backwards compatibility and to
   allow tweaks of individual capabilities.
 * Support mintty's application escape sequence (means tmux doesn't have to
   delay to wait for Escape, so no need to reduce escape-time when using
   mintty).
 * Change so main-pane-width and height can be given as a percentage.
 * Support for the iTerm2 synchronized updates feature (allows the terminal to
   avoid unnecessary drawing while output is still in progress).
 * Make the mouse_word and mouse_line formats work in copy mode and enable the
   default pane menu in copy mode.
 * Add a -T flag to resize-pane to trim lines below the cursor, moving lines out
   of the history.
 * Add a way to mark environment variables as "hidden" so they can be used by
   tmux (for example in formats) but are not set in the environment for new
   panes. set-environment and show-environment have a new -h flag and there is a
   new %hidden statement for the configuration file.
 * Change default position for display-menu -x and -y to centre rather than top
   left.
 * Add support for per-client transient popups, similar to menus but which are
   connected to an external command (like a pane). These are created with new
   command display-popup.
 * Change double and triple click bindings so that only one is fired (previously
   double click was fired on the way to triple click). Also add default double
   and triple click bindings to copy the word or line under the cursor and
   change the existing bindings in copy mode to do the same.
 * Add a default binding for button 2 to paste.
 * Add -d flag to run-shell to delay before running the command and allow it to
   run without a command so it just delays.
 * Add C-g to cancel command prompt with vi keys as well as emacs, and q in
   command mode.
 * When the server socket is given with -S, create it with umask 177 instead of
   117 (because it may not be in a safe directory like the default directory in
   /tmp).
 * Add a copy-mode -H flag to hide the position marker in the top right.
 * Add number operators for formats (+, -, *, / and m),
2021-04-17 10:11:04 +00:00
ryoon
633bec58e9 *: Recursive revbump from devel/nss 2021-04-15 11:23:03 +00:00
gutteridge
f72ac7e060 libreoffice: reflect xdg-utils dependency for xdg-open command
Relates to PR pkg/56092. LibreOffice expects xdg-open to be installed.
2021-04-11 04:29:59 +00:00
ryoon
30770c6763 libreoffice: Use portable 'command -v' instead of 'type -p' and fix segfault
Pointed out in PR pkg/56092 by gutteridge@.

And convert to use OpenSSL TLS backend.
Recent devel/nss change, libsoftkn3.so uses MD5_Update()
from OpenSSL and it causes SIGSEGV.

Bump PKGREVISION.
2021-04-10 13:13:47 +00:00