Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (7h)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (168d) 

2024-05-27 04:07:35 UTC Now

2022-08-22 10:52:57 UTC MAIN commitmail json YAML

doc: Updated net/SDL2_net to 2.2.0

(wiz)

2022-08-22 10:52:46 UTC MAIN commitmail json YAML

2022-08-22 10:51:21 UTC MAIN commitmail json YAML

doc: Updated devel/SDL2 to 2.24.0

(wiz)

2022-08-22 10:51:11 UTC MAIN commitmail json YAML

SDL2: update to 2.24.0.

---------------------------------------------------------------------------
2.24.0:
---------------------------------------------------------------------------

General:
* New version numbering scheme, similar to GLib and Flatpak.
    * An even number in the minor version (second component) indicates a production-ready stable release such as 2.24.0, which would have been 2.0.24 under the old system.
      * The patchlevel (micro version, third component) indicates a bugfix-only update: for example, 2.24.1 would be a bugfix-only release to fix bugs in 2.24.0, without adding new features.
    * An odd number in the minor version indicates a prerelease such as 2.23.0. Stable distributions should not use these prereleases.
      * The patchlevel indicates successive prereleases, for example 2.23.1 and 2.23.2 would be prereleases during development of the SDL 2.24.0 stable release.
* Added SDL_GetPointDisplayIndex() and SDL_GetRectDisplayIndex() to get the display associated with a point and rectangle in screen space
* Added SDL_bsearch(), SDL_crc16(), and  SDL_utf8strnlen() to the stdlib routines
* Added SDL_CPUPauseInstruction() as a macro in SDL_atomic.h
* Added SDL_size_mul_overflow() and SDL_size_add_overflow() for better size overflow protection
* Added SDL_ResetHint() to reset a hint to the default value
* Added SDL_ResetKeyboard() to reset SDL's internal keyboard state, generating key up events for all currently pressed keys
* Added the hint SDL_HINT_MOUSE_RELATIVE_WARP_MOTION to control whether mouse warping generates motion events in relative mode. This hint defaults off.
* Added the hint SDL_HINT_TRACKPAD_IS_TOUCH_ONLY to control whether trackpads are treated as touch devices or mice. By default touchpads are treated as mouse input.
* The hint SDL_HINT_JOYSTICK_HIDAPI_JOY_CONS now defaults on
* Added support for mini-gamepad mode for Nintendo Joy-Con controllers using the HIDAPI driver
* Added the hint SDL_HINT_JOYSTICK_HIDAPI_COMBINE_JOY_CONS to control whether Joy-Con controllers are automatically merged into a unified gamepad when using the HIDAPI driver. This hint defaults on.
* The hint SDL_HINT_JOYSTICK_HIDAPI_SWITCH_HOME_LED can be set to a floating point value to set the brightness of the Home LED on Nintendo Switch controllers
* Added the hint SDL_HINT_JOYSTICK_HIDAPI_JOYCON_HOME_LED to set the Home LED brightness for the Nintendo Joy-Con controllers. By default the Home LED is not modified.
* Added the hint SDL_HINT_JOYSTICK_HIDAPI_SWITCH_PLAYER_LED to control whether the player LED should be lit on the Nintendo Joy-Con controllers
* Added support for Nintendo Online classic controllers using the HIDAPI driver
* Added the hint SDL_HINT_JOYSTICK_HIDAPI_NINTENDO_CLASSIC to control whether the HIDAPI driver for Nintendo Online classic controllers should be used
* Added support for the NVIDIA Shield Controller to the HIDAPI driver, supporting rumble and battery status
* Added support for NVIDIA SHIELD controller to the HIDAPI driver, and a hint SDL_HINT_JOYSTICK_HIDAPI_SHIELD to control whether this is used
* Added functions to get the platform dependent name for a joystick or game controller:
    * SDL_JoystickPathForIndex()
    * SDL_JoystickPath()
    * SDL_GameControllerPathForIndex()
    * SDL_GameControllerPath()
* Added SDL_GameControllerGetFirmwareVersion() and SDL_JoystickGetFirmwareVersion(), currently implemented for DualSense(tm) Wireless Controllers using HIDAPI
* Added SDL_JoystickAttachVirtualEx() for extended virtual controller support
* Added joystick event SDL_JOYBATTERYUPDATED for when battery status changes
* Added SDL_GUIDToString() and SDL_GUIDFromString() to convert between SDL GUID and string
* Added SDL_HasLSX() and SDL_HasLASX() to detect LoongArch SIMD support
* Added SDL_GetOriginalMemoryFunctions()
* Added SDL_GetDefaultAudioInfo() to get the name and format of the default audio device, currently implemented for PipeWire, PulseAudio, WASAPI, and DirectSound
* Added HIDAPI driver for the NVIDIA SHIELD controller (2017 model) to enable support for battery status and rumble
* Added support for opening audio devices with 3 or 5 channels (2.1, 4.1). All channel counts from Mono to 7.1 are now supported.
* Rewrote audio channel converters used by SDL_AudioCVT, based on the channel matrix coefficients used as the default for FAudio voices
* SDL log messages are no longer limited to 4K and can be any length
* Fixed a long-standing calling convention issue with dynapi affecting OpenWatcom or OS/2 builds

Windows:
* Added initial support for building for Windows and Xbox with Microsoft's Game Development Kit (GDK), see docs/README-gdk.md for details
* Added a D3D12 renderer implementation and SDL_RenderGetD3D12Device() to retrieve the D3D12 device associated with it
* Added the hint SDL_HINT_WINDOWS_DPI_AWARENESS to set whether the application is DPI-aware. This hint must be set before initializing the video subsystem
* Added the hint SDL_HINT_WINDOWS_DPI_SCALING to control whether the SDL coordinates are in DPI-scaled points or pixels
* Added the hint SDL_HINT_DIRECTINPUT_ENABLED to control whether the DirectInput driver should be used
* Added support for SDL_GetAudioDeviceSpec to the DirectSound backend

Linux:
* Support for XVidMode has been removed, mode changes are only supported using the XRandR extension
* Added the hint SDL_HINT_VIDEO_WAYLAND_MODE_EMULATION to control whether to expose a set of emulated modes in addition to the native resolution modes available on Wayland
* Added the hint SDL_HINT_KMSDRM_DEVICE_INDEX to specify which KMSDRM device to use if the default is not desired
* Added the hint SDL_HINT_LINUX_DIGITAL_HATS to control whether to treat hats as digital rather than checking to see if they may be analog
* Added the hint SDL_HINT_LINUX_HAT_DEADZONES to control whether to use deadzones on analog hats

macOS:
* Bumped minimum OS deployment version to macOS 10.9
* Added SDL_GL_FLOATBUFFERS to allow Cocoa GL contexts to use EDR
* Added the hint SDL_HINT_MAC_OPENGL_ASYNC_DISPATCH to control whether dispatching OpenGL context updates should block the dispatching thread until the main thread finishes processing. This hint defaults to blocking, which is the safer option on modern macOS.

(wiz)

2022-08-22 10:44:25 UTC MAIN commitmail json YAML

doc: Updated textproc/libcyaml to 1.3.1

(wiz)

2022-08-22 10:44:16 UTC MAIN commitmail json YAML

libcyaml: update to 1.3.1.

## LibCYAML v1.3.1

* **Loading**:
  * Fixed value out-of-range detection limits for signed integers.

## LibCYAML v1.3.0

* **Saving**:
  * New flags allow control over scalar output style.
    - For example to force single or double quote style.
* **General**:
  * Buildsystem changes to allow use of CPPFLAGS from the environment.

## LibCYAML v1.2.1

* **General**:
  * Support for dynamic library build on Mac OS X.
  * Ordered designated initialisers in public header for C++ compatibility.

(wiz)

2022-08-22 10:39:22 UTC MAIN commitmail json YAML

doc: Updated textproc/hs-cassava to 0.5.3.0

(wiz)

2022-08-22 10:39:13 UTC MAIN commitmail json YAML

hs-cassava: update to 0.5.3.0.

## Version 0.5.3.0

* Improve error messages for `lookup` and NamedRecord parsers (#197)
* Fix bug (infinite loop) in `FromField Const` instance (#185)
* Turn flag `bytestring--LT-0_10_4` off by default (#183)
* Doc: Add cassava usage example of reading/writing to file (#97)
* Update to latest version of dependencies (#190, #193, #199)
* Tested with GHC 7.4 - 9.4 (#184, #204)

(wiz)

2022-08-22 10:37:09 UTC MAIN commitmail json YAML

doc: Updated graphics/hs-JuicyPixels to 3.3.8

(wiz)

2022-08-22 10:37:00 UTC MAIN commitmail json YAML

hs-JuicyPixels: update to 3.3.8.

v3.3.8 July 2022
----------------

* Dependence fidling
* Jpg: do not call "error" in the parser, use fail instead.

v3.3.7 March 2022
-----------------

* Jpg: Fixing renderng bug with MCUs with single block in width and
  multiple in height

(wiz)

2022-08-22 10:32:16 UTC MAIN commitmail json YAML

2022-08-22 10:30:17 UTC MAIN commitmail json YAML

2022-08-22 10:28:57 UTC MAIN commitmail json YAML

doc: Updated devel/hs-ListLike to 4.7.7

(wiz)

2022-08-22 10:28:48 UTC MAIN commitmail json YAML

hs-ListLike: update to 4.7.7.

### 4.7.7 (2022-05-26)

  - methods `sequence` and `mapM`: relax `Monad` constraint to `Applicative`
  - `LANGUAGE TypeOperators` to fix GHC 9.4 warning
  - allow `text-2.0`
  - tested with GHC 7.10 - 9.4

(wiz)

2022-08-22 10:25:17 UTC MAIN commitmail json YAML

doc: Updated devel/hs-cborg to 0.2.7.0

(wiz)

2022-08-22 10:25:08 UTC MAIN commitmail json YAML

hs-cborg: update to 0.2.7.0.

Changes not documented.

Add upstream patch to fix build.

(wiz)

2022-08-22 10:20:37 UTC MAIN commitmail json YAML

2022-08-22 10:17:39 UTC MAIN commitmail json YAML

2022-08-22 10:15:40 UTC MAIN commitmail json YAML

2022-08-22 10:13:26 UTC MAIN commitmail json YAML

2022-08-22 10:11:36 UTC MAIN commitmail json YAML

doc: Updated devel/hs-vector-algorithms to 0.9.0.1

(wiz)

2022-08-22 10:11:27 UTC MAIN commitmail json YAML

hs-vector-algorithms: update to 0.9.0.1.

## Version 0.9.0.1 (2022-07-28)

- Allow building with vector-0.13.*.

## Version 0.9.0.0 (2022-05-19)

- Add nub related functions.
- Add sortUniq related functions (sorts, then removes duplicates).

(wiz)

2022-08-22 10:06:41 UTC MAIN commitmail json YAML

doc: Added devel/hs-bitvec version 1.1.3.0

(wiz)

2022-08-22 10:06:27 UTC MAIN commitmail json YAML

devel/Makefile: + hs-bitvec

(wiz)

2022-08-22 10:06:14 UTC MAIN commitmail json YAML

devel/hs-bitvec: import hs-bitvec-1.1.3.0

A newtype over Bool with a better Vector instance: 8x less memory,
up to 1000x faster.

(wiz)

2022-08-22 09:58:12 UTC MAIN commitmail json YAML

2022-08-22 09:44:48 UTC MAIN commitmail json YAML

2022-08-22 09:11:41 UTC MAIN commitmail json YAML

auctex: remove xemacs from supported emacsen

From the release notes of 12.1 - xemacs support has been removed.

(wiz)

2022-08-22 08:59:37 UTC MAIN commitmail json YAML

update to cppcheck, p5-GitLab-API-v4, pstoedit and auctex

(markd)

2022-08-22 08:49:44 UTC MAIN commitmail json YAML

auctex: update to 13.1

News in 13.1
* In math environments 窶枠ather窶�, 窶枠ather*窶�, 窶枠athered窶�, 窶藁ultline窶� and
  窶藁ultline*窶�, fill commands such as M-q and C-c C-q C-e are disabled.
* Now two commands 窶狼exindex窶� and 窶狼exi2dvi窶� are available when you type
  C-c C-c in Texinfo mode. The command 窶狼exindex窶� runs texindex on index
  files and 窶狼exi2dvi窶� runs pdftexi2dvi or texi2dvi according to the value
  of TeX-PDF-mode.
* AUCTeX窶冱 own help messages for LaTeX errors are now shown only for LaTeX runs.
* Two functions TeX-split-string and TeX-assoc are now obsolete and will be
  removed in future release.
* The function TeX-read-key-val now accepts a function call as second argument.
* AUCTeX now requires GNU Emacs 24.3 or higher.
* Old implementations for viewers were discarded, as announced long before.
* AUCTeX now uses lexical binding which has been introduced in Emacs 24.
* The constant LaTeX-dialect has been renamed to TeX-dialect and moved from
  窶詫atex.el窶� to 窶�tex.el窶�. LaTeX-dialect now is an obsolete alias.
* The style 窶詫atexinfo.el窶� is removed from AUCTeX.
* The style 窶�siunitx.el窶� is updated to support package version 3.
* AUCTeX has preliminary support for LaTeX-hooks.
* Many other bugs were fixed.

News in 12.3
* Support for 窶榔STricks窶� is now PDF-oriented.
* The function font-latex-update-font-lock has been obsoleted.
* Math expression highlighting was improved.
* AUCTeX tracks changes in LaTeX2e 2020-02-02 release.
* More bugs fixed, other minor features implemented.

News in 12.2
* AUCTeX reflects the changes in LaTeX2e 2019-10-01 release.
* A new method is implemented in preview-latex to adjust the foreground
  colors of generated images to those of Emacs, when the LaTeX command
  produces PDF.
* AUCTeX has support for the Flymake package in Emacs 26 or newer.
* The way the option TeX-record-buffer is used was corrected.
* Several other bugs were fixed, many minor features were added.

News in 12.1
* AUCTeX now requires GNU Emacs 24 or higher. Support for XEmacs has been dropped.

(markd)

2022-08-22 08:31:01 UTC MAIN commitmail json YAML

hwloc: explicitly disable opencl

(markd)

2022-08-22 08:23:19 UTC MAIN commitmail json YAML

pstoedit: update to 3.78

New or changed in 3.78:
* Bug fix. pstoedit did not find older versions of GhostScript under Windows.
* Support for mawk in creation of pstoedit.ph header file. mawk is often used on
  build servers in place of gawk.
New or changed in 3.77:
* Some small update to comply with some Debian requirements.
New or changed in 3.76:
* Added experimental support for filled objects in DXF output using the HATCH
  element of DXF.
* Fixed a problem when running pstoedit with output to standard output instead of
  a file.
* Adapted to new versioning scheme of GhostScript.
* Additional backend for pcb-rnd contributed by Erich Heinzle.
* Some additional options in WEMF driver.
* Better handling of bounding box in EMF output. Contributed by Samuel Thibault.
* Better handling of metric option in fig driver.

(markd)

2022-08-22 08:19:12 UTC MAIN commitmail json YAML

Switch mate-control-center from desktopdb.mk to full desktop-file-utils buildlink

(abs)

2022-08-22 08:18:25 UTC MAIN commitmail json YAML

Switch gnome-terminal from desktopdb.mk to full desktop-file-utils buildlink

Bump PKGREVISION

(abs)

2022-08-22 08:17:30 UTC MAIN commitmail json YAML

opencv: explicitly disable java

(markd)

2022-08-22 08:15:33 UTC MAIN commitmail json YAML

blender: explicitly disable POTRACE

(markd)

2022-08-22 08:12:47 UTC MAIN commitmail json YAML

2022-08-22 08:01:15 UTC MAIN commitmail json YAML

p5-GitLab-API-v4: update to 0.26

0.26 2021-01-30T07:10:57Z
- Changed licensing terms to be the same as Perl 5.
- Add the user_memeberships method.
- Remove file renaming before upload.
- Provide a .editorconfig instead of .lvimrc.

(markd)

2022-08-22 07:53:17 UTC MAIN commitmail json YAML

cppcheck: update to 2.8

Cppcheck-2.8
* Lifetime analysis can now track lifetime across user-defined constructors when
  they are inline and using member initializer list.
* SymbolDatabase can now deduce iterator types from how they are specified in the
  library files.
* ValueFlow can evaluate class member functions that return known values.
* Improve duplicateValueTenary to not warn when used as an lvalue or when one
  branch has side effects
* Fix variableScope to not warn when variables are used in lambda functions
* Fix unassignedVariable warnings when using structured bindings
* Fix redundantInitialization warning when variable is used in a lambda
* Fix variableScope warnings when using if/while init-statement
* Improve lifetime analysis when returning variadic template expressions
* Detect more statements with constStatement
* Detect variableScope for more types
* Improvements to unreadVariable
* Detect more instances of C style casts
* Warn if the return value of new is discarded
* The pre-ValueFlow uninitialized checker now uses a different ID as legacyUninitvar
* Extended library format to exclude specific function argument values

Cppcheck-2.7
* Add support for container views.
* Various checker improvements.
* Fixed false positives.

Cppcheck-2.6
* Color output for diagnostics are added for unix-based platforms.
* Added symbolic analysis for ValueFlow. A simple delta is used to compute the
  difference between two unknown variable.
* Rules using the "define" tokenlist can also match #include as well.
* Library <function> tags can now use <container> tag, so free functions that
  accept containers such as std::size, std::empty, std::begin, std::end, etc. can
  specify the yields or action for the container.
* Library <smart-pointer> tag can specify a <unique> tag for smart pointers that
  have unique ownership.
* Fixed problems when --cppcheck-build-dir is used, that should now work better.
* htmlreport can now output author information (using git blame)
* More warnings about variables that is not const but can be const

(markd)

2022-08-22 07:44:12 UTC MAIN commitmail json YAML

Updated security/oath-toolkit to 2.6.7

(sborrill)

2022-08-22 07:42:52 UTC MAIN commitmail json YAML

oath-toolkit: update to 2.6.7

Changes since 2.4.1:

Version 2.6.7 (released 2021-05-01)

    pam_oath: Support variables in usersfile string parameter.  the
usersfile string in the pam_oath configuration file.  The placeholder values
allow the user credentials file to be stored in a file path that is relative
to the user, and mimics similar behavior found in
google-authenticator-libpam.

The motivation for these changes is to allow for non-privileged processes to
use pam_oath (e.g., for 2FA with xscreensaver).  Non-privileged and non-suid
programs are unable to use pam_oath.  These changes are a proposed
alternative to a suid helper binary as well.

Thanks to Jason Graham for the patch.  See
https://gitlab.com/oath-toolkit/oath-toolkit/-/merge_requests/12.

    doc: Fix project URL in man pages.  Thanks to Jason Graham
for the patch.  Fixes
https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/19.

    build: Drop use of libxml's AM_PATH_XML2 in favor of pkg-config.

    build: Modernize autotools usage.  Most importantly, no longer use
-Werror with AM_INIT_AUTOMAKE to make rebuilding from source more safe with
future automake versions.

    Updated gnulib files.

Version 2.6.6 (released 2021-01-20)

    oathtool: Handle HOTP --counter values larger than 0x7FFFFFFFFFFFFFFF.
Thanks to Jason Lai for report.

    doc: GTK-DOC manual improvements.

    Updated gnulib files.  Fixes test-parse-datetime self-check.  Fixes
https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/20.

Version 2.6.5 (released 2020-12-29)

    oathtool: Support for reading KEY and OTP from standard input or
filename.  KEY and OTP may now be given as - to mean stdin, or @FILE to read
from a particular file.  This is recommended on multi-user systems, since
secrets as command line parameters leak.  Based on a patch from Ian Jackson.
Fixes #6.

    pam_oath: Fix unlikely logic fail on out of memory conditions.  Patch
from Matthias Gerstner.

    Doc fixes.

Version 2.6.4 (released 2020-11-11)

    libpskc: New --with-xmlsec-crypto-engine to hard-code crypto engine.
Fixes https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/16.  Use it like
--with-xmlsec-crypto-engine=gnutls or --with-xmlsec-crypto-engine=openssl if
the default dynamic loading fails because of runtime linker search path
issues.

    oathtool --totp --verbose now prints TOTP hash mode.  Fixes
https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/4.

    oathtool: Hash names (e.g., SHA256) for --totp are now upper case.
Fixes https://gitlab.com/oath-toolkit/oath-toolkit/-/issues/3.  Lower/mixed
case hash names are supported for compatibility.

    pam_oath: Fail gracefully for missing users.  Fixes
https://savannah.nongnu.org/support/index.php?109111.  This allows you to
incrementally add support for OATH authentication instead of forcing it on
all users.  See updated pam_oath/README on the [user_unknown=ignore
success=ok] parameter that can now be supplied to PAM configuration.  Patch
by Antoine Beaupra

    Fix libpskc memory corruption bug.  Fixes
https://savannah.nongnu.org/support/?108736.  Thanks to David Woodhouse and
Jaroslav A karvada for report, self check and patch.

    Fix man pages.  Fixes https://savannah.nongnu.org/support/?108312.
Thanks to Jaroslav A karvada for the patch.

    Build fixes.

Version 2.6.3 (released 2020-11-07)

    pam_oath: Fix self-tests.

    build: Update gnulib. Fix compiler warnings.

    Doc fixes.

Version 2.6.2 (released 2016-08-27)

    doc: Version controlled source code repository moved to GitLab.

Version 2.6.1 (released 2015-07-31)

    liboath: Fix make check on 32-bit systems.  Report and patch by
Christian Hesse.

Version 2.6.0 (released 2015-05-19)

    liboath: Support TOTP with HMAC-SHA256 and HMAC-SHA512.  This adds new
APIs oath_totp_generate2, oath_totp_validate4 and
oath_totp_validate4_callback.

    oathtool: The --totp parameter now take an optional argument to specify
MAC.  For example use --totp=sha256 to use HMAC-SHA256.  When --totp is used
the default HMAC-SHA1 is used, as before.

    pam_oath: Mention in README that you shouldn???t use insecure keys.
Suggested by Robin.

    pam_oath: Check return value from strdup.  Patch by Eero Hakkinen.

    The files gdoc and expect.oath are now included in the tarball.
Suggested by Jaroslav A karvada.

(sborrill)

2022-08-22 07:39:09 UTC MAIN commitmail json YAML

apel: allow emacs28

(markd)

2022-08-22 07:37:13 UTC MAIN commitmail json YAML

rrdtool: explicitly disable librados

(markd)

2022-08-22 06:52:40 UTC MAIN commitmail json YAML

Updated finance/py-stripe, devel/py-setuptools-rust

(adam)

2022-08-22 06:52:22 UTC MAIN commitmail json YAML

py-setuptools-rust: updated to 1.5.1

1.5.1 (2022-08-14)
Fixed
- Fix regression in `get_lib_name` crashing since 1.5.0.
- Fix regression in `Binding.Exec` builds with multiple executables not finding built executables since 1.5.0.

(adam)

2022-08-22 06:50:21 UTC MAIN commitmail json YAML

py-stripe: updated to 4.1.0

4.1.0 - 2022-08-19
* API Updates
  * Add support for new resource `CustomerCashBalanceTransaction`
* Add a support section to the readme
* Fix test TestCharge.test_is_saveable().

(adam)

2022-08-21 20:52:52 UTC MAIN commitmail json YAML

2022-08-21 20:51:32 UTC MAIN commitmail json YAML

updates to p5-Convert-ASN1 and p5-DBIx-SearchBuilder

(markd)

2022-08-21 20:44:05 UTC MAIN commitmail json YAML

rt4: Fix bug exposed by perl 5.36

(markd)

2022-08-21 20:38:27 UTC MAIN commitmail json YAML

p5-DBIx-SearchBuilder: update to 1.71

1.71 2021-09-24
- Add dot to load utils in tests for perl 5.26+

1.70 2021-09-24
- Enable queries processed with BuildSelectQuery and BuildSelectCountQuery
  to use bind variables

1.69 2021-01-20
- New option to quote tablenames in queries, enabled automatically for MySQL 8
- Updated tests for new MySQL 8 reserved words and tablename quoting

(markd)

2022-08-21 20:31:59 UTC MAIN commitmail json YAML

p5-Convert-ASN1: update to 0.33

0.33 -- Wed Sep 22 19:49:53 ADT 2021

  * Official CPAN release of 0.33

0.32 -- Tue Sep 21 18:45:20 ADT 2021

  * examples/x509decode: parameters are optional for AlgorithmIdentifier when
    using [ec]dsa algorithms
  * t/19issue14.t: issue with warnings
  * Fixes Redundant argument in printf warning
  * examples/x509decode: fix prototype error
  * examples/ldap: fix asn1_dump not working

0.31 -- Wed Jun 02 22:28:29 ADT 2021

  * Official CPAN release of 0.30

0.30 -- Sat May 29 21:56:29 ADT 2021

  * Fixes #43 - Perl 5.35.1 makes scalar assignment to undef a compile time error

0.29 -- Mon May 24 18:27:46 ADT 2021

  * Release Version no changes from 0.28
  * Increment Version in Makefile.PL

0.28 -- Sun May 23 18:03:47 ADT 2021

  * Add github actions for repo testing and add new maintainer [Timothy Legge]
  * typo fix [Adam Leskis]
  * Fix test failures under Perl 5.26+ without '.' in @INC [Kent Fredric (KENTNL)]
  * Correct a typo - SYNOPSIS [Shlomi Fish]
  * unsafe decoding CVE-2013-7488 [Dana Jacobsen]
  * Typo fixes from dsteinbrunner [David Steinbrunner]
  * Add files via upload [Peter Sylvester]

(markd)

2022-08-21 20:20:30 UTC MAIN commitmail json YAML

xentools415: add dependency on zstd

allows recent archlinux as domu otherwise get the error:
xc: error: panic: xg_dom_bzimageloader.c:670: xc_try_zstd_decode: \
ZSTD decompress support unavailable

(markd)

2022-08-21 17:15:35 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-langarabic to 2022

(wiz)

2022-08-21 17:15:26 UTC MAIN commitmail json YAML

texlive-collection-langarabic: update to 2022.

All missing packages imported.

(wiz)

2022-08-21 17:14:57 UTC MAIN commitmail json YAML

doc: Added print/tex-xepersian-hm-doc version 1.1a

(wiz)

2022-08-21 17:14:47 UTC MAIN commitmail json YAML

doc: Added print/tex-xepersian-hm version 1.1a

(wiz)

2022-08-21 17:14:37 UTC MAIN commitmail json YAML

doc: Added print/tex-xepersian-doc version 24.7

(wiz)

2022-08-21 17:14:27 UTC MAIN commitmail json YAML

doc: Added print/tex-xepersian version 24.7

(wiz)

2022-08-21 17:14:12 UTC MAIN commitmail json YAML

print/Makefile: + tex-xepersian*

(wiz)

2022-08-21 17:13:08 UTC MAIN commitmail json YAML

2022-08-21 17:12:39 UTC MAIN commitmail json YAML

print/tex-xepersian-hm: import tex-xepersian-hm-1.1a

The kashida feature in xepersian has problems with some fonts
such as the HM Series fonts and the XB Series fonts. This
package fixes these problems.

(wiz)

2022-08-21 17:12:04 UTC MAIN commitmail json YAML

2022-08-21 17:11:38 UTC MAIN commitmail json YAML

print/tex-xepersian: import tex-xepersian-24.7

This package provides a convenient interface for typesetting
Persian and English texts in LaTeX, using the XeTeX engine.

(wiz)

2022-08-21 16:50:09 UTC MAIN commitmail json YAML

doc: Updated www/so to 0.4.7

(pin)

2022-08-21 16:49:50 UTC MAIN commitmail json YAML

www/so: update to 0.4.7

Added
- Keybinding: Press y to yank to system clipboard
- New config field for specifying command to copy to system clipboard

(pin)

2022-08-21 16:49:06 UTC MAIN commitmail json YAML

doc: Updated net/trippy to 0.6.0

(pin)

2022-08-21 16:48:46 UTC MAIN commitmail json YAML

net/trippy: update to 0.6.0

0.6.0 - 2022-08-19
Added
-Added support for tracing using IPv6 for tcp (#191)
-Added -R (--multipath-strategy) flag to allow setting the Equal Cost
  Multi-path Routing strategy and added support for the dublin traceroute
  strategies for IPv4/udp (#158)
-Added zoom-able chart showing round trip times for all hops in a trace (#209)
-Added --udp and --tcp flags as shortcuts to -p udp and -p tcp respectively
  (#205)

Changed
-Gray out hops which did not update in the current round (#216)

(pin)

2022-08-21 15:22:24 UTC MAIN commitmail json YAML

doc: Added print/tex-tram-doc version 0.2

(wiz)

2022-08-21 15:22:13 UTC MAIN commitmail json YAML

doc: Added print/tex-tram version 0.2

(wiz)

2022-08-21 15:21:57 UTC MAIN commitmail json YAML

print/Makefile: + tex-tram*

(wiz)

2022-08-21 15:21:41 UTC MAIN commitmail json YAML

2022-08-21 15:21:22 UTC MAIN commitmail json YAML

print/tex-tram: import tex-tram-0.2

Tram boxes are highlighted with patterns of dots; the package
defines an environment tram that typesets its content into a
tram box. The pattern used may be selected in an optional
argument to the environment.

(wiz)

2022-08-21 15:17:59 UTC MAIN commitmail json YAML

doc: Added print/tex-texnegar-doc version 0.1e

(wiz)

2022-08-21 15:17:45 UTC MAIN commitmail json YAML

doc: Added print/tex-texnegar version 0.1e

(wiz)

2022-08-21 15:17:33 UTC MAIN commitmail json YAML

print/Makefile: + tex-texnegar*

(wiz)

2022-08-21 15:17:17 UTC MAIN commitmail json YAML

2022-08-21 15:16:58 UTC MAIN commitmail json YAML

print/tex-texnegar: import tex-texnegar-0.1e

In some cursive scripts such as Persian or Arabic, kashida is
used to create justification. In this type of justification
characters are elongated rather than expanding spaces between
words. The kashida justification in xepersian has many bugs.
Also it has problems with some fonts. The xepersian-hm package
was the first attempt to fix these bugs in xepersian, which
uses the XeTeX engine. This package extends the kashida
justification to be used with the LuaTeX engine, too.
Explanation of the package name: Negar, in Persian, is the
present stem of negaashtan meaning to design, to paint, to
write; and as a noun it means "sweetheart, idol, beloved,
figuratively referring to a beautiful woman, pattern, painting,
and artistic design".

(wiz)

2022-08-21 15:14:48 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-latexextra to 2022pre5

(wiz)

2022-08-21 15:14:38 UTC MAIN commitmail json YAML

texlive-collection-latexextra: + tex-newverbs

Bump version

(wiz)

2022-08-21 15:13:40 UTC MAIN commitmail json YAML

doc: Added print/tex-newverbs-doc version 1.6

(wiz)

2022-08-21 15:13:30 UTC MAIN commitmail json YAML

doc: Added print/tex-newverbs version 1.6

(wiz)

2022-08-21 15:13:19 UTC MAIN commitmail json YAML

print/Makefile: + tex-newverbs*

(wiz)

2022-08-21 15:13:01 UTC MAIN commitmail json YAML

2022-08-21 15:12:37 UTC MAIN commitmail json YAML

print/tex-newverbs: import tex-newverbs-1.6

The package allows the definition of \verb variants which add
TeX code before and after the verbatim text (e.g., quotes or
surrounding \fbox{}). When used together with the shortvrb
package it allows the definition of short verbatim characters
which use this package's variant instead of the normal \verb.
In addition, it is possible to collect an argument verbatim to
either typeset or write it into a file. The \Verbdef command
defines verbatim text to a macro which can later be used to
write the verbatim text to a file.

(wiz)

2022-08-21 14:42:05 UTC MAIN commitmail json YAML

doc: Added print/tex-simurgh-doc version 0.01b

(wiz)

2022-08-21 14:41:43 UTC MAIN commitmail json YAML

doc: Added print/tex-simurgh version 0.01b

(wiz)

2022-08-21 14:41:30 UTC MAIN commitmail json YAML

print/Makefile: + tex-simurgh*

(wiz)

2022-08-21 14:41:07 UTC MAIN commitmail json YAML

2022-08-21 14:40:07 UTC MAIN commitmail json YAML

print/tex-simurgh: import tex-simurgh-0.01b

The package provides an automatic and unified interface for
Parsi typesetting in LaTeX, using the LuaTeX engine. The
project to produce this system is dedicated to Ferdowsi The
Great.

(wiz)

2022-08-21 14:35:05 UTC MAIN commitmail json YAML

tex-hyperxmp: update comments

(wiz)

2022-08-21 14:29:45 UTC MAIN commitmail json YAML

doc: Added print/tex-arabluatex-doc version 1.20

(wiz)

2022-08-21 14:29:34 UTC MAIN commitmail json YAML

doc: Added print/tex-arabluatex version 1.20

(wiz)

2022-08-21 14:29:20 UTC MAIN commitmail json YAML

print/Makefile: + tex-arabluatex*

(wiz)

2022-08-21 14:28:42 UTC MAIN commitmail json YAML

2022-08-21 14:28:16 UTC MAIN commitmail json YAML

print/tex-arabluatex: import tex-arabluatex-1.20

This package provides for LuaLaTeX an ArabTeX-like interface to
generate Arabic writing from an ascii transliteration. It is
particularly well-suited for complex documents such as
technical documents or critical editions where a lot of
left-to-right commands intertwine with Arabic writing.
arabluatex is able to process any ArabTeX input notation. Its
output can be set in the same modes of vocalization as ArabTeX,
or in different roman transliterations. It further allows many
typographical refinements. It will eventually interact with
some other packages yet to come to produce from .tex source
files, in addition to printed books, TEI xml compliant critical
editions and/or lexicons that can be searched, analyzed and
correlated in various ways.

(wiz)

2022-08-21 14:25:58 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-luatex to 2022pre2

(wiz)

2022-08-21 14:25:49 UTC MAIN commitmail json YAML

texlive-collection-luatex: add tex-lua-ul.

Bump version.

(wiz)

2022-08-21 14:25:08 UTC MAIN commitmail json YAML

doc: Added print/tex-lua-ul-doc version 0.2.0

(wiz)

2022-08-21 14:24:36 UTC MAIN commitmail json YAML

doc: Added print/tex-lua-ul version 0.2.0

(wiz)

2022-08-21 14:24:11 UTC MAIN commitmail json YAML

print/Makefile: + tex-lua-ul*

(wiz)

2022-08-21 14:23:55 UTC MAIN commitmail json YAML

2022-08-21 14:23:29 UTC MAIN commitmail json YAML

print/tex-lua-ul: import tex-lua-ul-0.2.0

This package provides underlining, strikethough, and
highlighting using features in LuaLaTeX which avoid the
restrictions imposed by other methods. In particular, kerning
is not affected, the underlined text can use arbitrary
commands, hyphenation works etc. The package requires LuaTeX
version 1.12.0.

(wiz)

2022-08-21 12:29:23 UTC MAIN commitmail json YAML

hdevtools: remove

Marked BROKEN since January 2020, does not support current ghc versions

(wiz)

2022-08-21 12:26:58 UTC MAIN commitmail json YAML

hs-ghc-mtl: remove

Marked BROKEN since May 2021 since it doesn't work with current
ghc versions.

(wiz)

2022-08-21 11:43:04 UTC MAIN commitmail json YAML

doc: Added lang/go119 version 1.19

(bsiegert)

2022-08-21 11:42:19 UTC MAIN commitmail json YAML

2022-08-21 11:28:35 UTC MAIN commitmail json YAML

doc: Updated www/hugo to 0.101.0

(bsiegert)

2022-08-21 11:28:11 UTC MAIN commitmail json YAML

hugo: update to 0.101.0

v0.101.0

Hugo v0.101.0 comes with GIF animation image processing, a new hl_inline option
for code highlighting, a new :slugorfilename permalink keyword, we now respect
the NO_COLOR OS env var, and more.

v0.100.2

This release is mostly motivated by the fix for the panic experienced by people
having blackfriday configured as defaultMarkdownHandler. The Blackfriday
support was removed in Hugo v0.100.0 after being deprecated with a warning for
a long time.

v0.100.1

Fix panic with markdownify/RenderString with shortcode on Page with no content
file.

v0.100.0

$page.RenderString finally supports shortcodes, and shortcode improvements is
the main theme in Hugo 0.100.0.

Indentation fixes for shortcode blocks: We now record the indentation before
the opening shortcode tag when parsing the source. This allow us to fix a
couple of annoying issues in Hugo:

1. We have added a new .InnerIndent method to the shortcode context to prevent
  the highlight shortcode from including in the indentation as part of the
  code block.
2. Hugo now preserves the indentation for shortcode blocks. See more below.

A shortcode block is when the shortcode is included as the first non-whitespace
content on a line. Note that this does not touch shortcodes with inner content,
where the user is in control of the indentation.

Also noteworthy is the new template function resources.Copy which allows you to
copy almost any Hugo Resource (the one exception is the Page), possibly most
useful for renaming things.

(bsiegert)

2022-08-21 08:41:07 UTC MAIN commitmail json YAML

doc/TODO: add some

+ MesaLib-22.1.7, SDL2_net-2.2.0, SDL2_ttf-2.20.1, fish-3.5.1,
  gopls-0.9.4, libatomic-12.2.0, musicpd-0.23.9, polkit-0.121,
  py-borgbackup-1.2.2, rsync-3.2.5, rust-analyzer-0.0.20220815.

(wiz)

2022-08-21 04:09:29 UTC MAIN commitmail json YAML

doc: Updated www/jira-cli to 1.1.0

(fox)

2022-08-21 04:08:50 UTC MAIN commitmail json YAML

www/jira-cli: Update to 1.1.0

Changes since 1.0.0:

This release fixes the issue with screen flickering and insecure TLS config +
adds some features.

## What's added?
- feat: Ability to add worklog by @ankitpokhrel in #410
- feat: Make selection highlight customizable by @ankitpokhrel in #419

## What's fixed?
- fix: Flickering issue by @ankitpokhrel in #436
- fix: Issue with insecure TLS config by @ankitpokhrel in #413
- fix: Issue with default assignee and unassign from tui by @ankitpokhrel in
  #405
- fix(minor): Use pointer receiver to avoid heavy copying by @ankitpokhrel
  in #426

## Other notable changes
- ehc: Increase max col width + some cleanup by @ankitpokhrel in #427
- chore: Remove deprecated ioutil usage by @ankitpokhrel in #422

New Contributors
- @stavares843 made their first contribution in #423

Full Changelog: https://github.com/ankitpokhrel/jira-cli/compare/v1.0.0...v1.1.0

(fox)

2022-08-20 23:33:51 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-langarabic to 2022pre4

(wiz)

2022-08-20 23:33:41 UTC MAIN commitmail json YAML

texlive-collection-langarabic: add some more

Bump version.

(wiz)

2022-08-20 23:32:59 UTC MAIN commitmail json YAML

doc: Added print/tex-sexam-doc version 1

(wiz)

2022-08-20 23:32:40 UTC MAIN commitmail json YAML

doc: Added print/tex-sexam version 1

(wiz)

2022-08-20 23:32:28 UTC MAIN commitmail json YAML

print/Makefile: + tex-sexam*

(wiz)

2022-08-20 23:32:08 UTC MAIN commitmail json YAML

2022-08-20 23:31:53 UTC MAIN commitmail json YAML

print/tex-sexam: import tex-sexam-1

The package provides a modified version of the exam package
made compatible with XeLaTeX/polyglossia to typesetting arabic
exams.

(wiz)

2022-08-20 23:29:31 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-latexextra to 2022pre4

(wiz)

2022-08-20 23:29:21 UTC MAIN commitmail json YAML

texlive-collection-latexextra: add a couple more.

Bump version.

(wiz)

2022-08-20 23:28:34 UTC MAIN commitmail json YAML

doc: Added print/tex-yagusylo-doc version 1.2

(wiz)

2022-08-20 23:28:24 UTC MAIN commitmail json YAML

doc: Added print/tex-yagusylo version 1.2

(wiz)

2022-08-20 23:28:10 UTC MAIN commitmail json YAML

print/Makefile: + tex-yagusylo

(wiz)

2022-08-20 23:27:53 UTC MAIN commitmail json YAML

2022-08-20 23:27:37 UTC MAIN commitmail json YAML

print/tex-yagusylo: import tex-yagusylo-1.2

The name is by way of being an acronym for "Yet Another Grand
Unified Symbols Loader"... The package allows the user to
access a symbol without loading the package that usually
provides it; this has the advantage of avoiding the name
clashes that so commonly trouble those who load
symbol-packages.

(wiz)

2022-08-20 23:22:03 UTC MAIN commitmail json YAML

doc: Added print/tex-moreenum-doc version 1.03

(wiz)

2022-08-20 23:21:54 UTC MAIN commitmail json YAML

doc: Added print/tex-moreenum version 1.03

(wiz)

2022-08-20 23:21:42 UTC MAIN commitmail json YAML

print/Makefile: + tex-moreenum*

(wiz)

2022-08-20 23:21:24 UTC MAIN commitmail json YAML

2022-08-20 23:20:56 UTC MAIN commitmail json YAML

print/tex-moreenum: import tex-moreenum-1.03

The package provides the following new enumerate styles: \greek
for lowercase Greek letters; \Greek for uppercase Greek
letters; \enumHex for uppercase hexadecimal enumeration;
\enumhex for lowercase hexadecimal enumeration; \enumbinary for
binary enumeration; \enumoctal for octal enumeration; \levelnth
for "1st", "2nd", "3rd" etc., with the "nth"s on the baseline;
raisenth for "1st", "2nd", "3rd" etc., with the "nth"s raised;
\nthwords for "first", "second", "third" etc.; \Nthwords for
"First", "Second", "Third" etc.; \NTHWORDS for "FIRST",
"SECOND", "THIRD" etc.; \nwords for "one", "two", "three" etc.;
\Nwords for "One", "Two", "Three" etc.; and \NWORDS for "ONE",
"TWO", "THREE" etc. Each of these works with enumitem's
"starred variant" feature. So
\begin{enumerate}[label=\enumhex*] will output a hex enumerated
list. Enumitem provides a start=0 option for starting your
enumerations at 0.

(wiz)

2022-08-20 23:03:41 UTC MAIN commitmail json YAML

doc: Added graphics/tex-ean13isbn-doc version 2022

(wiz)

2022-08-20 23:03:30 UTC MAIN commitmail json YAML

doc: Added graphics/tex-ean13isbn version 2022

(wiz)

2022-08-20 23:03:16 UTC MAIN commitmail json YAML

graphics/Makefile: + tex-ean13isbn*

(wiz)

2022-08-20 23:03:03 UTC MAIN commitmail json YAML

2022-08-20 23:02:41 UTC MAIN commitmail json YAML

graphics/tex-ean13isbn: import tex-ean13isbn-2022

The package provides the means to typeset ISBN codes with
EAN-13; it uses the (generic) package ean13.tex to typeset the
actual barcode.

(wiz)

2022-08-20 21:53:23 UTC MAIN commitmail json YAML

doc: fix previous

(wiz)

2022-08-20 21:41:44 UTC MAIN commitmail json YAML

gnome-terminal: note upstream commit that merges our patches

These will be in the next stable release.

(gutteridge)

2022-08-20 21:41:36 UTC MAIN commitmail json YAML

print/Makefile: + tex-persian-bib*

(wiz)

2022-08-20 21:41:24 UTC MAIN commitmail json YAML

doc: Added print/tex-persian-bib version 0.9

(wiz)

2022-08-20 21:41:12 UTC MAIN commitmail json YAML

doc: Added print/tex-persian-bib version 0.9

(wiz)

2022-08-20 21:41:00 UTC MAIN commitmail json YAML

2022-08-20 21:40:40 UTC MAIN commitmail json YAML

print/tex-persian-bib: import tex-persian-bib-0.9

Currently 9 files: acm-fa.bst, asa-fa.bst, chicago-fa.bst,
ieeetr-fa.bst, plain-fa-inLTR-beamer.bst, plain-fa-inLTR.bst,
plain-fa.bst, plainnat-fa.bst and unsrt-fa.bst are modified for
Persian documents prepared with XePersian (which the present
package depends on). The Persian .bst files can simultaneously
handle both Latin and Persian references. A file cp1256fa.csf
is provided for correct sorting of Persian references and three
fields LANGUAGE, TRANSLATOR and AUTHORFA are defined.

(wiz)

2022-08-20 21:38:18 UTC MAIN commitmail json YAML

doc: Added print/tex-na-box-doc version 1.0

(wiz)

2022-08-20 21:38:08 UTC MAIN commitmail json YAML

doc: Added print/tex-na-box version 1.0

(wiz)

2022-08-20 21:37:56 UTC MAIN commitmail json YAML

print/Makefile: + tex-na-box*

(wiz)

2022-08-20 21:37:40 UTC MAIN commitmail json YAML

2022-08-20 21:37:16 UTC MAIN commitmail json YAML

print/tex-na-box: import tex-na-box-1.0

This is a modified version of the pas-cours package made
compatible with XeLaTeX/polyglossia to write arabic documents
with fancy boxed theorem-alike environments.

(wiz)

2022-08-20 21:33:26 UTC MAIN commitmail json YAML

doc: Added print/tex-luabidi-doc version 0.5

(wiz)

2022-08-20 21:32:39 UTC MAIN commitmail json YAML

doc: Added print/tex-luabidi version 0.5

(wiz)

2022-08-20 21:32:27 UTC MAIN commitmail json YAML

print/Makefile: + tex-luabidi*

(wiz)

2022-08-20 21:32:15 UTC MAIN commitmail json YAML

2022-08-20 21:31:30 UTC MAIN commitmail json YAML

print/tex-luabidi: import tex-luabidi-0.5

The package attempts to emulate the XeTeX bidi package, in the
context of LuaTeX.

(wiz)

2022-08-20 21:24:51 UTC MAIN commitmail json YAML

doc: Added print/tex-kurdishlipsum-doc version 1.1

(wiz)

2022-08-20 21:24:38 UTC MAIN commitmail json YAML

doc: Added print/tex-kurdishlipsum version 1.1

(wiz)

2022-08-20 21:24:27 UTC MAIN commitmail json YAML

print/Makefile: + tex-kurdishlipsum*

(wiz)

2022-08-20 21:22:34 UTC MAIN commitmail json YAML

2022-08-20 21:22:10 UTC MAIN commitmail json YAML

print/tex-kurdishlipsum: import tex-kurdishlipsum-1.1

This package provides lipsum-like facilities for the Kurdish
language. The package gives you easy access to the Kurdish
poetry and balladry texts of the Diwany Vafaiy, Ahmedy Xani,
Naly, Mahwy,.... The package needs to be run under XeLaTeX.

(wiz)

2022-08-20 21:19:23 UTC MAIN commitmail json YAML

doc: Added print/tex-imsproc-doc version 0.1

(wiz)

2022-08-20 21:19:09 UTC MAIN commitmail json YAML

doc: Added print/tex-imsproc version 0.1

(wiz)

2022-08-20 21:18:52 UTC MAIN commitmail json YAML

print/Makefile: + tex-imsproc*

(wiz)

2022-08-20 21:18:40 UTC MAIN commitmail json YAML

2022-08-20 21:18:23 UTC MAIN commitmail json YAML

print/tex-imsproc: import tex-imsproc-0.1

The class typesets papers for IMS (Iranian Mathematical
Society) conference proceedings. The class uses the XePersian
package.

(wiz)

2022-08-20 21:01:27 UTC MAIN commitmail json YAML

zig: add upstream bug report URL for llvm 14 support release

(wiz)

2022-08-20 20:41:49 UTC MAIN commitmail json YAML

2022-08-20 19:04:55 UTC MAIN commitmail json YAML

node_exporter: add missing go-modules.mk to fix the build

(gutteridge)

2022-08-20 13:32:06 UTC MAIN commitmail json YAML

pkgtools/distlint: add initial draft document, no package yet

(rillig)

2022-08-20 09:46:04 UTC MAIN commitmail json YAML

2022-08-20 09:38:58 UTC MAIN commitmail json YAML

2022-08-20 08:08:24 UTC MAIN commitmail json YAML

2022-08-20 05:11:22 UTC MAIN commitmail json YAML

notmuch: Fix previous. Make desktop-file-utils for build dependency

(ryoon)

2022-08-20 05:07:06 UTC MAIN commitmail json YAML

notmuch: In notmuch-emacs option case, depends on desktop-file-utils fully

Fix packaging with notmuch-emacs option.

(ryoon)

2022-08-19 22:13:19 UTC MAIN commitmail json YAML

Add desktopdb.mk depends for .desktop files

Bump PKGREVISION

(abs)

2022-08-19 22:05:10 UTC MAIN commitmail json YAML

Switch desktopdb.mk to not depend on desktop-file-utils

Consumers of desktop entries still register a full dependency
on desktop-file-utils, but apps that install a .desktop file
in share/applications do not. They still have a POST-INSTALL
step to call UPDATE_DESKTOPDB, but only if it is already
installed.

Should be not functional difference for any system with a
consumer of desktop entries installed, but for an app
with a .desktop entry the build of python, meson & glib2
may be deferred. Helpful for small apps and lower power
systems

(abs)

2022-08-19 22:01:02 UTC MAIN commitmail json YAML

Add desktopdb.mk depends for share/applications/vncviewer.desktop

Bump PKGREVISION

(abs)

2022-08-19 21:38:05 UTC MAIN commitmail json YAML

doc/TODO: + gcc12-12.2.0.

(wiz)

2022-08-19 21:23:38 UTC MAIN commitmail json YAML

doc: Updated textproc/translate-shell to 0.9.7

(leot)

2022-08-19 21:23:32 UTC MAIN commitmail json YAML

translate-shell: Update to 0.9.7

Changes:
0.9.7
-----
* Translate-Shell now recognizes 159 languages in total (including all
  the languages currently supported by Google Translate, Bing
  Translator, and Yandex.Translate)
* Google Translate: fixed a regression bug (bac44df)
* Bing Translator: fixed engine support (4a3a900)
* Show HTTP error codes (892b543)
* The default engine is now changed to auto (which uses google by default,
  but automatically falls back on bing if the specified language is not
  supported by Google Translate)
* The options -l / -lang for specifying the interface language are
  deprecated in favor of -hl / -host; the environment variable HOME_LANG
  is deprecated in favor of HOST_LANG
* 4 new options: -list-languages, -list-languages-english, -list-codes,
  -list-all to list all languages and codes
* The options -L / -linguist (-list is deprecated) now show more linguistic
  details about languages

(leot)

2022-08-19 20:36:48 UTC MAIN commitmail json YAML

py-postfix-mta-sts-resolver: mark as not for python 2.7

(wiz)

2022-08-19 20:11:31 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/texlive-collection-langarabic to 2022pre3

(wiz)

2022-08-19 20:11:22 UTC MAIN commitmail json YAML

texlive-collection-langarabic: add some new packages

Bump version.

(wiz)

2022-08-19 20:10:17 UTC MAIN commitmail json YAML

doc: Added print/tex-hvarabic-doc version 0.02

(wiz)

2022-08-19 20:10:07 UTC MAIN commitmail json YAML

doc: Added print/tex-hvarabic version 0.02

(wiz)

2022-08-19 20:09:54 UTC MAIN commitmail json YAML

print/Makefile: + tex-hvarabic*

(wiz)

2022-08-19 20:09:44 UTC MAIN commitmail json YAML

2022-08-19 20:09:27 UTC MAIN commitmail json YAML

print/tex-hvarabic: import tex-hvarabic-0.02

This package provides some macros for right-to-left
typesetting. It uses by default the arabic fonts Scheherazade
and ALM fixed, the only monospaced arabic font. The package
works with LuaLaTeX or XeLaTeX, but not with pdfLaTeX or latex.

(wiz)

2022-08-19 20:06:18 UTC MAIN commitmail json YAML

doc: Added print/tex-ghab-doc version 0.5

(wiz)

2022-08-19 20:06:08 UTC MAIN commitmail json YAML

doc: Added print/tex-ghab version 0.5

(wiz)

2022-08-19 20:05:56 UTC MAIN commitmail json YAML

print/Makefile: + tex-ghab*

(wiz)

2022-08-19 20:05:46 UTC MAIN commitmail json YAML

2022-08-19 20:05:25 UTC MAIN commitmail json YAML

print/tex-ghab: import tex-ghab-0.5

The package defines a command \darghab that will typeset its
argument in a box with a decorated frame. The width of the box
may be set using an optional argument.

(wiz)

2022-08-19 20:04:28 UTC MAIN commitmail json YAML

doc: Updated print/tex-bidi-doc to 39.3

(wiz)

2022-08-19 20:04:18 UTC MAIN commitmail json YAML

doc: Updated print/tex-bidi to 39.3

(wiz)

2022-08-19 20:04:07 UTC MAIN commitmail json YAML

2022-08-19 19:59:44 UTC MAIN commitmail json YAML

doc: Added print/tex-dad-doc version 1.2

(wiz)

2022-08-19 19:59:31 UTC MAIN commitmail json YAML

doc: Added print/tex-dad version 1.2

(wiz)

2022-08-19 19:59:16 UTC MAIN commitmail json YAML

print/Makefile: + tex-dad*

(wiz)

2022-08-19 19:59:06 UTC MAIN commitmail json YAML

2022-08-19 19:58:42 UTC MAIN commitmail json YAML

print/tex-dad: import tex-dad-1.2

This package allows simple typesetting in Arabic script,
intended for mixed Arabic/Latin script usage in situations
where heavy-duty solutions are discouraged. The system operates
with both Unicode and transliterated input, allowing the user
to choose the most appropriate approach for every situation.

(wiz)

2022-08-19 19:54:38 UTC MAIN commitmail json YAML

doc: Added print/tex-bidihl-doc version 0.1c

(wiz)

2022-08-19 19:54:28 UTC MAIN commitmail json YAML

doc: Added print/tex-bidihl version 0.1c

(wiz)