Compare commits

...

51 Commits

Author SHA1 Message Date
bsiegert eec793b6cd Pullup tickets up to #6470 2021-06-10 08:52:34 +00:00
bsiegert 3fe72431e8 Pullup ticket #6469 - requested by nia
chat/dino: security fix

Revisions pulled up:
- chat/dino/Makefile                                            1.11
- chat/dino/distinfo                                            1.4
- chat/dino/patches/patch-qlite_src_column.vala                 deleted

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Wed Jun  9 20:22:18 UTC 2021

   Modified Files:
   	pkgsrc/chat/dino: Makefile distinfo
   Removed Files:
   	pkgsrc/chat/dino/patches: patch-qlite_src_column.vala

   Log Message:
   dino:  update to 0.2.1

   Maintenance release with fix for CVE-2021-33896 and bug fixes.
2021-06-10 08:52:01 +00:00
bsiegert 5670a5733c Pullup ticket #6470 - requested by simonb
x11/xorgproto: NetBSD-current build fix

Revisions pulled up:
- x11/xorgproto/builtin.mk                                      1.9

---
   Module Name:    pkgsrc
   Committed By:   gutteridge
   Date:           Thu Apr 29 02:57:08 UTC 2021

   Modified Files:
           pkgsrc/x11/xorgproto: builtin.mk

   Log Message:
   xorgproto: reflect built-in version present in NetBSD 9.99.82
2021-06-10 08:12:09 +00:00
bsiegert a9d7578fd4 Pullup tickets up to #6468 2021-06-06 09:44:23 +00:00
bsiegert 87d7f7c0f7 Pullup ticket #6468 - requested by nia
www/firefox78-l10n: dependent update

Revisions pulled up:
- www/firefox78-l10n/Makefile                                   1.14
- www/firefox78-l10n/distinfo                                   1.14

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Tue Jun  1 21:12:37 UTC 2021

   Modified Files:
   	pkgsrc/www/firefox78-l10n: Makefile distinfo

   Log Message:
   firefox78-l10n: sync with firefox78
2021-06-06 09:44:05 +00:00
bsiegert 3160066cd6 Pullup ticket #6467 - requested by nia
www/firefox78: security fix

Revisions pulled up:
- www/firefox78/Makefile                                        1.30
- www/firefox78/PLIST                                           1.3
- www/firefox78/distinfo                                        1.17

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Tue Jun  1 21:07:21 UTC 2021

   Modified Files:
   	pkgsrc/www/firefox78: Makefile PLIST distinfo

   Log Message:
   firefox78: update to 78.11.0

   Security fixes:
   https://www.mozilla.org/en-US/security/advisories/mfsa2021-24/
2021-06-06 09:34:53 +00:00
bsiegert 40c5521577 Pullup tickets up to #6466 2021-05-31 13:30:03 +00:00
bsiegert 85119bb364 Pullup ticket #6466 - requested by taca
databases/mysql57-client: security fix

Revisions pulled up:
- databases/mysql57-client/Makefile.common                      1.33-1.34
- databases/mysql57-client/PLIST                                1.21
- databases/mysql57-client/distinfo                             1.41-1.42
- databases/mysql57-client/patches/patch-cmake_build__configurations_compiler__options.cmake 1.1
- databases/mysql57-client/patches/patch-mysys_kqueue__timers.c 1.2
- databases/mysql57-client/patches/patch-sql_locks_shared__spin__lock.cc 1.2
- databases/mysql57-server/PLIST                                1.21

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Wed Apr 21 13:26:55 UTC 2021

   Modified Files:
   	pkgsrc/databases/mysql57-client: Makefile.common PLIST distinfo
   	pkgsrc/databases/mysql57-client/patches: patch-mysys_kqueue__timers.c
   	    patch-sql_locks_shared__spin__lock.cc
   	pkgsrc/databases/mysql57-server: PLIST

   Log Message:
   mysql57: updated to 5.7.34

   Changes in MySQL 5.7.34 (2021-04-20, General Availability)

   Configuration Notes

   The CMAKE_BUILD_TYPE CMake option now supports a Release build type, which is like the RelWithDebInfo build type but omits debugging information to reduce the build size.

   Packaging Notes

   The bundled libedit library was upgraded to version 20190324-3.1.

   Binary packages that include curl rather than linking to the system curl library have been upgraded to use curl 7.74.0.

   Security Notes

   The linked OpenSSL library for MySQL Server has been updated to version 1.1.1k. Issues fixed in the new OpenSSL version are described at https://www.openssl.org/news/cl111.txt and https://www.openssl.org/news/vulnerabilities.html.

   Functionality Added or Changed

   Microsoft Windows: The named_pipe_full_access_group system variable now defaults to an empty string (''), making named pipe connections secure. Previously, '*everyone*' was the default value. A valid Windows local group name may be substituted.

   Bugs Fixed

   InnoDB: The introduction of sharded rw_lock_stats counters in MySQL 5.7 caused a regression in CPU cache efficiency. To address this issue in MySQL 5.7, the sharding method was changed. For optimal performance, the rw_lock_stats counter is removed in MySQL 8.0.

   InnoDB: A delete operation on a parent table that initiated a cascading update on a child table with an indexed virtual column and indexed foreign key constraint column caused a virtual column corruption.

   InnoDB: An adaptive hash index (AHI) latch was held in shared mode by a thread truncating a large table, causing mutex waits for other threads. The AHI latch was not required and has been removed.

   InnoDB: The open and close sequence for table share instances (m_share objects) and dictionary table instances was modified to prevent accessing old m_share objects that could point to stale dictionary indexes.

   Thanks to Yuxiang Jiang for the contribution.

   InnoDB: An online ALTER TABLE operation failed with an $B!H(BIncorrect key file for table$B!I(B error due to an unnecessary encryption status check that was performed when reading online DDL row logs.

   Replication: If all previous binary log files were purged at startup because their retention period had expired, the new binary log file contained an empty Previous_gtids event, which could cause errors in replication. The order of initialization has now been changed so that previous binary log files are only purged after the previous GTID set has been written to the new binary log file that is created at startup.

   Replication: An assertion was raised in debug builds relating to lost GTIDs if binary log files were removed at startup because their retention period had expired.

   Replication: A deadlock could occur if the binary log file was rotated while system variables were being updated and read by different clients.

   Replication: The output of a SHOW PROCESSLIST statement for a replica$B!G(Bs SQL thread sometimes showed the last query as currently being applied when the replica was actually caught up.

   A query string was displayed before it had been rewritten.

   For builds compiled using the libedit library, if the mysql client was invoked with the --default-character-set=utf8 option, libedit rejected input of multibyte characters.

   On Windows, large result sets could cause the mysql client to exit unexpectedly.

   Improper locking on an internal queue could cause mysqlpump to exit unexpectedly.

   It is now possible to use START REPLICA SQL_THREAD and STOP REPLICA SQL_THREAD statements for the group_replication_applier channel when Group Replication is stopped. This enables an operator to apply any remaining unapplied transactions on a server that left the group, without having to rejoin the server to the group.

   When the mysql client was used in batch mode, its parser could be confused by USE followed by DROP DATABASE when the USE database name was quoted.

   While optimizing the ORDER BY clause of a subquery there was a possibility of cleaning up a subquery tree referenced in the outer SELECT, which could lead to a premature exit.

   A malformed name in the mysql.func system table could cause unexpected server behavior.

   Sessions could disable their own auditing.

   Mishandling of stored program local variables could lead to unexpected server behavior.

   Uninstalling a plugin could affect subsequent execution of prepared statements.

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Thu Apr 29 16:50:33 UTC 2021

   Modified Files:
   	pkgsrc/databases/mysql57-client: Makefile.common distinfo
   Added Files:
   	pkgsrc/databases/mysql57-client/patches:
   	    patch-cmake_build__configurations_compiler__options.cmake

   Log Message:
   mysql57: fix building with GCC
2021-05-31 13:28:52 +00:00
bsiegert b6952c7000 Pullup ticket #6465 - requested by taca
www/squid4: security fix

Revisions pulled up:
- www/squid4/Makefile                                           1.18
- www/squid4/distinfo                                           1.11

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Mon May 10 14:22:57 UTC 2021

   Modified Files:
   	pkgsrc/www/squid4: Makefile distinfo

   Log Message:
   www/squid4: update to 4.15

   This release fixes these security issues from prior release.

   * SQUID-2020:11 HTTP Request Smuggling
     (CVE-2020-25097)
   * SQUID-2021:1 Denial of Service in URN processing
     (CVE-2021-28651)
   * SQUID-2021:2 Denial of Service in HTTP Response Processing
     (CVE-2021-28662)
   * SQUID-2021:3 Denial of Service issue in Cache Manager
     (CVE-2021-28652)
   * SQUID-2021:4 Multiple issues in HTTP Range header
     (CVE-2021-31806, CVE-2021-31807, CVE-2021-31808)
   * SQUID-2021:5 Denial of Service in HTTP Response Processing
     (CVE pending allocation)

   Changes in squid-4.15 (10 May 2021):

   	- Bug 5112: Excessively loud chunked reply parsing error reporting
   	- Bug 5106: Broken cache manager URL parsing
   	- Bug 5104: Memory leak in RFC 2169 response parsing
   	- Bug 3556: "FD ... is not an open socket" for accept() problems
   	- Profiling: CPU timing implemented for MAC non-x86
   	- Fix HttpHeaderStats definition to include hoErrorDetail
   	- Fix Squid-to-client write_timeout triggers client_lifetime timeout
   	- Limit HeaderLookupTable_t::lookup() to BadHdr and specific IDs
   	- Handle more Range requests
   	- Handle more partial responses
   	- Stop processing a response if the Store entry is gone
   	- ... and some portability fixes
   	- ... and some documentation updates
2021-05-31 13:28:45 +00:00
bsiegert 7ead75f5cf Pullup ticket #6464 - requested by taca
net/isc-dhcp4: security fix

Revisions pulled up:
- net/isc-dhcp4/Makefile.common                                 1.42
- net/isc-dhcp4/distinfo                                        1.30

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Thu May 27 14:10:12 UTC 2021

   Modified Files:
   	pkgsrc/net/isc-dhcp4: Makefile.common distinfo

   Log Message:
   net/isc-dhcp4: update to 4.4.2p1

   Update isc-dhcp4 to 4.4.2p1 (4.4.2-P1).

   		Changes since 4.4.2 (Bug Fixes)

    ! Corrected a buffer overwrite possible when parsing hexadecimal
      literals with more than 1024 octets. Reported by Jon Franklin from Dell,
      and also by Pawel Wieczorkiewicz from Amazon Web Services.
      [Gitlab #182]
      CVE: CVE-2021-25217
2021-05-31 12:56:08 +00:00
bsiegert f61779b5a2 Pullup ticket #6463 - requested by nia
emulators/haxm: build fix

Revisions pulled up:
- emulators/haxm/Makefile                                       1.18

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sat May 29 06:47:05 UTC 2021

   Modified Files:
   	pkgsrc/emulators/haxm: Makefile

   Log Message:
   haxm: Disable Werror the standard way for share/mk.

   Don't use compiler flags that may not be supported in older compilers
   (notably on NetBSD 9)...
2021-05-31 12:51:13 +00:00
bsiegert 66c922da16 Note Pullup ticket #6462 2021-05-29 19:06:34 +00:00
bsiegert c382118b25 Pullup ticket #6462 - requested by gutteridge
sysutils/xfce4-thunar: security fix

Revisions pulled up:
- sysutils/xfce4-thunar/Makefile                                1.76
- sysutils/xfce4-thunar/PLIST                                   1.20
- sysutils/xfce4-thunar/distinfo                                1.26

---
   Module Name:    pkgsrc
   Committed By:   gutteridge
   Date:           Thu May 27 00:12:18 UTC 2021

   Modified Files:
           pkgsrc/sysutils/xfce4-thunar: Makefile PLIST distinfo

   Log Message:
   xfce4-thunar: update to 1.8.17

   Change log:

   1.8.17
   ======
   - Dont execute files, passed via command line due to security risks
     That Fixes CVE-2021-32563

   - Fix combo box entry order (Issue #435)
   - Translation Updates:
     Albanian, Amharic, Arabic, Armenian, Armenian (Armenia), Asturian,
     Basque, Belarusian, Bengali, Bulgarian, Catalan, Chinese (China),
     Chinese (Hong Kong), Chinese (Taiwan), Croatian, Czech, Danish,
     Dutch, Eastern Armenian, English (Australia), English (United
     Kingdom), Esperanto, Estonian, Finnish, French, Galician, German,
     Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
     Italian, Japanese, Kazakh, Korean, Latvian, Lithuanian, Malay,
     Norwegian Bokmål, Norwegian Nynorsk, Occitan (post 1500), Panjabi
     (Punjabi), Persian (Iran), Polish, Portuguese, Portuguese (Brazil),
     Romanian, Russian, Serbian, Slovak, Spanish, Swedish, Telugu, Thai,
     Turkish, Ukrainian, Urdu, Urdu (Pakistan), Vietnamese

   1.8.16
   ======
   - Add missing parameter to ThunarBrowserPokeDeviceFunc function
   - Fix error for custom date format in details view (issue #389)
   - Fix unavailable rubber banding in detailed view (Issue #326)
   - Ghost file ocasionally remains when dropping file into directory (Fixes #312)
   - Translation Updates:
     Albanian, Armenian, Armenian (Armenia), Basque, Belarusian, Chinese
     (China), Chinese (Hong Kong), Croatian, Eastern Armenian, Esperanto,
     Estonian, Finnish, French, Hebrew, Hungarian, Indonesian, Interlingue,
     Italian, Kazakh, Korean, Lithuanian, Portuguese, Slovak, Swedish
2021-05-29 19:06:14 +00:00
bsiegert 1a77a8ce35 Pullup tickets up to #6461 2021-05-25 15:14:37 +00:00
bsiegert 191530bfaf Pullup ticket #6461 - requested by nia
print/mupdf: security fix

Revisions pulled up:
- print/mupdf/Makefile                                          1.87
- print/mupdf/distinfo                                          1.53
- print/mupdf/patches/patch-source_pdf_pdf-parse.c              1.1
- print/mupdf/patches/patch-source_pdf_pdf-xref.c               1.3

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Tue May 25 07:59:43 UTC 2021

   Modified Files:
   	pkgsrc/print/mupdf: Makefile distinfo
   Added Files:
   	pkgsrc/print/mupdf/patches: patch-source_pdf_pdf-parse.c
   	    patch-source_pdf_pdf-xref.c

   Log Message:
   mupdf: apply fix for CVE-2021-3407, bump PKGREVISION
2021-05-25 15:14:19 +00:00
bsiegert 7052f67f23 Pullup ticket #6460 - requested by nia
graphics/cairo: security fix

Revisions pulled up:
- graphics/cairo/Makefile                                       1.149
- graphics/cairo/distinfo                                       1.90
- graphics/cairo/patches/patch-src_cairo-image-compositor.c     1.1

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Tue May 25 07:29:42 UTC 2021

   Modified Files:
   	pkgsrc/graphics/cairo: Makefile distinfo
   Added Files:
   	pkgsrc/graphics/cairo/patches: patch-src_cairo-image-compositor.c

   Log Message:
   cairo: apply patch for CVE-2020-35492, bump PKGREVISION
2021-05-25 14:54:36 +00:00
bsiegert 7e8b26d7d6 Pullup ticket #6459 - requested by nia
textproc/libxslt: build fix

Revisions pulled up:
- textproc/libxslt/distinfo                                     1.66
- textproc/libxslt/patches/patch-configure                      1.3

---
   Module Name:	pkgsrc
   Committed By:	mcf
   Date:		Mon May 24 04:18:19 UTC 2021

   Modified Files:
   	pkgsrc/textproc/libxslt: distinfo
   Added Files:
   	pkgsrc/textproc/libxslt/patches: patch-configure

   Log Message:
   libxslt: fix libxml2 detection with libxml2 >= 2.9.11

   xml2-config from libxml2 >= 2.9.11 now exits with non-zero status
   for invalid arguments. libxslt called xml2-config with the invalid
   `print` option to probe for its existence, so with new libxml2 it
   now skipped detection via xml2-config entirely causing a build
   failure.

   Apply upstream patch to correct this invalid xml2-config usage.
2021-05-25 14:49:35 +00:00
bsiegert 00ffa428f1 Pullup ticket #6458 - requested by nia
textproc/libxml2: security fix

Revisions pulled up:
- textproc/libxml2/Makefile                                     1.159
- textproc/libxml2/Makefile.common                              1.14
- textproc/libxml2/distinfo                                     1.135
- textproc/libxml2/patches/patch-parser.c                       deleted
- textproc/libxml2/patches/patch-python-types.c                 deleted
- textproc/libxml2/patches/patch-python_libxml.c                deleted
- textproc/libxml2/patches/patch-xmlschemas.c                   deleted
- textproc/py-libxml2/Makefile                                  1.68

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sun May 23 19:31:47 UTC 2021

   Modified Files:
   	pkgsrc/textproc/libxml2: Makefile Makefile.common distinfo
   	pkgsrc/textproc/py-libxml2: Makefile
   Removed Files:
   	pkgsrc/textproc/libxml2/patches: patch-parser.c patch-python-types.c
   	    patch-python_libxml.c patch-xmlschemas.c

   Log Message:
   libxml2: update to 2.9.12

   2.9.12:
   "Brown paper bag release, some recently added sources were missing from
   the 2.9.11 tarball."

   2.9.11:
   "Prompted by CVE-2021-3541, but this includes an awful lot of serious bug
   fixes by Nick and others."
2021-05-25 14:44:14 +00:00
bsiegert f9b3da4445 Pullup tickets #6456 and #6457 2021-05-21 15:01:29 +00:00
bsiegert 943c1490df Pullup ticket #6457 - requested by gdt
net/speedtest-cli: bugfix

Revisions pulled up:
- net/speedtest-cli/Makefile                                    1.10
- net/speedtest-cli/distinfo                                    1.4

---
   Module Name:    pkgsrc
   Committed By:   gdt
   Date:           Thu Apr  8 16:53:01 UTC 2021

   Modified Files:
           pkgsrc/net/speedtest-cli: Makefile distinfo

   Log Message:
   speedtest-cli: Update to 2.1.3

   upstream changes: bugfixes

   (This update appears to work around a recently-observed problem.)
2021-05-21 15:01:10 +00:00
bsiegert ea545cc32a Pullup ticket #6456 - requested by nia
multimedia/mpv: performance fix

Revisions pulled up:
- multimedia/mpv/Makefile                                       1.125
- multimedia/mpv/options.mk                                     1.28

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sun Apr 25 06:09:41 UTC 2021

   Modified Files:
   	pkgsrc/multimedia/mpv: Makefile options.mk

   Log Message:
   mpv: only disable EGL if unavailable in Mesa

   reported by mikeqin on IRC
2021-05-21 14:59:01 +00:00
bsiegert 168762e426 exim security fix 2021-05-07 19:05:29 +00:00
bsiegert e2a9ca79bd Pullup ticket #6455 - requested by abs
mail/exim: security fix

Revisions pulled up:
- mail/exim/Makefile                                            1.185
- mail/exim/distinfo                                            1.79
- mail/exim/patches/patch-src_store.c                           deleted

---
   Module Name:    pkgsrc
   Committed By:   abs
   Date:           Tue May  4 20:29:39 UTC 2021

   Modified Files:
           pkgsrc/mail/exim: Makefile distinfo

   Log Message:
   Updated mail/exim to 4.94.2

   This includes a number of serious security fixes (one of which was
   included in a now obsoleted pkgsrc patch)

       CVE-2020-28016
       CVE-2020-BDATA
       CVE-2020-EXOPT
       CVE-2020-PFPSN
       CVE-2020-RCPTL
       CVE-2020-SLCWD
       CVE-2020-SPRSS

   Since Exim version 4.94
   -----------------------

   JH/02 Bug 2587: Fix pam expansion condition.  Tainted values are commonly used
         as arguments, so an implementation trying to copy these into a local
         buffer was taking a taint-enforcement trap.  Fix by using dynamically
         created buffers.  Similar fix for radius expansion condition.

   JH/03 Bug 2586: Fix listcount expansion operator.  Using tainted arguments is
         reasonable, eg. to count headers.  Fix by using dynamically created
         buffers rather than a local.  Do similar fixes for ACL actions "dcc",
         "log_reject_target", "malware" and "spam"; the arguments are expanded
         so could be handling tainted values.

   JH/04 Bug 2590: Fix -bi (newaliases).  A previous code rearrangement had
         broken the (no-op) support for this sendmail command.  Restore it
         to doing nothing, silently, and returning good status.

   JH/05 Bug 2593: Fix "vacation" in Exim filter.  Previously, when a "once"
         record path was given (or the default used) without a leading directory
         path, an error occurred on trying to open it.  Use the transport's working
         directory.

   JH/06 Bug 2594: Change the name used for certificate name checks in the smtp
         transport.  Previously it was the name on the DNS A-record; use instead
         the head of the CNAME chain leading there (if there is one).  This seems
         to align better with RFC 6125.

   JH/07 Bug 2597: Fix a resource leak.  Using a lookup in obtaining a value for
         smtp_accept_max_per_host allocated resources which were not released
         when the limit was exceeded.  This eventually crashed the daemon.  Fix
         by adding a relase action in that path.

   JH/08 Bug 2598: Fix verify ACL condition.  The options for the condition are
         expanded; previously using tainted values was rejected.  Fix by using
         dynamically-created buffers.

   JH/10 Bug 2603: Fix coding of string copying to only evaluate arguments once.
         Previously a macro used one argument twice; when called with the
         argument as an expression having side-effects, incorrect operation
         resulted.  Use an inlineable function.

   JH/11 Bug 2604: Fix request to cutthrough-deliver when a connection is already
         held open for a verify callout.  Previously this wan not accounted for
         and a corrupt onward SMTP conversation resulted.

   JH/13 Fix dsearch "subdir" filter to ignore ".".  Previously only ".." was
         excluded, not matching the documentation.

   JH/14 Bug 2606: Fix a segfault in sqlite lookups.  When no, or a bad, filename
         was given for the sqlite_dbfile a trap resulted.

   JH/15 Bug 2620: Fix "spam" ACL condition.  Previously, tainted values for the
         "name" argument resulted in a trap.  There is no reason to disallow such;
         this was a coding error.

   JH/16 Bug 2615: Fix pause during message reception, on systems that have been
         suspended/resumed.  The Linux CLOCK_MONOTONIC does not account for time
         spent suspended, ignoring the Posix definition.  Previously we assumed
         it did and a constant offset from real time could be used as a correction.
         Change to using the same clock source for the start-of-message and the
         post-message next-tick-wait.  Also change to using CLOCK_BOOTTIME if it
         exists, just to get a clock slightly more aligned to reality.

   JH/17 Bug 2295: Fix DKIM signing to always semicolon-terminate.  Although the
         RFC says it is optional some validators care.  The missing char was not
         intended but triggered by a line-wrap alignement.  Discovery and fix by
         Guillaume Outters, hacked on by JH.

   JH/18 Bug 2617: Fix a taint trap in parse_fix_phrase().  Previously when the
         name being quoted was tainted a trap would be taken.  Fix by using
         dynamicaly created buffers.  The routine could have been called by a
         rewrite with the "h" flag, by using the "-F" command-line option, or
         by using a "name=" option on a control=submission ACL modifier.

   JH/21 Bug 2630: Fix eol-replacement string for the ${readsocket } expansion.
         Previously when a whitespace character was specified it was not inserted
         after removing the newline.

   JH/24 Bug 2634: Fix a taint trap seen on NetBSD: the testing coded for
         is_tainted() had an off-by-one error in the overenthusiastic direction.
         Find and fix by Gavan.  Although NetBSD is not a supported platform for
         4.94 this bug could affect other platforms.

   JH/24 Bug 2634: Fix a taint trap seen on NetBSD: the testing coded for
         is_tainted() had an off-by-one error in the overenthusiastic direction.
         Find and fix by Gavan.  Although NetBSD is not a supported platform for
         4.94 this bug could affect other platforms.
   JH/21 Bug 2630: Fix eol-replacement string for the ${readsocket } expansion.
         Previously when a whitespace character was specified it was not inserted
         after removing the newline.

   JH/22 Bug 2265: Force SNI usage for smtp transport DANE'd connections, to be
         the domain part of the recipient address.  This overrides any tls_sni
         option set, which was previously used.

   JH/23 Logging: with the +tls_sni log_selector, do not wrap the received SNI
         in quotes.

   JH/26 Bug 2646: fix a memory usage issue in ldap lookups.  Previously, when more
         than one server was defined and depending on the platform memory layout
         details, an internal consistency trap could be hit while walking the list
         of servers.

   JH/27 Bug 2648: fix the passing of an authenticator public-name through spool
         files.  The value is used by the authresults expansion item.  Previously
         if this was used in a router or transport, a crash could result.

   JH/30 Bug 2677: fix matching of long addresses. Since 4.93 a limit of 256 was
         applied. This resulted, if any header-line rewrite rules were configured,
         in a panic-log trigerrable by sending a message with a long address in
         a header. Fix by increaing the arbitrary limit to larger than a single
         (dewrapped) 5322 header line maximum size.

   JH/31 The ESMTP option name advertised for the SUPPORT_EARLY_PIPE build option
         is changed from X_PIPE_CONNECT to PIPE_CONNECT. This is in line with
         RFC 6648 which deprecates X- options in protocols as a general practice.
         Changeover between the implementations is handled by the mechanisms
         alrready coded.

   JH/32 Bug 2599: fix delay of delivery to a local address where there is also
         a remote which uses callout/hold.  Previously the local was queued.

   JH/33 Fix a taint trap in the ${listextract } expansion when the source data
         was tainted.

   JH/35 Bug 2343: Harden exim_tidydb against corrupt wait- files.

   JH/36 Bug 2687: Fix interpretation of multiple ^ chars in a plaintext
         authenticator client_send option.  Previously the next char, after a pair
         was collapsed, was taken verbatim (so ^^^foo became ^^foo; ^^^^foo became
         ^^\x00foo). Fixed to get ^\x00foo and ^^foo respectively to match the
         documentation.  There is still no way to get a leading ^ immediately
         after a NUL (ie. for the password of a PLAIN method authenticator.

   JH/39 Bug 2691: fix $local_part_data.  When the matching list element
         referred to a file, bad data was returned.  This likely also affected
         $domain_part_data.

   JH/41 Fix daemon SIGHUP on FreeBSD.  Previously, a named socket for IPC was
         left undeleted; the attempt to re-create it then failed - resulting in
         the usual "SIGHUP tp have daemon reload configuration" to not work.
         This affected any platform not supporting "abstract" Unix-domain
         sockets (i.e. not Linux).

   JH/42 Bug 2692: Harden against a peer which reneges on a 452 "too many
         recipients" response to RCPT in a later response, with a 250.  The
         previous coding assumed this would not happen, and under PIPELINING
         would result in both lost and duplicate recipients for a message.

   JH/43 Bug 2694: Fix weighted distribution of work to multiple spamd servers.
         Previously the weighting was incorrectly applied.  Similar fix for socks
         proxies.  Found and fixed by Heiko Schlichting.

   JH/44 Bug 2701: Fix list-expansion of dns_ipv4_lookup.  Previously, it did
         not handle sub-lists included using the +namedlist syntax.  While
         investigating, the same found for dns_trust_aa, dns_again_means_nonexist,
         dnssec_require_domains, dnssec_request_domains, srv_fail_domains,
         mx_fail_domains.

   HS/01 Enforce absolute PID file path name.

   HS/02 Handle SIGINT as we handle SIGTERM: terminate the Exim process.

   PP/01 Add a too-many-bad-recipients guard to the default config's RCPT ACL.

   PP/02 Bug 2643: Correct TLS DH constants.
         A missing NUL termination in our code-generation tool had led to some
         incorrect Diffie-Hellman constants in the Exim source.
         Reported by kylon94, code-gen tool fix by Simon Arlott.

   PP/03 Impose security length checks on various command-line options.
         Fixes CVE-2020-SPRSS reported by Qualys.

   PP/04 Fix Linux security issue CVE-2020-SLCWD and guard against PATH_MAX
         better.  Reported by Qualys.

   PP/05 Fix security issue CVE-2020-PFPSN and guard against cmdline invoker
         providing a particularly obnoxious sender full name.
         Reported by Qualys.

   PP/06 Fix CVE-2020-28016 (PFPZA): Heap out-of-bounds write in parse_fix_phrase()

   PP/07 Refuse to allocate too little memory, block negative/zero allocations.
         Security guard.

   PP/08 Change default for recipients_max from unlimited to 50,000.

   PP/09 Fix security issue with too many recipients on a message (to remove a
         known security problem if someone does set recipients_max to unlimited,
         or if local additions add to the recipient list).
         Fixes CVE-2020-RCPTL reported by Qualys.

   PP/10 Fix security issue in SMTP verb option parsing
         Fixes CVE-2020-EXOPT reported by Qualys.

   PP/11 Fix security issue in BDAT state confusion.
         Ensure we reset known-good where we know we need to not be reading BDAT
         data, as a general case fix, and move the places where we switch to BDAT
         mode until after various protocol state checks.
         Fixes CVE-2020-BDATA reported by Qualys.

   HS/03 Die on "/../" in msglog file names

   QS/01 Creation of (database) files in $spool_dir: only uid=0 or the uid of
         the Exim runtime user are allowed to create files.

   QS/02 PID file creation/deletion: only possible if uid=0 or uid is the Exim
         runtime user.

   QS/03 When reading the output from interpreted forward files we do not
         pass the pipe between the parent and the interpreting process to
         executed child processes (if any).

   QS/04 Always die if requested from internal logging, even is logging is
         disabled.

---
   Module Name:    pkgsrc
   Committed By:   wiz
   Date:           Thu May  6 07:08:54 UTC 2021

   Removed Files:
           pkgsrc/mail/exim/patches: patch-src_store.c

   Log Message:
   exim: remove patch from distinfo that was removed from repository during update
2021-05-07 19:05:18 +00:00
bsiegert 44fd54f3de Pullup tickets up to #6454 2021-04-30 15:05:32 +00:00
bsiegert 78e4d89168 Pullup ticket #6454 - requested by taca
net/bind916: security fix

Revisions pulled up:
- net/bind916/Makefile                                          1.12-1.13
- net/bind916/distinfo                                          1.12

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Wed Apr 21 11:43:04 UTC 2021

   Modified Files:
   	pkgsrc/archivers/ark: Makefile
   	pkgsrc/archivers/arqiver: Makefile
   	pkgsrc/archivers/karchive: Makefile buildlink3.mk
   	pkgsrc/archivers/lxqt-archiver: Makefile
   	pkgsrc/archivers/quazip: Makefile buildlink3.mk
   	pkgsrc/audio/ardour: Makefile
   	pkgsrc/audio/ario: Makefile
   	pkgsrc/audio/audacious: Makefile buildlink3.mk
   	pkgsrc/audio/audacious-plugins: Makefile
   	pkgsrc/audio/bmp: Makefile
   	pkgsrc/audio/buzztrax: Makefile
   	pkgsrc/audio/cantata: Makefile
   	pkgsrc/audio/cddb-bundle: Makefile
   	pkgsrc/audio/cdplayer: Makefile
   	pkgsrc/audio/ezstream: Makefile
   	pkgsrc/audio/flactag: Makefile
   	pkgsrc/audio/forked-daapd: Makefile
   	pkgsrc/audio/gbemol: Makefile
   	pkgsrc/audio/glurp: Makefile
   	pkgsrc/audio/glyr: Makefile buildlink3.mk
   	pkgsrc/audio/gmpc: Makefile
   	pkgsrc/audio/gmpc-albumview: Makefile
   	pkgsrc/audio/gmpc-jamendo: Makefile
   	pkgsrc/audio/gmpc-lyrics: Makefile
   	pkgsrc/audio/gmpc-lyricwiki: Makefile
   	pkgsrc/audio/gmpc-magnatune: Makefile
   	pkgsrc/audio/gmpc-tagedit: Makefile
   	pkgsrc/audio/grip: Makefile
   	pkgsrc/audio/gst-plugins0.10-a52: Makefile
   	pkgsrc/audio/gst-plugins0.10-dts: Makefile
   	pkgsrc/audio/gst-plugins0.10-faac: Makefile
   	pkgsrc/audio/gst-plugins0.10-faad: Makefile
   	pkgsrc/audio/gst-plugins0.10-flac: Makefile
   	pkgsrc/audio/gst-plugins0.10-fluendo-mp3: Makefile
   	pkgsrc/audio/gst-plugins0.10-jack: Makefile
   	pkgsrc/audio/gst-plugins0.10-lame: Makefile
   	pkgsrc/audio/gst-plugins0.10-mad: Makefile
   	pkgsrc/audio/gst-plugins0.10-musepack: Makefile
   	pkgsrc/audio/gst-plugins0.10-oss: Makefile
   	pkgsrc/audio/gst-plugins0.10-pulse: Makefile
   	pkgsrc/audio/gst-plugins0.10-sid: Makefile
   	pkgsrc/audio/gst-plugins0.10-soundtouch: Makefile
   	pkgsrc/audio/gst-plugins0.10-spc: Makefile
   	pkgsrc/audio/gst-plugins0.10-speex: Makefile
   	pkgsrc/audio/gst-plugins0.10-twolame: Makefile
   	pkgsrc/audio/gst-plugins0.10-wavpack: Makefile
   	pkgsrc/audio/gtkpod: Makefile
   	pkgsrc/audio/hydrogen: Makefile
   	pkgsrc/audio/icecast: Makefile
   	pkgsrc/audio/ices-mp3: Makefile
   	pkgsrc/audio/jack-rack: Makefile
   	pkgsrc/audio/kid3: Makefile
   	pkgsrc/audio/libgpod: Makefile buildlink3.mk
   	pkgsrc/audio/libmusicbrainz5: Makefile buildlink3.mk
   	pkgsrc/audio/liteamp: Makefile
   	pkgsrc/audio/lmms: Makefile
   	pkgsrc/audio/mixxx: Makefile
   	pkgsrc/audio/mp3diags: Makefile
   	pkgsrc/audio/musescore: Makefile
   	pkgsrc/audio/musicpd: Makefile
   	pkgsrc/audio/ncmpcpp: Makefile
   	pkgsrc/audio/paman: Makefile
   	pkgsrc/audio/paprefs: Makefile
   	pkgsrc/audio/pavucontrol: Makefile
   	pkgsrc/audio/pavucontrol-qt: Makefile
   	pkgsrc/audio/pavumeter: Makefile
   	pkgsrc/audio/pragha: Makefile
   	pkgsrc/audio/py-musique: Makefile
   	pkgsrc/audio/qjackctl: Makefile
   	pkgsrc/audio/qmmp: Makefile
   	pkgsrc/audio/qsynth: Makefile
   	pkgsrc/audio/quodlibet: Makefile
   	pkgsrc/audio/rhythmbox: Makefile
   	pkgsrc/audio/solfege: Makefile
   	pkgsrc/audio/sound-juicer: Makefile
   	pkgsrc/audio/spotify-qt: Makefile
   	pkgsrc/audio/streamtuner: Makefile
   	pkgsrc/audio/terminatorx: Makefile
   	pkgsrc/audio/traverso: Makefile
   	pkgsrc/audio/xfce4-mixer: Makefile
   	pkgsrc/audio/xfce4-xmms-plugin: Makefile
   	pkgsrc/benchmarks/dnsperf: Makefile
   	pkgsrc/benchmarks/sysbench: Makefile
   	pkgsrc/biology/bodr: Makefile
   	pkgsrc/biology/gnome-chemistry-utils: Makefile
   	pkgsrc/biology/gromacs: Makefile
   	pkgsrc/biology/molsketch: Makefile
   	pkgsrc/biology/ncbi-blast+: Makefile
   	pkgsrc/biology/openbabel: Makefile buildlink3.mk
   	pkgsrc/cad/gtkwave: Makefile
   	pkgsrc/cad/klayout: Makefile
   	pkgsrc/cad/librecad: Makefile
   	pkgsrc/cad/libredwg: Makefile
   	pkgsrc/cad/openscad: Makefile
   	pkgsrc/cad/qcad: Makefile
   	pkgsrc/chat/anope: Makefile
   	pkgsrc/chat/carbons-purple: Makefile
   	pkgsrc/chat/centerim5: Makefile
   	pkgsrc/chat/dino: Makefile
   	pkgsrc/chat/farstream: Makefile
   	pkgsrc/chat/finch: Makefile
   	pkgsrc/chat/hexchat: Makefile
   	pkgsrc/chat/jabberd2: Makefile
   	pkgsrc/chat/konversation: Makefile
   	pkgsrc/chat/ktp-accounts-kcm: Makefile
   	pkgsrc/chat/ktp-approver: Makefile
   	pkgsrc/chat/ktp-auth-handler: Makefile
   	pkgsrc/chat/ktp-common-internals: Makefile buildlink3.mk
   	pkgsrc/chat/ktp-contact-list: Makefile
   	pkgsrc/chat/ktp-contact-runner: Makefile
   	pkgsrc/chat/ktp-desktop-applets: Makefile
   	pkgsrc/chat/ktp-filetransfer-handler: Makefile
   	pkgsrc/chat/ktp-kded-integration-module: Makefile
   	pkgsrc/chat/ktp-send-file: Makefile
   	pkgsrc/chat/ktp-text-ui: Makefile
   	pkgsrc/chat/libfolks: Makefile
   	pkgsrc/chat/libgadu: Makefile
   	pkgsrc/chat/libpurple: Makefile buildlink3.mk
   	pkgsrc/chat/libtelepathy: Makefile
   	pkgsrc/chat/lurch-purple: Makefile
   	pkgsrc/chat/mumble: Makefile
   	pkgsrc/chat/pidgin: Makefile buildlink3.mk
   	pkgsrc/chat/pidgin-facebookchat: Makefile
   	pkgsrc/chat/pidgin-icb: Makefile
   	pkgsrc/chat/pidgin-latex: Makefile
   	pkgsrc/chat/pidgin-libnotify: Makefile
   	pkgsrc/chat/pidgin-otr: Makefile
   	pkgsrc/chat/pidgin-sametime: Makefile
   	pkgsrc/chat/pidgin-silc: Makefile
   	pkgsrc/chat/profanity: Makefile
   	pkgsrc/chat/psi: Makefile
   	pkgsrc/chat/quassel: Makefile
   	pkgsrc/chat/skypeweb-purple: Makefile
   	pkgsrc/chat/spectrum: Makefile
   	pkgsrc/chat/srain: Makefile
   	pkgsrc/chat/swift: Makefile
   	pkgsrc/chat/telegram-purple: Makefile
   	pkgsrc/chat/telepathy-gabble: Makefile
   	pkgsrc/chat/telepathy-glib: Makefile
   	pkgsrc/chat/telepathy-haze: Makefile
   	pkgsrc/chat/telepathy-idle: Makefile
   	pkgsrc/chat/telepathy-logger: Makefile buildlink3.mk
   	pkgsrc/chat/telepathy-mission-control5: Makefile
   	pkgsrc/chat/telepathy-qt5: Makefile buildlink3.mk
   	pkgsrc/chat/znc: Makefile
   	pkgsrc/comms/asterisk13: Makefile
   	pkgsrc/comms/asterisk15: Makefile
   	pkgsrc/comms/asterisk16: Makefile
   	pkgsrc/comms/libopensync: Makefile buildlink3.mk
   	pkgsrc/comms/libopensync-plugin-file: Makefile
   	pkgsrc/comms/libopensync-plugin-syncml: Makefile
   	pkgsrc/comms/libsyncml: Makefile
   	pkgsrc/comms/msynctool: Makefile
   	pkgsrc/comms/multisync-gui: Makefile
   	pkgsrc/comms/spandsp: Makefile
   	pkgsrc/comms/tilp2: Makefile
   	pkgsrc/comms/xfce4-modemlights-plugin: Makefile
   	pkgsrc/converters/libabw: Makefile
   	pkgsrc/converters/libcdr: Makefile buildlink3.mk
   	pkgsrc/converters/libe-book: Makefile
   	pkgsrc/converters/libetonyek: Makefile
   	pkgsrc/converters/libfreehand: Makefile
   	pkgsrc/converters/libmspub: Makefile
   	pkgsrc/converters/libqxp: Makefile
   	pkgsrc/converters/libvisio: Makefile buildlink3.mk
   	pkgsrc/converters/libzmf: Makefile
   	pkgsrc/converters/pyzy: Makefile buildlink3.mk
   	pkgsrc/converters/wv: Makefile buildlink3.mk
   	pkgsrc/converters/wv2: Makefile buildlink3.mk
   	pkgsrc/databases/SQLiteCpp: Makefile buildlink3.mk
   	pkgsrc/databases/couchdb: Makefile
   	pkgsrc/databases/csharp-mysql: Makefile
   	pkgsrc/databases/deforaos-libdatabase: Makefile
   	pkgsrc/databases/erlang-sqlite3: Makefile
   	pkgsrc/databases/gom: Makefile
   	pkgsrc/databases/gourmet: Makefile
   	pkgsrc/databases/gramps3: Makefile
   	pkgsrc/databases/gtkdbfeditor: Makefile
   	pkgsrc/databases/guile-sqlite3: Makefile
   	pkgsrc/databases/idzebra: Makefile buildlink3.mk
   	pkgsrc/databases/kldap: Makefile buildlink3.mk
   	pkgsrc/databases/libdbi-driver-sqlite3: Makefile
   	pkgsrc/databases/libgda: Makefile buildlink3.mk
   	pkgsrc/databases/libgda-mysql: Makefile
   	pkgsrc/databases/libgda-postgres: Makefile
   	pkgsrc/databases/libzdb: Makefile buildlink3.mk
   	pkgsrc/databases/lua-dbi-sqlite3: Makefile
   	pkgsrc/databases/lua-lsqlite3: Makefile
   	pkgsrc/databases/lua-sql-sqlite3: Makefile
   	pkgsrc/databases/lua-sqlite3: Makefile
   	pkgsrc/databases/mongo-c-driver: Makefile buildlink3.mk
   	pkgsrc/databases/mongodb: Makefile
   	pkgsrc/databases/mongodb3: Makefile
   	pkgsrc/databases/mysql-workbench: Makefile
   	pkgsrc/databases/ocaml-sqlite3: Makefile
   	pkgsrc/databases/p5-DBD-SQLite: Makefile
   	pkgsrc/databases/p5-RRD-Simple: Makefile
   	pkgsrc/databases/pgadmin3: Makefile
   	pkgsrc/databases/php-mongodb: Makefile
   	pkgsrc/databases/php-pdo_sqlite: Makefile
   	pkgsrc/databases/php-rrd: Makefile
   	pkgsrc/databases/php-sqlite3: Makefile
   	pkgsrc/databases/poco-data-sqlite: Makefile buildlink3.mk
   	pkgsrc/databases/postgresql-postgis2: Makefile buildlink3.mk
   	pkgsrc/databases/postgresql-promscale_extension: Makefile
   	pkgsrc/databases/postgresql10: Makefile
   	pkgsrc/databases/postgresql10-client: Makefile
   	pkgsrc/databases/postgresql10-contrib: Makefile
   	pkgsrc/databases/postgresql10-docs: Makefile
   	pkgsrc/databases/postgresql10-plperl: Makefile
   	pkgsrc/databases/postgresql10-plpython: Makefile
   	pkgsrc/databases/postgresql10-pltcl: Makefile
   	pkgsrc/databases/postgresql10-server: Makefile
   	pkgsrc/databases/postgresql11: Makefile
   	pkgsrc/databases/postgresql11-client: Makefile
   	pkgsrc/databases/postgresql11-contrib: Makefile
   	pkgsrc/databases/postgresql11-docs: Makefile
   	pkgsrc/databases/postgresql11-plperl: Makefile
   	pkgsrc/databases/postgresql11-plpython: Makefile
   	pkgsrc/databases/postgresql11-pltcl: Makefile
   	pkgsrc/databases/postgresql11-server: Makefile
   	pkgsrc/databases/postgresql12: Makefile
   	pkgsrc/databases/postgresql12-client: Makefile
   	pkgsrc/databases/postgresql12-contrib: Makefile
   	pkgsrc/databases/postgresql12-docs: Makefile
   	pkgsrc/databases/postgresql12-plperl: Makefile
   	pkgsrc/databases/postgresql12-plpython: Makefile
   	pkgsrc/databases/postgresql12-pltcl: Makefile
   	pkgsrc/databases/postgresql12-server: Makefile
   	pkgsrc/databases/postgresql13: Makefile
   	pkgsrc/databases/postgresql13-client: Makefile
   	pkgsrc/databases/postgresql13-contrib: Makefile
   	pkgsrc/databases/postgresql13-docs: Makefile
   	pkgsrc/databases/postgresql13-plperl: Makefile
   	pkgsrc/databases/postgresql13-plpython: Makefile
   	pkgsrc/databases/postgresql13-pltcl: Makefile
   	pkgsrc/databases/postgresql13-server: Makefile
   	pkgsrc/databases/postgresql95: Makefile
   	pkgsrc/databases/postgresql95-client: Makefile
   	pkgsrc/databases/postgresql95-contrib: Makefile
   	pkgsrc/databases/postgresql95-docs: Makefile
   	pkgsrc/databases/postgresql95-plperl: Makefile
   	pkgsrc/databases/postgresql95-plpython: Makefile
   	pkgsrc/databases/postgresql95-pltcl: Makefile
   	pkgsrc/databases/postgresql95-server: Makefile
   	pkgsrc/databases/postgresql96: Makefile
   	pkgsrc/databases/postgresql96-client: Makefile
   	pkgsrc/databases/postgresql96-contrib: Makefile
   	pkgsrc/databases/postgresql96-docs: Makefile
   	pkgsrc/databases/postgresql96-plperl: Makefile
   	pkgsrc/databases/postgresql96-plpython: Makefile
   	pkgsrc/databases/postgresql96-pltcl: Makefile
   	pkgsrc/databases/postgresql96-server: Makefile
   	pkgsrc/databases/py-apsw: Makefile
   	pkgsrc/databases/py-peewee: Makefile
   	pkgsrc/databases/py-rrdtool: Makefile
   	pkgsrc/databases/py-sqlite2: Makefile
   	pkgsrc/databases/py-sqlite3: Makefile
   	pkgsrc/databases/qore-sqlite3-module: Makefile
   	pkgsrc/databases/repmgr: Makefile
   	pkgsrc/databases/rrdtool: Makefile buildlink3.mk
   	pkgsrc/databases/ruby-do_sqlite3: Makefile
   	pkgsrc/databases/ruby-rrdtool: Makefile
   	pkgsrc/databases/ruby-sqlite3: Makefile
   	pkgsrc/databases/shared-mime-info: Makefile
   	pkgsrc/databases/soci: Makefile
   	pkgsrc/databases/sqlite3: Makefile buildlink3.mk
   	pkgsrc/databases/sqlite3-tcl: Makefile
   	pkgsrc/databases/sqlitebrowser: Makefile
   	pkgsrc/databases/sqlrelay-sqlite: Makefile
   	pkgsrc/databases/virtuoso: Makefile
   	pkgsrc/databases/vsqlite++: Makefile buildlink3.mk
   	pkgsrc/devel/GConf: Makefile buildlink3.mk
   	pkgsrc/devel/GConf-ui: Makefile buildlink3.mk
   	pkgsrc/devel/Gorm: Makefile
   	pkgsrc/devel/ObjectiveLib: Makefile
   	pkgsrc/devel/ProjectCenter: Makefile
   	pkgsrc/devel/Renaissance: Makefile buildlink3.mk
   	pkgsrc/devel/SOPE: Makefile
   	pkgsrc/devel/SOPE4: Makefile
   	pkgsrc/devel/aegis: Makefile
   	pkgsrc/devel/anjuta: Makefile
   	pkgsrc/devel/appdata-tools: Makefile
   	pkgsrc/devel/appstream-glib: Makefile
   	pkgsrc/devel/apr-util: Makefile
   	pkgsrc/devel/at-spi: Makefile buildlink3.mk
   	pkgsrc/devel/autogen: Makefile
   	pkgsrc/devel/cervisia: Makefile
   	pkgsrc/devel/cmake-gui: Makefile
   	pkgsrc/devel/coconut: Makefile
   	pkgsrc/devel/compiz-bcop: Makefile
   	pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk
   	pkgsrc/devel/cppcheck: Makefile
   	pkgsrc/devel/creduce: Makefile
   	pkgsrc/devel/cutter: Makefile
   	pkgsrc/devel/devhelp: Makefile
   	pkgsrc/devel/dia2code: Makefile
   	pkgsrc/devel/distccmon-gnome: Makefile
   	pkgsrc/devel/dolphin-plugins: Makefile
   	pkgsrc/devel/doxygen: Makefile
   	pkgsrc/devel/doxymacs: Makefile
   	pkgsrc/devel/dumpet: Makefile
   	pkgsrc/devel/edcommon: Makefile
   	pkgsrc/devel/fossil: Makefile
   	pkgsrc/devel/frama-c: Makefile
   	pkgsrc/devel/gconfmm: Makefile buildlink3.mk
   	pkgsrc/devel/gdl: Makefile
   	pkgsrc/devel/gearmand: Makefile
   	pkgsrc/devel/glade: Makefile buildlink3.mk
   	pkgsrc/devel/global: Makefile
   	pkgsrc/devel/gmtk: Makefile buildlink3.mk
   	pkgsrc/devel/gnustep-base: Makefile buildlink3.mk
   	pkgsrc/devel/gnustep-examples: Makefile
   	pkgsrc/devel/gps: Makefile
   	pkgsrc/devel/grantlee-qt5: Makefile buildlink3.mk
   	pkgsrc/devel/guile-gnome: Makefile
   	pkgsrc/devel/hyperscan: Makefile
   	pkgsrc/devel/include-what-you-use: Makefile
   	pkgsrc/devel/java-subversion: Makefile
   	pkgsrc/devel/kapptemplate: Makefile
   	pkgsrc/devel/kbookmarks: Makefile buildlink3.mk
   	pkgsrc/devel/kcachegrind: Makefile
   	pkgsrc/devel/kcmutils: Makefile buildlink3.mk
   	pkgsrc/devel/kconfig: Makefile buildlink3.mk
   	pkgsrc/devel/kcoreaddons: Makefile buildlink3.mk
   	pkgsrc/devel/kcrash: Makefile buildlink3.mk
   	pkgsrc/devel/kde-dev-scripts: Makefile
   	pkgsrc/devel/kde-dev-utils: Makefile
   	pkgsrc/devel/kdeclarative: Makefile buildlink3.mk
   	pkgsrc/devel/kdesdk-kioslaves: Makefile
   	pkgsrc/devel/kdesdk-strigi-analyzers: Makefile
   	pkgsrc/devel/kdesdk-thumbnailers: Makefile
   	pkgsrc/devel/kdevelop4: Makefile
   	pkgsrc/devel/kdevplatform: Makefile
   	pkgsrc/devel/kdiff3: Makefile
   	pkgsrc/devel/kdoctools: Makefile buildlink3.mk
   	pkgsrc/devel/ki18n: Makefile
   	pkgsrc/devel/kidletime: Makefile buildlink3.mk
   	pkgsrc/devel/kio: Makefile buildlink3.mk
   	pkgsrc/devel/kio-extras: Makefile
   	pkgsrc/devel/kitemmodels: Makefile buildlink3.mk
   	pkgsrc/devel/knotifications: Makefile buildlink3.mk
   	pkgsrc/devel/knotifyconfig: Makefile buildlink3.mk
   	pkgsrc/devel/kompare: Makefile
   	pkgsrc/devel/kpackage: Makefile buildlink3.mk
   	pkgsrc/devel/kparts: Makefile buildlink3.mk
   	pkgsrc/devel/kpeople: Makefile buildlink3.mk
   	pkgsrc/devel/kpty: Makefile buildlink3.mk
   	pkgsrc/devel/kross: Makefile buildlink3.mk
   	pkgsrc/devel/krunner: Makefile buildlink3.mk
   	pkgsrc/devel/kservice: Makefile buildlink3.mk
   	pkgsrc/devel/ktexteditor: Makefile buildlink3.mk
   	pkgsrc/devel/kwayland: Makefile buildlink3.mk
   	pkgsrc/devel/kyua: Makefile
   	pkgsrc/devel/libappindicator: Makefile
   	pkgsrc/devel/libbonobo: Makefile buildlink3.mk
   	pkgsrc/devel/libbonoboui: Makefile buildlink3.mk
   	pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk
   	pkgsrc/devel/libdbusmenu-qt5: Makefile buildlink3.mk
   	pkgsrc/devel/libextractor: Makefile buildlink3.mk
   	pkgsrc/devel/libglade: Makefile buildlink3.mk
   	pkgsrc/devel/libglademm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnome: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomemm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomeui: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomeuimm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnt: Makefile buildlink3.mk
   	pkgsrc/devel/libgphoto2: Makefile buildlink3.mk
   	pkgsrc/devel/libgsf: Makefile buildlink3.mk
   	pkgsrc/devel/libgweather: Makefile buildlink3.mk
   	pkgsrc/devel/libhid: Makefile
   	pkgsrc/devel/libkgapi: Makefile
   	pkgsrc/devel/libkomparediff2: Makefile buildlink3.mk
   	pkgsrc/devel/liblangtag: Makefile
   	pkgsrc/devel/libsexy: Makefile buildlink3.mk
   	pkgsrc/devel/libsexymm: Makefile buildlink3.mk
   	pkgsrc/devel/libxenserver: Makefile buildlink3.mk
   	pkgsrc/devel/lokalize: Makefile
   	pkgsrc/devel/lxqt-build-tools: Makefile
   	pkgsrc/devel/m17n-lib: Makefile buildlink3.mk
   	pkgsrc/devel/meld: Makefile
   	pkgsrc/devel/monotone: Makefile
   	pkgsrc/devel/monotone-viz: Makefile
   	pkgsrc/devel/nss: Makefile
   	pkgsrc/devel/ocamlgraph: Makefile
   	pkgsrc/devel/okteta: Makefile
   	pkgsrc/devel/opengrok: Makefile
   	pkgsrc/devel/p5-Gnome2: Makefile
   	pkgsrc/devel/p5-Gnome2-GConf: Makefile
   	pkgsrc/devel/p5-Gtk2-GladeXML: Makefile
   	pkgsrc/devel/p5-subversion: Makefile
   	pkgsrc/devel/plasma-wayland-protocols: Makefile
   	pkgsrc/devel/poxml: Makefile
   	pkgsrc/devel/purpose: Makefile buildlink3.mk
   	pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk
   	pkgsrc/devel/py-pysvn: Makefile
   	pkgsrc/devel/py-subversion: Makefile
   	pkgsrc/devel/py-subvertpy: Makefile
   	pkgsrc/devel/py-tortoisehg: Makefile
   	pkgsrc/devel/py-tryton: Makefile
   	pkgsrc/devel/qconf: Makefile
   	pkgsrc/devel/radare2-cutter: Makefile
   	pkgsrc/devel/rapidsvn: Makefile
   	pkgsrc/devel/ruby-redmine: Makefile
   	pkgsrc/devel/ruby-subversion: Makefile
   	pkgsrc/devel/startbug1: Makefile
   	pkgsrc/devel/subversion-base: Makefile buildlink3.mk
   	pkgsrc/devel/threadweaver: Makefile buildlink3.mk
   	pkgsrc/devel/umbrello: Makefile
   	pkgsrc/devel/verifast: Makefile
   	pkgsrc/devel/wayland: Makefile
   	pkgsrc/devel/woboq_codebrowser: Makefile
   	pkgsrc/devel/zeal: Makefile
   	pkgsrc/editors/Sigil: Makefile
   	pkgsrc/editors/TeXmacs: Makefile
   	pkgsrc/editors/abiword: Makefile buildlink3.mk
   	pkgsrc/editors/abiword-plugins: Makefile
   	pkgsrc/editors/codelite: Makefile
   	pkgsrc/editors/emacs25: Makefile
   	pkgsrc/editors/emacs26: Makefile
   	pkgsrc/editors/emacs27: Makefile
   	pkgsrc/editors/feathernotes: Makefile
   	pkgsrc/editors/featherpad: Makefile
   	pkgsrc/editors/focuswriter: Makefile
   	pkgsrc/editors/gedit: Makefile
   	pkgsrc/editors/gobby: Makefile
   	pkgsrc/editors/gtranslator: Makefile
   	pkgsrc/editors/gummi: Makefile
   	pkgsrc/editors/kate: Makefile
   	pkgsrc/editors/kile: Makefile
   	pkgsrc/editors/lyx: Makefile
   	pkgsrc/editors/medit: Makefile
   	pkgsrc/editors/pluma: Makefile
   	pkgsrc/editors/poedit: Makefile
   	pkgsrc/editors/qtcreator: Makefile
   	pkgsrc/editors/sasm: Makefile
   	pkgsrc/editors/tea: Makefile
   	pkgsrc/editors/tepl4: Makefile buildlink3.mk
   	pkgsrc/editors/texmaker: Makefile
   	pkgsrc/editors/texstudio: Makefile
   	pkgsrc/editors/texworks: Makefile
   	pkgsrc/editors/vim-gtk2: Makefile
   	pkgsrc/editors/xfce4-mousepad: Makefile
   	pkgsrc/editors/xournal: Makefile
   	pkgsrc/editors/xournalpp: Makefile
   	pkgsrc/emulators/PC6001VX: Makefile
   	pkgsrc/emulators/bsnes: Makefile
   	pkgsrc/emulators/ckmame: Makefile
   	pkgsrc/emulators/fuse-emulator: Makefile
   	pkgsrc/emulators/mame: Makefile
   	pkgsrc/emulators/mgba: Makefile
   	pkgsrc/emulators/retroarch: Makefile
   	pkgsrc/emulators/rpcemu: Makefile
   	pkgsrc/emulators/ski: Makefile
   	pkgsrc/emulators/wine: Makefile
   	pkgsrc/emulators/yabause: Makefile
   	pkgsrc/filesystems/cloudfuse: Makefile
   	pkgsrc/filesystems/fuse-darling-dmg: Makefile
   	pkgsrc/filesystems/fuse-gphotofs: Makefile
   	pkgsrc/filesystems/fuse-loggedfs: Makefile
   	pkgsrc/filesystems/fuse-pod: Makefile
   	pkgsrc/filesystems/fuse-svnfs: Makefile
   	pkgsrc/filesystems/glusterfs: Makefile
   	pkgsrc/filesystems/ltfs: Makefile
   	pkgsrc/filesystems/ltfs-ltotape: Makefile
   	pkgsrc/filesystems/ori: Makefile
   	pkgsrc/finance/bitcoin: Makefile
   	pkgsrc/finance/gnucash: Makefile
   	pkgsrc/finance/homebank: Makefile
   	pkgsrc/finance/libofx: Makefile
   	pkgsrc/fonts/fontforge: Makefile
   	pkgsrc/fonts/gucharmap: Makefile buildlink3.mk
   	pkgsrc/fonts/harfbuzz-icu: Makefile
   	pkgsrc/games/amor: Makefile
   	pkgsrc/games/armagetronad: Makefile
   	pkgsrc/games/armagetronad-server: Makefile
   	pkgsrc/games/atomix: Makefile
   	pkgsrc/games/blinken: Makefile
   	pkgsrc/games/bomber: Makefile
   	pkgsrc/games/bovo: Makefile
   	pkgsrc/games/ccgo: Makefile
   	pkgsrc/games/crossfire-server: Makefile
   	pkgsrc/games/easyrpg-player: Makefile
   	pkgsrc/games/eternal-lands: Makefile
   	pkgsrc/games/etlegacy: Makefile
   	pkgsrc/games/etlegacy-server: Makefile
   	pkgsrc/games/flightgear: Makefile
   	pkgsrc/games/fna: Makefile buildlink3.mk
   	pkgsrc/games/fnaify: Makefile
   	pkgsrc/games/gamazons: Makefile
   	pkgsrc/games/gbrainy: Makefile
   	pkgsrc/games/gcompris: Makefile
   	pkgsrc/games/genecys-client: Makefile
   	pkgsrc/games/gnome-mastermind: Makefile
   	pkgsrc/games/granatier: Makefile
   	pkgsrc/games/grhino: Makefile
   	pkgsrc/games/kajongg: Makefile
   	pkgsrc/games/kanagram: Makefile
   	pkgsrc/games/kanatest: Makefile
   	pkgsrc/games/kapman: Makefile
   	pkgsrc/games/katomic: Makefile
   	pkgsrc/games/kblackbox: Makefile
   	pkgsrc/games/kblocks: Makefile
   	pkgsrc/games/kbounce: Makefile
   	pkgsrc/games/kbreakout: Makefile
   	pkgsrc/games/kdiamond: Makefile
   	pkgsrc/games/kfourinline: Makefile
   	pkgsrc/games/kgoldrunner: Makefile
   	pkgsrc/games/khangman: Makefile
   	pkgsrc/games/kigo: Makefile
   	pkgsrc/games/killbots: Makefile
   	pkgsrc/games/kiriki: Makefile
   	pkgsrc/games/kjumpingcube: Makefile
   	pkgsrc/games/klickety: Makefile
   	pkgsrc/games/klines: Makefile
   	pkgsrc/games/kmahjongg: Makefile
   	pkgsrc/games/kmines: Makefile
   	pkgsrc/games/knavalbattle: Makefile
   	pkgsrc/games/knetwalk: Makefile
   	pkgsrc/games/kolf: Makefile
   	pkgsrc/games/kollision: Makefile
   	pkgsrc/games/konquest: Makefile
   	pkgsrc/games/kpat: Makefile
   	pkgsrc/games/kreversi: Makefile
   	pkgsrc/games/kshisen: Makefile
   	pkgsrc/games/ksirk: Makefile
   	pkgsrc/games/ksnakeduel: Makefile
   	pkgsrc/games/kspaceduel: Makefile
   	pkgsrc/games/ksquares: Makefile
   	pkgsrc/games/ksudoku: Makefile
   	pkgsrc/games/ktuberling: Makefile
   	pkgsrc/games/kubrick: Makefile
   	pkgsrc/games/kye: Makefile
   	pkgsrc/games/libkdegames: Makefile buildlink3.mk
   	pkgsrc/games/libkmahjongg: Makefile buildlink3.mk
   	pkgsrc/games/liblcf: Makefile buildlink3.mk
   	pkgsrc/games/lincity-ng: Makefile
   	pkgsrc/games/lskat: Makefile
   	pkgsrc/games/manaplus: Makefile
   	pkgsrc/games/megaglest: Makefile
   	pkgsrc/games/minetest: Makefile
   	pkgsrc/games/naev: Makefile
   	pkgsrc/games/openmw: Makefile
   	pkgsrc/games/openrct2: Makefile
   	pkgsrc/games/openttd: Makefile
   	pkgsrc/games/palapeli: Makefile
   	pkgsrc/games/picmi: Makefile
   	pkgsrc/games/pioneers: Makefile
   	pkgsrc/games/q5go: Makefile
   	pkgsrc/games/quarry: Makefile
   	pkgsrc/games/simgear: Makefile buildlink3.mk
   	pkgsrc/games/solarus: Makefile
   	pkgsrc/games/stone-soup: Makefile
   	pkgsrc/games/stone-soup-sdl: Makefile
   	pkgsrc/games/teg: Makefile
   	pkgsrc/games/warmux: Makefile
   	pkgsrc/games/warzone2100: Makefile
   	pkgsrc/games/widelands: Makefile
   	pkgsrc/games/xboard: Makefile
   	pkgsrc/games/xu4: Makefile
   	pkgsrc/geography/R-lwgeom: Makefile
   	pkgsrc/geography/R-rgdal: Makefile
   	pkgsrc/geography/R-sf: Makefile
   	pkgsrc/geography/gama: Makefile
   	pkgsrc/geography/gdal-lib: Makefile buildlink3.mk
   	pkgsrc/geography/geoclue: Makefile
   	pkgsrc/geography/geocode-glib: Makefile
   	pkgsrc/geography/gpsbabel: Makefile
   	pkgsrc/geography/gpxsee: Makefile
   	pkgsrc/geography/libchamplain012: Makefile buildlink3.mk
   	pkgsrc/geography/libgeotiff: Makefile buildlink3.mk
   	pkgsrc/geography/libspatialite: Makefile buildlink3.mk
   	pkgsrc/geography/mapserver: Makefile
   	pkgsrc/geography/merkaartor: Makefile
   	pkgsrc/geography/osm-gps-map: Makefile
   	pkgsrc/geography/osm2pgsql: Makefile
   	pkgsrc/geography/proj: Makefile buildlink3.mk
   	pkgsrc/geography/py-gdal: Makefile
   	pkgsrc/geography/py-proj: Makefile
   	pkgsrc/geography/qgis: Makefile
   	pkgsrc/geography/qlandkartegt: Makefile
   	pkgsrc/geography/qlandkartem: Makefile
   	pkgsrc/geography/viking: Makefile
   	pkgsrc/graphics/Cenon: Makefile
   	pkgsrc/graphics/GraphicsMagick: Makefile
   	pkgsrc/graphics/ImageMagick: Makefile buildlink3.mk
   	pkgsrc/graphics/ImageMagick6: Makefile buildlink3.mk
   	pkgsrc/graphics/ImageViewer: Makefile
   	pkgsrc/graphics/autopano-sift-C: Makefile
   	pkgsrc/graphics/autotrace: Makefile
   	pkgsrc/graphics/breeze-icons: Makefile
   	pkgsrc/graphics/camlimages: Makefile
   	pkgsrc/graphics/colord: Makefile
   	pkgsrc/graphics/comix: Makefile
   	pkgsrc/graphics/darktable: Makefile
   	pkgsrc/graphics/denemo: Makefile
   	pkgsrc/graphics/dia: Makefile
   	pkgsrc/graphics/dia-python: Makefile
   	pkgsrc/graphics/digikam: Makefile
   	pkgsrc/graphics/djview4: Makefile
   	pkgsrc/graphics/dx: Makefile
   	pkgsrc/graphics/eog: Makefile
   	pkgsrc/graphics/eom: Makefile
   	pkgsrc/graphics/frameworks: Makefile
   	pkgsrc/graphics/geeqie: Makefile
   	pkgsrc/graphics/gegl: Makefile
   	pkgsrc/graphics/gimp: Makefile buildlink3.mk
   	pkgsrc/graphics/gimp-color-manager: Makefile
   	pkgsrc/graphics/gimp-exif-browser: Makefile
   	pkgsrc/graphics/gimp-fix-ca: Makefile
   	pkgsrc/graphics/gimp-jxr: Makefile
   	pkgsrc/graphics/gimp-liquid-rescale: Makefile
   	pkgsrc/graphics/gimp-rawphoto: Makefile
   	pkgsrc/graphics/gimp-refocus-it: Makefile
   	pkgsrc/graphics/gimp-resynthesizer: Makefile
   	pkgsrc/graphics/gimp-ufraw: Makefile
   	pkgsrc/graphics/gimp2-wideangle: Makefile
   	pkgsrc/graphics/gmic: Makefile
   	pkgsrc/graphics/gnome-icon-theme-symbolic: Makefile
   	pkgsrc/graphics/gnome-themes-standard: Makefile
   	pkgsrc/graphics/gnuplot: Makefile
   	pkgsrc/graphics/gphoto2: Makefile
   	pkgsrc/graphics/graphviz: Makefile
   	pkgsrc/graphics/gst-plugins0.10-cairo: Makefile
   	pkgsrc/graphics/gst-plugins0.10-jpeg: Makefile
   	pkgsrc/graphics/gst-plugins0.10-png: Makefile
   	pkgsrc/graphics/gthumb: Makefile
   	pkgsrc/graphics/gthumb3: Makefile
   	pkgsrc/graphics/gtkam: Makefile
   	pkgsrc/graphics/gwenview: Makefile
   	pkgsrc/graphics/hugin: Makefile
   	pkgsrc/graphics/imv: Makefile
   	pkgsrc/graphics/inkscape: Makefile
   	pkgsrc/graphics/ipe: Makefile
   	pkgsrc/graphics/kamera: Makefile
   	pkgsrc/graphics/kcolorchooser: Makefile
   	pkgsrc/graphics/kde-base-artwork: Makefile
   	pkgsrc/graphics/kdegraphics-mobipocket: Makefile buildlink3.mk
   	pkgsrc/graphics/kdegraphics-strigi-analyzer: Makefile
   	pkgsrc/graphics/kdegraphics-thumbnailers: Makefile
   	pkgsrc/graphics/kgamma: Makefile
   	pkgsrc/graphics/kiconthemes: Makefile buildlink3.mk
   	pkgsrc/graphics/kimageformats: Makefile
   	pkgsrc/graphics/kipi-plugins: Makefile buildlink3.mk
   	pkgsrc/graphics/kolourpaint: Makefile
   	pkgsrc/graphics/koverartist: Makefile
   	pkgsrc/graphics/kplotting: Makefile buildlink3.mk
   	pkgsrc/graphics/kqtquickcharts: Makefile
   	pkgsrc/graphics/kqtquickcharts4: Makefile
   	pkgsrc/graphics/krita: Makefile
   	pkgsrc/graphics/kruler: Makefile
   	pkgsrc/graphics/kvantum: Makefile
   	pkgsrc/graphics/lasem: Makefile buildlink3.mk
   	pkgsrc/graphics/libgnomecanvas: Makefile buildlink3.mk
   	pkgsrc/graphics/libgnomecanvasmm: Makefile buildlink3.mk
   	pkgsrc/graphics/libkdcraw: Makefile buildlink3.mk
   	pkgsrc/graphics/libkexiv2: Makefile buildlink3.mk
   	pkgsrc/graphics/libkexiv2-kde4: Makefile
   	pkgsrc/graphics/libkipi: Makefile buildlink3.mk
   	pkgsrc/graphics/libksane: Makefile buildlink3.mk
   	pkgsrc/graphics/librsvg: Makefile buildlink3.mk
   	pkgsrc/graphics/librsvg-c: Makefile
   	pkgsrc/graphics/libscigraphica: Makefile buildlink3.mk
   	pkgsrc/graphics/libwmf: Makefile buildlink3.mk
   	pkgsrc/graphics/luminance-hdr: Makefile
   	pkgsrc/graphics/lximage-qt: Makefile
   	pkgsrc/graphics/netpbm: Makefile
   	pkgsrc/graphics/ocaml-cairo: Makefile
   	pkgsrc/graphics/osg: Makefile buildlink3.mk
   	pkgsrc/graphics/p5-Gnome2-Canvas: Makefile buildlink3.mk
   	pkgsrc/graphics/p5-PerlMagick: Makefile
   	pkgsrc/graphics/pfstools: Makefile
   	pkgsrc/graphics/php-imagick: Makefile
   	pkgsrc/graphics/prison: Makefile buildlink3.mk
   	pkgsrc/graphics/py-gtkglext: Makefile
   	pkgsrc/graphics/rawtherapee: Makefile
   	pkgsrc/graphics/ruby-RMagick: Makefile
   	pkgsrc/graphics/ruby-rsvg2: Makefile
   	pkgsrc/graphics/sane-airscan: Makefile
   	pkgsrc/graphics/sane-frontends: Makefile
   	pkgsrc/graphics/scigraphica: Makefile
   	pkgsrc/graphics/screengrab: Makefile
   	pkgsrc/graphics/shotwell: Makefile
   	pkgsrc/graphics/spectacle: Makefile
   	pkgsrc/graphics/svgpart: Makefile
   	pkgsrc/graphics/tango-icon-theme: Makefile
   	pkgsrc/graphics/tesseract: Makefile
   	pkgsrc/graphics/tuxpaint: Makefile
   	pkgsrc/graphics/ucview: Makefile
   	pkgsrc/graphics/veusz: Makefile
   	pkgsrc/graphics/x11rec: Makefile
   	pkgsrc/graphics/xsane: Makefile
   	pkgsrc/graphics/zbar: Makefile
   	pkgsrc/graphics/zphoto: Makefile
   	pkgsrc/ham/gmfsk: Makefile
   	pkgsrc/ham/gnuradio-channels: Makefile
   	pkgsrc/ham/gnuradio-companion: Makefile
   	pkgsrc/ham/gnuradio-core: Makefile
   	pkgsrc/ham/gnuradio-ctrlport: Makefile
   	pkgsrc/ham/gnuradio-digital: Makefile
   	pkgsrc/ham/gnuradio-doxygen: Makefile
   	pkgsrc/ham/gnuradio-dtv: Makefile
   	pkgsrc/ham/gnuradio-fec: Makefile
   	pkgsrc/ham/gnuradio-network: Makefile
   	pkgsrc/ham/gnuradio-qtgui: Makefile
   	pkgsrc/ham/gnuradio-trellis: Makefile
   	pkgsrc/ham/gnuradio-uhd: Makefile
   	pkgsrc/ham/gnuradio-utils: Makefile
   	pkgsrc/ham/gnuradio-video-sdl: Makefile
   	pkgsrc/ham/gnuradio-vocoder: Makefile
   	pkgsrc/ham/gnuradio-wavelet: Makefile
   	pkgsrc/ham/gnuradio-zeromq: Makefile
   	pkgsrc/inputmethod/fcitx: Makefile
   	pkgsrc/inputmethod/fcitx-qt5: Makefile
   	pkgsrc/inputmethod/fcitx-skk: Makefile
   	pkgsrc/inputmethod/fcitx5-chewing: Makefile
   	pkgsrc/inputmethod/fcitx5-chinese-addons: Makefile
   	pkgsrc/inputmethod/fcitx5-configtool: Makefile
   	pkgsrc/inputmethod/fcitx5-kkc: Makefile
   	pkgsrc/inputmethod/fcitx5-m17n: Makefile
   	pkgsrc/inputmethod/fcitx5-mozc: Makefile Makefile.common
   	pkgsrc/inputmethod/fcitx5-qt: Makefile buildlink3.mk
   	pkgsrc/inputmethod/fcitx5-skk: Makefile
   	pkgsrc/inputmethod/fcitx5-unikey: Makefile
   	pkgsrc/inputmethod/ibus-array: Makefile
   	pkgsrc/inputmethod/ibus-chewing: Makefile
   	pkgsrc/inputmethod/ibus-input-pad: Makefile
   	pkgsrc/inputmethod/ibus-libpinyin: Makefile
   	pkgsrc/inputmethod/ibus-m17n: Makefile
   	pkgsrc/inputmethod/ibus-mozc: Makefile
   	pkgsrc/inputmethod/ibus-pinyin: Makefile
   	pkgsrc/inputmethod/ibus-qt: Makefile
   	pkgsrc/inputmethod/im-ja: Makefile
   	pkgsrc/inputmethod/input-pad: Makefile buildlink3.mk
   	pkgsrc/inputmethod/kimera-tomoe-gtk: Makefile
   	pkgsrc/inputmethod/libchewing: Makefile buildlink3.mk
   	pkgsrc/inputmethod/m17n-im-config: Makefile buildlink3.mk
   	pkgsrc/inputmethod/mozc-elisp: Makefile
   	pkgsrc/inputmethod/mozc-renderer: Makefile
   	pkgsrc/inputmethod/mozc-server: Makefile
   	pkgsrc/inputmethod/mozc-tool: Makefile
   	pkgsrc/inputmethod/py-input-pad: Makefile
   	pkgsrc/inputmethod/scim-chewing: Makefile
   	pkgsrc/inputmethod/scim-m17n: Makefile
   	pkgsrc/inputmethod/scim-tomoe: Makefile
   	pkgsrc/inputmethod/tomoe-gtk: Makefile buildlink3.mk
   	pkgsrc/inputmethod/uim: Makefile
   	pkgsrc/inputmethod/uim-chewing: Makefile
   	pkgsrc/inputmethod/uim-mozc: Makefile
   	pkgsrc/inputmethod/uim-tomoe-gtk: Makefile
   	pkgsrc/lang/coq: Makefile
   	pkgsrc/lang/coreclr: Makefile buildlink3.mk
   	pkgsrc/lang/gjs: Makefile buildlink3.mk
   	pkgsrc/lang/konoha: Makefile
   	pkgsrc/lang/mono: Makefile buildlink3.mk
   	pkgsrc/lang/mono-basic: Makefile
   	pkgsrc/lang/mozjs78: Makefile buildlink3.mk
   	pkgsrc/lang/neko: Makefile
   	pkgsrc/lang/nodejs: Makefile buildlink3.mk
   	pkgsrc/lang/nodejs10: Makefile buildlink3.mk
   	pkgsrc/lang/nodejs12: Makefile buildlink3.mk
   	pkgsrc/lang/parrot: Makefile buildlink3.mk
   	pkgsrc/lang/php56: Makefile buildlink3.mk
   	pkgsrc/lang/php73: Makefile buildlink3.mk
   	pkgsrc/lang/php74: Makefile buildlink3.mk
   	pkgsrc/lang/php80: Makefile buildlink3.mk
   	pkgsrc/lang/racket: Makefile
   	pkgsrc/lang/smalltalk: Makefile
   	pkgsrc/lang/spl: Makefile
   	pkgsrc/lang/tcl: Makefile
   	pkgsrc/lang/zig: Makefile
   	pkgsrc/mail/GNUMail: Makefile
   	pkgsrc/mail/Pantomime: Makefile buildlink3.mk
   	pkgsrc/mail/akonadi: Makefile
   	pkgsrc/mail/balsa: Makefile
   	pkgsrc/mail/bogofilter: Makefile
   	pkgsrc/mail/claws-mail-rssyl: Makefile
   	pkgsrc/mail/claws-mail-vcalendar: Makefile
   	pkgsrc/mail/cone: Makefile
   	pkgsrc/mail/cyrus-imapd24: Makefile
   	pkgsrc/mail/dbmail: Makefile
   	pkgsrc/mail/dovecot2-sqlite: Makefile
   	pkgsrc/mail/dspam: Makefile
   	pkgsrc/mail/evolution: Makefile buildlink3.mk
   	pkgsrc/mail/evolution-data-server: Makefile buildlink3.mk
   	pkgsrc/mail/exim: Makefile
   	pkgsrc/mail/ezmlm-idx: Makefile
   	pkgsrc/mail/greylisting-spp: Makefile
   	pkgsrc/mail/kimap: Makefile buildlink3.mk
   	pkgsrc/mail/kmbox: Makefile buildlink3.mk
   	pkgsrc/mail/kmime: Makefile buildlink3.mk
   	pkgsrc/mail/ksmtp: Makefile buildlink3.mk
   	pkgsrc/mail/mail-notification: Makefile
   	pkgsrc/mail/pfqueue: Makefile
   	pkgsrc/mail/postfix: Makefile
   	pkgsrc/mail/postfix-sqlite: Makefile
   	pkgsrc/mail/pst-utils: Makefile
   	pkgsrc/mail/rspamd: Makefile
   	pkgsrc/math/R-XML: Makefile
   	pkgsrc/math/R-igraph: Makefile
   	pkgsrc/math/analitza: Makefile buildlink3.mk
   	pkgsrc/math/cantor: Makefile
   	pkgsrc/math/cgal: Makefile
   	pkgsrc/math/gcalctool: Makefile
   	pkgsrc/math/genius: Makefile
   	pkgsrc/math/gnome-calculator: Makefile
   	pkgsrc/math/gnumeric112: Makefile
   	pkgsrc/math/kalgebra: Makefile
   	pkgsrc/math/kcalc: Makefile
   	pkgsrc/math/lumina-calculator: Makefile
   	pkgsrc/math/octave: Makefile
   	pkgsrc/math/pspp: Makefile
   	pkgsrc/math/qalculate: Makefile buildlink3.mk
   	pkgsrc/math/qalculate-gtk: Makefile
   	pkgsrc/math/sc-im: Makefile
   	pkgsrc/math/sollya: Makefile
   	pkgsrc/math/speedcrunch: Makefile
   	pkgsrc/math/wxmaxima: Makefile
   	pkgsrc/math/xyconvert: Makefile
   	pkgsrc/meta-pkgs/gnustep: Makefile
   	pkgsrc/meta-pkgs/libdbusmenu: Makefile buildlink3.mk
   	pkgsrc/misc/Addresses: Makefile buildlink3.mk
   	pkgsrc/misc/attica-qt5: Makefile buildlink3.mk
   	pkgsrc/misc/bibletime: Makefile
   	pkgsrc/misc/calibre: Makefile
   	pkgsrc/misc/celestia: Makefile
   	pkgsrc/misc/fbreader: Makefile
   	pkgsrc/misc/goffice0.10: Makefile buildlink3.mk
   	pkgsrc/misc/goffice0.8: Makefile buildlink3.mk
   	pkgsrc/misc/kaccessible: Makefile
   	pkgsrc/misc/kalzium: Makefile
   	pkgsrc/misc/kbruch: Makefile
   	pkgsrc/misc/kcharselect: Makefile
   	pkgsrc/misc/kchmviewer: Makefile
   	pkgsrc/misc/kcontacts: Makefile buildlink3.mk
   	pkgsrc/misc/kdav: Makefile buildlink3.mk
   	pkgsrc/misc/kde-wallpapers4: Makefile
   	pkgsrc/misc/kdeartwork4: Makefile
   	pkgsrc/misc/kdeedu-data: Makefile
   	pkgsrc/misc/kdepim-runtime4: Makefile
   	pkgsrc/misc/kdepim4: Makefile
   	pkgsrc/misc/kdepimlibs4: Makefile buildlink3.mk
   	pkgsrc/misc/kdeplasma-addons4: Makefile
   	pkgsrc/misc/kemoticons: Makefile buildlink3.mk
   	pkgsrc/misc/kgeography: Makefile
   	pkgsrc/misc/khelpcenter: Makefile
   	pkgsrc/misc/kidentitymanagement: Makefile buildlink3.mk
   	pkgsrc/misc/kig: Makefile
   	pkgsrc/misc/kiten: Makefile
   	pkgsrc/misc/klettres: Makefile
   	pkgsrc/misc/kmag: Makefile
   	pkgsrc/misc/kmousetool: Makefile
   	pkgsrc/misc/kmouth: Makefile
   	pkgsrc/misc/kremotecontrol: Makefile
   	pkgsrc/misc/kstars: Makefile
   	pkgsrc/misc/kteatime: Makefile
   	pkgsrc/misc/ktouch: Makefile
   	pkgsrc/misc/kturtle: Makefile
   	pkgsrc/misc/ktux: Makefile
   	pkgsrc/misc/kunitconversion: Makefile buildlink3.mk
   	pkgsrc/misc/kwordquiz: Makefile
   	pkgsrc/misc/libkdeedu: Makefile buildlink3.mk
   	pkgsrc/misc/libkeduvocdocument: Makefile buildlink3.mk
   	pkgsrc/misc/libkvkontakte: Makefile buildlink3.mk
   	pkgsrc/misc/libmateweather: Makefile buildlink3.mk
   	pkgsrc/misc/libreoffice: Makefile
   	pkgsrc/misc/marble: Makefile buildlink3.mk
   	pkgsrc/misc/mate-calc: Makefile
   	pkgsrc/misc/parley: Makefile
   	pkgsrc/misc/rocs: Makefile
   	pkgsrc/misc/stellarium: Makefile
   	pkgsrc/misc/step: Makefile
   	pkgsrc/misc/superkaramba: Makefile
   	pkgsrc/misc/sweeper: Makefile
   	pkgsrc/misc/sword: Makefile buildlink3.mk
   	pkgsrc/misc/usbprog: Makefile
   	pkgsrc/misc/vym: Makefile
   	pkgsrc/misc/xfce4-weather-plugin: Makefile
   	pkgsrc/misc/xygrib: Makefile
   	pkgsrc/misc/yelp3: Makefile
   	pkgsrc/misc/zyGrib: Makefile
   	pkgsrc/multimedia/audiocd-kio: Makefile
   	pkgsrc/multimedia/avidemux: Makefile
   	pkgsrc/multimedia/dragon: Makefile
   	pkgsrc/multimedia/dvdauthor: Makefile
   	pkgsrc/multimedia/ffmpeg2: Makefile
   	pkgsrc/multimedia/ffmpeg3: Makefile
   	pkgsrc/multimedia/ffmpeg4: Makefile
   	pkgsrc/multimedia/ffmpegthumbs: Makefile
   	pkgsrc/multimedia/ffplay2: Makefile
   	pkgsrc/multimedia/ffplay3: Makefile
   	pkgsrc/multimedia/ffplay4: Makefile
   	pkgsrc/multimedia/gmencoder: Makefile
   	pkgsrc/multimedia/gnome-mplayer: Makefile
   	pkgsrc/multimedia/goggles: Makefile
   	pkgsrc/multimedia/gopchop: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-bad: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-base: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-dvdread: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-ffmpeg: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-gnonlin: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-good: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-hal: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-mpeg2dec: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-resindvd: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-ugly: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-v4l2: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-vp8: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-x264: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-xvid: Makefile
   	pkgsrc/multimedia/gst-plugins1-base: Makefile
   	pkgsrc/multimedia/gst-plugins1-editing-services: Makefile
   	pkgsrc/multimedia/gstreamer0.10: Makefile buildlink3.mk
   	pkgsrc/multimedia/handbrake: Makefile
   	pkgsrc/multimedia/juk: Makefile
   	pkgsrc/multimedia/kdenlive: Makefile
   	pkgsrc/multimedia/kmix: Makefile
   	pkgsrc/multimedia/kmplayer: Makefile
   	pkgsrc/multimedia/kscd: Makefile
   	pkgsrc/multimedia/libassetml: Makefile buildlink3.mk
   	pkgsrc/multimedia/libbluray: Makefile buildlink3.mk
   	pkgsrc/multimedia/libkcddb: Makefile buildlink3.mk
   	pkgsrc/multimedia/libkcompactdisc: Makefile buildlink3.mk
   	pkgsrc/multimedia/mate-media: Makefile
   	pkgsrc/multimedia/mediatomb: Makefile
   	pkgsrc/multimedia/minidlna: Makefile
   	pkgsrc/multimedia/mkvtoolnix: Makefile
   	pkgsrc/multimedia/mlt: Makefile
   	pkgsrc/multimedia/mplayerthumbs: Makefile
   	pkgsrc/multimedia/mpv: Makefile
   	pkgsrc/multimedia/obs-studio: Makefile
   	pkgsrc/multimedia/ogle: Makefile buildlink3.mk
   	pkgsrc/multimedia/ogle_gui: Makefile
   	pkgsrc/multimedia/olive-editor: Makefile
   	pkgsrc/multimedia/p5-GStreamer: Makefile
   	pkgsrc/multimedia/phonon-qt5: Makefile buildlink3.mk
   	pkgsrc/multimedia/phonon-qt5-backend-gstreamer: Makefile
   	pkgsrc/multimedia/phonon-qt5-backend-vlc: Makefile
   	pkgsrc/multimedia/py-gstreamer0.10: Makefile
   	pkgsrc/multimedia/ssr: Makefile
   	pkgsrc/multimedia/subtitleeditor: Makefile
   	pkgsrc/multimedia/totem: Makefile buildlink3.mk
   	pkgsrc/multimedia/totem-pl-parser: Makefile buildlink3.mk
   	pkgsrc/multimedia/transcode: Makefile
   	pkgsrc/multimedia/vlc: Makefile
   	pkgsrc/multimedia/xine-lib: Makefile
   	pkgsrc/net/aria2: Makefile
   	pkgsrc/net/bind911: Makefile
   	pkgsrc/net/bind916: Makefile
   	pkgsrc/net/cacti: Makefile
   	pkgsrc/net/choqok: Makefile
   	pkgsrc/net/corebird: Makefile
   	pkgsrc/net/dc_gui2: Makefile
   	pkgsrc/net/dctc: Makefile
   	pkgsrc/net/dhcpcd-qt: Makefile
   	pkgsrc/net/filezilla: Makefile
   	pkgsrc/net/flickcurl: Makefile
   	pkgsrc/net/freeDiameter: Makefile
   	pkgsrc/net/freeradius-sqlite3: Makefile
   	pkgsrc/net/gift-gnutella: Makefile
   	pkgsrc/net/gnome-online-accounts: Makefile
   	pkgsrc/net/gnome-vfs-smb: Makefile
   	pkgsrc/net/grilo: Makefile buildlink3.mk
   	pkgsrc/net/grilo-plugins: Makefile
   	pkgsrc/net/gssdp: Makefile buildlink3.mk
   	pkgsrc/net/gssdp12: Makefile buildlink3.mk
   	pkgsrc/net/gst-plugins0.10-mms: Makefile
   	pkgsrc/net/gst-plugins0.10-rtmp: Makefile
   	pkgsrc/net/gst-plugins0.10-soup: Makefile
   	pkgsrc/net/gst-plugins1-libnice: Makefile
   	pkgsrc/net/gst-plugins1-soup: Makefile
   	pkgsrc/net/gtk-gnutella: Makefile
   	pkgsrc/net/gtk-vnc: Makefile
   	pkgsrc/net/gupnp: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-av: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-dlna: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-igd: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-tools: Makefile
   	pkgsrc/net/gupnp12: Makefile buildlink3.mk
   	pkgsrc/net/kdenetwork-filesharing: Makefile
   	pkgsrc/net/kdenetwork-strigi-analyzers: Makefile
   	pkgsrc/net/kdnssd: Makefile buildlink3.mk
   	pkgsrc/net/kdsoap: Makefile buildlink3.mk
   	pkgsrc/net/kget: Makefile
   	pkgsrc/net/kmldonkey: Makefile
   	pkgsrc/net/knewstuff: Makefile buildlink3.mk
   	pkgsrc/net/kopete: Makefile
   	pkgsrc/net/kppp: Makefile
   	pkgsrc/net/krdc: Makefile
   	pkgsrc/net/krfb: Makefile
   	pkgsrc/net/ktorrent: Makefile
   	pkgsrc/net/kxmlrpcclient: Makefile buildlink3.mk
   	pkgsrc/net/libcmis: Makefile
   	pkgsrc/net/libdmapsharing3: Makefile buildlink3.mk
   	pkgsrc/net/libgdata: Makefile buildlink3.mk
   	pkgsrc/net/libgdata0.6: Makefile buildlink3.mk
   	pkgsrc/net/libktorrent: Makefile buildlink3.mk
   	pkgsrc/net/libnice: Makefile buildlink3.mk
   	pkgsrc/net/libsoup: Makefile buildlink3.mk
   	pkgsrc/net/libzrtpcpp: Makefile buildlink3.mk
   	pkgsrc/net/lldpd: Makefile
   	pkgsrc/net/microdc2: Makefile
   	pkgsrc/net/minitube: Makefile
   	pkgsrc/net/mldonkey-gui: Makefile
   	pkgsrc/net/mono-nat: Makefile buildlink3.mk
   	pkgsrc/net/monotorrent: Makefile buildlink3.mk
   	pkgsrc/net/nagstamon: Makefile
   	pkgsrc/net/ncdc: Makefile
   	pkgsrc/net/ncgopher: Makefile
   	pkgsrc/net/nfdump: Makefile
   	pkgsrc/net/ntop: Makefile
   	pkgsrc/net/ntopng: Makefile
   	pkgsrc/net/ocamlnet: Makefile
   	pkgsrc/net/ocsync: Makefile buildlink3.mk
   	pkgsrc/net/openconnect: Makefile
   	pkgsrc/net/owncloudclient: Makefile
   	pkgsrc/net/p5-Net-Z3950-ZOOM: Makefile
   	pkgsrc/net/php-soap: Makefile
   	pkgsrc/net/php-xmlrpc: Makefile
   	pkgsrc/net/php-yaz: Makefile
   	pkgsrc/net/powerdns: Makefile
   	pkgsrc/net/proftpd-sqlite: Makefile
   	pkgsrc/net/qbittorrent: Makefile
   	pkgsrc/net/remmina: Makefile
   	pkgsrc/net/scli: Makefile
   	pkgsrc/net/syncthing-gtk: Makefile
   	pkgsrc/net/tcpflow: Makefile
   	pkgsrc/net/transmission-qt: Makefile
   	pkgsrc/net/unison-snapshot: Makefile
   	pkgsrc/net/unison2.51: Makefile
   	pkgsrc/net/vinagre: Makefile
   	pkgsrc/net/vino: Makefile
   	pkgsrc/net/wireshark: Makefile
   	pkgsrc/net/wpa_gui: Makefile
   	pkgsrc/net/xymon: Makefile
   	pkgsrc/net/yaz: Makefile buildlink3.mk
   	pkgsrc/net/zeroconf-ioslave: Makefile
   	pkgsrc/news/bystand: Makefile
   	pkgsrc/news/newsbeuter: Makefile
   	pkgsrc/news/tin: Makefile
   	pkgsrc/parallel/ganglia-monitor-core: Makefile
   	pkgsrc/parallel/gridscheduler: Makefile
   	pkgsrc/parallel/hwloc: Makefile buildlink3.mk
   	pkgsrc/parallel/mpi-ch: Makefile
   	pkgsrc/parallel/openmpi: Makefile buildlink3.mk
   	pkgsrc/parallel/slurm-wlm: Makefile
   	pkgsrc/pkgtools/gnome-packagekit: Makefile
   	pkgsrc/pkgtools/packagekit: Makefile buildlink3.mk
   	pkgsrc/pkgtools/pkgin: Makefile
   	pkgsrc/print/advi: Makefile
   	pkgsrc/print/atril: Makefile
   	pkgsrc/print/dspdfviewer: Makefile
   	pkgsrc/print/evince3: Makefile
   	pkgsrc/print/foliate: Makefile
   	pkgsrc/print/foomatic4-db-engine: Makefile
   	pkgsrc/print/glabels: Makefile
   	pkgsrc/print/gutenprint-lib: Makefile
   	pkgsrc/print/lumina-pdf: Makefile
   	pkgsrc/print/okular: Makefile
   	pkgsrc/print/poppler-qt5: Makefile
   	pkgsrc/print/qpdfview: Makefile
   	pkgsrc/print/scribus-qt4: Makefile
   	pkgsrc/print/scribus-qt5: Makefile
   	pkgsrc/print/sile: Makefile
   	pkgsrc/print/xetex: Makefile
   	pkgsrc/print/xpdf4: Makefile
   	pkgsrc/print/zathura: Makefile
   	pkgsrc/security/KeePass: Makefile
   	pkgsrc/security/ap-modsecurity2: Makefile
   	pkgsrc/security/clamav: Makefile buildlink3.mk
   	pkgsrc/security/cy2-saml: Makefile
   	pkgsrc/security/cy2-sql: Makefile
   	pkgsrc/security/ecap_clamav_adapter: Makefile
   	pkgsrc/security/fwbuilder: Makefile
   	pkgsrc/security/gnupg2: Makefile
   	pkgsrc/security/gpgmepp: Makefile buildlink3.mk
   	pkgsrc/security/heimdal: Makefile buildlink3.mk
   	pkgsrc/security/honeyd: Makefile
   	pkgsrc/security/hydra: Makefile
   	pkgsrc/security/kauth: Makefile buildlink3.mk
   	pkgsrc/security/kdesu: Makefile buildlink3.mk
   	pkgsrc/security/keepassxc: Makefile
   	pkgsrc/security/kgpg: Makefile
   	pkgsrc/security/kwallet: Makefile buildlink3.mk
   	pkgsrc/security/kwalletmanager: Makefile
   	pkgsrc/security/lasso: Makefile buildlink3.mk
   	pkgsrc/security/lastpass-cli: Makefile
   	pkgsrc/security/libfprint: Makefile
   	pkgsrc/security/libfwbuilder: Makefile buildlink3.mk
   	pkgsrc/security/libpreludedb-sqlite3: Makefile
   	pkgsrc/security/lxqt-openssh-askpass: Makefile
   	pkgsrc/security/lxqt-policykit: Makefile
   	pkgsrc/security/lxqt-sudo: Makefile
   	pkgsrc/security/oath-toolkit: Makefile
   	pkgsrc/security/opendnssec: Makefile
   	pkgsrc/security/opendnssec2: Makefile
   	pkgsrc/security/opensc: Makefile
   	pkgsrc/security/pam-saml: Makefile
   	pkgsrc/security/pinentry-qt5: Makefile
   	pkgsrc/security/policykit: Makefile
   	pkgsrc/security/polkit: Makefile
   	pkgsrc/security/polkit-qt5: Makefile buildlink3.mk
   	pkgsrc/security/prelude-manager: Makefile
   	pkgsrc/security/py-lasso: Makefile
   	pkgsrc/security/py-xmlsec: Makefile
   	pkgsrc/security/qca2-qt5: Makefile buildlink3.mk
   	pkgsrc/security/qca2-qt5-gnupg: Makefile
   	pkgsrc/security/qca2-qt5-ossl: Makefile
   	pkgsrc/security/qgpgme: Makefile buildlink3.mk
   	pkgsrc/security/qore-xmlsec-module: Makefile
   	pkgsrc/security/qt5-qtkeychain: Makefile
   	pkgsrc/security/seahorse: Makefile
   	pkgsrc/security/softhsm: Makefile buildlink3.mk
   	pkgsrc/security/softhsm2: Makefile buildlink3.mk
   	pkgsrc/security/tor-browser: Makefile
   	pkgsrc/security/xca: Makefile
   	pkgsrc/security/xmlsec1: Makefile buildlink3.mk
   	pkgsrc/sysutils/augeas: Makefile buildlink3.mk
   	pkgsrc/sysutils/bacula: Makefile
   	pkgsrc/sysutils/bacula-qt5-console: Makefile
   	pkgsrc/sysutils/bacula-tray-monitor-qt5: Makefile
   	pkgsrc/sysutils/baloo: Makefile
   	pkgsrc/sysutils/baloo-widgets: Makefile buildlink3.mk
   	pkgsrc/sysutils/baloo5: Makefile buildlink3.mk
   	pkgsrc/sysutils/bareos: Makefile
   	pkgsrc/sysutils/brasero: Makefile
   	pkgsrc/sysutils/burn: Makefile
   	pkgsrc/sysutils/caja: Makefile
   	pkgsrc/sysutils/caja-extensions: Makefile
   	pkgsrc/sysutils/cfengine3: Makefile
   	pkgsrc/sysutils/collectd-curl: Makefile
   	pkgsrc/sysutils/collectd-mongodb: Makefile
   	pkgsrc/sysutils/collectd-rrdtool: Makefile
   	pkgsrc/sysutils/collectd-virt: Makefile
   	pkgsrc/sysutils/conky: Makefile
   	pkgsrc/sysutils/dbus-sharp: Makefile buildlink3.mk
   	pkgsrc/sysutils/dbus-sharp-glib: Makefile buildlink3.mk
   	pkgsrc/sysutils/dolphin: Makefile buildlink3.mk
   	pkgsrc/sysutils/facette: Makefile
   	pkgsrc/sysutils/filelight: Makefile
   	pkgsrc/sysutils/gcdmaster: Makefile
   	pkgsrc/sysutils/gdmap: Makefile
   	pkgsrc/sysutils/gfm: Makefile
   	pkgsrc/sysutils/gnome-characters: Makefile
   	pkgsrc/sysutils/gnome-control-center: Makefile
   	pkgsrc/sysutils/gnome-nds-thumbnailer: Makefile
   	pkgsrc/sysutils/gnome-settings-daemon: Makefile
   	pkgsrc/sysutils/gnome-tracker: Makefile buildlink3.mk
   	pkgsrc/sysutils/gnome-tracker-miners: Makefile
   	pkgsrc/sysutils/gnome-vfs: Makefile buildlink3.mk
   	pkgsrc/sysutils/gnome-vfsmm: Makefile buildlink3.mk
   	pkgsrc/sysutils/gst-plugins0.10-gnomevfs: Makefile
   	pkgsrc/sysutils/gvfs: Makefile
   	pkgsrc/sysutils/gworkspace: Makefile
   	pkgsrc/sysutils/hivex: Makefile
   	pkgsrc/sysutils/k3b: Makefile
   	pkgsrc/sysutils/kcron: Makefile
   	pkgsrc/sysutils/kdbusaddons: Makefile buildlink3.mk
   	pkgsrc/sysutils/kdf: Makefile
   	pkgsrc/sysutils/kfilemetadata: Makefile
   	pkgsrc/sysutils/kfilemetadata5: Makefile
   	pkgsrc/sysutils/kfloppy: Makefile
   	pkgsrc/sysutils/krusader: Makefile
   	pkgsrc/sysutils/ksystemlog: Makefile
   	pkgsrc/sysutils/kuser: Makefile
   	pkgsrc/sysutils/libbaloo4: Makefile
   	pkgsrc/sysutils/libdevkit-gobject: Makefile
   	pkgsrc/sysutils/lnav: Makefile
   	pkgsrc/sysutils/lxqt-powermanagement: Makefile
   	pkgsrc/sysutils/mate-system-monitor: Makefile
   	pkgsrc/sysutils/nautilus: Makefile
   	pkgsrc/sysutils/ndesk-dbus: Makefile
   	pkgsrc/sysutils/ndesk-dbus-glib: Makefile buildlink3.mk
   	pkgsrc/sysutils/open-vm-tools: Makefile
   	pkgsrc/sysutils/openxenmanager: Makefile
   	pkgsrc/sysutils/p5-Config-Augeas: Makefile
   	pkgsrc/sysutils/p5-Gnome2-VFS: Makefile buildlink3.mk
   	pkgsrc/sysutils/pcmanfm-qt: Makefile
   	pkgsrc/sysutils/py-augeas: Makefile
   	pkgsrc/sysutils/py-notify-python: Makefile buildlink3.mk
   	pkgsrc/sysutils/qdirstat: Makefile
   	pkgsrc/sysutils/rox: Makefile
   	pkgsrc/sysutils/screentest: Makefile
   	pkgsrc/sysutils/solid: Makefile buildlink3.mk
   	pkgsrc/sysutils/strigi: Makefile buildlink3.mk
   	pkgsrc/sysutils/syslog-ng-mongodb: Makefile
   	pkgsrc/sysutils/tarsnap-gui: Makefile
   	pkgsrc/sysutils/vcdimager: Makefile buildlink3.mk
   	pkgsrc/sysutils/virt-manager: Makefile
   	pkgsrc/sysutils/virt-viewer: Makefile
   	pkgsrc/sysutils/xfce4-gvfs-mount-plugin: Makefile
   	pkgsrc/sysutils/xfce4-quicklauncher-plugin: Makefile
   	pkgsrc/sysutils/xfce4-thunar-vcs: Makefile
   	pkgsrc/sysutils/xfce4-xkb-plugin: Makefile
   	pkgsrc/sysutils/zabbix: Makefile
   	pkgsrc/sysutils/zabbix50-agent: Makefile
   	pkgsrc/sysutils/zabbix50-proxy: Makefile
   	pkgsrc/sysutils/zabbix50-server: Makefile
   	pkgsrc/textproc/OdfConverter: Makefile
   	pkgsrc/textproc/R-stringi: Makefile
   	pkgsrc/textproc/R-xml2: Makefile
   	pkgsrc/textproc/asciidoc: Makefile
   	pkgsrc/textproc/bat: Makefile
   	pkgsrc/textproc/csharp-xapian: Makefile
   	pkgsrc/textproc/dikt: Makefile
   	pkgsrc/textproc/dwdiff: Makefile
   	pkgsrc/textproc/ebook-tools: Makefile buildlink3.mk
   	pkgsrc/textproc/gdome2: Makefile buildlink3.mk
   	pkgsrc/textproc/gnome-doc-utils: Makefile
   	pkgsrc/textproc/gtk-doc: Makefile
   	pkgsrc/textproc/hfstospell: Makefile buildlink3.mk
   	pkgsrc/textproc/highlight: Makefile
   	pkgsrc/textproc/icu: buildlink3.mk
   	pkgsrc/textproc/kcodecs: Makefile buildlink3.mk
   	pkgsrc/textproc/kcompletion: Makefile buildlink3.mk
   	pkgsrc/textproc/kpimtextedit: Makefile buildlink3.mk
   	pkgsrc/textproc/libcroco: Makefile buildlink3.mk
   	pkgsrc/textproc/liblrdf: Makefile buildlink3.mk
   	pkgsrc/textproc/libplist: Makefile buildlink3.mk
   	pkgsrc/textproc/libxml++: Makefile buildlink3.mk
   	pkgsrc/textproc/libxml2: Makefile buildlink3.mk
   	pkgsrc/textproc/libxslt: Makefile buildlink3.mk
   	pkgsrc/textproc/ots: Makefile
   	pkgsrc/textproc/p5-Alien-Libxml2: Makefile
   	pkgsrc/textproc/p5-XML-LibXML: Makefile
   	pkgsrc/textproc/p5-XML-LibXSLT: Makefile
   	pkgsrc/textproc/php-intl: Makefile
   	pkgsrc/textproc/php-wddx: Makefile
   	pkgsrc/textproc/php-xsl: Makefile
   	pkgsrc/textproc/po4a: Makefile
   	pkgsrc/textproc/py-ICU: Makefile
   	pkgsrc/textproc/py-html5-parser: Makefile
   	pkgsrc/textproc/py-libxml2: Makefile
   	pkgsrc/textproc/py-libxslt: Makefile
   	pkgsrc/textproc/py-lxml: Makefile
   	pkgsrc/textproc/qore-xml-module: Makefile
   	pkgsrc/textproc/raptor: Makefile buildlink3.mk
   	pkgsrc/textproc/raptor2: Makefile buildlink3.mk
   	pkgsrc/textproc/rarian: Makefile
   	pkgsrc/textproc/rasqal: Makefile buildlink3.mk
   	pkgsrc/textproc/redland: Makefile buildlink3.mk
   	pkgsrc/textproc/ruby-libxml: Makefile
   	pkgsrc/textproc/ruby-nokogiri: Makefile
   	pkgsrc/textproc/ruby-xslt: Makefile
   	pkgsrc/textproc/sonnet: Makefile buildlink3.mk
   	pkgsrc/textproc/soprano: Makefile
   	pkgsrc/textproc/split-thai: Makefile
   	pkgsrc/textproc/sublib: Makefile buildlink3.mk
   	pkgsrc/textproc/syntax-highlighting: Makefile buildlink3.mk
   	pkgsrc/textproc/upmendex: Makefile
   	pkgsrc/textproc/xml2doc: Makefile
   	pkgsrc/textproc/xmlstarlet: Makefile
   	pkgsrc/textproc/xmlto: Makefile
   	pkgsrc/textproc/yelp-tools: Makefile
   	pkgsrc/time/fet: Makefile
   	pkgsrc/time/gchore: Makefile
   	pkgsrc/time/gnome-calendar: Makefile
   	pkgsrc/time/kcalendarcore: Makefile buildlink3.mk
   	pkgsrc/time/kcalutils: Makefile buildlink3.mk
   	pkgsrc/time/kholidays: Makefile buildlink3.mk
   	pkgsrc/time/ktimer: Makefile
   	pkgsrc/time/libical: Makefile buildlink3.mk
   	pkgsrc/time/ntpsec: Makefile
   	pkgsrc/time/rsibreak: Makefile
   	pkgsrc/time/xfce4-orage: Makefile
   	pkgsrc/wm/ccsm: Makefile
   	pkgsrc/wm/compiz: Makefile buildlink3.mk
   	pkgsrc/wm/compiz-fusion-plugins-extra: Makefile
   	pkgsrc/wm/compiz-fusion-plugins-main: Makefile buildlink3.mk
   	pkgsrc/wm/e16menuedit2: Makefile
   	pkgsrc/wm/fvwm: Makefile
   	pkgsrc/wm/fvwm3: Makefile
   	pkgsrc/wm/jwm: Makefile
   	pkgsrc/wm/obconf: Makefile
   	pkgsrc/wm/obconf-qt: Makefile
   	pkgsrc/wm/openbox: Makefile buildlink3.mk
   	pkgsrc/wm/wbar: Makefile
   	pkgsrc/www/SOGo: Makefile
   	pkgsrc/www/SOGo4: Makefile
   	pkgsrc/www/ap-auth-mellon: Makefile
   	pkgsrc/www/ap-authnz-crowd: Makefile
   	pkgsrc/www/ap-mono: Makefile
   	pkgsrc/www/ap-php: Makefile
   	pkgsrc/www/ap2-auth-mellon: Makefile
   	pkgsrc/www/ap2-subversion: Makefile
   	pkgsrc/www/apache24: Makefile
   	pkgsrc/www/badwolf: Makefile
   	pkgsrc/www/bkedit: Makefile
   	pkgsrc/www/bluefish: Makefile
   	pkgsrc/www/c-icap-modules: Makefile
   	pkgsrc/www/cppcms: Makefile
   	pkgsrc/www/deforaos-surfer: Makefile
   	pkgsrc/www/epiphany: Makefile
   	pkgsrc/www/firefox: Makefile
   	pkgsrc/www/firefox52: Makefile
   	pkgsrc/www/firefox68: Makefile
   	pkgsrc/www/firefox78: Makefile
   	pkgsrc/www/gitea: Makefile
   	pkgsrc/www/kannel: Makefile
   	pkgsrc/www/kdewebkit: Makefile buildlink3.mk
   	pkgsrc/www/khtml: Makefile buildlink3.mk
   	pkgsrc/www/kimagemapeditor: Makefile
   	pkgsrc/www/kjs: Makefile buildlink3.mk
   	pkgsrc/www/kjsembed: Makefile buildlink3.mk
   	pkgsrc/www/lariza: Makefile
   	pkgsrc/www/libgtkhtml: Makefile buildlink3.mk
   	pkgsrc/www/libmediawiki: Makefile buildlink3.mk
   	pkgsrc/www/librest07: Makefile buildlink3.mk
   	pkgsrc/www/liferea: Makefile
   	pkgsrc/www/lighttpd: Makefile
   	pkgsrc/www/links-gui: Makefile
   	pkgsrc/www/luakit: Makefile
   	pkgsrc/www/midori: Makefile
   	pkgsrc/www/mono-xsp: Makefile buildlink3.mk
   	pkgsrc/www/nghttp2: Makefile
   	pkgsrc/www/nghttp2-tools: Makefile
   	pkgsrc/www/nginx: Makefile
   	pkgsrc/www/otter-browser: Makefile
   	pkgsrc/www/php-fpm: Makefile
   	pkgsrc/www/php-http3: Makefile
   	pkgsrc/www/phraseanet-indexer: Makefile
   	pkgsrc/www/qutebrowser: Makefile
   	pkgsrc/www/rekonq: Makefile
   	pkgsrc/www/seamonkey: Makefile
   	pkgsrc/www/sitecopy: Makefile
   	pkgsrc/www/spdylay: Makefile buildlink3.mk
   	pkgsrc/www/swish-e: Makefile
   	pkgsrc/www/syndication: Makefile buildlink3.mk
   	pkgsrc/www/uhttpmock: Makefile buildlink3.mk
   	pkgsrc/www/vimb: Makefile
   	pkgsrc/www/webkit-gtk: Makefile buildlink3.mk
   	pkgsrc/www/webkit24-gtk: Makefile buildlink3.mk
   	pkgsrc/www/webkit24-gtk3: Makefile buildlink3.mk
   	pkgsrc/x11/avant-window-navigator: Makefile
   	pkgsrc/x11/caribou: Makefile
   	pkgsrc/x11/clisp-gtk2: Makefile
   	pkgsrc/x11/deforaos-integration: Makefile
   	pkgsrc/x11/devilspie: Makefile
   	pkgsrc/x11/eekboard: Makefile buildlink3.mk
   	pkgsrc/x11/frameworkintegration: Makefile buildlink3.mk
   	pkgsrc/x11/gdm: Makefile
   	pkgsrc/x11/gnome-desktop: Makefile
   	pkgsrc/x11/gnome-session: Makefile
   	pkgsrc/x11/gnome-shell: Makefile
   	pkgsrc/x11/gnome-themes-extras: Makefile
   	pkgsrc/x11/gnustep-back: Makefile buildlink3.mk
   	pkgsrc/x11/gnustep-gui: Makefile buildlink3.mk
   	pkgsrc/x11/gnustep-preferences: Makefile
   	pkgsrc/x11/gtk-sharp: Makefile
   	pkgsrc/x11/gtk-sharp3: Makefile
   	pkgsrc/x11/gtkmm3: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview2: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview3: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview4: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceviewmm: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities-stats: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities5: Makefile buildlink3.mk
   	pkgsrc/x11/kconfigwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/kde-baseapps4: Makefile
   	pkgsrc/x11/kde-runtime4: Makefile buildlink3.mk
   	pkgsrc/x11/kde-workspace4: Makefile buildlink3.mk
   	pkgsrc/x11/kded: Makefile
   	pkgsrc/x11/kdelibs4: Makefile buildlink3.mk
   	pkgsrc/x11/kdelibs4support: Makefile buildlink3.mk
   	pkgsrc/x11/kdesignerplugin: Makefile
   	pkgsrc/x11/kglobalaccel: Makefile buildlink3.mk
   	pkgsrc/x11/kguiaddons: Makefile buildlink3.mk
   	pkgsrc/x11/kinit: Makefile
   	pkgsrc/x11/kirigami2: Makefile buildlink3.mk
   	pkgsrc/x11/kitemviews: Makefile buildlink3.mk
   	pkgsrc/x11/kjobwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/konsole: Makefile
   	pkgsrc/x11/ktextwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/kwidgetsaddons: Makefile buildlink3.mk
   	pkgsrc/x11/kwindowsystem: Makefile buildlink3.mk
   	pkgsrc/x11/kxmlgui: Makefile buildlink3.mk
   	pkgsrc/x11/libdesktop-agnostic: Makefile buildlink3.mk
   	pkgsrc/x11/libfm-qt: Makefile buildlink3.mk
   	pkgsrc/x11/libgnomekbd: Makefile buildlink3.mk
   	pkgsrc/x11/libkactivities4: Makefile buildlink3.mk
   	pkgsrc/x11/libkscreen: Makefile buildlink3.mk
   	pkgsrc/x11/liblxqt: Makefile buildlink3.mk
   	pkgsrc/x11/libmatekbd: Makefile buildlink3.mk
   	pkgsrc/x11/libqtxdg: Makefile buildlink3.mk
   	pkgsrc/x11/libxfce4gui: Makefile buildlink3.mk
   	pkgsrc/x11/libxkbcommon: Makefile
   	pkgsrc/x11/libxklavier: Makefile buildlink3.mk
   	pkgsrc/x11/lxqt-about: Makefile
   	pkgsrc/x11/lxqt-admin: Makefile
   	pkgsrc/x11/lxqt-config: Makefile
   	pkgsrc/x11/lxqt-globalkeys: Makefile buildlink3.mk
   	pkgsrc/x11/lxqt-notificationd: Makefile
   	pkgsrc/x11/lxqt-panel: Makefile
   	pkgsrc/x11/lxqt-qtplugin: Makefile
   	pkgsrc/x11/lxqt-runner: Makefile
   	pkgsrc/x11/lxqt-session: Makefile
   	pkgsrc/x11/maim: Makefile
   	pkgsrc/x11/mate-applets: Makefile
   	pkgsrc/x11/mate-control-center: Makefile buildlink3.mk
   	pkgsrc/x11/mate-panel: Makefile
   	pkgsrc/x11/mate-screensaver: Makefile
   	pkgsrc/x11/mate-settings-daemon: Makefile buildlink3.mk
   	pkgsrc/x11/mlterm: Makefile
   	pkgsrc/x11/ocaml-lablgtk: Makefile buildlink3.mk
   	pkgsrc/x11/ocaml-lablgtk3: Makefile buildlink3.mk
   	pkgsrc/x11/plasma-framework: Makefile buildlink3.mk
   	pkgsrc/x11/py-gnome2: Makefile buildlink3.mk
   	pkgsrc/x11/py-gnome2-extras: Makefile buildlink3.mk
   	pkgsrc/x11/py-gtk2: Makefile buildlink3.mk
   	pkgsrc/x11/py-gtksourceview: Makefile
   	pkgsrc/x11/py-keybinder: Makefile buildlink3.mk
   	pkgsrc/x11/py-kiwi: Makefile
   	pkgsrc/x11/py-qt5: Makefile
   	pkgsrc/x11/py-qt5-qscintilla: Makefile buildlink3.mk
   	pkgsrc/x11/py-qwt-qt5: Makefile
   	pkgsrc/x11/py-vte: Makefile
   	pkgsrc/x11/qqc2-desktop-style: Makefile
   	pkgsrc/x11/qt4-sqlite3: Makefile
   	pkgsrc/x11/qt5-mysql: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-odbc: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-psql: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qscintilla: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtbase: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtcharts: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtconnectivity: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtdeclarative: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtdoc: Makefile
   	pkgsrc/x11/qt5-qtgraphicaleffects: Makefile
   	pkgsrc/x11/qt5-qtimageformats: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtlocation: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtmacextras: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtmultimedia: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtnetworkauth: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtquickcontrols: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtquickcontrols2: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtscript: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtscxml: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtsensors: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtserialport: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtspeech: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtsvg: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qttools: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qttranslations: Makefile
   	pkgsrc/x11/qt5-qtvirtualkeyboard: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwayland: Makefile
   	pkgsrc/x11/qt5-qtwebchannel: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwebkit: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwebsockets: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtx11extras: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtxmlpatterns: Makefile buildlink3.mk
   	pkgsrc/x11/qterminal: Makefile
   	pkgsrc/x11/qtermwidget: Makefile
   	pkgsrc/x11/qwt6-qt5: Makefile buildlink3.mk
   	pkgsrc/x11/rofi: Makefile
   	pkgsrc/x11/rox-session: Makefile
   	pkgsrc/x11/ruby-gtksourceview2: Makefile
   	pkgsrc/x11/ruby-gtksourceview3: Makefile
   	pkgsrc/x11/slop: Makefile
   	pkgsrc/x11/tint2: Makefile
   	pkgsrc/x11/vte3: Makefile
   	pkgsrc/x11/wxGTK28: Makefile
   	pkgsrc/x11/xcb-proto: Makefile
   	pkgsrc/x11/xfce4-desktop: Makefile
   	pkgsrc/x11/xfce4-notes-plugin: Makefile
   	pkgsrc/x11/xfce4-screenshooter: Makefile
   	pkgsrc/x11/xfce4-session: Makefile
   	pkgsrc/x11/xfce4-settings: Makefile
   	pkgsrc/x11/xfce4-tumbler: Makefile
   	pkgsrc/x11/xfce4-wmdock-plugin: Makefile
   	pkgsrc/x11/xlockmore: Makefile
   	pkgsrc/x11/xpad: Makefile
   	pkgsrc/x11/xscreensaver: Makefile buildlink3.mk
   	pkgsrc/x11/xscreensaver-demo: Makefile
   	pkgsrc/x11/xsnow: Makefile
   	pkgsrc/x11/xvidcap: Makefile

   Log Message:
   revbump for textproc/icu

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Thu Apr 29 05:55:54 UTC 2021

   Modified Files:
   	pkgsrc/net/bind916: Makefile distinfo

   Log Message:
   net/bind916: update to 9.16.15

   Security release.

   	--- 9.16.15 released ---

   5621.	[bug]		Due to a backporting mistake in change 5609, named
   			binaries built against a Kerberos/GSSAPI library whose
   			header files did not define the GSS_SPNEGO_MECHANISM
   			preprocessor macro were not able to start if their
   			configuration included the "tkey-gssapi-credential"
   			option. This has been fixed. [GL #2634]

   5620.	[bug]		If zone journal files written by BIND 9.16.11 or earlier
   			were present when BIND was upgraded, the zone file for
   			that zone could have been inadvertently rewritten with
   			the current zone contents. This caused the original zone
   			file structure (e.g. comments, $INCLUDE directives) to
   			be lost, although the zone data itself was preserved.
   			This has been fixed. [GL #2623]

   	--- 9.16.14 released ---

   5617.	[security]	A specially crafted GSS-TSIG query could cause a buffer
   			overflow in the ISC implementation of SPNEGO.
   			(CVE-2021-25216) [GL #2604]

   5616.	[security]	named crashed when a DNAME record placed in the ANSWER
   			section during DNAME chasing turned out to be the final
   			answer to a client query. (CVE-2021-25215) [GL #2540]

   5615.	[security]	Insufficient IXFR checks could result in named serving a
   			zone without an SOA record at the apex, leading to a
   			RUNTIME_CHECK assertion failure when the zone was
   			subsequently refreshed. This has been fixed by adding an
   			owner name check for all SOA records which are included
   			in a zone transfer. (CVE-2021-25214) [GL #2467]

   5614.	[bug]		Ensure all resources are properly cleaned up when a call
   			to gss_accept_sec_context() fails. [GL #2620]

   5613.	[bug]		It was possible to write an invalid transaction header
   			in the journal file for a managed-keys database after
   			upgrading. This has been fixed. Invalid headers in
   			existing journal files are detected and named is able
   			to recover from them. [GL #2600]

   5611.	[func]		Set "stale-answer-client-timeout" to "off" by default.
   			[GL #2608]

   5610.	[bug]		Prevent a crash which could happen when a lookup
   			triggered by "stale-answer-client-timeout" was attempted
   			right after recursion for a client query finished.
   			[GL #2594]

   5609.	[func]		The ISC implementation of SPNEGO was removed from BIND 9
   			source code. It was no longer necessary as all major
   			contemporary Kerberos/GSSAPI libraries include support
   			for SPNEGO. [GL #2607]

   5608.	[bug]		When sending queries over TCP, dig now properly handles
   			"+tries=1 +retry=0" by not retrying the connection when
   			the remote server closes the connection prematurely.
   			[GL #2490]

   5607.	[bug]		As "rndc dnssec -checkds" and "rndc dnssec -rollover"
   			commands may affect the next scheduled key event,
   			reconfiguration of zone keys is now triggered after
   			receiving either of these commands to prevent
   			unnecessary key rollover delays. [GL #2488]

   5606.	[bug]		CDS/CDNSKEY DELETE records are now removed when a zone
   			transitions from a secure to an insecure state.
   			named-checkzone also no longer reports an error when
   			such records are found in an unsigned zone. [GL #2517]

   5605.	[bug]		"dig -u" now uses the CLOCK_REALTIME clock source for
   			more accurate time reporting. [GL #2592]

   5603.	[bug]		Fix a memory leak that occurred when named failed to
   			bind a UDP socket to a network interface. [GL #2575]

   5602.	[bug]		Fix TCPDNS and TLSDNS timers in Network Manager. This
   			makes the "tcp-initial-timeout" and "tcp-idle-timeout"
   			options work correctly again. [GL #2583]

   5601.	[bug]		Zones using KASP could not be thawed after they were
   			frozen using "rndc freeze". This has been fixed.
   			[GL #2523]
2021-04-30 15:05:15 +00:00
bsiegert cd0637822a Pullup ticket #6453 - requested by taca
net/bind911: security fix

Revisions pulled up:
- net/bind911/Makefile                                          1.41-1.42
- net/bind911/distinfo                                          1.30

---
   Module Name:	pkgsrc
   Committed By:	adam
   Date:		Wed Apr 21 11:43:04 UTC 2021

   Modified Files:
   	pkgsrc/archivers/ark: Makefile
   	pkgsrc/archivers/arqiver: Makefile
   	pkgsrc/archivers/karchive: Makefile buildlink3.mk
   	pkgsrc/archivers/lxqt-archiver: Makefile
   	pkgsrc/archivers/quazip: Makefile buildlink3.mk
   	pkgsrc/audio/ardour: Makefile
   	pkgsrc/audio/ario: Makefile
   	pkgsrc/audio/audacious: Makefile buildlink3.mk
   	pkgsrc/audio/audacious-plugins: Makefile
   	pkgsrc/audio/bmp: Makefile
   	pkgsrc/audio/buzztrax: Makefile
   	pkgsrc/audio/cantata: Makefile
   	pkgsrc/audio/cddb-bundle: Makefile
   	pkgsrc/audio/cdplayer: Makefile
   	pkgsrc/audio/ezstream: Makefile
   	pkgsrc/audio/flactag: Makefile
   	pkgsrc/audio/forked-daapd: Makefile
   	pkgsrc/audio/gbemol: Makefile
   	pkgsrc/audio/glurp: Makefile
   	pkgsrc/audio/glyr: Makefile buildlink3.mk
   	pkgsrc/audio/gmpc: Makefile
   	pkgsrc/audio/gmpc-albumview: Makefile
   	pkgsrc/audio/gmpc-jamendo: Makefile
   	pkgsrc/audio/gmpc-lyrics: Makefile
   	pkgsrc/audio/gmpc-lyricwiki: Makefile
   	pkgsrc/audio/gmpc-magnatune: Makefile
   	pkgsrc/audio/gmpc-tagedit: Makefile
   	pkgsrc/audio/grip: Makefile
   	pkgsrc/audio/gst-plugins0.10-a52: Makefile
   	pkgsrc/audio/gst-plugins0.10-dts: Makefile
   	pkgsrc/audio/gst-plugins0.10-faac: Makefile
   	pkgsrc/audio/gst-plugins0.10-faad: Makefile
   	pkgsrc/audio/gst-plugins0.10-flac: Makefile
   	pkgsrc/audio/gst-plugins0.10-fluendo-mp3: Makefile
   	pkgsrc/audio/gst-plugins0.10-jack: Makefile
   	pkgsrc/audio/gst-plugins0.10-lame: Makefile
   	pkgsrc/audio/gst-plugins0.10-mad: Makefile
   	pkgsrc/audio/gst-plugins0.10-musepack: Makefile
   	pkgsrc/audio/gst-plugins0.10-oss: Makefile
   	pkgsrc/audio/gst-plugins0.10-pulse: Makefile
   	pkgsrc/audio/gst-plugins0.10-sid: Makefile
   	pkgsrc/audio/gst-plugins0.10-soundtouch: Makefile
   	pkgsrc/audio/gst-plugins0.10-spc: Makefile
   	pkgsrc/audio/gst-plugins0.10-speex: Makefile
   	pkgsrc/audio/gst-plugins0.10-twolame: Makefile
   	pkgsrc/audio/gst-plugins0.10-wavpack: Makefile
   	pkgsrc/audio/gtkpod: Makefile
   	pkgsrc/audio/hydrogen: Makefile
   	pkgsrc/audio/icecast: Makefile
   	pkgsrc/audio/ices-mp3: Makefile
   	pkgsrc/audio/jack-rack: Makefile
   	pkgsrc/audio/kid3: Makefile
   	pkgsrc/audio/libgpod: Makefile buildlink3.mk
   	pkgsrc/audio/libmusicbrainz5: Makefile buildlink3.mk
   	pkgsrc/audio/liteamp: Makefile
   	pkgsrc/audio/lmms: Makefile
   	pkgsrc/audio/mixxx: Makefile
   	pkgsrc/audio/mp3diags: Makefile
   	pkgsrc/audio/musescore: Makefile
   	pkgsrc/audio/musicpd: Makefile
   	pkgsrc/audio/ncmpcpp: Makefile
   	pkgsrc/audio/paman: Makefile
   	pkgsrc/audio/paprefs: Makefile
   	pkgsrc/audio/pavucontrol: Makefile
   	pkgsrc/audio/pavucontrol-qt: Makefile
   	pkgsrc/audio/pavumeter: Makefile
   	pkgsrc/audio/pragha: Makefile
   	pkgsrc/audio/py-musique: Makefile
   	pkgsrc/audio/qjackctl: Makefile
   	pkgsrc/audio/qmmp: Makefile
   	pkgsrc/audio/qsynth: Makefile
   	pkgsrc/audio/quodlibet: Makefile
   	pkgsrc/audio/rhythmbox: Makefile
   	pkgsrc/audio/solfege: Makefile
   	pkgsrc/audio/sound-juicer: Makefile
   	pkgsrc/audio/spotify-qt: Makefile
   	pkgsrc/audio/streamtuner: Makefile
   	pkgsrc/audio/terminatorx: Makefile
   	pkgsrc/audio/traverso: Makefile
   	pkgsrc/audio/xfce4-mixer: Makefile
   	pkgsrc/audio/xfce4-xmms-plugin: Makefile
   	pkgsrc/benchmarks/dnsperf: Makefile
   	pkgsrc/benchmarks/sysbench: Makefile
   	pkgsrc/biology/bodr: Makefile
   	pkgsrc/biology/gnome-chemistry-utils: Makefile
   	pkgsrc/biology/gromacs: Makefile
   	pkgsrc/biology/molsketch: Makefile
   	pkgsrc/biology/ncbi-blast+: Makefile
   	pkgsrc/biology/openbabel: Makefile buildlink3.mk
   	pkgsrc/cad/gtkwave: Makefile
   	pkgsrc/cad/klayout: Makefile
   	pkgsrc/cad/librecad: Makefile
   	pkgsrc/cad/libredwg: Makefile
   	pkgsrc/cad/openscad: Makefile
   	pkgsrc/cad/qcad: Makefile
   	pkgsrc/chat/anope: Makefile
   	pkgsrc/chat/carbons-purple: Makefile
   	pkgsrc/chat/centerim5: Makefile
   	pkgsrc/chat/dino: Makefile
   	pkgsrc/chat/farstream: Makefile
   	pkgsrc/chat/finch: Makefile
   	pkgsrc/chat/hexchat: Makefile
   	pkgsrc/chat/jabberd2: Makefile
   	pkgsrc/chat/konversation: Makefile
   	pkgsrc/chat/ktp-accounts-kcm: Makefile
   	pkgsrc/chat/ktp-approver: Makefile
   	pkgsrc/chat/ktp-auth-handler: Makefile
   	pkgsrc/chat/ktp-common-internals: Makefile buildlink3.mk
   	pkgsrc/chat/ktp-contact-list: Makefile
   	pkgsrc/chat/ktp-contact-runner: Makefile
   	pkgsrc/chat/ktp-desktop-applets: Makefile
   	pkgsrc/chat/ktp-filetransfer-handler: Makefile
   	pkgsrc/chat/ktp-kded-integration-module: Makefile
   	pkgsrc/chat/ktp-send-file: Makefile
   	pkgsrc/chat/ktp-text-ui: Makefile
   	pkgsrc/chat/libfolks: Makefile
   	pkgsrc/chat/libgadu: Makefile
   	pkgsrc/chat/libpurple: Makefile buildlink3.mk
   	pkgsrc/chat/libtelepathy: Makefile
   	pkgsrc/chat/lurch-purple: Makefile
   	pkgsrc/chat/mumble: Makefile
   	pkgsrc/chat/pidgin: Makefile buildlink3.mk
   	pkgsrc/chat/pidgin-facebookchat: Makefile
   	pkgsrc/chat/pidgin-icb: Makefile
   	pkgsrc/chat/pidgin-latex: Makefile
   	pkgsrc/chat/pidgin-libnotify: Makefile
   	pkgsrc/chat/pidgin-otr: Makefile
   	pkgsrc/chat/pidgin-sametime: Makefile
   	pkgsrc/chat/pidgin-silc: Makefile
   	pkgsrc/chat/profanity: Makefile
   	pkgsrc/chat/psi: Makefile
   	pkgsrc/chat/quassel: Makefile
   	pkgsrc/chat/skypeweb-purple: Makefile
   	pkgsrc/chat/spectrum: Makefile
   	pkgsrc/chat/srain: Makefile
   	pkgsrc/chat/swift: Makefile
   	pkgsrc/chat/telegram-purple: Makefile
   	pkgsrc/chat/telepathy-gabble: Makefile
   	pkgsrc/chat/telepathy-glib: Makefile
   	pkgsrc/chat/telepathy-haze: Makefile
   	pkgsrc/chat/telepathy-idle: Makefile
   	pkgsrc/chat/telepathy-logger: Makefile buildlink3.mk
   	pkgsrc/chat/telepathy-mission-control5: Makefile
   	pkgsrc/chat/telepathy-qt5: Makefile buildlink3.mk
   	pkgsrc/chat/znc: Makefile
   	pkgsrc/comms/asterisk13: Makefile
   	pkgsrc/comms/asterisk15: Makefile
   	pkgsrc/comms/asterisk16: Makefile
   	pkgsrc/comms/libopensync: Makefile buildlink3.mk
   	pkgsrc/comms/libopensync-plugin-file: Makefile
   	pkgsrc/comms/libopensync-plugin-syncml: Makefile
   	pkgsrc/comms/libsyncml: Makefile
   	pkgsrc/comms/msynctool: Makefile
   	pkgsrc/comms/multisync-gui: Makefile
   	pkgsrc/comms/spandsp: Makefile
   	pkgsrc/comms/tilp2: Makefile
   	pkgsrc/comms/xfce4-modemlights-plugin: Makefile
   	pkgsrc/converters/libabw: Makefile
   	pkgsrc/converters/libcdr: Makefile buildlink3.mk
   	pkgsrc/converters/libe-book: Makefile
   	pkgsrc/converters/libetonyek: Makefile
   	pkgsrc/converters/libfreehand: Makefile
   	pkgsrc/converters/libmspub: Makefile
   	pkgsrc/converters/libqxp: Makefile
   	pkgsrc/converters/libvisio: Makefile buildlink3.mk
   	pkgsrc/converters/libzmf: Makefile
   	pkgsrc/converters/pyzy: Makefile buildlink3.mk
   	pkgsrc/converters/wv: Makefile buildlink3.mk
   	pkgsrc/converters/wv2: Makefile buildlink3.mk
   	pkgsrc/databases/SQLiteCpp: Makefile buildlink3.mk
   	pkgsrc/databases/couchdb: Makefile
   	pkgsrc/databases/csharp-mysql: Makefile
   	pkgsrc/databases/deforaos-libdatabase: Makefile
   	pkgsrc/databases/erlang-sqlite3: Makefile
   	pkgsrc/databases/gom: Makefile
   	pkgsrc/databases/gourmet: Makefile
   	pkgsrc/databases/gramps3: Makefile
   	pkgsrc/databases/gtkdbfeditor: Makefile
   	pkgsrc/databases/guile-sqlite3: Makefile
   	pkgsrc/databases/idzebra: Makefile buildlink3.mk
   	pkgsrc/databases/kldap: Makefile buildlink3.mk
   	pkgsrc/databases/libdbi-driver-sqlite3: Makefile
   	pkgsrc/databases/libgda: Makefile buildlink3.mk
   	pkgsrc/databases/libgda-mysql: Makefile
   	pkgsrc/databases/libgda-postgres: Makefile
   	pkgsrc/databases/libzdb: Makefile buildlink3.mk
   	pkgsrc/databases/lua-dbi-sqlite3: Makefile
   	pkgsrc/databases/lua-lsqlite3: Makefile
   	pkgsrc/databases/lua-sql-sqlite3: Makefile
   	pkgsrc/databases/lua-sqlite3: Makefile
   	pkgsrc/databases/mongo-c-driver: Makefile buildlink3.mk
   	pkgsrc/databases/mongodb: Makefile
   	pkgsrc/databases/mongodb3: Makefile
   	pkgsrc/databases/mysql-workbench: Makefile
   	pkgsrc/databases/ocaml-sqlite3: Makefile
   	pkgsrc/databases/p5-DBD-SQLite: Makefile
   	pkgsrc/databases/p5-RRD-Simple: Makefile
   	pkgsrc/databases/pgadmin3: Makefile
   	pkgsrc/databases/php-mongodb: Makefile
   	pkgsrc/databases/php-pdo_sqlite: Makefile
   	pkgsrc/databases/php-rrd: Makefile
   	pkgsrc/databases/php-sqlite3: Makefile
   	pkgsrc/databases/poco-data-sqlite: Makefile buildlink3.mk
   	pkgsrc/databases/postgresql-postgis2: Makefile buildlink3.mk
   	pkgsrc/databases/postgresql-promscale_extension: Makefile
   	pkgsrc/databases/postgresql10: Makefile
   	pkgsrc/databases/postgresql10-client: Makefile
   	pkgsrc/databases/postgresql10-contrib: Makefile
   	pkgsrc/databases/postgresql10-docs: Makefile
   	pkgsrc/databases/postgresql10-plperl: Makefile
   	pkgsrc/databases/postgresql10-plpython: Makefile
   	pkgsrc/databases/postgresql10-pltcl: Makefile
   	pkgsrc/databases/postgresql10-server: Makefile
   	pkgsrc/databases/postgresql11: Makefile
   	pkgsrc/databases/postgresql11-client: Makefile
   	pkgsrc/databases/postgresql11-contrib: Makefile
   	pkgsrc/databases/postgresql11-docs: Makefile
   	pkgsrc/databases/postgresql11-plperl: Makefile
   	pkgsrc/databases/postgresql11-plpython: Makefile
   	pkgsrc/databases/postgresql11-pltcl: Makefile
   	pkgsrc/databases/postgresql11-server: Makefile
   	pkgsrc/databases/postgresql12: Makefile
   	pkgsrc/databases/postgresql12-client: Makefile
   	pkgsrc/databases/postgresql12-contrib: Makefile
   	pkgsrc/databases/postgresql12-docs: Makefile
   	pkgsrc/databases/postgresql12-plperl: Makefile
   	pkgsrc/databases/postgresql12-plpython: Makefile
   	pkgsrc/databases/postgresql12-pltcl: Makefile
   	pkgsrc/databases/postgresql12-server: Makefile
   	pkgsrc/databases/postgresql13: Makefile
   	pkgsrc/databases/postgresql13-client: Makefile
   	pkgsrc/databases/postgresql13-contrib: Makefile
   	pkgsrc/databases/postgresql13-docs: Makefile
   	pkgsrc/databases/postgresql13-plperl: Makefile
   	pkgsrc/databases/postgresql13-plpython: Makefile
   	pkgsrc/databases/postgresql13-pltcl: Makefile
   	pkgsrc/databases/postgresql13-server: Makefile
   	pkgsrc/databases/postgresql95: Makefile
   	pkgsrc/databases/postgresql95-client: Makefile
   	pkgsrc/databases/postgresql95-contrib: Makefile
   	pkgsrc/databases/postgresql95-docs: Makefile
   	pkgsrc/databases/postgresql95-plperl: Makefile
   	pkgsrc/databases/postgresql95-plpython: Makefile
   	pkgsrc/databases/postgresql95-pltcl: Makefile
   	pkgsrc/databases/postgresql95-server: Makefile
   	pkgsrc/databases/postgresql96: Makefile
   	pkgsrc/databases/postgresql96-client: Makefile
   	pkgsrc/databases/postgresql96-contrib: Makefile
   	pkgsrc/databases/postgresql96-docs: Makefile
   	pkgsrc/databases/postgresql96-plperl: Makefile
   	pkgsrc/databases/postgresql96-plpython: Makefile
   	pkgsrc/databases/postgresql96-pltcl: Makefile
   	pkgsrc/databases/postgresql96-server: Makefile
   	pkgsrc/databases/py-apsw: Makefile
   	pkgsrc/databases/py-peewee: Makefile
   	pkgsrc/databases/py-rrdtool: Makefile
   	pkgsrc/databases/py-sqlite2: Makefile
   	pkgsrc/databases/py-sqlite3: Makefile
   	pkgsrc/databases/qore-sqlite3-module: Makefile
   	pkgsrc/databases/repmgr: Makefile
   	pkgsrc/databases/rrdtool: Makefile buildlink3.mk
   	pkgsrc/databases/ruby-do_sqlite3: Makefile
   	pkgsrc/databases/ruby-rrdtool: Makefile
   	pkgsrc/databases/ruby-sqlite3: Makefile
   	pkgsrc/databases/shared-mime-info: Makefile
   	pkgsrc/databases/soci: Makefile
   	pkgsrc/databases/sqlite3: Makefile buildlink3.mk
   	pkgsrc/databases/sqlite3-tcl: Makefile
   	pkgsrc/databases/sqlitebrowser: Makefile
   	pkgsrc/databases/sqlrelay-sqlite: Makefile
   	pkgsrc/databases/virtuoso: Makefile
   	pkgsrc/databases/vsqlite++: Makefile buildlink3.mk
   	pkgsrc/devel/GConf: Makefile buildlink3.mk
   	pkgsrc/devel/GConf-ui: Makefile buildlink3.mk
   	pkgsrc/devel/Gorm: Makefile
   	pkgsrc/devel/ObjectiveLib: Makefile
   	pkgsrc/devel/ProjectCenter: Makefile
   	pkgsrc/devel/Renaissance: Makefile buildlink3.mk
   	pkgsrc/devel/SOPE: Makefile
   	pkgsrc/devel/SOPE4: Makefile
   	pkgsrc/devel/aegis: Makefile
   	pkgsrc/devel/anjuta: Makefile
   	pkgsrc/devel/appdata-tools: Makefile
   	pkgsrc/devel/appstream-glib: Makefile
   	pkgsrc/devel/apr-util: Makefile
   	pkgsrc/devel/at-spi: Makefile buildlink3.mk
   	pkgsrc/devel/autogen: Makefile
   	pkgsrc/devel/cervisia: Makefile
   	pkgsrc/devel/cmake-gui: Makefile
   	pkgsrc/devel/coconut: Makefile
   	pkgsrc/devel/compiz-bcop: Makefile
   	pkgsrc/devel/compizconfig-backend-gconf: Makefile buildlink3.mk
   	pkgsrc/devel/cppcheck: Makefile
   	pkgsrc/devel/creduce: Makefile
   	pkgsrc/devel/cutter: Makefile
   	pkgsrc/devel/devhelp: Makefile
   	pkgsrc/devel/dia2code: Makefile
   	pkgsrc/devel/distccmon-gnome: Makefile
   	pkgsrc/devel/dolphin-plugins: Makefile
   	pkgsrc/devel/doxygen: Makefile
   	pkgsrc/devel/doxymacs: Makefile
   	pkgsrc/devel/dumpet: Makefile
   	pkgsrc/devel/edcommon: Makefile
   	pkgsrc/devel/fossil: Makefile
   	pkgsrc/devel/frama-c: Makefile
   	pkgsrc/devel/gconfmm: Makefile buildlink3.mk
   	pkgsrc/devel/gdl: Makefile
   	pkgsrc/devel/gearmand: Makefile
   	pkgsrc/devel/glade: Makefile buildlink3.mk
   	pkgsrc/devel/global: Makefile
   	pkgsrc/devel/gmtk: Makefile buildlink3.mk
   	pkgsrc/devel/gnustep-base: Makefile buildlink3.mk
   	pkgsrc/devel/gnustep-examples: Makefile
   	pkgsrc/devel/gps: Makefile
   	pkgsrc/devel/grantlee-qt5: Makefile buildlink3.mk
   	pkgsrc/devel/guile-gnome: Makefile
   	pkgsrc/devel/hyperscan: Makefile
   	pkgsrc/devel/include-what-you-use: Makefile
   	pkgsrc/devel/java-subversion: Makefile
   	pkgsrc/devel/kapptemplate: Makefile
   	pkgsrc/devel/kbookmarks: Makefile buildlink3.mk
   	pkgsrc/devel/kcachegrind: Makefile
   	pkgsrc/devel/kcmutils: Makefile buildlink3.mk
   	pkgsrc/devel/kconfig: Makefile buildlink3.mk
   	pkgsrc/devel/kcoreaddons: Makefile buildlink3.mk
   	pkgsrc/devel/kcrash: Makefile buildlink3.mk
   	pkgsrc/devel/kde-dev-scripts: Makefile
   	pkgsrc/devel/kde-dev-utils: Makefile
   	pkgsrc/devel/kdeclarative: Makefile buildlink3.mk
   	pkgsrc/devel/kdesdk-kioslaves: Makefile
   	pkgsrc/devel/kdesdk-strigi-analyzers: Makefile
   	pkgsrc/devel/kdesdk-thumbnailers: Makefile
   	pkgsrc/devel/kdevelop4: Makefile
   	pkgsrc/devel/kdevplatform: Makefile
   	pkgsrc/devel/kdiff3: Makefile
   	pkgsrc/devel/kdoctools: Makefile buildlink3.mk
   	pkgsrc/devel/ki18n: Makefile
   	pkgsrc/devel/kidletime: Makefile buildlink3.mk
   	pkgsrc/devel/kio: Makefile buildlink3.mk
   	pkgsrc/devel/kio-extras: Makefile
   	pkgsrc/devel/kitemmodels: Makefile buildlink3.mk
   	pkgsrc/devel/knotifications: Makefile buildlink3.mk
   	pkgsrc/devel/knotifyconfig: Makefile buildlink3.mk
   	pkgsrc/devel/kompare: Makefile
   	pkgsrc/devel/kpackage: Makefile buildlink3.mk
   	pkgsrc/devel/kparts: Makefile buildlink3.mk
   	pkgsrc/devel/kpeople: Makefile buildlink3.mk
   	pkgsrc/devel/kpty: Makefile buildlink3.mk
   	pkgsrc/devel/kross: Makefile buildlink3.mk
   	pkgsrc/devel/krunner: Makefile buildlink3.mk
   	pkgsrc/devel/kservice: Makefile buildlink3.mk
   	pkgsrc/devel/ktexteditor: Makefile buildlink3.mk
   	pkgsrc/devel/kwayland: Makefile buildlink3.mk
   	pkgsrc/devel/kyua: Makefile
   	pkgsrc/devel/libappindicator: Makefile
   	pkgsrc/devel/libbonobo: Makefile buildlink3.mk
   	pkgsrc/devel/libbonoboui: Makefile buildlink3.mk
   	pkgsrc/devel/libcompizconfig: Makefile buildlink3.mk
   	pkgsrc/devel/libdbusmenu-qt5: Makefile buildlink3.mk
   	pkgsrc/devel/libextractor: Makefile buildlink3.mk
   	pkgsrc/devel/libglade: Makefile buildlink3.mk
   	pkgsrc/devel/libglademm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnome: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomemm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomeui: Makefile buildlink3.mk
   	pkgsrc/devel/libgnomeuimm: Makefile buildlink3.mk
   	pkgsrc/devel/libgnt: Makefile buildlink3.mk
   	pkgsrc/devel/libgphoto2: Makefile buildlink3.mk
   	pkgsrc/devel/libgsf: Makefile buildlink3.mk
   	pkgsrc/devel/libgweather: Makefile buildlink3.mk
   	pkgsrc/devel/libhid: Makefile
   	pkgsrc/devel/libkgapi: Makefile
   	pkgsrc/devel/libkomparediff2: Makefile buildlink3.mk
   	pkgsrc/devel/liblangtag: Makefile
   	pkgsrc/devel/libsexy: Makefile buildlink3.mk
   	pkgsrc/devel/libsexymm: Makefile buildlink3.mk
   	pkgsrc/devel/libxenserver: Makefile buildlink3.mk
   	pkgsrc/devel/lokalize: Makefile
   	pkgsrc/devel/lxqt-build-tools: Makefile
   	pkgsrc/devel/m17n-lib: Makefile buildlink3.mk
   	pkgsrc/devel/meld: Makefile
   	pkgsrc/devel/monotone: Makefile
   	pkgsrc/devel/monotone-viz: Makefile
   	pkgsrc/devel/nss: Makefile
   	pkgsrc/devel/ocamlgraph: Makefile
   	pkgsrc/devel/okteta: Makefile
   	pkgsrc/devel/opengrok: Makefile
   	pkgsrc/devel/p5-Gnome2: Makefile
   	pkgsrc/devel/p5-Gnome2-GConf: Makefile
   	pkgsrc/devel/p5-Gtk2-GladeXML: Makefile
   	pkgsrc/devel/p5-subversion: Makefile
   	pkgsrc/devel/plasma-wayland-protocols: Makefile
   	pkgsrc/devel/poxml: Makefile
   	pkgsrc/devel/purpose: Makefile buildlink3.mk
   	pkgsrc/devel/py-compizconfig: Makefile buildlink3.mk
   	pkgsrc/devel/py-pysvn: Makefile
   	pkgsrc/devel/py-subversion: Makefile
   	pkgsrc/devel/py-subvertpy: Makefile
   	pkgsrc/devel/py-tortoisehg: Makefile
   	pkgsrc/devel/py-tryton: Makefile
   	pkgsrc/devel/qconf: Makefile
   	pkgsrc/devel/radare2-cutter: Makefile
   	pkgsrc/devel/rapidsvn: Makefile
   	pkgsrc/devel/ruby-redmine: Makefile
   	pkgsrc/devel/ruby-subversion: Makefile
   	pkgsrc/devel/startbug1: Makefile
   	pkgsrc/devel/subversion-base: Makefile buildlink3.mk
   	pkgsrc/devel/threadweaver: Makefile buildlink3.mk
   	pkgsrc/devel/umbrello: Makefile
   	pkgsrc/devel/verifast: Makefile
   	pkgsrc/devel/wayland: Makefile
   	pkgsrc/devel/woboq_codebrowser: Makefile
   	pkgsrc/devel/zeal: Makefile
   	pkgsrc/editors/Sigil: Makefile
   	pkgsrc/editors/TeXmacs: Makefile
   	pkgsrc/editors/abiword: Makefile buildlink3.mk
   	pkgsrc/editors/abiword-plugins: Makefile
   	pkgsrc/editors/codelite: Makefile
   	pkgsrc/editors/emacs25: Makefile
   	pkgsrc/editors/emacs26: Makefile
   	pkgsrc/editors/emacs27: Makefile
   	pkgsrc/editors/feathernotes: Makefile
   	pkgsrc/editors/featherpad: Makefile
   	pkgsrc/editors/focuswriter: Makefile
   	pkgsrc/editors/gedit: Makefile
   	pkgsrc/editors/gobby: Makefile
   	pkgsrc/editors/gtranslator: Makefile
   	pkgsrc/editors/gummi: Makefile
   	pkgsrc/editors/kate: Makefile
   	pkgsrc/editors/kile: Makefile
   	pkgsrc/editors/lyx: Makefile
   	pkgsrc/editors/medit: Makefile
   	pkgsrc/editors/pluma: Makefile
   	pkgsrc/editors/poedit: Makefile
   	pkgsrc/editors/qtcreator: Makefile
   	pkgsrc/editors/sasm: Makefile
   	pkgsrc/editors/tea: Makefile
   	pkgsrc/editors/tepl4: Makefile buildlink3.mk
   	pkgsrc/editors/texmaker: Makefile
   	pkgsrc/editors/texstudio: Makefile
   	pkgsrc/editors/texworks: Makefile
   	pkgsrc/editors/vim-gtk2: Makefile
   	pkgsrc/editors/xfce4-mousepad: Makefile
   	pkgsrc/editors/xournal: Makefile
   	pkgsrc/editors/xournalpp: Makefile
   	pkgsrc/emulators/PC6001VX: Makefile
   	pkgsrc/emulators/bsnes: Makefile
   	pkgsrc/emulators/ckmame: Makefile
   	pkgsrc/emulators/fuse-emulator: Makefile
   	pkgsrc/emulators/mame: Makefile
   	pkgsrc/emulators/mgba: Makefile
   	pkgsrc/emulators/retroarch: Makefile
   	pkgsrc/emulators/rpcemu: Makefile
   	pkgsrc/emulators/ski: Makefile
   	pkgsrc/emulators/wine: Makefile
   	pkgsrc/emulators/yabause: Makefile
   	pkgsrc/filesystems/cloudfuse: Makefile
   	pkgsrc/filesystems/fuse-darling-dmg: Makefile
   	pkgsrc/filesystems/fuse-gphotofs: Makefile
   	pkgsrc/filesystems/fuse-loggedfs: Makefile
   	pkgsrc/filesystems/fuse-pod: Makefile
   	pkgsrc/filesystems/fuse-svnfs: Makefile
   	pkgsrc/filesystems/glusterfs: Makefile
   	pkgsrc/filesystems/ltfs: Makefile
   	pkgsrc/filesystems/ltfs-ltotape: Makefile
   	pkgsrc/filesystems/ori: Makefile
   	pkgsrc/finance/bitcoin: Makefile
   	pkgsrc/finance/gnucash: Makefile
   	pkgsrc/finance/homebank: Makefile
   	pkgsrc/finance/libofx: Makefile
   	pkgsrc/fonts/fontforge: Makefile
   	pkgsrc/fonts/gucharmap: Makefile buildlink3.mk
   	pkgsrc/fonts/harfbuzz-icu: Makefile
   	pkgsrc/games/amor: Makefile
   	pkgsrc/games/armagetronad: Makefile
   	pkgsrc/games/armagetronad-server: Makefile
   	pkgsrc/games/atomix: Makefile
   	pkgsrc/games/blinken: Makefile
   	pkgsrc/games/bomber: Makefile
   	pkgsrc/games/bovo: Makefile
   	pkgsrc/games/ccgo: Makefile
   	pkgsrc/games/crossfire-server: Makefile
   	pkgsrc/games/easyrpg-player: Makefile
   	pkgsrc/games/eternal-lands: Makefile
   	pkgsrc/games/etlegacy: Makefile
   	pkgsrc/games/etlegacy-server: Makefile
   	pkgsrc/games/flightgear: Makefile
   	pkgsrc/games/fna: Makefile buildlink3.mk
   	pkgsrc/games/fnaify: Makefile
   	pkgsrc/games/gamazons: Makefile
   	pkgsrc/games/gbrainy: Makefile
   	pkgsrc/games/gcompris: Makefile
   	pkgsrc/games/genecys-client: Makefile
   	pkgsrc/games/gnome-mastermind: Makefile
   	pkgsrc/games/granatier: Makefile
   	pkgsrc/games/grhino: Makefile
   	pkgsrc/games/kajongg: Makefile
   	pkgsrc/games/kanagram: Makefile
   	pkgsrc/games/kanatest: Makefile
   	pkgsrc/games/kapman: Makefile
   	pkgsrc/games/katomic: Makefile
   	pkgsrc/games/kblackbox: Makefile
   	pkgsrc/games/kblocks: Makefile
   	pkgsrc/games/kbounce: Makefile
   	pkgsrc/games/kbreakout: Makefile
   	pkgsrc/games/kdiamond: Makefile
   	pkgsrc/games/kfourinline: Makefile
   	pkgsrc/games/kgoldrunner: Makefile
   	pkgsrc/games/khangman: Makefile
   	pkgsrc/games/kigo: Makefile
   	pkgsrc/games/killbots: Makefile
   	pkgsrc/games/kiriki: Makefile
   	pkgsrc/games/kjumpingcube: Makefile
   	pkgsrc/games/klickety: Makefile
   	pkgsrc/games/klines: Makefile
   	pkgsrc/games/kmahjongg: Makefile
   	pkgsrc/games/kmines: Makefile
   	pkgsrc/games/knavalbattle: Makefile
   	pkgsrc/games/knetwalk: Makefile
   	pkgsrc/games/kolf: Makefile
   	pkgsrc/games/kollision: Makefile
   	pkgsrc/games/konquest: Makefile
   	pkgsrc/games/kpat: Makefile
   	pkgsrc/games/kreversi: Makefile
   	pkgsrc/games/kshisen: Makefile
   	pkgsrc/games/ksirk: Makefile
   	pkgsrc/games/ksnakeduel: Makefile
   	pkgsrc/games/kspaceduel: Makefile
   	pkgsrc/games/ksquares: Makefile
   	pkgsrc/games/ksudoku: Makefile
   	pkgsrc/games/ktuberling: Makefile
   	pkgsrc/games/kubrick: Makefile
   	pkgsrc/games/kye: Makefile
   	pkgsrc/games/libkdegames: Makefile buildlink3.mk
   	pkgsrc/games/libkmahjongg: Makefile buildlink3.mk
   	pkgsrc/games/liblcf: Makefile buildlink3.mk
   	pkgsrc/games/lincity-ng: Makefile
   	pkgsrc/games/lskat: Makefile
   	pkgsrc/games/manaplus: Makefile
   	pkgsrc/games/megaglest: Makefile
   	pkgsrc/games/minetest: Makefile
   	pkgsrc/games/naev: Makefile
   	pkgsrc/games/openmw: Makefile
   	pkgsrc/games/openrct2: Makefile
   	pkgsrc/games/openttd: Makefile
   	pkgsrc/games/palapeli: Makefile
   	pkgsrc/games/picmi: Makefile
   	pkgsrc/games/pioneers: Makefile
   	pkgsrc/games/q5go: Makefile
   	pkgsrc/games/quarry: Makefile
   	pkgsrc/games/simgear: Makefile buildlink3.mk
   	pkgsrc/games/solarus: Makefile
   	pkgsrc/games/stone-soup: Makefile
   	pkgsrc/games/stone-soup-sdl: Makefile
   	pkgsrc/games/teg: Makefile
   	pkgsrc/games/warmux: Makefile
   	pkgsrc/games/warzone2100: Makefile
   	pkgsrc/games/widelands: Makefile
   	pkgsrc/games/xboard: Makefile
   	pkgsrc/games/xu4: Makefile
   	pkgsrc/geography/R-lwgeom: Makefile
   	pkgsrc/geography/R-rgdal: Makefile
   	pkgsrc/geography/R-sf: Makefile
   	pkgsrc/geography/gama: Makefile
   	pkgsrc/geography/gdal-lib: Makefile buildlink3.mk
   	pkgsrc/geography/geoclue: Makefile
   	pkgsrc/geography/geocode-glib: Makefile
   	pkgsrc/geography/gpsbabel: Makefile
   	pkgsrc/geography/gpxsee: Makefile
   	pkgsrc/geography/libchamplain012: Makefile buildlink3.mk
   	pkgsrc/geography/libgeotiff: Makefile buildlink3.mk
   	pkgsrc/geography/libspatialite: Makefile buildlink3.mk
   	pkgsrc/geography/mapserver: Makefile
   	pkgsrc/geography/merkaartor: Makefile
   	pkgsrc/geography/osm-gps-map: Makefile
   	pkgsrc/geography/osm2pgsql: Makefile
   	pkgsrc/geography/proj: Makefile buildlink3.mk
   	pkgsrc/geography/py-gdal: Makefile
   	pkgsrc/geography/py-proj: Makefile
   	pkgsrc/geography/qgis: Makefile
   	pkgsrc/geography/qlandkartegt: Makefile
   	pkgsrc/geography/qlandkartem: Makefile
   	pkgsrc/geography/viking: Makefile
   	pkgsrc/graphics/Cenon: Makefile
   	pkgsrc/graphics/GraphicsMagick: Makefile
   	pkgsrc/graphics/ImageMagick: Makefile buildlink3.mk
   	pkgsrc/graphics/ImageMagick6: Makefile buildlink3.mk
   	pkgsrc/graphics/ImageViewer: Makefile
   	pkgsrc/graphics/autopano-sift-C: Makefile
   	pkgsrc/graphics/autotrace: Makefile
   	pkgsrc/graphics/breeze-icons: Makefile
   	pkgsrc/graphics/camlimages: Makefile
   	pkgsrc/graphics/colord: Makefile
   	pkgsrc/graphics/comix: Makefile
   	pkgsrc/graphics/darktable: Makefile
   	pkgsrc/graphics/denemo: Makefile
   	pkgsrc/graphics/dia: Makefile
   	pkgsrc/graphics/dia-python: Makefile
   	pkgsrc/graphics/digikam: Makefile
   	pkgsrc/graphics/djview4: Makefile
   	pkgsrc/graphics/dx: Makefile
   	pkgsrc/graphics/eog: Makefile
   	pkgsrc/graphics/eom: Makefile
   	pkgsrc/graphics/frameworks: Makefile
   	pkgsrc/graphics/geeqie: Makefile
   	pkgsrc/graphics/gegl: Makefile
   	pkgsrc/graphics/gimp: Makefile buildlink3.mk
   	pkgsrc/graphics/gimp-color-manager: Makefile
   	pkgsrc/graphics/gimp-exif-browser: Makefile
   	pkgsrc/graphics/gimp-fix-ca: Makefile
   	pkgsrc/graphics/gimp-jxr: Makefile
   	pkgsrc/graphics/gimp-liquid-rescale: Makefile
   	pkgsrc/graphics/gimp-rawphoto: Makefile
   	pkgsrc/graphics/gimp-refocus-it: Makefile
   	pkgsrc/graphics/gimp-resynthesizer: Makefile
   	pkgsrc/graphics/gimp-ufraw: Makefile
   	pkgsrc/graphics/gimp2-wideangle: Makefile
   	pkgsrc/graphics/gmic: Makefile
   	pkgsrc/graphics/gnome-icon-theme-symbolic: Makefile
   	pkgsrc/graphics/gnome-themes-standard: Makefile
   	pkgsrc/graphics/gnuplot: Makefile
   	pkgsrc/graphics/gphoto2: Makefile
   	pkgsrc/graphics/graphviz: Makefile
   	pkgsrc/graphics/gst-plugins0.10-cairo: Makefile
   	pkgsrc/graphics/gst-plugins0.10-jpeg: Makefile
   	pkgsrc/graphics/gst-plugins0.10-png: Makefile
   	pkgsrc/graphics/gthumb: Makefile
   	pkgsrc/graphics/gthumb3: Makefile
   	pkgsrc/graphics/gtkam: Makefile
   	pkgsrc/graphics/gwenview: Makefile
   	pkgsrc/graphics/hugin: Makefile
   	pkgsrc/graphics/imv: Makefile
   	pkgsrc/graphics/inkscape: Makefile
   	pkgsrc/graphics/ipe: Makefile
   	pkgsrc/graphics/kamera: Makefile
   	pkgsrc/graphics/kcolorchooser: Makefile
   	pkgsrc/graphics/kde-base-artwork: Makefile
   	pkgsrc/graphics/kdegraphics-mobipocket: Makefile buildlink3.mk
   	pkgsrc/graphics/kdegraphics-strigi-analyzer: Makefile
   	pkgsrc/graphics/kdegraphics-thumbnailers: Makefile
   	pkgsrc/graphics/kgamma: Makefile
   	pkgsrc/graphics/kiconthemes: Makefile buildlink3.mk
   	pkgsrc/graphics/kimageformats: Makefile
   	pkgsrc/graphics/kipi-plugins: Makefile buildlink3.mk
   	pkgsrc/graphics/kolourpaint: Makefile
   	pkgsrc/graphics/koverartist: Makefile
   	pkgsrc/graphics/kplotting: Makefile buildlink3.mk
   	pkgsrc/graphics/kqtquickcharts: Makefile
   	pkgsrc/graphics/kqtquickcharts4: Makefile
   	pkgsrc/graphics/krita: Makefile
   	pkgsrc/graphics/kruler: Makefile
   	pkgsrc/graphics/kvantum: Makefile
   	pkgsrc/graphics/lasem: Makefile buildlink3.mk
   	pkgsrc/graphics/libgnomecanvas: Makefile buildlink3.mk
   	pkgsrc/graphics/libgnomecanvasmm: Makefile buildlink3.mk
   	pkgsrc/graphics/libkdcraw: Makefile buildlink3.mk
   	pkgsrc/graphics/libkexiv2: Makefile buildlink3.mk
   	pkgsrc/graphics/libkexiv2-kde4: Makefile
   	pkgsrc/graphics/libkipi: Makefile buildlink3.mk
   	pkgsrc/graphics/libksane: Makefile buildlink3.mk
   	pkgsrc/graphics/librsvg: Makefile buildlink3.mk
   	pkgsrc/graphics/librsvg-c: Makefile
   	pkgsrc/graphics/libscigraphica: Makefile buildlink3.mk
   	pkgsrc/graphics/libwmf: Makefile buildlink3.mk
   	pkgsrc/graphics/luminance-hdr: Makefile
   	pkgsrc/graphics/lximage-qt: Makefile
   	pkgsrc/graphics/netpbm: Makefile
   	pkgsrc/graphics/ocaml-cairo: Makefile
   	pkgsrc/graphics/osg: Makefile buildlink3.mk
   	pkgsrc/graphics/p5-Gnome2-Canvas: Makefile buildlink3.mk
   	pkgsrc/graphics/p5-PerlMagick: Makefile
   	pkgsrc/graphics/pfstools: Makefile
   	pkgsrc/graphics/php-imagick: Makefile
   	pkgsrc/graphics/prison: Makefile buildlink3.mk
   	pkgsrc/graphics/py-gtkglext: Makefile
   	pkgsrc/graphics/rawtherapee: Makefile
   	pkgsrc/graphics/ruby-RMagick: Makefile
   	pkgsrc/graphics/ruby-rsvg2: Makefile
   	pkgsrc/graphics/sane-airscan: Makefile
   	pkgsrc/graphics/sane-frontends: Makefile
   	pkgsrc/graphics/scigraphica: Makefile
   	pkgsrc/graphics/screengrab: Makefile
   	pkgsrc/graphics/shotwell: Makefile
   	pkgsrc/graphics/spectacle: Makefile
   	pkgsrc/graphics/svgpart: Makefile
   	pkgsrc/graphics/tango-icon-theme: Makefile
   	pkgsrc/graphics/tesseract: Makefile
   	pkgsrc/graphics/tuxpaint: Makefile
   	pkgsrc/graphics/ucview: Makefile
   	pkgsrc/graphics/veusz: Makefile
   	pkgsrc/graphics/x11rec: Makefile
   	pkgsrc/graphics/xsane: Makefile
   	pkgsrc/graphics/zbar: Makefile
   	pkgsrc/graphics/zphoto: Makefile
   	pkgsrc/ham/gmfsk: Makefile
   	pkgsrc/ham/gnuradio-channels: Makefile
   	pkgsrc/ham/gnuradio-companion: Makefile
   	pkgsrc/ham/gnuradio-core: Makefile
   	pkgsrc/ham/gnuradio-ctrlport: Makefile
   	pkgsrc/ham/gnuradio-digital: Makefile
   	pkgsrc/ham/gnuradio-doxygen: Makefile
   	pkgsrc/ham/gnuradio-dtv: Makefile
   	pkgsrc/ham/gnuradio-fec: Makefile
   	pkgsrc/ham/gnuradio-network: Makefile
   	pkgsrc/ham/gnuradio-qtgui: Makefile
   	pkgsrc/ham/gnuradio-trellis: Makefile
   	pkgsrc/ham/gnuradio-uhd: Makefile
   	pkgsrc/ham/gnuradio-utils: Makefile
   	pkgsrc/ham/gnuradio-video-sdl: Makefile
   	pkgsrc/ham/gnuradio-vocoder: Makefile
   	pkgsrc/ham/gnuradio-wavelet: Makefile
   	pkgsrc/ham/gnuradio-zeromq: Makefile
   	pkgsrc/inputmethod/fcitx: Makefile
   	pkgsrc/inputmethod/fcitx-qt5: Makefile
   	pkgsrc/inputmethod/fcitx-skk: Makefile
   	pkgsrc/inputmethod/fcitx5-chewing: Makefile
   	pkgsrc/inputmethod/fcitx5-chinese-addons: Makefile
   	pkgsrc/inputmethod/fcitx5-configtool: Makefile
   	pkgsrc/inputmethod/fcitx5-kkc: Makefile
   	pkgsrc/inputmethod/fcitx5-m17n: Makefile
   	pkgsrc/inputmethod/fcitx5-mozc: Makefile Makefile.common
   	pkgsrc/inputmethod/fcitx5-qt: Makefile buildlink3.mk
   	pkgsrc/inputmethod/fcitx5-skk: Makefile
   	pkgsrc/inputmethod/fcitx5-unikey: Makefile
   	pkgsrc/inputmethod/ibus-array: Makefile
   	pkgsrc/inputmethod/ibus-chewing: Makefile
   	pkgsrc/inputmethod/ibus-input-pad: Makefile
   	pkgsrc/inputmethod/ibus-libpinyin: Makefile
   	pkgsrc/inputmethod/ibus-m17n: Makefile
   	pkgsrc/inputmethod/ibus-mozc: Makefile
   	pkgsrc/inputmethod/ibus-pinyin: Makefile
   	pkgsrc/inputmethod/ibus-qt: Makefile
   	pkgsrc/inputmethod/im-ja: Makefile
   	pkgsrc/inputmethod/input-pad: Makefile buildlink3.mk
   	pkgsrc/inputmethod/kimera-tomoe-gtk: Makefile
   	pkgsrc/inputmethod/libchewing: Makefile buildlink3.mk
   	pkgsrc/inputmethod/m17n-im-config: Makefile buildlink3.mk
   	pkgsrc/inputmethod/mozc-elisp: Makefile
   	pkgsrc/inputmethod/mozc-renderer: Makefile
   	pkgsrc/inputmethod/mozc-server: Makefile
   	pkgsrc/inputmethod/mozc-tool: Makefile
   	pkgsrc/inputmethod/py-input-pad: Makefile
   	pkgsrc/inputmethod/scim-chewing: Makefile
   	pkgsrc/inputmethod/scim-m17n: Makefile
   	pkgsrc/inputmethod/scim-tomoe: Makefile
   	pkgsrc/inputmethod/tomoe-gtk: Makefile buildlink3.mk
   	pkgsrc/inputmethod/uim: Makefile
   	pkgsrc/inputmethod/uim-chewing: Makefile
   	pkgsrc/inputmethod/uim-mozc: Makefile
   	pkgsrc/inputmethod/uim-tomoe-gtk: Makefile
   	pkgsrc/lang/coq: Makefile
   	pkgsrc/lang/coreclr: Makefile buildlink3.mk
   	pkgsrc/lang/gjs: Makefile buildlink3.mk
   	pkgsrc/lang/konoha: Makefile
   	pkgsrc/lang/mono: Makefile buildlink3.mk
   	pkgsrc/lang/mono-basic: Makefile
   	pkgsrc/lang/mozjs78: Makefile buildlink3.mk
   	pkgsrc/lang/neko: Makefile
   	pkgsrc/lang/nodejs: Makefile buildlink3.mk
   	pkgsrc/lang/nodejs10: Makefile buildlink3.mk
   	pkgsrc/lang/nodejs12: Makefile buildlink3.mk
   	pkgsrc/lang/parrot: Makefile buildlink3.mk
   	pkgsrc/lang/php56: Makefile buildlink3.mk
   	pkgsrc/lang/php73: Makefile buildlink3.mk
   	pkgsrc/lang/php74: Makefile buildlink3.mk
   	pkgsrc/lang/php80: Makefile buildlink3.mk
   	pkgsrc/lang/racket: Makefile
   	pkgsrc/lang/smalltalk: Makefile
   	pkgsrc/lang/spl: Makefile
   	pkgsrc/lang/tcl: Makefile
   	pkgsrc/lang/zig: Makefile
   	pkgsrc/mail/GNUMail: Makefile
   	pkgsrc/mail/Pantomime: Makefile buildlink3.mk
   	pkgsrc/mail/akonadi: Makefile
   	pkgsrc/mail/balsa: Makefile
   	pkgsrc/mail/bogofilter: Makefile
   	pkgsrc/mail/claws-mail-rssyl: Makefile
   	pkgsrc/mail/claws-mail-vcalendar: Makefile
   	pkgsrc/mail/cone: Makefile
   	pkgsrc/mail/cyrus-imapd24: Makefile
   	pkgsrc/mail/dbmail: Makefile
   	pkgsrc/mail/dovecot2-sqlite: Makefile
   	pkgsrc/mail/dspam: Makefile
   	pkgsrc/mail/evolution: Makefile buildlink3.mk
   	pkgsrc/mail/evolution-data-server: Makefile buildlink3.mk
   	pkgsrc/mail/exim: Makefile
   	pkgsrc/mail/ezmlm-idx: Makefile
   	pkgsrc/mail/greylisting-spp: Makefile
   	pkgsrc/mail/kimap: Makefile buildlink3.mk
   	pkgsrc/mail/kmbox: Makefile buildlink3.mk
   	pkgsrc/mail/kmime: Makefile buildlink3.mk
   	pkgsrc/mail/ksmtp: Makefile buildlink3.mk
   	pkgsrc/mail/mail-notification: Makefile
   	pkgsrc/mail/pfqueue: Makefile
   	pkgsrc/mail/postfix: Makefile
   	pkgsrc/mail/postfix-sqlite: Makefile
   	pkgsrc/mail/pst-utils: Makefile
   	pkgsrc/mail/rspamd: Makefile
   	pkgsrc/math/R-XML: Makefile
   	pkgsrc/math/R-igraph: Makefile
   	pkgsrc/math/analitza: Makefile buildlink3.mk
   	pkgsrc/math/cantor: Makefile
   	pkgsrc/math/cgal: Makefile
   	pkgsrc/math/gcalctool: Makefile
   	pkgsrc/math/genius: Makefile
   	pkgsrc/math/gnome-calculator: Makefile
   	pkgsrc/math/gnumeric112: Makefile
   	pkgsrc/math/kalgebra: Makefile
   	pkgsrc/math/kcalc: Makefile
   	pkgsrc/math/lumina-calculator: Makefile
   	pkgsrc/math/octave: Makefile
   	pkgsrc/math/pspp: Makefile
   	pkgsrc/math/qalculate: Makefile buildlink3.mk
   	pkgsrc/math/qalculate-gtk: Makefile
   	pkgsrc/math/sc-im: Makefile
   	pkgsrc/math/sollya: Makefile
   	pkgsrc/math/speedcrunch: Makefile
   	pkgsrc/math/wxmaxima: Makefile
   	pkgsrc/math/xyconvert: Makefile
   	pkgsrc/meta-pkgs/gnustep: Makefile
   	pkgsrc/meta-pkgs/libdbusmenu: Makefile buildlink3.mk
   	pkgsrc/misc/Addresses: Makefile buildlink3.mk
   	pkgsrc/misc/attica-qt5: Makefile buildlink3.mk
   	pkgsrc/misc/bibletime: Makefile
   	pkgsrc/misc/calibre: Makefile
   	pkgsrc/misc/celestia: Makefile
   	pkgsrc/misc/fbreader: Makefile
   	pkgsrc/misc/goffice0.10: Makefile buildlink3.mk
   	pkgsrc/misc/goffice0.8: Makefile buildlink3.mk
   	pkgsrc/misc/kaccessible: Makefile
   	pkgsrc/misc/kalzium: Makefile
   	pkgsrc/misc/kbruch: Makefile
   	pkgsrc/misc/kcharselect: Makefile
   	pkgsrc/misc/kchmviewer: Makefile
   	pkgsrc/misc/kcontacts: Makefile buildlink3.mk
   	pkgsrc/misc/kdav: Makefile buildlink3.mk
   	pkgsrc/misc/kde-wallpapers4: Makefile
   	pkgsrc/misc/kdeartwork4: Makefile
   	pkgsrc/misc/kdeedu-data: Makefile
   	pkgsrc/misc/kdepim-runtime4: Makefile
   	pkgsrc/misc/kdepim4: Makefile
   	pkgsrc/misc/kdepimlibs4: Makefile buildlink3.mk
   	pkgsrc/misc/kdeplasma-addons4: Makefile
   	pkgsrc/misc/kemoticons: Makefile buildlink3.mk
   	pkgsrc/misc/kgeography: Makefile
   	pkgsrc/misc/khelpcenter: Makefile
   	pkgsrc/misc/kidentitymanagement: Makefile buildlink3.mk
   	pkgsrc/misc/kig: Makefile
   	pkgsrc/misc/kiten: Makefile
   	pkgsrc/misc/klettres: Makefile
   	pkgsrc/misc/kmag: Makefile
   	pkgsrc/misc/kmousetool: Makefile
   	pkgsrc/misc/kmouth: Makefile
   	pkgsrc/misc/kremotecontrol: Makefile
   	pkgsrc/misc/kstars: Makefile
   	pkgsrc/misc/kteatime: Makefile
   	pkgsrc/misc/ktouch: Makefile
   	pkgsrc/misc/kturtle: Makefile
   	pkgsrc/misc/ktux: Makefile
   	pkgsrc/misc/kunitconversion: Makefile buildlink3.mk
   	pkgsrc/misc/kwordquiz: Makefile
   	pkgsrc/misc/libkdeedu: Makefile buildlink3.mk
   	pkgsrc/misc/libkeduvocdocument: Makefile buildlink3.mk
   	pkgsrc/misc/libkvkontakte: Makefile buildlink3.mk
   	pkgsrc/misc/libmateweather: Makefile buildlink3.mk
   	pkgsrc/misc/libreoffice: Makefile
   	pkgsrc/misc/marble: Makefile buildlink3.mk
   	pkgsrc/misc/mate-calc: Makefile
   	pkgsrc/misc/parley: Makefile
   	pkgsrc/misc/rocs: Makefile
   	pkgsrc/misc/stellarium: Makefile
   	pkgsrc/misc/step: Makefile
   	pkgsrc/misc/superkaramba: Makefile
   	pkgsrc/misc/sweeper: Makefile
   	pkgsrc/misc/sword: Makefile buildlink3.mk
   	pkgsrc/misc/usbprog: Makefile
   	pkgsrc/misc/vym: Makefile
   	pkgsrc/misc/xfce4-weather-plugin: Makefile
   	pkgsrc/misc/xygrib: Makefile
   	pkgsrc/misc/yelp3: Makefile
   	pkgsrc/misc/zyGrib: Makefile
   	pkgsrc/multimedia/audiocd-kio: Makefile
   	pkgsrc/multimedia/avidemux: Makefile
   	pkgsrc/multimedia/dragon: Makefile
   	pkgsrc/multimedia/dvdauthor: Makefile
   	pkgsrc/multimedia/ffmpeg2: Makefile
   	pkgsrc/multimedia/ffmpeg3: Makefile
   	pkgsrc/multimedia/ffmpeg4: Makefile
   	pkgsrc/multimedia/ffmpegthumbs: Makefile
   	pkgsrc/multimedia/ffplay2: Makefile
   	pkgsrc/multimedia/ffplay3: Makefile
   	pkgsrc/multimedia/ffplay4: Makefile
   	pkgsrc/multimedia/gmencoder: Makefile
   	pkgsrc/multimedia/gnome-mplayer: Makefile
   	pkgsrc/multimedia/goggles: Makefile
   	pkgsrc/multimedia/gopchop: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-bad: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-base: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-dvdread: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-ffmpeg: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-gnonlin: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-good: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-hal: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-mpeg2dec: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-resindvd: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-ugly: Makefile buildlink3.mk
   	pkgsrc/multimedia/gst-plugins0.10-v4l2: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-vp8: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-x264: Makefile
   	pkgsrc/multimedia/gst-plugins0.10-xvid: Makefile
   	pkgsrc/multimedia/gst-plugins1-base: Makefile
   	pkgsrc/multimedia/gst-plugins1-editing-services: Makefile
   	pkgsrc/multimedia/gstreamer0.10: Makefile buildlink3.mk
   	pkgsrc/multimedia/handbrake: Makefile
   	pkgsrc/multimedia/juk: Makefile
   	pkgsrc/multimedia/kdenlive: Makefile
   	pkgsrc/multimedia/kmix: Makefile
   	pkgsrc/multimedia/kmplayer: Makefile
   	pkgsrc/multimedia/kscd: Makefile
   	pkgsrc/multimedia/libassetml: Makefile buildlink3.mk
   	pkgsrc/multimedia/libbluray: Makefile buildlink3.mk
   	pkgsrc/multimedia/libkcddb: Makefile buildlink3.mk
   	pkgsrc/multimedia/libkcompactdisc: Makefile buildlink3.mk
   	pkgsrc/multimedia/mate-media: Makefile
   	pkgsrc/multimedia/mediatomb: Makefile
   	pkgsrc/multimedia/minidlna: Makefile
   	pkgsrc/multimedia/mkvtoolnix: Makefile
   	pkgsrc/multimedia/mlt: Makefile
   	pkgsrc/multimedia/mplayerthumbs: Makefile
   	pkgsrc/multimedia/mpv: Makefile
   	pkgsrc/multimedia/obs-studio: Makefile
   	pkgsrc/multimedia/ogle: Makefile buildlink3.mk
   	pkgsrc/multimedia/ogle_gui: Makefile
   	pkgsrc/multimedia/olive-editor: Makefile
   	pkgsrc/multimedia/p5-GStreamer: Makefile
   	pkgsrc/multimedia/phonon-qt5: Makefile buildlink3.mk
   	pkgsrc/multimedia/phonon-qt5-backend-gstreamer: Makefile
   	pkgsrc/multimedia/phonon-qt5-backend-vlc: Makefile
   	pkgsrc/multimedia/py-gstreamer0.10: Makefile
   	pkgsrc/multimedia/ssr: Makefile
   	pkgsrc/multimedia/subtitleeditor: Makefile
   	pkgsrc/multimedia/totem: Makefile buildlink3.mk
   	pkgsrc/multimedia/totem-pl-parser: Makefile buildlink3.mk
   	pkgsrc/multimedia/transcode: Makefile
   	pkgsrc/multimedia/vlc: Makefile
   	pkgsrc/multimedia/xine-lib: Makefile
   	pkgsrc/net/aria2: Makefile
   	pkgsrc/net/bind911: Makefile
   	pkgsrc/net/bind916: Makefile
   	pkgsrc/net/cacti: Makefile
   	pkgsrc/net/choqok: Makefile
   	pkgsrc/net/corebird: Makefile
   	pkgsrc/net/dc_gui2: Makefile
   	pkgsrc/net/dctc: Makefile
   	pkgsrc/net/dhcpcd-qt: Makefile
   	pkgsrc/net/filezilla: Makefile
   	pkgsrc/net/flickcurl: Makefile
   	pkgsrc/net/freeDiameter: Makefile
   	pkgsrc/net/freeradius-sqlite3: Makefile
   	pkgsrc/net/gift-gnutella: Makefile
   	pkgsrc/net/gnome-online-accounts: Makefile
   	pkgsrc/net/gnome-vfs-smb: Makefile
   	pkgsrc/net/grilo: Makefile buildlink3.mk
   	pkgsrc/net/grilo-plugins: Makefile
   	pkgsrc/net/gssdp: Makefile buildlink3.mk
   	pkgsrc/net/gssdp12: Makefile buildlink3.mk
   	pkgsrc/net/gst-plugins0.10-mms: Makefile
   	pkgsrc/net/gst-plugins0.10-rtmp: Makefile
   	pkgsrc/net/gst-plugins0.10-soup: Makefile
   	pkgsrc/net/gst-plugins1-libnice: Makefile
   	pkgsrc/net/gst-plugins1-soup: Makefile
   	pkgsrc/net/gtk-gnutella: Makefile
   	pkgsrc/net/gtk-vnc: Makefile
   	pkgsrc/net/gupnp: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-av: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-dlna: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-igd: Makefile buildlink3.mk
   	pkgsrc/net/gupnp-tools: Makefile
   	pkgsrc/net/gupnp12: Makefile buildlink3.mk
   	pkgsrc/net/kdenetwork-filesharing: Makefile
   	pkgsrc/net/kdenetwork-strigi-analyzers: Makefile
   	pkgsrc/net/kdnssd: Makefile buildlink3.mk
   	pkgsrc/net/kdsoap: Makefile buildlink3.mk
   	pkgsrc/net/kget: Makefile
   	pkgsrc/net/kmldonkey: Makefile
   	pkgsrc/net/knewstuff: Makefile buildlink3.mk
   	pkgsrc/net/kopete: Makefile
   	pkgsrc/net/kppp: Makefile
   	pkgsrc/net/krdc: Makefile
   	pkgsrc/net/krfb: Makefile
   	pkgsrc/net/ktorrent: Makefile
   	pkgsrc/net/kxmlrpcclient: Makefile buildlink3.mk
   	pkgsrc/net/libcmis: Makefile
   	pkgsrc/net/libdmapsharing3: Makefile buildlink3.mk
   	pkgsrc/net/libgdata: Makefile buildlink3.mk
   	pkgsrc/net/libgdata0.6: Makefile buildlink3.mk
   	pkgsrc/net/libktorrent: Makefile buildlink3.mk
   	pkgsrc/net/libnice: Makefile buildlink3.mk
   	pkgsrc/net/libsoup: Makefile buildlink3.mk
   	pkgsrc/net/libzrtpcpp: Makefile buildlink3.mk
   	pkgsrc/net/lldpd: Makefile
   	pkgsrc/net/microdc2: Makefile
   	pkgsrc/net/minitube: Makefile
   	pkgsrc/net/mldonkey-gui: Makefile
   	pkgsrc/net/mono-nat: Makefile buildlink3.mk
   	pkgsrc/net/monotorrent: Makefile buildlink3.mk
   	pkgsrc/net/nagstamon: Makefile
   	pkgsrc/net/ncdc: Makefile
   	pkgsrc/net/ncgopher: Makefile
   	pkgsrc/net/nfdump: Makefile
   	pkgsrc/net/ntop: Makefile
   	pkgsrc/net/ntopng: Makefile
   	pkgsrc/net/ocamlnet: Makefile
   	pkgsrc/net/ocsync: Makefile buildlink3.mk
   	pkgsrc/net/openconnect: Makefile
   	pkgsrc/net/owncloudclient: Makefile
   	pkgsrc/net/p5-Net-Z3950-ZOOM: Makefile
   	pkgsrc/net/php-soap: Makefile
   	pkgsrc/net/php-xmlrpc: Makefile
   	pkgsrc/net/php-yaz: Makefile
   	pkgsrc/net/powerdns: Makefile
   	pkgsrc/net/proftpd-sqlite: Makefile
   	pkgsrc/net/qbittorrent: Makefile
   	pkgsrc/net/remmina: Makefile
   	pkgsrc/net/scli: Makefile
   	pkgsrc/net/syncthing-gtk: Makefile
   	pkgsrc/net/tcpflow: Makefile
   	pkgsrc/net/transmission-qt: Makefile
   	pkgsrc/net/unison-snapshot: Makefile
   	pkgsrc/net/unison2.51: Makefile
   	pkgsrc/net/vinagre: Makefile
   	pkgsrc/net/vino: Makefile
   	pkgsrc/net/wireshark: Makefile
   	pkgsrc/net/wpa_gui: Makefile
   	pkgsrc/net/xymon: Makefile
   	pkgsrc/net/yaz: Makefile buildlink3.mk
   	pkgsrc/net/zeroconf-ioslave: Makefile
   	pkgsrc/news/bystand: Makefile
   	pkgsrc/news/newsbeuter: Makefile
   	pkgsrc/news/tin: Makefile
   	pkgsrc/parallel/ganglia-monitor-core: Makefile
   	pkgsrc/parallel/gridscheduler: Makefile
   	pkgsrc/parallel/hwloc: Makefile buildlink3.mk
   	pkgsrc/parallel/mpi-ch: Makefile
   	pkgsrc/parallel/openmpi: Makefile buildlink3.mk
   	pkgsrc/parallel/slurm-wlm: Makefile
   	pkgsrc/pkgtools/gnome-packagekit: Makefile
   	pkgsrc/pkgtools/packagekit: Makefile buildlink3.mk
   	pkgsrc/pkgtools/pkgin: Makefile
   	pkgsrc/print/advi: Makefile
   	pkgsrc/print/atril: Makefile
   	pkgsrc/print/dspdfviewer: Makefile
   	pkgsrc/print/evince3: Makefile
   	pkgsrc/print/foliate: Makefile
   	pkgsrc/print/foomatic4-db-engine: Makefile
   	pkgsrc/print/glabels: Makefile
   	pkgsrc/print/gutenprint-lib: Makefile
   	pkgsrc/print/lumina-pdf: Makefile
   	pkgsrc/print/okular: Makefile
   	pkgsrc/print/poppler-qt5: Makefile
   	pkgsrc/print/qpdfview: Makefile
   	pkgsrc/print/scribus-qt4: Makefile
   	pkgsrc/print/scribus-qt5: Makefile
   	pkgsrc/print/sile: Makefile
   	pkgsrc/print/xetex: Makefile
   	pkgsrc/print/xpdf4: Makefile
   	pkgsrc/print/zathura: Makefile
   	pkgsrc/security/KeePass: Makefile
   	pkgsrc/security/ap-modsecurity2: Makefile
   	pkgsrc/security/clamav: Makefile buildlink3.mk
   	pkgsrc/security/cy2-saml: Makefile
   	pkgsrc/security/cy2-sql: Makefile
   	pkgsrc/security/ecap_clamav_adapter: Makefile
   	pkgsrc/security/fwbuilder: Makefile
   	pkgsrc/security/gnupg2: Makefile
   	pkgsrc/security/gpgmepp: Makefile buildlink3.mk
   	pkgsrc/security/heimdal: Makefile buildlink3.mk
   	pkgsrc/security/honeyd: Makefile
   	pkgsrc/security/hydra: Makefile
   	pkgsrc/security/kauth: Makefile buildlink3.mk
   	pkgsrc/security/kdesu: Makefile buildlink3.mk
   	pkgsrc/security/keepassxc: Makefile
   	pkgsrc/security/kgpg: Makefile
   	pkgsrc/security/kwallet: Makefile buildlink3.mk
   	pkgsrc/security/kwalletmanager: Makefile
   	pkgsrc/security/lasso: Makefile buildlink3.mk
   	pkgsrc/security/lastpass-cli: Makefile
   	pkgsrc/security/libfprint: Makefile
   	pkgsrc/security/libfwbuilder: Makefile buildlink3.mk
   	pkgsrc/security/libpreludedb-sqlite3: Makefile
   	pkgsrc/security/lxqt-openssh-askpass: Makefile
   	pkgsrc/security/lxqt-policykit: Makefile
   	pkgsrc/security/lxqt-sudo: Makefile
   	pkgsrc/security/oath-toolkit: Makefile
   	pkgsrc/security/opendnssec: Makefile
   	pkgsrc/security/opendnssec2: Makefile
   	pkgsrc/security/opensc: Makefile
   	pkgsrc/security/pam-saml: Makefile
   	pkgsrc/security/pinentry-qt5: Makefile
   	pkgsrc/security/policykit: Makefile
   	pkgsrc/security/polkit: Makefile
   	pkgsrc/security/polkit-qt5: Makefile buildlink3.mk
   	pkgsrc/security/prelude-manager: Makefile
   	pkgsrc/security/py-lasso: Makefile
   	pkgsrc/security/py-xmlsec: Makefile
   	pkgsrc/security/qca2-qt5: Makefile buildlink3.mk
   	pkgsrc/security/qca2-qt5-gnupg: Makefile
   	pkgsrc/security/qca2-qt5-ossl: Makefile
   	pkgsrc/security/qgpgme: Makefile buildlink3.mk
   	pkgsrc/security/qore-xmlsec-module: Makefile
   	pkgsrc/security/qt5-qtkeychain: Makefile
   	pkgsrc/security/seahorse: Makefile
   	pkgsrc/security/softhsm: Makefile buildlink3.mk
   	pkgsrc/security/softhsm2: Makefile buildlink3.mk
   	pkgsrc/security/tor-browser: Makefile
   	pkgsrc/security/xca: Makefile
   	pkgsrc/security/xmlsec1: Makefile buildlink3.mk
   	pkgsrc/sysutils/augeas: Makefile buildlink3.mk
   	pkgsrc/sysutils/bacula: Makefile
   	pkgsrc/sysutils/bacula-qt5-console: Makefile
   	pkgsrc/sysutils/bacula-tray-monitor-qt5: Makefile
   	pkgsrc/sysutils/baloo: Makefile
   	pkgsrc/sysutils/baloo-widgets: Makefile buildlink3.mk
   	pkgsrc/sysutils/baloo5: Makefile buildlink3.mk
   	pkgsrc/sysutils/bareos: Makefile
   	pkgsrc/sysutils/brasero: Makefile
   	pkgsrc/sysutils/burn: Makefile
   	pkgsrc/sysutils/caja: Makefile
   	pkgsrc/sysutils/caja-extensions: Makefile
   	pkgsrc/sysutils/cfengine3: Makefile
   	pkgsrc/sysutils/collectd-curl: Makefile
   	pkgsrc/sysutils/collectd-mongodb: Makefile
   	pkgsrc/sysutils/collectd-rrdtool: Makefile
   	pkgsrc/sysutils/collectd-virt: Makefile
   	pkgsrc/sysutils/conky: Makefile
   	pkgsrc/sysutils/dbus-sharp: Makefile buildlink3.mk
   	pkgsrc/sysutils/dbus-sharp-glib: Makefile buildlink3.mk
   	pkgsrc/sysutils/dolphin: Makefile buildlink3.mk
   	pkgsrc/sysutils/facette: Makefile
   	pkgsrc/sysutils/filelight: Makefile
   	pkgsrc/sysutils/gcdmaster: Makefile
   	pkgsrc/sysutils/gdmap: Makefile
   	pkgsrc/sysutils/gfm: Makefile
   	pkgsrc/sysutils/gnome-characters: Makefile
   	pkgsrc/sysutils/gnome-control-center: Makefile
   	pkgsrc/sysutils/gnome-nds-thumbnailer: Makefile
   	pkgsrc/sysutils/gnome-settings-daemon: Makefile
   	pkgsrc/sysutils/gnome-tracker: Makefile buildlink3.mk
   	pkgsrc/sysutils/gnome-tracker-miners: Makefile
   	pkgsrc/sysutils/gnome-vfs: Makefile buildlink3.mk
   	pkgsrc/sysutils/gnome-vfsmm: Makefile buildlink3.mk
   	pkgsrc/sysutils/gst-plugins0.10-gnomevfs: Makefile
   	pkgsrc/sysutils/gvfs: Makefile
   	pkgsrc/sysutils/gworkspace: Makefile
   	pkgsrc/sysutils/hivex: Makefile
   	pkgsrc/sysutils/k3b: Makefile
   	pkgsrc/sysutils/kcron: Makefile
   	pkgsrc/sysutils/kdbusaddons: Makefile buildlink3.mk
   	pkgsrc/sysutils/kdf: Makefile
   	pkgsrc/sysutils/kfilemetadata: Makefile
   	pkgsrc/sysutils/kfilemetadata5: Makefile
   	pkgsrc/sysutils/kfloppy: Makefile
   	pkgsrc/sysutils/krusader: Makefile
   	pkgsrc/sysutils/ksystemlog: Makefile
   	pkgsrc/sysutils/kuser: Makefile
   	pkgsrc/sysutils/libbaloo4: Makefile
   	pkgsrc/sysutils/libdevkit-gobject: Makefile
   	pkgsrc/sysutils/lnav: Makefile
   	pkgsrc/sysutils/lxqt-powermanagement: Makefile
   	pkgsrc/sysutils/mate-system-monitor: Makefile
   	pkgsrc/sysutils/nautilus: Makefile
   	pkgsrc/sysutils/ndesk-dbus: Makefile
   	pkgsrc/sysutils/ndesk-dbus-glib: Makefile buildlink3.mk
   	pkgsrc/sysutils/open-vm-tools: Makefile
   	pkgsrc/sysutils/openxenmanager: Makefile
   	pkgsrc/sysutils/p5-Config-Augeas: Makefile
   	pkgsrc/sysutils/p5-Gnome2-VFS: Makefile buildlink3.mk
   	pkgsrc/sysutils/pcmanfm-qt: Makefile
   	pkgsrc/sysutils/py-augeas: Makefile
   	pkgsrc/sysutils/py-notify-python: Makefile buildlink3.mk
   	pkgsrc/sysutils/qdirstat: Makefile
   	pkgsrc/sysutils/rox: Makefile
   	pkgsrc/sysutils/screentest: Makefile
   	pkgsrc/sysutils/solid: Makefile buildlink3.mk
   	pkgsrc/sysutils/strigi: Makefile buildlink3.mk
   	pkgsrc/sysutils/syslog-ng-mongodb: Makefile
   	pkgsrc/sysutils/tarsnap-gui: Makefile
   	pkgsrc/sysutils/vcdimager: Makefile buildlink3.mk
   	pkgsrc/sysutils/virt-manager: Makefile
   	pkgsrc/sysutils/virt-viewer: Makefile
   	pkgsrc/sysutils/xfce4-gvfs-mount-plugin: Makefile
   	pkgsrc/sysutils/xfce4-quicklauncher-plugin: Makefile
   	pkgsrc/sysutils/xfce4-thunar-vcs: Makefile
   	pkgsrc/sysutils/xfce4-xkb-plugin: Makefile
   	pkgsrc/sysutils/zabbix: Makefile
   	pkgsrc/sysutils/zabbix50-agent: Makefile
   	pkgsrc/sysutils/zabbix50-proxy: Makefile
   	pkgsrc/sysutils/zabbix50-server: Makefile
   	pkgsrc/textproc/OdfConverter: Makefile
   	pkgsrc/textproc/R-stringi: Makefile
   	pkgsrc/textproc/R-xml2: Makefile
   	pkgsrc/textproc/asciidoc: Makefile
   	pkgsrc/textproc/bat: Makefile
   	pkgsrc/textproc/csharp-xapian: Makefile
   	pkgsrc/textproc/dikt: Makefile
   	pkgsrc/textproc/dwdiff: Makefile
   	pkgsrc/textproc/ebook-tools: Makefile buildlink3.mk
   	pkgsrc/textproc/gdome2: Makefile buildlink3.mk
   	pkgsrc/textproc/gnome-doc-utils: Makefile
   	pkgsrc/textproc/gtk-doc: Makefile
   	pkgsrc/textproc/hfstospell: Makefile buildlink3.mk
   	pkgsrc/textproc/highlight: Makefile
   	pkgsrc/textproc/icu: buildlink3.mk
   	pkgsrc/textproc/kcodecs: Makefile buildlink3.mk
   	pkgsrc/textproc/kcompletion: Makefile buildlink3.mk
   	pkgsrc/textproc/kpimtextedit: Makefile buildlink3.mk
   	pkgsrc/textproc/libcroco: Makefile buildlink3.mk
   	pkgsrc/textproc/liblrdf: Makefile buildlink3.mk
   	pkgsrc/textproc/libplist: Makefile buildlink3.mk
   	pkgsrc/textproc/libxml++: Makefile buildlink3.mk
   	pkgsrc/textproc/libxml2: Makefile buildlink3.mk
   	pkgsrc/textproc/libxslt: Makefile buildlink3.mk
   	pkgsrc/textproc/ots: Makefile
   	pkgsrc/textproc/p5-Alien-Libxml2: Makefile
   	pkgsrc/textproc/p5-XML-LibXML: Makefile
   	pkgsrc/textproc/p5-XML-LibXSLT: Makefile
   	pkgsrc/textproc/php-intl: Makefile
   	pkgsrc/textproc/php-wddx: Makefile
   	pkgsrc/textproc/php-xsl: Makefile
   	pkgsrc/textproc/po4a: Makefile
   	pkgsrc/textproc/py-ICU: Makefile
   	pkgsrc/textproc/py-html5-parser: Makefile
   	pkgsrc/textproc/py-libxml2: Makefile
   	pkgsrc/textproc/py-libxslt: Makefile
   	pkgsrc/textproc/py-lxml: Makefile
   	pkgsrc/textproc/qore-xml-module: Makefile
   	pkgsrc/textproc/raptor: Makefile buildlink3.mk
   	pkgsrc/textproc/raptor2: Makefile buildlink3.mk
   	pkgsrc/textproc/rarian: Makefile
   	pkgsrc/textproc/rasqal: Makefile buildlink3.mk
   	pkgsrc/textproc/redland: Makefile buildlink3.mk
   	pkgsrc/textproc/ruby-libxml: Makefile
   	pkgsrc/textproc/ruby-nokogiri: Makefile
   	pkgsrc/textproc/ruby-xslt: Makefile
   	pkgsrc/textproc/sonnet: Makefile buildlink3.mk
   	pkgsrc/textproc/soprano: Makefile
   	pkgsrc/textproc/split-thai: Makefile
   	pkgsrc/textproc/sublib: Makefile buildlink3.mk
   	pkgsrc/textproc/syntax-highlighting: Makefile buildlink3.mk
   	pkgsrc/textproc/upmendex: Makefile
   	pkgsrc/textproc/xml2doc: Makefile
   	pkgsrc/textproc/xmlstarlet: Makefile
   	pkgsrc/textproc/xmlto: Makefile
   	pkgsrc/textproc/yelp-tools: Makefile
   	pkgsrc/time/fet: Makefile
   	pkgsrc/time/gchore: Makefile
   	pkgsrc/time/gnome-calendar: Makefile
   	pkgsrc/time/kcalendarcore: Makefile buildlink3.mk
   	pkgsrc/time/kcalutils: Makefile buildlink3.mk
   	pkgsrc/time/kholidays: Makefile buildlink3.mk
   	pkgsrc/time/ktimer: Makefile
   	pkgsrc/time/libical: Makefile buildlink3.mk
   	pkgsrc/time/ntpsec: Makefile
   	pkgsrc/time/rsibreak: Makefile
   	pkgsrc/time/xfce4-orage: Makefile
   	pkgsrc/wm/ccsm: Makefile
   	pkgsrc/wm/compiz: Makefile buildlink3.mk
   	pkgsrc/wm/compiz-fusion-plugins-extra: Makefile
   	pkgsrc/wm/compiz-fusion-plugins-main: Makefile buildlink3.mk
   	pkgsrc/wm/e16menuedit2: Makefile
   	pkgsrc/wm/fvwm: Makefile
   	pkgsrc/wm/fvwm3: Makefile
   	pkgsrc/wm/jwm: Makefile
   	pkgsrc/wm/obconf: Makefile
   	pkgsrc/wm/obconf-qt: Makefile
   	pkgsrc/wm/openbox: Makefile buildlink3.mk
   	pkgsrc/wm/wbar: Makefile
   	pkgsrc/www/SOGo: Makefile
   	pkgsrc/www/SOGo4: Makefile
   	pkgsrc/www/ap-auth-mellon: Makefile
   	pkgsrc/www/ap-authnz-crowd: Makefile
   	pkgsrc/www/ap-mono: Makefile
   	pkgsrc/www/ap-php: Makefile
   	pkgsrc/www/ap2-auth-mellon: Makefile
   	pkgsrc/www/ap2-subversion: Makefile
   	pkgsrc/www/apache24: Makefile
   	pkgsrc/www/badwolf: Makefile
   	pkgsrc/www/bkedit: Makefile
   	pkgsrc/www/bluefish: Makefile
   	pkgsrc/www/c-icap-modules: Makefile
   	pkgsrc/www/cppcms: Makefile
   	pkgsrc/www/deforaos-surfer: Makefile
   	pkgsrc/www/epiphany: Makefile
   	pkgsrc/www/firefox: Makefile
   	pkgsrc/www/firefox52: Makefile
   	pkgsrc/www/firefox68: Makefile
   	pkgsrc/www/firefox78: Makefile
   	pkgsrc/www/gitea: Makefile
   	pkgsrc/www/kannel: Makefile
   	pkgsrc/www/kdewebkit: Makefile buildlink3.mk
   	pkgsrc/www/khtml: Makefile buildlink3.mk
   	pkgsrc/www/kimagemapeditor: Makefile
   	pkgsrc/www/kjs: Makefile buildlink3.mk
   	pkgsrc/www/kjsembed: Makefile buildlink3.mk
   	pkgsrc/www/lariza: Makefile
   	pkgsrc/www/libgtkhtml: Makefile buildlink3.mk
   	pkgsrc/www/libmediawiki: Makefile buildlink3.mk
   	pkgsrc/www/librest07: Makefile buildlink3.mk
   	pkgsrc/www/liferea: Makefile
   	pkgsrc/www/lighttpd: Makefile
   	pkgsrc/www/links-gui: Makefile
   	pkgsrc/www/luakit: Makefile
   	pkgsrc/www/midori: Makefile
   	pkgsrc/www/mono-xsp: Makefile buildlink3.mk
   	pkgsrc/www/nghttp2: Makefile
   	pkgsrc/www/nghttp2-tools: Makefile
   	pkgsrc/www/nginx: Makefile
   	pkgsrc/www/otter-browser: Makefile
   	pkgsrc/www/php-fpm: Makefile
   	pkgsrc/www/php-http3: Makefile
   	pkgsrc/www/phraseanet-indexer: Makefile
   	pkgsrc/www/qutebrowser: Makefile
   	pkgsrc/www/rekonq: Makefile
   	pkgsrc/www/seamonkey: Makefile
   	pkgsrc/www/sitecopy: Makefile
   	pkgsrc/www/spdylay: Makefile buildlink3.mk
   	pkgsrc/www/swish-e: Makefile
   	pkgsrc/www/syndication: Makefile buildlink3.mk
   	pkgsrc/www/uhttpmock: Makefile buildlink3.mk
   	pkgsrc/www/vimb: Makefile
   	pkgsrc/www/webkit-gtk: Makefile buildlink3.mk
   	pkgsrc/www/webkit24-gtk: Makefile buildlink3.mk
   	pkgsrc/www/webkit24-gtk3: Makefile buildlink3.mk
   	pkgsrc/x11/avant-window-navigator: Makefile
   	pkgsrc/x11/caribou: Makefile
   	pkgsrc/x11/clisp-gtk2: Makefile
   	pkgsrc/x11/deforaos-integration: Makefile
   	pkgsrc/x11/devilspie: Makefile
   	pkgsrc/x11/eekboard: Makefile buildlink3.mk
   	pkgsrc/x11/frameworkintegration: Makefile buildlink3.mk
   	pkgsrc/x11/gdm: Makefile
   	pkgsrc/x11/gnome-desktop: Makefile
   	pkgsrc/x11/gnome-session: Makefile
   	pkgsrc/x11/gnome-shell: Makefile
   	pkgsrc/x11/gnome-themes-extras: Makefile
   	pkgsrc/x11/gnustep-back: Makefile buildlink3.mk
   	pkgsrc/x11/gnustep-gui: Makefile buildlink3.mk
   	pkgsrc/x11/gnustep-preferences: Makefile
   	pkgsrc/x11/gtk-sharp: Makefile
   	pkgsrc/x11/gtk-sharp3: Makefile
   	pkgsrc/x11/gtkmm3: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview2: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview3: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceview4: Makefile buildlink3.mk
   	pkgsrc/x11/gtksourceviewmm: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities-stats: Makefile buildlink3.mk
   	pkgsrc/x11/kactivities5: Makefile buildlink3.mk
   	pkgsrc/x11/kconfigwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/kde-baseapps4: Makefile
   	pkgsrc/x11/kde-runtime4: Makefile buildlink3.mk
   	pkgsrc/x11/kde-workspace4: Makefile buildlink3.mk
   	pkgsrc/x11/kded: Makefile
   	pkgsrc/x11/kdelibs4: Makefile buildlink3.mk
   	pkgsrc/x11/kdelibs4support: Makefile buildlink3.mk
   	pkgsrc/x11/kdesignerplugin: Makefile
   	pkgsrc/x11/kglobalaccel: Makefile buildlink3.mk
   	pkgsrc/x11/kguiaddons: Makefile buildlink3.mk
   	pkgsrc/x11/kinit: Makefile
   	pkgsrc/x11/kirigami2: Makefile buildlink3.mk
   	pkgsrc/x11/kitemviews: Makefile buildlink3.mk
   	pkgsrc/x11/kjobwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/konsole: Makefile
   	pkgsrc/x11/ktextwidgets: Makefile buildlink3.mk
   	pkgsrc/x11/kwidgetsaddons: Makefile buildlink3.mk
   	pkgsrc/x11/kwindowsystem: Makefile buildlink3.mk
   	pkgsrc/x11/kxmlgui: Makefile buildlink3.mk
   	pkgsrc/x11/libdesktop-agnostic: Makefile buildlink3.mk
   	pkgsrc/x11/libfm-qt: Makefile buildlink3.mk
   	pkgsrc/x11/libgnomekbd: Makefile buildlink3.mk
   	pkgsrc/x11/libkactivities4: Makefile buildlink3.mk
   	pkgsrc/x11/libkscreen: Makefile buildlink3.mk
   	pkgsrc/x11/liblxqt: Makefile buildlink3.mk
   	pkgsrc/x11/libmatekbd: Makefile buildlink3.mk
   	pkgsrc/x11/libqtxdg: Makefile buildlink3.mk
   	pkgsrc/x11/libxfce4gui: Makefile buildlink3.mk
   	pkgsrc/x11/libxkbcommon: Makefile
   	pkgsrc/x11/libxklavier: Makefile buildlink3.mk
   	pkgsrc/x11/lxqt-about: Makefile
   	pkgsrc/x11/lxqt-admin: Makefile
   	pkgsrc/x11/lxqt-config: Makefile
   	pkgsrc/x11/lxqt-globalkeys: Makefile buildlink3.mk
   	pkgsrc/x11/lxqt-notificationd: Makefile
   	pkgsrc/x11/lxqt-panel: Makefile
   	pkgsrc/x11/lxqt-qtplugin: Makefile
   	pkgsrc/x11/lxqt-runner: Makefile
   	pkgsrc/x11/lxqt-session: Makefile
   	pkgsrc/x11/maim: Makefile
   	pkgsrc/x11/mate-applets: Makefile
   	pkgsrc/x11/mate-control-center: Makefile buildlink3.mk
   	pkgsrc/x11/mate-panel: Makefile
   	pkgsrc/x11/mate-screensaver: Makefile
   	pkgsrc/x11/mate-settings-daemon: Makefile buildlink3.mk
   	pkgsrc/x11/mlterm: Makefile
   	pkgsrc/x11/ocaml-lablgtk: Makefile buildlink3.mk
   	pkgsrc/x11/ocaml-lablgtk3: Makefile buildlink3.mk
   	pkgsrc/x11/plasma-framework: Makefile buildlink3.mk
   	pkgsrc/x11/py-gnome2: Makefile buildlink3.mk
   	pkgsrc/x11/py-gnome2-extras: Makefile buildlink3.mk
   	pkgsrc/x11/py-gtk2: Makefile buildlink3.mk
   	pkgsrc/x11/py-gtksourceview: Makefile
   	pkgsrc/x11/py-keybinder: Makefile buildlink3.mk
   	pkgsrc/x11/py-kiwi: Makefile
   	pkgsrc/x11/py-qt5: Makefile
   	pkgsrc/x11/py-qt5-qscintilla: Makefile buildlink3.mk
   	pkgsrc/x11/py-qwt-qt5: Makefile
   	pkgsrc/x11/py-vte: Makefile
   	pkgsrc/x11/qqc2-desktop-style: Makefile
   	pkgsrc/x11/qt4-sqlite3: Makefile
   	pkgsrc/x11/qt5-mysql: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-odbc: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-psql: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qscintilla: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtbase: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtcharts: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtconnectivity: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtdeclarative: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtdoc: Makefile
   	pkgsrc/x11/qt5-qtgraphicaleffects: Makefile
   	pkgsrc/x11/qt5-qtimageformats: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtlocation: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtmacextras: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtmultimedia: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtnetworkauth: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtquickcontrols: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtquickcontrols2: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtscript: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtscxml: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtsensors: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtserialport: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtspeech: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtsvg: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qttools: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qttranslations: Makefile
   	pkgsrc/x11/qt5-qtvirtualkeyboard: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwayland: Makefile
   	pkgsrc/x11/qt5-qtwebchannel: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwebkit: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtwebsockets: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtx11extras: Makefile buildlink3.mk
   	pkgsrc/x11/qt5-qtxmlpatterns: Makefile buildlink3.mk
   	pkgsrc/x11/qterminal: Makefile
   	pkgsrc/x11/qtermwidget: Makefile
   	pkgsrc/x11/qwt6-qt5: Makefile buildlink3.mk
   	pkgsrc/x11/rofi: Makefile
   	pkgsrc/x11/rox-session: Makefile
   	pkgsrc/x11/ruby-gtksourceview2: Makefile
   	pkgsrc/x11/ruby-gtksourceview3: Makefile
   	pkgsrc/x11/slop: Makefile
   	pkgsrc/x11/tint2: Makefile
   	pkgsrc/x11/vte3: Makefile
   	pkgsrc/x11/wxGTK28: Makefile
   	pkgsrc/x11/xcb-proto: Makefile
   	pkgsrc/x11/xfce4-desktop: Makefile
   	pkgsrc/x11/xfce4-notes-plugin: Makefile
   	pkgsrc/x11/xfce4-screenshooter: Makefile
   	pkgsrc/x11/xfce4-session: Makefile
   	pkgsrc/x11/xfce4-settings: Makefile
   	pkgsrc/x11/xfce4-tumbler: Makefile
   	pkgsrc/x11/xfce4-wmdock-plugin: Makefile
   	pkgsrc/x11/xlockmore: Makefile
   	pkgsrc/x11/xpad: Makefile
   	pkgsrc/x11/xscreensaver: Makefile buildlink3.mk
   	pkgsrc/x11/xscreensaver-demo: Makefile
   	pkgsrc/x11/xsnow: Makefile
   	pkgsrc/x11/xvidcap: Makefile

   Log Message:
   revbump for textproc/icu

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Thu Apr 29 05:54:13 UTC 2021

   Modified Files:
   	pkgsrc/net/bind911: Makefile distinfo

   Log Message:
   net/bind911: update to 9.11.31

   Security release.

   	--- 9.11.31 released ---

   5621.	[bug]		Due to a backporting mistake in change 5609, named
   			binaries built against a Kerberos/GSSAPI library whose
   			header files did not define the GSS_SPNEGO_MECHANISM
   			preprocessor macro were not able to start if their
   			configuration included the "tkey-gssapi-credential"
   			option. This has been fixed. [GL #2634]

   	--- 9.11.30 released ---

   5617.	[security]	A specially crafted GSS-TSIG query could cause a buffer
   			overflow in the ISC implementation of SPNEGO.
   			(CVE-2021-25216) [GL #2604]

   5616.	[security]	named crashed when a DNAME record placed in the ANSWER
   			section during DNAME chasing turned out to be the final
   			answer to a client query. (CVE-2021-25215) [GL #2540]

   5615.	[security]	Insufficient IXFR checks could result in named serving a
   			zone without an SOA record at the apex, leading to a
   			RUNTIME_CHECK assertion failure when the zone was
   			subsequently refreshed. This has been fixed by adding an
   			owner name check for all SOA records which are included
   			in a zone transfer. (CVE-2021-25214) [GL #2467]

   5614.	[bug]		Ensure all resources are properly cleaned up when a call
   			to gss_accept_sec_context() fails. [GL #2620]

   5609.	[func]		The ISC implementation of SPNEGO was removed from BIND 9
   			source code. It was no longer necessary as all major
   			contemporary Kerberos/GSSAPI libraries include support
   			for SPNEGO. [GL #2607]
2021-04-30 14:59:17 +00:00
bsiegert 272107e762 Pullup ticket #6452 - requested by nia
chat/irssi-xmpp: build fix

Revisions pulled up:
- chat/irssi-xmpp/Makefile                                      1.19
- chat/irssi-xmpp/distinfo                                      1.23

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Thu Apr 29 07:55:07 UTC 2021

   Modified Files:
   	pkgsrc/chat/irssi-xmpp: Makefile distinfo

   Log Message:
   irssi-xmpp: fix fetch

   the original download site now redirects to an autogenerated github
   tag tarball, which means the checksums no longer match.

   poked by wiz.
2021-04-30 14:45:29 +00:00
bsiegert 323ed21199 Pullup ticket #6451 2021-04-27 14:36:18 +00:00
bsiegert fb87ecc87b Pullup ticket #6451 - requested by maya
net/GeoIP: NetBSD build fix

Revisions pulled up:
- net/GeoIP/Makefile                                            1.33

---
   Module Name:	pkgsrc
   Committed By:	maya
   Date:		Mon Apr 19 07:22:30 UTC 2021

   Modified Files:
   	pkgsrc/net/GeoIP: Makefile

   Log Message:
   GeoIP: force-fail gethostbyname_r configure check.

   NetBSD has this not-like-linux libc symbol and tries to hide it, but not
   well enough that autoconf fails to find it.

   Bump PKGREVISION for binary change.

   >From Stefan Schaeckeler in PR pkg/56116
2021-04-27 14:35:55 +00:00
bsiegert 298d624641 Pullup tickets up to #6450 2021-04-25 08:15:21 +00:00
bsiegert 491d948b12 Pullup ticket #6448 - requested by nia
www/firefox78-l10n: dependent update

Revisions pulled up:
- www/firefox78-l10n/Makefile                                   1.12
- www/firefox78-l10n/distinfo                                   1.12

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Mon Apr 19 20:07:41 UTC 2021

   Modified Files:
   	pkgsrc/www/firefox78-l10n: Makefile distinfo

   Log Message:
   firefox78-l10n: sync with firefox78
2021-04-25 08:15:05 +00:00
bsiegert aceb956acd Pullup ticket #6447 - requested by nia
www/firefox78: security fix

Revisions pulled up:
- www/firefox78/Makefile                                        1.25
- www/firefox78/distinfo                                        1.15

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Mon Apr 19 20:01:06 UTC 2021

   Modified Files:
   	pkgsrc/www/firefox78: Makefile distinfo

   Log Message:
   firefox78: update to 78.10.0

   security fixes:
   https://www.mozilla.org/en-US/security/advisories/mfsa2021-15/
2021-04-25 08:05:09 +00:00
bsiegert 847d34a0d2 Pullup ticket #6450 - requested by nia
chat/irssi: security fix

Revisions pulled up:
- chat/irssi-icb/Makefile                                       1.47
- chat/irssi-icb/distinfo                                       1.39
- chat/irssi-xmpp/Makefile                                      1.18
- chat/irssi-xmpp/distinfo                                      1.22
- chat/irssi/Makefile                                           1.101
- chat/irssi/Makefile.common                                    1.33
- chat/irssi/distinfo                                           1.53
- chat/irssi/patches/patch-src_fe-text_term-terminfo.c          deleted
- chat/irssi/patches/patch-src_fe-text_terminfo-core.c          1.1

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sat Apr 24 08:32:00 UTC 2021

   Modified Files:
   	pkgsrc/chat/irssi: Makefile Makefile.common distinfo
   	pkgsrc/chat/irssi-icb: Makefile distinfo
   	pkgsrc/chat/irssi-xmpp: Makefile distinfo
   Added Files:
   	pkgsrc/chat/irssi/patches: patch-src_fe-text_terminfo-core.c
   Removed Files:
   	pkgsrc/chat/irssi/patches: patch-src_fe-text_term-terminfo.c

   Log Message:
   irssi: update to 1.2.3

   v1.2.3 2021-04-11 The Irssi team <staff@irssi.org>
   	- Fix the compilation of utf8proc (#1021)
   	- Fix wrong call to free. By Zero King (#1076)
   	- Fix a colour reset in true colour themes when encountering
             mIRC colours (#1059)
   	- Fix memory leak on malformed CAP requests (#1120)
   	- Fix an erroneous free of SASL data. Credit to Oss-Fuzz (#1128,
   	  #1130)
   	- Re-set the TLS flag when reconnecting (#1027, #1134)
   	- Fix the scrollback getting stuck after /clear (#1115, #1136)
   	- Fix the input of Ctrl+C as the first character (#1153,  #1154)
   	- Fix crash on quit during unloading of modules on certain
             platforms (#1167)
   	- Fix Irssi freezing input after Ctrl+Space on GLib >2.62 (#1180,
   	  #1183)
   	- Fix layout of IDCHANs. By Lauri Tirkkonen (#1197)
   	- Fix crash when server got reconnected before it was properly
             connected (#1210, #1211)
   	- Fix multiple identical active caps (#1249)
   	- Minor help corrections (#1156, #1213, #1214, #1255)
   	- Remove erroneous colour in the colorless theme. Reported and
             fixed by Nutchanon Wetchasit (#1220, #1221)
   	- Fix invalid bounds calculation when editing the text
             entry. Found and fixed by Sergey Valentey (#1269)
   	- Fix passing of negative size in buffer writes. Found and
             fixed by Sergey Valentey (#1270)
   	- Fix Irssi freezing on slow hardware and fast DCC transfers (#159,
   	  #1271)
   	- Fix compilation on Solaris (#1291)
   	- Fix null pointer dereference when receiving broken JOIN
             record. Credit to Oss-Fuzz (#1292)
   	- Fix crash on /connect to some sockets (#1239, #1298)
   	- Fix Irssi rendering on Apple ARM. By Misty De Méo (#1267,
   	  #1268, #1290)
   	- Fix crash on /lastlog with broken lines (#1281, #1299)
   	- Fix memory leak when receiving bogus SASL authentication
             data. Found and fixed by Sergey Valentey (#1293)
2021-04-24 15:58:34 +00:00
bsiegert e6283711e5 Pullup ticket #6449 - requested by tsutsui
devel/glib2: fix for PR pkg/56114

(via patch)
2021-04-24 13:09:41 +00:00
bsiegert 1fb36ed382 Pullup ticket #6446 - requested by gutteridge
lang/rust: NetBSD/i386 build fix

Revisions pulled up:
- lang/rust/Makefile                                            1.228-1.229

---
   Module Name:    pkgsrc
   Committed By:   gutteridge
   Date:           Thu Apr 15 00:55:45 UTC 2021

   Modified Files:
           pkgsrc/lang/rust: Makefile

   Log Message:
   rust: restore NetBSD i386 bootstrap workaround

   The current i386 bootstrap is built for NetBSD 8.x, and so is linked
   against libstdc++.so.8. NetBSD 9.x still requires compat80 for it to
   run.

   This isn't a complete workaround, as builds still fail in a sandboxed
   environment that doesn't have compat80 installed outside it. Dealing
   with that would require another workaround somewhat like the one used
   for ghc*, but a little different.

---
   Module Name:    pkgsrc
   Committed By:   gutteridge
   Date:           Fri Apr 16 01:14:37 UTC 2021

   Modified Files:
           pkgsrc/lang/rust: Makefile

   Log Message:
   rust: the i386 bootstrap workaround is really a BUILD_DEPENDS
2021-04-24 12:48:46 +00:00
bsiegert fb10e6e118 Pullup ticket #6443 (second part) - requested by taca
lang/ruby: build fix

Revisions pulled up:
- lang/ruby/rubyversion.mk                                      1.231

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Mon Apr 12 14:39:28 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: rubyversion.mk

   Log Message:
   lang/ruby/rubyversion.mk: require quote

   Require proper quote for previous addition to MAKEFLAGS.
2021-04-24 12:46:53 +00:00
bsiegert 7f7920d18b Pullup tickets up to #6445 2021-04-15 07:53:40 +00:00
bsiegert cc402aa67a Pullup ticket #6445 - requested by taca
lang/ruby30-base: security fix

Revisions pulled up:
- lang/ruby/Makefile                                            1.69
- lang/ruby/rubyversion.mk                                      1.230
- lang/ruby30-base/ALTERNATIVES                                 1.2
- lang/ruby30-base/Makefile                                     1.2
- lang/ruby30-base/PLIST                                        1.2
- lang/ruby30-base/distinfo                                     1.2

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 12:36:28 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: rubyversion.mk
   	pkgsrc/lang/ruby30-base: ALTERNATIVES Makefile PLIST distinfo

   Log Message:
   lang/ruby30-base: update to 3.0.1

   Ruby 3.0.1 Released (2021-04-05)

   Ruby 3.0.1 has been released.

   This release includes security fixes.  Please check the topics below
   for details.

   * CVE-2021-28965: XML round-trip vulnerability in REXML
   * CVE-2021-28966: Path traversal in Tempfile on Windows

   See the commit logs for details.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 12:43:17 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: Makefile

   Log Message:
   lang/ruby: reset PKGREVISION

   Reset PKGREVISION with updates of all ruby{26,27,30}.
2021-04-15 07:53:24 +00:00
bsiegert 583620b8b4 Pullup ticket #6444 - requested by taca
lang/ruby27-base: security fix, bugfix

Revisions pulled up:
- lang/ruby/rubyversion.mk                                      1.229
- lang/ruby27-base/ALTERNATIVES                                 1.2
- lang/ruby27-base/PLIST                                        1.4
- lang/ruby27-base/distinfo                                     1.4
- lang/ruby27-base/patches/patch-configure                      1.2
- lang/ruby27-base/patches/patch-lib_rubygems.rb                1.2

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 12:32:03 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: rubyversion.mk
   	pkgsrc/lang/ruby27-base: PLIST distinfo
   	pkgsrc/lang/ruby27-base/patches: patch-configure patch-lib_rubygems.rb

   Log Message:
   lang/ruby27-base: update to 2.7.3

   Ruby 2.7.3 Released (2021-04-05)

   This release includes security fixes.  Please check the topics below for
   details.

   * CVE-2021-28965: XML round-trip vulnerability in REXML
   * CVE-2021-28966: Path traversal in Tempfile on Windows

   See the commit logs for details.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 13:00:38 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby27-base: ALTERNATIVES

   Log Message:
   lang/ruby27-base: fix ALTERNATIVES file
2021-04-15 07:38:17 +00:00
bsiegert 6b22d53915 Pullup ticket #6443 - requested by taca
lang/ruby26-base: security fix, bugfix

Revisions pulled up:
- lang/ruby/rubyversion.mk                                      1.227-1.228
- lang/ruby26-base/ALTERNATIVES                                 1.2
- lang/ruby26-base/Makefile                                     1.13
- lang/ruby26-base/PLIST                                        1.5
- lang/ruby26-base/distinfo                                     1.10
- lang/ruby26-base/patches/patch-configure                      1.3
- lang/ruby26-base/patches/patch-lib_webrick_httprequest.rb     deleted

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 12:16:20 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: rubyversion.mk

   Log Message:
   lang/ruby/rubyversion.mk: pass RUBY_RAILS_ACCEPTED

   Pass RUBY_RAILS_ACCEPTED to MAKEFLAGS unless it isn't empty.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 12:28:38 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby: rubyversion.mk
   	pkgsrc/lang/ruby26-base: Makefile PLIST distinfo
   	pkgsrc/lang/ruby26-base/patches: patch-configure
   Removed Files:
   	pkgsrc/lang/ruby26-base/patches: patch-lib_webrick_httprequest.rb

   Log Message:
   lang/ruby26-base: update to 2.6.7

   Ruby 2.6.7 Released (2021-04-05)

   This release includes security fixes.  Please check the topics below for
   details.

   * CVE-2020-25613: Potential HTTP Request Smuggling Vulnerability in
     WEBrick
   * CVE-2021-28965: XML round-trip vulnerability in REXML

   See the commit logs for details.

   By this release, we end the normal maintenance phase of Ruby 2.6, and Ruby
   2.6 enters the security maintenance phase.  This means that we will no
   longer backport any bug fixes to Ruby 2.6 except security fixes.  The term
   of the security maintenance phase is scheduled for a year.  Ruby 2.6 reaches
   EOL and its official support ends by the end of the security maintenance
   phase.  Therefore, we recommend that you start to plan upgrade to Ruby 2.7
   or 3.0.

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 13:00:25 UTC 2021

   Modified Files:
   	pkgsrc/lang/ruby26-base: ALTERNATIVES

   Log Message:
   lang/ruby26-base: fix ALTERNATIVES file
2021-04-15 07:10:45 +00:00
bsiegert a79407e4e0 Pullup ticket #6442 - requested by taca
lang/ruby25-base: security fix

(via patch)

--
  Ruby 2.5.9 has been released.

  This release includes security fixes.  Please check the topics below
  for details.

  * CVE-2020-25613: Potential HTTP Request Smuggling Vulnerability in
    WEBrick
  * CVE-2021-28965: XML round-trip vulnerability in REXML

  See the commit logs for details.

  After this release, Ruby 2.5 reaches EOL.  In other words, this is the
  last release of Ruby 2.5 series.  We will not release Ruby 2.5.10 even
  if a security vulnerability is found.  We recommend all Ruby 2.5 users
  to upgrade to Ruby 3.0, 2.7 or 2.6 immediately.
--
2021-04-15 07:04:00 +00:00
bsiegert 2b1189d2af Pullup ticket #6441 - requested by taca
security/ruby-rex-exploitation: build fix

Revisions pulled up:
- security/ruby-rex-exploitation/Makefile                       1.9

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 00:10:55 UTC 2021

   Modified Files:
   	pkgsrc/security/ruby-rex-exploitation: Makefile

   Log Message:
   security/ruby-rex-exploitation: remove dependency to ruby-rexml

   Dro dependency to ruby-rexml since all ruby*-base contains ruby-rexml
   package.
2021-04-15 06:53:11 +00:00
bsiegert ec61d3dc3e Pullup ticket #6440 - requested by taca
textproc/ruby-rexml: build fix

Revisions pulled up:
- textproc/ruby-rexml/Makefile                                  1.13

---
   Module Name:	pkgsrc
   Committed By:	taca
   Date:		Sun Apr 11 00:08:40 UTC 2021

   Modified Files:
   	pkgsrc/textproc/ruby-rexml: Makefile

   Log Message:
   textproc/ruby-rexml: do not build on Ruby 3.0

   Do not build on Ruby 3.0 since it contains the same version of rexml
   gem and conflicts with this package.

   Noted by private e-mail from wiz@, thank you!
2021-04-15 06:51:09 +00:00
bsiegert 1d81f9cc5b Pullup tickets up to #6439 2021-04-10 08:54:14 +00:00
bsiegert 29ecb17319 Pullup ticket #6439 - requested by nia
emulators/qemu51: bugfix

Revisions pulled up:
- emulators/qemu51/Makefile                                     1.2

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Thu Apr  8 13:29:42 UTC 2021

   Modified Files:
   	pkgsrc/emulators/qemu51: Makefile

   Log Message:
   qemu51: correct path to OSS audio device
2021-04-10 08:43:28 +00:00
bsiegert fb05625092 Pullup ticket #6438 - requested by nia
emulators/qemu: bugfix

Revisions pulled up:
- emulators/qemu/Makefile                                       1.273

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Thu Apr  8 13:18:04 UTC 2021

   Modified Files:
   	pkgsrc/emulators/qemu: Makefile

   Log Message:
   qemu: correct path to OSS audio device
2021-04-10 08:43:22 +00:00
bsiegert 25b39dc7c3 Pullup ticket #6437 - requested by leot
net/youtube-dl: bugfixes

Revisions pulled up:
- net/youtube-dl/Makefile                                       1.237-1.239
- net/youtube-dl/PLIST                                          1.113
- net/youtube-dl/distinfo                                       1.217-1.219

---
   Module Name:    pkgsrc
   Committed By:   leot
   Date:           Wed Mar 31 18:26:58 UTC 2021

   Modified Files:
           pkgsrc/net/youtube-dl: Makefile distinfo

   Log Message:
   youtube-dl: Update to 20210331

   Changes:
   20210331
   --------
   Extractors
   * [vlive] Fix inkey request (#28589)
   * [francetvinfo] Improve video id extraction (#28584)
   + [instagram] Extract duration (#28469)
   * [instagram] Improve title extraction (#28469)
   + [sbs] Add support for ondemand watch URLs (#28566)
   * [youtube] Fix video's channel extraction (#28562)
   * [picarto] Fix live stream extraction (#28532)
   * [vimeo] Fix unlisted video extraction (#28414)
   * [youtube:tab] Fix playlist/community continuation items extraction (#28266)
   * [ard] Improve clip id extraction (#22724, #28528)

---
   Module Name:    pkgsrc
   Committed By:   leot
   Date:           Thu Apr  1 12:14:15 UTC 2021

   Modified Files:
           pkgsrc/net/youtube-dl: Makefile distinfo

   Log Message:
   youtube-dl: Update to 20210401

   Changes:
   20210401
   --------
   Extractors
   * [youtube] Setup CONSENT cookie when needed (#28604)
   * [vimeo] Fix password protected review extraction (#27591)
   * [youtube] Improve age-restricted video extraction (#28578)

---
   Module Name:    pkgsrc
   Committed By:   leot
   Date:           Wed Apr  7 13:21:01 UTC 2021

   Modified Files:
           pkgsrc/net/youtube-dl: Makefile PLIST distinfo

   Log Message:
   youtube-dl: Update to 20210407

   Changes:
   20210407
   --------
   Core
   * [extractor/common] Use compat_cookies_SimpleCookie for _get_cookies
   + [compat] Introduce compat_cookies_SimpleCookie
   * [extractor/common] Improve JSON-LD author extraction
   * [extractor/common] Fix _get_cookies on python 2 (#20673, #23256, #20326,
     #28640)

   Extractors
   * [youtube] Fix extraction of videos with restricted location (#28685)
   + [line] Add support for live.line.me (#17205, #28658)
   * [vimeo] Improve extraction (#28591)
   * [youku] Update ccode (#17852, #28447, #28460, #28648)
   * [youtube] Prefer direct entry metadata over entry metadata from playlist
     (#28619, #28636)
   * [screencastomatic] Fix extraction (#11976, #24489)
   + [palcomp3] Add support for palcomp3.com (#13120)
   + [arnes] Add support for video.arnes.si (#28483)
   + [youtube:tab] Add support for hashtags (#28308)
2021-04-10 08:41:02 +00:00
bsiegert 584296d0b9 Pullup ticket #6436 - requested by he
lang/rust: build fixes

Revisions pulled up:
- lang/rust/Makefile                                            1.221-1.227
- lang/rust/distinfo                                            1.128
- lang/rust/options.mk                                          1.12-1.14

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Tue Mar 30 09:50:14 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile options.mk

   Log Message:
   rust: normalize workarounds for cargo dependencies on NetBSD

   Havard would like all rusts to be built with rust-cargo-static,
   because this makes it easier to produce working bootstaps.

   In order to do this, we need to handle the OpenSSL and curl
   dependencies in older bootstrap kits properly.

   This means, for the remaining bootstraps that do not yet have
   cargo with static/vendored dependencies:

   - depend on base 8.0 openssl (compat80) on i386.
   - depend on pkgsrc curl on aarch64 and earmv7.
     the armv7 bootstrap is built for 9.0 so does not need compat80.
     the aarch64 bootstrap is built for 8.99.50 so does not need compat80.

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Wed Mar 31 16:45:08 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile options.mk

   Log Message:
   rust: Only enable rust-cargo-static when building bootstraps.

   The final compiler will be dynamically linked with OpenSSL and curl,
   but this is undesirable in the case of bootstraps where it might be
   built against a version incompatible with version the user has.

   Discussed with he@.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 08:36:05 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   Bump the rust binary bootstraps to 1.49 for the remaining NetBSD ports.
   The 1.49 cargo binary has a much reduced set of dynamic dependencies,
   increasing the probability that they'll run on the host.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 08:40:44 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: distinfo

   Log Message:
   Recompute checksums after the bootstrap version bump.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 08:51:20 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: options.mk

   Log Message:
   Change rust-cargo-static condition on NetBSD.
   Key off BUILD_TARGET instead of whether we're cross-building,
   as bootstrap kits *can* be built natively (yes, the former state
   was my suggestion, but on second thought this is more correct).

---
   Module Name:	pkgsrc
   Committed By:	nia
   Date:		Sun Apr  4 09:23:38 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   rust: Remove old NetBSD bootstrap workarounds

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 10:21:45 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   We need curl and openssl buildlinked if BUILD_TARGET is "build".
   This is because in that case we're not using the rust-internal
   copies of those libraries, governed by the rust-cargo-static option.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 10:21:45 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   We need curl and openssl buildlinked if BUILD_TARGET is "build".
   This is because in that case we're not using the rust-internal
   copies of those libraries, governed by the rust-cargo-static option.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 13:30:16 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   Undo previous, curl and openssl are already conditionally buildlinked
   in options.mk, nia@ pointed out.

---
   Module Name:	pkgsrc
   Committed By:	he
   Date:		Sun Apr  4 17:49:42 UTC 2021

   Modified Files:
   	pkgsrc/lang/rust: Makefile

   Log Message:
   Hopefully today's last mistake: undo my MAKE_JOBS_SAFE mistake.
2021-04-10 08:36:05 +00:00
spz 106ed67198 #6435 2021-04-04 13:24:42 +00:00
spz c4f17f54d2 Pullup ticket #6435 - requested by leot
www/curl: security update

Revisions pulled up:
- www/curl/Makefile                                             1.240
- www/curl/PLIST                                                1.85
- www/curl/distinfo                                             1.169

-------------------------------------------------------------------
   Module Name:    pkgsrc
   Committed By:   leot
   Date:           Wed Mar 31 09:52:31 UTC 2021

   Modified Files:
           pkgsrc/www/curl: Makefile PLIST distinfo

   Log Message:
   curl: Update to 7.76.0

   Changes:
   7.76.0
   ===
   This release includes the following changes:

    o cookies: Support multiple -b parameters
    o curl: add --fail-with-body
    o doh: add options to disable ssl verification
    o http: add support to read and store the referrer header
    o sasl: support SCRAM-SHA-1 and SCRAM-SHA-256 via libgsasl
    o vtls: initial implementation of rustls backend

   This release includes the following bugfixes:

    o CVE-2021-22876: strip credentials from the auto-referer header field
    o CVE-2021-22890: add 'isproxy' argument to Curl_ssl_get/addsessionid()
    o asyn-ares: use consistent resolve error message
    o BUG-BOUNTY: removed the cooperation mention
    o build: delete unused feature guards
    o build: fix --disable-dateparse
    o build: fix --disable-http-auth
    o build: remove all traces of USE_BLOCKING_SOCKETS
    o c-hyper: Remove superfluous pointer check
    o c-hyper: support automatic content-encoding
    o CI/azure: disable test 433 on azure-ubuntu
    o CI/azure: replace python-impacket with python3-impacket
    o ci: stop building on freebsd-12-1
    o cmake: fix import library name for non-MS compiler on Windows
    o cmake: use CMAKE_INSTALL_INCLUDEDIR indirection
    o cmake: support WinIDN
    o config: fix building SMB with configure using Win32 Crypto
    o config: fix detection of restricted Windows App environment
    o configure: fail if --with-quiche is used and quiche isn't found
    o configure: make AC_TRY_* into AC_*_IFELSE
    o configure: make hyper opt-in, and fail if missing
    o configure: only add OpenSSL paths if they are defined
    o configure: provide Largefile feature for curl-config
    o configure: remove use of deprecated macros
    o configure: s/AC_HELP_STRING/AS_HELP_STRING
    o cookies: Fix potential NULL pointer deref with PSL
    o curl: set CURLOPT_NEW_FILE_PERMS if requested
    o curl_easy_setopt.3: add curl_easy_option* functions to SEE ALSO
    o curl_multibyte: always return a heap-allocated copy of string
    o curl_multibyte: fall back to local code page stat/access on Windows
    o Curl_timeleft: check both timeouts during connect
    o curl_url_set.3: mention CURLU_PATH_AS_IS
    o CURLOPT_QUOTE.3: clarify that libcurl doesn't parse what's sent
    o docs/HTTP2: remove the outdated remark about multiplexing for the tool
    o docs/Makefile.inc: format to be update-friendly
    o docs: add CURLOPT_CURLU to 'See also' in curl_url_ functions
    o docs: add missing Arg tag to --stderr
    o docs: Add SSL backend names to CURL_SSL_BACKEND
    o docs: clarify timeouts for queued transfers in multi API
    o docs: Explain DOH transfers inherit some SSL settings
    o docs: fix FILE example url in --metalink documentation
    o docs: make gen.pl support *italic* and **bold**
    o doh: Fix sharing user's resolve list with DOH handles
    o doh: Inherit CURLOPT_STDERR from user's easy handle
    o dynbuf: bump the max HTTP request to 1MB
    o examples: Remove threaded-shared-conn.c due to bug
    o file: Support unicode urls on windows
    o ftp: add 'list_only' to the transfer state struct
    o ftp: add 'prefer_ascii' to the transfer state struct
    o FTP: allow SIZE to fail when doing (resumed) upload
    o ftp: avoid SIZE when asking for a TYPE A file
    o ftp: fix Codacy/cppcheck warning about null pointer arithmetic
    o ftp: fix memory leak in ftp_done
    o ftp: never set data->set.ftp_append outside setopt
    o gen.pl: quote "bare" minuses in the nroff curl.1
    o github: add torture-ftp for FTP-only torture testing
    o gnutls: assume nettle crypto support
    o gskit: correct the gskit_send() prototype
    o hostip: fix build with sync resolver
    o hostip: fix crash in sync resolver builds that use DOH
    o hsts: remove unused defines
    o http2: don't set KEEP_SEND when there's no more data to be sent
    o http2: fail if connection terminated without END_STREAM
    o http: cap body data amount during send speed limiting
    o http: do not add a referrer header with empty value
    o http: make 416 not fail with resume + CURLOPT_FAILONERRROR
    o http: remove superfluous NULL assign
    o http: strip default port from URL sent to proxy
    o http: use credentials from transfer, not connection
    o ldap: use correct memory free function
    o lib1536: check ptr against NULL before dereferencing it
    o lib1537: check ptr against NULL before dereferencing it
    o lib: remove 'conn->data' completely
    o libssh2: kdb_callback: get the right struct pointer
    o libssh2:ssh_connect: clear session pointer after free
    o memdebug: close debug logfile explicitly on exit
    o mingw: enable using strcasecmp()
    o multi: close the connection when h2=>h1 downgrading
    o multi: do once-per-transfer inits in before_perform in DID state
    o multi: rename the multi transfer states
    o multi: update pending list when removing handle
    o ngtcp2: adapt to the new recv_datagram callback
    o ngtcp2: clarify calculation precedence
    o ngtcp2: Fix build error due to change in ngtcp2_addr_init
    o ngtcp2: sync with recent API updates
    o openldap: avoid NULL pointer dereferences
    o openssl: adapt to v3's new const for a few API calls
    o openssl: ensure to check SSL_CTX_set_alpn_protos return values
    o openssl: remove get_ssl_version_txt in favor of SSL_get_version
    o openssl: set the transfer pointer for logging early
    o OS400: update for CURLOPT_AWS_SIGV4
    o parse_proxy: fix a memory leak in the OOM path
    o pathhelp.pm: fix use of pwd -L in Msys environment
    o projects: Update VS projects for OpenSSL 1.1.x
    o quiche: fix build error: use 'int' for port number
    o quiche: fix crash when failing to connect
    o retry-all-errors.d: Explain curl errors versus HTTP response errors
    o retry.d: Clarify transient 5xx HTTP response codes
    o runtests.pl: add %TESTNUMBER variable to make copying tests more convenient
    o runtests.pl: add a -P option to specify an external proxy
    o runtests.pl: kill processes locking test log files
    o setopt: error on CURLOPT_HTTP09_ALLOWED set true with Hyper
    o test1188: change error to check for: --fail HTTP status
    o test220/314: adjust to run with Hyper
    o test304: header CRLF cleanup to work with Hyper
    o test306: make it not run with Hyper
    o tests: disable .curlrc in more environments
    o tests: use %TESTNUMBER instead of fixed number
    o tftp: remove the 3600 second default timeout
    o time: enable 64-bit time_t in supported mingw environments
    o tool_help: add missing argument for --create-file-mode
    o tool_help: Increase space between option and description
    o tool_operate: bail if set CURLOPT_HTTP09_ALLOWED returns error
    o travis: add a rustls build
    o travis: bump wolfssl to 4.7.0
    o travis: only build wolfssl when needed
    o travis: split "torture" into a separate "events" build
    o travis: switch ngtcp2 build over to quictls
    o travis: use ubuntu nghttp2 package instead of build our own
    o url.c: use consistent error message for failed resolve
    o url: fix memory leak if OOM in the HSTS handling
    o url: fix possible use-after-free in default protocol
    o urldata: don't touch data->set.httpversion at run-time
    o urldata: fix build without HTTP and MQTT
    o urldata: make 'actions[]' use unsigned char instead of int
    o urldata: merge "struct DynamicStatic" into "struct UrlState"
    o urldata: remove the 'rtspversion' field
    o urldata: remove the _ORIG suffix from string names
    o version.d: Add missing features to the features list
    o wolfssl: don't store a NULL sessionid


   To generate a diff of this commit:
   cvs rdiff -u -r1.239 -r1.240 pkgsrc/www/curl/Makefile
   cvs rdiff -u -r1.84 -r1.85 pkgsrc/www/curl/PLIST
   cvs rdiff -u -r1.168 -r1.169 pkgsrc/www/curl/distinfo
2021-04-04 13:22:06 +00:00
wiz 24bdcaba1d doc: add CHANGES file for new branch 2021-03-29 20:28:08 +00:00
97 changed files with 1433 additions and 1058 deletions

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.8 2021/01/19 22:44:26 nia Exp $
# $NetBSD: Makefile,v 1.8.2.1 2021/06/10 08:52:01 bsiegert Exp $
DISTNAME= dino-0.2.0
DISTNAME= dino-0.2.1
CATEGORIES= chat
MASTER_SITES= ${MASTER_SITE_GITHUB:=dino/}
GITHUB_PROJECT= dino

View File

@ -1,7 +1,7 @@
$NetBSD: distinfo,v 1.2 2020/11/13 09:41:46 nia Exp $
$NetBSD: distinfo,v 1.2.4.1 2021/06/10 08:52:01 bsiegert Exp $
SHA1 (dino-0.2.0.tar.gz) = bc1f48d0d6f75011386ca4941f6bffc40960b45f
RMD160 (dino-0.2.0.tar.gz) = babe1f651a394f756aee57df77a6e7bd5744c139
SHA512 (dino-0.2.0.tar.gz) = 296576f91d45a4dd8c548a7ca5b47bcaf847f6ff0f8e5dbafaa4eb49a2d4f1ed7e2bbfac94f1b32e22f5ec61b23748ac76b12bb4ceb710889aff166953ca7a2e
Size (dino-0.2.0.tar.gz) = 514257 bytes
SHA1 (dino-0.2.1.tar.gz) = 467f001bd61cae671812d09a7cea5159a2b4d411
RMD160 (dino-0.2.1.tar.gz) = 1f91599d3341703eb3edd9a47d407707e7112405
SHA512 (dino-0.2.1.tar.gz) = b71497ec115945eadf7d33bb973f68465a20284aa75f37f1ae25fc30c1c423ce28cb10f7e9123c47f82e77e97170b8fa72c75389dacc3a2aa3d487a9c9610d49
Size (dino-0.2.1.tar.gz) = 514504 bytes
SHA1 (patch-main_CMakeLists.txt) = 8e6ddf182ba3b60d14d41b6dd902d473ae3b9ffe

View File

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.46 2020/05/31 15:10:11 rillig Exp $
# $NetBSD: Makefile,v 1.46.8.1 2021/04/24 15:58:34 bsiegert Exp $
#
DISTNAME= irssi-icb-0.15
PKGREVISION= 6
PKGREVISION= 7
CATEGORIES= chat
MASTER_SITES= https://github.com/downloads/jperkin/irssi-icb/
DISTFILES= ${DISTNAME}.tar.gz ${IRSSI_DISTFILE}

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.38 2019/08/31 10:04:26 nia Exp $
$NetBSD: distinfo,v 1.38.14.1 2021/04/24 15:58:34 bsiegert Exp $
SHA1 (irssi-1.2.2.tar.gz) = 1004f6adcd949c6ab76bff5abe210521c8af4fd7
RMD160 (irssi-1.2.2.tar.gz) = 49a8681a4a3495e441d8b516304477bdb4d9aa7c
SHA512 (irssi-1.2.2.tar.gz) = 708dd72685f89ba5da155b7276addcb3758a000f633c71a9bee88c84585f1b5f69872696c7d107699edd16cf964e0a046fc13fecc0384505c11258ec16ab3342
Size (irssi-1.2.2.tar.gz) = 1843879 bytes
SHA1 (irssi-1.2.3.tar.gz) = 1a7af14546cc1a7ada221dd9da82f58af58b5bbd
RMD160 (irssi-1.2.3.tar.gz) = 72a9014c158e7685c6a1e56156ed62728588f1ae
SHA512 (irssi-1.2.3.tar.gz) = 7e4c8dc2d8e3532f26775702254339ba92e276c82b5a7041756574096928e25f2614d04a1cfa091ba90bc3e5a0d552578b80bc89c3c87c6d48722139c2ae47ff
Size (irssi-1.2.3.tar.gz) = 1824077 bytes
SHA1 (irssi-icb-0.15.tar.gz) = c5a739960eb98e6686a94f6d4662cfab5a95d447
RMD160 (irssi-icb-0.15.tar.gz) = b947a341e1fc2f6d42bee3cb7b738bfdbb0a031d
SHA512 (irssi-icb-0.15.tar.gz) = 00af04d14c2c6b65eaf93f9859e6f9f51be4bc8b270c602f4f3b2cc722b148f35c29c7efb12432b063dd41095cf823f2ad329515b0298d0c541742199f3c5fa5

View File

@ -1,12 +1,17 @@
# $NetBSD: Makefile,v 1.17 2020/05/21 10:14:27 nia Exp $
# $NetBSD: Makefile,v 1.17.8.2 2021/04/30 14:45:29 bsiegert Exp $
#
DISTNAME= irssi-xmpp-0.54
PKGREVISION= 1
PKGREVISION= 3
CATEGORIES= chat
MASTER_SITES= https://cybione.org/~irssi-xmpp/files/
DISTFILES= ${DISTNAME}.tar.gz ${IRSSI_DISTFILE}
# XXX: remove when updating
DIST_SUBDIR= ${PKGNAME_NOREV}
SITES.${DISTNAME}.tar.gz=\
-https://github.com/cdidier/irssi-xmpp/archive/refs/tags/v${PKGVERSION_NOREV}.tar.gz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://cybione.org/~irssi-xmpp/
COMMENT= Irssi plugin to connect to the Jabber network

View File

@ -1,10 +1,10 @@
$NetBSD: distinfo,v 1.21 2019/09/15 13:58:27 nia Exp $
$NetBSD: distinfo,v 1.21.14.2 2021/04/30 14:45:29 bsiegert Exp $
SHA1 (irssi-1.2.2.tar.gz) = 1004f6adcd949c6ab76bff5abe210521c8af4fd7
RMD160 (irssi-1.2.2.tar.gz) = 49a8681a4a3495e441d8b516304477bdb4d9aa7c
SHA512 (irssi-1.2.2.tar.gz) = 708dd72685f89ba5da155b7276addcb3758a000f633c71a9bee88c84585f1b5f69872696c7d107699edd16cf964e0a046fc13fecc0384505c11258ec16ab3342
Size (irssi-1.2.2.tar.gz) = 1843879 bytes
SHA1 (irssi-xmpp-0.54.tar.gz) = 19f9e303545a7adbfeee806c78be2a6279f74b63
RMD160 (irssi-xmpp-0.54.tar.gz) = 1fdc4557c167134d3daacd495e9404ec82dc7755
SHA512 (irssi-xmpp-0.54.tar.gz) = 31ddd9e0147eec23d08b8bcbe242e831d612cb2d00f3b56776e9d0b87db9bd76d4bb147422cdf18c0567f0e0463ab828ab7a0ef80a2b35cfdc0a8be962b39f14
Size (irssi-xmpp-0.54.tar.gz) = 65618 bytes
SHA1 (irssi-xmpp-0.54/irssi-1.2.3.tar.gz) = 1a7af14546cc1a7ada221dd9da82f58af58b5bbd
RMD160 (irssi-xmpp-0.54/irssi-1.2.3.tar.gz) = 72a9014c158e7685c6a1e56156ed62728588f1ae
SHA512 (irssi-xmpp-0.54/irssi-1.2.3.tar.gz) = 7e4c8dc2d8e3532f26775702254339ba92e276c82b5a7041756574096928e25f2614d04a1cfa091ba90bc3e5a0d552578b80bc89c3c87c6d48722139c2ae47ff
Size (irssi-xmpp-0.54/irssi-1.2.3.tar.gz) = 1824077 bytes
SHA1 (irssi-xmpp-0.54/irssi-xmpp-0.54.tar.gz) = 19f9e303545a7adbfeee806c78be2a6279f74b63
RMD160 (irssi-xmpp-0.54/irssi-xmpp-0.54.tar.gz) = 1fdc4557c167134d3daacd495e9404ec82dc7755
SHA512 (irssi-xmpp-0.54/irssi-xmpp-0.54.tar.gz) = 31ddd9e0147eec23d08b8bcbe242e831d612cb2d00f3b56776e9d0b87db9bd76d4bb147422cdf18c0567f0e0463ab828ab7a0ef80a2b35cfdc0a8be962b39f14
Size (irssi-xmpp-0.54/irssi-xmpp-0.54.tar.gz) = 65618 bytes

View File

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.100 2020/08/31 18:06:41 wiz Exp $
# $NetBSD: Makefile,v 1.100.6.1 2021/04/24 15:58:35 bsiegert Exp $
DISTNAME= ${IRSSI_DISTNAME}
PKGREVISION= 5
CATEGORIES= chat
EXTRACT_SUFX= ${IRSSI_EXTRACT_SUFX}

View File

@ -1,10 +1,10 @@
# $NetBSD: Makefile.common,v 1.32 2019/08/31 10:04:26 nia Exp $
# $NetBSD: Makefile.common,v 1.32.14.1 2021/04/24 15:58:35 bsiegert Exp $
#
# used by chat/irssi-icb/Makefile
# used by chat/irssi-xmpp/Makefile
# Specific distribution information.
IRSSI_VERSION= 1.2.2
IRSSI_VERSION= 1.2.3
IRSSI_DISTNAME= irssi-${IRSSI_VERSION}
IRSSI_EXTRACT_SUFX= .tar.gz
IRSSI_DISTFILE= ${IRSSI_DISTNAME}${IRSSI_EXTRACT_SUFX}

View File

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.52 2020/05/18 18:38:31 maya Exp $
$NetBSD: distinfo,v 1.52.8.1 2021/04/24 15:58:35 bsiegert Exp $
SHA1 (irssi-1.2.2.tar.gz) = 1004f6adcd949c6ab76bff5abe210521c8af4fd7
RMD160 (irssi-1.2.2.tar.gz) = 49a8681a4a3495e441d8b516304477bdb4d9aa7c
SHA512 (irssi-1.2.2.tar.gz) = 708dd72685f89ba5da155b7276addcb3758a000f633c71a9bee88c84585f1b5f69872696c7d107699edd16cf964e0a046fc13fecc0384505c11258ec16ab3342
Size (irssi-1.2.2.tar.gz) = 1843879 bytes
SHA1 (irssi-1.2.3.tar.gz) = 1a7af14546cc1a7ada221dd9da82f58af58b5bbd
RMD160 (irssi-1.2.3.tar.gz) = 72a9014c158e7685c6a1e56156ed62728588f1ae
SHA512 (irssi-1.2.3.tar.gz) = 7e4c8dc2d8e3532f26775702254339ba92e276c82b5a7041756574096928e25f2614d04a1cfa091ba90bc3e5a0d552578b80bc89c3c87c6d48722139c2ae47ff
Size (irssi-1.2.3.tar.gz) = 1824077 bytes
SHA1 (patch-ad) = 8cb41612afcd6088b869235166da9a6eb37e6ec7
SHA1 (patch-src_fe-text_term-terminfo.c) = 3ebf09dfde3fa01c4f53862e126fe13f082d450c
SHA1 (patch-src_fe-text_terminfo-core.c) = e1f64ae71fcd56596f325bb57ec27f51d8826223

View File

@ -1,18 +0,0 @@
$NetBSD: patch-src_fe-text_term-terminfo.c,v 1.1 2020/05/18 18:38:31 maya Exp $
Fix hang when pressing ctrl+space.
From https://github.com/irssi/irssi/issues/1180
--- src/fe-text/term-terminfo.c.orig 2019-08-29 13:48:46.000000000 +0000
+++ src/fe-text/term-terminfo.c
@@ -674,6 +674,10 @@ static int input_utf8(const unsigned cha
{
unichar c = g_utf8_get_char_validated((char *)buffer, size);
+ /* GLib >= 2.63 do not accept Unicode NUL anymore */
+ if (c == (unichar) -2 && *buffer == 0 && size > 0)
+ c = 0;
+
switch (c) {
case (unichar)-1:
/* not UTF8 - fallback to 8bit ascii */

View File

@ -0,0 +1,347 @@
$NetBSD: patch-src_fe-text_terminfo-core.c,v 1.2.2.2 2021/04/24 15:58:35 bsiegert Exp $
Fix compatibility with NetBSD curses
from the ncurses man page:
>X/Open Curses prototypes tparm with a fixed number of parameters,
>rather than a variable argument list.
>This implementation uses a variable argument list, but can be con-
>figured to use the fixed-parameter list. Portable applications
>should provide 9 parameters after the format; zeroes are fine for
>this purpose.
>In response to review comments by Thomas E. Dickey, X/Open Curses
>Issue 7 proposed the tiparm function in mid-2009.
Previously, irssi defined its own tparm prototype, so passing
a variable number of arguments worked.
However, since this change:
https://github.com/irssi/irssi/commit/0b82f14151dad5f106c208d25818816a8f782a54
<term.h> in included, which on systems using NetBSD libcurses, gives
the X/Open compliant definition of tparm, which does not work with
a variable number of arguments.
--- src/fe-text/terminfo-core.c.orig 2021-04-08 14:42:39.000000000 +0000
+++ src/fe-text/terminfo-core.c
@@ -17,7 +17,7 @@ inline static int term_putchar(int c)
#else
/* Don't bother including curses.h because of these -
they might not even be defined there */
-char *tparm();
+char *tiparm();
int tputs();
int setupterm();
@@ -110,14 +110,14 @@ static TERMINFO_REC tcaps[] = {
/* Move cursor (cursor_address / cup) */
static void _move_cup(TERM_REC *term, int x, int y)
{
- tput(tparm(term->TI_cup, y, x));
+ tput(tiparm(term->TI_cup, y, x));
}
/* Move cursor (column_address+row_address / hpa+vpa) */
static void _move_pa(TERM_REC *term, int x, int y)
{
- tput(tparm(term->TI_hpa, x));
- tput(tparm(term->TI_vpa, y));
+ tput(tiparm(term->TI_hpa, x));
+ tput(tiparm(term->TI_vpa, y));
}
/* Move cursor from a known position */
@@ -133,38 +133,38 @@ static void _move_relative(TERM_REC *ter
if (oldx > 0 && y == oldy) {
/* move cursor left/right */
if (x == oldx-1 && term->TI_cub1) {
- tput(tparm(term->TI_cub1));
+ tput(tiparm(term->TI_cub1));
return;
}
if (x == oldx+1 && y == oldy && term->TI_cuf1) {
- tput(tparm(term->TI_cuf1));
+ tput(tiparm(term->TI_cuf1));
return;
}
}
/* fallback to absolute positioning */
if (term->TI_cup) {
- tput(tparm(term->TI_cup, y, x));
+ tput(tiparm(term->TI_cup, y, x));
return;
}
if (oldy != y)
- tput(tparm(term->TI_vpa, y));
+ tput(tiparm(term->TI_vpa, y));
if (oldx != x)
- tput(tparm(term->TI_hpa, x));
+ tput(tiparm(term->TI_hpa, x));
}
/* Set cursor visible/invisible */
static void _set_cursor_visible(TERM_REC *term, int set)
{
- tput(tparm(set ? term->TI_cnorm : term->TI_civis));
+ tput(tiparm(set ? term->TI_cnorm : term->TI_civis));
}
#define scroll_region_setup(term, y1, y2) \
if ((term)->TI_csr != NULL) \
- tput(tparm((term)->TI_csr, y1, y2)); \
+ tput(tiparm((term)->TI_csr, y1, y2)); \
else if ((term)->TI_wind != NULL) \
- tput(tparm((term)->TI_wind, y1, y2, 0, (term)->width-1));
+ tput(tiparm((term)->TI_wind, y1, y2, 0, (term)->width-1));
/* Scroll (change_scroll_region+parm_rindex+parm_index / csr+rin+indn) */
static void _scroll_region(TERM_REC *term, int y1, int y2, int count)
@@ -175,10 +175,10 @@ static void _scroll_region(TERM_REC *ter
term->move(term, 0, y1);
if (count > 0) {
term->move(term, 0, y2);
- tput(tparm(term->TI_indn, count, count));
+ tput(tiparm(term->TI_indn, count, count));
} else if (count < 0) {
term->move(term, 0, y1);
- tput(tparm(term->TI_rin, -count, -count));
+ tput(tiparm(term->TI_rin, -count, -count));
}
/* reset the scrolling region to full screen */
@@ -196,11 +196,11 @@ static void _scroll_region_1(TERM_REC *t
if (count > 0) {
term->move(term, 0, y2);
for (i = 0; i < count; i++)
- tput(tparm(term->TI_ind));
+ tput(tiparm(term->TI_ind));
} else if (count < 0) {
term->move(term, 0, y1);
for (i = count; i < 0; i++)
- tput(tparm(term->TI_ri));
+ tput(tiparm(term->TI_ri));
}
/* reset the scrolling region to full screen */
@@ -217,14 +217,14 @@ static void _scroll_line(TERM_REC *term,
if (count > 0) {
term->move(term, 0, y1);
- tput(tparm(term->TI_dl, count, count));
+ tput(tiparm(term->TI_dl, count, count));
term->move(term, 0, y2-count+1);
- tput(tparm(term->TI_il, count, count));
+ tput(tiparm(term->TI_il, count, count));
} else if (count < 0) {
term->move(term, 0, y2+count+1);
- tput(tparm(term->TI_dl, -count, -count));
+ tput(tiparm(term->TI_dl, -count, -count));
term->move(term, 0, y1);
- tput(tparm(term->TI_il, -count, -count));
+ tput(tiparm(term->TI_il, -count, -count));
}
/* reset the scrolling region to full screen */
@@ -239,38 +239,38 @@ static void _scroll_line_1(TERM_REC *ter
if (count > 0) {
term->move(term, 0, y1);
for (i = 0; i < count; i++)
- tput(tparm(term->TI_dl1));
+ tput(tiparm(term->TI_dl1));
term->move(term, 0, y2-count+1);
for (i = 0; i < count; i++)
- tput(tparm(term->TI_il1));
+ tput(tiparm(term->TI_il1));
} else if (count < 0) {
term->move(term, 0, y2+count+1);
for (i = count; i < 0; i++)
- tput(tparm(term->TI_dl1));
+ tput(tiparm(term->TI_dl1));
term->move(term, 0, y1);
for (i = count; i < 0; i++)
- tput(tparm(term->TI_il1));
+ tput(tiparm(term->TI_il1));
}
}
/* Clear screen (clear_screen / clear) */
static void _clear_screen(TERM_REC *term)
{
- tput(tparm(term->TI_clear));
+ tput(tiparm(term->TI_clear));
}
/* Clear screen (clr_eos / ed) */
static void _clear_eos(TERM_REC *term)
{
term->move(term, 0, 0);
- tput(tparm(term->TI_ed));
+ tput(tiparm(term->TI_ed));
}
/* Clear screen (parm_delete_line / dl) */
static void _clear_del(TERM_REC *term)
{
term->move(term, 0, 0);
- tput(tparm(term->TI_dl, term->height, term->height));
+ tput(tiparm(term->TI_dl, term->height, term->height));
}
/* Clear screen (delete_line / dl1) */
@@ -280,19 +280,19 @@ static void _clear_del_1(TERM_REC *term)
term->move(term, 0, 0);
for (i = 0; i < term->height; i++)
- tput(tparm(term->TI_dl1));
+ tput(tiparm(term->TI_dl1));
}
/* Clear to end of line (clr_eol / el) */
static void _clrtoeol(TERM_REC *term)
{
- tput(tparm(term->TI_el));
+ tput(tiparm(term->TI_el));
}
/* Repeat character (rep / rp) */
static void _repeat(TERM_REC *term, char chr, int count)
{
- tput(tparm(term->TI_rep, chr, count));
+ tput(tiparm(term->TI_rep, chr, count));
}
/* Repeat character (manual) */
@@ -307,42 +307,42 @@ static void _repeat_manual(TERM_REC *ter
/* Reset all terminal attributes */
static void _set_normal(TERM_REC *term)
{
- tput(tparm(term->TI_normal));
+ tput(tiparm(term->TI_normal));
}
static void _set_blink(TERM_REC *term)
{
- tput(tparm(term->TI_blink));
+ tput(tiparm(term->TI_blink));
}
/* Reverse on */
static void _set_reverse(TERM_REC *term)
{
- tput(tparm(term->TI_rev));
+ tput(tiparm(term->TI_rev));
}
/* Bold on */
static void _set_bold(TERM_REC *term)
{
- tput(tparm(term->TI_bold));
+ tput(tiparm(term->TI_bold));
}
/* Underline on/off */
static void _set_uline(TERM_REC *term, int set)
{
- tput(tparm(set ? term->TI_smul : term->TI_rmul));
+ tput(tiparm(set ? term->TI_smul : term->TI_rmul));
}
/* Standout on/off */
static void _set_standout(TERM_REC *term, int set)
{
- tput(tparm(set ? term->TI_smso : term->TI_rmso));
+ tput(tiparm(set ? term->TI_smso : term->TI_rmso));
}
/* Italic on/off */
static void _set_italic(TERM_REC *term, int set)
{
- tput(tparm(set ? term->TI_sitm : term->TI_ritm));
+ tput(tiparm(set ? term->TI_sitm : term->TI_ritm));
}
/* Standout on (fallback for reverse) */
@@ -367,19 +367,19 @@ inline static int color256(const TERM_RE
/* Change foreground color */
static void _set_fg(TERM_REC *term, int color)
{
- tput(tparm(term->TI_fg[color256(term, color)]));
+ tput(tiparm(term->TI_fg[color256(term, color)]));
}
/* Change background color */
static void _set_bg(TERM_REC *term, int color)
{
- tput(tparm(term->TI_bg[color256(term, color)]));
+ tput(tiparm(term->TI_bg[color256(term, color)]));
}
/* Beep */
static void _beep(TERM_REC *term)
{
- tput(tparm(term->TI_bel));
+ tput(tiparm(term->TI_bel));
}
static void _ignore(TERM_REC *term)
@@ -393,7 +393,7 @@ static void _ignore_parm(TERM_REC *term,
static void terminfo_set_appkey_mode(TERM_REC *term, int set)
{
if (term->TI_smkx && term->TI_rmkx)
- tput(tparm(set ? term->TI_smkx : term->TI_rmkx));
+ tput(tiparm(set ? term->TI_smkx : term->TI_rmkx));
}
static void term_dec_set_bracketed_paste_mode(int enable)
@@ -478,11 +478,11 @@ void terminfo_setup_colors(TERM_REC *ter
if (term->TI_setaf) {
for (i = 0; i < term->TI_colors; i++) {
color = i < 16 ? ansitab[i] : i;
- term->TI_fg[i] = g_strdup(tparm(term->TI_setaf, color, 0));
+ term->TI_fg[i] = g_strdup(tiparm(term->TI_setaf, color, 0));
}
} else if (term->TI_setf) {
for (i = 0; i < term->TI_colors; i++)
- term->TI_fg[i] = g_strdup(tparm(term->TI_setf, i, 0));
+ term->TI_fg[i] = g_strdup(tiparm(term->TI_setf, i, 0));
} else if (force) {
for (i = 0; i < 8; i++)
term->TI_fg[i] = g_strdup_printf("\033[%dm", 30+ansitab[i]);
@@ -491,11 +491,11 @@ void terminfo_setup_colors(TERM_REC *ter
if (term->TI_setab) {
for (i = 0; i < term->TI_colors; i++) {
color = i < 16 ? ansitab[i] : i;
- term->TI_bg[i] = g_strdup(tparm(term->TI_setab, color, 0));
+ term->TI_bg[i] = g_strdup(tiparm(term->TI_setab, color, 0));
}
} else if (term->TI_setb) {
for (i = 0; i < term->TI_colors; i++)
- term->TI_bg[i] = g_strdup(tparm(term->TI_setb, i, 0));
+ term->TI_bg[i] = g_strdup(tiparm(term->TI_setb, i, 0));
} else if (force) {
for (i = 0; i < 8; i++)
term->TI_bg[i] = g_strdup_printf("\033[%dm", 40+ansitab[i]);
@@ -539,7 +539,7 @@ static void terminfo_input_deinit(TERM_R
void terminfo_cont(TERM_REC *term)
{
if (term->TI_smcup)
- tput(tparm(term->TI_smcup));
+ tput(tiparm(term->TI_smcup));
if (term->appkey_enabled)
terminfo_set_appkey_mode(term, TRUE);
@@ -562,7 +562,7 @@ void terminfo_stop(TERM_REC *term)
/* stop cup-mode */
if (term->TI_rmcup)
- tput(tparm(term->TI_rmcup));
+ tput(tiparm(term->TI_rmcup));
if (term->appkey_enabled)
terminfo_set_appkey_mode(term, FALSE);

View File

@ -1,9 +1,9 @@
# $NetBSD: Makefile.common,v 1.32 2021/02/19 10:19:56 tnn Exp $
# $NetBSD: Makefile.common,v 1.32.2.1 2021/05/31 13:28:52 bsiegert Exp $
#
# used by databases/mysql57-client/Makefile
# used by databases/mysql57-server/Makefile
DISTNAME= mysql-5.7.33
DISTNAME= mysql-5.7.34
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_MYSQL:=MySQL-5.7/}
@ -66,7 +66,7 @@ CMAKE_ARGS+= -DCMAKE_BUILD_TYPE=Release
CMAKE_ARGS+= -DWITH_BOOST="system"
CMAKE_ARGS+= -DWITH_EDITLINE="system"
CMAKE_ARGS+= -DEDITLINE_INCLUDE_DIR=${BUILDLINK_PREFIX.editline:Q}/${BUILDLINK_INCDIRS.editline}
CMAKE_ARGS+= -DEDITLINE_INCLUDE_DIR=${BUILDLINK_PREFIX.editline}/${BUILDLINK_INCDIRS.editline}
CMAKE_ARGS+= -DWITH_LIBEVENT="system"
CMAKE_ARGS+= -DWITH_LZ4="system"
CMAKE_ARGS+= -DWITH_SSL="system"

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.20 2021/02/04 20:26:10 adam Exp $
@comment $NetBSD: PLIST,v 1.20.2.1 2021/05/31 13:28:52 bsiegert Exp $
bin/mysql
bin/mysql_client_test
bin/mysql_config
@ -122,7 +122,7 @@ include/mysql/typelib.h
lib/libmysqlclient.a
lib/libmysqlclient.so
lib/libmysqlclient.so.20
lib/libmysqlclient.so.20.3.20
lib/libmysqlclient.so.20.3.21
lib/pkgconfig/mysqlclient.pc
man/man1/comp_err.1
man/man1/innochecksum.1

View File

@ -1,14 +1,15 @@
$NetBSD: distinfo,v 1.40 2021/02/04 20:26:10 adam Exp $
$NetBSD: distinfo,v 1.40.2.1 2021/05/31 13:28:52 bsiegert Exp $
SHA1 (mysql-5.7.33.tar.gz) = 08d288b77f5450e920272738232c7c20be891772
RMD160 (mysql-5.7.33.tar.gz) = b041f96c892083f03228eb2e4a24f05cce452f3f
SHA512 (mysql-5.7.33.tar.gz) = 62349fdf2c2d9078ead383f150ccf52d719df9bb475e90910882595194f8038eb1b0333b2f5f153972a0b7309eab369a9f7d5178f2d71a12816e634df2be059b
Size (mysql-5.7.33.tar.gz) = 56179381 bytes
SHA1 (mysql-5.7.34.tar.gz) = d1842baea3abc4b4cd684186e88b123d854d4ed7
RMD160 (mysql-5.7.34.tar.gz) = f23902a074cb7bcd05dc7ef8c04186021c4d689c
SHA512 (mysql-5.7.34.tar.gz) = a59b27e56963a8b57f8e3d89890d7ea0e4e157f81f274670ab0416d5fccb0da1b09b7702b58c3c9de726ee03bd1b84a6d2bf309e1e3e3fba285361e5bc3d059c
Size (mysql-5.7.34.tar.gz) = 56150251 bytes
SHA1 (patch-CMakeLists.txt) = 1409a98380c999c6973fa3106dc35684b7c3b3cc
SHA1 (patch-client_CMakeLists.txt) = 4af2fb3f3d05a66a9ee89f3653e2fcccadfa5f79
SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
SHA1 (patch-client_mysqladmin.cc) = e1650ef3695675bcc01375bacdebcb7318218b93
SHA1 (patch-cmake_boost.cmake) = ecf03b396c57c69e0d251497e7217e47632613c2
SHA1 (patch-cmake_build__configurations_compiler__options.cmake) = 999110815237c53a69c74c42e66c45df83cbf355
SHA1 (patch-cmake_build__configurations_mysql__release.cmake) = 7a1fb8c686f187db8fd9d8ad203c1f764d6e55a6
SHA1 (patch-cmake_curl.cmake) = 08ff31eb8de6b94a46ff90edb6df66a61a94fd9d
SHA1 (patch-cmake_ldap.cmake) = 9bdc3c311330852286838e6159295ecc5fbdc0ea
@ -24,7 +25,7 @@ SHA1 (patch-include_my__thread__os__id.h) = a51861b791086a0eeb9cb4d64892c5033da8
SHA1 (patch-libmysql_CMakeLists.txt) = 13b3aa65a82e0e94f097d0092e46b0b9558fdfc6
SHA1 (patch-mysql-test_CMakeLists.txt) = 8a8e846792077101a01731c4577c37161f70264d
SHA1 (patch-mysys__ssl_CMakeLists.txt) = 753c4f5ed1884e1a3c79d645af6d5ffd027ff7dd
SHA1 (patch-mysys_kqueue__timers.c) = 836803e9c7353b813bc22a5b69cc263dea384c9b
SHA1 (patch-mysys_kqueue__timers.c) = 709c1551b5c62ea5a4441f935a7b0eb67d96074b
SHA1 (patch-mysys_mf__iocache2.c) = 0c5047cbd4b9fc09d9e5b18bcae324d794fe833d
SHA1 (patch-mysys_my__symlink.c) = 23b57cd5922357d0bc72f5c15100a9fe1f89cfb2
SHA1 (patch-mysys_stacktrace.c) = 3e0794f544f0e35f44a694330885478247657842
@ -38,7 +39,7 @@ SHA1 (patch-scripts_mysqld_safe.sh) = 0784314227657aa0bc3f4a0b4e21c173a86fa94b
SHA1 (patch-sql_CMakeLists.txt) = 697add15adb66bf55cf561a6e43e0bf514d1e068
SHA1 (patch-sql_conn__handler_socket__connection.cc) = 12cf83e061edbe59eb073037b1036903b7ba4b00
SHA1 (patch-sql_item__geofunc__internal.cc) = 752862c3a30231e694e508ced1a215a610649fc6
SHA1 (patch-sql_locks_shared__spin__lock.cc) = 0fcdc9db76bb8a25c083e124334245f53cee871d
SHA1 (patch-sql_locks_shared__spin__lock.cc) = 32777eb07d42a3c5c7cfc331eea4d8218cabe486
SHA1 (patch-sql_log_event.h) = 311dc7fb04ea832df229dc2a28bcfbf263670ebf
SHA1 (patch-sql_sys__vars.cc) = 202b8756c20549393d0e2a14952e1f060037b88a
SHA1 (patch-storage_archive_CMakeLists.txt) = 4cf5ed97a226a3844e184c46958b5202eefb9dd5

View File

@ -0,0 +1,24 @@
$NetBSD: patch-cmake_build__configurations_compiler__options.cmake,v 1.1.2.2 2021/05/31 13:28:52 bsiegert Exp $
Require C++14.
--- cmake/build_configurations/compiler_options.cmake.orig 2021-04-29 13:13:28.501383898 +0000
+++ cmake/build_configurations/compiler_options.cmake
@@ -73,7 +73,7 @@ IF(UNIX)
EXECUTE_PROCESS(COMMAND ${CMAKE_CXX_COMPILER} -dumpversion
OUTPUT_VARIABLE GXX_VERSION)
IF(GXX_VERSION VERSION_EQUAL 6.0 OR GXX_VERSION VERSION_GREATER 6.0)
- STRING_PREPEND(COMMON_CXX_FLAGS "-std=gnu++03 ")
+ STRING_PREPEND(COMMON_CXX_FLAGS "-std=gnu++14 ")
ENDIF()
# Disable inline optimizations for valgrind testing to avoid false positives
IF(WITH_VALGRIND)
@@ -112,7 +112,7 @@ IF(UNIX)
IF(CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL 6.0 OR
CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 6.0)
IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
- STRING_PREPEND(COMMON_CXX_FLAGS "-std=gnu++03 ")
+ STRING_PREPEND(COMMON_CXX_FLAGS "-std=gnu++14 ")
ENDIF()
ENDIF()
IF(NOT DISABLE_SHARED)

View File

@ -1,11 +1,11 @@
$NetBSD: patch-mysys_kqueue__timers.c,v 1.1 2016/09/16 06:49:11 adam Exp $
$NetBSD: patch-mysys_kqueue__timers.c,v 1.1.38.1 2021/05/31 13:28:52 bsiegert Exp $
Fix for systems which do not define EVFILT_USER.
--- mysys/kqueue_timers.c.orig 2016-09-15 11:33:26.000000000 +0000
--- mysys/kqueue_timers.c.orig 2021-03-26 06:58:52.000000000 +0000
+++ mysys/kqueue_timers.c
@@ -67,8 +67,10 @@ timer_notify_thread_func(void *arg MY_AT
DBUG_ASSERT(timer->id == kev.ident);
@@ -74,8 +74,10 @@ timer_notify_thread_func(void *arg MY_AT
assert(timer->id == kev.ident);
timer->notify_function(timer);
}
+#ifdef EVFILT_USER
@ -15,7 +15,7 @@ Fix for systems which do not define EVFILT_USER.
}
close(kq_fd);
@@ -89,7 +91,9 @@ start_helper_thread(void)
@@ -96,7 +98,9 @@ start_helper_thread(void)
{
struct kevent kev;
@ -25,7 +25,7 @@ Fix for systems which do not define EVFILT_USER.
if (kevent(kq_fd, &kev, 1, NULL, 0, NULL) < 0)
{
@@ -143,7 +147,9 @@ my_timer_deinitialize(void)
@@ -150,7 +154,9 @@ my_timer_deinitialize(void)
{
struct kevent kev;

View File

@ -1,19 +1,16 @@
$NetBSD: patch-sql_locks_shared__spin__lock.cc,v 1.1 2021/02/04 20:26:10 adam Exp $
$NetBSD: patch-sql_locks_shared__spin__lock.cc,v 1.1.2.1 2021/05/31 13:28:52 bsiegert Exp $
Fix buidling on Darwin.
https://bugs.mysql.com/bug.php?id=102288
--- sql/locks/shared_spin_lock.cc.orig 2021-02-04 09:40:46.000000000 +0000
--- sql/locks/shared_spin_lock.cc.orig 2021-03-26 06:58:52.000000000 +0000
+++ sql/locks/shared_spin_lock.cc
@@ -239,7 +239,11 @@ lock::Shared_spin_lock &lock::Shared_spi
@@ -239,7 +239,7 @@ lock::Shared_spin_lock &lock::Shared_spi
{
this->spin_exclusive_lock();
}
-#if defined(__APPLE__)
+#if defined(__APPLE__) || defined(__NetBSD__)
+ my_atomic_store64(&this->m_exclusive_owner, reinterpret_cast<int64>(self));
+#else
my_atomic_store64(&this->m_exclusive_owner, reinterpret_cast<int64>(self));
#else
my_atomic_store64(&this->m_exclusive_owner, self);
+#endif
return (*this);
}

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.20 2021/02/04 20:26:10 adam Exp $
@comment $NetBSD: PLIST,v 1.20.2.1 2021/05/31 13:28:52 bsiegert Exp $
bin/innochecksum
bin/lz4_decompress
bin/my_print_defaults
@ -898,6 +898,7 @@ share/mysql/test/include/start_slave_sql.inc
share/mysql/test/include/start_transaction_high_prio.inc
share/mysql/test/include/stop_dump_threads.inc
share/mysql/test/include/stop_group_replication.inc
share/mysql/test/include/stop_mysqld.inc
share/mysql/test/include/stop_slave.inc
share/mysql/test/include/stop_slave_io.inc
share/mysql/test/include/stop_slave_sql.inc
@ -1555,6 +1556,7 @@ share/mysql/test/r/myisampack.result
share/mysql/test/r/mysql-bug41486.result
share/mysql/test/r/mysql-bug45236.result
share/mysql/test/r/mysql.result
share/mysql/test/r/mysql_batch_mode.result
share/mysql/test/r/mysql_binary_mode.result
share/mysql/test/r/mysql_client_test.result
share/mysql/test/r/mysql_client_test_embedded.result
@ -2482,6 +2484,7 @@ share/mysql/test/suite/binlog/r/binlog_gtid_next_partially_failed_stmts.result
share/mysql/test/suite/binlog/r/binlog_gtid_next_single_stmt_trx_rollback.result
share/mysql/test/suite/binlog/r/binlog_gtid_next_temporary_table.result
share/mysql/test/suite/binlog/r/binlog_gtid_next_xa.result
share/mysql/test/suite/binlog/r/binlog_gtid_purge_binlog_at_startup.result
share/mysql/test/suite/binlog/r/binlog_gtid_rbr_only_flag.result
share/mysql/test/suite/binlog/r/binlog_gtid_reset_consistency_violation_on_fail.result
share/mysql/test/suite/binlog/r/binlog_gtid_row_ctype_ucs.result
@ -2684,6 +2687,7 @@ share/mysql/test/suite/binlog/t/binlog_gtid_next_partially_failed_stmts.test
share/mysql/test/suite/binlog/t/binlog_gtid_next_single_stmt_trx_rollback.test
share/mysql/test/suite/binlog/t/binlog_gtid_next_temporary_table.test
share/mysql/test/suite/binlog/t/binlog_gtid_next_xa.test
share/mysql/test/suite/binlog/t/binlog_gtid_purge_binlog_at_startup.test
share/mysql/test/suite/binlog/t/binlog_gtid_rbr_only_flag.test
share/mysql/test/suite/binlog/t/binlog_gtid_reset_consistency_violation_on_fail.test
share/mysql/test/suite/binlog/t/binlog_gtid_row_ctype_ucs.test
@ -5378,6 +5382,7 @@ share/mysql/test/suite/innodb/r/innodb_prefix_index_restart_server.result
share/mysql/test/suite/innodb/r/innodb_rename_index.result
share/mysql/test/suite/innodb/r/innodb_rename_index_err.result
share/mysql/test/suite/innodb/r/innodb_replace.result
share/mysql/test/suite/innodb/r/innodb_row_log_read.result
share/mysql/test/suite/innodb/r/innodb_stats.result
share/mysql/test/suite/innodb/r/innodb_stats_auto_recalc.result
share/mysql/test/suite/innodb/r/innodb_stats_auto_recalc_ddl.result
@ -5797,6 +5802,7 @@ share/mysql/test/suite/innodb/t/innodb_prefix_index_restart_server.test
share/mysql/test/suite/innodb/t/innodb_rename_index.test
share/mysql/test/suite/innodb/t/innodb_rename_index_err.test
share/mysql/test/suite/innodb/t/innodb_replace.test
share/mysql/test/suite/innodb/t/innodb_row_log_read.test
share/mysql/test/suite/innodb/t/innodb_stats.test
share/mysql/test/suite/innodb/t/innodb_stats_auto_recalc.test
share/mysql/test/suite/innodb/t/innodb_stats_auto_recalc_ddl.test
@ -10140,6 +10146,7 @@ share/mysql/test/suite/rpl/r/rpl_set_null_innodb.result
share/mysql/test/suite/rpl/r/rpl_set_null_myisam.result
share/mysql/test/suite/rpl/r/rpl_show_errors.result
share/mysql/test/suite/rpl/r/rpl_show_master_info_file.result
share/mysql/test/suite/rpl/r/rpl_show_processlist_info.result
share/mysql/test/suite/rpl/r/rpl_show_relaylog_events.result
share/mysql/test/suite/rpl/r/rpl_show_slave_hosts.result
share/mysql/test/suite/rpl/r/rpl_show_slave_running.result
@ -10708,6 +10715,7 @@ share/mysql/test/suite/rpl/t/rpl_mts_slave_preserve_commit_order_deadlock_error-
share/mysql/test/suite/rpl/t/rpl_mts_slave_preserve_commit_order_deadlock_error.test
share/mysql/test/suite/rpl/t/rpl_mts_slave_preserve_commit_order_error-slave.opt
share/mysql/test/suite/rpl/t/rpl_mts_slave_preserve_commit_order_error.test
share/mysql/test/suite/rpl/t/rpl_mts_spco_deadlock_hang_on_non_temp_error-slave.opt
share/mysql/test/suite/rpl/t/rpl_mts_spco_deadlock_hang_on_non_temp_error.test
share/mysql/test/suite/rpl/t/rpl_mts_spco_deadlock_slave_trans_retries_hang.test
share/mysql/test/suite/rpl/t/rpl_mts_stop_slave-slave.opt
@ -11119,6 +11127,7 @@ share/mysql/test/suite/rpl/t/rpl_set_null_myisam.test
share/mysql/test/suite/rpl/t/rpl_show_errors.test
share/mysql/test/suite/rpl/t/rpl_show_master_info_file-master.opt
share/mysql/test/suite/rpl/t/rpl_show_master_info_file.test
share/mysql/test/suite/rpl/t/rpl_show_processlist_info.test
share/mysql/test/suite/rpl/t/rpl_show_relaylog_events.test
share/mysql/test/suite/rpl/t/rpl_show_slave_hosts.cnf
share/mysql/test/suite/rpl/t/rpl_show_slave_hosts.test
@ -14104,6 +14113,7 @@ share/mysql/test/t/myisampack.test
share/mysql/test/t/mysql-bug41486.test
share/mysql/test/t/mysql-bug45236.test
share/mysql/test/t/mysql.test
share/mysql/test/t/mysql_batch_mode.test
share/mysql/test/t/mysql_binary_mode.test
share/mysql/test/t/mysql_client_test-master.opt
share/mysql/test/t/mysql_client_test.test

View File

@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.277 2021/03/22 06:54:19 adam Exp $
# $NetBSD: Makefile,v 1.277.2.1 2021/04/24 13:09:41 bsiegert Exp $
.include "Makefile.common"
PKGREVISION=1
CATEGORIES= devel gnome
COMMENT= Some useful routines for C programming (glib2)
@ -43,6 +44,7 @@ SUBST_CLASSES+= dbusdb
SUBST_MESSAGE.dbusdb= Adjust dbus machine uuid path to dbus package
SUBST_STAGE.dbusdb= pre-configure
SUBST_FILES.dbusdb= gio/gdbusconnection.c
SUBST_FILES.dbusdb= gio/gdbusprivate.c
SUBST_FILES.dbusdb+= po/*.po
SUBST_SED.dbusdb= -e 's,/var/lib/dbus,${VARBASE}/db/dbus,g'

View File

@ -1,13 +1,13 @@
$NetBSD: patch-aa,v 1.1.1.1 2009/04/18 02:27:21 rh Exp $
$NetBSD: patch-aa,v 1.1 2009/04/18 02:19:23 rh Exp $
--- GNUmakefile.orig 2009-04-18 11:56:31.000000000 +1000
--- GNUmakefile.orig 2009-04-18 10:49:03.000000000 +1000
+++ GNUmakefile
@@ -38,7 +38,7 @@ GNUSTEP_INSTALLATION_DOMAIN = SYSTEM
include $(GNUSTEP_MAKEFILES)/common.make
include ./Version
-SUBPROJECTS = Foundation Resources examples
+SUBPROJECTS = examples
+SUBPROJECTS = Foundation Resources
include $(GNUSTEP_MAKEFILES)/aggregate.make

118
doc/CHANGES-pkgsrc-2021Q1 Normal file
View File

@ -0,0 +1,118 @@
$NetBSD: CHANGES-pkgsrc-2021Q1,v 1.1.2.14 2021/06/10 08:52:34 bsiegert Exp $
Changes to packages and infrastructure on the pkgsrc-2021Q1 branch:
Pullup ticket #6435 - requested by leot
www/curl: security update
Pullup ticket #6436 - requested by he
lang/rust: build fixes
Pullup ticket #6437 - requested by leot
net/youtube-dl: bugfixes
Pullup ticket #6438 - requested by nia
emulators/qemu: bugfix
Pullup ticket #6439 - requested by nia
emulators/qemu51: bugfix
Pullup ticket #6440 - requested by taca
textproc/ruby-rexml: build fix
Pullup ticket #6441 - requested by taca
security/ruby-rex-exploitation: build fix
Pullup ticket #6442 - requested by taca
lang/ruby25-base: security fix
Pullup ticket #6443 - requested by taca
lang/ruby26-base: security fix, bugfix
Pullup ticket #6444 - requested by taca
lang/ruby27-base: security fix, bugfix
Pullup ticket #6445 - requested by taca
lang/ruby30-base: security fix
Pullup ticket #6443 (second part) - requested by taca
lang/ruby: build fix
Pullup ticket #6446 - requested by gutteridge
lang/rust: NetBSD/i386 build fix
Pullup ticket #6449 - requested by tsutsui
devel/glib2: fix for PR pkg/56114
Pullup ticket #6450 - requested by nia
chat/irssi: security fix
Pullup ticket #6447 - requested by nia
www/firefox78: security fix
Pullup ticket #6448 - requested by nia
www/firefox78-l10n: dependent update
Pullup ticket #6451 - requested by maya
net/GeoIP: NetBSD build fix
Pullup ticket #6452 - requested by nia
chat/irssi-xmpp: build fix
Pullup ticket #6453 - requested by taca
net/bind911: security fix
Pullup ticket #6454 - requested by taca
net/bind916: security fix
Pullup ticket #6455 - requested by abs
mail/exim: security fix
Pullup ticket #6456 - requested by nia
multimedia/mpv: performance fix
Pullup ticket #6457 - requested by gdt
net/speedtest-cli: bugfix
Pullup ticket #6458 - requested by nia
textproc/libxml2: security fix
Pullup ticket #6459 - requested by nia
textproc/libxslt: build fix
Pullup ticket #6460 - requested by nia
graphics/cairo: security fix
Pullup ticket #6461 - requested by nia
print/mupdf: security fix
Pullup ticket #6462 - requested by gutteridge
sysutils/xfce4-thunar: security fix
Pullup ticket #6463 - requested by nia
emulators/haxm: build fix
Pullup ticket #6464 - requested by taca
net/isc-dhcp4: security fix
Pullup ticket #6465 - requested by taca
www/squid4: security fix
Pullup ticket #6466 - requested by taca
databases/mysql57-client: security fix
Pullup ticket #6467 - requested by nia
www/firefox78: security fix
Pullup ticket #6468 - requested by nia
www/firefox78-l10n: dependent update
Pullup ticket #6468 - requested by nia
www/firefox78-l10n: dependent update
Pullup ticket #6470 - requested by simonb
x11/xorgproto: NetBSD-current build fix
Pullup ticket #6469 - requested by nia
chat/dino: security fix

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.17 2021/02/05 16:18:51 kamil Exp $
# $NetBSD: Makefile,v 1.17.2.1 2021/05/31 12:51:13 bsiegert Exp $
DISTNAME= haxm-7.5.6
CATEGORIES= emulators
@ -31,7 +31,8 @@ PKG_FAIL_REASON+= "BSDSRCDIR/sys specifies non-existing directory ${BSDSRCDIR}/s
.include "../../mk/compiler.mk"
CFLAGS+= -Wno-error=address-of-packed-member
MAKE_FLAGS+= NOCLANGERROR=1
MAKE_FLAGS+= NOGCCERROR=1
KMOD= haxm.kmod
KMODULEDIR= stand/${MACHINE}/${OS_VERSION}/modules/haxm

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.268 2021/03/19 13:24:15 reinoud Exp $
# $NetBSD: Makefile,v 1.268.2.1 2021/04/10 08:43:22 bsiegert Exp $
DISTNAME= qemu-5.2.0
PKGREVISION= 4
PKGREVISION= 6
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
EXTRACT_SUFX= .tar.xz
@ -91,6 +91,16 @@ PKG_SYSCONFSUBDIR= qemu
INSTALLATION_DIRS= ${PKGMANDIR}/man1 share/doc/qemu
.include "../../mk/oss.buildlink3.mk"
.if ${OSS_TYPE} != "none"
SUBST_CLASSES+= oss
SUBST_STAGE.oss= pre-configure
SUBST_MESSAGE.oss= Correcting the path to the OSS device.
SUBST_FILES.oss+= audio/ossaudio.c
SUBST_SED.oss+= -e "s,/dev/dsp,${DEVOSSAUDIO},g"
.endif
UE_ARCHS+= aarch64 aarch64_be
UE_ARCHS+= alpha arm armeb cris
UE_ARCHS+= hppa
@ -166,10 +176,6 @@ post-install:
cd ${DESTDIR}${PREFIX} && \
${FIND} share/doc/qemu -path '*/_static/*' -type f -print > ${WRKDIR}/PLIST.STATIC
# On Darwin, qemu uses CoreAudio
.if ${OPSYS} != "Darwin"
.include "../../mk/oss.buildlink3.mk"
.endif
.include "../../archivers/lzo/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/jemalloc/buildlink3.mk"

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.1 2021/02/20 22:55:19 ryoon Exp $
# $NetBSD: Makefile,v 1.1.2.1 2021/04/10 08:43:28 bsiegert Exp $
DISTNAME= qemu-5.1.0
PKGREVISION= 13
PKGREVISION= 14
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
EXTRACT_SUFX= .tar.xz
@ -93,6 +93,16 @@ REPLACE_PERL+= scripts/texi2pod.pl
INSTALLATION_DIRS= ${PKGMANDIR}/man1 share/doc/qemu
.include "../../mk/oss.buildlink3.mk"
.if ${OSS_TYPE} != "none"
SUBST_CLASSES+= oss
SUBST_STAGE.oss= pre-configure
SUBST_MESSAGE.oss= Correcting the path to the OSS device.
SUBST_FILES.oss+= audio/ossaudio.c
SUBST_SED.oss+= -e "s,/dev/dsp,${DEVOSSAUDIO},g"
.endif
UE_ARCHS+= aarch64 aarch64_be
UE_ARCHS+= alpha arm armeb cris
UE_ARCHS+= hppa
@ -160,10 +170,6 @@ post-install:
cd ${DESTDIR}${PREFIX} && \
${FIND} share/doc/qemu -path '*/_static/*' -type f -print > ${WRKDIR}/PLIST.STATIC
# On Darwin, qemu uses CoreAudio
.if ${OPSYS} != "Darwin"
.include "../../mk/oss.buildlink3.mk"
.endif
.include "../../archivers/lzo/buildlink3.mk"
.include "../../devel/glib2/buildlink3.mk"
.include "../../devel/jemalloc/buildlink3.mk"

View File

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.147 2020/08/17 20:17:27 leot Exp $
# $NetBSD: Makefile,v 1.147.6.1 2021/05/25 14:54:36 bsiegert Exp $
.include "../../graphics/cairo/Makefile.common"
PKGREVISION= 2
PKGREVISION= 4
TEST_TARGET= check

View File

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.89 2020/07/09 14:38:55 leot Exp $
$NetBSD: distinfo,v 1.89.6.1 2021/05/25 14:54:36 bsiegert Exp $
SHA1 (cairo-1.16.0.tar.xz) = 00e81842ae5e81bb0343108884eb5205be0eac14
RMD160 (cairo-1.16.0.tar.xz) = cfd2ef6ec55b267e04600f6b1e36bb07f2566b35
@ -9,3 +9,4 @@ SHA1 (patch-ab) = 11f7e0e59bd5c51a8fdacb48dcf2f2fefdf3b768
SHA1 (patch-ac) = 1785bbef6bcab4781bf89e1b986a7eb96e5f2b64
SHA1 (patch-ad) = a1068a37113b162ccfe14d7f1bd0baa9df7e5530
SHA1 (patch-src_cairo-ft-font.c) = 97288d79380473869f1049c1d8955a2f6fa3d178
SHA1 (patch-src_cairo-image-compositor.c) = 83337d8211083d77b061c43b69da2b61080776d9

View File

@ -0,0 +1,45 @@
$NetBSD: patch-src_cairo-image-compositor.c,v 1.1.2.2 2021/05/25 14:54:36 bsiegert Exp $
Fix mask usage in image-compositor
https://gitlab.freedesktop.org/cairo/cairo/-/merge_requests/85
https://gitlab.freedesktop.org/cairo/cairo/-/issues/437
https://nvd.nist.gov/vuln/detail/CVE-2020-35492
--- src/cairo-image-compositor.c.orig 2018-08-17 01:10:53.000000000 +0000
+++ src/cairo-image-compositor.c
@@ -2601,14 +2601,14 @@ _inplace_src_spans (void *abstract_rende
unsigned num_spans)
{
cairo_image_span_renderer_t *r = abstract_renderer;
- uint8_t *m;
+ uint8_t *m, *base = (uint8_t*)pixman_image_get_data(r->mask);
int x0;
if (num_spans == 0)
return CAIRO_STATUS_SUCCESS;
x0 = spans[0].x;
- m = r->_buf;
+ m = base;
do {
int len = spans[1].x - spans[0].x;
if (len >= r->u.composite.run_length && spans[0].coverage == 0xff) {
@@ -2646,7 +2646,7 @@ _inplace_src_spans (void *abstract_rende
spans[0].x, y,
spans[1].x - spans[0].x, h);
- m = r->_buf;
+ m = base;
x0 = spans[1].x;
} else if (spans[0].coverage == 0x0) {
if (spans[0].x != x0) {
@@ -2675,7 +2675,7 @@ _inplace_src_spans (void *abstract_rende
#endif
}
- m = r->_buf;
+ m = base;
x0 = spans[1].x;
} else {
*m++ = spans[0].coverage;

View File

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.67 2021/02/14 14:41:18 taca Exp $
# $NetBSD: Makefile,v 1.67.2.1 2021/04/15 07:53:24 bsiegert Exp $
DISTNAME= # empty
PKGNAME= ruby-${RUBY_VERSION}
PKGREVISION= 1
CATEGORIES= lang ruby
MASTER_SITES= # empty
DISTFILES= # empty

View File

@ -1,4 +1,4 @@
# $NetBSD: rubyversion.mk,v 1.225 2021/03/21 12:39:52 taca Exp $
# $NetBSD: rubyversion.mk,v 1.225.2.5 2021/04/24 12:46:53 bsiegert Exp $
#
# This file determines which Ruby version is used as a dependency for
@ -213,10 +213,10 @@ RUBY_VERSION_REQD?= ${PKGNAME_REQD:C/ruby([0-9][0-9])-.*/\1/}
.endif
# current supported Ruby's version
RUBY25_VERSION= 2.5.8
RUBY26_VERSION= 2.6.6
RUBY27_VERSION= 2.7.2
RUBY30_VERSION= 3.0.0
RUBY25_VERSION= 2.5.9
RUBY26_VERSION= 2.6.7
RUBY27_VERSION= 2.7.3
RUBY30_VERSION= 3.0.1
# current API compatible version; used for version of shared library
RUBY25_API_VERSION= 2.5.0
@ -330,7 +330,7 @@ RUBY_OPENSSL_VERSION= 2.1.2
RUBY_OSTRUCT_VERSION= 0.1.0
RUBY_PRIME_VERSION= 0.1.0
RUBY_PSYCH_VERSION= 3.1.0
RUBY_REXML_VERSION= 3.1.9
RUBY_REXML_VERSION= 3.1.9.1
RUBY_RSS_VERSION= 0.2.7
RUBY_SCANF_VERSION= 1.0.0
RUBY_SDBM_VERSION= 1.0.0
@ -340,7 +340,7 @@ RUBY_STRSCAN_VERSION= 1.0.0
RUBY_SYNC_VERSION= 0.5.0
RUBY_THWAIT_VERSION= 0.1.0
RUBY_TRACER_VERSION= 0.1.0
RUBY_WEBRICK_VERSION= 1.4.2
RUBY_WEBRICK_VERSION= 1.4.4
RUBY_ZLIB_VERSION= 1.0.0
RUBY_SUFFIX= ${_RUBY_VER_MAJOR}${_RUBY_VER_MINOR}
@ -388,13 +388,13 @@ RUBY_OPENSSL_VERSION= 2.1.2
RUBY_OSTRUCT_VERSION= 0.2.0
RUBY_PRIME_VERSION= 0.1.1
RUBY_PSYCH_VERSION= 3.1.0
RUBY_REXML_VERSION= 3.2.3
RUBY_REXML_VERSION= 3.2.3.1
RUBY_RSS_VERSION= 0.2.8
RUBY_SDBM_VERSION= 1.0.0
RUBY_STRINGIO_VERSION= 0.1.0
RUBY_STRSCAN_VERSION= 1.0.3
RUBY_TRACER_VERSION= 0.1.0
RUBY_WEBRICK_VERSION= 1.6.0
RUBY_WEBRICK_VERSION= 1.6.1
RUBY_ZLIB_VERSION= 1.1.0
RUBY_SUFFIX= ${_RUBY_VER_MAJOR}${_RUBY_VER_MINOR}
@ -409,11 +409,11 @@ RUBY_RDOC_VERSION= 6.3.0
RUBY_MINITEST_VERSION= 5.14.2
RUBY_POWER_ASSERT_VERSION= 1.2.0
RUBY_RAKE_VERSION= 13.0.3
RUBY_RBS_VERSION= 1.0.0
RUBY_REXML_VERSION= 3.2.4
RUBY_RBS_VERSION= 1.0.4
RUBY_REXML_VERSION= 3.2.5
RUBY_RSS_VERSION= 0.2.9
RUBY_TEST_UNIT_VERSION= 3.3.7
RUBY_TYPEPROF_VERSION= 0.11.0
RUBY_TYPEPROF_VERSION= 0.12.0
# bundled extensions
RUBY_BIGDECIMAL_VERSION= 3.0.0
@ -423,7 +423,7 @@ RUBY_DIGEST_VERSION= 3.0.0
RUBY_ETC_VERSION= 1.2.0
RUBY_FCNTL_VERSION= 1.0.0
RUBY_FIDDLE_VERSION= 1.0.4
RUBY_IO_CONSOLE_VERSION= 0.5.6
RUBY_IO_CONSOLE_VERSION= 0.5.7
RUBY_JSON_VERSION= 2.5.1
RUBY_OPENSSL_VERSION= 2.2.0
RUBY_PSYCH_VERSION= 3.3.0
@ -433,7 +433,7 @@ RUBY_STRSCAN_VERSION= 3.0.0
RUBY_ZLIB_VERSION= 1.1.0
# bundled libraries
RUBY_BUNDLER_VERSION= 2.2.3
RUBY_BUNDLER_VERSION= 2.2.15
RUBY_CSV_VERSION= 3.1.9
RUBY_DID_YOU_MEAN_VERSION= 1.5.0
RUBY_FILEUTILS_VERSION= 1.5.0
@ -441,7 +441,7 @@ RUBY_FORWARDABLE_VERSION= 1.3.2
RUBY_GETOPTLONG_VERSION= 0.1.1
RUBY_IPADDR_VERSION= 1.2.2
RUBY_ERB_VERSION= 2.2.0
RUBY_IRB_VERSION= 1.3.0
RUBY_IRB_VERSION= 1.3.5
RUBY_LOGGER_VERSION= 1.4.3
RUBY_MATRIX_VERSION= 0.3.1
RUBY_MUTEX_M_VERSION= 0.1.1
@ -612,6 +612,9 @@ MAKE_ENV+= RUBY=${RUBY:Q} RUBY_VER=${RUBY_VER:Q} \
MAKEFLAGS+= RUBY_VER=${RUBY_VER:Q} \
RUBY_VERSION_DEFAULT=${RUBY_VERSION_DEFAULT:Q}
.if !empty(RUBY_RAILS_ACCEPTED)
MAKEFLAGS+= RUBY_RAILS_ACCEPTED=${RUBY_RAILS_ACCEPTED:Q}
.endif
PLIST_RUBY_DIRS= RUBY_INC=${RUBY_INC:Q} RUBY_ARCHINC=${RUBY_ARCHINC:Q} \
RUBY_LIB_BASE=${RUBY_LIB_BASE:Q} \

View File

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.18 2021/02/14 15:30:19 taca Exp $
# $NetBSD: Makefile,v 1.18.2.1 2021/04/15 07:04:00 bsiegert Exp $
DISTNAME= ${RUBY_DISTNAME}
PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION}
PKGREVISION= 1
CATEGORIES= lang ruby
MASTER_SITES= ${MASTER_SITE_RUBY}

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2020/04/01 15:25:26 taca Exp $
@comment $NetBSD: PLIST,v 1.4.8.1 2021/04/15 07:04:00 bsiegert Exp $
bin/erb${RUBY_SUFFIX}
bin/gem${RUBY_SUFFIX}
bin/irb${RUBY_SUFFIX}
@ -676,9 +676,8 @@ ${RUBY_LIB}/rubygems/source_local.rb
${RUBY_LIB}/rubygems/source_specific_file.rb
${RUBY_LIB}/rubygems/spec_fetcher.rb
${RUBY_LIB}/rubygems/specification.rb
${RUBY_LIB}/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem
${RUBY_LIB}/rubygems/stub_specification.rb
${RUBY_LIB}/rubygems/syck_hack.rb
${RUBY_LIB}/rubygems/test_case.rb
@ -1197,7 +1196,7 @@ ${GEM_HOME}/specifications/default/scanf-1.0.0.gemspec
${GEM_HOME}/specifications/default/sdbm-1.0.0.gemspec
${GEM_HOME}/specifications/default/stringio-0.0.1.gemspec
${GEM_HOME}/specifications/default/strscan-1.0.0.gemspec
${GEM_HOME}/specifications/default/webrick-1.4.2.gemspec
${GEM_HOME}/specifications/default/webrick-1.4.2.1.gemspec
${GEM_HOME}/specifications/default/zlib-1.0.0.gemspec
${GEM_HOME}/specifications/did_you_mean-${RUBY_DID_YOU_MEAN_VERSION}.gemspec
${GEM_HOME}/specifications/minitest-${RUBY_MINITEST_VERSION}.gemspec

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.14 2020/10/04 03:45:26 taca Exp $
$NetBSD: distinfo,v 1.14.4.1 2021/04/15 07:04:00 bsiegert Exp $
SHA1 (ruby-2.5.8.tar.xz) = d5ef8e8f28c098e6b7ea24924e0b0fee6e2f766c
RMD160 (ruby-2.5.8.tar.xz) = 885ffaf5c394ff8779bbc4ee5e6cf0976aa3d6cf
SHA512 (ruby-2.5.8.tar.xz) = 2886be764a454425c5beef2777c64a70ee0d048b07896b327633d904f5077fea4299526689f9e2ac4dcd2fc4811cf9a6c8ce75367ed35d29dfe1a54222872e0d
Size (ruby-2.5.8.tar.xz) = 11298404 bytes
SHA1 (ruby-2.5.9.tar.xz) = 7be8dc2e6e534eb36bfdf9f017af512996ec99a6
RMD160 (ruby-2.5.9.tar.xz) = 02536c6db7f40edd19f88d004458480372076f9e
SHA512 (ruby-2.5.9.tar.xz) = 239f73eb4049ae2654b648ab927b1f74643d38a5f29572e4bd4e6aa3c53c1df29e0a995fd90d4ab9d4b2ff073fd809b12df820ccb1ddf395684bba6be1855b7a
Size (ruby-2.5.9.tar.xz) = 11314448 bytes
SHA1 (patch-configure) = 965f31ec3ae2fb91479f02cb3b19ea7518685718
SHA1 (patch-ext_dbm_extconf.rb) = c998f8735db54b1ae2bc8b6caa359ce88bc7a45b
SHA1 (patch-lib_mkmf.rb) = 75d2261a8282a00cd5f811a5e629302d1667207e
@ -17,5 +17,4 @@ SHA1 (patch-lib_rubygems_install__update__options.rb) = 1e953b5a517a805fd7184e35
SHA1 (patch-lib_rubygems_installer.rb) = 7a9cfbd5d05c8901132d2bbf4555efa05e6363ec
SHA1 (patch-lib_rubygems_platform.rb) = a208bf6bce28a687511bace5ff8a773fb6bcf87d
SHA1 (patch-lib_rubygems_specification.rb) = e2ef2e6de4838168d11efef92f65d87d22c65ae4
SHA1 (patch-lib_webrick_httprequest.rb) = 6e9eedbdceee3a1e6d8e5ec2f160ce8f705237ea
SHA1 (patch-test_rubygems_test__gem.rb) = 80d646b95df81bacca6d277d2801dba16df291f5

View File

@ -3,4 +3,7 @@ bin/bundler @PREFIX@/bin/bundler@RUBY_SUFFIX@
bin/erb @PREFIX@/bin/erb@RUBY_SUFFIX@
bin/gem @PREFIX@/bin/gem@RUBY_SUFFIX@
bin/irb @PREFIX@/bin/irb@RUBY_SUFFIX@
bin/rake @PREFIX@/bin/rake@RUBY_SUFFIX@
bin/rdoc @PREFIX@/bin/rdoc@RUBY_SUFFIX@
bin/ri @PREFIX@/bin/ri@RUBY_SUFFIX@
bin/ruby @PREFIX@/bin/@RUBY_NAME@

View File

@ -1,8 +1,7 @@
# $NetBSD: Makefile,v 1.12 2021/02/14 15:31:02 taca Exp $
# $NetBSD: Makefile,v 1.12.2.1 2021/04/15 07:10:45 bsiegert Exp $
DISTNAME= ${RUBY_DISTNAME}
PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION}
PKGREVISION= 1
CATEGORIES= lang ruby
MASTER_SITES= ${MASTER_SITE_RUBY}

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.4 2020/04/01 15:21:57 taca Exp $
@comment $NetBSD: PLIST,v 1.4.8.1 2021/04/15 07:10:45 bsiegert Exp $
bin/bundle${RUBY_SUFFIX}
bin/bundler${RUBY_SUFFIX}
bin/erb${RUBY_SUFFIX}
@ -910,9 +910,8 @@ ${RUBY_LIB}/rubygems/source_specific_file.rb
${RUBY_LIB}/rubygems/spec_fetcher.rb
${RUBY_LIB}/rubygems/specification.rb
${RUBY_LIB}/rubygems/specification_policy.rb
${RUBY_LIB}/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem
${RUBY_LIB}/rubygems/stub_specification.rb
${RUBY_LIB}/rubygems/syck_hack.rb
${RUBY_LIB}/rubygems/test_case.rb

View File

@ -1,10 +1,10 @@
$NetBSD: distinfo,v 1.9 2020/10/04 03:41:12 taca Exp $
$NetBSD: distinfo,v 1.9.4.1 2021/04/15 07:10:45 bsiegert Exp $
SHA1 (ruby-2.6.6.tar.xz) = 4dc8d4f7abc1d498b7bac68e82efc01a849f300f
RMD160 (ruby-2.6.6.tar.xz) = 3091dc207ad5089305c105582e39f73ca9dfeb2b
SHA512 (ruby-2.6.6.tar.xz) = 86caf93dbf61d03781767ab5375a7edf4761f13ba08ccfefe16c0a7550499237e7390c2f72a95d42670d4fe76b2401b4218936187c62ec1572799e9e04c50d62
Size (ruby-2.6.6.tar.xz) = 11567284 bytes
SHA1 (patch-configure) = d66204877531fe147361adf843819c3db6d40919
SHA1 (ruby-2.6.7.tar.xz) = 1fd1448125a00cd7b9994637b5e561506de6a6d3
RMD160 (ruby-2.6.7.tar.xz) = 25d606c0338322e96e61a9e7a5821b1a5e543261
SHA512 (ruby-2.6.7.tar.xz) = ba6fc0a36af2a08cf1b008851e805f59ea1047724fc7b61d4bc674533b8f123cb12fa0969e9a3f57290477c0d75f974ca7e304836e4905bd96a737211df9bd21
Size (ruby-2.6.7.tar.xz) = 11591404 bytes
SHA1 (patch-configure) = ccfad7b5e35e87308e187e6c5fb3ffea57ad763d
SHA1 (patch-ext_dbm_extconf.rb) = c998f8735db54b1ae2bc8b6caa359ce88bc7a45b
SHA1 (patch-lib_mkmf.rb) = 75d2261a8282a00cd5f811a5e629302d1667207e
SHA1 (patch-lib_rdoc_encoding.rb) = 0e82d2942d9bfcb67dc7c994889d7bc5ec2ae85a
@ -17,6 +17,5 @@ SHA1 (patch-lib_rubygems_dependency__installer.rb) = 1776508907f17547ffe93f637d6
SHA1 (patch-lib_rubygems_install__update__options.rb) = 1e953b5a517a805fd7184e359fbc06e67a5ff9b3
SHA1 (patch-lib_rubygems_installer.rb) = bce2fe5bcc88ba15352c1e3017bdf97e19d0cbfa
SHA1 (patch-lib_rubygems_platform.rb) = 8608f9e29728101789a990d73b4a6780054dd278
SHA1 (patch-lib_webrick_httprequest.rb) = 71d2d01e27d23aa5f0b7bc77f2cda1fd85aeeab4
SHA1 (patch-test_rubygems_test__gem.rb) = 80d646b95df81bacca6d277d2801dba16df291f5
SHA1 (patch-thread__pthread.c) = ce3dfbc7e953cdd04522bcc8e443b60e541845ce

View File

@ -1,15 +1,14 @@
$NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
$NetBSD: patch-configure,v 1.2.18.1 2021/04/15 07:10:45 bsiegert Exp $
* Adding Interix support.
* Ignore doxygen.
* Ignore VCS.
* Handle SSP in pkgsrc.
* Put -std= in CFLAGS not CPPFLAGS.
* Fix argument for pthread_self() on NetBSD.
--- configure.orig 2019-01-30 10:41:14.000000000 +0000
--- configure.orig 2021-04-05 11:48:36.000000000 +0000
+++ configure
@@ -6048,7 +6048,7 @@ else
@@ -6064,7 +6064,7 @@ else
if test x"$target_alias" = x; then :
case "$target_os" in #(
@ -18,7 +17,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for real target cpu" >&5
$as_echo_n "checking for real target cpu... " >&6; }
@@ -8393,6 +8393,7 @@ fi
@@ -8431,6 +8431,7 @@ fi
stack_protector=no
;; #(
*) :
@ -26,7 +25,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
;;
esac
if test -z "${stack_protector+set}"; then :
@@ -10239,6 +10240,10 @@ esac
@@ -10277,6 +10278,10 @@ esac
ac_cv_func___builtin_setjmp=no
;; #(
@ -37,7 +36,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
*) :
;;
esac
@@ -21600,6 +21605,8 @@ else
@@ -21638,6 +21643,8 @@ else
# ifdef _MSC_VER
# include <malloc.h>
# define alloca _alloca
@ -46,21 +45,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
# else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
@@ -26151,11 +26158,11 @@ if ${rb_cv_func_pthread_setname_np_argum
else
rb_cv_func_pthread_setname_np_arguments=
# Linux,AIX, (pthread_self(), name)
- # NetBSD (pthread_self(), name, \"%s\")
+ # NetBSD (pthread_self(), \"%s\", name)
# Darwin (name)
for mac in \
"(pthread_self(), name)" \
- "(pthread_self(), name, \"%s\")" \
+ "(pthread_self(), \"%s\", name)" \
"(name)" \
; do
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -26749,7 +26756,9 @@ fi
@@ -26842,7 +26849,9 @@ fi
interix*) :
: ${LDSHARED='$(CC) -shared'}
XLDFLAGS="$XLDFLAGS -Wl,-E"
@ -70,7 +55,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
rb_cv_dlopen=yes ;; #(
freebsd*|dragonfly*) :
@@ -27991,7 +28000,7 @@ fi
@@ -28084,7 +28093,7 @@ fi
;; #(
freebsd*|dragonfly*) :
@ -79,7 +64,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
LIBRUBY_SONAME='$(LIBRUBY_SO)'
if test "$rb_cv_binary_elf" != "yes" ; then :
@@ -28070,9 +28079,10 @@ esac
@@ -28163,9 +28172,10 @@ esac
;; #(
darwin*) :
@ -92,7 +77,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
if test "$load_relative" = yes; then :
libprefix="@executable_path/../${libdir_basename}"
@@ -28093,7 +28103,12 @@ fi
@@ -28186,7 +28196,12 @@ fi
;; #(
interix*) :
@ -106,7 +91,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
;; #(
mingw*|cygwin*|mswin*) :
@@ -28275,7 +28290,7 @@ if test "$enable_rpath" = yes; then :
@@ -28368,7 +28383,7 @@ if test "$enable_rpath" = yes; then :
esac
rpathflag=`IFS="$PATH_SEPARATOR"
echo x "$rpathflag" |
@ -115,7 +100,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
`
LIBRUBY_RPATHFLAGS="$LIBRUBY_RPATHFLAGS${rpathflag}"
LIBRUBYARG_SHARED="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_SHARED"
@@ -28817,15 +28832,7 @@ fi
@@ -28910,15 +28925,7 @@ fi
if test "$install_doc" != no; then :
@ -132,7 +117,7 @@ $NetBSD: patch-configure,v 1.2 2019/03/14 09:57:54 jperkin Exp $
if test "$install_capi" != no -a -n "$DOXYGEN"; then :
CAPITARGET="capi"
@@ -30979,31 +30988,7 @@ which seems to be undefined. Please mak
@@ -31072,31 +31079,7 @@ which seems to be undefined. Please mak
"Makefile":F)
tmpmk=confmk$$.tmp
{

View File

@ -1,27 +0,0 @@
$NetBSD: patch-lib_webrick_httprequest.rb,v 1.1 2020/10/04 03:41:12 taca Exp $
Add fix for CVE-2020-25613.
--- lib/webrick/httprequest.rb.orig 2020-03-31 11:23:13.000000000 +0000
+++ lib/webrick/httprequest.rb
@@ -226,9 +226,9 @@ module WEBrick
raise HTTPStatus::BadRequest, "bad URI `#{@unparsed_uri}'."
end
- if /close/io =~ self["connection"]
+ if /\Aclose\z/io =~ self["connection"]
@keep_alive = false
- elsif /keep-alive/io =~ self["connection"]
+ elsif /\Akeep-alive\z/io =~ self["connection"]
@keep_alive = true
elsif @http_version < "1.1"
@keep_alive = false
@@ -503,7 +503,7 @@ module WEBrick
return unless socket
if tc = self['transfer-encoding']
case tc
- when /chunked/io then read_chunked(socket, block)
+ when /\Achunked\z/io then read_chunked(socket, block)
else raise HTTPStatus::NotImplemented, "Transfer-Encoding: #{tc}."
end
elsif self['content-length'] || @remaining_size

View File

@ -5,6 +5,7 @@ bin/gem @PREFIX@/bin/gem@RUBY_SUFFIX@
bin/irb @PREFIX@/bin/irb@RUBY_SUFFIX@
bin/racc @PREFIX@/bin/racc@RUBY_SUFFIX@
bin/racc2y @PREFIX@/bin/racc2y@RUBY_SUFFIX@
bin/rake @PREFIX@/bin/rake@RUBY_SUFFIX@
bin/rdoc @PREFIX@/bin/rdoc@RUBY_SUFFIX@
bin/ri @PREFIX@/bin/ri@RUBY_SUFFIX@
bin/ruby @PREFIX@/bin/@RUBY_NAME@

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.3 2020/10/04 03:29:25 taca Exp $
@comment $NetBSD: PLIST,v 1.3.4.1 2021/04/15 07:38:17 bsiegert Exp $
bin/bundle${RUBY_SUFFIX}
bin/bundler${RUBY_SUFFIX}
bin/erb${RUBY_SUFFIX}
@ -348,6 +348,14 @@ ${RUBY_LIB}/drb/timeridconv.rb
${RUBY_LIB}/drb/unix.rb
${RUBY_LIB}/drb/weakidconv.rb
${RUBY_LIB}/erb.rb
${RUBY_LIB}/exe/bundle
${RUBY_LIB}/exe/bundler
${RUBY_LIB}/exe/irb
${RUBY_LIB}/exe/racc
${RUBY_LIB}/exe/racc2y
${RUBY_LIB}/exe/rdoc
${RUBY_LIB}/exe/ri
${RUBY_LIB}/exe/y2racc
${RUBY_LIB}/expect.rb
${RUBY_LIB}/fileutils.rb
${RUBY_LIB}/find.rb
@ -1002,6 +1010,8 @@ ${RUBY_LIB}/rubygems/specification_policy.rb
${RUBY_LIB}/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem
${RUBY_LIB}/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem
${RUBY_LIB}/rubygems/stub_specification.rb
${RUBY_LIB}/rubygems/syck_hack.rb
${RUBY_LIB}/rubygems/test_case.rb

View File

@ -1,15 +1,15 @@
$NetBSD: distinfo,v 1.3 2020/10/04 03:29:25 taca Exp $
$NetBSD: distinfo,v 1.3.4.1 2021/04/15 07:38:17 bsiegert Exp $
SHA1 (ruby-2.7.2.tar.xz) = 82a1fe683460caa8edb6199707f2905634e5ffcc
RMD160 (ruby-2.7.2.tar.xz) = fa7fc107e0c2085bf997d7e4ec78ae5636c6bfe2
SHA512 (ruby-2.7.2.tar.xz) = 7972278b096aa768c7adf2befd26003e18781a29ca317640317d30d93d6e963ded197724c8e2f1dfe1e838c5647176d414a74732a62e931fb50d6f2e0f777349
Size (ruby-2.7.2.tar.xz) = 12037052 bytes
SHA1 (patch-configure) = fd465910fe2cb6d6b1530e1071062591e84a9fd9
SHA1 (ruby-2.7.3.tar.xz) = ce3d5203d5ab734df01e602c05f68f25249dc3e0
RMD160 (ruby-2.7.3.tar.xz) = f02628d9137618e6d0833b450cd8e78a06579c31
SHA512 (ruby-2.7.3.tar.xz) = b755d418b3bab2f9f6a8893afd13869269f17065643dde78b9e85ae3538a6d0617893db6e9c3908e00a40c7577a5c912a7c822d8f245cdcfb857be76dfb66c1e
Size (ruby-2.7.3.tar.xz) = 12073568 bytes
SHA1 (patch-configure) = 5ee800f6824b18efd06e56a659235ea784819f2e
SHA1 (patch-ext_dbm_extconf.rb) = c998f8735db54b1ae2bc8b6caa359ce88bc7a45b
SHA1 (patch-lib_mkmf.rb) = 4a3cd18548dbdf43a13695d4e76f817c0347e335
SHA1 (patch-lib_rdoc_encoding.rb) = 0e82d2942d9bfcb67dc7c994889d7bc5ec2ae85a
SHA1 (patch-lib_rdoc_ri_driver.rb) = f4d3e59e35b608acd4edc17916142c7f033e6198
SHA1 (patch-lib_rubygems.rb) = b38f58a852e920bed77a4be281d3703d26515ad0
SHA1 (patch-lib_rubygems.rb) = 6f5ff6ca504c38ec3a521027dc4df8fa9d6683c3
SHA1 (patch-lib_rubygems_commands_setup__command.rb) = 181bb7554d760182588b0e1b0aafb84c317f41ad
SHA1 (patch-lib_rubygems_defaults.rb) = 79cc5bb308d5ad4ee88f4fbcbb6f40663c05c05d
SHA1 (patch-lib_rubygems_dependency__installer.rb) = 1776508907f17547ffe93f637d6f18d335061d76

View File

@ -1,13 +1,12 @@
$NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
$NetBSD: patch-configure,v 1.1.10.1 2021/04/15 07:38:17 bsiegert Exp $
* Adding Interix support.
* Ignore doxygen.
* Ignore VCS.
* Handle SSP in pkgsrc.
* Put -std= in CFLAGS not CPPFLAGS.
* Fix argument for pthread_self() on NetBSD.
--- configure.orig 2019-12-17 15:08:45.000000000 +0000
--- configure.orig 2021-04-05 12:39:40.000000000 +0000
+++ configure
@@ -6469,7 +6469,7 @@ else
if test x"$target_alias" = x; then :
@ -18,7 +17,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for real target cpu" >&5
$as_echo_n "checking for real target cpu... " >&6; }
@@ -8831,6 +8831,7 @@ fi
@@ -8839,6 +8839,7 @@ fi
stack_protector=no
;; #(
*) :
@ -26,7 +25,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
;;
esac
if test -z "${stack_protector+set}"; then :
@@ -10695,6 +10696,10 @@ esac
@@ -10703,6 +10704,10 @@ esac
ac_cv_func___builtin_setjmp=no
;; #(
@ -37,7 +36,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
*) :
;;
esac
@@ -22269,6 +22274,8 @@ else
@@ -22277,6 +22282,8 @@ else
# ifdef _MSC_VER
# include <malloc.h>
# define alloca _alloca
@ -46,21 +45,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
# else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
@@ -26817,11 +26824,11 @@ if ${rb_cv_func_pthread_setname_np_argum
else
rb_cv_func_pthread_setname_np_arguments=
# Linux,AIX, (pthread_self(), name)
- # NetBSD (pthread_self(), name, \"%s\")
+ # NetBSD (pthread_self(), \"%s\", name)
# Darwin (name)
for mac in \
"(pthread_self(), name)" \
- "(pthread_self(), name, \"%s\")" \
+ "(pthread_self(), \"%s\", name)" \
"(name)" \
; do
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -27415,7 +27422,9 @@ fi
@@ -27482,7 +27489,9 @@ fi
interix*) :
: ${LDSHARED='$(CC) -shared'}
XLDFLAGS="$XLDFLAGS -Wl,-E"
@ -70,7 +55,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
rb_cv_dlopen=yes ;; #(
freebsd*|dragonfly*) :
@@ -28676,7 +28685,7 @@ fi
@@ -28743,7 +28752,7 @@ fi
;; #(
freebsd*|dragonfly*) :
@ -79,7 +64,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
LIBRUBY_SONAME='$(LIBRUBY_SO)'
if test "$rb_cv_binary_elf" != "yes" ; then :
@@ -28755,9 +28764,10 @@ esac
@@ -28822,9 +28831,10 @@ esac
;; #(
darwin*) :
@ -92,7 +77,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
if test "$load_relative" = yes; then :
libprefix="@executable_path/../${libdir_basename}"
@@ -28778,7 +28788,12 @@ fi
@@ -28845,7 +28855,12 @@ fi
;; #(
interix*) :
@ -106,7 +91,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
;; #(
mingw*|cygwin*|mswin*) :
@@ -28960,7 +28975,7 @@ if test "$enable_rpath" = yes; then :
@@ -29027,7 +29042,7 @@ if test "$enable_rpath" = yes; then :
esac
rpathflag=`IFS="$PATH_SEPARATOR"
echo x "$rpathflag" |
@ -115,7 +100,7 @@ $NetBSD: patch-configure,v 1.1 2020/03/15 15:26:22 taca Exp $
`
LIBRUBY_RPATHFLAGS="$LIBRUBY_RPATHFLAGS${rpathflag}"
LIBRUBYARG_SHARED="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_SHARED"
@@ -31684,19 +31699,7 @@ which seems to be undefined. Please mak
@@ -31751,19 +31766,7 @@ which seems to be undefined. Please mak
"Makefile":F)
tmpmk=confmk$$.tmp
{

View File

@ -1,10 +1,10 @@
$NetBSD: patch-lib_rubygems.rb,v 1.1 2020/03/15 15:26:22 taca Exp $
$NetBSD: patch-lib_rubygems.rb,v 1.1.10.1 2021/04/15 07:38:17 bsiegert Exp $
* Add install_root option for pkgsrc's rubygems support.
--- lib/rubygems.rb.orig 2018-12-23 00:20:49.000000000 +0000
--- lib/rubygems.rb.orig 2021-04-05 12:39:38.000000000 +0000
+++ lib/rubygems.rb
@@ -317,10 +317,16 @@ module Gem
@@ -311,10 +311,16 @@ module Gem
##
# The path where gem executables are to be installed.
@ -25,16 +25,16 @@ $NetBSD: patch-lib_rubygems.rb,v 1.1 2020/03/15 15:26:22 taca Exp $
end
##
@@ -661,7 +667,7 @@ An Array (#{env.inspect}) was passed in
@@ -657,7 +663,7 @@ An Array (#{env.inspect}) was passed in
return i if path.instance_variable_defined?(:@gem_prelude_index)
end
- index = $LOAD_PATH.index RbConfig::CONFIG['sitelibdir']
+ index = $LOAD_PATH.index RbConfig::CONFIG['vendordir']
index
index || 0
end
@@ -835,6 +841,7 @@ An Array (#{env.inspect}) was passed in
@@ -849,6 +855,7 @@ An Array (#{env.inspect}) was passed in
prefix = File.dirname RUBYGEMS_DIR
if prefix != File.expand_path(RbConfig::CONFIG['sitelibdir']) and

View File

@ -10,3 +10,6 @@ bin/rdoc @PREFIX@/bin/rdoc@RUBY_SUFFIX@
bin/ri @PREFIX@/bin/ri@RUBY_SUFFIX@
bin/ruby @PREFIX@/bin/@RUBY_NAME@
bin/typeprof @PREFIX@/bin/typeprof@RUBY_SUFFIX@
man/man1/erb.1 @PREFIX@/man/man1/erb@RUBY_SUFFIX@.1
man/man1/irb.1 @PREFIX@/man/man1/irb@RUBY_SUFFIX@.1
man/man1/ruby.1 @PREFIX@/man/man1/ruby@RUBY_SUFFIX@.1

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2021/02/14 14:32:41 taca Exp $
# $NetBSD: Makefile,v 1.1.2.1 2021/04/15 07:53:24 bsiegert Exp $
DISTNAME= ${RUBY_DISTNAME}
PKGNAME= ${RUBY_PKGPREFIX}-base-${RUBY_VERSION}
@ -91,7 +91,7 @@ OPENSSL_EXAMPLES= c_rehash.rb cert2text.rb certstore.rb cipher.rb \
crlstore.rb echo_cli.rb echo_svr.rb gen_csr.rb \
smime_read.rb smime_write.rb wget.rb
REPLACE_RUBY= \
REPLACE_RUBY= \
libexec/bundle libexec/bundler libexec/erb libexec/irb \
libexec/racc libexec/rdoc libexec/ri \
.bundle/gems/power_assert-${RUBY_POWER_ASSERT_VERSION}/bin/console \
@ -103,16 +103,19 @@ REPLACE_RUBY= \
.bundle/gems/rake-${RUBY_RAKE_VERSION}/exe/rake \
.bundle/gems/rbs-${RUBY_RBS_VERSION}/exe/rbs \
.bundle/gems/typeprof-${RUBY_TYPEPROF_VERSION}/exe/typeprof
REPLACE_SH= \
REPLACE_SH= \
.bundle/gems/rake-${RUBY_RAKE_VERSION}/bin/setup
REPLACE_RUBY_DIRS= ext lib sample
INSTALLATION_DIRS+= bin libexec ${PKGMANDIR}/man1 \
${RUBY_DOC}/csv/arguments ${RUBY_DOC}/csv/options/common \
${RUBY_DOC}/csv/options/generating \
${RUBY_DOC}/csv/options/parsing ${RUBY_DOC}/csv/recipes \
${RUBY_DOC}/images ${RUBY_DOC}/irb ${RUBY_DOC}/pty \
${RUBY_DOC}/ripper ${RUBY_DOC}/stringio ${RUBY_DOC}/syntax \
${RUBY_EG}/bigdecimal ${RUBY_EG}/pty
${RUBY_DOC}/csv/arguments \
${RUBY_DOC}/csv/options/common \
${RUBY_DOC}/csv/options/generating \
${RUBY_DOC}/csv/options/parsing \
${RUBY_DOC}/csv/recipes \
${RUBY_DOC}/images ${RUBY_DOC}/irb ${RUBY_DOC}/pty \
${RUBY_DOC}/ripper \
${RUBY_DOC}/stringio ${RUBY_DOC}/syntax \
${RUBY_EG}/bigdecimal ${RUBY_EG}/pty
# ${RUBY_ARCHINC} ${RUBY_ARCHLIB}
EMPTY_DIRS= generator/template markup/simple_markup

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.1 2021/02/14 14:32:41 taca Exp $
@comment $NetBSD: PLIST,v 1.1.2.1 2021/04/15 07:53:24 bsiegert Exp $
bin/bundle${RUBY_SUFFIX}
bin/bundler${RUBY_SUFFIX}
bin/erb${RUBY_SUFFIX}
@ -282,30 +282,55 @@ ${RUBY_LIB}/bundler/installer/standalone.rb
${RUBY_LIB}/bundler/lazy_specification.rb
${RUBY_LIB}/bundler/lockfile_generator.rb
${RUBY_LIB}/bundler/lockfile_parser.rb
${RUBY_LIB}/bundler/man/bundle-add.1
${RUBY_LIB}/bundler/man/bundle-add.1.ronn
${RUBY_LIB}/bundler/man/bundle-binstubs.1
${RUBY_LIB}/bundler/man/bundle-binstubs.1.ronn
${RUBY_LIB}/bundler/man/bundle-cache.1
${RUBY_LIB}/bundler/man/bundle-cache.1.ronn
${RUBY_LIB}/bundler/man/bundle-check.1
${RUBY_LIB}/bundler/man/bundle-check.1.ronn
${RUBY_LIB}/bundler/man/bundle-clean.1
${RUBY_LIB}/bundler/man/bundle-clean.1.ronn
${RUBY_LIB}/bundler/man/bundle-config.1
${RUBY_LIB}/bundler/man/bundle-config.1.ronn
${RUBY_LIB}/bundler/man/bundle-doctor.1
${RUBY_LIB}/bundler/man/bundle-doctor.1.ronn
${RUBY_LIB}/bundler/man/bundle-exec.1
${RUBY_LIB}/bundler/man/bundle-exec.1.ronn
${RUBY_LIB}/bundler/man/bundle-gem.1
${RUBY_LIB}/bundler/man/bundle-gem.1.ronn
${RUBY_LIB}/bundler/man/bundle-info.1
${RUBY_LIB}/bundler/man/bundle-info.1.ronn
${RUBY_LIB}/bundler/man/bundle-init.1
${RUBY_LIB}/bundler/man/bundle-init.1.ronn
${RUBY_LIB}/bundler/man/bundle-inject.1
${RUBY_LIB}/bundler/man/bundle-inject.1.ronn
${RUBY_LIB}/bundler/man/bundle-install.1
${RUBY_LIB}/bundler/man/bundle-install.1.ronn
${RUBY_LIB}/bundler/man/bundle-list.1
${RUBY_LIB}/bundler/man/bundle-list.1.ronn
${RUBY_LIB}/bundler/man/bundle-lock.1
${RUBY_LIB}/bundler/man/bundle-lock.1.ronn
${RUBY_LIB}/bundler/man/bundle-open.1
${RUBY_LIB}/bundler/man/bundle-open.1.ronn
${RUBY_LIB}/bundler/man/bundle-outdated.1
${RUBY_LIB}/bundler/man/bundle-outdated.1.ronn
${RUBY_LIB}/bundler/man/bundle-platform.1
${RUBY_LIB}/bundler/man/bundle-platform.1.ronn
${RUBY_LIB}/bundler/man/bundle-pristine.1
${RUBY_LIB}/bundler/man/bundle-pristine.1.ronn
${RUBY_LIB}/bundler/man/bundle-remove.1
${RUBY_LIB}/bundler/man/bundle-remove.1.ronn
${RUBY_LIB}/bundler/man/bundle-show.1
${RUBY_LIB}/bundler/man/bundle-show.1.ronn
${RUBY_LIB}/bundler/man/bundle-update.1
${RUBY_LIB}/bundler/man/bundle-update.1.ronn
${RUBY_LIB}/bundler/man/bundle-viz.1
${RUBY_LIB}/bundler/man/bundle-viz.1.ronn
${RUBY_LIB}/bundler/man/bundle.1
${RUBY_LIB}/bundler/man/bundle.1.ronn
${RUBY_LIB}/bundler/man/gemfile.5
${RUBY_LIB}/bundler/man/gemfile.5.ronn
${RUBY_LIB}/bundler/match_platform.rb
${RUBY_LIB}/bundler/mirror.rb
@ -353,6 +378,7 @@ ${RUBY_LIB}/bundler/templates/Executable.bundler
${RUBY_LIB}/bundler/templates/Executable.standalone
${RUBY_LIB}/bundler/templates/Gemfile
${RUBY_LIB}/bundler/templates/gems.rb
${RUBY_LIB}/bundler/templates/newgem/CHANGELOG.md.tt
${RUBY_LIB}/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt
${RUBY_LIB}/bundler/templates/newgem/Gemfile.tt
${RUBY_LIB}/bundler/templates/newgem/LICENSE.txt.tt
@ -541,11 +567,15 @@ ${RUBY_LIB}/irb/cmd/fork.rb
${RUBY_LIB}/irb/cmd/help.rb
${RUBY_LIB}/irb/cmd/info.rb
${RUBY_LIB}/irb/cmd/load.rb
${RUBY_LIB}/irb/cmd/ls.rb
${RUBY_LIB}/irb/cmd/measure.rb
${RUBY_LIB}/irb/cmd/nop.rb
${RUBY_LIB}/irb/cmd/pushws.rb
${RUBY_LIB}/irb/cmd/show_source.rb
${RUBY_LIB}/irb/cmd/subirb.rb
${RUBY_LIB}/irb/cmd/whereami.rb
${RUBY_LIB}/irb/color.rb
${RUBY_LIB}/irb/color_printer.rb
${RUBY_LIB}/irb/completion.rb
${RUBY_LIB}/irb/context.rb
${RUBY_LIB}/irb/easter-egg.rb
@ -959,6 +989,7 @@ ${RUBY_LIB}/rubygems/config_file.rb
${RUBY_LIB}/rubygems/core_ext/kernel_gem.rb
${RUBY_LIB}/rubygems/core_ext/kernel_require.rb
${RUBY_LIB}/rubygems/core_ext/kernel_warn.rb
${RUBY_LIB}/rubygems/core_ext/tcpsocket_init.rb
${RUBY_LIB}/rubygems/defaults.rb
${RUBY_LIB}/rubygems/dependency.rb
${RUBY_LIB}/rubygems/dependency_installer.rb
@ -1393,7 +1424,6 @@ ${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/class.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/comparable.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/complex.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/constants.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/data.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/deprecated.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/dir.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/core/encoding.rbs
@ -1549,6 +1579,7 @@ ${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/date/0/date_time.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/dbm/0/dbm.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/erb/0/erb.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/fiber/0/fiber.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/fileutils/0/fileutils.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/find/0/find.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/forwardable/0/forwardable.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/ipaddr/0/ipaddr.rbs
@ -1561,6 +1592,7 @@ ${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/logger/0/severity.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/monitor/0/monitor.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/mutex_m/0/mutex_m.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/pathname/0/pathname.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/prettyprint/0/prettyprint.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/prime/0/integer-extension.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/prime/0/prime.rbs
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/stdlib/pstore/0/pstore.rbs
@ -1589,12 +1621,22 @@ ${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/steep/Gemfile
${GEM_HOME}/gems/rbs-${RUBY_RBS_VERSION}/steep/Gemfile.lock
${GEM_HOME}/gems/rdoc-${RUBY_RDOC_VERSION}/exe/rdoc
${GEM_HOME}/gems/rdoc-${RUBY_RDOC_VERSION}/exe/ri
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/.travis.yml
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/Gemfile
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/LICENSE.txt
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/NEWS.md
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/README.md
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/Rakefile
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/context.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/rdoc/child.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/rdoc/document.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/rdoc/element.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/rdoc/node.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/rdoc/parent.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/child_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/document_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/element_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/master_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/node_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/doc/rexml/tasks/tocs/parent_toc.rdoc
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/lib/rexml.rb
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/lib/rexml/attlistdecl.rb
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/lib/rexml/attribute.rb
${GEM_HOME}/gems/rexml-${RUBY_REXML_VERSION}/lib/rexml/cdata.rb
@ -2235,7 +2277,7 @@ ${GEM_HOME}/specifications/default/psych-${RUBY_PSYCH_VERSION}.gemspec
${GEM_HOME}/specifications/default/racc-${RUBY_RACC_VERSION}.gemspec
${GEM_HOME}/specifications/default/rdoc-${RUBY_RDOC_VERSION}.gemspec
${GEM_HOME}/specifications/default/readline-0.0.2.gemspec
${GEM_HOME}/specifications/default/reline-0.2.0.gemspec
${GEM_HOME}/specifications/default/reline-0.2.5.gemspec
${GEM_HOME}/specifications/default/resolv-0.2.0.gemspec
${GEM_HOME}/specifications/default/resolv-replace-0.1.0.gemspec
${GEM_HOME}/specifications/default/rinda-0.1.0.gemspec
@ -2249,7 +2291,7 @@ ${GEM_HOME}/specifications/default/syslog-0.1.0.gemspec
${GEM_HOME}/specifications/default/tempfile-0.1.1.gemspec
${GEM_HOME}/specifications/default/time-0.1.0.gemspec
${GEM_HOME}/specifications/default/timeout-0.1.1.gemspec
${GEM_HOME}/specifications/default/tmpdir-0.1.1.gemspec
${GEM_HOME}/specifications/default/tmpdir-0.1.2.gemspec
${GEM_HOME}/specifications/default/tracer-${RUBY_TRACER_VERSION}.gemspec
${GEM_HOME}/specifications/default/tsort-0.1.0.gemspec
${GEM_HOME}/specifications/default/un-0.1.0.gemspec
@ -2265,35 +2307,10 @@ ${GEM_HOME}/specifications/rexml-${RUBY_REXML_VERSION}.gemspec
${GEM_HOME}/specifications/rss-${RUBY_RSS_VERSION}.gemspec
${GEM_HOME}/specifications/test-unit-${RUBY_TEST_UNIT_VERSION}.gemspec
${GEM_HOME}/specifications/typeprof-${RUBY_TYPEPROF_VERSION}.gemspec
man/man1/bundle-add${RUBY_SUFFIX}.1
man/man1/bundle-binstubs${RUBY_SUFFIX}.1
man/man1/bundle-cache${RUBY_SUFFIX}.1
man/man1/bundle-check${RUBY_SUFFIX}.1
man/man1/bundle-clean${RUBY_SUFFIX}.1
man/man1/bundle-config${RUBY_SUFFIX}.1
man/man1/bundle-doctor${RUBY_SUFFIX}.1
man/man1/bundle-exec${RUBY_SUFFIX}.1
man/man1/bundle-gem${RUBY_SUFFIX}.1
man/man1/bundle-info${RUBY_SUFFIX}.1
man/man1/bundle-init${RUBY_SUFFIX}.1
man/man1/bundle-inject${RUBY_SUFFIX}.1
man/man1/bundle-install${RUBY_SUFFIX}.1
man/man1/bundle-list${RUBY_SUFFIX}.1
man/man1/bundle-lock${RUBY_SUFFIX}.1
man/man1/bundle-open${RUBY_SUFFIX}.1
man/man1/bundle-outdated${RUBY_SUFFIX}.1
man/man1/bundle-platform${RUBY_SUFFIX}.1
man/man1/bundle-pristine${RUBY_SUFFIX}.1
man/man1/bundle-remove${RUBY_SUFFIX}.1
man/man1/bundle-show${RUBY_SUFFIX}.1
man/man1/bundle-update${RUBY_SUFFIX}.1
man/man1/bundle-viz${RUBY_SUFFIX}.1
man/man1/bundle${RUBY_SUFFIX}.1
man/man1/erb${RUBY_SUFFIX}.1
man/man1/irb${RUBY_SUFFIX}.1
man/man1/ri${RUBY_SUFFIX}.1
man/man1/${RUBY_NAME}.1
man/man5/gemfile${RUBY_SUFFIX}.5
man/man1/ruby${RUBY_SUFFIX}.1
${RUBY_DOC}/.document
${RUBY_DOC}/BSDL
${RUBY_DOC}/COPYING

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.1 2021/02/14 14:32:41 taca Exp $
$NetBSD: distinfo,v 1.1.2.1 2021/04/15 07:53:24 bsiegert Exp $
SHA1 (ruby-3.0.0.tar.xz) = c142899d70a1326c5a71311b17168f98c15e5d89
RMD160 (ruby-3.0.0.tar.xz) = b4e2b55d8164b8eb384b9570b6d6962c8ee65bf3
SHA512 (ruby-3.0.0.tar.xz) = 2a23c2894e62e24bb20cec6b2a016b66d7df05083668726b6f70af8338211cfec417aa3624290d1f5ccd130f65ee7b52b5db7d428abc4a9460459c9a5dd1a450
Size (ruby-3.0.0.tar.xz) = 14374176 bytes
SHA1 (ruby-3.0.1.tar.xz) = 3c5443960fe860ff7055bc02a4793140b9fb9b28
RMD160 (ruby-3.0.1.tar.xz) = 0c5823c25117ddec20f9679a5148914fc5c530bb
SHA512 (ruby-3.0.1.tar.xz) = 97d2e883656060846b304368d9d836e2f3ef39859c36171c9398a0573818e4ed75bfd7460f901a9553f7f53518c505327a66e74f83704a881469f5ac61fe13d7
Size (ruby-3.0.1.tar.xz) = 14486780 bytes
SHA1 (patch-common.mk) = c23eed58427b2fd4ba8fdb3692f609701a666c6d
SHA1 (patch-configure) = a56184876caac5c24b2c2925f364d88c3ebc5662
SHA1 (patch-ext_dbm_extconf.rb) = c998f8735db54b1ae2bc8b6caa359ce88bc7a45b

View File

@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.220 2021/03/29 08:45:34 he Exp $
# $NetBSD: Makefile,v 1.220.2.2 2021/04/24 12:48:46 bsiegert Exp $
DISTNAME= rustc-1.49.0-src
PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//}
PKGREVISION= 1
CATEGORIES= lang
MASTER_SITES= https://static.rust-lang.org/dist/
@ -215,7 +216,7 @@ DISTFILES:= ${DISTFILES} ${RUST_STAGE0} ${RUST_STD_STAGE0}
pre-build-fix:
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) || make(distinfo) || make (makesum) || make(mdi)
RUST_STAGE0_VER= 1.48.0
RUST_STAGE0_VER= 1.49.0
RUST_ARCH= i686-unknown-netbsd
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
RUST_STD_STAGE0:= rust-std-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
@ -240,7 +241,7 @@ DISTFILES:= ${DISTFILES} ${RUST_STAGE0} ${RUST_STD_STAGE0}
pre-build-fix:
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-powerpc) || make(distinfo) || make (makesum) || make(mdi)
RUST_STAGE0_VER= 1.48.0
RUST_STAGE0_VER= 1.49.0
RUST_ARCH= powerpc-unknown-netbsd
# Cross-built against NetBSD 9.0
@ -264,7 +265,7 @@ SITES.${RUST_STD_STAGE0}= ${MASTER_SITE_LOCAL:=rust/}
pre-build-fix:
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-aarch64) || make(distinfo) || make (makesum) || make(mdi)
RUST_STAGE0_VER= 1.48.0
RUST_STAGE0_VER= 1.49.0
RUST_ARCH= aarch64-unknown-netbsd
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
RUST_STD_STAGE0:= rust-std-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
@ -285,7 +286,7 @@ pre-build-fix:
.endif
.if !empty(MACHINE_PLATFORM:MNetBSD-*-earmv7hf) || make(distinfo) || make (makesum) || make(mdi)
RUST_ARCH= armv7-unknown-netbsd-eabihf
RUST_STAGE0_VER= 1.48.0
RUST_STAGE0_VER= 1.49.0
RUST_STAGE0:= rust-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
RUST_STD_STAGE0:= rust-std-${RUST_STAGE0_VER}-${RUST_ARCH}.tar.gz
DISTFILES:= ${DISTFILES} ${RUST_STAGE0} ${RUST_STD_STAGE0}
@ -532,42 +533,15 @@ stage0-bootstrap: install
## Issues specific to: bootstrap AND NetBSD follow
# (I wish this worked on powerpc, but it doesn't since
# I can't build with the internal LLVM, ref.
# https://github.com/rust-lang/rust/issues/65862)
.if (${OPSYS} == "NetBSD") && \
((${MACHINE_ARCH} == "i386") || \
(${MACHINE_ARCH} == "sparc64") || \
(${MACHINE_ARCH} == "powerpc")) \
&& (empty(OS_VERSION:M[012345678].*) || \
!empty(OS_VERSION:M8.99.*))
# Bootstrap kits are built on 8.0, so that a single bootstrap can run
# on multiple systems. Thus later versions need the compat80 package.
# \todo Explain why this is limited to a small list of architectures,
# and in particular why not x86_64.
DEPENDS+= compat80>=0:../../emulators/compat80
.endif
.if (${OPSYS} == "NetBSD") && \
((${MACHINE_ARCH} == "i386")) \
&& (empty(OS_VERSION:M[012345678].*) || \
!empty(OS_VERSION:M8.99.*))
# Bootstrap kits use openssl, which on NetBSD 8 comes from pkgsrc.
# Therefore the pkgsrc openssl libs need to be present as well.
# The 1.44.1 i686 bootstrap links with pkgsrc openssl. The others do
# not. When the package is built,
# cargo links against pkgsrc openssl, so it must be a run-time
# dependency as well. Forcing USE_BUILTIN.openssl=no results in a
# mysterious heimdal error, but straight DEPENDS seems to result in a
# satisfactory package build.
# While this is icky, it is for the time being better than no rust package.
DEPENDS+= openssl>=1.1:../../security/openssl
# rust i386 bootstraps are built for 8.0 and still depend on libstdc++.so.8.
# Pull in compat80 on 9.x and newer.
.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) && empty(OS_VERSION:M8.*)
BUILD_DEPENDS+= compat80>=0:../../emulators/compat80
.endif
# This is for when we build natively:
.if ((${OPSYS} == "NetBSD") && \
((${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "i386")))
.if !empty(MACHINE_PLATFORM:MNetBSD-*-powerpc) || \
!empty(MACHINE_PLATFORM:MNetBSD-*-i386)
# LLVM needs libatomic for 64-bit atomics on powerpc and i386
.include "../../devel/libatomic/buildlink3.mk"
# Make those libraries available via a unique directory:

View File

@ -1,13 +1,5 @@
$NetBSD: distinfo,v 1.127 2021/03/29 08:45:34 he Exp $
$NetBSD: distinfo,v 1.127.2.1 2021/04/10 08:36:05 bsiegert Exp $
SHA1 (rust-1.48.0-aarch64-unknown-netbsd.tar.gz) = 046aa86beba3aebd546f12e5234bf71ada68435e
RMD160 (rust-1.48.0-aarch64-unknown-netbsd.tar.gz) = c83031fb1471a1eacc19667f8f6bd0f65031b66c
SHA512 (rust-1.48.0-aarch64-unknown-netbsd.tar.gz) = ccd5ccf317580862b1af57f8ee1ed0632d8ca66109c4a80451239e45bbdb9176894a362bcc01e714a1d6e36030953e00d092ef33deb3e0f756b632cb70bf923a
Size (rust-1.48.0-aarch64-unknown-netbsd.tar.gz) = 199757993 bytes
SHA1 (rust-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = b6ec3171cb18b4b1dea616f025656c039121b28f
RMD160 (rust-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = b438307f57962c3b4c2e9cb023066c4cc5f7edd2
SHA512 (rust-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = 0765047c3780be51a9c81426380b16624a301789c5260bb47884eee5847903907c58b8e6227729b50ce3c20797160158f797ee0f1c1c55cb3cff3a6a149c5a28
Size (rust-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = 194224743 bytes
SHA1 (rust-1.48.0-i686-unknown-freebsd.tar.gz) = a5c6f5d2c820a936c8a38c24b25df4b4fa23423c
RMD160 (rust-1.48.0-i686-unknown-freebsd.tar.gz) = 98dc484371f80b02a3f9fb60a3cd9467c4465df0
SHA512 (rust-1.48.0-i686-unknown-freebsd.tar.gz) = 17affc369bb539656515fe8c55a9803dc50e06158f744111515382fbf7e7570502d909203e77cde8e986c8ea6011fd505af999884fb62423b630a48f48e0e137
@ -16,18 +8,6 @@ SHA1 (rust-1.48.0-i686-unknown-linux-gnu.tar.gz) = cb4e5168c67dec2b76f02b1e8353b
RMD160 (rust-1.48.0-i686-unknown-linux-gnu.tar.gz) = b326b227dc3a8713567a54d75648fbc65345e32e
SHA512 (rust-1.48.0-i686-unknown-linux-gnu.tar.gz) = af4335e5e50c93711bb304bb65b777dee9affccd27eda1a774ab3bfab8ddb9027bcc9942d8fcedc975eaa0d38b3e46aff67632d1d5eab568825c5aa0c0340ec8
Size (rust-1.48.0-i686-unknown-linux-gnu.tar.gz) = 267825837 bytes
SHA1 (rust-1.48.0-i686-unknown-netbsd.tar.gz) = ffcda2e4d67f8e7c5b65996e05e2922de7a9654f
RMD160 (rust-1.48.0-i686-unknown-netbsd.tar.gz) = 41ceb909bf08f45e5ea83108a0a2b5e44cab19a4
SHA512 (rust-1.48.0-i686-unknown-netbsd.tar.gz) = 182ec18aa10ca0a15f170846d81c5bc5dcea88c5a506c2545ce62c53996a80ac0c2ce1dc93b7a24c632621024c5ffccd04ad5067168e74493b3eacebd757bf91
Size (rust-1.48.0-i686-unknown-netbsd.tar.gz) = 213138805 bytes
SHA1 (rust-1.48.0-powerpc-unknown-netbsd.tar.gz) = 7af71c687c05a3d3fd07d1788e30b07bbdbc4944
RMD160 (rust-1.48.0-powerpc-unknown-netbsd.tar.gz) = a0a5cefa00a825525aba74597bd5fe480bce0ba1
SHA512 (rust-1.48.0-powerpc-unknown-netbsd.tar.gz) = 2a2b5b6a655b06742e967ca62143e28c14f99bdea8beaf347004a51bacaf18b633d823a79f96a5babf98e54694bd576e993efd75646e2705e6e0dd86b775da0d
Size (rust-1.48.0-powerpc-unknown-netbsd.tar.gz) = 224404607 bytes
SHA1 (rust-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 0d74b8e32a932ac3dbe5a5084626a67d491e6dba
RMD160 (rust-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 0b917d0cde0e7cbf25b254b0abda0dcf89a8f129
SHA512 (rust-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 8dbba4c8314ea528cd4e5155a962a424594259d8508ec054ec49b513c5e249cc136b6da0acb9b209b882f17cb86d0da139155a11d3691c3a608c488cdc353f95
Size (rust-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 224192715 bytes
SHA1 (rust-1.48.0-x86_64-apple-darwin.tar.gz) = 3197701068ee2d2b40d8c2600f0b71db8a99877e
RMD160 (rust-1.48.0-x86_64-apple-darwin.tar.gz) = b88c6c0635fe7154e77baa70e2b88ecb9b7c0845
SHA512 (rust-1.48.0-x86_64-apple-darwin.tar.gz) = a28bf31fc6a184e02bf5ef424d102353478facc8b0150461930214f227a2695d92f148697d3051bd1a607c3b48a27191edde530a50bd13635a33446d59a1f1a8
@ -48,18 +28,30 @@ SHA1 (rust-1.48.0-x86_64-unknown-netbsd.tar.gz) = a08036afb80f017b195138eab7b367
RMD160 (rust-1.48.0-x86_64-unknown-netbsd.tar.gz) = 9e61fa3043f0360cd1a027cff5b5ac6bb76afad9
SHA512 (rust-1.48.0-x86_64-unknown-netbsd.tar.gz) = 411a878d2fe5dc5317ea128382c7879743aeba56ce04017fe20629a1cb681606fe828bafff28339b188998aaf6d46734d856dd84e57e7cd03293486edd21ce6d
Size (rust-1.48.0-x86_64-unknown-netbsd.tar.gz) = 173093248 bytes
SHA1 (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = 97804c99b787a54bf16c0c13665eb74cab6c7bba
RMD160 (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = 5940c473d0655dc50efc10d2a7dc4bb7c0b85590
SHA512 (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = f8d430fcc2d3b83e37d01c49932395eb3e3882e7e593238fdbab363f98418bd50b478054197760c1fd549cd7df87b34325678f26bee6e9b7ff21d159551af7af
Size (rust-1.49.0-aarch64-unknown-netbsd.tar.gz) = 259213852 bytes
SHA1 (rust-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = c6ff63c7e8f4c1c23eaf6e70ff5dd9cc598a4bc7
RMD160 (rust-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 2177ba63fd60de56fe804b86fc48f7e853fe390c
SHA512 (rust-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 956209fbbc7555a83a2ab4bdc191f5d12f3dbe3b978794be819269e98af054231f57ec2c754944a42d957057c52566f6a40e1aae119b1badb8a3d2237f461a43
Size (rust-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 241080722 bytes
SHA1 (rust-1.49.0-i686-unknown-netbsd.tar.gz) = 4f8a5261751fd43495b0e0ef19d8cef448a9004e
RMD160 (rust-1.49.0-i686-unknown-netbsd.tar.gz) = 9515ae688b8ca3ae878470f5cec23370473ab51e
SHA512 (rust-1.49.0-i686-unknown-netbsd.tar.gz) = 334570b5a9a88490f3151db36a5821709602f527cab0a0839ccf5c2b5a1bcdd096d65a4d165d88d350589fc7d61330bd613c114d8896685bb727780d6ea7b0b9
Size (rust-1.49.0-i686-unknown-netbsd.tar.gz) = 274232619 bytes
SHA1 (rust-1.49.0-powerpc-unknown-netbsd.tar.gz) = 169de8bf536b080722a9f0aad54c895070f8d96b
RMD160 (rust-1.49.0-powerpc-unknown-netbsd.tar.gz) = 21c1aea54155266c63856f17458a7502a88792dc
SHA512 (rust-1.49.0-powerpc-unknown-netbsd.tar.gz) = e87b125c01d52b87216db84d5fdb1b795f68a6870663a3cc8f6af2f788103e785da761def347f0b0084cca3c39ddb7feb4999a6cff27b23031433e1b65d1ad8c
Size (rust-1.49.0-powerpc-unknown-netbsd.tar.gz) = 288330635 bytes
SHA1 (rust-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 164af24fc8f8e261deb6e7ff393752a9786c5bc4
RMD160 (rust-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 80db1a2ca0c9de6f718891e42607fcf831bb6107
SHA512 (rust-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 4499ab421d7a790bb5af115d5777e419c4ff635a5e919fe6969407ae5bd64e5ec6a91631bf1f457e0c947ce79ee2db39f4e8fe3760bb275743bca89055b98e7c
Size (rust-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 293526410 bytes
SHA1 (rust-1.49.0-sparc64-unknown-netbsd.tar.gz) = 1ff0966777105cd733e67dc227d960a19d4777d8
RMD160 (rust-1.49.0-sparc64-unknown-netbsd.tar.gz) = 70fd99278ff73ce4a30a5c43890ac2406b18f294
SHA512 (rust-1.49.0-sparc64-unknown-netbsd.tar.gz) = b28eabfbbcd7e7e895a102f66a7d87fd0daf88049c7f1ef69247d0288b11482d22d6c9ac09ac89b113ce372550e066fb9350db349a0cf31363848bd5289ac3b9
Size (rust-1.49.0-sparc64-unknown-netbsd.tar.gz) = 275214266 bytes
SHA1 (rust-std-1.48.0-aarch64-unknown-netbsd.tar.gz) = daf690730437595e1153bf4bdc214c0c1885ef8c
RMD160 (rust-std-1.48.0-aarch64-unknown-netbsd.tar.gz) = 23f545e2569c0bc53cc187aec0031cc523f5d8fb
SHA512 (rust-std-1.48.0-aarch64-unknown-netbsd.tar.gz) = 708ebb35aa06f88bb46f18a72efcde0333426d40273b8301b2af99e3dab5261623e09232c2ef17b1232aa6749bdd510b27443d01c403b6d076bc905f34922646
Size (rust-std-1.48.0-aarch64-unknown-netbsd.tar.gz) = 24409036 bytes
SHA1 (rust-std-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = 903a617c8039a0bf1a8eab5bcedabde85774f5ff
RMD160 (rust-std-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = c6abd38bd523b924cffa184b154310c99408b4f8
SHA512 (rust-std-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = d7234bc07a7339f1a616e23c64c5cb8ed351cfd26bd2b950dce1d4133bb07d2e41a9ac0c7f0f93187b0c84f9b91f1728ac523dfac080563d9bfc426b9e711e19
Size (rust-std-1.48.0-armv7-unknown-netbsd-eabihf.tar.gz) = 24295775 bytes
SHA1 (rust-std-1.48.0-i686-unknown-freebsd.tar.gz) = 6d33cf01cc1f5e69a42fa34f2d81ac4bc5577206
RMD160 (rust-std-1.48.0-i686-unknown-freebsd.tar.gz) = 14dcd57168d55d9f5c77b4268ee79d5256be06ec
SHA512 (rust-std-1.48.0-i686-unknown-freebsd.tar.gz) = 0a494e086b43f22f23d6347fae334b0c4214ff8dbba7e2f9bccb36ed97d73395b97a749303f898300e66e6e252f7cab6be47d5f45c79ee2bfcea118a5ab4d3a7
@ -68,18 +60,6 @@ SHA1 (rust-std-1.48.0-i686-unknown-linux-gnu.tar.gz) = 61177ee70ea27ac4ee7f4b6a8
RMD160 (rust-std-1.48.0-i686-unknown-linux-gnu.tar.gz) = ebe3f73b95b7aa2875181ec621416c9395c3222d
SHA512 (rust-std-1.48.0-i686-unknown-linux-gnu.tar.gz) = 9c886eccc52452045a542f2d44020ea35a4caa9c1605002b12b6a30d801f3e72ba6f6eb5f34309eff600b4ad7251e1a386df11414d2d2f4265ef6da2fa1afe3e
Size (rust-std-1.48.0-i686-unknown-linux-gnu.tar.gz) = 34286860 bytes
SHA1 (rust-std-1.48.0-i686-unknown-netbsd.tar.gz) = e20bf3cd898985f25c77497f9288467f6e19a9a7
RMD160 (rust-std-1.48.0-i686-unknown-netbsd.tar.gz) = e3632e9f3b498cb2c5add1ae16c19f718c5d5269
SHA512 (rust-std-1.48.0-i686-unknown-netbsd.tar.gz) = 7e8b9cbd7c676f378cdae14cc9a013a8835c713aaae76cb2229003364ab41579ea86da0df07b8567e681057fade600294e86a5f86cc42be0bf1dcd705aaa7606
Size (rust-std-1.48.0-i686-unknown-netbsd.tar.gz) = 30312154 bytes
SHA1 (rust-std-1.48.0-powerpc-unknown-netbsd.tar.gz) = cbe9973b6938ee62ba9e756b0d2e6ce1ac67cd3d
RMD160 (rust-std-1.48.0-powerpc-unknown-netbsd.tar.gz) = bf3ad2939009ff9562bafd14ba77e7412a4dd7d9
SHA512 (rust-std-1.48.0-powerpc-unknown-netbsd.tar.gz) = 8e08cf7657ff9184f81c954614ddc7f7e56afba5a6b690106a534e0f219f991217e2806e28e512dfa03e03fa0a6ac28437c50e1c5d09edea7b5fb2c145ce7133
Size (rust-std-1.48.0-powerpc-unknown-netbsd.tar.gz) = 23928272 bytes
SHA1 (rust-std-1.48.0-powerpc-unknown-netbsd90.tar.gz) = c56b571dfdb8e0f682afab71f15dcf4f73156cd3
RMD160 (rust-std-1.48.0-powerpc-unknown-netbsd90.tar.gz) = fdb2161e5c900b95a0f30e1fec8f80c1d1cbc603
SHA512 (rust-std-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 58c72965f8a8a155940ca859f31ad02ae98be024998455b61bea3ab506ac0c7cb3693c2b993c77119ccbc5eede474fe431ab115e04746355468e56130c875f99
Size (rust-std-1.48.0-powerpc-unknown-netbsd90.tar.gz) = 23923923 bytes
SHA1 (rust-std-1.48.0-x86_64-apple-darwin.tar.gz) = f2e0bd1171fcebb01613b2a648ab5101b475dfd5
RMD160 (rust-std-1.48.0-x86_64-apple-darwin.tar.gz) = 496b22e26c721f198a8ab038a8d8252edb55c7d8
SHA512 (rust-std-1.48.0-x86_64-apple-darwin.tar.gz) = 8d32a321de4ca19f73d83cfa36d2fdb0e208746df3ef8514ade3e23c39531703423d539309d803a7c3727b22154f7910e280ad5c011a79a1beb670dbdeb5229b
@ -96,6 +76,26 @@ SHA1 (rust-std-1.48.0-x86_64-unknown-netbsd.tar.gz) = 2065187a843f778d98fac140e4
RMD160 (rust-std-1.48.0-x86_64-unknown-netbsd.tar.gz) = ae3dcc4250eddd03b7ed6de582a08745f8cd70c2
SHA512 (rust-std-1.48.0-x86_64-unknown-netbsd.tar.gz) = 9734a501899a1fcde94b0f51b789584c9c870e4232a963a89be82b9fd07fb444c58bd11b854a0f673f699068b27204621825f2e38b2d74f243b937a1c87b5a53
Size (rust-std-1.48.0-x86_64-unknown-netbsd.tar.gz) = 33698113 bytes
SHA1 (rust-std-1.49.0-aarch64-unknown-netbsd.tar.gz) = bec960b56661b1f039233ef75e33f304b6ed176d
RMD160 (rust-std-1.49.0-aarch64-unknown-netbsd.tar.gz) = f3e70c1b7fa0c75ea668860c3f7c546ad7a97fee
SHA512 (rust-std-1.49.0-aarch64-unknown-netbsd.tar.gz) = 6a1f31fc63cf6d0b10b461e2dc003b75f87763c586f1fa81e1bc102c2f50fc856f2cd42529bd4d3d0d668a16747cf0568ccf6e1b70c1e01c61a1617caaf03f0c
Size (rust-std-1.49.0-aarch64-unknown-netbsd.tar.gz) = 24786839 bytes
SHA1 (rust-std-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = b3f82f4c2d2af9be54eb10e313f053d7443107d2
RMD160 (rust-std-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 58468d07240e082820d844bb2bd512f5e293a7e3
SHA512 (rust-std-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 7057a8a850e0ed8a70acaee032b3ca69c9dd3f708da5e2124d160e8942e59a63faa6a6782cc2565b9edb7056e37ae06509c281c07aa48a8921663db04ad55d84
Size (rust-std-1.49.0-armv7-unknown-netbsd-eabihf.tar.gz) = 24763715 bytes
SHA1 (rust-std-1.49.0-i686-unknown-netbsd.tar.gz) = 82b880a53d18895d413666292705b89910457ec2
RMD160 (rust-std-1.49.0-i686-unknown-netbsd.tar.gz) = e3d64206873fa9b5d8ca5bef8cc5a07739bf03fc
SHA512 (rust-std-1.49.0-i686-unknown-netbsd.tar.gz) = 07a47749534cc266092933c334c1876592403bfb7ae929b3035f0eae3d92cf9b3b9bba09980770fdd7f58e92ff083c4ed5e49b886c24245d43ee97f31b2f165a
Size (rust-std-1.49.0-i686-unknown-netbsd.tar.gz) = 30854538 bytes
SHA1 (rust-std-1.49.0-powerpc-unknown-netbsd.tar.gz) = ada449dbe578ff7473d91e882f53c2cff0392be3
RMD160 (rust-std-1.49.0-powerpc-unknown-netbsd.tar.gz) = 79df3bb4cac9bd821ebd54f3d4ca63ff78b7ec0f
SHA512 (rust-std-1.49.0-powerpc-unknown-netbsd.tar.gz) = 35021e195d7d7c4ab505889b425ba87d53fe839c10c954a21474e6def8f82bdc2d48e4429e3ffb15982780e5382a88756c5efd1ea6cca351be540e625e23d473
Size (rust-std-1.49.0-powerpc-unknown-netbsd.tar.gz) = 24361787 bytes
SHA1 (rust-std-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 00f7aeee7efdc6a48529d4a77393858d744cd0b4
RMD160 (rust-std-1.49.0-powerpc-unknown-netbsd90.tar.gz) = c72c212d69256136ddc49cfa94281a4af90618da
SHA512 (rust-std-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 93cc2de39630ccfe0ec8ec99248116f692b79ec428e4980e14e33bb66515826099c0fa21b78495efd68a48c81d407cdcb008e154baa3697aa4bbd415b6dc722d
Size (rust-std-1.49.0-powerpc-unknown-netbsd90.tar.gz) = 24355869 bytes
SHA1 (rust-std-1.49.0-sparc64-unknown-netbsd.tar.gz) = 04b12a7778944d03446df235a3dd28533d056f81
RMD160 (rust-std-1.49.0-sparc64-unknown-netbsd.tar.gz) = 4a7f19c5539b012b6e0b10e2cf2d57ffc7a1243b
SHA512 (rust-std-1.49.0-sparc64-unknown-netbsd.tar.gz) = 7828a1205373d938a1417c23f5ade5f82980db247dae40b0e9a6506319f4f3bdc413b25c6ffc6b82c3eb191030b3d3ee54d30c0caec8d7e4f75b7c5cc4cd439f

View File

@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.11 2021/02/25 08:54:05 wiz Exp $
# $NetBSD: options.mk,v 1.11.2.1 2021/04/10 08:36:05 bsiegert Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.rust
PKG_SUPPORTED_OPTIONS+= rust-cargo-static
@ -14,13 +14,9 @@ PKG_SUGGESTED_OPTIONS+= rust-llvm
. endif
.endif
# As of 2021-02-25 cargo is only a static binary in x86_64 and
# powerpc bootstraps
.if ${OPSYS} == "NetBSD" && \
${MACHINE_ARCH} != "i386" && \
${MACHINE_ARCH} != "aarch64" && \
${MACHINE_ARCH} != "earmv7hf" && \
${MACHINE_ARCH} != "sparc64"
# Bundle OpenSSL and curl into the cargo binary when producing
# bootstraps on NetBSD.
.if ${OPSYS} == "NetBSD" && ${BUILD_TARGET} == "dist"
PKG_SUGGESTED_OPTIONS+= rust-cargo-static
.endif

View File

@ -1,12 +1,11 @@
# $NetBSD: Makefile,v 1.183 2020/11/05 09:08:35 ryoon Exp $
# $NetBSD: Makefile,v 1.183.4.1 2021/05/07 19:05:18 bsiegert Exp $
DISTNAME= exim-4.94
PKGREVISION= 4
DISTNAME= exim-4.94.2
CATEGORIES= mail net
MASTER_SITES= ftp://ftp.exim.org/pub/exim/exim4/
MASTER_SITES+= https://ftp.exim.org/pub/exim/exim4/
MASTER_SITES+= ftp://ftp.exim.org/pub/exim/exim4/fixes/
MASTER_SITES= https://ftp.exim.org/pub/exim/exim4/
MASTER_SITES+= https://ftp.exim.org/pub/exim/exim4/fixes/
MASTER_SITES+= ftp://ftp.exim.org/pub/exim/exim4/
MASTER_SITES+= ftp://ftp.exim.org/pub/exim/exim4/fixes/
EXTRACT_SUFX= .tar.xz
MAINTAINER= abs@NetBSD.org

View File

@ -1,12 +1,11 @@
$NetBSD: distinfo,v 1.78 2020/08/20 16:40:57 gavan Exp $
$NetBSD: distinfo,v 1.78.6.1 2021/05/07 19:05:18 bsiegert Exp $
SHA1 (exim-4.94.tar.xz) = 60323c206be7d9f535c4bd369b470a514e489cd5
RMD160 (exim-4.94.tar.xz) = 6b51d059d9667c732df9ccb87f0de9b341c35281
SHA512 (exim-4.94.tar.xz) = 3bf95ade30902327403e7308089a3e423761da5b0745397dace7c7fd15ba3838d93e0ee418f1fed57606f79e57b793c7c7407e5c0d526146f0036126d5d95316
Size (exim-4.94.tar.xz) = 1828824 bytes
SHA1 (exim-4.94.2.tar.xz) = 4854541833583d82c6e667d3dde566d41162eec3
RMD160 (exim-4.94.2.tar.xz) = 4de1b7cca08ccbcaf3987332d15cd1fbc6135c9b
SHA512 (exim-4.94.2.tar.xz) = 5334c236221ed4e03dbc33e6a79d939b06037fa2f4b71971607a360b67af5c85a89681ee13a5eeaf0184382c55a160cf2e89ed7afb2949f025a54f1e88f9e3fc
Size (exim-4.94.2.tar.xz) = 1838076 bytes
SHA1 (patch-Local_Makefile.pkgsrc) = 7d6971cfe6f6fecf854926e90460b1a8bcd6a79d
SHA1 (patch-OS_Makefile-Default) = 6af17f036ed02a3bc37c1f303269eea447fcb691
SHA1 (patch-lookups_Makefile) = cfc40dba3f75ef37b9887f7767139ad50cf9d4e5
SHA1 (patch-scripts_exim__install) = aa0a31e77d5f76e33bc92140c14d39c79f710b95
SHA1 (patch-src_exicyclog.src) = cea5f04f52c9264fd7d279c046686dac2dc57a65
SHA1 (patch-src_store.c) = db12aefb50c2741cb525b7363c4bafbe353dfc5f

View File

@ -1,21 +0,0 @@
$NetBSD: patch-src_store.c,v 1.1 2020/08/20 16:40:57 gavan Exp $
--- src/store.c.orig 2020-05-30 20:35:38.000000000 +0000
+++ src/store.c
@@ -188,14 +188,14 @@ for (int pool = POOL_TAINT_BASE; pool <
if ((b = current_block[pool]))
{
uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
- if (US p >= bc && US p <= bc + b->length) return TRUE;
+ if (US p >= bc && US p < bc + b->length) return TRUE;
}
for (int pool = POOL_TAINT_BASE; pool < nelem(chainbase); pool++)
for (b = chainbase[pool]; b; b = b->next)
{
uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
- if (US p >= bc && US p <= bc + b->length) return TRUE;
+ if (US p >= bc && US p < bc + b->length) return TRUE;
}
return FALSE;
}

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.122 2021/02/07 06:30:34 ryoon Exp $
# $NetBSD: Makefile,v 1.122.2.1 2021/05/21 14:59:01 bsiegert Exp $
DISTNAME= mpv-0.33.0
PKGREVISION= 2
PKGREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= ${MASTER_SITE_GITHUB:=mpv-player/}
GITHUB_TAG= v${PKGVERSION_NOREV}
@ -21,7 +21,6 @@ TOOL_DEPENDS+= waf>=2.0.9:../../devel/waf
WAF_REPLACE_EXECUTABLE= yes
WAF_CONFIGURE_ARGS+= --bindir=${PREFIX}/bin
WAF_CONFIGURE_ARGS+= --enable-dvdnav
WAF_CONFIGURE_ARGS+= --disable-egl-x11
WAF_CONFIGURE_ARGS+= --enable-libmpv-shared
PYTHON_FOR_BUILD_ONLY= yes

View File

@ -1,4 +1,4 @@
# $NetBSD: options.mk,v 1.27 2020/12/19 12:17:29 nia Exp $
# $NetBSD: options.mk,v 1.27.4.1 2021/05/21 14:59:01 bsiegert Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.mpv
@ -161,6 +161,10 @@ WAF_CONFIGURE_ARGS+= --disable-drm
### OpenGL support (video output)
###
.if !empty(PKG_OPTIONS:Mopengl)
.include "../../graphics/MesaLib/features.mk"
. if ${MESALIB_SUPPORTS_EGL:tl} == "no"
WAF_CONFIGURE_ARGS+= --disable-egl-x11
. endif
.include "../../graphics/MesaLib/buildlink3.mk"
.elif !empty(PKG_OPTIONS:Mrpi)
BUILD_DEPENDS+= raspberrypi-userland>=20170109:../../misc/raspberrypi-userland

View File

@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.32 2020/01/08 11:59:43 nia Exp $
# $NetBSD: Makefile,v 1.32.10.1 2021/04/27 14:35:55 bsiegert Exp $
DISTNAME= GeoIP-1.6.12
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=maxmind/}
GITHUB_PROJECT= geoip-api-c
@ -16,5 +17,7 @@ GNU_CONFIGURE= yes
TEST_TARGET= check
CONFIGURE_ARGS.NetBSD+= ac_cv_func_gethostbyname_r=no
.include "../../devel/zlib/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.40 2021/03/21 04:08:44 taca Exp $
# $NetBSD: Makefile,v 1.40.2.1 2021/04/30 14:59:17 bsiegert Exp $
DISTNAME= bind-${BIND_VERSION}
PKGNAME= ${DISTNAME:S/-P/pl/}
@ -14,7 +14,7 @@ CONFLICTS+= host-[0-9]*
MAKE_JOBS_SAFE= no
BIND_VERSION= 9.11.29
BIND_VERSION= 9.11.31
.include "../../mk/bsd.prefs.mk"

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.29 2021/03/21 04:08:44 taca Exp $
$NetBSD: distinfo,v 1.29.2.1 2021/04/30 14:59:17 bsiegert Exp $
SHA1 (bind-9.11.29.tar.gz) = 333e951bb804c066976553ac52d5dd0a25364a9a
RMD160 (bind-9.11.29.tar.gz) = 764f59628dc2c8a07c796e64da329d89723a2e45
SHA512 (bind-9.11.29.tar.gz) = a4d9706ae10a39ebbfe9686c8a3c9c89dccb243a637f19fb3198b660996d65fb73bc90174f7d0b55fdec4f2ed435cc5d12544236e1ea471252232e92b2aabc9c
Size (bind-9.11.29.tar.gz) = 8297010 bytes
SHA1 (bind-9.11.31.tar.gz) = 84b392d929ab26b240a0d94f0655ba35b7e35da5
RMD160 (bind-9.11.31.tar.gz) = e311dd23b02acc48d665052ba2057bdf1d622ef8
SHA512 (bind-9.11.31.tar.gz) = 791adcb382b0cc6767dedccd0cbdbc48b5d32507c569f672397c9f2de59241433c39027cc3099957fea0885e1bc8db882cf83ae27fe0127d543cec8fc2e89f04
Size (bind-9.11.31.tar.gz) = 8296079 bytes
SHA1 (patch-bin_named_Makefile.in) = 3e5b98e3e0bdb701be679d3580d6d2d7609d655b
SHA1 (patch-bin_named_server.c) = 0294d74eb3039049c4672a3de6eb371407bb382d
SHA1 (patch-bin_pkcs11_pkcs11-keygen.c) = ca2671a5e3216a08a212cf893e070b01705ef9ee

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.11 2021/03/21 04:16:17 taca Exp $
# $NetBSD: Makefile,v 1.11.2.1 2021/04/30 15:05:15 bsiegert Exp $
DISTNAME= bind-${BIND_VERSION}
PKGNAME= ${DISTNAME:S/-P/pl/}
@ -15,7 +15,7 @@ CONFLICTS+= host-[0-9]*
MAKE_JOBS_SAFE= no
BIND_VERSION= 9.16.13
BIND_VERSION= 9.16.15
BUILD_DEFS+= BIND_DIR VARBASE

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.11 2021/03/21 04:16:17 taca Exp $
$NetBSD: distinfo,v 1.11.2.1 2021/04/30 15:05:15 bsiegert Exp $
SHA1 (bind-9.16.13.tar.xz) = 5120b0e7fcc8b7d3e1c9d1414c5c3888640c3b40
RMD160 (bind-9.16.13.tar.xz) = 95ca9bcf95ecf996d3bfe97a2bad602f35a63b3e
SHA512 (bind-9.16.13.tar.xz) = 1f3c8f54dd2c9e18cd9b67cfebb645d0a8e8f566add07fc4690cb8820bf81640c33b2b0685cb8be095e0f9ac84b2cf78176aea841a30c27d547b569b8353b07b
Size (bind-9.16.13.tar.xz) = 5028340 bytes
SHA1 (bind-9.16.15.tar.xz) = 5d68bbd1ff452708d45f2d4ef832faa3a1690fc7
RMD160 (bind-9.16.15.tar.xz) = 5697b6b0a0d67022f1e279f27c413b739fa2de4d
SHA512 (bind-9.16.15.tar.xz) = 30dad6e2144b3ac53ef0a2d1ed3c8342120f148fc0eb6409113a6d5ed3444eecb917915fdf39c26fd223396fc1e873410a50da305f0b870864f7fbbdccec8033
Size (bind-9.16.15.tar.xz) = 5025688 bytes
SHA1 (patch-bin_dig_dighost.c) = b1073911d80ecd519af98b6678968296ff8c0c98
SHA1 (patch-bin_dig_include_dig_dig.h) = 10166f5bb98b208c7b10d63eb31e8253f704acc8
SHA1 (patch-bin_named_Makefile.in) = f1367da6a226ba44d0ee13acf00b8abeb5b1b7eb

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.41 2020/05/10 14:24:59 rillig Exp $
# $NetBSD: Makefile.common,v 1.41.8.1 2021/05/31 12:56:08 bsiegert Exp $
#
# used by net/isc-dhcp4/Makefile
# used by net/isc-dhcpd4/Makefile
@ -17,7 +17,7 @@ LICENSE= mpl-2.0
CONFLICTS+= isc-dhcp-base-3.*
VERSION= 4.4.2
VERSION= 4.4.2-P1
.include "../../mk/bsd.prefs.mk"

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.29 2020/01/23 08:11:27 taca Exp $
$NetBSD: distinfo,v 1.29.10.1 2021/05/31 12:56:08 bsiegert Exp $
SHA1 (dhcp-4.4.2.tar.gz) = cb4ba6617e1bc2e3cbf770be5c0443b1ad276db5
RMD160 (dhcp-4.4.2.tar.gz) = 4313051060f14c0d742ea70475d6cd506cbd45f1
SHA512 (dhcp-4.4.2.tar.gz) = c3dee2cf6e4b43d519d4bc89e9b8b12a6e3747d8c4edc0f83d4a88355a483b91a5f7d2353a3c0a2f37f88704fd2f64478ac5161ca72b10c42cebcb92907afa40
Size (dhcp-4.4.2.tar.gz) = 9906235 bytes
SHA1 (dhcp-4.4.2-P1.tar.gz) = 9a573dd7bb405f80c6ba41dfa88a4460755434ef
RMD160 (dhcp-4.4.2-P1.tar.gz) = 1e9a47e3772b6b4b94f5c252d6dba30b85d83062
SHA512 (dhcp-4.4.2-P1.tar.gz) = 924e8b44f288361dbe837987869e57b929c73cb5e4af37cb2d7b19bca5ea8594048fb41c0792fede003188185f61b25befbc2ccda42f1f68e6b6bc22ef44b040
Size (dhcp-4.4.2-P1.tar.gz) = 9898311 bytes
SHA1 (patch-aa) = da090b3b824f5d437f8d05ce00e2ac4dfc65d6af
SHA1 (patch-ab) = 0683dd2259e48184713559aa0356ee352aa52c39
SHA1 (patch-ac) = a7e6808a6e1e93c520eb085f31259f6c142750f4

View File

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.9 2020/12/04 20:45:36 nia Exp $
# $NetBSD: Makefile,v 1.9.4.1 2021/05/21 15:01:10 bsiegert Exp $
DISTNAME= speedtest-cli-2.1.2
PKGREVISION= 1
DISTNAME= speedtest-cli-2.1.3
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_GITHUB:=sivel/}
GITHUB_TAG= v${PKGVERSION_NOREV}

View File

@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.3 2019/08/31 14:34:29 nia Exp $
$NetBSD: distinfo,v 1.3.14.1 2021/05/21 15:01:10 bsiegert Exp $
SHA1 (speedtest-cli-2.1.2.tar.gz) = 48aee9eb3f4489d220a2a9125068ffbe85f7498d
RMD160 (speedtest-cli-2.1.2.tar.gz) = 8631e5029d4231fc709b222869780f19347a6966
SHA512 (speedtest-cli-2.1.2.tar.gz) = f2eb125116f42075d3248e1c0590cce4f822f383ff7c54c158504b16de72bf35b35d55a78014413a95a5f5bafa98c71c3ea011f20f480f1db272d6e8800c40bd
Size (speedtest-cli-2.1.2.tar.gz) = 24741 bytes
SHA1 (speedtest-cli-2.1.3.tar.gz) = 0408c3d6466a08dcad442b93cc3b7c340c602f28
RMD160 (speedtest-cli-2.1.3.tar.gz) = 4c48497b15b9bb67fe15f41f5c29f6cf84808033
SHA512 (speedtest-cli-2.1.3.tar.gz) = e2ecd9b4eea95e3641045c3da217ec5a39846b26c1f773fdd31c6ffe3cb5e35341320fc1992f865af48afd1a704c4d4224f9ec4048abb69131ee2f32385ae94c
Size (speedtest-cli-2.1.3.tar.gz) = 24771 bytes

View File

@ -1,8 +1,8 @@
# $NetBSD: Makefile,v 1.236 2021/03/28 18:35:29 leot Exp $
# $NetBSD: Makefile,v 1.236.2.1 2021/04/10 08:41:02 bsiegert Exp $
# XXX: VERSION_DATE can contains also an optional part that indicates
# XXX: possible same day revisions. PKGNAME preserves that dotted part as is.
VERSION_DATE= 2021.03.25
VERSION_DATE= 2021.04.07
DISTNAME= youtube-dl-${VERSION_DATE}
PKGNAME= ${DISTNAME:S/.//:S/.//}
CATEGORIES= net

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.112 2021/03/28 18:35:29 leot Exp $
@comment $NetBSD: PLIST,v 1.112.2.1 2021/04/10 08:41:02 bsiegert Exp $
bin/youtube-dl
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
@ -158,6 +158,9 @@ ${PYSITELIB}/youtube_dl/extractor/ard.pyo
${PYSITELIB}/youtube_dl/extractor/arkena.py
${PYSITELIB}/youtube_dl/extractor/arkena.pyc
${PYSITELIB}/youtube_dl/extractor/arkena.pyo
${PYSITELIB}/youtube_dl/extractor/arnes.py
${PYSITELIB}/youtube_dl/extractor/arnes.pyc
${PYSITELIB}/youtube_dl/extractor/arnes.pyo
${PYSITELIB}/youtube_dl/extractor/arte.py
${PYSITELIB}/youtube_dl/extractor/arte.pyc
${PYSITELIB}/youtube_dl/extractor/arte.pyo
@ -1385,6 +1388,9 @@ ${PYSITELIB}/youtube_dl/extractor/outsidetv.pyo
${PYSITELIB}/youtube_dl/extractor/packtpub.py
${PYSITELIB}/youtube_dl/extractor/packtpub.pyc
${PYSITELIB}/youtube_dl/extractor/packtpub.pyo
${PYSITELIB}/youtube_dl/extractor/palcomp3.py
${PYSITELIB}/youtube_dl/extractor/palcomp3.pyc
${PYSITELIB}/youtube_dl/extractor/palcomp3.pyo
${PYSITELIB}/youtube_dl/extractor/pandoratv.py
${PYSITELIB}/youtube_dl/extractor/pandoratv.pyc
${PYSITELIB}/youtube_dl/extractor/pandoratv.pyo

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.216 2021/03/28 18:35:29 leot Exp $
$NetBSD: distinfo,v 1.216.2.1 2021/04/10 08:41:02 bsiegert Exp $
SHA1 (youtube-dl-2021.03.25.tar.gz) = ef3618fa6bc035564403c7f7409eafddc4900b14
RMD160 (youtube-dl-2021.03.25.tar.gz) = 5cea5e477f7a9d46b9f6c84f8e00ed4e60c6b56c
SHA512 (youtube-dl-2021.03.25.tar.gz) = 77b3beb907081fd682c69d280ddc69610ef59d264b089597481cb4f57dfbac5abc90b54b38bc3691817e0f7a6a3df35b59035f49d5d22e461db87086081f426c
Size (youtube-dl-2021.03.25.tar.gz) = 3313712 bytes
SHA1 (youtube-dl-2021.04.07.tar.gz) = 9264cf84e8f434650295a0048c3a6ef5935d6f81
RMD160 (youtube-dl-2021.04.07.tar.gz) = d3f6bfb55b25b5c8847cda9365e08cd65d823950
SHA512 (youtube-dl-2021.04.07.tar.gz) = aabf6a1ceefe9101c710bbb45b91e6253a1256343513d841f7901d2be32521a001dac15f5bf13ac94beaf4638dce691f2a157a6172d89047ce2248d06bcafbf8
Size (youtube-dl-2021.04.07.tar.gz) = 3324661 bytes
SHA1 (patch-setup.py) = 56115118d5a263f3b46ff0da0b8315a1459ad7d9
SHA1 (patch-youtube__dl_extractor_la7.py) = 6c579f96e7ace1b64ef25fe8788b40bc4e7e67dd
SHA1 (patch-youtube__dl_postprocessor_ffmpeg.py) = f96676170a448d9205d542a7def4beca615a1490

View File

@ -1,7 +1,8 @@
# $NetBSD: Makefile,v 1.85 2020/10/08 22:50:16 leot Exp $
# $NetBSD: Makefile,v 1.85.4.1 2021/05/25 15:14:19 bsiegert Exp $
DISTNAME= mupdf-1.18.0-source
PKGNAME= ${DISTNAME:S/-source//}
PKGREVISION= 2
CATEGORIES= print
MASTER_SITES= https://mupdf.com/downloads/archive/

View File

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.52 2020/10/08 22:50:16 leot Exp $
$NetBSD: distinfo,v 1.52.4.1 2021/05/25 15:14:19 bsiegert Exp $
SHA1 (mupdf-1.18.0-source.tar.gz) = 8cc9d04313d06e3d514b961b7b900b721ebc24e0
RMD160 (mupdf-1.18.0-source.tar.gz) = 59fce4cd71417510ed997ce518e34f426e981951
@ -11,4 +11,6 @@ SHA1 (patch-ae) = c6b113818b32cb4470e8549c00a16e0b2f364ede
SHA1 (patch-platform_gl_gl-app.h) = 48f48f13c9a6376231de25aa63411560ea9d91ca
SHA1 (patch-platform_gl_gl-main.c) = c760d16f0ac4a9b09800869d22b7324724bc007b
SHA1 (patch-source_fitz_load-jpx.c) = 8d7f58168c8429a82127b821387298341a1fcbfb
SHA1 (patch-source_pdf_pdf-parse.c) = 39441caeae75b61ff0b56aa839047dde34b05108
SHA1 (patch-source_pdf_pdf-xref.c) = 7d7a9650f63061edbc7659ce65401569642bd6e6
SHA1 (patch-thirdparty_mujs_Makefile) = 8ff3cc67a60b648841b074846bd6e7de943fd034

View File

@ -0,0 +1,28 @@
$NetBSD: patch-source_pdf_pdf-parse.c,v 1.1.2.2 2021/05/25 15:14:19 bsiegert Exp $
Bug 703366: Fix double free of object during linearization.
This appears to happen because we parse an illegal object from
a broken file and assign it to object 0, which is defined to
be free.
Here, we fix the parsing code so this can't happen.
https://nvd.nist.gov/vuln/detail/CVE-2021-3407
http://git.ghostscript.com/?p=mupdf.git;h=cee7cefc610d42fd383b3c80c12cbc675443176a
--- source/pdf/pdf-parse.c.orig 2020-10-07 10:35:03.000000000 +0000
+++ source/pdf/pdf-parse.c
@@ -749,6 +749,12 @@ pdf_parse_ind_obj(fz_context *ctx, pdf_d
fz_throw(ctx, FZ_ERROR_SYNTAX, "expected generation number (%d ? obj)", num);
}
gen = buf->i;
+ if (gen < 0 || gen >= 65536)
+ {
+ if (try_repair)
+ *try_repair = 1;
+ fz_throw(ctx, FZ_ERROR_SYNTAX, "invalid generation number (%d)", gen);
+ }
tok = pdf_lex(ctx, file, buf);
if (tok != PDF_TOK_OBJ)

View File

@ -0,0 +1,24 @@
$NetBSD: patch-source_pdf_pdf-xref.c,v 1.3.2.2 2021/05/25 15:14:19 bsiegert Exp $
Bug 703366: Fix double free of object during linearization.
This appears to happen because we parse an illegal object from
a broken file and assign it to object 0, which is defined to
be free.
Here, we fix the parsing code so this can't happen.
https://nvd.nist.gov/vuln/detail/CVE-2021-3407
http://git.ghostscript.com/?p=mupdf.git;h=cee7cefc610d42fd383b3c80c12cbc675443176a
--- source/pdf/pdf-xref.c.orig 2020-10-07 10:35:03.000000000 +0000
+++ source/pdf/pdf-xref.c
@@ -1012,6 +1012,8 @@ pdf_read_new_xref(fz_context *ctx, pdf_d
{
ofs = fz_tell(ctx, doc->file);
trailer = pdf_parse_ind_obj(ctx, doc, doc->file, buf, &num, &gen, &stm_ofs, NULL);
+ if (num == 0)
+ fz_throw(ctx, FZ_ERROR_GENERIC, "Trailer object number cannot be 0\n");
}
fz_catch(ctx)
{

View File

@ -1,6 +1,7 @@
# $NetBSD: Makefile,v 1.8 2021/02/14 15:04:30 taca Exp $
# $NetBSD: Makefile,v 1.8.2.1 2021/04/15 06:53:11 bsiegert Exp $
DISTNAME= rex-exploitation-0.1.27
PKGREVISION= 1
CATEGORIES= security
MAINTAINER= minskim@NetBSD.org
@ -16,9 +17,5 @@ DEPENDS+= ${RUBY_PKGPREFIX}-rex-text-[0-9]*:../../security/ruby-rex-text
USE_LANGUAGES= # none
.include "../../lang/ruby/rubyversion.mk"
.if empty(RUBY_VER:M2[0-9])
DEPENDS+= ${RUBY_PKGPREFIX}-rexml-[0-9]*:../../textproc/ruby-rexml
.endif
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"

View File

@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.75 2020/08/31 18:11:39 wiz Exp $
# $NetBSD: Makefile,v 1.75.6.1 2021/05/29 19:06:14 bsiegert Exp $
PKGREVISION= 2
.include "../../meta-pkgs/xfce4/Makefile.common"
VERSION= 1.8.15
VERSION= 1.8.17
DISTNAME= thunar-${VERSION}
PKGNAME= xfce4-thunar-${VERSION}
CATEGORIES= sysutils

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.19 2020/02/29 22:13:23 gutteridge Exp $
@comment $NetBSD: PLIST,v 1.19.10.1 2021/05/29 19:06:14 bsiegert Exp $
bin/thunar
bin/thunar-settings
include/thunarx-3/thunarx/thunarx-config.h
@ -108,6 +108,7 @@ share/locale/hr/LC_MESSAGES/thunar.mo
share/locale/hu/LC_MESSAGES/thunar.mo
share/locale/hy/LC_MESSAGES/thunar.mo
share/locale/hy_AM/LC_MESSAGES/thunar.mo
share/locale/hye/LC_MESSAGES/thunar.mo
share/locale/id/LC_MESSAGES/thunar.mo
share/locale/ie/LC_MESSAGES/thunar.mo
share/locale/is/LC_MESSAGES/thunar.mo

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.25 2020/05/26 22:21:25 gutteridge Exp $
$NetBSD: distinfo,v 1.25.8.1 2021/05/29 19:06:14 bsiegert Exp $
SHA1 (thunar-1.8.15.tar.bz2) = fc97c166ed78ccdeca8092516cd9edec6d1606a2
RMD160 (thunar-1.8.15.tar.bz2) = 176c63f1df3dcd4f027aa69b774c1e43f36e8f84
SHA512 (thunar-1.8.15.tar.bz2) = 50020084105daf5d5464cdcd29827fa212b121b0f6a385b6e2820fd120b6880cffafe63f51e737bc33d13f174f83de5c165f2ce155ff6aae74cc1b285cbdc8db
Size (thunar-1.8.15.tar.bz2) = 2366401 bytes
SHA1 (thunar-1.8.17.tar.bz2) = ceaab10f7497950c4f1f50f1fa16fa6cb914e650
RMD160 (thunar-1.8.17.tar.bz2) = 0b221314d88fef7a48dcf97439478231b4927619
SHA512 (thunar-1.8.17.tar.bz2) = 1e9dcebf5eaaf34f7c2a233306eb33e182ae8aad3bb635477eaf223537629f689be656dc6c699284d748ca52c4dfe1fc7fb4c8120bd836b11d7100e858fa4c66
Size (thunar-1.8.17.tar.bz2) = 2476026 bytes
SHA1 (patch-ThunarBulkRename.in) = 5a1604e9e75064d6080f4e9571f62ea8fca10e11
SHA1 (patch-ac) = ea36f7085ad7ebfc113ab6b7bb049e3da31f4e36
SHA1 (patch-org.xfce.FileManager.service.in) = 6c47d3e55d13deaad6024ed9f5ec1ebe2c42a192

View File

@ -1,7 +1,6 @@
# $NetBSD: Makefile,v 1.157 2020/11/05 09:07:10 ryoon Exp $
# $NetBSD: Makefile,v 1.157.4.1 2021/05/25 14:44:14 bsiegert Exp $
.include "../../textproc/libxml2/Makefile.common"
PKGREVISION= 3
COMMENT= XML parser library from the GNOME project
LICENSE= modified-bsd

View File

@ -1,12 +1,11 @@
# $NetBSD: Makefile.common,v 1.13 2019/11/06 13:19:43 wiz Exp $
# $NetBSD: Makefile.common,v 1.13.12.1 2021/05/25 14:44:14 bsiegert Exp $
#
# used by textproc/libxml2/Makefile
# used by textproc/py-libxml2/Makefile
DISTNAME= libxml2-2.9.10
DISTNAME= libxml2-2.9.12
CATEGORIES= textproc
MASTER_SITES= ftp://xmlsoft.org/libxml2/
MASTER_SITES+= http://xmlsoft.org/sources/
MASTER_SITES= http://xmlsoft.org/sources/
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://xmlsoft.org/

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.134 2020/11/08 23:31:44 js Exp $
$NetBSD: distinfo,v 1.134.4.1 2021/05/25 14:44:14 bsiegert Exp $
SHA1 (libxml2-2.9.10.tar.gz) = db6592ec9ca9708c4e71bf6bfd907bbb5cd40644
RMD160 (libxml2-2.9.10.tar.gz) = 455f81e1f121c63dac96802de7f83ce4483f1afe
SHA512 (libxml2-2.9.10.tar.gz) = 0adfd12bfde89cbd6296ba6e66b6bed4edb814a74b4265bda34d95c41d9d92c696ee7adb0c737aaf9cc6e10426a31a35079b2a23d26c074e299858da12c072ed
Size (libxml2-2.9.10.tar.gz) = 5624761 bytes
SHA1 (libxml2-2.9.12.tar.gz) = 339fe5bb2a7d0c13f068c26d8f7cd194c13f9a2a
RMD160 (libxml2-2.9.12.tar.gz) = 766b9460b9e62b8152f431747c30c88c868c0c7e
SHA512 (libxml2-2.9.12.tar.gz) = df1c6486e80f0fcf3c506f3599bcfb94b620c00d0b5d26831bc983daa78d58ec58b5057b1ec7c1a26c694f40199c6234ee2a6dcabf65abfa10c447cb5705abbd
Size (libxml2-2.9.12.tar.gz) = 5681632 bytes
SHA1 (patch-Makefile.in) = e687eaa9805b855b0c8a944ec5c597bd34954472
SHA1 (patch-catalog.c) = 34afe787f6012b460a85be993048e133907a1621
SHA1 (patch-configure) = f6e9f08377a537657df08deee17a5cc66c60b808

View File

@ -1,38 +0,0 @@
$NetBSD: patch-parser.c,v 1.7 2020/01/24 10:40:36 kim Exp $
Fix CVE-2020-7595
https://gitlab.gnome.org/GNOME/libxml2/commit/0e1a49c89076.patch
From 0e1a49c8907645d2e155f0d89d4d9895ac5112b5 Mon Sep 17 00:00:00 2001
From: Zhipeng Xie <xiezhipeng1@huawei.com>
Date: Thu, 12 Dec 2019 17:30:55 +0800
Subject: [PATCH] Fix infinite loop in xmlStringLenDecodeEntities
When ctxt->instate == XML_PARSER_EOF,xmlParseStringEntityRef
return NULL which cause a infinite loop in xmlStringLenDecodeEntities
Found with libFuzzer.
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
---
parser.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/parser.c b/parser.c
index d1c31963..a34bb6cd 100644
--- parser.c
+++ parser.c
@@ -2646,7 +2646,8 @@ xmlStringLenDecodeEntities(xmlParserCtxtPtr ctxt, const xmlChar *str, int len,
else
c = 0;
while ((c != 0) && (c != end) && /* non input consuming loop */
- (c != end2) && (c != end3)) {
+ (c != end2) && (c != end3) &&
+ (ctxt->instate != XML_PARSER_EOF)) {
if (c == 0) break;
if ((c == '&') && (str[1] == '#')) {
--
2.24.1

View File

@ -1,52 +0,0 @@
$NetBSD: patch-python-types.c,v 1.1 2020/11/08 23:31:44 js Exp $
Fix compilation with Python 3.9.
--- python/types.c.orig 2019-10-22 18:46:01.000000000 +0000
+++ python/types.c
@@ -602,16 +602,16 @@ libxml_xmlXPathObjectPtrConvert(PyObject
if (obj == NULL) {
return (NULL);
}
- if PyFloat_Check (obj) {
+ if (PyFloat_Check (obj)) {
ret = xmlXPathNewFloat((double) PyFloat_AS_DOUBLE(obj));
- } else if PyLong_Check(obj) {
+ } else if (PyLong_Check(obj)) {
#ifdef PyLong_AS_LONG
ret = xmlXPathNewFloat((double) PyLong_AS_LONG(obj));
#else
ret = xmlXPathNewFloat((double) PyInt_AS_LONG(obj));
#endif
#ifdef PyBool_Check
- } else if PyBool_Check (obj) {
+ } else if (PyBool_Check (obj)) {
if (obj == Py_True) {
ret = xmlXPathNewBoolean(1);
@@ -620,14 +620,14 @@ libxml_xmlXPathObjectPtrConvert(PyObject
ret = xmlXPathNewBoolean(0);
}
#endif
- } else if PyBytes_Check (obj) {
+ } else if (PyBytes_Check (obj)) {
xmlChar *str;
str = xmlStrndup((const xmlChar *) PyBytes_AS_STRING(obj),
PyBytes_GET_SIZE(obj));
ret = xmlXPathWrapString(str);
#ifdef PyUnicode_Check
- } else if PyUnicode_Check (obj) {
+ } else if (PyUnicode_Check (obj)) {
#if PY_VERSION_HEX >= 0x03030000
xmlChar *str;
const char *tmp;
@@ -650,7 +650,7 @@ libxml_xmlXPathObjectPtrConvert(PyObject
ret = xmlXPathWrapString(str);
#endif
#endif
- } else if PyList_Check (obj) {
+ } else if (PyList_Check (obj)) {
int i;
PyObject *node;
xmlNodePtr cur;

View File

@ -1,51 +0,0 @@
$NetBSD: patch-python_libxml.c,v 1.2 2020/11/08 23:31:44 js Exp $
Avoid returning invalid UTF-8 strings to python.
Based on https://bugzilla.opensuse.org/attachment.cgi?id=746044&action=edit
Fixes https://github.com/itstool/itstool/issues/22
Fix compilation with Python 3.9.
--- python/libxml.c.orig 2019-10-22 18:46:01.000000000 +0000
+++ python/libxml.c
@@ -294,7 +294,7 @@ xmlPythonFileReadRaw (void * context, ch
lenread = PyBytes_Size(ret);
data = PyBytes_AsString(ret);
#ifdef PyUnicode_Check
- } else if PyUnicode_Check (ret) {
+ } else if (PyUnicode_Check (ret)) {
#if PY_VERSION_HEX >= 0x03030000
Py_ssize_t size;
const char *tmp;
@@ -359,7 +359,7 @@ xmlPythonFileRead (void * context, char
lenread = PyBytes_Size(ret);
data = PyBytes_AsString(ret);
#ifdef PyUnicode_Check
- } else if PyUnicode_Check (ret) {
+ } else if (PyUnicode_Check (ret)) {
#if PY_VERSION_HEX >= 0x03030000
Py_ssize_t size;
const char *tmp;
@@ -1620,6 +1620,7 @@ libxml_xmlErrorFuncHandler(ATTRIBUTE_UNU
PyObject *message;
PyObject *result;
char str[1000];
+ unsigned char *ptr = (unsigned char *)str;
#ifdef DEBUG_ERROR
printf("libxml_xmlErrorFuncHandler(%p, %s, ...) called\n", ctx, msg);
@@ -1636,10 +1637,14 @@ libxml_xmlErrorFuncHandler(ATTRIBUTE_UNU
str[999] = 0;
va_end(ap);
+ /* Ensure the error string doesn't start at UTF8 continuation. */
+ while (*ptr && (*ptr & 0xc0) == 0x80)
+ ptr++;
+
list = PyTuple_New(2);
PyTuple_SetItem(list, 0, libxml_xmlPythonErrorFuncCtxt);
Py_XINCREF(libxml_xmlPythonErrorFuncCtxt);
- message = libxml_charPtrConstWrap(str);
+ message = libxml_charPtrConstWrap(ptr);
PyTuple_SetItem(list, 1, message);
result = PyEval_CallObject(libxml_xmlPythonErrorFuncHandler, list);
Py_XDECREF(list);

View File

@ -1,39 +0,0 @@
$NetBSD: patch-xmlschemas.c,v 1.1 2020/01/24 10:40:36 kim Exp $
Fix CVE-2019-20388
https://gitlab.gnome.org/GNOME/libxml2/merge_requests/68.patch
From 6088a74bcf7d0c42e24cff4594d804e1d3c9fbca Mon Sep 17 00:00:00 2001
From: Zhipeng Xie <xiezhipeng1@huawei.com>
Date: Tue, 20 Aug 2019 16:33:06 +0800
Subject: [PATCH] Fix memory leak in xmlSchemaValidateStream
When ctxt->schema is NULL, xmlSchemaSAXPlug->xmlSchemaPreRun
alloc a new schema for ctxt->schema and set vctxt->xsiAssemble
to 1. Then xmlSchemaVStart->xmlSchemaPreRun initialize
vctxt->xsiAssemble to 0 again which cause the alloced schema
can not be freed anymore.
Found with libFuzzer.
Signed-off-by: Zhipeng Xie <xiezhipeng1@huawei.com>
---
xmlschemas.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/xmlschemas.c b/xmlschemas.c
index 301c8449..39d92182 100644
--- xmlschemas.c
+++ xmlschemas.c
@@ -28090,7 +28090,6 @@ xmlSchemaPreRun(xmlSchemaValidCtxtPtr vctxt) {
vctxt->nberrors = 0;
vctxt->depth = -1;
vctxt->skipDepth = -1;
- vctxt->xsiAssemble = 0;
vctxt->hasKeyrefs = 0;
#ifdef ENABLE_IDC_NODE_TABLES_TEST
vctxt->createIDCNodeTables = 1;
--
2.24.1

View File

@ -1,7 +1,8 @@
$NetBSD: distinfo,v 1.65 2019/11/06 13:23:45 wiz Exp $
$NetBSD: distinfo,v 1.65.12.1 2021/05/25 14:49:35 bsiegert Exp $
SHA1 (libxslt-1.1.34.tar.gz) = 5b42a1166a1688207028e4a5e72090828dd2a61e
RMD160 (libxslt-1.1.34.tar.gz) = 46a5d1ac1524ad685447cec71c0f8313d727f0af
SHA512 (libxslt-1.1.34.tar.gz) = 1516a11ad608b04740674060d2c5d733b88889de5e413b9a4e8bf8d1a90d712149df6d2b1345b615f529d7c7d3fa6dae12e544da828b39c7d415e54c0ee0776b
Size (libxslt-1.1.34.tar.gz) = 3552258 bytes
SHA1 (patch-configure) = a63c214c7f5e4c4f89307c18519240372382c2fa
SHA1 (patch-libexslt_date.c) = 40ce3940a93b6a2dc804f62676909d3313e0ea52

View File

@ -0,0 +1,17 @@
$NetBSD: patch-configure,v 1.3.2.2 2021/05/25 14:49:35 bsiegert Exp $
Fix incorrect xml2-config usage.
Upstream: https://gitlab.gnome.org/GNOME/libxslt/-/commit/90c34c8bb90e095a8a8fe8b2ce368bd9ff1837cc
--- configure.orig Mon May 24 04:04:05 2021
+++ configure
@@ -14860,7 +14860,7 @@ PKG_CONFIG=$_save_PKG_CONFIG
fi
-if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs print > /dev/null 2>&1
+if test "x$LIBXML_LIBS" = "x" && ${XML_CONFIG} --libs > /dev/null 2>&1
then
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for libxml libraries >= $LIBXML_REQUIRED_VERSION" >&5
$as_echo_n "checking for libxml libraries >= $LIBXML_REQUIRED_VERSION... " >&6; }

View File

@ -1,6 +1,5 @@
# $NetBSD: Makefile,v 1.66 2020/11/05 09:09:14 ryoon Exp $
# $NetBSD: Makefile,v 1.66.4.1 2021/05/25 14:44:14 bsiegert Exp $
PKGREVISION= 2
.include "../../textproc/libxml2/Makefile.common"
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.12 2021/02/14 14:53:04 taca Exp $
# $NetBSD: Makefile,v 1.12.2.1 2021/04/15 06:51:09 bsiegert Exp $
DISTNAME= rexml-3.2.4
CATEGORIES= textproc
@ -8,6 +8,9 @@ HOMEPAGE= https://github.com/ruby/rexml
COMMENT= XML toolkit for Ruby
LICENSE= 2-clause-bsd
# Ruby 3.0 contain the same version of rexml.
RUBY_VERSIONS_ACCEPTED= 26 27
USE_LANGUAGES= # empty
.include "../../lang/ruby/gem.mk"

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.239 2021/03/01 23:31:30 gdt Exp $
# $NetBSD: Makefile,v 1.239.2.1 2021/04/04 13:22:06 spz Exp $
DISTNAME= curl-7.75.0
DISTNAME= curl-7.76.0
CATEGORIES= www
MASTER_SITES= https://curl.haxx.se/download/
EXTRACT_SUFX= .tar.xz

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.84 2021/02/03 13:17:18 adam Exp $
@comment $NetBSD: PLIST,v 1.84.2.1 2021/04/04 13:22:06 spz Exp $
bin/curl
bin/curl-config
include/curl/curl.h
@ -57,6 +57,7 @@ man/man3/CURLINFO_REDIRECT_COUNT.3
man/man3/CURLINFO_REDIRECT_TIME.3
man/man3/CURLINFO_REDIRECT_TIME_T.3
man/man3/CURLINFO_REDIRECT_URL.3
man/man3/CURLINFO_REFERER.3
man/man3/CURLINFO_REQUEST_SIZE.3
man/man3/CURLINFO_RESPONSE_CODE.3
man/man3/CURLINFO_RETRY_AFTER.3
@ -144,6 +145,9 @@ man/man3/CURLOPT_DNS_LOCAL_IP6.3
man/man3/CURLOPT_DNS_SERVERS.3
man/man3/CURLOPT_DNS_SHUFFLE_ADDRESSES.3
man/man3/CURLOPT_DNS_USE_GLOBAL_CACHE.3
man/man3/CURLOPT_DOH_SSL_VERIFYHOST.3
man/man3/CURLOPT_DOH_SSL_VERIFYPEER.3
man/man3/CURLOPT_DOH_SSL_VERIFYSTATUS.3
man/man3/CURLOPT_DOH_URL.3
man/man3/CURLOPT_EGDSOCKET.3
man/man3/CURLOPT_ERRORBUFFER.3

View File

@ -1,8 +1,8 @@
$NetBSD: distinfo,v 1.168 2021/02/03 13:17:18 adam Exp $
$NetBSD: distinfo,v 1.168.2.1 2021/04/04 13:22:06 spz Exp $
SHA1 (curl-7.75.0.tar.xz) = ae65d2140104f441b65b60c5e1d541d11dab80c6
RMD160 (curl-7.75.0.tar.xz) = 3b94b99c85e0cc61784f31d08b34f167d45e452c
SHA512 (curl-7.75.0.tar.xz) = 4c2fc6658379b8b93dd50665b70f3000b63d3bcafd2df60b7e651a8edf4735b3decb06c338b84cb22058191aa9f8f4dc85760a42f9987210b59300758304b746
Size (curl-7.75.0.tar.xz) = 2418816 bytes
SHA1 (curl-7.76.0.tar.xz) = b4e7ee3c9b9d086a116c2f37f0969fc47cbf3ad0
RMD160 (curl-7.76.0.tar.xz) = a24268c5c860c374c892fa6ae2e9426da922484e
SHA512 (curl-7.76.0.tar.xz) = a67e5078b48150c6f5331e76b25a6b197f1e916be1db900bf9455b032b3af5a71610b47e607546ecbae510d196a0cfcb75a14dac549288797af1701b7b587ece
Size (curl-7.76.0.tar.xz) = 2428552 bytes
SHA1 (patch-configure) = 8dcc112bd2950e146a77bed7638e490e24a5aa71
SHA1 (patch-curl-config.in) = a58c777fc1a0a087776e62ed2e2a1e0a339716df

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.11 2021/03/24 18:58:59 ryoon Exp $
# $NetBSD: Makefile,v 1.11.2.2 2021/06/06 09:44:05 bsiegert Exp $
FIREFOX_VER= 78.9.0esr
FIREFOX_VER= 78.11.0esr
PKGNAME= firefox78-l10n-${FIREFOX_VER:S/esr//}
DISTNAME= # empty
CATEGORIES= www

View File

@ -1,370 +1,370 @@
$NetBSD: distinfo,v 1.11 2021/03/24 18:58:59 ryoon Exp $
$NetBSD: distinfo,v 1.11.2.2 2021/06/06 09:44:05 bsiegert Exp $
SHA1 (firefox78-l10n-78.9.0/ach.xpi) = a664183e2b7bda5a4a5de1455c0d1cac6f2be204
RMD160 (firefox78-l10n-78.9.0/ach.xpi) = 556074eb88b3cf467e98a88f2eda3598131e9ab9
SHA512 (firefox78-l10n-78.9.0/ach.xpi) = c80dab73e71a5c8dd8986dfc0d2498f2e8765d241fb2ce316f5803481103fcce511f486a30a9334f08dc50de259e47dd6f8d4611d0a72dcc0a5b2a816ace8d24
Size (firefox78-l10n-78.9.0/ach.xpi) = 460284 bytes
SHA1 (firefox78-l10n-78.9.0/af.xpi) = 516c7e7961065c15143fd97054fe1c13b8523c94
RMD160 (firefox78-l10n-78.9.0/af.xpi) = ce537d75438f160e0445bd45ed5e0b2665ffdb29
SHA512 (firefox78-l10n-78.9.0/af.xpi) = 4aa30092488dde9d7ca790661ff720a6de553713508c99337bc62c992006da033f434c156f6f5f267e0e10b6cf3f04aea5ba693c193916a5646b17cb19a0c9d4
Size (firefox78-l10n-78.9.0/af.xpi) = 428345 bytes
SHA1 (firefox78-l10n-78.9.0/an.xpi) = 45f2de0bcb0e970e8ce694b097c483d902d81aed
RMD160 (firefox78-l10n-78.9.0/an.xpi) = 812774a4e7f02209294362bb89ba1d5c96868202
SHA512 (firefox78-l10n-78.9.0/an.xpi) = f1c27243c873e4e8623a7d1090baad767627319be1b878374025fc7ea21689ed59b7ad0a6fcd443141eeef0d25cd3f7091c7f467a612c239e6ea5e9e02033987
Size (firefox78-l10n-78.9.0/an.xpi) = 508379 bytes
SHA1 (firefox78-l10n-78.9.0/ar.xpi) = 03624faac33223329dda90dcb00f9a55239e6911
RMD160 (firefox78-l10n-78.9.0/ar.xpi) = b42c249a8f70ddf522ac67e6e84890ac08399a03
SHA512 (firefox78-l10n-78.9.0/ar.xpi) = ff938dac4045c68eba4d1743da2d08076ba7a99765a80ab5827cb6ff84273d3502ef6f642c5b27458e90c92468c5fca8e0395198d461f2b9afeabb26d81fdfa8
Size (firefox78-l10n-78.9.0/ar.xpi) = 560968 bytes
SHA1 (firefox78-l10n-78.9.0/ast.xpi) = fb1c044027091ae9e347e352ec051be7ae5f2fcd
RMD160 (firefox78-l10n-78.9.0/ast.xpi) = 3643805fb81f6ed98b5b4bbf24fa465963b4550d
SHA512 (firefox78-l10n-78.9.0/ast.xpi) = eb46efbe9f52fd4730e36e5a606f16059780e6aa7b838111c6b604f08ce692fbbb502dc02890e4bfe174fb57450569fb2e24d4d23a1cbcf61de0c97d76c5733c
Size (firefox78-l10n-78.9.0/ast.xpi) = 456393 bytes
SHA1 (firefox78-l10n-78.9.0/az.xpi) = 7914888c7132bd6547890a7df155974a4e2bc060
RMD160 (firefox78-l10n-78.9.0/az.xpi) = 299428659a394bf84fc2fb1b0419edf472fd9823
SHA512 (firefox78-l10n-78.9.0/az.xpi) = 0fdb56ad3a1c04b8c83a2757640a41bada5f590b6710970ab1329a3c009532a4d01859774b2758edd35b8ee01c6814114c1c044f4e591fcf7b8b46d9c30e364c
Size (firefox78-l10n-78.9.0/az.xpi) = 497432 bytes
SHA1 (firefox78-l10n-78.9.0/be.xpi) = dd3490c5db528bd37117d19783be1e01e637c05e
RMD160 (firefox78-l10n-78.9.0/be.xpi) = 21f164aaba71ab1522a7241830476054c6f97b80
SHA512 (firefox78-l10n-78.9.0/be.xpi) = b253d73767737c747e5bd92c77e937bf34b4af80735cfd02a08dd4657ab4f99baa3e635250c74278ddc71332f09e6e544066a772a30f30730bafee7a123aa18d
Size (firefox78-l10n-78.9.0/be.xpi) = 608647 bytes
SHA1 (firefox78-l10n-78.9.0/bg.xpi) = 9107e5d493ae72666736ad19cc66db77dc8756d7
RMD160 (firefox78-l10n-78.9.0/bg.xpi) = ef31653d2c94c639e5765dd5c6315cf3f2ec816f
SHA512 (firefox78-l10n-78.9.0/bg.xpi) = cb1c7f6c557b222d17142d51926895b2bcf081e61f89209a4e27029ddcdc5511d9d1391f82ab3797aa0431b4f04f65243b4c210cca25ade58afe3f8770eeb9de
Size (firefox78-l10n-78.9.0/bg.xpi) = 553974 bytes
SHA1 (firefox78-l10n-78.9.0/bn.xpi) = 51c6a09eaabc0ba778f24fa4b0932a19b50062c2
RMD160 (firefox78-l10n-78.9.0/bn.xpi) = 71263424fbb88dcd5b75b4cbbe0a35b8233d4877
SHA512 (firefox78-l10n-78.9.0/bn.xpi) = d335ac6c6f481313daf83f1f7c867bf0a69a9d5d6fcf28937b966944f67183d54319793dc6da2083727d666c87546478d098f34a1a27cb55a128d75456bb0643
Size (firefox78-l10n-78.9.0/bn.xpi) = 572623 bytes
SHA1 (firefox78-l10n-78.9.0/br.xpi) = 24744e9064308a2e29fbb764fd54748c22b31691
RMD160 (firefox78-l10n-78.9.0/br.xpi) = df40fbab1be60e90723bc230ea1c72dfe69a733a
SHA512 (firefox78-l10n-78.9.0/br.xpi) = e9d877d90d069ecd02e370f3d104615106c4f0faa39873deb973c0e19812408e10bdcbee1e9194c016ffe54c13232160c2e101eb85138f919450315b170ad5b1
Size (firefox78-l10n-78.9.0/br.xpi) = 507126 bytes
SHA1 (firefox78-l10n-78.9.0/bs.xpi) = 743a276a4d69ec3d73af0edac3193a0a7d21448e
RMD160 (firefox78-l10n-78.9.0/bs.xpi) = d95bf9c579c1568038eab5941486530acd6bca01
SHA512 (firefox78-l10n-78.9.0/bs.xpi) = fc7e913b54b66768bd94ed84a596bedf2c3891698c61a2509a40a9b42e121a306d80dc72d8ad8ddd9c376fb12f222732c2f8aa3a5d98c0fb57b41c2577935628
Size (firefox78-l10n-78.9.0/bs.xpi) = 463809 bytes
SHA1 (firefox78-l10n-78.9.0/ca.xpi) = 614b6cd9e2b0dc4a747e8b7c901298091dd40f72
RMD160 (firefox78-l10n-78.9.0/ca.xpi) = 194ccd2aabb504e7a495192fcaa586e8d2721b36
SHA512 (firefox78-l10n-78.9.0/ca.xpi) = df4a283f83e50c3686ef9422aa44305649a59d76860c254235ab4f9f8f480585948981b4ecbc183531ec983f4aaadf21023ff21a9a38b34d6e2436f0bfdd509d
Size (firefox78-l10n-78.9.0/ca.xpi) = 514187 bytes
SHA1 (firefox78-l10n-78.9.0/cak.xpi) = a8222f0b8a209f228c3b0cac491ed17ff79c579d
RMD160 (firefox78-l10n-78.9.0/cak.xpi) = 1dab2dcb85be8d531e98afbac0c8467e9326b587
SHA512 (firefox78-l10n-78.9.0/cak.xpi) = ad968fa2d1a2fa4940d07f420c86124bfb531fc468a4d6307a638257b88dfb82bdae1f357690de46ed8819cbd690f19f8b90838469aeb713bbaa3aab193bef9e
Size (firefox78-l10n-78.9.0/cak.xpi) = 551553 bytes
SHA1 (firefox78-l10n-78.9.0/cs.xpi) = 2569ddd1a9c1058bb330336db2f3dd8a418cb4b7
RMD160 (firefox78-l10n-78.9.0/cs.xpi) = 6cc9e9a344bb03b8491c7f8b7e089c0bfbc2412f
SHA512 (firefox78-l10n-78.9.0/cs.xpi) = 3cd3f91b2928ad5d96a9dfcbf4a74e01a9031c3703efa1759ec2fc083ddc662fab64dcf7189ab6236eadd309722741a3ec2d506a3b1c57d7758797174ece34e8
Size (firefox78-l10n-78.9.0/cs.xpi) = 540325 bytes
SHA1 (firefox78-l10n-78.9.0/cy.xpi) = c3d2587758ccb227e6e75efec7f360dbb1a33425
RMD160 (firefox78-l10n-78.9.0/cy.xpi) = 22adb3c9b5da23000a02698b31ae4607d4827c93
SHA512 (firefox78-l10n-78.9.0/cy.xpi) = 0c2c588b6fc74dc6d15aa75d42e36e5234ba5b94474d0e17b254b71ce4d5f8f2ad129abdfc83ccb7e489cba799794a2631824d173367444bf3d0b4d34cbbcef2
Size (firefox78-l10n-78.9.0/cy.xpi) = 530707 bytes
SHA1 (firefox78-l10n-78.9.0/da.xpi) = 50fc81c8816db7d4809e9e63245759b4be8f83f3
RMD160 (firefox78-l10n-78.9.0/da.xpi) = 302566ff161a89bb7ddabb482fb8fb06e9aeb0f0
SHA512 (firefox78-l10n-78.9.0/da.xpi) = 14a68014401792cdef7f4c70d0825c1e8cb536e5352dd25adb9e3919f08afe6d9a0c2318deea57c06d1f276efd6b64e0867eda7909752db2a67dd8cf30643104
Size (firefox78-l10n-78.9.0/da.xpi) = 520265 bytes
SHA1 (firefox78-l10n-78.9.0/de.xpi) = 3350043d5b2e20e3b2450efcf5f72a2f990958e2
RMD160 (firefox78-l10n-78.9.0/de.xpi) = 0127bbf00159b73caeb79c36186b8eaf229f9980
SHA512 (firefox78-l10n-78.9.0/de.xpi) = 9b1e235c83a821f11a55e0f36dc4573ee9df17bee3c4abdbc6d9eeb1d506c86228c558c9235448c30b795f7c999e2884012fc0bd1b0afaadc9f43c1bbab32e84
Size (firefox78-l10n-78.9.0/de.xpi) = 542849 bytes
SHA1 (firefox78-l10n-78.9.0/dsb.xpi) = 16a57e8707fcd35146fa7555bc9aef29971bdf28
RMD160 (firefox78-l10n-78.9.0/dsb.xpi) = 1791c8ebdcb43dff89e8da634d3af77bbb7ea208
SHA512 (firefox78-l10n-78.9.0/dsb.xpi) = 7b08ce621dd1bdd601e100bb8b89aa22545a66e7861a3264be3a89585f891f72ee12b61a7b694693f853efb7982bfaddbda5c327a76fd898c413e040343e711a
Size (firefox78-l10n-78.9.0/dsb.xpi) = 554285 bytes
SHA1 (firefox78-l10n-78.9.0/el.xpi) = 642d2641ac0bfa037a00f3f7b6f1c805a3e9f48f
RMD160 (firefox78-l10n-78.9.0/el.xpi) = 92f66489c5a8a55e6e6102b750ef03c9497f444a
SHA512 (firefox78-l10n-78.9.0/el.xpi) = 08d20a576ad80f6e5b07d85d59ccdd7a091b5c2fd5837b97a783f036ae117eec1217b7c5dd17f657878160661cf5da033d85e66f619b1ce4ba8c3d3c03095aa3
Size (firefox78-l10n-78.9.0/el.xpi) = 626562 bytes
SHA1 (firefox78-l10n-78.9.0/en-CA.xpi) = b7b42e8be90b3e19ca9b829503d71faf804595e0
RMD160 (firefox78-l10n-78.9.0/en-CA.xpi) = 1c12f63bfb0dd567ab70ab5ae06c1538c4f286e5
SHA512 (firefox78-l10n-78.9.0/en-CA.xpi) = ac781350778d60831f53f9e63f5cecee7593ea809e42647b1fc7133c6571702bc07fec43cd4abba81bd1ac6e3d9300c712517fde586dc98f37f9da5a649d6b1e
Size (firefox78-l10n-78.9.0/en-CA.xpi) = 497730 bytes
SHA1 (firefox78-l10n-78.9.0/en-GB.xpi) = 3a5e2fc63ad69e8f01c9c45981eb0ccb5315f769
RMD160 (firefox78-l10n-78.9.0/en-GB.xpi) = 495786ceee4fdd8d418bfc4adfba79db5f611492
SHA512 (firefox78-l10n-78.9.0/en-GB.xpi) = 3f41f82a2bad422fd70cd4cfde6d54466127179ae074ded7bb96db4b9a9efe4fdd43994d3b0504f185b55177db55fc6d3a8939c2c563400740ef4b2fdb9d6357
Size (firefox78-l10n-78.9.0/en-GB.xpi) = 497592 bytes
SHA1 (firefox78-l10n-78.9.0/en-US.xpi) = 198d37ec70cb23bd6a5e7e0979e0212544214ccd
RMD160 (firefox78-l10n-78.9.0/en-US.xpi) = 93a8d55b3b549199df077ada5299d573896a02f7
SHA512 (firefox78-l10n-78.9.0/en-US.xpi) = 728e0c02649434dfaf50924fcab9999e0d27a57bccc2e664d97574f1e6d39396543c8daf0020c2689551264a741f376537c26db5ec55615c3b37041b9ae82dd0
Size (firefox78-l10n-78.9.0/en-US.xpi) = 469301 bytes
SHA1 (firefox78-l10n-78.9.0/eo.xpi) = 99183dd8791eae0c2ac4e0052b3c484e42abb6e3
RMD160 (firefox78-l10n-78.9.0/eo.xpi) = b2933b90897360dfbd4d3943ce9c8716c37c64c6
SHA512 (firefox78-l10n-78.9.0/eo.xpi) = 77046b38cf276e6e0c48fed5b0264fa93cd85a07d5c0091bbee6d745605768dbd3b8ded6c5e29e8240cad2bf73912a3346aa919189aeb29a3096930017ae10d9
Size (firefox78-l10n-78.9.0/eo.xpi) = 525746 bytes
SHA1 (firefox78-l10n-78.9.0/es-AR.xpi) = 607bcb5288f3c9d2fa874e8848cfa42c05897577
RMD160 (firefox78-l10n-78.9.0/es-AR.xpi) = f7a074630c98f46a5e26836fb0c6b063661486c9
SHA512 (firefox78-l10n-78.9.0/es-AR.xpi) = 037bfa2956bc9bd7f252fd1c8c65d7161412b4b309de4be809951859b030762f0b701b139d2bea35854bb955503c12abbfe969e84e96cff6e229d89cb8d25780
Size (firefox78-l10n-78.9.0/es-AR.xpi) = 535809 bytes
SHA1 (firefox78-l10n-78.9.0/es-CL.xpi) = 22e4c18017ac2ff521143053a6611e1920e83778
RMD160 (firefox78-l10n-78.9.0/es-CL.xpi) = 29c6512c9e3f22b5e0d0e5afddc2cafbd6472c9c
SHA512 (firefox78-l10n-78.9.0/es-CL.xpi) = fad8cf640c1cc94009605f7f7bf7ff4dcb357ce7bb0a93c3e315d5cf7a55070a848484f5a2c362b1c7bee40fec7783fd00f8ec1b3b0531bad7de0038cadf31fb
Size (firefox78-l10n-78.9.0/es-CL.xpi) = 535358 bytes
SHA1 (firefox78-l10n-78.9.0/es-ES.xpi) = 3015722686850b29f9888903a9c65bb3c1aa4fe5
RMD160 (firefox78-l10n-78.9.0/es-ES.xpi) = de0018d0b857d9295f91c6f359acf5ab72948530
SHA512 (firefox78-l10n-78.9.0/es-ES.xpi) = 7060dd66dc9a964ecc403bff8873611a01d1f13ef19afb0e55196a1acd8af2e50a1d8c74cbf923e0f4659ec4207bd7ec1ea3cfea24846366de3968e3f8e9bcf0
Size (firefox78-l10n-78.9.0/es-ES.xpi) = 522713 bytes
SHA1 (firefox78-l10n-78.9.0/es-MX.xpi) = 0b6b39543108182308713a5834a1cd5a7fbf3e1a
RMD160 (firefox78-l10n-78.9.0/es-MX.xpi) = 10761291d2ed151d0dbadc5e47eaa6f3cf99519a
SHA512 (firefox78-l10n-78.9.0/es-MX.xpi) = bce31dd986ccb0217ef58f237d57355d5b3b6e194aece1692e05fb113618b38c1cdc5ce4ad23d69dfd35d8cedd0278aa7e07d8fd17fbfa538ae058336cad69a2
Size (firefox78-l10n-78.9.0/es-MX.xpi) = 532303 bytes
SHA1 (firefox78-l10n-78.9.0/et.xpi) = 5353c0ec7d36131140776a67db650d3abb32d0ec
RMD160 (firefox78-l10n-78.9.0/et.xpi) = 8be3089b4191365512dc0950ad0cfa5d4fd58051
SHA512 (firefox78-l10n-78.9.0/et.xpi) = 4562842739eeb61a283e0717ae0e8a54a1fd23a1af0f71dd75914fbdf2287a44593fceea96e39667dc34dec899e04f1053fa72cf9397f1108f9175e28bf27a4e
Size (firefox78-l10n-78.9.0/et.xpi) = 485246 bytes
SHA1 (firefox78-l10n-78.9.0/eu.xpi) = 727f3606658de20f224dd0945ae831d3a59bbc65
RMD160 (firefox78-l10n-78.9.0/eu.xpi) = 488d3ab3a425c2e45ce6a1b7375780798a119042
SHA512 (firefox78-l10n-78.9.0/eu.xpi) = 887c2a1d8f5e6a84e03924af60c61e66698adf4bf31562cb9590bb7609752c0577f91b98ac6920cff538be0d69d12cc723463cb1b86bf478f4eba0f687985968
Size (firefox78-l10n-78.9.0/eu.xpi) = 505875 bytes
SHA1 (firefox78-l10n-78.9.0/fa.xpi) = fd20237ce0b5d507d4f82e9dad488d9bcf645b6f
RMD160 (firefox78-l10n-78.9.0/fa.xpi) = 2bfedac0bc3e2cea019095370ee5f990bfc98165
SHA512 (firefox78-l10n-78.9.0/fa.xpi) = 398b4f2cfa45af8f6062387b7430035ad544c22f6715bcc954dfc1364a4d55d5c9d3ff0770bddbc48a555daff41999a9a7897e84506f808e50f17fc973dfd605
Size (firefox78-l10n-78.9.0/fa.xpi) = 538925 bytes
SHA1 (firefox78-l10n-78.9.0/ff.xpi) = 1b4009d75ef473c5df505190009462747680868c
RMD160 (firefox78-l10n-78.9.0/ff.xpi) = 1a8e4602016cc49cf884a064b79428ec7777ee9b
SHA512 (firefox78-l10n-78.9.0/ff.xpi) = 27ac2a34aa7c2e6765a1e96ce1e9627e265f6bb342e40e50a91ce3920bad81063fd4c655596a6c84e68e4e7f71640da95a5a6e9bfd4adf463aba99860f6753ca
Size (firefox78-l10n-78.9.0/ff.xpi) = 481632 bytes
SHA1 (firefox78-l10n-78.9.0/fi.xpi) = 1500ad3628889a490797a511ee9bcac35e84d439
RMD160 (firefox78-l10n-78.9.0/fi.xpi) = 9fb0a621e0226e9a2fc2b0d49cb2d462a866dcaf
SHA512 (firefox78-l10n-78.9.0/fi.xpi) = 84c3b98e5ffd566ec472a4473e24a270f6a7b8b53c4a26da7c77dfbde6dbf982e24fc70d2b14d869e313cc7b11322c198b10c34c43737fbd4c813fd1ebe41a08
Size (firefox78-l10n-78.9.0/fi.xpi) = 517921 bytes
SHA1 (firefox78-l10n-78.9.0/fr.xpi) = 1c38b5f8cc3c1677608ea9b311f299ea073a8c6b
RMD160 (firefox78-l10n-78.9.0/fr.xpi) = 7273739031b9bf71af7c9129eba4825e56a59bf8
SHA512 (firefox78-l10n-78.9.0/fr.xpi) = 83a0cdb75d4c3a73acc4be87401bdccbc630affcd2055b5ad5b240c78ce6d06b8f6eb40f1dc29fd6dab5e9db67393d4b88c103926c8f27f361d4dab53656d2b7
Size (firefox78-l10n-78.9.0/fr.xpi) = 545890 bytes
SHA1 (firefox78-l10n-78.9.0/fy-NL.xpi) = 30d20933f1c8adb916df956d6cfa8eec20155f73
RMD160 (firefox78-l10n-78.9.0/fy-NL.xpi) = 639cce29b368e7ef2de9e6d27ed37a15b6e63a90
SHA512 (firefox78-l10n-78.9.0/fy-NL.xpi) = 71fd41d781ac7ef1bd741fc3df292cd58be1294d539cb479669064d7188f9c9a4160d493f69e16bd4fc95b15d1a746a7042c57e86f7f5ee64ae5666b350c5ff7
Size (firefox78-l10n-78.9.0/fy-NL.xpi) = 532487 bytes
SHA1 (firefox78-l10n-78.9.0/ga-IE.xpi) = 4b81e8804ba30efd769b7f34ceb76414f78fc083
RMD160 (firefox78-l10n-78.9.0/ga-IE.xpi) = 7cc40900594f542f412427972fc8b3f450d3954f
SHA512 (firefox78-l10n-78.9.0/ga-IE.xpi) = 3946db32d04b45ee8f1b7f57ae9d109faf7d00f986c6f1ea77cc4e375176951b047cbeeaca48bcf5007d2f3a2ac5d14e17f42ca96e6bedbdf3c7d60f549f166d
Size (firefox78-l10n-78.9.0/ga-IE.xpi) = 466882 bytes
SHA1 (firefox78-l10n-78.9.0/gd.xpi) = f019c02e18f1d72d5893b23f0de5ace9f3ae34f6
RMD160 (firefox78-l10n-78.9.0/gd.xpi) = b39e0404705f6f09d81623f7de29589381111a22
SHA512 (firefox78-l10n-78.9.0/gd.xpi) = ebea9dff85f81ffbdf7979edbbdc72412d8a4c1dff8f9937b50baab1842f879a55d563236238fb634ea722882cc1805299751051c6cd337e407214721b952892
Size (firefox78-l10n-78.9.0/gd.xpi) = 491888 bytes
SHA1 (firefox78-l10n-78.9.0/gl.xpi) = b87906f42d7615fdff2a7cea93fce3f56f8ccca8
RMD160 (firefox78-l10n-78.9.0/gl.xpi) = 9a456a14d87cdcac406898d0f1cfbdabad920414
SHA512 (firefox78-l10n-78.9.0/gl.xpi) = a71bd3962ce628a07719799feff2bb3996ccd9f315abb35fc8d9f20bc68ca53515cc28b288850a7144d1058a2953b6087efabd6b04fb0707fb910591ab7fbcc5
Size (firefox78-l10n-78.9.0/gl.xpi) = 528415 bytes
SHA1 (firefox78-l10n-78.9.0/gn.xpi) = 7581b7c9f7afceb9a15f184c9c9f9d1655d38e1d
RMD160 (firefox78-l10n-78.9.0/gn.xpi) = 38b0e778b0e148ba02cc4fce72e997b93ac22f41
SHA512 (firefox78-l10n-78.9.0/gn.xpi) = 2f19e8bfca893a4ebbeac32e3bd8e0692d4284164dc0a3372972427a62b4a5e4fb4c877f783b42f4d785bbaece8450867bc7360079f14878e9a9bcbdec6ae143
Size (firefox78-l10n-78.9.0/gn.xpi) = 546474 bytes
SHA1 (firefox78-l10n-78.9.0/gu-IN.xpi) = 57bdce94bc12542da1bfb796bcd287a9c7dc651a
RMD160 (firefox78-l10n-78.9.0/gu-IN.xpi) = 7d12a75d0dc390b2bc7dec1f093895fa546f18c9
SHA512 (firefox78-l10n-78.9.0/gu-IN.xpi) = 4aebfd1898fa2786493819db9a27ee44a7bf5d4c77892686c87cc1692581b5958e6abb11961e7587fafa772da5e0f6a443c30ecfb1cec37818d70c01ad6018fd
Size (firefox78-l10n-78.9.0/gu-IN.xpi) = 541427 bytes
SHA1 (firefox78-l10n-78.9.0/he.xpi) = e32da30c33a231aa8b5e9c011359c7911bce2d9c
RMD160 (firefox78-l10n-78.9.0/he.xpi) = f6ab7c718f6f2717db7118c7aec590812bdddb82
SHA512 (firefox78-l10n-78.9.0/he.xpi) = 35bd7e812ac8250e191ae6621be96cb9df8ef73b3b3fcc9cf7890d47adefae1a8a556aef35aefd1e184bf2997144643b4408950eede67c121636bc02e0f244b8
Size (firefox78-l10n-78.9.0/he.xpi) = 545588 bytes
SHA1 (firefox78-l10n-78.9.0/hi-IN.xpi) = 963e78f1b0f27f6354df71467cd2694beb367a55
RMD160 (firefox78-l10n-78.9.0/hi-IN.xpi) = 372a5da54e831d55daee247a92e8c9addc0d9af7
SHA512 (firefox78-l10n-78.9.0/hi-IN.xpi) = 188ea7dbbed8e72a16787381656af31aba96890f45a30278b80cb5b2be3d71699851053718cfe0ad6605634c61fa1d253f47b1b26a58c71fb0e2a744ac8613c4
Size (firefox78-l10n-78.9.0/hi-IN.xpi) = 567870 bytes
SHA1 (firefox78-l10n-78.9.0/hr.xpi) = 515a64abb575cd048061cd0e90ced5e927a7948b
RMD160 (firefox78-l10n-78.9.0/hr.xpi) = e65db7708efa68a78fa2bf25d6515b96a0fae633
SHA512 (firefox78-l10n-78.9.0/hr.xpi) = cbd7acb0e3a9e80f26be4699b71115bd738b097fe56921849044fa0986df4ba9365f6521ea5de682679c2201dce0af7c76a4eb882b54d7216a214ce690945422
Size (firefox78-l10n-78.9.0/hr.xpi) = 522691 bytes
SHA1 (firefox78-l10n-78.9.0/hsb.xpi) = 81cc957245064ca6461d427ca420803d3ed40451
RMD160 (firefox78-l10n-78.9.0/hsb.xpi) = 959986942ec0f5be325b7c84ec5e895559e4a6d0
SHA512 (firefox78-l10n-78.9.0/hsb.xpi) = 61e0ed13a22f8f51a2efba1e4c2709eb1411ae4ebb80096c0d618f5b2e09f6bea08fd7425b6c9efee04910d3413452088c38a8c7083f067f837d2a9c1c717720
Size (firefox78-l10n-78.9.0/hsb.xpi) = 550664 bytes
SHA1 (firefox78-l10n-78.9.0/hu.xpi) = 39bf396b24d61ff0f49b9f7987ded485e3c495ea
RMD160 (firefox78-l10n-78.9.0/hu.xpi) = efebb2e1377809d89e63ea40618e13e4b996f55d
SHA512 (firefox78-l10n-78.9.0/hu.xpi) = 72a25456481e1a92fd093d0630d4d6ac39fb147d1ecbe8aa442d6a5c0f061ecc302fe04a39ac09f2d0399b2c9aadda433c48ead41c7573c53cae9809edd399d4
Size (firefox78-l10n-78.9.0/hu.xpi) = 554882 bytes
SHA1 (firefox78-l10n-78.9.0/hy-AM.xpi) = 38173718f0810398c0b1433c723cd58eef03d7f1
RMD160 (firefox78-l10n-78.9.0/hy-AM.xpi) = 0ff6664707a8cdff55491ae286cd06235b98ae34
SHA512 (firefox78-l10n-78.9.0/hy-AM.xpi) = 95ea00df43bd225497e4710c684afe86082ec5611d54f1cadd2c10414aab3314e4d0e01304c60f5298140328be94cd8a744040a99535ed10f7b43eb5ad72cae9
Size (firefox78-l10n-78.9.0/hy-AM.xpi) = 588991 bytes
SHA1 (firefox78-l10n-78.9.0/ia.xpi) = d62289c84dc32185e0090026595ac15d5d5cd9c9
RMD160 (firefox78-l10n-78.9.0/ia.xpi) = 05ea28380107b06647fba6528dc45774399ad138
SHA512 (firefox78-l10n-78.9.0/ia.xpi) = 09335e17fea8b9463d075b4f189f1cf5777720315ea5a8824b15c43c6d13a79b8379abb6a0219beebc38b7fbcfd32aeb3744e530c1ad2dcbb04a5882eb834344
Size (firefox78-l10n-78.9.0/ia.xpi) = 518817 bytes
SHA1 (firefox78-l10n-78.9.0/id.xpi) = 8a2d24ec469861c847a721d5f2dac19ffea1dbc3
RMD160 (firefox78-l10n-78.9.0/id.xpi) = 498408c3b22168910bcf20bfe8edb887b6119b69
SHA512 (firefox78-l10n-78.9.0/id.xpi) = f74d3dcf68d42908d99454d8a51cb91984550cefd0ee3f459ecc61de7e7de3416b2b9b6a1a6b47c970955ad9f50406ae8212a88f3b0d62d17624d4b6ff993207
Size (firefox78-l10n-78.9.0/id.xpi) = 509570 bytes
SHA1 (firefox78-l10n-78.9.0/is.xpi) = a26c2e0d099edf428ca80a3c99843e14827a67e5
RMD160 (firefox78-l10n-78.9.0/is.xpi) = f4fe13cb5a7a19cf5bcd358d100bac5051b2bb30
SHA512 (firefox78-l10n-78.9.0/is.xpi) = 25da271194f44ccaf6866bedb4d64e4aef27fd0ddfa2a7110cc56e7085bda9f6f08d86088e4d816e1114a05d568b1fb9ad9af58522aaf4061f90644f9806bb62
Size (firefox78-l10n-78.9.0/is.xpi) = 477040 bytes
SHA1 (firefox78-l10n-78.9.0/it.xpi) = 9441dd4c2314898b10c96913de1018748d1213e0
RMD160 (firefox78-l10n-78.9.0/it.xpi) = 132ac1f7c7c6419d82ebe76613784dc9de94a5a3
SHA512 (firefox78-l10n-78.9.0/it.xpi) = 822e34da30004a68f963394a372434960beaa65c75a0c3fd382badda0377c3d5047917cb60b3df78b179384b6a34a3c17ce85807572bd628bb6e764cc37c9e34
Size (firefox78-l10n-78.9.0/it.xpi) = 449814 bytes
SHA1 (firefox78-l10n-78.9.0/ja.xpi) = 0084074f32b6eb51e5108177cd8770c87a262a10
RMD160 (firefox78-l10n-78.9.0/ja.xpi) = 924c4d9b24725f53baf48c9752260ad6d7dc2050
SHA512 (firefox78-l10n-78.9.0/ja.xpi) = 58c00441792ba6be9a10552d7aa23af353439ac37a87689767a7f456cdfd217109105569c0eba468bf03ec905fd6e1d4099d1fdae6c436ca5f979c48089460dc
Size (firefox78-l10n-78.9.0/ja.xpi) = 578205 bytes
SHA1 (firefox78-l10n-78.9.0/ka.xpi) = 3850b273f609a06b86bef2464520b8872b11fb16
RMD160 (firefox78-l10n-78.9.0/ka.xpi) = 6011986c20ef35f911563bb0dbd6c99ac58b37e6
SHA512 (firefox78-l10n-78.9.0/ka.xpi) = 82eef4ba97e4ff546721bacf789558d5e37733eed2efa180bb53774a6be1d43df24a814505e56a0b5aa13251fc4c62fa161b20af07abe4a12de6eef0ac28ea79
Size (firefox78-l10n-78.9.0/ka.xpi) = 579082 bytes
SHA1 (firefox78-l10n-78.9.0/kab.xpi) = 8aacd4d7f2af4c75c4fdd253b0d99b0caa1287e8
RMD160 (firefox78-l10n-78.9.0/kab.xpi) = 671d34cc2d8f75ec6b49c8978596cfcb4cabffa4
SHA512 (firefox78-l10n-78.9.0/kab.xpi) = 34743fa27845f3dfc919a91d2e736eeae8c50244d4c1782d91f34ecfa70b544ae42e7f1af976879b180ffb3ae085c971f72fc6d15bbde12164119f286b670328
Size (firefox78-l10n-78.9.0/kab.xpi) = 539737 bytes
SHA1 (firefox78-l10n-78.9.0/kk.xpi) = b4bc806d27ebf8c4fcc71be182b44f4848637034
RMD160 (firefox78-l10n-78.9.0/kk.xpi) = 51edc2c31eb5cd963937335a360fbaffb23f883c
SHA512 (firefox78-l10n-78.9.0/kk.xpi) = 459ed654acd681a5fc78681b944f53f990d085ad7a7552373e0c816924bdc7c5c3d84614a526654ee634be30711ce86336147c85df3e99ca52014fe6aa451024
Size (firefox78-l10n-78.9.0/kk.xpi) = 593245 bytes
SHA1 (firefox78-l10n-78.9.0/km.xpi) = b9dfe9d53fca9050bab3c8a4aad316acc612c2ad
RMD160 (firefox78-l10n-78.9.0/km.xpi) = 9a34b4fe70d35a4c23b7c9f342c2eb2e5253e6d2
SHA512 (firefox78-l10n-78.9.0/km.xpi) = eb0c14012deefe8f917ce28183a5ba6374b4bb365645a63fd5051a40efd54e3c3f07d03e8b04dbe9dfecd525a358e6c52ca73858a6bbd7e6eb1e636f22eb7c3b
Size (firefox78-l10n-78.9.0/km.xpi) = 527366 bytes
SHA1 (firefox78-l10n-78.9.0/kn.xpi) = c0b8bf28851080b88627dc593222c799357f4f05
RMD160 (firefox78-l10n-78.9.0/kn.xpi) = 413616446668a3803dd0b7e7ababc7c1e81146b4
SHA512 (firefox78-l10n-78.9.0/kn.xpi) = be5a292b607ce3fe28e7d300a00ce0463dde25a18228098da061bf9a72988c892fe2818b771196fe1d4f5f7f6bfe3b5d1ae07b9060ad1ed6ae5c470c96e82d46
Size (firefox78-l10n-78.9.0/kn.xpi) = 506752 bytes
SHA1 (firefox78-l10n-78.9.0/ko.xpi) = c9234e27327643469572df73c30496b12d73e843
RMD160 (firefox78-l10n-78.9.0/ko.xpi) = 27140337f258cee796f5c376fd43816fba8a7e26
SHA512 (firefox78-l10n-78.9.0/ko.xpi) = 07e0f39f139a1d8b8d73f44ecac73984c114586677d3e60e58d95d37ebce198cfa1859b902ddbcb46b0cbbf1dc222b185dfa0c2635f8b500d9405ccdf7af5a61
Size (firefox78-l10n-78.9.0/ko.xpi) = 567536 bytes
SHA1 (firefox78-l10n-78.9.0/lij.xpi) = 710981c2e4aec2c29efd0c7ea5fc1888a9236254
RMD160 (firefox78-l10n-78.9.0/lij.xpi) = 43c38a7a8988ea2e06aa318c2ab8c6d6c4d92865
SHA512 (firefox78-l10n-78.9.0/lij.xpi) = 14371e9cdef8ebbb8fdc922eda3f945e40a56610347ab376988eed3273fa80d2931ce7e86e51b80e3d52c96dae40359e655001eee7233331e8720e1a9abc6b78
Size (firefox78-l10n-78.9.0/lij.xpi) = 475230 bytes
SHA1 (firefox78-l10n-78.9.0/lt.xpi) = d58f34fa1e32368db17857b46bdaa3db73d84774
RMD160 (firefox78-l10n-78.9.0/lt.xpi) = 36ea556c547a7d30820b3c10c8a9486503c996e5
SHA512 (firefox78-l10n-78.9.0/lt.xpi) = bdc6324bcda0d8772c4821262feffdaad22e0be4ff914678a7942b65b5f76403bbdba5680dd58b0ec38f1919df19b005b2dc1923f94fcbff8814e0e6561660f4
Size (firefox78-l10n-78.9.0/lt.xpi) = 540694 bytes
SHA1 (firefox78-l10n-78.9.0/lv.xpi) = 45727c7e6ca266bbdb35e507038d39a99afa5489
RMD160 (firefox78-l10n-78.9.0/lv.xpi) = 50611e81ebbe240ba84b14925f8234dd59959182
SHA512 (firefox78-l10n-78.9.0/lv.xpi) = db6cd16d893c1e49b021350849ef53cd8b3af8ef305d57c0441095ae4c796a6b39b86cca4aef39011f7fc8da2f464dad9d65e0468e8154b084ca93b447b47670
Size (firefox78-l10n-78.9.0/lv.xpi) = 467467 bytes
SHA1 (firefox78-l10n-78.9.0/mk.xpi) = efcae97b6f06148c7152b19ab8eda6fc011ec933
RMD160 (firefox78-l10n-78.9.0/mk.xpi) = 7ca09fb975b880ba85771d80c4d2b707522307c0
SHA512 (firefox78-l10n-78.9.0/mk.xpi) = a2973e9c5981e2eb29154e7ea65cb92a20968ebf88e5f81723129326dc143ea4ce9c231631c1fc08e790026dcb5a71c23a98b5301f85ce3361fead41ae94119e
Size (firefox78-l10n-78.9.0/mk.xpi) = 460018 bytes
SHA1 (firefox78-l10n-78.9.0/mr.xpi) = 4a8b78ea4427b72a8234f2730a7cea1d55ac0f9e
RMD160 (firefox78-l10n-78.9.0/mr.xpi) = b82101bf545c52dae14b1750a0b80ffa0ed6b4a0
SHA512 (firefox78-l10n-78.9.0/mr.xpi) = fe5128bf120102c63682f7d231bffb543932f90246256c849e042869f753918d83dc523d5d19b4d0d4376a10a21de2f8986645dc796fe632a9e048ae205143c4
Size (firefox78-l10n-78.9.0/mr.xpi) = 541561 bytes
SHA1 (firefox78-l10n-78.9.0/ms.xpi) = d2b7c0fb3c756594c88769ab7694bc130008bc8d
RMD160 (firefox78-l10n-78.9.0/ms.xpi) = 3112987b37a8ff64bf3644a3378b02596cb23ba8
SHA512 (firefox78-l10n-78.9.0/ms.xpi) = f4a460291887ef30bec4289c58f3a0d2edb0bfd6a1d7fa2f451e59c62fd201f16377fb079ea92396e56929a8d2cba2d0cb758995db9e6935742fcc5426348c50
Size (firefox78-l10n-78.9.0/ms.xpi) = 453063 bytes
SHA1 (firefox78-l10n-78.9.0/my.xpi) = 3565668f62149c37d0bf7022ab0d52f206e71ea2
RMD160 (firefox78-l10n-78.9.0/my.xpi) = 787ed4db1e5af33fe263b8793e4b5006aa2fd1fe
SHA512 (firefox78-l10n-78.9.0/my.xpi) = 931b9b7400030b42aa422baf9f361aedc756fc23e1b575609a4e95bacc229f3e54b387ff77a65aa5f759799ea4a56477210385dd9f061a6cb41c94d6731e35ae
Size (firefox78-l10n-78.9.0/my.xpi) = 526327 bytes
SHA1 (firefox78-l10n-78.9.0/nb-NO.xpi) = 9fd0045a1d1714f690458339f27f3d69c3c6adb3
RMD160 (firefox78-l10n-78.9.0/nb-NO.xpi) = 0586b1cac6a26dee64fce1cca40dbd8521aa7aeb
SHA512 (firefox78-l10n-78.9.0/nb-NO.xpi) = 3338ad5799c3e68e60ae61a2c6bc238d36c269591f428d081c81c8aec37e634291a4a7f62b923323ea08aa92f6bb0e7a1e7e985b10a05779432a9652db6c7c1e
Size (firefox78-l10n-78.9.0/nb-NO.xpi) = 518519 bytes
SHA1 (firefox78-l10n-78.9.0/ne-NP.xpi) = c03686898b558448337b7e8ee774a8c03a1e4202
RMD160 (firefox78-l10n-78.9.0/ne-NP.xpi) = 81dd98c375f5b80d08684d21184e0bf8d723e442
SHA512 (firefox78-l10n-78.9.0/ne-NP.xpi) = da38e979f974e9f06f9e0dabf1680f512adaefd0bcf64815d04c571c5bde5e6b5e0c263405cdd848aefd9b40c0f684e98c9f7de3c7fa33966a3507c9d35f2311
Size (firefox78-l10n-78.9.0/ne-NP.xpi) = 483411 bytes
SHA1 (firefox78-l10n-78.9.0/nl.xpi) = 9fdf81956f85f63b58e79dcb90d6a25960fb79d4
RMD160 (firefox78-l10n-78.9.0/nl.xpi) = 2bf91add9777dffee68838b8c8406399493d215a
SHA512 (firefox78-l10n-78.9.0/nl.xpi) = 227f504a14e7d9589a5c5c23b63d2166aa4090277bbcffcff548bc17eaea37ebdbfaafa16a310d0223b97ec0cd947036deba5c816567f76f4103bafd5f3743e4
Size (firefox78-l10n-78.9.0/nl.xpi) = 526205 bytes
SHA1 (firefox78-l10n-78.9.0/nn-NO.xpi) = eaf048b97c732e5b1a693b100a2b4c664eca070c
RMD160 (firefox78-l10n-78.9.0/nn-NO.xpi) = 8017d74c822973b63ab20c4ff3762afce250499a
SHA512 (firefox78-l10n-78.9.0/nn-NO.xpi) = d5bdf96101e24b61dd38d8ae18ffc5f0bd86c0911124bad5a8b92065b49a73756f3c4ca083452577beb57992d4926b0f499d7918acf57baefc24420a71f7e8f2
Size (firefox78-l10n-78.9.0/nn-NO.xpi) = 520148 bytes
SHA1 (firefox78-l10n-78.9.0/oc.xpi) = c15a15e2edea93b72509018799e1e029760903e6
RMD160 (firefox78-l10n-78.9.0/oc.xpi) = bffd63d2b7d48e9a7d9eec973baaf1b9945a3308
SHA512 (firefox78-l10n-78.9.0/oc.xpi) = c2e76a2807a86a95f1284a60f34b7895ae848f06040509fef980e693459b8df5b3242a0b7f5a0ca7af975cedd629c3c7029b2e533afa5792cc0df80d49d2fd44
Size (firefox78-l10n-78.9.0/oc.xpi) = 542154 bytes
SHA1 (firefox78-l10n-78.9.0/pa-IN.xpi) = 7f07b378d39a26202e191f860ae7ab1fd1665248
RMD160 (firefox78-l10n-78.9.0/pa-IN.xpi) = c09d0494c90c1fe22220afb3ca63c0202beadc35
SHA512 (firefox78-l10n-78.9.0/pa-IN.xpi) = 0c596f5e18b0fbac5da2c73e2692938e16bf0ccca835fc63c30b5bc95adb4db567567f688862cd2cc935d608ebf74125bf303efac80a001ffbd044e688d2b11c
Size (firefox78-l10n-78.9.0/pa-IN.xpi) = 580376 bytes
SHA1 (firefox78-l10n-78.9.0/pl.xpi) = 3d68e93e70533cde0e7b6a2a109d2f38805368cd
RMD160 (firefox78-l10n-78.9.0/pl.xpi) = 4c77ddf3f1ddf6c1bd74c153dce6d58fc7113f27
SHA512 (firefox78-l10n-78.9.0/pl.xpi) = 8ef86284224dbd1b5165b0d35be3d16961bc7f42aec9d1d9fde564675f234ed6cd6f24ab1dd6340ad87b8e738b424cfa6ca2e1f6621bc8410f89487f80c8206e
Size (firefox78-l10n-78.9.0/pl.xpi) = 545611 bytes
SHA1 (firefox78-l10n-78.9.0/pt-BR.xpi) = 2cc52a72730e38dcba30c65a413e2459fa35d7aa
RMD160 (firefox78-l10n-78.9.0/pt-BR.xpi) = 82d5e623a8622ddc9992eff340a46d4b33ee7e43
SHA512 (firefox78-l10n-78.9.0/pt-BR.xpi) = e6182f5963012f4f3dc366db384eaff03ae07c653ae247b5fdd863f07294897d935c219ea7ddc8437f54dbd010d29a84ee84e76c6a0e61940ba0c36dc18780e6
Size (firefox78-l10n-78.9.0/pt-BR.xpi) = 527577 bytes
SHA1 (firefox78-l10n-78.9.0/pt-PT.xpi) = 2442aa9546cd4f0a590e5279da230c2b12020aec
RMD160 (firefox78-l10n-78.9.0/pt-PT.xpi) = 21c6a197651b0879ab9f0d3615a1467a5e79cc31
SHA512 (firefox78-l10n-78.9.0/pt-PT.xpi) = d45476310934c72ca6bda0fab931c06832933e8ec313bc1042a0d044222ba3e52044d121f5165a3d272cdf324c74f8d0d06bbba76bd9d5a275296ddbade7439e
Size (firefox78-l10n-78.9.0/pt-PT.xpi) = 532048 bytes
SHA1 (firefox78-l10n-78.9.0/rm.xpi) = 3929150661dc7102a0b3714b653dfd92685c5881
RMD160 (firefox78-l10n-78.9.0/rm.xpi) = e87d7a5c862c8a8bf50878d68697bf58b5f9f873
SHA512 (firefox78-l10n-78.9.0/rm.xpi) = 058162a3f540504d62f437a0efdd66db3e2a938fef3e9ea5fac9f453ab86e39720fa649e19f67d531c7fbe4d2cdff3a66f0e8948ee8fafa3df2e156244a6942b
Size (firefox78-l10n-78.9.0/rm.xpi) = 526719 bytes
SHA1 (firefox78-l10n-78.9.0/ro.xpi) = ca3624af98f6cb58e90b6b4572eb6a29b60a34fa
RMD160 (firefox78-l10n-78.9.0/ro.xpi) = d885e4f9ba1922013802e42dd97ddac19c3cc857
SHA512 (firefox78-l10n-78.9.0/ro.xpi) = fb77d882f5d068c34266990834adfa9106358f647705bffc2637932feb84f85b2ff72884a4c1661d87aa7bb0ff1780f6c790e1d2e71e62bbeeed0f589b2418e5
Size (firefox78-l10n-78.9.0/ro.xpi) = 535562 bytes
SHA1 (firefox78-l10n-78.9.0/ru.xpi) = de60c4787024e0ba7c643ea992a7131c920d0557
RMD160 (firefox78-l10n-78.9.0/ru.xpi) = 165606eecbb6e48089dc84c8be1b35a009c45425
SHA512 (firefox78-l10n-78.9.0/ru.xpi) = de67f659bc9f5b2d8d42f8e7252ac25d4210cb736bd2be46781bcc97703e496e9dd8f30291eec0c44b40573db97d7d2556cb7f794e0944648df738da2805a539
Size (firefox78-l10n-78.9.0/ru.xpi) = 614610 bytes
SHA1 (firefox78-l10n-78.9.0/si.xpi) = 5616fe9fcd61d122234d45d8603fd5ab30041cfd
RMD160 (firefox78-l10n-78.9.0/si.xpi) = 5eff2928929fad9f770120fe788de531151d0ab7
SHA512 (firefox78-l10n-78.9.0/si.xpi) = d2d34e01333351640be19248c7ca13ae66eff23975d0813df4fb7e12033c0ffcae669bd6e54d27b179b527ce1cef8cb49b9df4f3ec617c73817d0cece11f24ea
Size (firefox78-l10n-78.9.0/si.xpi) = 492523 bytes
SHA1 (firefox78-l10n-78.9.0/sk.xpi) = a925b8817dd4a823bbfa6d4a2e72227320dfdc5a
RMD160 (firefox78-l10n-78.9.0/sk.xpi) = b9307118bff6337ba5c27ca32f301e0ff44c68e5
SHA512 (firefox78-l10n-78.9.0/sk.xpi) = ee76106746340e55ae1d358e1e5c8710543e3f84f443fc5e8b48e64031c464a0c6b178c02a83058bdfcc553f101c240282bab759d224952529f82268faff1ed6
Size (firefox78-l10n-78.9.0/sk.xpi) = 534241 bytes
SHA1 (firefox78-l10n-78.9.0/sl.xpi) = ab9d51f89d9dcabcc5ee651e32910ff8d8f112b3
RMD160 (firefox78-l10n-78.9.0/sl.xpi) = 14c075f0efaf41acca14e67a3ab5250723dc62c0
SHA512 (firefox78-l10n-78.9.0/sl.xpi) = f3a9d88e49db4d816cac1da508afe776ea20e4834e88a07662fcc3d827eb34545e4eb3404a54e117b3a993ecd62dffe84dd070d2f15b3527a93bdb1d205daab6
Size (firefox78-l10n-78.9.0/sl.xpi) = 520926 bytes
SHA1 (firefox78-l10n-78.9.0/son.xpi) = 7427b732af6b912781f052c3ccd3a0a4ee251650
RMD160 (firefox78-l10n-78.9.0/son.xpi) = 6da4ad7d90bae785335caf33137b65d023813c68
SHA512 (firefox78-l10n-78.9.0/son.xpi) = ee229cedb5ab7c5e05909056940b0062a2b053363c0788ffc48dc1a7aaaed19c94633282693db5157b9690d5c9dfab277656bed2372ba01ea33550b1034d29a6
Size (firefox78-l10n-78.9.0/son.xpi) = 424585 bytes
SHA1 (firefox78-l10n-78.9.0/sq.xpi) = 76f6d733dbfacac1db1c728ea08f05ff7aace7d6
RMD160 (firefox78-l10n-78.9.0/sq.xpi) = e3e4add569149d059d3db8dcf339ba2ef75fdb41
SHA512 (firefox78-l10n-78.9.0/sq.xpi) = ca45b70f91cf86ed5f43e4e25f0ba7048d98cad431ef2a06f6af308d2c3a28a91d46f77aedbe58216da592c07f7c047db71cd7f90d4fc7a7b949adb985ee7cb6
Size (firefox78-l10n-78.9.0/sq.xpi) = 544917 bytes
SHA1 (firefox78-l10n-78.9.0/sr.xpi) = 8df2efc42faef69119ce55200df6245a53fb131a
RMD160 (firefox78-l10n-78.9.0/sr.xpi) = f15f58959762b90ca1089b08f598e21a1f777295
SHA512 (firefox78-l10n-78.9.0/sr.xpi) = e6675055361fb3b93d33a084030ae65bc89bb7dcaa56e8521f768fa7b03dd05f2b0393db0c3c813fa5d0dae54781ab6673afee252d229fa198c1e52388c33e8c
Size (firefox78-l10n-78.9.0/sr.xpi) = 561378 bytes
SHA1 (firefox78-l10n-78.9.0/sv-SE.xpi) = eaf884b278863210d285b5d059141943a17abcf2
RMD160 (firefox78-l10n-78.9.0/sv-SE.xpi) = 942db29b50b2b00042b5dc8dc1ee23b9a58e4979
SHA512 (firefox78-l10n-78.9.0/sv-SE.xpi) = b4ee27f8826734385f62411e58d3aa281a53bb95e3d712ba667319d7ae7695e104d94ea2a026c1f52afc338589a0aead42f865911583710845daab7bf0acb9d6
Size (firefox78-l10n-78.9.0/sv-SE.xpi) = 529703 bytes
SHA1 (firefox78-l10n-78.9.0/ta.xpi) = ef3ae3cf9009e82f71d30ac323b1abd6f283a52e
RMD160 (firefox78-l10n-78.9.0/ta.xpi) = 32660f94fee97e0b95b85e1138b005e4511de733
SHA512 (firefox78-l10n-78.9.0/ta.xpi) = 35d0d264319a7ba8da7bf2e1d9dac428736d199ebd3b2a93921d0c6530434ea220d5a14980b0ea671b6172765190b651cda849b8a31f1605ec52be5072140982
Size (firefox78-l10n-78.9.0/ta.xpi) = 521534 bytes
SHA1 (firefox78-l10n-78.9.0/te.xpi) = bbda384de6f326647ffccfd5d880f50d7d540b10
RMD160 (firefox78-l10n-78.9.0/te.xpi) = 80e74355335e6f1f0c73578091b657163925077f
SHA512 (firefox78-l10n-78.9.0/te.xpi) = 0bf992a323b477470426b115fee0cd893a73355b677ed4c6f465ecc635e5212cb4bc208894857ae61f4cc1c7d5a20ca60e22c9a19dc36fe9785ba97a256bc44e
Size (firefox78-l10n-78.9.0/te.xpi) = 558414 bytes
SHA1 (firefox78-l10n-78.9.0/th.xpi) = 0d3e32fe8ec3584b071c5221594a3c97d16144a2
RMD160 (firefox78-l10n-78.9.0/th.xpi) = f2340a49e8ad024f4f483704408bb509ff52e837
SHA512 (firefox78-l10n-78.9.0/th.xpi) = c61f0027f0ebef1a912636619473a24404c309aa02044a06c365d8ddeb8d682d9019bcae92bc9968e45cf958fd246adfa5653ec1f6a4aeceb2754f425c311274
Size (firefox78-l10n-78.9.0/th.xpi) = 592237 bytes
SHA1 (firefox78-l10n-78.9.0/tr.xpi) = fec42f8e29ab938d39a0d63861336d0adaf3f039
RMD160 (firefox78-l10n-78.9.0/tr.xpi) = 52b0eb2a815ae04e71c10db335a0737008418037
SHA512 (firefox78-l10n-78.9.0/tr.xpi) = a714e1b37793ae1e4da61ac5774ada19edbd007f1abe68b3f4c31775e3a293601f1e07200ceb87cb62fa8418ead500c4172a008ead113d621468da50476ead2e
Size (firefox78-l10n-78.9.0/tr.xpi) = 539875 bytes
SHA1 (firefox78-l10n-78.9.0/uk.xpi) = 4dd1f59f430f62c7528c1c2aede910952f850e25
RMD160 (firefox78-l10n-78.9.0/uk.xpi) = 6d3efb4da48acd1263846a515408da2cf123d5e9
SHA512 (firefox78-l10n-78.9.0/uk.xpi) = 8c87948b23ac814748ede07c6f1298a6c683e41cd2b20e97c178d9d5e58857949ade58a01701690c87b6277a9e867bd39fc5e1442eec919442730a86c0ad0df0
Size (firefox78-l10n-78.9.0/uk.xpi) = 608590 bytes
SHA1 (firefox78-l10n-78.9.0/uz.xpi) = e23748b3d911c755e2dacde65614807922b16576
RMD160 (firefox78-l10n-78.9.0/uz.xpi) = 7ebed4c391d457775ac32f33eb9d3a69257406bd
SHA512 (firefox78-l10n-78.9.0/uz.xpi) = 0066d7bc9466334ce08b8047b7566bcc6d478a3d46d9b93121e0669d3877539799ccf5fcb19964a7a0467de3e4c68266c710b4706e5612aee361e1e330e80389
Size (firefox78-l10n-78.9.0/uz.xpi) = 477547 bytes
SHA1 (firefox78-l10n-78.9.0/vi.xpi) = 2311a78ac7f8107d02237fe1c7d5f62e27a183ef
RMD160 (firefox78-l10n-78.9.0/vi.xpi) = 48955c9bf3a3ff977b51ab893d71229bdd51c91a
SHA512 (firefox78-l10n-78.9.0/vi.xpi) = 4f29479693dc47c3c0e8945dadc47c254927530093b076882b10a4aace174c2b259af89a38ca10f90e9b06752b3d523b97f274a7f02501e8beab510570bcc0de
Size (firefox78-l10n-78.9.0/vi.xpi) = 562865 bytes
SHA1 (firefox78-l10n-78.9.0/xh.xpi) = 9098315ce8c5c2b23551c63af4391f7b7e3d8822
RMD160 (firefox78-l10n-78.9.0/xh.xpi) = 6d77dc38d8cfe6869da56188af98680a7472bb2d
SHA512 (firefox78-l10n-78.9.0/xh.xpi) = 8f8100470ec3d063e21c798fdca3376b72f58447f5ed2dedd8b90c02cf4ef3180a8914c8d5efddc5e366104b096bfd945a965d88be8c3c4e2e6e55cfad9e94c8
Size (firefox78-l10n-78.9.0/xh.xpi) = 427835 bytes
SHA1 (firefox78-l10n-78.9.0/zh-CN.xpi) = 575331a81fe3a5f03352a3f017e7f4c783204bae
RMD160 (firefox78-l10n-78.9.0/zh-CN.xpi) = 8bd325de8865e32f8b22b795b8b190708eacc008
SHA512 (firefox78-l10n-78.9.0/zh-CN.xpi) = 30eb72ba65b0dcbb4c528f1b72d0a8fc0f4784cff7418b354798d74978a3925069050398e703442b93c04a07c73ce1660a42425a5ed8b8ab2e7242b4d8bae8a8
Size (firefox78-l10n-78.9.0/zh-CN.xpi) = 564760 bytes
SHA1 (firefox78-l10n-78.9.0/zh-TW.xpi) = 32691f81bcfcf0b9c8f5b494e4b60bc149bad962
RMD160 (firefox78-l10n-78.9.0/zh-TW.xpi) = 4066ceb164337e94d22826b277c035e64ac33c70
SHA512 (firefox78-l10n-78.9.0/zh-TW.xpi) = af6684849437a3999cf6b9c9226bb9849d88f6dcd54deee990569c778022caa02d2b0fa2aa45f8a42aad761bbf7b99b2723af3f63d3f0e2faad51a4bdb6f11d6
Size (firefox78-l10n-78.9.0/zh-TW.xpi) = 564725 bytes
SHA1 (firefox78-l10n-78.11.0/ach.xpi) = 9fb0ddafa7cdf1049ad6e4d091287c73e5881505
RMD160 (firefox78-l10n-78.11.0/ach.xpi) = a730f949621616ceb3323c1f90e485774f00d5e9
SHA512 (firefox78-l10n-78.11.0/ach.xpi) = 105c7f21e336de446692f39c770d8fdf828e5f99550e4c1adc2672f9759e123524852c1c5e9cfddac0fc49032bb31d90bc6b169978316e381401e52cfeb7fecd
Size (firefox78-l10n-78.11.0/ach.xpi) = 460297 bytes
SHA1 (firefox78-l10n-78.11.0/af.xpi) = 5134956ca87ca77882cd4e64836d0a39c73b31f4
RMD160 (firefox78-l10n-78.11.0/af.xpi) = bce002c7d36797aaa4237d56a0ea6ec48dd7abef
SHA512 (firefox78-l10n-78.11.0/af.xpi) = 0cee97d8d5584e57f763a57f4c6b4eca7096b112ec086a8171f9ec66c1b5229727be34886b797285431d05aa69c7e29ea8f706a2c579c4ac3486dd392998336f
Size (firefox78-l10n-78.11.0/af.xpi) = 428363 bytes
SHA1 (firefox78-l10n-78.11.0/an.xpi) = bdb8c6f45d7bee5c752c0a40e8d5a04991ed8137
RMD160 (firefox78-l10n-78.11.0/an.xpi) = 3fc3e678c8121e1e780a3a162bf71569bab3c67c
SHA512 (firefox78-l10n-78.11.0/an.xpi) = be4ff7d680db153b382d9d46dc199097ff85eafd8d8bc3867ce2ac761f353aa29346069d2f8ce96f3d9ec60229bd97537e64821ae998356e34f64281b136240c
Size (firefox78-l10n-78.11.0/an.xpi) = 508380 bytes
SHA1 (firefox78-l10n-78.11.0/ar.xpi) = 1f56e08e2f957109a5b44a08bca45ca251905bdf
RMD160 (firefox78-l10n-78.11.0/ar.xpi) = 72b5c82c3868c73ed3b6a962fcc7af7e7b724061
SHA512 (firefox78-l10n-78.11.0/ar.xpi) = dde149a7efcd5dc9edecc3305005a9ce229200ffe5e99fd235343a85a71c28fb38c577c75eb5297ce22a54ef3e15dadb8472981bfe5bf2c6afdd5ad05c4203e8
Size (firefox78-l10n-78.11.0/ar.xpi) = 560961 bytes
SHA1 (firefox78-l10n-78.11.0/ast.xpi) = e08f9b1c0bb740dcb749cd19362e1d2ece654416
RMD160 (firefox78-l10n-78.11.0/ast.xpi) = 82a3af48e2db5debd69bd6abfeec8a344427024d
SHA512 (firefox78-l10n-78.11.0/ast.xpi) = 5fd2db0c59f92a27887cf7636b768fdb245b9d61d50f437566cc77dcc7aa5e59c4dd4c4df82cc82e330dfc7731623d063c4ef3f601b9e7d4b15b083660b28757
Size (firefox78-l10n-78.11.0/ast.xpi) = 456390 bytes
SHA1 (firefox78-l10n-78.11.0/az.xpi) = 7e0972bc8517de388e3b996fab448a543f663cb8
RMD160 (firefox78-l10n-78.11.0/az.xpi) = ba615cbd7d687a37f4987dd572c0a009d0017d17
SHA512 (firefox78-l10n-78.11.0/az.xpi) = f1b9727de0d6f1d46f8fe241843947dd5fbdb9160605e7ee1b6ec2e1d60e87762dbbde3c531d60c2230cee69be99cdfd7e605e8f903f2405eca4c9f3c21ede3e
Size (firefox78-l10n-78.11.0/az.xpi) = 497446 bytes
SHA1 (firefox78-l10n-78.11.0/be.xpi) = fd6f233a16f8a7db4b54c42d4beba4d8f1c95793
RMD160 (firefox78-l10n-78.11.0/be.xpi) = 0f95acea0b1112f0c7729a8569ae8a47038f6f74
SHA512 (firefox78-l10n-78.11.0/be.xpi) = b7b4931349f8e259b79008792b7e41d9a73dc481492cb30826d01b4b2443909a22421f27953412425ffe8eecd01bde5f33f9a610f1967d92708a3947451689ef
Size (firefox78-l10n-78.11.0/be.xpi) = 608660 bytes
SHA1 (firefox78-l10n-78.11.0/bg.xpi) = 443365a5c624826a42584b758cafe04b93fd1523
RMD160 (firefox78-l10n-78.11.0/bg.xpi) = a1a623e3668cd4056d06298e5769e9e7c99257e0
SHA512 (firefox78-l10n-78.11.0/bg.xpi) = fd3f8724deacc830800d6a68a679f98b7f2b8195dbc9ccc267a5793d0ba8cde710f341d41c7affd3c66140f58acfb9deba5c43a1020db7e06bfec812ca265896
Size (firefox78-l10n-78.11.0/bg.xpi) = 553983 bytes
SHA1 (firefox78-l10n-78.11.0/bn.xpi) = 6eb663ddcbfee9a303ee3dbf654dfe2b60c02bf8
RMD160 (firefox78-l10n-78.11.0/bn.xpi) = 3e8b022708bd23c13ddc9947161288ce3a2913c6
SHA512 (firefox78-l10n-78.11.0/bn.xpi) = 9e13f533805f74ada58c31901a13acf4ddc925b604c68784ef0d629930a7e3463de805509058516415e4900010917a6e3df7c46e7eaa3db9209ca7de3c5d2054
Size (firefox78-l10n-78.11.0/bn.xpi) = 572621 bytes
SHA1 (firefox78-l10n-78.11.0/br.xpi) = be41dcc0e8fa8b381809c0d05d86a35b84b5df0b
RMD160 (firefox78-l10n-78.11.0/br.xpi) = 29b2efb9ca4485c008bccf469e46c89b5079c935
SHA512 (firefox78-l10n-78.11.0/br.xpi) = 5e18adadb34c8d84a159d996f35d2a8adcac852445909e9821fb437a5351f191e488e3b4529643154379c167f45e18a1b31ff54ea194d60fe7882b052a916b10
Size (firefox78-l10n-78.11.0/br.xpi) = 507131 bytes
SHA1 (firefox78-l10n-78.11.0/bs.xpi) = 6cc5efe6477ccd819272e7c8e535283be6ae89f3
RMD160 (firefox78-l10n-78.11.0/bs.xpi) = 1b578dc328854db1359b504dab6835f0d0ca0e22
SHA512 (firefox78-l10n-78.11.0/bs.xpi) = 0a55bf9964a63289a7aab3167f0761ff70a9ec037c131f13589f1552b081dbf0f31e56a752ea09d4129bcb4da4fe5af16a548a9009f98b54774e5cf246cf5026
Size (firefox78-l10n-78.11.0/bs.xpi) = 463809 bytes
SHA1 (firefox78-l10n-78.11.0/ca.xpi) = a799c086bc53f59b0eb4ec489ef187500ba5e2b2
RMD160 (firefox78-l10n-78.11.0/ca.xpi) = a6c9eec28612025305f4d570d30fd01d55bc5aca
SHA512 (firefox78-l10n-78.11.0/ca.xpi) = 0b81e11fc94d2c289398a61e70025dcf485ee50aa1ddd76a40ddafb427fc684099879aeabbe084a6bff74a1a8592d833777fdf10d8f0f1bd926344c464d4df0a
Size (firefox78-l10n-78.11.0/ca.xpi) = 514179 bytes
SHA1 (firefox78-l10n-78.11.0/cak.xpi) = 5076b149cff071900956f542c656373d3a17b125
RMD160 (firefox78-l10n-78.11.0/cak.xpi) = ed681e7b86816e13761b628bc70084aa16429715
SHA512 (firefox78-l10n-78.11.0/cak.xpi) = 49197b480aed66cad0d2ffcd1a3396c34c2060ddebbecc79e89c784e6a96b49378a15b18f82799df0b84a0491f93a1f2ffc13c7097a739e592d5d5c85fbe4a70
Size (firefox78-l10n-78.11.0/cak.xpi) = 551546 bytes
SHA1 (firefox78-l10n-78.11.0/cs.xpi) = 74daefa924aa9b5b4637a10f8132be7cffa139ea
RMD160 (firefox78-l10n-78.11.0/cs.xpi) = 08d7bf8783849871daf8128b3d59025b0db73648
SHA512 (firefox78-l10n-78.11.0/cs.xpi) = e7b4f3c0c4765dafe373a62b3c230189592ce0d137a11d816ba453bf4c61fc461abfb17186b81902fd34db7ee5a631699675793c949e31d740ea3624b55e2ba1
Size (firefox78-l10n-78.11.0/cs.xpi) = 540327 bytes
SHA1 (firefox78-l10n-78.11.0/cy.xpi) = 4e66cd9a54d36bb0b96063e770ed7b11b3e42ba7
RMD160 (firefox78-l10n-78.11.0/cy.xpi) = 895de4839d758af5c3b222c35a584f5c4a40f479
SHA512 (firefox78-l10n-78.11.0/cy.xpi) = 85f11501a6b86e52482627bac4a8f18de684e1404af1f1eb5ee431701cac8028e1f6d762e14804d79dc4dc0d9f584dfa021fa8aa51ad664bb308323e4786f937
Size (firefox78-l10n-78.11.0/cy.xpi) = 530692 bytes
SHA1 (firefox78-l10n-78.11.0/da.xpi) = 58dedbb60e5aebe612f0abb704ebbd7cfbd389dc
RMD160 (firefox78-l10n-78.11.0/da.xpi) = 4ea96feec472c1cdca71a9e11c01a725236e2e60
SHA512 (firefox78-l10n-78.11.0/da.xpi) = fffdf640d14aa22496a1bb492cc4fc15a70bd0c2d4d2ca0ac3959867bf0fe55f1f1e8c283af4ef7733ab8656d2fb8a5c6ab2a124178fd09ef372bacdc31f1731
Size (firefox78-l10n-78.11.0/da.xpi) = 520275 bytes
SHA1 (firefox78-l10n-78.11.0/de.xpi) = 977527757fed269edd661c897dbcb7081810707f
RMD160 (firefox78-l10n-78.11.0/de.xpi) = 9453dec64b925912ae253b338ab8354a17bf3e01
SHA512 (firefox78-l10n-78.11.0/de.xpi) = 8aa31a7cc65d875582a0bfaba03353ff45826b97245eca0f1e0e7e639cc2454ceab5c13ddb27d30a6b0b62089c47beeb671d65ece5285e1fcea5f89cb3cb372e
Size (firefox78-l10n-78.11.0/de.xpi) = 542857 bytes
SHA1 (firefox78-l10n-78.11.0/dsb.xpi) = a8f97a952797ebc0a68ece4372dc6e6531f41db6
RMD160 (firefox78-l10n-78.11.0/dsb.xpi) = 2d3ea43c543591c6405e17fa6414131ff4615aeb
SHA512 (firefox78-l10n-78.11.0/dsb.xpi) = f47b3a0bca7b59649d2df91a88de27d93b6d05437676d46bff6d49bc44de2cfcd9c13ae971a2e8db4884aaff6d9a7869764c7633dc94042bee72199f5f9e440d
Size (firefox78-l10n-78.11.0/dsb.xpi) = 554280 bytes
SHA1 (firefox78-l10n-78.11.0/el.xpi) = bc8c049cecc72c742a96a97b5cad4794c1aa82d3
RMD160 (firefox78-l10n-78.11.0/el.xpi) = 52d9e008262f362ce95f77f8bf81946ffc6d327a
SHA512 (firefox78-l10n-78.11.0/el.xpi) = cc5a3d269247b4dcc73f0f3c13443511680d1acbb0c10e24990f40d6ba3772a06d7278c70072320086358329e44c29f48653405e6579e0e7c9925e76d77cf5b7
Size (firefox78-l10n-78.11.0/el.xpi) = 626556 bytes
SHA1 (firefox78-l10n-78.11.0/en-CA.xpi) = 48f43df9b2f04bb7f6587e25888a1a6e64c2eb94
RMD160 (firefox78-l10n-78.11.0/en-CA.xpi) = c9aa5e557861d3ce8d5acf36f435ae37661cdf10
SHA512 (firefox78-l10n-78.11.0/en-CA.xpi) = fd5ce7cf7c87b719b2831dc16f604aa110fad2385fafcacfb03ce523b275c944e3dad530a17a5f0b3b637590adab0fa5a1d65dba45f69ceb05934d5240cb6502
Size (firefox78-l10n-78.11.0/en-CA.xpi) = 497732 bytes
SHA1 (firefox78-l10n-78.11.0/en-GB.xpi) = 6bdc0167cd362ad4cc27389e049a7a0717f1df09
RMD160 (firefox78-l10n-78.11.0/en-GB.xpi) = bc451aa53d30803191362ff05190c83c24890c72
SHA512 (firefox78-l10n-78.11.0/en-GB.xpi) = d04d7f39ab0b74a4201a17ed427670ce97c5e707fac64243d106b00e46bc8f9ef7b0c04877d32d71cf5818758fdd54eb288db8307c517393b809b6176124b91b
Size (firefox78-l10n-78.11.0/en-GB.xpi) = 497595 bytes
SHA1 (firefox78-l10n-78.11.0/en-US.xpi) = 5375571ba6a0d8d35d25877a70f791f83894fe04
RMD160 (firefox78-l10n-78.11.0/en-US.xpi) = 6a408f295d266d1ea3c4f8b1ef763d52c7cb03a0
SHA512 (firefox78-l10n-78.11.0/en-US.xpi) = f3cc7a7493513370b4cb09b10854994439c039b59345c2dcba58a87aae54058b86cfdaf3331e28381a055420a91cf2d9611c3faa27c7ddaca6cf3f37c3cc525b
Size (firefox78-l10n-78.11.0/en-US.xpi) = 469358 bytes
SHA1 (firefox78-l10n-78.11.0/eo.xpi) = 38c10c32f0633a60acda46b5efe14c0f49906667
RMD160 (firefox78-l10n-78.11.0/eo.xpi) = c22b7077547225be84910ee0f04c6c6eac441f08
SHA512 (firefox78-l10n-78.11.0/eo.xpi) = bde81dac8e17fa65057f0e16b166ae093225e1a578fa898e2e3ac645f1e9e65a78591d72a5c00648df6790306daa8a62d27164fcd97327839536af75c40a9809
Size (firefox78-l10n-78.11.0/eo.xpi) = 525746 bytes
SHA1 (firefox78-l10n-78.11.0/es-AR.xpi) = a19fb3a9f2614841c6d297c21779ae940f089ac0
RMD160 (firefox78-l10n-78.11.0/es-AR.xpi) = ac167081196d0abc843e8a9bd4d99da7e3122af9
SHA512 (firefox78-l10n-78.11.0/es-AR.xpi) = ee8cb0ca5830bdfe50c3cc0cec19a0e9541f10aacd5bfb507331c89d7a7b6411941effb0ae707adb7dcbb35034f00f00a5106886be2038ad3c040b04a3743c70
Size (firefox78-l10n-78.11.0/es-AR.xpi) = 535812 bytes
SHA1 (firefox78-l10n-78.11.0/es-CL.xpi) = 618564fd868f590d20be02e08a493041acb82afb
RMD160 (firefox78-l10n-78.11.0/es-CL.xpi) = d3e13ecce45c5258ef285e168409ee94c5943947
SHA512 (firefox78-l10n-78.11.0/es-CL.xpi) = 356135ac19efa2dc103f68fa87ad7cbea8cdb9d2744c70156f2af3e758f00091590a86f93a534f54f5f268a5473b5a4bd1741f58d30cb0692d7a6c59ee4f52b9
Size (firefox78-l10n-78.11.0/es-CL.xpi) = 535368 bytes
SHA1 (firefox78-l10n-78.11.0/es-ES.xpi) = 124334fccbba434706cf7bfe97a86cbb877f5121
RMD160 (firefox78-l10n-78.11.0/es-ES.xpi) = 316e5f45da0711dd7262c86621d6238e9bcfc08c
SHA512 (firefox78-l10n-78.11.0/es-ES.xpi) = e22e942cac32c7f0936d6e53bb9b81c0098d9597089abf1cf9d4de0cd898e3d88269974efd6d4017834839e6a5a21c286ecb73579a15410002086979c172fad0
Size (firefox78-l10n-78.11.0/es-ES.xpi) = 522714 bytes
SHA1 (firefox78-l10n-78.11.0/es-MX.xpi) = 7076d491700f7f1ca777fc58699759316d699655
RMD160 (firefox78-l10n-78.11.0/es-MX.xpi) = 5db3cd155a5fd18a3e0e0d10fcd2f85f5d052188
SHA512 (firefox78-l10n-78.11.0/es-MX.xpi) = caabe1f4c4203450d2428073826970259a382b4697574e883910a0911984459284c8459ec286bdb61a66209ef96c608ec5bf047dcf21a8ca1d203714b6713e2d
Size (firefox78-l10n-78.11.0/es-MX.xpi) = 532294 bytes
SHA1 (firefox78-l10n-78.11.0/et.xpi) = 6bf425822de501077f6e21872547b03d99ed4ab7
RMD160 (firefox78-l10n-78.11.0/et.xpi) = b6e9bfbb1fdab963d98f05abfe2ed50b488d6023
SHA512 (firefox78-l10n-78.11.0/et.xpi) = 3c06680fd1f477f16a8cad514287016adb9261198acdbcc8532904abf78bc0a88ff35539ade1da5cd386a570633776d2397c6b642dc96f179ee2a00a230d8f69
Size (firefox78-l10n-78.11.0/et.xpi) = 485234 bytes
SHA1 (firefox78-l10n-78.11.0/eu.xpi) = d0f1c9f5371bcaec270cb8e5d843e57a3d6ffc65
RMD160 (firefox78-l10n-78.11.0/eu.xpi) = 57cab93b197487ceb1c3bb826d8240e2b99dc8af
SHA512 (firefox78-l10n-78.11.0/eu.xpi) = 93703e656ca5b33117f2831778b7b35a8577e61531bcab55c92c7c26774f0f8a8a53080724ab8732424ea470e914ce8096b9b55fd1d2f4409e7df5fd797b286f
Size (firefox78-l10n-78.11.0/eu.xpi) = 505882 bytes
SHA1 (firefox78-l10n-78.11.0/fa.xpi) = b771c6e056bee493adcd047a0405526dad415839
RMD160 (firefox78-l10n-78.11.0/fa.xpi) = b9027de9c154798a763125137e7e4cbc471c8c84
SHA512 (firefox78-l10n-78.11.0/fa.xpi) = fcd0802e5b085c2186fb7fee4e9bc9cdc173a51a759340fde70c123f58e1cefdc5237609c50148f975038d7af2ba726c6ab034e07c884593435a355c91e19370
Size (firefox78-l10n-78.11.0/fa.xpi) = 538916 bytes
SHA1 (firefox78-l10n-78.11.0/ff.xpi) = 25e2d956fcf8e754bcacbe902181dad182868368
RMD160 (firefox78-l10n-78.11.0/ff.xpi) = 5b3e96851bbf39bd2b7fc50460ecb6b75c8c0958
SHA512 (firefox78-l10n-78.11.0/ff.xpi) = b2e400fe7c82fab165f26624a3e509da1bf9ddb21305a9c6be283503bdddaa67348a4c69641607f82e3569c77c2aa16b067346b8e84be96d57c386d01f6d890e
Size (firefox78-l10n-78.11.0/ff.xpi) = 481611 bytes
SHA1 (firefox78-l10n-78.11.0/fi.xpi) = 8e189a1caeabeb9f08ac1d49ccc58541511e5e25
RMD160 (firefox78-l10n-78.11.0/fi.xpi) = 5c222ca70d86f4faed78c607f84c9cf26f3a4f03
SHA512 (firefox78-l10n-78.11.0/fi.xpi) = add238b483dbddc64983b1cb808cfdcc8e2d834ea9422355281887106a44df242f26ef2ef33aa8e2d1b454d419ada18206d2f8736b9dce7e8d4360a1f97631b4
Size (firefox78-l10n-78.11.0/fi.xpi) = 517919 bytes
SHA1 (firefox78-l10n-78.11.0/fr.xpi) = 549276014caf33dbbe4af320d83e8ac55cea17fb
RMD160 (firefox78-l10n-78.11.0/fr.xpi) = b64a8d520efe2482217e2cf4050d2355bcb1935e
SHA512 (firefox78-l10n-78.11.0/fr.xpi) = 1750ebe31ab6c3bb554646c9cf90c514327b95879021de47b0956b9b334a6f506ac6107de086dea6dd089082b79bfa7638385117d1a35ff212b6f21f7c44f415
Size (firefox78-l10n-78.11.0/fr.xpi) = 545880 bytes
SHA1 (firefox78-l10n-78.11.0/fy-NL.xpi) = d2508cb3ce8100012622c2494210e661e5eac8c7
RMD160 (firefox78-l10n-78.11.0/fy-NL.xpi) = 12775a592f00f341f2014012e3021a0ebef3715e
SHA512 (firefox78-l10n-78.11.0/fy-NL.xpi) = 5812f2c1ec09288335b0cd876fdf38c8b3c8ffa12fb2eed99c164467ad92b126e38b4a20e37c5b477bd95de74d69b4ffddd6d048f3e30736877b844f0da947c0
Size (firefox78-l10n-78.11.0/fy-NL.xpi) = 532475 bytes
SHA1 (firefox78-l10n-78.11.0/ga-IE.xpi) = 31ae140ad490f0c36d1543b6b0a1c1e8e9278cd9
RMD160 (firefox78-l10n-78.11.0/ga-IE.xpi) = cd971fe2e64f6ec825a43a99b0784528eae67fcf
SHA512 (firefox78-l10n-78.11.0/ga-IE.xpi) = b0a1d1255fa05df7566473806d4bd84f4640e4f624502e6630168ec062dd0c55ec75ff66a6ff323d8ea50e72428f28065a16a983bb5d806d830d86ce8d659199
Size (firefox78-l10n-78.11.0/ga-IE.xpi) = 466898 bytes
SHA1 (firefox78-l10n-78.11.0/gd.xpi) = 1271dee9e1b42a774330991bfb1f786ae99d61d1
RMD160 (firefox78-l10n-78.11.0/gd.xpi) = 65e9586b4c382bc4fc86266bfbad10a1e1d51a59
SHA512 (firefox78-l10n-78.11.0/gd.xpi) = f8ab82bb398594482caa4c29b6127d07bdeb69ad7eb5d389f0c3575d75647ea19de93f80793aece94a9fc3bb233fd8c4a8a5acb8c31ff676f499776b47ed4440
Size (firefox78-l10n-78.11.0/gd.xpi) = 491875 bytes
SHA1 (firefox78-l10n-78.11.0/gl.xpi) = 2f4493bf1922769edadb74551c84b0da62ba1135
RMD160 (firefox78-l10n-78.11.0/gl.xpi) = af59e371f081a8eb67eb7ffdb82de66acc2d5d2b
SHA512 (firefox78-l10n-78.11.0/gl.xpi) = bf9d88b5755af5d4f87266d9a824cf48e54530805898987dbff18e5a443a07b23c0e62942c404b4b39d8aeff7615cbea0104826a2c6f38d738bf97f6d61baad6
Size (firefox78-l10n-78.11.0/gl.xpi) = 528415 bytes
SHA1 (firefox78-l10n-78.11.0/gn.xpi) = 7db7639139a0d1eb0aa643772db3b056af15dc63
RMD160 (firefox78-l10n-78.11.0/gn.xpi) = 1ea179a2828e32f7c2343ac886abbd1792da7852
SHA512 (firefox78-l10n-78.11.0/gn.xpi) = 162244124aa73427402158a98ac0d7af2c2804923c12538597ef7214398e325ce681d42724c2d7c5d90f673a98d5cd42a90e5e2890a036a637ab8324fcf372d4
Size (firefox78-l10n-78.11.0/gn.xpi) = 546473 bytes
SHA1 (firefox78-l10n-78.11.0/gu-IN.xpi) = d0cbde21a4756f7817ef64cf8f867533c8bca69f
RMD160 (firefox78-l10n-78.11.0/gu-IN.xpi) = 99e98caab6fdb7a6953bdd808a1818bf4ea4333a
SHA512 (firefox78-l10n-78.11.0/gu-IN.xpi) = 1262c9918f7aa0a288ccc1d64fa0a810545cca9db9cf094d7c8dea51870a8b33fd984d38ca1935ae897fd25488fe6923ef15b027c2cd5baa36b8d9bad5ffdc29
Size (firefox78-l10n-78.11.0/gu-IN.xpi) = 541427 bytes
SHA1 (firefox78-l10n-78.11.0/he.xpi) = 902eaebbede8f42fcd4a1fafe3a031951fbe76e5
RMD160 (firefox78-l10n-78.11.0/he.xpi) = 0ca4cb8a6d0c0308a9e32c13ee4404596327e9f3
SHA512 (firefox78-l10n-78.11.0/he.xpi) = 1bf5c0b2086a0aea35962bf5d642f21dc326d95c36bfdefc7bf90262aad7fe4b797ad44f825e46d02d6dbae4875456c34c816e6317b2025e5ffab3ed2e772b96
Size (firefox78-l10n-78.11.0/he.xpi) = 545591 bytes
SHA1 (firefox78-l10n-78.11.0/hi-IN.xpi) = a379103dcf206eb1bc70b3fb982dd2d0518c54ba
RMD160 (firefox78-l10n-78.11.0/hi-IN.xpi) = d58a6976397e49105e29e9a6f477691cff85d849
SHA512 (firefox78-l10n-78.11.0/hi-IN.xpi) = d0999ce7489b9fa31501e2b4ac17e6989d220b85cdff0b5904f79502fbb7b0cefa9ab2128157f9e1a24947b75c152f4e74704350ecca82e7a3423465e8f3c581
Size (firefox78-l10n-78.11.0/hi-IN.xpi) = 567857 bytes
SHA1 (firefox78-l10n-78.11.0/hr.xpi) = cc7644587ea0e9f666ab9417d5c35a6f2b501cf5
RMD160 (firefox78-l10n-78.11.0/hr.xpi) = 646889e4cb19c6d1a5d641e7e361f8e5d4d8fe86
SHA512 (firefox78-l10n-78.11.0/hr.xpi) = 4b1b533900d5b22f8500f8d2b8faed88d3e0f505f26a574e39ecad308e4d301e356df43a460fe950283c9d821728c27247087c3edee8450bf6c2b40bb7246a44
Size (firefox78-l10n-78.11.0/hr.xpi) = 522694 bytes
SHA1 (firefox78-l10n-78.11.0/hsb.xpi) = 9adb620f1f37e0daf38410d7fe5fe5a94b692696
RMD160 (firefox78-l10n-78.11.0/hsb.xpi) = ee984ae88f5122888290c85de2df3af52924629f
SHA512 (firefox78-l10n-78.11.0/hsb.xpi) = 25eeb1b03a05de8a0f8227f9c851de306767f747846ff58af48ccb30d80acee01c2c3ab2a4a4584a52a3fc50644d41edddf3e8dd91961be32bb4fa358f367e8a
Size (firefox78-l10n-78.11.0/hsb.xpi) = 550670 bytes
SHA1 (firefox78-l10n-78.11.0/hu.xpi) = 7528f8323a96dccc1f4a881ae7670c360825700d
RMD160 (firefox78-l10n-78.11.0/hu.xpi) = 7f051239004bb37163fbd355c5e4919e903f8908
SHA512 (firefox78-l10n-78.11.0/hu.xpi) = 4d53acc3d1b83ee015a992aa0f035c37ed9c1ef37dc5d92bab31a8216f377600b1f5bc942e32cbac1635cc9ad066f19a6829e73a49253bdd73730b52c23166a6
Size (firefox78-l10n-78.11.0/hu.xpi) = 554888 bytes
SHA1 (firefox78-l10n-78.11.0/hy-AM.xpi) = 6c207ade07046159a85100e2b873e01db66d8bb9
RMD160 (firefox78-l10n-78.11.0/hy-AM.xpi) = a30369947fe63f566881155ddaeb6b2a31cefc2f
SHA512 (firefox78-l10n-78.11.0/hy-AM.xpi) = eff9f9d314b67c2e6bc6fbbcc1c21d2a27c18c55e5671868c8a52ab9ec404d4ad0d00db5f050d24ccf473763725eb08ac1b9929ec028559e399efc35a0800243
Size (firefox78-l10n-78.11.0/hy-AM.xpi) = 588982 bytes
SHA1 (firefox78-l10n-78.11.0/ia.xpi) = af924f4ec171f7a3fc70a11de6c148c1229c647d
RMD160 (firefox78-l10n-78.11.0/ia.xpi) = cc46d2a5f9a511da3d0511186b4b7d4131ca086e
SHA512 (firefox78-l10n-78.11.0/ia.xpi) = 44a1ec8802193ad7aecee76d9a3ba98dfb24c33cb28d30686ef3cc88cd3b66da66acc95bfadc05528c563337124c74b27b689269b7ab61776a3741e367fec179
Size (firefox78-l10n-78.11.0/ia.xpi) = 518824 bytes
SHA1 (firefox78-l10n-78.11.0/id.xpi) = c548e3e00ae9246a7cccff119eb2904ccd882a72
RMD160 (firefox78-l10n-78.11.0/id.xpi) = 706cc20a65bd658d34cc7c58526348486812d53a
SHA512 (firefox78-l10n-78.11.0/id.xpi) = 5479fa47f4b86fea14d42edddb175aec79ed50161b467205e21cb24274d1053aabd7014f9e826e053f14ab6aac8adf6142df135d8113c3e36aa23480eff78692
Size (firefox78-l10n-78.11.0/id.xpi) = 509573 bytes
SHA1 (firefox78-l10n-78.11.0/is.xpi) = 0215026fa30f9fe27c22253c0307338c468acad0
RMD160 (firefox78-l10n-78.11.0/is.xpi) = a1b7f25a0a0cc2cb383407745c9252c3153ec08f
SHA512 (firefox78-l10n-78.11.0/is.xpi) = 9219ab7984c05216d1e999ffc045fabbf513f067f02b5c82c9765f67ba533cf279e84dc080fdb65e252e92c0fc641dc7dcbcb806a36de35719fb2dd50ee088de
Size (firefox78-l10n-78.11.0/is.xpi) = 477026 bytes
SHA1 (firefox78-l10n-78.11.0/it.xpi) = 241388b3170d04435954ec1f3a5d1e842ffb3fd9
RMD160 (firefox78-l10n-78.11.0/it.xpi) = 33e546c1c17c71b25648ddd22e8bf5595d95071a
SHA512 (firefox78-l10n-78.11.0/it.xpi) = f60cadc36d5c16b1df5782795a3378cc94f464d955ebc0678d3181dd30b22bedcd0a3559e0253a305d64209b0c3c94f858d5bd7cd717e1c6011e02c441d7ac6b
Size (firefox78-l10n-78.11.0/it.xpi) = 449813 bytes
SHA1 (firefox78-l10n-78.11.0/ja.xpi) = 1045a89212c66bda461112838a1424185763c139
RMD160 (firefox78-l10n-78.11.0/ja.xpi) = 5525dc807996812f736b9cb7819752d23581b201
SHA512 (firefox78-l10n-78.11.0/ja.xpi) = 423eeca73184c5398de16f15668e61f1400961986bec6e4981a0825fd031880cf32dec3616330b223d1b0da6838116b1b3ea70869e426abdf03b3e16a62b0726
Size (firefox78-l10n-78.11.0/ja.xpi) = 578206 bytes
SHA1 (firefox78-l10n-78.11.0/ka.xpi) = fcb4d0f2643d3ee12cfef217fd741ebc49a165ff
RMD160 (firefox78-l10n-78.11.0/ka.xpi) = ba0daef7befe8dd7bce804faf51e18d3b3cd0c03
SHA512 (firefox78-l10n-78.11.0/ka.xpi) = de8fb5f09df796da96c7335ad7a4371ce876503940e4efb99fb74d15deba326a2d562bbc959bee1e2b28e34ff5ca2216d10c60854174d03b73f54d7c8cd3e426
Size (firefox78-l10n-78.11.0/ka.xpi) = 579092 bytes
SHA1 (firefox78-l10n-78.11.0/kab.xpi) = beee5bbc093c7866d82c859a70e5f4d06790e696
RMD160 (firefox78-l10n-78.11.0/kab.xpi) = d7299c0e87ed3e7ea205389038c0956638dd0510
SHA512 (firefox78-l10n-78.11.0/kab.xpi) = f652b9d05fe9c0112152c2017ba43fe759046e4bca5d744d69100e31946c4e9f5946e28f15aa22f4ac38d52e4cf505ad8865246def27fda1cecf1bf86bfcccee
Size (firefox78-l10n-78.11.0/kab.xpi) = 539730 bytes
SHA1 (firefox78-l10n-78.11.0/kk.xpi) = fcd8e840eb235882a62e8d0671b26c10d2fb8aaf
RMD160 (firefox78-l10n-78.11.0/kk.xpi) = 38b9a55328cfbfafffb0640fcdd124247212339d
SHA512 (firefox78-l10n-78.11.0/kk.xpi) = c8abc09acb97221d45e7cbb2ecfba8a9dbd34078ba001f26645f648a2288a81e7b179d7d8ffb6421192c2c9afaeef17138e73913f31844105449aa77c4ca145e
Size (firefox78-l10n-78.11.0/kk.xpi) = 593259 bytes
SHA1 (firefox78-l10n-78.11.0/km.xpi) = 65ec0d3ef5151b2ff7f798d7faf0ee99714eb72e
RMD160 (firefox78-l10n-78.11.0/km.xpi) = d5e8153865fb13799ac3a9a5d9f086a5d83bb635
SHA512 (firefox78-l10n-78.11.0/km.xpi) = 3ba0936f0b4fa2bc8657d078227a61b05f68b19648e315cfff49d25517d9c86854a38791bdca54e58efdddf863df0e5f6441fe81ad6cf78bf1b3535f4839e983
Size (firefox78-l10n-78.11.0/km.xpi) = 527377 bytes
SHA1 (firefox78-l10n-78.11.0/kn.xpi) = 7ccaad3498813a2d49f411491c0fc7c1eb2cac36
RMD160 (firefox78-l10n-78.11.0/kn.xpi) = bfa633079e34ffa70912bb70fbe3832d41eae829
SHA512 (firefox78-l10n-78.11.0/kn.xpi) = cc4fca5f34d9f2e3608eece687250befc21c8269a812d440e181848a3a9075e16172b651c80217fbd34798d264e5cbe5235e73ec9c55e40a2b46ece529f8fe78
Size (firefox78-l10n-78.11.0/kn.xpi) = 506744 bytes
SHA1 (firefox78-l10n-78.11.0/ko.xpi) = 6603125be1d0bfc4e22f76f0ee5abc1f92b0ac6b
RMD160 (firefox78-l10n-78.11.0/ko.xpi) = 4c55cfdb866a5c7597326d5c358cbb870959f0d2
SHA512 (firefox78-l10n-78.11.0/ko.xpi) = 47f5e98275f2feed4e4e87546707869113046592afc4cab3ab590bcc0b81464d0db6080fa9b6e7a29bcc400d7dc822d08e62370e064336b029731875b87a50ee
Size (firefox78-l10n-78.11.0/ko.xpi) = 567516 bytes
SHA1 (firefox78-l10n-78.11.0/lij.xpi) = 32676efd59d967af3aecf77663bace532db51f95
RMD160 (firefox78-l10n-78.11.0/lij.xpi) = b191434017b0633f9a1a56ef879c8731be3e2564
SHA512 (firefox78-l10n-78.11.0/lij.xpi) = acd25c5dd8dc5822d76d7b1bc73fdbf27d7970aeaf4485aad76e38ac56f69053ef8aea72ca02346ca2e18e054a93115d89d09685c1e4fffad31626833dc0cb96
Size (firefox78-l10n-78.11.0/lij.xpi) = 475237 bytes
SHA1 (firefox78-l10n-78.11.0/lt.xpi) = e52a602578f2ba40084367fad83e5c211e23b4b6
RMD160 (firefox78-l10n-78.11.0/lt.xpi) = 7631f6a7790bbc9bb74413063e807245c5266e14
SHA512 (firefox78-l10n-78.11.0/lt.xpi) = 361def4b4c09be1d2a3c79f44dc86da0ffba9200df7d246f895636aaed83ace8f2914206f1b93fccc81a7b6470ba13285ec7fabf2bcb449477a95509d758b824
Size (firefox78-l10n-78.11.0/lt.xpi) = 540691 bytes
SHA1 (firefox78-l10n-78.11.0/lv.xpi) = ebacffa93cfb2edf4cc1de38ec49e54959587241
RMD160 (firefox78-l10n-78.11.0/lv.xpi) = ca2f433bbae5cb410d7f841add66f9255e1a8d00
SHA512 (firefox78-l10n-78.11.0/lv.xpi) = 38f9420b44a8d1e3c9a5ee8be2740eb2d622738757ed355b7af149e17cb0d3268273255b47c75150af79cf76446b0716e9af19c90d0e3bf3e59461764587961c
Size (firefox78-l10n-78.11.0/lv.xpi) = 467473 bytes
SHA1 (firefox78-l10n-78.11.0/mk.xpi) = c362246c1bff57e0afda5f181cb0df86b8e7ecb3
RMD160 (firefox78-l10n-78.11.0/mk.xpi) = 2683234408da2f5d0ef1bcd6320d0b11002aff8c
SHA512 (firefox78-l10n-78.11.0/mk.xpi) = 9f95cf39cb57b7d44d929ab4f9e97aeacafe23f34dc7ba348b8306f2fa64bb18af47d505822064ddefdd28ed2b36eb8da3d4dc43c2ce3b40399b7d827ec3c5c3
Size (firefox78-l10n-78.11.0/mk.xpi) = 460018 bytes
SHA1 (firefox78-l10n-78.11.0/mr.xpi) = 9374c43dbe908d9eff780ef7bb5232d509e056a0
RMD160 (firefox78-l10n-78.11.0/mr.xpi) = acb905e6c563d8f310ddd95ab59afeb9b2f68296
SHA512 (firefox78-l10n-78.11.0/mr.xpi) = 2d9618b81cee472689e5e452a7ddefd9e5f11f30eff1cc52b9d81ab554f0b2c927b8dd3aa387f82dbfb10cb723a83c102134df344848ae0a2e2a37f534329981
Size (firefox78-l10n-78.11.0/mr.xpi) = 541577 bytes
SHA1 (firefox78-l10n-78.11.0/ms.xpi) = 3267a282f597a76d2c839c0f4ca8dcec0aa6b4da
RMD160 (firefox78-l10n-78.11.0/ms.xpi) = f7d85042a218a185611b5957991a7403f50c15ba
SHA512 (firefox78-l10n-78.11.0/ms.xpi) = 536b3739a5648da54ce1485320292ab49fecb82d309a60d50aa949b6636771d7247783f03b1cec77defe30306e78347900712c33c76156538f460a6e1e63aa9c
Size (firefox78-l10n-78.11.0/ms.xpi) = 453066 bytes
SHA1 (firefox78-l10n-78.11.0/my.xpi) = 83943fca7b7a0fd7624d3a5d9252816af977eaa2
RMD160 (firefox78-l10n-78.11.0/my.xpi) = 391ac59a7d84034700fd659bcbf1256d9eac4c7b
SHA512 (firefox78-l10n-78.11.0/my.xpi) = ab17d08f10eeba1dfbc5bba1972fb72b3af892695f03780521627837ea1a2b76b718b8eaf4839b90dcf722e1f607daf97057ea28e6d5ce6bafa814450c21a9b1
Size (firefox78-l10n-78.11.0/my.xpi) = 526332 bytes
SHA1 (firefox78-l10n-78.11.0/nb-NO.xpi) = 7d47cfd2b444ff6d9ba1230fb000593e414a14f5
RMD160 (firefox78-l10n-78.11.0/nb-NO.xpi) = ab572c151e8f4344e060c2b29204faa91053b39b
SHA512 (firefox78-l10n-78.11.0/nb-NO.xpi) = c1c7f80e04292c596d6c527a70e13685dc650e487161e455ec5685cfd46011d099bb90e49c55adb7a18f9f4fde0d07fcb9383ebaa6535a2b4818a37944b7d42e
Size (firefox78-l10n-78.11.0/nb-NO.xpi) = 518531 bytes
SHA1 (firefox78-l10n-78.11.0/ne-NP.xpi) = 07a29daa4cb0d4f7ecd51d6006972fa8072b77f7
RMD160 (firefox78-l10n-78.11.0/ne-NP.xpi) = eff850b401c8adbec1e33a49ed8fe99b3c3b322c
SHA512 (firefox78-l10n-78.11.0/ne-NP.xpi) = e6c59b96247922fc19d9c5c83e425fd0321855078d233e1e0c659d1e35f742f03f0942f11d045356d94c1cf4c291ba2042d29da434d62fcc862be2e2e49c2348
Size (firefox78-l10n-78.11.0/ne-NP.xpi) = 483412 bytes
SHA1 (firefox78-l10n-78.11.0/nl.xpi) = 9e819312ec73a577d9ab963bf1d7e514542bb0df
RMD160 (firefox78-l10n-78.11.0/nl.xpi) = 0ec16d6c59fd5b4a6bb98ddd2e96f8e5089a4135
SHA512 (firefox78-l10n-78.11.0/nl.xpi) = 13d38d71c6b3ba5adc75ea74181bec1028132d74f38efeac868f262304bb042397ffe29221b7a3f960e99cf4b742a4f7e7f6c60b48401267e8a49885e83b1961
Size (firefox78-l10n-78.11.0/nl.xpi) = 526205 bytes
SHA1 (firefox78-l10n-78.11.0/nn-NO.xpi) = 62328b31ea53c624d0f1b1065591ccde70f0233c
RMD160 (firefox78-l10n-78.11.0/nn-NO.xpi) = c2cbd1f6bdabb208e0528416b2d1a642a02ddd91
SHA512 (firefox78-l10n-78.11.0/nn-NO.xpi) = 488d3e3b05654309893ca02cd47e924ac8bc9bd8540fba4148c111c7b2bed459f4271e777829733802980318b2bc5fc5f3e56ee2d559bd820b7857e4c4f13f54
Size (firefox78-l10n-78.11.0/nn-NO.xpi) = 520145 bytes
SHA1 (firefox78-l10n-78.11.0/oc.xpi) = 11d0f84d284e876ada4b1fc7ebb0d2090c8c7bd3
RMD160 (firefox78-l10n-78.11.0/oc.xpi) = cbaf4632981ec9baf58ddbcb8cd668c7d5d7e952
SHA512 (firefox78-l10n-78.11.0/oc.xpi) = a53f385c15a64544b8eb2a25a54e6773e8490f2be24e11235e6d11cd39943a60b661cd34fe7d548aafa7f5647d33af960206329581a2aa5c847246941ea0cd66
Size (firefox78-l10n-78.11.0/oc.xpi) = 542146 bytes
SHA1 (firefox78-l10n-78.11.0/pa-IN.xpi) = d6ce605f209de56a2d7fb989cd0c83145954dad0
RMD160 (firefox78-l10n-78.11.0/pa-IN.xpi) = e425aea0b651d718ce03c118ab203058c8c5cf54
SHA512 (firefox78-l10n-78.11.0/pa-IN.xpi) = 123018ebb7b17af2343cbbe793fbaacc70abfadcac51841045939c0dbbee8824163f437b0642cd29ae67a2d43e4085b3f4d93790c62034f444d97ea5552c4c3a
Size (firefox78-l10n-78.11.0/pa-IN.xpi) = 580369 bytes
SHA1 (firefox78-l10n-78.11.0/pl.xpi) = c1fefbdb430fdd12acdb69e955b50959fb4d43fe
RMD160 (firefox78-l10n-78.11.0/pl.xpi) = 6cc08fbbf59e74d8bb16327dfb9b0e6ae8588a4c
SHA512 (firefox78-l10n-78.11.0/pl.xpi) = 758dd62d0ab41c0581271af6fd5d53dd485581ae7d7b0a5171a1b86371f1ec5c5e839e8a7c3eaf1d798e8471fe3a73128d55b626c7e4f04b12bbc1d9f7f5c22b
Size (firefox78-l10n-78.11.0/pl.xpi) = 545618 bytes
SHA1 (firefox78-l10n-78.11.0/pt-BR.xpi) = 240d4d531224843758f22ec15970f3c3cc01ee89
RMD160 (firefox78-l10n-78.11.0/pt-BR.xpi) = 4cdab67d25c2c44f4f6ac8c01c48c3cf2bc21bb1
SHA512 (firefox78-l10n-78.11.0/pt-BR.xpi) = ac9262ed0cb860c50133985a3a61e5bc250cf32f382ec6edcb1a3a07fece2c32be83ba7c65e9252fdaa7a31e355b92d071f9b70cb975a3f7b2bdb4a99b7c92ce
Size (firefox78-l10n-78.11.0/pt-BR.xpi) = 527580 bytes
SHA1 (firefox78-l10n-78.11.0/pt-PT.xpi) = 5c968463eaab510c5d39fcacbe09b359dd2d29ae
RMD160 (firefox78-l10n-78.11.0/pt-PT.xpi) = 0d8304b0b8fa6938b7aa62d19904cf3326cf2aa5
SHA512 (firefox78-l10n-78.11.0/pt-PT.xpi) = 1019f38b43d4f927e7517423b7a80aa35c4f3a68ffde302edfe4246e66d7b36d8a58172215087cd23691708c4889f964a0e8963c97ec8b0b402f624b13ce66ff
Size (firefox78-l10n-78.11.0/pt-PT.xpi) = 532041 bytes
SHA1 (firefox78-l10n-78.11.0/rm.xpi) = 207b935ddd42c6d37cc5a281cdeab3a25c526654
RMD160 (firefox78-l10n-78.11.0/rm.xpi) = 05b24587b0b128289867b31b22a9143d13657883
SHA512 (firefox78-l10n-78.11.0/rm.xpi) = 034308373ea6cc8dec37144fb4ffb3c219a6da8473e7378f6688af914b89cbe0a50f82cd583b1097fd9f936bc58766c9758614b311702455db091eac97c33f7a
Size (firefox78-l10n-78.11.0/rm.xpi) = 526727 bytes
SHA1 (firefox78-l10n-78.11.0/ro.xpi) = fe001419af0dcfc99a6d9ec3fad8b13c4cea51fe
RMD160 (firefox78-l10n-78.11.0/ro.xpi) = e564aa4b49d34b485e06ddb958f764d098a0f645
SHA512 (firefox78-l10n-78.11.0/ro.xpi) = 5663db1b61229041b3e5578058b860be93f92d0a8e32f8dfd09ac67d9b37433c37000b87b7ef548a6472e628abe08ce2aa03fbd6e7d3830a55b8983525f7051d
Size (firefox78-l10n-78.11.0/ro.xpi) = 535581 bytes
SHA1 (firefox78-l10n-78.11.0/ru.xpi) = b050ad5aaf374ba51ad95d666a139c1b4bff76a9
RMD160 (firefox78-l10n-78.11.0/ru.xpi) = 8174a9e04e442b75115a2897086baf9f4b275c3a
SHA512 (firefox78-l10n-78.11.0/ru.xpi) = e39d18ef5e2446df7a8ba65593cba5a98d20a65fbc653647ce6895447afcd9066bb9b78bc67c38a9033fc9fd92dc0f7b50d21f386bc25b28bf01ba55299eb183
Size (firefox78-l10n-78.11.0/ru.xpi) = 614598 bytes
SHA1 (firefox78-l10n-78.11.0/si.xpi) = 070cfc528584601892d040a59fefcb98c2782376
RMD160 (firefox78-l10n-78.11.0/si.xpi) = 6cd420139e0d41c18646a3e31fb0145f8832684c
SHA512 (firefox78-l10n-78.11.0/si.xpi) = 045eb8af4ac605af448da78e4881dbb6212b73956edf3390b959eb32b0f48a968f81ad98bce5429fb56df83b2c8d0747ea776dcdca87de86a38b1a687492940c
Size (firefox78-l10n-78.11.0/si.xpi) = 492528 bytes
SHA1 (firefox78-l10n-78.11.0/sk.xpi) = 16ee6ca40588803a98318b61e6bf7538a408328b
RMD160 (firefox78-l10n-78.11.0/sk.xpi) = 0214d6bff1e93b6f81a42003d5d1c711ef79ba36
SHA512 (firefox78-l10n-78.11.0/sk.xpi) = 2bf021e6dac9c8fc6c916707eb66d36e633ece6df505f40d31191cc64d58dcf124bf764bb2234277ade7551991ca8e5a66bf798f9d2daeb1b443d96a2faba54c
Size (firefox78-l10n-78.11.0/sk.xpi) = 534235 bytes
SHA1 (firefox78-l10n-78.11.0/sl.xpi) = 999bd477efeab62489dd78c1d6b6e4a076afc863
RMD160 (firefox78-l10n-78.11.0/sl.xpi) = b3ea58879748d43d593ac9415a961d71856c97af
SHA512 (firefox78-l10n-78.11.0/sl.xpi) = c119dfebbc9462523b42cfe12330eb24cb24b6b15ea3c106498c2c11f788f82346eca08e38fb86984509a45b38984d791b464051eddde4db2de60646342e65c9
Size (firefox78-l10n-78.11.0/sl.xpi) = 520931 bytes
SHA1 (firefox78-l10n-78.11.0/son.xpi) = 54d21c58c13b6860ebf32e50700021d396eb66d5
RMD160 (firefox78-l10n-78.11.0/son.xpi) = ed095523869faa10c2d9d86b33b0082f48ef713f
SHA512 (firefox78-l10n-78.11.0/son.xpi) = 60fe6345d2433314ecfcfb57eeb010c77ef3b3d91c2aa73bc735f2c8be32ceb126af69574dcdc0b1871b1f38c8be4a179fc3a8493c38d6383c8c4733da68a1d4
Size (firefox78-l10n-78.11.0/son.xpi) = 424592 bytes
SHA1 (firefox78-l10n-78.11.0/sq.xpi) = 126557bdcd142825d3766a334d9979b2d7307e72
RMD160 (firefox78-l10n-78.11.0/sq.xpi) = d2b45ef2a86aa36fdcfeba10881bec45eb2e1c3f
SHA512 (firefox78-l10n-78.11.0/sq.xpi) = 67edca77eb401854d651e5c926e1906aa5ff1f542360fa333bec134eb216f1b25975778e6d2cddcf9295ae3a458681ab7ce86c64980edbe2a8ddc7c82f635482
Size (firefox78-l10n-78.11.0/sq.xpi) = 544904 bytes
SHA1 (firefox78-l10n-78.11.0/sr.xpi) = 58294583efc85af5e09b423f6184e74a950a95f3
RMD160 (firefox78-l10n-78.11.0/sr.xpi) = 2f00e5b1067a6175615def78f83f1c03ede8e447
SHA512 (firefox78-l10n-78.11.0/sr.xpi) = fae0c9d4a23e75b2c42debd23c6dd75afa4c716d615d9a0339b6e5e7e5c58b2df33053280ab470181f952e3b0fc8822daf56cd32a9af89267c48bc88b4ae1d79
Size (firefox78-l10n-78.11.0/sr.xpi) = 561399 bytes
SHA1 (firefox78-l10n-78.11.0/sv-SE.xpi) = c326fe0d10ce2c45127e00bf83f9098c9cac7911
RMD160 (firefox78-l10n-78.11.0/sv-SE.xpi) = c3a7750acf8317510feae431fe74539c95072874
SHA512 (firefox78-l10n-78.11.0/sv-SE.xpi) = ea4d4894b3ad4677ef4a2aaaca8acd28db6871556c6551657176e436ca9bd866d5e9b07bd9946772ec37a45ebdd0eba39416530042b484c038fdff5b088f38db
Size (firefox78-l10n-78.11.0/sv-SE.xpi) = 529701 bytes
SHA1 (firefox78-l10n-78.11.0/ta.xpi) = dcaf0dbcae02ff92c75929b1b014b56b47cb0fd2
RMD160 (firefox78-l10n-78.11.0/ta.xpi) = 94ebff50dbc6c668ed82efe72a99bb1578efeb5d
SHA512 (firefox78-l10n-78.11.0/ta.xpi) = d6c14daeffb64007a989ecf915294daeb6892e501cc4501dabaaa76f9b117e23bc10da23ab5f41e3be3f1ebbf7c8193e0cdfa08c6cfeaf16ecc7463585b9c998
Size (firefox78-l10n-78.11.0/ta.xpi) = 521547 bytes
SHA1 (firefox78-l10n-78.11.0/te.xpi) = 7284a570df47b567b86041bd5795cc5c0507880d
RMD160 (firefox78-l10n-78.11.0/te.xpi) = ce7b596ccf2ca2dceb38c20e441dd5fc22d61fe7
SHA512 (firefox78-l10n-78.11.0/te.xpi) = d253b4c840a03663f03d77f6dcafddfdd251be5af393d74753b2e95e17f591ce71361e77fb37fe4599d0cb1de18e9edd2fd6d06d2f5534ac763970c58faa3915
Size (firefox78-l10n-78.11.0/te.xpi) = 558415 bytes
SHA1 (firefox78-l10n-78.11.0/th.xpi) = f2a42e153907696f46f16729c95a4b5910f4df6f
RMD160 (firefox78-l10n-78.11.0/th.xpi) = 06709627c2ca156bd02c5950354b482c21e03547
SHA512 (firefox78-l10n-78.11.0/th.xpi) = 19bde374533a290dbca33a57dba655f8b019f409f99f04f932d16c47288ca27cfab3293382efba4b4420a84d39599b128929ef63826966205c5cb16ceb926721
Size (firefox78-l10n-78.11.0/th.xpi) = 592239 bytes
SHA1 (firefox78-l10n-78.11.0/tr.xpi) = 725323047660a50f9a727defcd916e8ab108415a
RMD160 (firefox78-l10n-78.11.0/tr.xpi) = 33fdcd2dc0efbfb774341edd52c5fb1b84b1d5dc
SHA512 (firefox78-l10n-78.11.0/tr.xpi) = 829526b0ebc7b02b786b54c3dca05ff6f506bdf7326f79d68e71eb57fef0915174607945cdc4f5c3fa480a0e2ab262d8ff732c5e8a4c4af123a1c71bee2b2e66
Size (firefox78-l10n-78.11.0/tr.xpi) = 539883 bytes
SHA1 (firefox78-l10n-78.11.0/uk.xpi) = bab529a1884a925aaf401f61afc0fe7fe0ab08c2
RMD160 (firefox78-l10n-78.11.0/uk.xpi) = 7fa0c875728d806aa864ce49af828119c4c703f1
SHA512 (firefox78-l10n-78.11.0/uk.xpi) = 0a32fdb5a0975f79de8a4d8d93da80ffaf7d31bb8ece301e6df88acc2f16c2de46dd1c16f658afe2ff5901f0cb2b73ee638053c16f181df6291b0617e672c64c
Size (firefox78-l10n-78.11.0/uk.xpi) = 608591 bytes
SHA1 (firefox78-l10n-78.11.0/uz.xpi) = 36fb76e34c42c0304c0f7f4460cfbb25558a8d3f
RMD160 (firefox78-l10n-78.11.0/uz.xpi) = f4243e4199646772c50ab140b53012c2233178a9
SHA512 (firefox78-l10n-78.11.0/uz.xpi) = 6811de4a950ca4d72b3567e4dd574651ea7138a23d9b927fb2ee7414a3c4ca40a4142967aa99b6ab69ecca6cf1250ba7a17c2b405b8095afa2633390ab45c97d
Size (firefox78-l10n-78.11.0/uz.xpi) = 477559 bytes
SHA1 (firefox78-l10n-78.11.0/vi.xpi) = b70e384625e9f7c0e3fdb64830812914e1a8bfdc
RMD160 (firefox78-l10n-78.11.0/vi.xpi) = b29fc22c7dbb7d3ac99886d9ec13ce126a939c6f
SHA512 (firefox78-l10n-78.11.0/vi.xpi) = ae9b647b80ea1c1d4cd96385f972798d4d40da395c7cc63f5db1ef0d48397eda6bd75e1e9aa8f70d72fdd3bee4c4a2fc99147749ca05c3207d23f047ca1978e8
Size (firefox78-l10n-78.11.0/vi.xpi) = 562862 bytes
SHA1 (firefox78-l10n-78.11.0/xh.xpi) = 4a34c5298b28bbf5dddfafa2d3bd7082fe494061
RMD160 (firefox78-l10n-78.11.0/xh.xpi) = 3da70848afff336149aec251689d3fd8016e7a35
SHA512 (firefox78-l10n-78.11.0/xh.xpi) = 6f24d33b00abd875db1472ffbc52a5efebc67a8ff29732d098ec6b80c090f26953eac1a5693a86acfa16816ab1506662b29515a22d354bad265893eeea2dbe7e
Size (firefox78-l10n-78.11.0/xh.xpi) = 427833 bytes
SHA1 (firefox78-l10n-78.11.0/zh-CN.xpi) = 9616e11fcd76a7eaf836aefc1054e38ad318e462
RMD160 (firefox78-l10n-78.11.0/zh-CN.xpi) = 422932287a49d5d1c4ffd13e1145a656eff67d8f
SHA512 (firefox78-l10n-78.11.0/zh-CN.xpi) = f2680016d879ce3ebe93f308cccdb59d40a850641e6e433a3b7620566591877746957fd541b49e466d69ef708f4422bab26316c4632459b4c8c1546ad5581a89
Size (firefox78-l10n-78.11.0/zh-CN.xpi) = 564767 bytes
SHA1 (firefox78-l10n-78.11.0/zh-TW.xpi) = ee3e80922b5e55f3b83d842d0e5a121c691a7790
RMD160 (firefox78-l10n-78.11.0/zh-TW.xpi) = 9c379bd444ef28cdd73c26deb2f773c3c68d8ed7
SHA512 (firefox78-l10n-78.11.0/zh-TW.xpi) = 08290cc90f946732c63aeb247ef4babc90128f04dcf3c32b623d0d822941bef9df1a2239c5bc1d067f04e4ba099cefe5255e4e43750f1053e133773258a68d43
Size (firefox78-l10n-78.11.0/zh-TW.xpi) = 564742 bytes

View File

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.22 2021/03/24 18:58:06 ryoon Exp $
# $NetBSD: Makefile,v 1.22.2.2 2021/06/06 09:34:53 bsiegert Exp $
FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR}
MOZ_BRANCH= 78.9
MOZ_BRANCH= 78.11
MOZ_BRANCH_MINOR= .0esr
DISTNAME= firefox-${FIREFOX_VER}.source

View File

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.2 2021/01/27 05:24:11 nia Exp $
@comment $NetBSD: PLIST,v 1.2.2.1 2021/06/06 09:34:53 bsiegert Exp $
bin/firefox78
lib/firefox78/actors/AboutHttpsOnlyErrorChild.jsm
lib/firefox78/actors/AboutHttpsOnlyErrorParent.jsm
@ -820,8 +820,9 @@ lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/france/me
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/in/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/it/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/jp/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/mx/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/nl/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/spain/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/_locales/sweden/messages.json
lib/firefox78/browser/chrome/browser/search-extensions/amazon/favicon.ico
lib/firefox78/browser/chrome/browser/search-extensions/amazon/manifest.json
lib/firefox78/browser/chrome/browser/search-extensions/amazondotcn/_locales/default/messages.json

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.14 2021/03/24 18:58:06 ryoon Exp $
$NetBSD: distinfo,v 1.14.2.2 2021/06/06 09:34:53 bsiegert Exp $
SHA1 (firefox-78.9.0esr.source.tar.xz) = 03a8fc7dc94a2ceaa2a7b902e98d09abab62ae38
RMD160 (firefox-78.9.0esr.source.tar.xz) = eacf473a248d39ff6d3c8e80ff37b11075fae6fe
SHA512 (firefox-78.9.0esr.source.tar.xz) = 28582fc0a03fb50c0a817deb1083817bb7f2f5d38e98439bf655ed4ee18c83568b3002a59ef76edf357bfb11f55832a221d14130f116aac19d850768fba3ac8b
Size (firefox-78.9.0esr.source.tar.xz) = 332717100 bytes
SHA1 (firefox-78.11.0esr.source.tar.xz) = 8d5b4f10557cf7aec25edb2d3dd8b9282224ff53
RMD160 (firefox-78.11.0esr.source.tar.xz) = 2795666245fc3b785014dbfd0f8388bc547a35f7
SHA512 (firefox-78.11.0esr.source.tar.xz) = d02fc2eda587155b1c54ca12a6c5cde220a29f41f154f1c9b71ae8f966d8cc9439201a5b241e03fc0795b74e2479f7aa5d6b69f70b7639432e5382f321f7a6f4
Size (firefox-78.11.0esr.source.tar.xz) = 333002576 bytes
SHA1 (patch-aa) = 458ee59cec3d2d1d52b222ab2031720e7a11fc02
SHA1 (patch-browser_app_profile_firefox.js) = 89cea0a66457c96ad0b94aaa524aa5942ad781d0
SHA1 (patch-build_moz.configure_rust.configure) = ee9e207e67709f3c9455b4d22f5f254890e99ca8

View File

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.15 2021/03/13 15:24:44 taca Exp $
# $NetBSD: Makefile,v 1.15.2.1 2021/05/31 13:28:45 bsiegert Exp $
DISTNAME= squid-4.14
DISTNAME= squid-4.15
CATEGORIES= www
MASTER_SITES= http://www.squid-cache.org/Versions/v4/
MASTER_SITES+= ftp://ftp.squid-cache.org/pub/squid/

View File

@ -1,9 +1,9 @@
$NetBSD: distinfo,v 1.10 2021/03/13 15:24:44 taca Exp $
$NetBSD: distinfo,v 1.10.2.1 2021/05/31 13:28:45 bsiegert Exp $
SHA1 (squid-4.14.tar.xz) = 71ae13a845a6a7ffc69ce11086ea3e427625bc08
RMD160 (squid-4.14.tar.xz) = dfc524f6098fa4b5996962d6298cc5c8ab43d60c
SHA512 (squid-4.14.tar.xz) = 3509caea9e10ea54547eeb769a21f0ca4d37e39a063953821fc51d588b22facfa183d0a48be9ab15831ee646e031079b515c75162515b8a4e7c708df2d41958b
Size (squid-4.14.tar.xz) = 2452892 bytes
SHA1 (squid-4.15.tar.xz) = 60bda34ba39657e2d870c8c1d2acece8a69c3075
RMD160 (squid-4.15.tar.xz) = 8345df992154ab72d566036f5f284188a8352aa6
SHA512 (squid-4.15.tar.xz) = 8f0ce6e30dd9173927e8133618211ffb865fb5dde4c63c2fb465e2efccda4a6efb33f2c0846870c9b915340aff5f59461a60171882bcc0c890336b846fe60bd1
Size (squid-4.15.tar.xz) = 2454176 bytes
SHA1 (patch-compat_compat.h) = 839381a5e1f46e7d9b822bbb53d82a53c996ddc0
SHA1 (patch-configure) = 0d204989666c36172f0765f2a44766d9194c7bb2
SHA1 (patch-errors_Makefile.in) = 84cbf5c836f02ed5fbfff140888c6d3aadeac326

View File

@ -1,4 +1,4 @@
# $NetBSD: builtin.mk,v 1.8 2020/04/14 19:30:46 wiz Exp $
# $NetBSD: builtin.mk,v 1.8.8.1 2021/06/10 08:12:09 bsiegert Exp $
BUILTIN_PKG:= xorgproto
@ -45,11 +45,13 @@ PRE_XORGPROTO_LIST= \
PRE_XORGPROTO_LIST+= \
xproto
# NetBSD-current (with modern xorgproto) has 7.0.32.
# NetBSD-current (as of 9.99.82) has 7.0.33.
# NetBSD-9 (with modern xorgproto) has 7.0.32.
# NetBSD-8 has 7.0.31.
# NetBSD-7 has 7.0.26.
# NetBSD-6 has 7.0.22.
BUILTIN_VERSION_SCRIPT.${BUILTIN_PKG}?= ${SED} -n \
-e 's/Version: 7\.0\.33/2021.3/p' \
-e 's/Version: 7\.0\.32/2018.4/p' \
-e 's/Version: 7\.0\.31/2018.1/p' \
-e 's/Version: 7\.0\.26/2017.1/p' \