Commit graph

336486 commits

Author SHA1 Message Date
nia
7aee0c96fe vte3: unset GNU_CONFIGURE, this uses meson 2021-04-12 12:37:41 +00:00
nia
d80d64b6c5 gupnp12: remove pre-meson cruft 2021-04-12 12:35:19 +00:00
nia
8ae45c878f gedit: remove gmake dependency 2021-04-12 12:27:12 +00:00
nia
6ed17ce8b5 pango: remove gmake dependency 2021-04-12 12:16:23 +00:00
nia
0774896f11 use TOOL_DEPENDS for meson 2021-04-12 12:14:03 +00:00
nia
59a348c22e gdk-pixbuf2-xlib: remove gmake dependency, set PYTHON_FOR_BUILD_ONLY 2021-04-12 12:07:35 +00:00
nia
331e1de171 gdk-pixbuf2: remove gmake dependency, set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:33:16 +00:00
nia
b58a94bb7d libsoup: remove gmake dependency, set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:29:19 +00:00
nia
457e142c8d libnotify: remove gmake dependency, set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:26:34 +00:00
nia
e559cecf5c orc: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:22:42 +00:00
nia
291d17092e zziplib: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:20:27 +00:00
nia
5e92cd0d04 spice-protocol: fix PKGCONFIG_OVERRIDE, set PYTHON_FOR_BUILD_ONLY
bump PKGREVISION
2021-04-12 11:18:21 +00:00
nia
76d8fc7955 doc: Updated textproc/json-glib to 1.4.4nb2 2021-04-12 11:16:24 +00:00
nia
91f1e86af9 json-glib: convert to meson properly, install man pages
disabling NLS is no longer possible

bump PKGREVISION
2021-04-12 11:16:11 +00:00
nia
fb672f10c7 gtksourceview4: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:09:17 +00:00
nia
6061174d8d atk: Set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:07:06 +00:00
nia
f8385cdbe9 appstream-glib: Set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:06:23 +00:00
nia
2051b405bd imv: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:02:48 +00:00
nia
c24f2781ee picom: set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:01:56 +00:00
nia
5962f1a30e pango: Set PYTHON_FOR_BUILD_ONLY 2021-04-12 11:01:13 +00:00
nia
cdbdb65545 desktop-file-utils: Set PYTHON_FOR_BUILD_ONLY 2021-04-12 10:56:27 +00:00
pin
413f5c12d9 doc: Updated sysutils/xplr to 0.4.2 2021-04-12 10:36:19 +00:00
pin
e6d9ae85bd sysutils/xplr: update to 0.4.2
-Add new messages Quit, LastVisitedPath and NextVisitedPath
-q is mapped to Quit.
-ctrl-o is mapped to LastVisitedPath
-ctrl-i / tab is mapped to NextVisitedPath
2021-04-12 10:36:00 +00:00
adam
55f4f4c3eb Updated net/dnsmasq, devel/meson 2021-04-12 10:12:52 +00:00
adam
1a7c5e354c meson: updated to 0.57.2
0.57.2:
Bug fixes
2021-04-12 10:12:30 +00:00
adam
eb4a356f1d dnsmasq: updated to 2.85
version 2.85

Fix problem with DNS retries in 2.83/2.84.
The new logic in 2.83/2.84 which merges distinct requests
for the same domain causes problems with clients which do
retries as distinct requests (differing IDs and/or source ports.)
The retries just get piggy-backed on the first, failed, request.
The logic is now changed so that distinct requests for repeated
queries still get merged into a single ID/source port, but
they now always trigger a re-try upstream.
Thanks to Nicholas Mu for his analysis.

Tweak sort order of tags in get-version. v2.84 sorts
before v2.83, but v2.83 sorts before v2.83rc1 and 2.83rc1
sorts before v2.83test1. This fixes the problem which lead
to 2.84 announcing itself as 2.84rc2.

Avoid treating a --dhcp-host which has an IPv6 address
as eligible for use with DHCPv4 on the grounds that it has
no address, and vice-versa. Thanks to Viktor Papp for
spotting the problem. (This bug was fixed was back in 2.67, and
then regressed in 2.81).

Add --dynamic-host option: A and AAAA records which take their
network part from the network of a local interface. Useful
for routers with dynamically prefixes. Thanks
to Fred F for the suggestion.

Teach --bogus-nxdomain and --ignore-address to take an IPv4 subnet.

Use random source ports where possible if source
addresses/interfaces in use.
CVE-2021-3448 applies. Thanks to Petr Menšík for spotting this.
It's possible to specify the source address or interface to be
used when contacting upstream name servers: server=8.8.8.8@1.2.3.4
or server=8.8.8.8@1.2.3.4#66 or server=8.8.8.8@eth0, and all of
these have, until now, used a single socket, bound to a fixed
port. This was originally done to allow an error (non-existent
interface, or non-local address) to be detected at start-up. This
means that any upstream servers specified in such a way don't use
random source ports, and are more susceptible to cache-poisoning
attacks.
We now use random ports where possible, even when the
source is specified, so server=8.8.8.8@1.2.3.4 or
server=8.8.8.8@eth0 will use random source
ports. server=8.8.8.8@1.2.3.4#66 or any use of --query-port will
use the explicitly configured port, and should only be done with
understanding of the security implications.
Note that this change changes non-existing interface, or non-local
source address errors from fatal to run-time. The error will be
logged and communication with the server not possible.

Change the method of allocation of random source ports for DNS.
Previously, without min-port or max-port configured, dnsmasq would
default to the compiled in defaults for those, which are 1024 and
65535. Now, when neither are configured, it defaults instead to
the kernel's ephemeral port range, which is typically
32768 to 60999 on Linux systems. This change eliminates the
possibility that dnsmasq may be using a registered port > 1024
when a long-running daemon starts up and wishes to claim it.
This change does likely slightly reduce the number of random ports
and therefore the protection from reply spoofing. The older
behaviour can be restored using the min-port and max-port config
switches should that be a concern.

Scale the size of the DNS random-port pool based on the
value of the --dns-forward-max configuration.

Tweak TFTP code to check sender of all received packets, as
specified in RFC 1350 para 4.
2021-04-12 10:06:45 +00:00
adam
c9b3ac2dcf Revbump for multimedia/x265 update 2021-04-12 08:29:59 +00:00
pin
d68e657d5b doc: Updated graphics/qrrs to 0.1.6 2021-04-12 08:05:41 +00:00
pin
8d66452b4a graphics/qrrs: update to 0.1.6
-Little README changes
-Update license
-Add tarpaulin to shell.nix
-Separate creating cli and getting matches for better testing
-Add cli test
-Fix ugly unicode in README
2021-04-12 08:05:22 +00:00
triaxx
dada2e5111 doc: Updated graphics/ImageMagick to 7.0.11.6 2021-04-12 06:28:50 +00:00
triaxx
752eb7016f ImageMagick: Update to 7.0.11.6
upstream changes:
-----------------
7.0.11-6
  * fix portable Windows build.

7.0.11-5
  * OpenCL will be disable by default, use the environment variable
    MAGICK_OCL_DEVICE to turn it on or select the device to use.
  * eliminate extraneous spaces in AC_PATH_PROG (reference
    https://github.com/ImageMagick/ImageMagick/issues/3428).
  * fix handling of non-square images with -fft option.
  * enable FFTW support with --with-fftw configure script command-line option.

7.0.11-4
  * support caption:split define (reference
    https://github.com/ImageMagick/ImageMagick/discussions/3389).
  * avoid an omp deadlock with policy string

7.0.11-3
  * Eliminate multiple division by zero exceptions (reference
    https://github.com/ImageMagick/ImageMagick/issues/3339 and others).
  * Use -define filename:literal=true to bypass interpretting embedded
    formatting characters and instead use the filename literally.

7.0.11-2
  * decode HEIC images in sRGB instead of YCbCr.
  * Division by zero error is possible if crafty file sets film-gamma property
  * Check for overflow in thumbnail coder
  * Prevent compiler from optimizing out buffer clearing in cipher
  * Clone properties from image stack.
  * Set overall image depth statistic in Composite channel.

7.0.11-1
  * Clone properties from image stack.
  * fix EXR crash (reference
    https://github.com/ImageMagick/ImageMagick/issues/3242).
2021-04-12 06:28:32 +00:00
taca
9f59c51551 doc: Updated devel/ruby-marcel to 1.0.1 2021-04-12 00:03:17 +00:00
taca
ffb273f94c devel/ruby-marcel: update to 1.0.1
1.0.1 (2021-04-02)

* Fixes identifying OpenDocument files by magic. 1.0.0 imprecisely
  identified them as application/zip. (#38)
* Fixes identifying .docx, .pptx, and .xlsx files exported from Google
  Sheets by magic. (#36)
* Identifies vCard files as text/vcard rather than text/x-vcard. (27fac74)
* Identifies .otf, .woff, and .woff2 files aș font/otf, font/woff, and
  font/woff2, respectively. (#37)
2021-04-12 00:02:52 +00:00
wiz
ccc609b6fb py-mercurial: add patch fixing another test case. 2021-04-11 23:07:03 +00:00
wiz
8a7529b821 py-mercurial: add a patch to fix a self-test. 2021-04-11 22:55:42 +00:00
pin
c86373bc84 doc: Updated sysutils/xplr to 0.4.1 2021-04-11 18:55:47 +00:00
pin
ed412a7a3b sysutils/xplr: update to 0.4.1
0.4.1
-Fix remap behavior.
-Fix help menu.

0.4.0
-Support easier config overwrite (without having to dump the whole config).
-Rename custom field for node metadata to meta.
-Move icon to meta.icon.
-Rename normal_ui to default_ui.
-Rename filetypes to node_types.
-Split modes into modes.builtin and modes.custom.
-Add the missing create file mode.
-Rename focused_ui to focus_ui.
-Make version compatibility less annoying.
-Add key binding ~ to go to homedir.
-Add customizable cursor and prompts.
-Improve the help menus.
2021-04-11 18:55:25 +00:00
pin
2192d57f33 doc: Updated sysutils/navi to 2.15.1 2021-04-11 18:53:55 +00:00
pin
08a1113d34 sysutils/navi: update to 2.15.1
New features:
-Publish binaries for more platforms, including Windows (#490)

Fixes:
-Fix path for downloaded cheats (#493)
-Fix navi fn welcome (#495)

Code quality:
-Update demo video (#488)
-Add link to more shell instructions
2021-04-11 18:53:26 +00:00
schmonz
0264fcdacc doc: Updated devel/py-approvaltests to 0.4.1 2021-04-11 18:08:00 +00:00
schmonz
483cf33475 Update to 0.4.1. From the changelog:
- Dynamically discover where the program files directory is
  (only for Beyond compare reporter at the moment)
2021-04-11 18:07:49 +00:00
tnn
6e1452d647 gmplayer: regen distinfo for patch-libmpcodecs_ad__spdif.c 2021-04-11 17:13:21 +00:00
wiz
fc6bcf1126 doc/TODO: add some
+ grpc-1.37.0, libatomic-10.3.0, libbluray-1.3.0, libxkbcommon-1.2.1,
  protobuf-3.15.8, py-astroid-2.5.3, py-hypothesis-6.8.9, vala-0.52.1.
2021-04-11 17:03:28 +00:00
wiz
0cd29f187b py-rlp: do not depend on pip
It was used to install setuptools-markdown, which is deprecated anyway;
update setup.py to not request the module instead (since it's not packaged)
2021-04-11 16:59:36 +00:00
taca
d68608d00e doc: Updated devel/ruby-redmine41 to 4.1.2 2021-04-11 15:03:41 +00:00
taca
0232870ecf devel/ruby-redmine41: update to 4.1.2
Security release includes several security fixes, including a fix for a
permission bypass in Issues API and a fix for private project name that can
be leaked in issue journal details, so upgrading as soon as possible is
recommended.  You can get more details in Security Advisories:
<https://redmine.org/projects/redmine/wiki/Security_Advisories>

Changes are too many to write here, please refer:
<https://redmine.org/projects/redmine/wiki/Changelog_4_1>.
2021-04-11 15:03:22 +00:00
taca
14f26a4497 doc: Updated devel/ruby-redmine to 4.0.8 2021-04-11 15:02:41 +00:00
taca
05028f3282 devel/ruby-redmine: update to 4.0.8
Security release includes several security fixes, including a fix for a
permission bypass in Issues API and a fix for private project name that can
be leaked in issue journal details, so upgrading as soon as possible is
recommended.  You can get more details in Security Advisories:
<https://redmine.org/projects/redmine/wiki/Security_Advisories>


4.0.8 (2021-03-21)

[Accounts / authentication]
* Defect #33926: Rake tasks "db:encrypt" and "db:decrypt" may fail due to
  validation error

[Administration]
* Defect #33310: Warnings while running redmine:load_default_data rake task
* Patch #32341: Show tooltip when hovering on repeat-value link in Field
  permission tab

[Attachments]
* Defect #33459: The order of thumbnails in journals does not match the
  order of file name list
* Defect #33769: When creating more than two identical attachments in a
  single db transaction, the first one always ends up unreadable

[Custom fields]
* Defect #33275: Possible values field in list format custom field form is
  not marked as required

[Documentation]
* Defect #33939: Unnecessary translation of {{toc}} macros in Russian Wiki
  formatting help

[Filters]
* Defect #34375: "is not" operator for Subproject filter incorrectly
  excludes closed subprojects

[Gantt]
* Defect #33140: Gantt bar is not displayed if the due date is the leftmost
  date or the start date is the rightmost date
* Defect #33175: Starting or ending marker is not displayed if they are on
  the leftmost or rightmost boundary of the gantt

[Gems support]
* Patch #34461: Update Redcarpet to 3.5.1

[Issues]
* Defect #33576: Done ratio of a parent issue may be shown as 99% even
  though all subtasks are completed

[Issues list]
* Defect #33548: Column header is clickable even when the column is not
  actually sortable
* Defect #34297: Subprojects issues are not displayed on main project when
  all subprojects are closed

[Projects]
* Defect #33889: Do not show list for custom fields without list entry on
  project overview

[REST API]
* Defect #34615: 'Search' falsy parameters are not respected

[SEO]
* Defect #6734: robots.txt: disallow crawling issues list with a query string

[Security]
* Defect #33360: Names of private projects are leaked by issue journal
  details that contain project_id changes
* Defect #33689: Issues API bypasses add_issue_notes permission
* Feature #33906: Upgrade Rails to 5.2.4.5

[Themes]
* Defect #8251: Classic Theme: Missed base line

[Translations]
* Defect #34447: Typo in translation string
  'setting_issue_list_default_columns': s//Isuses/Issues

[UI]
* Patch #33958: Jump to end of line in editor when starting list or quote
2021-04-11 15:02:11 +00:00
taca
7f4018a34a doc: Updated databases/ruby-sequel to 5.43.0 2021-04-11 14:09:08 +00:00
taca
245eaf2b4d databases/ruby-sequel: update to 5.43.0
5.43.0 (2021-04-01)

* Add column_encryption plugin, for encrypting column values (jeremyevans)
2021-04-11 14:08:43 +00:00