-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' of https://github.com/NetBSD/pkgsrc into trunk
- Loading branch information
Showing
5,882 changed files
with
164,901 additions
and
117,041 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.11 2022/09/04 15:08:37 pin Exp $ | ||
$NetBSD: distinfo,v 1.12 2023/03/28 20:31:17 pin Exp $ | ||
|
||
BLAKE2s (Arqiver-0.10.0.tar.gz) = de4f24f3ce3b0da5f1120962399c685aaf3f1b16dc331c2f166bbcb176dc547e | ||
SHA512 (Arqiver-0.10.0.tar.gz) = a220e24631e7102fc71c4dc5d873fc7c3c246c4fbd18c94ae3cd930bb0b9a335914743a1392a118d56557197f2c12fe2157be27ed11121d07a2959bb452a3800 | ||
Size (Arqiver-0.10.0.tar.gz) = 148443 bytes | ||
BLAKE2s (Arqiver-0.11.0.tar.gz) = 071e2de63d07597a60cf46f3267f080de8fb4717bcb0f8f3ef6fede35a6cf566 | ||
SHA512 (Arqiver-0.11.0.tar.gz) = d25956993d0c134e2615178853b9d25cbd84550165958496c752e733e1b42575a7526cb51b70d670549fb27076d5c77620f6ad5a774aa576af1123ee41abe30c | ||
Size (Arqiver-0.11.0.tar.gz) = 151477 bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.21 2021/10/26 09:57:05 nia Exp $ | ||
$NetBSD: distinfo,v 1.23 2023/02/26 06:40:52 wiz Exp $ | ||
|
||
BLAKE2s (cabextract-1.9.1.tar.gz) = 05bc0edc15351dbe862f396c73a9852a85978465fa811fa6c9c428637df0ae85 | ||
SHA512 (cabextract-1.9.1.tar.gz) = c354a4b20a222b40813f01baf8311c9a76611da427f9f44e977a3fd09508e24a18b486e3eef889a9debdca459f1b0c28d5d25429ccd555d3a2e4ff92d91cec14 | ||
Size (cabextract-1.9.1.tar.gz) = 469369 bytes | ||
BLAKE2s (cabextract-1.11.tar.gz) = dc5e135a9e61e4283ec260e6ba62b49dea10ec6cca8039ef71a5273a6ae42976 | ||
SHA512 (cabextract-1.11.tar.gz) = 416bdc5a889c3986b2a5d6ecb8526a69f2d85c34f4856da43951271ff4f31013e4197c56ea5f6b05061b511b980d5a65cb34b9b859d3013c1dbcbb89d43114f9 | ||
Size (cabextract-1.11.tar.gz) = 489656 bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
$NetBSD: patch-CVE-2022-48303,v 1.1 2023/03/26 09:18:48 spz Exp $ | ||
|
||
fix for CVE-2022-48303 | ||
from git.savannah.gnu.org commit 3da78400eafcccb97e2f2fd4b227ea40d794ede8 | ||
|
||
--- src/list.c.orig 2021-02-04 14:00:33.000000000 +0000 | ||
+++ src/list.c | ||
@@ -874,8 +874,9 @@ from_header (char const *where0, size_t | ||
where++; | ||
} | ||
} | ||
- else if (*where == '\200' /* positive base-256 */ | ||
- || *where == '\377' /* negative base-256 */) | ||
+ else if (where <= lim - 2 | ||
+ && (*where == '\200' /* positive base-256 */ | ||
+ || *where == '\377' /* negative base-256 */)) | ||
{ | ||
/* Parse base-256 output. A nonnegative number N is | ||
represented as (256**DIGS)/2 + N; a negative number -N is |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.33 2022/11/28 13:24:55 adam Exp $ | ||
$NetBSD: distinfo,v 1.34 2023/02/14 16:24:35 adam Exp $ | ||
|
||
BLAKE2s (lz4-4.0.2.tar.gz) = 50a804ee985d9259b3016190e38954791f6918b9f53434150777d95fdbf1f608 | ||
SHA512 (lz4-4.0.2.tar.gz) = f2fdd133b9c7389cd7d45b41e61944093b65bcbf529146740fa3721e683a9b4554166c2ad719298e6153e61facc4a4cb021ffd969cd16d4a5b6555fd8f14728f | ||
Size (lz4-4.0.2.tar.gz) = 164309 bytes | ||
BLAKE2s (lz4-4.3.2.tar.gz) = f0dd91bdfa9655a6d0633a67b96e6584cddabf8206c0e4d30fc3fb6029c66ead | ||
SHA512 (lz4-4.3.2.tar.gz) = c2e7d3ec0954110c9b21e562147e80c8abddd21ebb213491d1072454834151a0f3a0935c0f3eebec34c024fe6e79136ccf6363dcb5390aa03cb52489fcb4113c | ||
Size (lz4-4.3.2.tar.gz) = 170869 bytes | ||
SHA1 (patch-setup.py) = d58d21f4c279f37d737b1dce1d3c266d15247707 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.19 2023/02/08 10:26:40 adam Exp $ | ||
$NetBSD: distinfo,v 1.21 2023/03/01 10:37:41 adam Exp $ | ||
|
||
BLAKE2s (zipp-3.12.1.tar.gz) = 1c8cc8adb0a7a67efc443adefbc6c0a3336c644b6dca60319584d229b2ffdd0b | ||
SHA512 (zipp-3.12.1.tar.gz) = 3a7aae6f377736711bfdb7667b40dc03b32cbb765aee2a36fb5848458469c175fd7fea5811d962b97a0779d63d39d0d42a59d7174db318fc6c32ff6bb58416c1 | ||
Size (zipp-3.12.1.tar.gz) = 17987 bytes | ||
BLAKE2s (zipp-3.15.0.tar.gz) = 9cbaa74b7c9ce43fdc57cfa3d792894a1a42475f13caa99c0c5a08b058ea1656 | ||
SHA512 (zipp-3.15.0.tar.gz) = 74a512428fa29e284c515a7e6c45030e4d840727e12e376bca480a90b7fd1e111462deafa372ca9aebd9f53c24bc37111570e7a4a6a873c0b7dee9a0277c100d | ||
Size (zipp-3.15.0.tar.gz) = 18454 bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.24 2022/10/31 21:40:23 adam Exp $ | ||
$NetBSD: distinfo,v 1.25 2023/02/21 06:35:49 adam Exp $ | ||
|
||
BLAKE2s (zstandard-0.19.0.tar.gz) = a0aa39b4ba482e9649b168f332651a7576af0cde7bacbfb9f3b5886341288e8c | ||
SHA512 (zstandard-0.19.0.tar.gz) = 6350dc0bd4f1431cf4dbc951c3f7f1a4190938aff6c0ebc4f14d7a7ca82f2f47e201c73d80cd25bf476fc8760ddc99d6aa7dd3353086faedece4aa96608b6ef9 | ||
Size (zstandard-0.19.0.tar.gz) = 633245 bytes | ||
SHA1 (patch-c-ext_backend__c.c) = 56779ce7c8388f70916c1550062942e976f7c8c4 | ||
BLAKE2s (zstandard-0.20.0.tar.gz) = 6b9f34de561a54916b417244468fcab7154bf21e5fc89dbaef860b323a7c6a72 | ||
SHA512 (zstandard-0.20.0.tar.gz) = 50623300eb6d91fa51311625541647c09b2063f45f0dd507e31e02fc6ce055b3bc5c00730fabf6c1418dbbf1682859573ca45908129215c4b504cbe4fc865756 | ||
Size (zstandard-0.20.0.tar.gz) = 658909 bytes | ||
SHA1 (patch-c-ext_backend__c.c) = 4bb5f403395a5fe6c30934dbdee0cf975ad2942a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
$NetBSD: distinfo,v 1.99 2023/01/27 16:34:24 adam Exp $ | ||
$NetBSD: distinfo,v 1.100 2023/02/20 08:39:00 adam Exp $ | ||
|
||
BLAKE2s (unrarsrc-6.2.5.tar.gz) = 639d791e1c1c92b93d8811a585b3fb6387e17ff921765028563595a2be79aa2a | ||
SHA512 (unrarsrc-6.2.5.tar.gz) = 0b85f085e3419d4d044c70a20abdd28f4528ffcf719703a30656ea906610cd5aa5826f57ef63e2db4e541a2f01c6c5504c19bc67319bf48c377784a30fb4b20e | ||
Size (unrarsrc-6.2.5.tar.gz) = 245711 bytes | ||
SHA1 (patch-makefile) = b467d681dacd3230c6b8761400e6c5566663eae4 | ||
BLAKE2s (unrarsrc-6.2.6.tar.gz) = 72f3b4b3461aac60af5992b081a732bf70b88752081217d87af0159b8e214bcb | ||
SHA512 (unrarsrc-6.2.6.tar.gz) = c2dc4176426dd73cfcbb3af135f8eb44ad455ea29e0e45b23e6987dd33658530444e35598fd5ffae0e27a466a9e01daf4b167edd69a686b62fd3b5a0f3bf81f6 | ||
Size (unrarsrc-6.2.6.tar.gz) = 246212 bytes |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.6 2022/06/12 19:06:53 gutteridge Exp $ | ||
$NetBSD: distinfo,v 1.7 2023/04/02 16:12:46 gutteridge Exp $ | ||
|
||
BLAKE2s (thunar-archive-plugin-0.5.0.tar.bz2) = a8fda06928a5e25d9a04a9bf78b88f615b96ade387203440ae72596f8008d227 | ||
SHA512 (thunar-archive-plugin-0.5.0.tar.bz2) = 5a606f5102689e5e0fa051b25cae6f66248491aeab2c6402fd158151f9cbfab54ff4b61c36eab89fdf323b65065d955bdedd6760f32a5493179e92492ee1df37 | ||
Size (thunar-archive-plugin-0.5.0.tar.bz2) = 378749 bytes | ||
BLAKE2s (thunar-archive-plugin-0.5.1.tar.bz2) = 842251c0bcafba86ee3b3aebc3b03b1203133fd19ba2a0c3ce40d5a9efd16020 | ||
SHA512 (thunar-archive-plugin-0.5.1.tar.bz2) = e79c60d42a3c40007b361fca918977a84c6f8737136f06b0ef073ce574731162fc2145d2563d751b3cf73222e38361aa1ef6435eec90fce7d86d43102e674051 | ||
Size (thunar-archive-plugin-0.5.1.tar.bz2) = 369808 bytes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.