Commit graph

292822 commits

Author SHA1 Message Date
leot
9e80cba362 gammu: Update to 1.40.0
Changes:
1.40.0
------
[+] * Added SMSD configuration option RetryTimeout.
[-] * Removed non configurable sleep after failed message send.
[+] * SMSD now tries to store whole decoded text for concatenated
      messages in the first entry in database.
[-] * Improved compatibility with Sierra SL8084TR.
[+] * Added support for delivery reports stored in SR memory.
[+] * Configure CNMI parameters for AT driver.
2019-02-03 00:09:45 +00:00
scole
37de76b1c9 Updated sysutils/pflogsumm to 1.1.3 2019-02-02 18:09:42 +00:00
leot
3e5ad9f829 doc: Updated misc/moreutils to 0.63 2019-02-02 17:53:53 +00:00
leot
82117a9add moreutils: Update to 0.63
pkgsrc changes:
 - Switch MASTER_SITES to upstream snapshots instead of using Debian mirrors

Changes:
0.63
----
 - vipe: Clean up temp file even when it exits with an error.
       Thanks, Stig Palmquist.
 - ts: Fix ts -m %.s to not output negative microseconds.
       Thanks, Dima Kogan
 - sponge: Fix bug in -a mode that doubled original content of file when the
           temp file is located on a different filesystem.
2019-02-02 17:53:41 +00:00
schmonz
bc09823ddb doc: Updated databases/p5-App-Sqitch to 0.9999 2019-02-02 16:59:48 +00:00
schmonz
91c8476e7e Update to 0.9999. From the changelog:
[Bug Fixes]
- Fixed a test failure with the MySQL max limit value, mostly exhibited
  on BSD platforms.
- Removed fallback in the PostgreSQL engine on the `$PGUSER` and
  `$PGPASSWORD` environnement variables, as well as the system username,
  since libpq does all that automatically, and collects data from other
  sources that we did not (e.g., the password and connection service
  files). Thanks to Tom Bloor for the report (issue #410).
- Changed dependency validation to prevent an error when a change required
  from a different project has been reworked. Previously, when a when
  requiring a change such as `foo:greeble`, Sqitch would raise an error if
  `foo:greeble` was reworked, suggesting that the dependency be
  tag-qualified to eliminate ambiguity. Now reworked dependencies may be
  required without tag-qualification, though tag-qualification should still
  be specified if functionality as of a particular tag is required.
- Added a workaround for the shell quoting issue on Windows. Applies to
  IPC::System::Simple 1.29 and lower. See
  [pjf/ipc-system-simple#29](https://github.com/pjf/ipc-system-simple/pull/29)
  for details (#413).
- Fixed an issue with the MariaDB client where a deploy, revert, or
  verify failure was not properly propagated to Sqitch. Sqitch now passes
  `--abort-source-on-error` to the Maria `mysql` client to ensure that
  SQL errors cause the client to abort with an error so that Sqitch can
  properly handle it. Thanks to @mvgrimes for the original report and,
  years later, the fix (#209).
- Fixed an issue with command argument parsing so that it truly never
  returns a target without an engine specified, as documented.
- Removed documentation for methods that don't exist.
- Fixed test failures due to a change in Encode v2.99 that's stricter
  about `undef` arguments that should be defined.

[Improvements]
- The Snowflake engine now consults the `connections.warehousename`,
  `connections.dbname`, and `connections.rolename` variables in the
  SnowSQL configuration file (`~/.snowsql/config`) before falling back on
  the hard-coded warehouse name "sqitch" and using the system username as
  the database name and no default for the role.
- Switched to using a constant internally to optimize windows-specific
  code paths at compile time.
- When `deploy` detects undeployed dependencies, it now eliminates
  duplicates before listing them in the error message.
- Now requiring IO::Pager v0.34 or later for its more consistent
  interface.
- Added notes about creating databases to the tutorials. Thanks to Dave
  Rolsky for the prompt (#315).
- Added a status message to tell the user when the registry is being
  updated, rather than just show each individual update. Thanks to Ben
  Hutton for the suggestion (#276).
- Added support for a `$SQITCH_TARGET` environment variable, which takes
  precedence over all other target specifications except for command-line
  options and arguments. Thanks to @mvgrimes for the suggestion (#203).
- Fixed target/engine/change argument parsing so it won't automatically
  fail when `core.engine` isn't set unless no targets are found. This
  lets engines be determined strictly from command-line arguments --
  derived from targets, or just listed on their own -- whether or not
  `core.engine` is set. This change eliminates the need for the
  `no_default` parameter to the `parse_args()` method of App::Sqitch
  Command. It also greatly reduces the need for the core `--engine`
  option, which was previously required to work around this issue (see
  below for its removal).
- Refactored config handling in tests to use a custom subclass of
  App::Sqitch::Config instead of various mocks, temporary files, and the
  like.
- Added advice to use the PL/pgSQL `ASSERT()` function for verify scripts
  to the Postgres tutorial. Thanks to Sergii Tkachenko for the PR (#425).

[Target Variables]
- The `verify` command now reads `deploy.variables`, and individual
  `verify.variables override `deploy.variables`, on the assumption that
  the verify variables in general ought to be the same as the deploy
  variables. This makes `verify` variable configuration consistent with
  `revert` variable configuration.
- Variables set via the `--set-deploy` option on the `rebase` and
  `checkout` commands no longer apply to both reverts and deploys, but
  only deploys. Use the `--set` option to apply a variable to both
  reverts and deploys.
- Added support for core, engine, and target variable configuration. The
  simplest way to use them is via the `--set` option on the `init`,
  `engine`, and `target` commands. These commands allow the configuration
  of database client variables for specific engines and targets, as well
  as defaults that apply to all change execution commands (`deploy`,
  `revert`, `verify`, `rebase`, and `checkout`). The commands merge the
  variables from each level in this priority order:
  * `--set-deploy` and `--set-revert` options on `rebase` and `checkout`
  * `--set` option
  * `target.$target.variables`
  * `engine.$engine.variables`
  * `deploy.variables`, `revert.variables`, and `verify.variables`
  * `core.variables`
  See `sqitch-configuration` for general documentation of of the
  hierarchy for merging variables and the documentation for each command
  for specifics.

[Options Unification]
- Added the `--chdir`/`--cd`/`-C` option to specify a directory to change
  to before executing any Sqitch commands. Thanks to Thomas Sibley for
  the suggestion (#411).
- Added the `--no-pager` option to disable the pager (#414).
- Changed command-line parsing to allow core and command options to
  appear anywhere on the line. Previously, core options had to come
  before the command name, and command options after. No more. The caveat
  is that command options that take arguments should either appear after
  the command or use the `--opt=val` syntax instead of `--opt val`, so
  that Sqitch doesn't think `val` is the command. Even in that case, it
  will search the rest of the arguments to find a valid command.
  However, to minimize this challenge, the documentation now suggests
  and demonstrates putting all options after the command, like so:
  `sqitch [command] [options]`.
- Simplified and clarified the distinction between core and command
  options by removing all options from the core except those that affect
  output and runtime context. The core options are:
  * -C --chdir --cd <dir>  Change to directory before performing any actions
  *    --etc-path          Print the path to the etc directory and exit
  *    --no-pager          Do not pipe output into a pager
  *    --quiet             Quiet mode with non-error output suppressed
  * -V --verbose           Increment verbosity
  *    --version           Print the version number and exit
  *    --help              Show a list of commands and exit
  *    --man               Print the introductory documentation and exit
- Relatedly, single-letter core options will now always be uppercase,
  while single-letter command options will be lowercase. As such, `-V`
  has been added as an alias for `--version`, although `-v` remains for
  now, undocumented. It may be removed in the future should a compelling
  use for `-v` in a command be discovered.
- All other options have been moved to the commands they affect. Their
  use should remain mostly unchanged now that command options are parsed
  from anywhere on the command-line, although we recommend that all
  options come after commands. The options were moved as follows:
  * `--registry`, `--client`, `--db-name`, `--db-user`, `--db-host`, and
    `--db-port` (and their aliases) have been moved to the `checkout`,
    `deploy`, `log`, `rebase`, `revert`, `status`, `upgrade`, and
    `verify` commands.
  * `--plan-file` and `--top-dir` (deprecated; see below) have been moved
    to the `add`, `bundle`, `checkout`, `deploy`, `rebase`, `revert`,
    `rework`, `show`, `status`, `tag`, and `verify` commands. They were
    already supported by the `init`, `engine`, and `target` commands
    (where `--top-dir` is not deprecated).
- Because some command options conflicted with core options, a few
  options have been removed altogether, including:
  * The `--verbose` option on the `--engine` and `--target` commands has
    been removed, but no visible change should be apparent, since those
    commands now read the core `--verbose` option.
  * The undocumented `--dir` alias for `--top-dir` has been removed, as
    it conflicted with the option of the same name but different meaning
    in the `init`, `engine`, and `target` commands.
  * The `-d` alias for `--set-deploy` in the `rebase` and `checkout`
    commands has been changed to `-e` so as not to conflict with the `-d`
    alias for `--db-name`.
  * Added tests for all commands to ensure none of their options conflict
    with core options. Will help prevent conflicts in the future.

[Deprecations & Removals]
- Deprecated the `--top-dir` option in favor of `--chdir` with a warning
  except when used for configuration in the `init`, `engine`, and
  `target` commands.
- Removed the core `--deploy-dir`, `--revert-dir`, and `--verify-dir`
  options, which have been deprecated and triggering warnings since
  v0.9993 (August 2015). The `--dir` option to the `init`, `engine`, and
  `target` commands remains the favored interface for specifying script
  directories.
- Removed the deprecated core `--engine` option. The `init` command still
  supports it, while other commands are able to parse the engine name as
  an argument — e.g., `sqitch deploy mysql` — or implicitly as part of a
  target, as in `sqitch revert db:pg:tryme`. When Sqitch is unable to
  determine the engine for a command, the error message no longer
  mentions `--engine` and instead suggests specifying the engine via the
  target. This option never triggered an error, but demonstration of its
  use has been limited to `init` examples.
- Removed support for reading the `core.$engine` configuration, which has
  been deprecated with warnings in favor of `engine.$engine` since 0.997
  (November 2014). The `sqitch engine update-config` action remains
  available to update old configurations, but may be removed in the
  future.
- Removed the `--deploy`, `--revert`, and `--verify` options on the `add`
  command, as well as their `--no-*` variants. They have been deprecated
  with warnings in favor of the `--with` and `--without` options since
  v0.990 (January 2014).
- Removed the `--deploy-template`, `--revert-template`, and
  `--verify-template` options to the `add` command. They have been
  deprecated with warnings in favor of the `--use` option since v0.990
  (January 2014).
- Removed the `add.deploy_template`, `add.revert_template`, and
      `add.verify_template` configuration settings. They have been deprecated
      with warnings in favor of the `add.templates` configuration section
  since v0.990 (January 2014).
- Removed the `@FIRST` and `@LAST` symbolic tags, which have been
  deprecated with warnings in favor of `@ROOT` and `@HEAD`, respectively,
  since 0.997 (November 2014).
- Removed the command-specific options with the string "target" in them,
  such as `--to-target`, `--upto-target`, which have been deprecated with
  warnings in in favor of options containing the string "change", such as
  `--to-change` and `--upto-change`, since v0.997 (November 2014).
- Remove the `engine` and `target` command `set-*` actions and their
  corresponding methods, which have been deprecated in favor of the
  `alter` action since v0.9993 (August 2015).
- Removed the automatic updating of change and tag IDs in the Postgres
  engine. This functionality was added in v0.940 (December 2012), when
  Postgres was the only engine, and the SHA-1 hash for change and tag IDs
  was changed. There were very few deployments at the time, and all
  should long since have been updated.

[API Changes]
- Added the URI-overriding parameters `user`, `host`, `port`, and
  `dbname` to App::Sqitch::Target so that command options can be used to
  easily set them.
- Added support for passing attribute parameters to the `all_targets`
  group constructor on App::Sqitch::Target, so that command-line options
  can be used to assign attributes to all targets read from the
  configuration.
- Aded the `target_params` method to App::Sqitch::Command and updated all
  commands to use it when constructing targets. This allows commands to
  define options for Target parameters, as required for moving options to
  commands as described above.
- Added the `class_for` method to App::Sqitch::Command so that the new
  options parser described above can load a command class without
  instantiating an instance. Useful for searching command-line arguments
  for a command name.
- Added the `create` constructor to App::Sqitch::Command to let Sqitch
  instantiate an instance of a command once it finds one via `class_for`.
  Previously, Sqitch used the `load` method, which handled the
  functionality of both `class_for` and `create`. That method still
  exists but is used only in tests.
- Added the ConnectingCommand role to define database connection options
  for the commands that need them.
- Added the ContextCommand role to define command options for the
  location of the plan file and top directory. This is also where use of
  the deprecated form of `--top-dir` triggers a warning.
- Removed the `verbosity` attribute from App::Sqitch::Command::engine and
  App::Sqitch::Command::target, since the `--verbose` option is no longer
  needed. These commands now rely on the core `--verbose` option.
- Removed the copying of core options from the target class and
  TargetConfigCommand role, since the attributes fetched from there are
  no longer core options, but provided as attribute parameters to the
  constructors by commands.
- Removed documentation for the optional `config` parameter to the
  `all_targets` constructor of App::Sqitch::Target, since it was never
  used by Sqitch. It always fetched the config from the required `sqitch`
  parameter. Support for the `config` parameter has not been removed,
  since third-parties might use it.
- Removed the `set_*` methods in the `engine` and `target` commands,
  which have been deprecated in favor of the new `alter` method since
  v0.9993 (August 2015).
- Removed the `old_id` and `old_info` methods from Change and Tag, which
  date from v0.940 (December 2012), and were provided only to allow
  existing Postgres databases to be updated from the old to new ID
  format, now removed. There should be no other use case for these
  methods.
2019-02-02 16:59:30 +00:00
tnn
56c894da1a uhd: remove duplicate PLIST entries 2019-02-02 15:52:51 +00:00
tnn
19146c6a6b doc: Updated ham/rtl-sdr to 0.6.0 2019-02-02 14:36:05 +00:00
tnn
339bc7c503 rtl-sdr: update to 0.6.0
Changes:
- build fixes
- tuner_r82xx: turn off loop-through, remove dead code
- lib: use USB zero-copy transfers if possible
2019-02-02 14:35:15 +00:00
gdt
7c7f457aec Removed sysutils/memtest86 successor sysutils/memtestplus [gdt 2019-02-02] 2019-02-02 14:00:51 +00:00
gdt
132333fcfb memtest86: Remove as abandoned (no longer having a Free upstream)
For a really long time, memtestplus has been the successor, and there
has been no discussion of this for years.

Deletion proposed long ago, I'm pretty sure.
2019-02-02 13:59:22 +00:00
wiz
af2542a864 doc/TODO: add some
+ mame-0.206, tor-browser-8.0.5.
2019-02-02 09:19:19 +00:00
leot
d53424c758 gnurl: Include all needed bl3
(No PKGREVISION bump since there are no gnurl bl3 users at the moment.)
2019-02-02 09:00:56 +00:00
tnn
d6be252100 doc: Updated ham/hackrf to 2018.01.1 2019-02-02 09:00:39 +00:00
brook
2339092a86 Install icons and application resources on all Unix platforms.
As discussed on tech-pkg, icons and application resources should be
installed uniformly on all Unix platforms.  Previously, CMakeLists.txt
excluded these on Darwin but not on other Unix platforms.
Consequently, the PLIST was broken on Darwin.  This was fixed with
upstream commit 21d8800ce613775c995212f61d7e95c2189f6da6, which has
been backported here to v3.8.0.

While here, add two buildlink3.mk files, also discussed on tech-pkg,
that should have been present all along but for some reason were not.
2019-02-02 08:48:06 +00:00
tnn
3e0a3f2a03 hackrf: update to 2018.01.1
Please note that if you are on 2015 firmware you must update the SPI flash
and CPLD of your hackrf, otherwise you may experience unpredictable behavior.

See: https://github.com/mossmann/hackrf/wiki/Updating-Firmware

HackRF 2018.01.1
- improved reliability of DFU boot loader

HackRF 2017.02.1
- Sweep mode
- Hardware synchronization
- reduced power consumption
- bug fixes
2019-02-02 08:44:44 +00:00
markd
d0ba927cb8 gnupg2: teach about PKG_SYSCONFDIR and VARBASE 2019-02-02 03:38:30 +00:00
markd
a0c76870b8 more tex package updates and additions 2019-02-02 02:54:58 +00:00
markd
6653b258b8 texlive-collection-latexextra: add tex-{bigfoot,keycommand,semantic} 2019-02-02 02:52:09 +00:00
markd
65cfb8135a print: add tex-bigfoot{,-doc} tex-keycommand{,-doc} tex-semantic{,-doc} 2019-02-02 02:49:43 +00:00
markd
2622c0400c tex-semantic{,-doc}: Added version 2.0
Eases the typesetting of notation of semantics and compilers.
Includes T-diagrams, various derivation symbols and inference
trees.
2019-02-02 02:46:55 +00:00
markd
54a0153eec tex-keycommand{,-doc}: Added version 3.1415
The package (which requires e-TeX) provides a natural way to
define commands with optional keys. The package provides
\newkeycommand, \renewkeycommand, \providekeycommand,
\newkeyenvironment and \renewkeyenvironment, together with
\keycmd for a more advanced interface. The package is based on
kvsetkeys by Heiko Oberdiek.
2019-02-02 02:45:45 +00:00
markd
37be2fa607 tex-bigfoot{,-doc}: Added version 2.1
The package aims to provide a 'one-stop' solution to
requirements for footnotes. It offers: Multiple footnote
apparatus superior to that of manyfoot Footnotes can be
formatted in separate paragraphs, or be run into a single
paragraph (this choice may be selected per footnote series);
Things you might have expected (such as \verb-like material in
footnotes, and colour selections over page breaks) now work.
Note that the majority of the bigfoot package's interface is
identical to that of manyfoot; users should seek information
from that package's documentation. The bigfoot bundle also
provides the perpage and suffix packages.
2019-02-02 02:44:20 +00:00
markd
e6cea5e120 texlive-collection-pictures: add tex-pgf-umlsd 2019-02-02 02:14:58 +00:00
markd
0f4a20bb8e graphics: add tex-pgf-umlsd{,-doc} 2019-02-02 02:12:55 +00:00
markd
4ad2bc9218 tex-pgf-umlsd{,-doc}: Add version 0.7
LaTeX macros to draw UML diagrams using pgf
2019-02-02 02:11:33 +00:00
markd
dd04bea0db texlive2pkg: update to 1.4
more license mappings
2019-02-02 01:55:52 +00:00
markd
e58a4fcc85 tex-tetex{,-doc}: update to 3.0.49829
updates to fmtutil
2019-02-02 01:48:53 +00:00
markd
3b339ac1f8 tex-texlive.infra: update to 2018.49228
changes unknown
2019-02-02 01:27:36 +00:00
markd
da7a1e7e88 tex-texlive-scripts: update to 2018.49884
some strings renamed from _foo_md5 to _foo_checksum
2019-02-02 01:11:17 +00:00
markd
8fe0b3e1b6 texlive-collection-metapost: update to 2018.48753
add tex-metapost-colorbrewer
2019-02-02 00:47:27 +00:00
markd
4f7324fc90 graphics: add tex-metapost-colorbrewer{,-doc} 2019-02-02 00:37:34 +00:00
markd
c684cfdb5d tex-metapost-colorbrewer{,-doc}: add version 2018
This package provides two MetaPost include files that define
all the colorbrewer2.org colours: colorbrewer-cmyk.mp
colorbrewer-rgb.mp The first defines all the colours as CMYK,
the second as RGB. Use whichever one you prefer. For an example
of what you can do, and a list of all the names, have a look at
colorbrewer-sampler.mp. You can also see the names on
http://colorbrewer2.org.
2019-02-02 00:35:39 +00:00
markd
5c7a78a4b4 texlive-collection-publishers: update to rev 49889 2019-02-02 00:22:14 +00:00
markd
06ce1c6ed9 texlive-collection-langchinese: update to rev 49876 2019-02-02 00:20:18 +00:00
markd
3231801150 texlive-collection-latexextra: update to rev 49867 2019-02-02 00:18:16 +00:00
markd
9f874db44c texlive-collection-pictures: update to rev 49864 2019-02-02 00:15:01 +00:00
markd
d951d22b4b texlive-collection-fontsextra: update to rev 49835 2019-02-02 00:12:51 +00:00
markd
f55e21e4b3 texlive-collection-binextra: add tex-texdoctk 2019-02-02 00:08:33 +00:00
markd
8064cab462 tex package updates 2019-02-01 23:39:50 +00:00
markd
d9c3f1e62d print: add tex-texdoctk{,-doc} 2019-02-01 23:36:58 +00:00
markd
ca91fc107d tex-texdoctk{,-doc}: added version 0.6.0
A Perl/Tk-based GUI for easy access to package documentation
for TeX on Unix platforms; the databases it uses are based on
the texmf/doc subtrees of teTeX, but database files for local
configurations with modified/extended directories can be
derived from them. Note that texdoctk is not a viewer itself,
but an interface for finding documentation files and opening
them with the appropriate viewer; so it relies on appropriate
programs to be installed on the system. However, the choice of
these programs can be configured by the sysadmin or user. Now
only distributed as part of TeX Live, which includes a Windows
executable.
2019-02-01 23:35:50 +00:00
markd
303bb4a29d tex-texdoc{,-doc}: update to 2018.47946 (3.0)
This is a big update for Texdoc since 2012!
There are two big features in Texdoc 3.0.


1. New option parser

Now, you can specify multiple options like:

	$ texdoc -vsl foo

(this is equivalent to specifying "-v -s -l")

Please note that the behavior of the short option "-d" have
been changed. It *requires* an argument without "=", e.g.:

	$ texdoc -d score bar

(this is equivalent to specifying "--debug=score")

We added a new option "-D" as a short version of "--debug=all".
Please see the help text for more details.


2. Fuzzy search

When the normal search can't find any document in TeX Live,
Texdoc will execute fuzzy search on the list of package names
without user-interactions. The results of fuzzy search are
shown by "info" message.
(you can see that with the command line option "-v")

The default allowance of Levenshtein distance is 5.
You can change this default value by specifying "fuzzy_level"
in your texdoc.cnf:

	fuzzy_level = 3

If "fuzzy_level" set to 0, the feature will be disabled.


This update also contains several small bug fixes and improvements.

One more thing (IMPORTANT for distributors): from v3.0, we won't
include Data.tlpdb.lua (the pseudo cache file) in our repository.
If your distribution do not ship the tlpdb, you have to pre-generate
the pseudo cache file to make Texdoc workable.
2019-02-01 23:31:07 +00:00
markd
a3de6697ad tex-updmap-map: update to 2018.49829
regen
2019-02-01 22:57:36 +00:00
schmonz
3eb9d5ba83 doc: Updated net/ucspi-tcp6 to 1.10.2 2019-02-01 22:54:48 +00:00
schmonz
3e4e41e325 Update to 1.10.2. From the changelog:
- Added support for parsing natively lines with ':' (colons) within
  environment variables for tcprules.
- Fixed bug in tcprules abending with certain with IPv4/CIDR addresses.
- New installation PREFIX is now 'net' (and not 'host').
2019-02-01 22:54:38 +00:00
markd
562bb1cd5c tex-l3kernel{,-doc},tex-l3experimental: update to 2018.49853
## [2019-01-28]

### Added

- Global versions of box affine functions, e.g. `\box_grotate:Nn`
- Global versions of box size adjustment functions
- `\box_(g)set_eq_drop:NN`, `\(h|v)box_unpack_drop:N`
- `\file_get:nnN` and `\file_get:nnNTF`
- Experimental functions `\sys_shell_get:nnN` and `\sys_shell_get:nnNTF`

### Changed

- `\char_generate:nn` now always takes exactly two expansions
- Move `\prg_generate_conditional_variant:Nnn` to stable
- Renamed experimental `\box_trim:Nnnnn` and `\box_viewport:Nnnnn` as
  `\box_set_trim:Nnnnn` and `\box_set_viewport:Nnnnn`, respectively

### Deprecated

- `\box_(g)set_eq_clear:NN`, replaced by `\box_(g)set_eq_drop:NN`
- `\(h|v)box_unpack_clear:N`, replaced by `\(h|v)box_unpack_drop:N
- `\tl_(g)set_from_file(_x):Nnn`, replaced by `\file_get:nnN`

### Fixed

- Scope treatment of `\box_set_dp:N`, _etc._
- In (u)platex: detection of spaces in `\tl_rescan:nn` and related
  functions

### Removed

- Experimental function family `\tl_(g)set_from_shell:(N|c)nn`
  (replaced by `\sys_shell_get:nnN`)
2019-02-01 22:52:04 +00:00
markd
81fa69681a tex-tex4ht{,-doc}: update to 2018.49879
changes unknown
2019-02-01 22:42:55 +00:00
markd
b9f1502473 tex-make4ht{,-doc}: update to 0.2e
Updated the otdtemplate filter - styles from the template ODT and the
generated ODT files are joined together. This is necessary to support
additional styles added by tex4ht.
2019-02-01 22:35:04 +00:00
markd
d125a3447f tex-babel-french: update to 3.5d
-- Option ReduceListSpacing depreciated in favor of StandardListSpacing.

-- Bug fix: \frquote{} failed to print French guillemets in bookmarks.

-- Extensive documentation in French is now available on CTAN.
2019-02-01 22:29:06 +00:00