*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2020-09-04 20:59:36 +02:00
parent ec2cad1326
commit fe18493fa6
588 changed files with 3128 additions and 6038 deletions

View File

@ -78,8 +78,7 @@
SUBDIR += phoon
SUBDIR += pp3
SUBDIR += ptiger
SUBDIR += py-RO
SUBDIR += py-astLib
SUBDIR += py-astlib
SUBDIR += py-astropy
SUBDIR += py-astropy-helpers
SUBDIR += py-ephem
@ -90,6 +89,7 @@
SUBDIR += py-pymetar
SUBDIR += py-pysofa
SUBDIR += py-pywapi
SUBDIR += py-ro
SUBDIR += py-spacetrack
SUBDIR += pyweather
SUBDIR += qmapshack

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= gnuastro
PORTVERSION= 0.12
PORTREVISION= 1
PORTVERSION= 0.13
CATEGORIES= astro
MASTER_SITES= GNU

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1589989283
SHA256 (gnuastro-0.12.tar.lz) = ced7ab6d3dca6913fc8df649070dc3a496b67e975b14e57a64e81c2c0e0bf37a
SIZE (gnuastro-0.12.tar.lz) = 3533517
TIMESTAMP = 1599448477
SHA256 (gnuastro-0.13.tar.lz) = 238796a56720736e14151da7a9316d6ed677d4c1ebc59b0bdcd8570b9b41c9f8
SIZE (gnuastro-0.13.tar.lz) = 3582959

View File

@ -1,11 +0,0 @@
--- bin/fits/keywords.c.orig 2020-05-15 16:58:42 UTC
+++ bin/fits/keywords.c
@@ -413,6 +413,8 @@ keywords_date_to_seconds(struct fitsparams *p, fitsfil
/* Return the number of seconds (and subseconds) that it corresponds
to. */
seconds=gal_fits_key_date_to_seconds(fitsdate, &subsecstr, &subsec);
+ if(seconds==GAL_BLANK_SIZE_T)
+ error(EXIT_FAILURE, 0, "the time string couldn't be interpretted");
/* Print the result (for the sub-seconds, print everything after the */
if( !p->cp.quiet )

View File

@ -1,41 +0,0 @@
--- lib/fits.c.orig 2020-05-15 16:58:42 UTC
+++ lib/fits.c
@@ -1023,6 +1023,7 @@ gal_fits_key_date_to_seconds(char *fitsdate, char **su
time_t t;
char *tmp;
struct tm tp;
+ size_t seconds;
void *outptr=subsec;
/* Fill in the 'tp' elements with values read from the string. */
@@ -1044,14 +1045,23 @@ gal_fits_key_date_to_seconds(char *fitsdate, char **su
tmp);
}
- /* Convert the 'tm' structure to 'time_t'. Note that the system's
- timezone and daylight saving need to be subtracted from the output of
- 'mktime'. Otherwise the result will be different on different
- host-system timezones (which is not what we want here: bug #57995). */
- t=mktime(&tp)-timezone-daylight;
+ /* Convert the contents of the 'tm' structure to 'time_t' (a positive
+ integer) with 'mktime'. Note that by design, the system's timezone is
+ included in the returned value of 'mktime' (leading to situations like
+ bug #57995). But it writes the given time's timezone (number of
+ seconds ahead of UTC) in the 'tm_gmtoff' element of its input.
- /* Return the value and set the output pointer. */
- return (size_t)t;
+ IMPORTANT NOTE: the timezone that is calculated by 'mktime' (in
+ 'tp.tm_gmtoff') belongs to the time that is already within 'tp' (this
+ is exactly what we want!). So for example when daylight saving is
+ activated at run-time, but at the time inside 'tp', there was no
+ daylight saving, the value of 'tp.tm_gmtoff' will be different from
+ the 'timezone' global variable. */
+ t=mktime(&tp);
+
+ /* Calculate the seconds and return it. */
+ seconds = (t == (time_t)(-1)) ? GAL_BLANK_SIZE_T : (t+tp.tm_gmtoff);
+ return seconds;
}

View File

@ -48,6 +48,7 @@ include/gnuastro/fits.h
include/gnuastro/git.h
include/gnuastro/interpolate.h
include/gnuastro/jpeg.h
include/gnuastro/kdtree.h
include/gnuastro/label.h
include/gnuastro/list.h
include/gnuastro/match.h
@ -68,8 +69,8 @@ include/gnuastro/units.h
include/gnuastro/wcs.h
lib/libgnuastro.a
lib/libgnuastro.so
lib/libgnuastro.so.10
lib/libgnuastro.so.10.0.0
lib/libgnuastro.so.11
lib/libgnuastro.so.11.0.0
libdata/pkgconfig/gnuastro.pc
man/man1/astarithmetic.1.gz
man/man1/astbuildprog.1.gz

View File

@ -1,11 +1,12 @@
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= astLib
PORTNAME= astlib
PORTVERSION= 0.11.4
CATEGORIES= astro python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= astLib-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Astronomy modules for Python

View File

@ -17,7 +17,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=0:devel/py-setuptools_scm@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>=2.1.0:math/py-matplotlib@${PY_FLAVOR} \
${PYNUMPY} \
${PYTHON_PKGNAMEPREFIX}pandas>=0.22.0:math/py-pandas@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pandas>=0.22.0,1:math/py-pandas@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pint>=0.10.1:devel/py-pint@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pooch>=0.1:devel/py-pooch@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}scipy>=1.0:science/py-scipy@${PY_FLAVOR} \

View File

@ -1,12 +1,13 @@
# Created by: Wen Heping <wenheping@gmail.com>
# $FreeBSD$
PORTNAME= RO
PORTNAME= ro
PORTVERSION= 3.6.9
PORTREVISION= 4
CATEGORIES= astro python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= RO-${PORTVERSION}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Package of Python astronomical utilities

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= swe
PORTVERSION= 2.09.01
PORTVERSION= 2.09.03
CATEGORIES= astro devel
MASTER_SITES= ftp://ftp.astro.com/pub/swisseph/
DISTNAME= ${PORTNAME}_unix_src_${PORTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596742493
SHA256 (swe_unix_src_2.09.01.tar.gz) = bb2d0d63f749fc6a0fdb6c0513a4c5edcdf2d7a3fdf718f1befe6a93df46fd03
SIZE (swe_unix_src_2.09.01.tar.gz) = 8956087
TIMESTAMP = 1599298801
SHA256 (swe_unix_src_2.09.03.tar.gz) = d9a12ea4454784ed7ddbdaa200a91a8110dd0ea8a96a8532fda2f27be3b71786
SIZE (swe_unix_src_2.09.03.tar.gz) = 6654273

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= weather
PORTVERSION= 2.4
PORTVERSION= 2.4.1
CATEGORIES= astro python
MASTER_SITES= http://fungi.yuggoth.org/weather/src/ \
LOCAL/sunpoet

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1592846026
SHA256 (weather-2.4.tar.xz) = 6a5bac6110922b584ee635ddfce7594f8a3fea6b0b2763435bd641f6c9a4c420
SIZE (weather-2.4.tar.xz) = 8343344
TIMESTAMP = 1598970889
SHA256 (weather-2.4.1.tar.xz) = da37ab3b8d758fd2d4bf13be6ff286931e85b0a446c2b6d5a35ba8431b40c659
SIZE (weather-2.4.1.tar.xz) = 8359156

View File

@ -2,7 +2,7 @@
PORTNAME= padthv1
DISTVERSIONPREFIX= ${PORTNAME}_
DISTVERSION= 0_9_15
DISTVERSION= 0_9_16
CATEGORIES= audio
PKGNAMESUFFIX= -lv2

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1592940655
SHA256 (rncbc-padthv1-padthv1_0_9_15_GH0.tar.gz) = 4cafc1a36006ab36ce87b8bef6e5e25aab2916944305f41290b0f88ca6a40eba
SIZE (rncbc-padthv1-padthv1_0_9_15_GH0.tar.gz) = 248820
TIMESTAMP = 1599404427
SHA256 (rncbc-padthv1-padthv1_0_9_16_GH0.tar.gz) = ee3e9cbdc7c83602de0ac765ec1437f16c428b61498c351705192cf36352dbad
SIZE (rncbc-padthv1-padthv1_0_9_16_GH0.tar.gz) = 249238

View File

@ -3,6 +3,7 @@
PORTNAME= gmusicapi
PORTVERSION= 11.0.1
PORTREVISION= 1
CATEGORIES= audio python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -24,7 +25,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>=1.3.0:devel/py-appdirs@${PY_FLAVOR}
${PYTHON_PKGNAMEPREFIX}requests>=2.3.0:www/py-requests@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}validictory>=0.9.3:devel/py-validictory@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}ndg_httpsclient>0:net/py-ndg_httpsclient@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}MechanicalSoup>0:www/py-MechanicalSoup@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}mechanicalsoup>0:www/py-mechanicalsoup@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pyasn1>0:devel/py-pyasn1@${PY_FLAVOR}

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= sounddevice
DISTVERSION= 0.3.15
DISTVERSION= 0.4.0
CATEGORIES= audio python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1584781388
SHA256 (sounddevice-0.3.15.tar.gz) = 028f6e5df83027f4bfba5d6d61e6d46eb8689f9e647825e09f539920dee17d2c
SIZE (sounddevice-0.3.15.tar.gz) = 50357
TIMESTAMP = 1599285953
SHA256 (sounddevice-0.4.0.tar.gz) = 007cfef077c447eebbdbca3d510ca4365c211c2c6c4d2912d6eec43c8cbcbc02
SIZE (sounddevice-0.4.0.tar.gz) = 50193

View File

@ -2,7 +2,7 @@
PORTNAME= samplv1
DISTVERSIONPREFIX= ${PORTNAME}_
DISTVERSION= 0_9_15
DISTVERSION= 0_9_16
CATEGORIES= audio
PKGNAMESUFFIX= -lv2

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1592940669
SHA256 (rncbc-samplv1-samplv1_0_9_15_GH0.tar.gz) = 4a84f38eb1bd15b3c19fd5ced2c93a4e5e3aa824f7d8b6ae664e2a6e7e4d50f1
SIZE (rncbc-samplv1-samplv1_0_9_15_GH0.tar.gz) = 270786
TIMESTAMP = 1599404614
SHA256 (rncbc-samplv1-samplv1_0_9_16_GH0.tar.gz) = 10b7441754d8dd476059ad381a8e46876a355bd2ec77b6da4ce3f90063efd316
SIZE (rncbc-samplv1-samplv1_0_9_16_GH0.tar.gz) = 271212

View File

@ -2,7 +2,7 @@
PORTNAME= synthv1
DISTVERSIONPREFIX= ${PORTNAME}_
DISTVERSION= 0_9_15
DISTVERSION= 0_9_16
CATEGORIES= audio
PKGNAMESUFFIX= -lv2

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1592940682
SHA256 (rncbc-synthv1-synthv1_0_9_15_GH0.tar.gz) = a290107a71b9d348e78c44907939266e684861d694eae25155d4b3f5e73ef45e
SIZE (rncbc-synthv1-synthv1_0_9_15_GH0.tar.gz) = 242365
TIMESTAMP = 1599404798
SHA256 (rncbc-synthv1-synthv1_0_9_16_GH0.tar.gz) = f1d5be17ac93163a78e6630af7cb892293936ca783769ad24fe10c22b385fbe6
SIZE (rncbc-synthv1-synthv1_0_9_16_GH0.tar.gz) = 242683

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= gatk
DISTVERSION= 4.1.8.0
DISTVERSION= 4.1.8.1
CATEGORIES= biology java
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1594254328
SHA256 (gatk-4.1.8.0-deps.tar.gz) = 487e08359c28ee94daf84c9701b7e6d856a929c8573f2e057f268c0ec9703ad3
SIZE (gatk-4.1.8.0-deps.tar.gz) = 258309163
SHA256 (broadinstitute-gatk-4.1.8.0_GH0.tar.gz) = 4753059d12694156d14bba6c0d5f11ec868a2430b5837cdea61df90fcff932d1
SIZE (broadinstitute-gatk-4.1.8.0_GH0.tar.gz) = 69122408
TIMESTAMP = 1599358143
SHA256 (gatk-4.1.8.1-deps.tar.gz) = 74ba5b13c82bc86fe7ad7c8cf545ca2bdd6a5a3946332b702b650b0b98f3edcc
SIZE (gatk-4.1.8.1-deps.tar.gz) = 258316793
SHA256 (broadinstitute-gatk-4.1.8.1_GH0.tar.gz) = 9f49d9fd1975162754c5364961c9b31dbc884028428651789daf36303ba2814f
SIZE (broadinstitute-gatk-4.1.8.1_GH0.tar.gz) = 69129515

View File

@ -2,7 +2,7 @@
PORTNAME= digital
DISTVERSIONPREFIX= v
DISTVERSION= 0.24
DISTVERSION= 0.25
CATEGORIES= cad java
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1590803589
SHA256 (digital-0.24-deps.tar.gz) = 22aeefe40eae7bd4bb9e7c0ebb6dcdfb62b558cf780d9802da4e4e27d4873f2e
SIZE (digital-0.24-deps.tar.gz) = 64789742
SHA256 (hneemann-Digital-v0.24_GH0.tar.gz) = 77f1fb9e96affc3cf401dd4c8e256d7fe833b98c5a2fb736daf73eb9a0aedd3e
SIZE (hneemann-Digital-v0.24_GH0.tar.gz) = 4799156
TIMESTAMP = 1599405359
SHA256 (digital-0.25-deps.tar.gz) = 86215257f6c1cbd8f77059987741cca9fb75fdc4a0458aa1e77941b69d886750
SIZE (digital-0.25-deps.tar.gz) = 65001565
SHA256 (hneemann-Digital-v0.25_GH0.tar.gz) = c07501e92b028217f601606e1af4e3b2f5b8b486e5e2fd2ea2e4d20cade884ac
SIZE (hneemann-Digital-v0.25_GH0.tar.gz) = 11489450

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wordpress
PORTVERSION= 5.4.2
PORTVERSION= 5.5.1
DISTVERSIONSUFFIX= -zh_TW
CATEGORIES= chinese www
MASTER_SITES= http://tw.wordpress.org/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1593435660
SHA256 (wordpress-5.4.2-zh_TW.tar.gz) = c8bfd58b4d153996e4edc04d6c76f0372e613cbda1ed11349ca7d449a0bf01a7
SIZE (wordpress-5.4.2-zh_TW.tar.gz) = 12956355
TIMESTAMP = 1599419302
SHA256 (wordpress-5.5.1-zh_TW.tar.gz) = 5e1f8a33916c5f017171bf6a0692900f2e1c2d7b05aaf07421af8f464a3e81ca
SIZE (wordpress-5.5.1-zh_TW.tar.gz) = 13664419

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= igbinary
PORTVERSION= 3.1.4
PORTVERSION= 3.1.5
CATEGORIES= converters
MAINTAINER= sunpoet@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596954322
SHA256 (PECL/igbinary-3.1.4.tgz) = f4be61542df76ef628825a9bf1ec8de180d4c6142816349c1e4004918178f015
SIZE (PECL/igbinary-3.1.4.tgz) = 72742
TIMESTAMP = 1599302737
SHA256 (PECL/igbinary-3.1.5.tgz) = e1f7dc74233052eb64d251c00e95889110de2406cdf5e71139050194da596d92
SIZE (PECL/igbinary-3.1.5.tgz) = 73509

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= freetds
PORTVERSION= 1.2.10
PORTVERSION= 1.2.27
PORTEPOCH= 1
CATEGORIES= databases
MASTER_SITES= https://www.freetds.org/files/current/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596742573
SHA256 (freetds-dev.1.2.10.tar.bz2) = aed4426214d9fc8fd883bf7b67cba38272e4506488cb6a2c441684b580e5c2e9
SIZE (freetds-dev.1.2.10.tar.bz2) = 2481586
TIMESTAMP = 1599299158
SHA256 (freetds-dev.1.2.27.tar.bz2) = 8b243ecfb871e41ffd185f3ae8e59281565052914c73952ae47278ea884296bb
SIZE (freetds-dev.1.2.27.tar.bz2) = 2235782

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mroonga
PORTVERSION= 10.05
PORTVERSION= 10.06
CATEGORIES= databases textproc
MASTER_SITES= http://packages.groonga.org/source/mroonga/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596772982
SHA256 (mroonga-10.05.tar.gz) = 605c9ca9bf5af882026030404ae230e933a567c1defb5b9a3619744c37beeaae
SIZE (mroonga-10.05.tar.gz) = 2667406
TIMESTAMP = 1599299421
SHA256 (mroonga-10.06.tar.gz) = f4496a8b32bce1bcc819602e83f9fba8255cd37b581348183ff3da78fe9a9f3e
SIZE (mroonga-10.06.tar.gz) = 2696457

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= pgFormatter
PORTVERSION= 4.3
PORTVERSION= 4.4
DISTVERSIONPREFIX= v
CATEGORIES= databases

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1585752013
SHA256 (darold-pgFormatter-v4.3_GH0.tar.gz) = ab5fecbfa463221f2a0dc457437a2d0fe98e4ee63c1ee15f0ce10286d97bd636
SIZE (darold-pgFormatter-v4.3_GH0.tar.gz) = 1296833
TIMESTAMP = 1598970891
SHA256 (darold-pgFormatter-v4.4_GH0.tar.gz) = 7db5451064425fb13ff86a723654dcedc6554b62cbf5777bc65f30ffbf833480
SIZE (darold-pgFormatter-v4.4_GH0.tar.gz) = 1307479

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= apsw
PORTVERSION= 3.32.2
PORTVERSION= 3.33.0
DISTVERSIONSUFFIX= -r1
CATEGORIES= databases python
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1592145085
SHA256 (rogerbinns-apsw-3.32.2-r1_GH0.tar.gz) = 33f3ccfd8a7537dccef2caeb8cc06e26f300f1cf547c22c4e8ec8dcfecb72aa0
SIZE (rogerbinns-apsw-3.32.2-r1_GH0.tar.gz) = 309488
TIMESTAMP = 1598970909
SHA256 (rogerbinns-apsw-3.33.0-r1_GH0.tar.gz) = 1eb1b587f1c5246a5a3e1b66bd3ad87b2a73f3c7b1654268772af72449ea1975
SIZE (rogerbinns-apsw-3.33.0-r1_GH0.tar.gz) = 310551

View File

@ -11,6 +11,7 @@ MAINTAINER= bofh@FreeBSD.org
COMMENT= Python extension module for BerkeleyDB 4.7, 4.8, 5.1, 5.3, 6.1 and 6.2
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
USES= bdb python
USE_PYTHON= distutils autoplist

View File

@ -7,4 +7,4 @@ these are fully supported in the Python wrappers. Please see the
document in developers' web site for more details on the types and
methods provided.
WWW: http://www.jcea.es/programacion/pybsddb.htm
WWW: https://www.jcea.es/programacion/pybsddb.htm

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= litecli
PORTVERSION= 1.3.2
PORTVERSION= 1.4.1
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1586172650
SHA256 (litecli-1.3.2.tar.gz) = 97261512b53cf572ad2270f18e73ae8b0b1eba07a1ed2e90ea785a69b83bdd2d
SIZE (litecli-1.3.2.tar.gz) = 54211
TIMESTAMP = 1598970911
SHA256 (litecli-1.4.1.tar.gz) = 1404568ed6d2e738bf5d00f201522652602b2e3f31013cf58d9e239d715dab5c
SIZE (litecli-1.4.1.tar.gz) = 56144

View File

@ -3,6 +3,7 @@
PORTNAME= zim
DISTVERSION= 0.73.2
PORTREVISION= 1
CATEGORIES= deskutils python
MASTER_SITES= https://www.zim-wiki.org/downloads/
@ -40,7 +41,7 @@ GNUR_RUN_DEPENDS= R:math/R
GRAPHVIZ_RUN_DEPENDS= fdp:graphics/graphviz
LATEX_USE= tex=latex:run
MERCURIAL_DESC= Version control for notebooks using hg
MERCURIAL_RUN_DEPENDS= hg:devel/mercurial
MERCURIAL_RUN_DEPENDS= ${PY_MERCURIAL}
SCROT_DESC= Screenshot taking and inserting support
SCROT_RUN_DEPENDS= scrot:graphics/scrot

View File

@ -1059,6 +1059,7 @@
SUBDIR += kf5-solid
SUBDIR += kf5-threadweaver
SUBDIR += kio-extras
SUBDIR += kirigami-gallery
SUBDIR += kiwix-lib
SUBDIR += kms-cmake-utils
SUBDIR += kodi-platform
@ -4772,6 +4773,7 @@
SUBDIR += py-pip-licenses
SUBDIR += py-pip-run
SUBDIR += py-pip-tools
SUBDIR += py-pip-tools4
SUBDIR += py-pipdeptree
SUBDIR += py-pipenv
SUBDIR += py-pipreqs

View File

@ -8,7 +8,7 @@ MASTER_SITES= GCC
PKGNAMEPREFIX?= aarch64-none-elf-
MAINTAINER= manu@FreeBSD.org
COMMENT= GNU Compiler Collection for bare metal arm cross-development
COMMENT?= GNU Compiler Collection for bare metal aarch64 cross-development
LICENSE= GPLv3 GPLv3RLE
LICENSE_COMB= multi

View File

@ -5,6 +5,7 @@ PKGNAMEPREFIX= arm-none-eabi-
GCC_TARGET= arm-none-eabi
PLIST= ${.CURDIR}/pkg-plist
DISTINFO_FILE= ${.CURDIR}/distinfo
COMMENT= GNU Compiler Collection for bare metal arm cross-development
# libstdcxx won't build, but we don't need it or multiple float-abi libs.
CONFIGURE_ARGS= --disable-libstdcxx \

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= avarice
PORTVERSION= 2.13
PORTREVISION= 3
PORTVERSION= 2.14
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}

View File

@ -1,2 +1,3 @@
SHA256 (avarice-2.13.tar.bz2) = a14738fe78e1a0a9321abcca7e685a00ce3ced207622ccbcd881ac32030c104a
SIZE (avarice-2.13.tar.bz2) = 196063
TIMESTAMP = 1599342008
SHA256 (avarice-2.14.tar.bz2) = 4b4e7d0257a3bac850c1849216e1f1e47f078fb4e9a718760ca0f0356dbf62a9
SIZE (avarice-2.14.tar.bz2) = 253668

View File

@ -1,11 +0,0 @@
--- src/jtagrw.cc.orig 2018-06-27 21:49:14 UTC
+++ src/jtagrw.cc
@@ -131,7 +131,7 @@ uchar *jtag1::jtagRead(unsigned long add
else
numLocations = (numBytes + 1) / 2;
if (numLocations > 256)
- return false;
+ return NULL;
command[1] = whichSpace;
command[2] = numLocations - 1;

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= emscripten
DISTVERSION= 1.39.20
DISTVERSION= 2.0.2
CATEGORIES= devel www
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1595351260
SHA256 (emscripten-core-emscripten-1.39.20_GH0.tar.gz) = 379138716c8b8858a13f9bd993e51f8ef20c182a9fa3320072d783da5bf5f80c
SIZE (emscripten-core-emscripten-1.39.20_GH0.tar.gz) = 33471398
TIMESTAMP = 1599349401
SHA256 (emscripten-core-emscripten-2.0.2_GH0.tar.gz) = 0753e2ae2724018b0df5939f9f2781289fc619934e16dd1a062ddb3435b859ee
SIZE (emscripten-core-emscripten-2.0.2_GH0.tar.gz) = 33432504

View File

@ -168,7 +168,6 @@ lib/emscripten/src/embind/emval.js
lib/emscripten/src/emrun_postjs.js
lib/emscripten/src/emrun_prejs.js
lib/emscripten/src/emscripten-source-map.min.js
lib/emscripten/src/fetch-worker.js
lib/emscripten/src/gl-matrix.js
lib/emscripten/src/growableHeap.js
lib/emscripten/src/headless.js
@ -236,10 +235,8 @@ lib/emscripten/src/node_shell_read.js
lib/emscripten/src/parseTools.js
lib/emscripten/src/postamble.js
lib/emscripten/src/postamble_minimal.js
lib/emscripten/src/postamble_sharedlib.js
lib/emscripten/src/preamble.js
lib/emscripten/src/preamble_minimal.js
lib/emscripten/src/preamble_sharedlib.js
lib/emscripten/src/promise_polyfill.js
lib/emscripten/src/proxyClient.js
lib/emscripten/src/proxyWorker.js
@ -248,6 +245,7 @@ lib/emscripten/src/runtime_assertions.js
lib/emscripten/src/runtime_debug.js
lib/emscripten/src/runtime_functions.js
lib/emscripten/src/runtime_init_memory.js
lib/emscripten/src/runtime_init_table.js
lib/emscripten/src/runtime_math.js
lib/emscripten/src/runtime_sab_polyfill.js
lib/emscripten/src/runtime_safe_heap.js
@ -262,7 +260,6 @@ lib/emscripten/src/shell_minimal.html
lib/emscripten/src/shell_minimal.js
lib/emscripten/src/shell_minimal_runtime.html
lib/emscripten/src/shell_pthreads.js
lib/emscripten/src/shell_sharedlib.js
lib/emscripten/src/socket.io.js
lib/emscripten/src/source_map_support.js
lib/emscripten/src/struct_info.json
@ -808,6 +805,7 @@ lib/emscripten/system/include/webgl/webgl2.h
lib/emscripten/system/include/webgl/webgl2_ext.h
lib/emscripten/system/include/webgl/webgl_api.h
lib/emscripten/system/include/webgpu/webgpu.h
lib/emscripten/system/include/webgpu/webgpu_cpp.h
lib/emscripten/system/lib/al.c
lib/emscripten/system/lib/asan_js.c
lib/emscripten/system/lib/build_cxx_natively.sh
@ -828,71 +826,72 @@ lib/emscripten/system/lib/compiler-rt/include/sanitizer/netbsd_syscall_hooks.h
lib/emscripten/system/lib/compiler-rt/include/sanitizer/scudo_interface.h
lib/emscripten/system/lib/compiler-rt/include/sanitizer/tsan_interface.h
lib/emscripten/system/lib/compiler-rt/include/sanitizer/tsan_interface_atomic.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_activation.cc
lib/emscripten/system/lib/compiler-rt/include/sanitizer/ubsan_interface.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_activation.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_activation.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_activation_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_allocator.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_allocator.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_allocator.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_blacklist.txt
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_debugging.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_descriptions.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_debugging.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_descriptions.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_descriptions.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_emscripten.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_errors.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_emscripten.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_errors.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_errors.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_fake_stack.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_fake_stack.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_fake_stack.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_flags.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_flags.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_flags.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_fuchsia.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_globals.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_globals_win.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_fuchsia.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_globals.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_globals_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_init_version.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interceptors_memintrinsics.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interface.inc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_interface_internal.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_internal.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_lock.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_local.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_win.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_malloc_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mapping.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mapping_emscripten.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mapping_myriad.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_mapping_sparc64.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_memory_profile.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_new_delete.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_poisoning.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_memory_profile.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_new_delete.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_poisoning.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_poisoning.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_posix.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_preinit.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_premap_shadow.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_posix.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_preinit.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_premap_shadow.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_premap_shadow.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_report.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_report.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_report.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_rtems.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_rtl.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_rtems.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_rtl.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_scariness_score.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_shadow_setup.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stack.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_shadow_setup.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stack.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stack.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stats.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stats.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_stats.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_suppressions.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_suppressions.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_suppressions.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_thread.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_thread.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_thread.h
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_dll_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_weak_interception.cc
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_dll_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_dynamic_runtime_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/asan_win_weak_interception.cpp
lib/emscripten/system/lib/compiler-rt/lib/asan/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/builtins/absvdi2.c
lib/emscripten/system/lib/compiler-rt/lib/builtins/absvsi2.c
@ -1004,6 +1003,8 @@ lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_extend_impl.inc
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_fixint_impl.inc
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_fixuint_impl.inc
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_lib.h
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_mode.c
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_mode.h
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_mul_impl.inc
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_trunc.h
lib/emscripten/system/lib/compiler-rt/lib/builtins/fp_trunc_impl.inc
@ -1078,42 +1079,42 @@ lib/emscripten/system/lib/compiler-rt/lib/builtins/umodsi3.c
lib/emscripten/system/lib/compiler-rt/lib/builtins/umodti3.c
lib/emscripten/system/lib/compiler-rt/lib/builtins/unwind-ehabi-helpers.h
lib/emscripten/system/lib/compiler-rt/lib/interception/interception.h
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_linux.h
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_mac.h
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_type_test.cc
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_win.cc
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_type_test.cpp
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/interception/interception_win.h
lib/emscripten/system/lib/compiler-rt/lib/interception/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan.h
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_allocator.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_allocator.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_allocator.h
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common.h
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_emscripten.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_emscripten.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_common_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_interceptors.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_malloc_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_preinit.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_thread.cc
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_interceptors.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_malloc_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_preinit.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_thread.cpp
lib/emscripten/system/lib/compiler-rt/lib/lsan/lsan_thread.h
lib/emscripten/system/lib/compiler-rt/lib/lsan/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/.clang-tidy
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sancov_flags.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sancov_flags.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sancov_flags.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sancov_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_addrhashmap.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_bytemap.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_checks.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_combined.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_interface.h
@ -1121,7 +1122,7 @@ lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_i
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_local_cache.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary32.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_primary64.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_report.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_secondary.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_allocator_size_class_map.h
@ -1135,185 +1136,187 @@ lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_clan
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_atomic_msvc.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_bitvector.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_bvgraph.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_ioctl.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_netbsd_compat.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_interface_posix.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_nolibc.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_common_syscalls.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_fuchsia.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_interface.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_libcdep_new.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dll_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_dynamic_runtime_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_sections.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_coverage_win_weak_interception.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_dbghelp.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector1.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector_interface.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_emscripten.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_emscripten.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_errno.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_errno.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_errno_codes.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_file.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_file.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_file.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flag_parser.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flags.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flags.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_freebsd.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_fuchsia.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_getauxval.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_glibc_version.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_hash.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_interceptors_ioctl_netbsd.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_interface_internal.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_lfstack.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libc.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libc.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_libignore.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_linux_s390.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_list.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_local_address_space_view.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mac.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mac_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_malloc_mac.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_mutex.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_netbsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_openbsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_persistent_allocator.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_placement_new.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_interceptors.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_freebsd.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_netbsd.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_openbsd.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_solaris.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_posix.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_posix_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_printf.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_bsd.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_common.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_solaris.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_quarantine.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_ring_buffer.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_rtems.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_signal_interceptors.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_solaris.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepot.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stackdepotbase.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_emscripten.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_emscripten.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_printer.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_sparc.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_netbsd_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_emscripten.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_emscripten.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_fuchsia.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_internal.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libbacktrace.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_mac.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_markup.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_posix_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_report.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_rtems.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_symbolizer_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_generic.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_aarch64.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_arm.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_syscall_linux_x86_64.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_syscalls_netbsd.inc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_termination.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_thread_registry.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_tls_get_addr.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_linux_libcdep.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_unwind_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_vector.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_defs.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_dll_thunk.h
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cc
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_dynamic_runtime_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.cpp
lib/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_win_weak_interception.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_checks.inc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_diag.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_diag.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_diag.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_flags.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_diag_standalone.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_flags.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_flags.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_flags.inc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_handlers_cxx.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init_standalone.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init_standalone.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_init_standalone_preinit.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_interface.inc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_monitor.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_monitor.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_monitor.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_platform.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_signals_standalone.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_signals_standalone.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_signals_standalone.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_value.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash_itanium.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_type_hash_win.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_value.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_value.h
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_dll_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_dynamic_runtime_thunk.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan/ubsan_win_weak_interception.cpp
lib/emscripten/system/lib/compiler-rt/lib/ubsan_minimal/readme.txt
lib/emscripten/system/lib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cc
lib/emscripten/system/lib/compiler-rt/lib/ubsan_minimal/ubsan_minimal_handlers.cpp
lib/emscripten/system/lib/compiler-rt/readme.txt
lib/emscripten/system/lib/compiler-rt/stack_ops.s
lib/emscripten/system/lib/debugging.cpp
@ -1340,7 +1343,6 @@ lib/emscripten/system/lib/libc/emscripten_memcpy.c
lib/emscripten/system/lib/libc/emscripten_memmove.c
lib/emscripten/system/lib/libc/emscripten_memset.c
lib/emscripten/system/lib/libc/extras.c
lib/emscripten/system/lib/libc/extras_fastcomp.c
lib/emscripten/system/lib/libc/musl/COPYRIGHT
lib/emscripten/system/lib/libc/musl/INSTALL
lib/emscripten/system/lib/libc/musl/Makefile
@ -2871,7 +2873,6 @@ lib/emscripten/system/lib/libunwind/test/lit.cfg
lib/emscripten/system/lib/libunwind/test/lit.site.cfg.in
lib/emscripten/system/lib/libunwind/test/unw_getcontext.pass.cpp
lib/emscripten/system/lib/pthread/library_pthread.c
lib/emscripten/system/lib/pthread/library_pthread_asmjs.c
lib/emscripten/system/lib/pthread/library_pthread_stub.c
lib/emscripten/system/lib/pthread/library_pthread_wasm.c
lib/emscripten/system/lib/sbrk.c
@ -2880,29 +2881,6 @@ lib/emscripten/system/lib/standalone/__main_void.c
lib/emscripten/system/lib/standalone/__original_main.c
lib/emscripten/system/lib/standalone/standalone.c
lib/emscripten/system/lib/standalone/standalone_wasm_stdio.c
lib/emscripten/system/lib/symbols/asmjs/libal.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-webgl2-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-webgl2-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-webgl2-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu-webgl2.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-emu.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-webgl2-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-webgl2-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-webgl2-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu-webgl2.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-emu.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-webgl2-ofb-full_es3.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl-mt-webgl2-ofb.symbols
lib/emscripten/system/lib/symbols/asmjs/libgl.symbols
lib/emscripten/system/lib/symbols/asmjs/libhtml5.symbols
lib/emscripten/system/lib/symbols/wasm/libal.symbols
lib/emscripten/system/lib/symbols/wasm/libgl-emu-full_es3.symbols
lib/emscripten/system/lib/symbols/wasm/libgl-emu-ofb-full_es3.symbols
@ -2930,6 +2908,7 @@ lib/emscripten/system/lib/test.cpp
lib/emscripten/system/lib/update_compiler_rt.py
lib/emscripten/system/lib/update_libcxx.py
lib/emscripten/system/lib/update_libcxxabi.py
lib/emscripten/system/lib/webgpu/webgpu_cpp.cpp
lib/emscripten/system/lib/websocket/websocket_to_posix_socket.cpp
lib/emscripten/system/local/include/README.txt
lib/emscripten/third_party/WebIDL.py
@ -3310,7 +3289,6 @@ lib/emscripten/tools/building.py
lib/emscripten/tools/cache.py
lib/emscripten/tools/check_clean.py
lib/emscripten/tools/clean_webconsole.py
lib/emscripten/tools/client_mods.py
lib/emscripten/tools/colored_logger.py
lib/emscripten/tools/create_dom_pk_codes.py
lib/emscripten/tools/create_entry_points.py
@ -3330,10 +3308,7 @@ lib/emscripten/tools/debug/scan_ll.py
lib/emscripten/tools/debug/stubify_ll.py
lib/emscripten/tools/determinism_checker.py
lib/emscripten/tools/diagnostics.py
lib/emscripten/tools/duplicate_function_eliminator.py
lib/emscripten/tools/eliminate-duplicate-functions.js
lib/emscripten/tools/emcoverage.py
lib/emscripten/tools/emdebug_cd_merger.py
lib/emscripten/tools/emdump
lib/emscripten/tools/emdump.py
lib/emscripten/tools/emprofile.py
@ -3354,7 +3329,6 @@ lib/emscripten/tools/js_optimizer.py
lib/emscripten/tools/line_endings.py
lib/emscripten/tools/lz4-compress.js
lib/emscripten/tools/maybe_wasm2js.py
lib/emscripten/tools/minified_js_name_generator.py
lib/emscripten/tools/minimal_runtime_shell.py
lib/emscripten/tools/optimizer/CMakeLists.txt
lib/emscripten/tools/optimizer/istring.h
@ -3404,7 +3378,6 @@ lib/emscripten/tools/toolchain_profiler.py
lib/emscripten/tools/toolchain_profiler.results_template.html
lib/emscripten/tools/update_js.py
lib/emscripten/tools/update_symbols.py
lib/emscripten/tools/validate_asmjs.py
lib/emscripten/tools/wasm-sourcemap.py
lib/emscripten/tools/wasm2c.py
lib/emscripten/tools/wasm2c/autodebug.c

View File

@ -2,7 +2,7 @@
PORTNAME= entt
DISTVERSIONPREFIX= v
DISTVERSION= 3.5.0
DISTVERSION= 3.5.1
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1599120386
SHA256 (skypjack-entt-v3.5.0_GH0.tar.gz) = 89cba5ddf90bcec0dcf8d9554d9acf5ad86f5ce305e3acacf795007ee65c93f8
SIZE (skypjack-entt-v3.5.0_GH0.tar.gz) = 337302
TIMESTAMP = 1599321897
SHA256 (skypjack-entt-v3.5.1_GH0.tar.gz) = f442ece6881ec24863e7f0fbdc4bf641e01b0f87955f49dc4687b2fa564e9c83
SIZE (skypjack-entt-v3.5.1_GH0.tar.gz) = 337414

View File

@ -6,7 +6,7 @@
# german/eric6, russian/eric6, devel/es-eric6
PORTNAME= eric6
PORTVERSION= 20.8
PORTVERSION= 20.9
PORTREVISION?= 0
MASTER_SITES= SF/eric-ide/${PORTNAME}/stable/${PORTVERSION}
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1597280388
SHA256 (eric6-nolang-20.8.tar.gz) = 84ee6c9976c5dbe1b981311be590e9ebe76c539ef73dc85cd7d5e210c8aadf4b
SIZE (eric6-nolang-20.8.tar.gz) = 13839679
TIMESTAMP = 1599453257
SHA256 (eric6-nolang-20.9.tar.gz) = f1182725501ad24d8b6f6ff71e1a6f2b7f6ed4c6df8199c661f0c05ef169d801
SIZE (eric6-nolang-20.9.tar.gz) = 13785625

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1597280471
SHA256 (eric6-i18n-es-20.8.tar.gz) = 5031d512fd7123158f93718f3f5c097e70784db25c5d489f4472e7b5590eed5a
SIZE (eric6-i18n-es-20.8.tar.gz) = 1069683
TIMESTAMP = 1599453282
SHA256 (eric6-i18n-es-20.9.tar.gz) = da4dafacf9a11396b51a5da25f72b842846026685911cdff14954f1bc605c754
SIZE (eric6-i18n-es-20.9.tar.gz) = 1067828

View File

@ -3,6 +3,7 @@
PORTNAME= flang
DISTVERSION= 7.0-g20191020
PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= jmd@FreeBSD.org
@ -40,6 +41,9 @@ CMAKE_ARGS+= -DLLVM_CONFIG=${LOCALBASE}/bin/llvm-config${LLVM_VER} \
CMAKE_INSTALL_PREFIX= ${PREFIX}/flang
# fix on post LLVM11 HEAD
CFLAGS+= -fcommon
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= TESTS

View File

@ -2,8 +2,7 @@
PORTNAME= gcem
DISTVERSIONPREFIX= v
DISTVERSION= 1.12.0-23
DISTVERSIONSUFFIX= -ga167868
DISTVERSION= 1.13.1
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1598993030
SHA256 (kthohr-gcem-v1.12.0-23-ga167868_GH0.tar.gz) = 9c04032faa98cff6a8a4647fb52974a8e7751794266cd97e97266151a614874f
SIZE (kthohr-gcem-v1.12.0-23-ga167868_GH0.tar.gz) = 53307
TIMESTAMP = 1599322007
SHA256 (kthohr-gcem-v1.13.1_GH0.tar.gz) = 69a1973f146a4a5e584193af062359f50bd5b948c4175d58ea2622e1c066b99b
SIZE (kthohr-gcem-v1.13.1_GH0.tar.gz) = 53298

View File

@ -2,7 +2,7 @@
PORTNAME= git-cinnabar
DISTVERSION= 0.5.5
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX:N-py27}
@ -13,7 +13,7 @@ LICENSE= GPLv2
BUILD_DEPENDS= ${NONEXISTENT}:devel/git:configure
RUN_DEPENDS= git:devel/git
py27_RUN_DEPENDS= hg:devel/mercurial # XXX bug 242463
py27_RUN_DEPENDS= ${PY_MERCURIAL} # XXX bug 242463
USE_GITHUB= yes
GH_ACCOUNT= glandium

View File

@ -2,6 +2,7 @@
PORTNAME= git-remote-hg
PORTVERSION= 1.0.0
PORTREVISION= 1
DISTVERSIONPREFIX= v
CATEGORIES= devel python
@ -15,7 +16,7 @@ DEPRECATED= Uses deprecated version of python
EXPIRATION_DATE= 2020-09-15
BUILD_DEPENDS= a2x:textproc/asciidoc
RUN_DEPENDS= hg:devel/mercurial
RUN_DEPENDS= ${PY_MERCURIAL}
USES= gmake python:2.7 shebangfix

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= global
PORTVERSION= 6.6.4
PORTVERSION= 6.6.5
CATEGORIES= devel
MASTER_SITES= GNU

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1577523866
SHA256 (global-6.6.4.tar.gz) = 987e8cb956c53f8ebe4453b778a8fde2037b982613aba7f3e8e74bcd05312594
SIZE (global-6.6.4.tar.gz) = 2988969
TIMESTAMP = 1599302703
SHA256 (global-6.6.5.tar.gz) = 9c3730bd9e975d94231f3402d5526b79c0b23cc665d624c9829c948dfad37b83
SIZE (global-6.6.5.tar.gz) = 2990610

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= styleguide
PORTVERSION= 20200729
PORTVERSION= 20200807
CATEGORIES= devel
PKGNAMEPREFIX= google-
@ -19,7 +19,7 @@ USES= python shebangfix
USE_GITHUB= yes
GH_ACCOUNT= google
GH_TAGNAME= 10748b8
GH_TAGNAME= 25e977d
NO_ARCH= yes
NO_BUILD= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596954276
SHA256 (google-styleguide-20200729-10748b8_GH0.tar.gz) = d5e094690463fc60dbf4eafd4686c1a9643f9a531e69d28db60f86319f92ab81
SIZE (google-styleguide-20200729-10748b8_GH0.tar.gz) = 1060681
TIMESTAMP = 1599302705
SHA256 (google-styleguide-20200807-25e977d_GH0.tar.gz) = 579a99fcdfa7c3795e9d662371c2b372dd80b4a8d83aeed3a5868fc5568ec2e7
SIZE (google-styleguide-20200807-25e977d_GH0.tar.gz) = 1060949

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= gsoap
PORTVERSION= 2.8.105
PORTVERSION= 2.8.106
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}2/gsoap-2.8
DISTNAME= ${PORTNAME}_${PORTVERSION}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596742723
SHA256 (gsoap_2.8.105.zip) = aa20c535cf08f1576bebad97cc6159ca57c68bc43acfc9a296e4e9faf041097e
SIZE (gsoap_2.8.105.zip) = 32728935
TIMESTAMP = 1599299490
SHA256 (gsoap_2.8.106.zip) = 4e74838baf5437e95ae17aa3efb48bd0621f483bff4424f6255fcf327ff80765
SIZE (gsoap_2.8.106.zip) = 32740371

View File

@ -3,6 +3,7 @@
PORTNAME= hg-git
DISTVERSION= 0.8.12
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= http://bitbucket.org/durin42/${PORTNAME}/get/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -18,7 +19,7 @@ DEPRECATED= Uses deprecated version of python
EXPIRATION_DATE= 2020-09-15
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dulwich>=*:devel/dulwich@${PY_FLAVOR} \
mercurial>=*:devel/mercurial
${PY_MERCURIAL}
PORTDOCS= README.md

View File

@ -2,7 +2,7 @@
PORTNAME= hgreviewboard
PORTVERSION= 1.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel python
MASTER_SITES= https://bitbucket.org/ccaughie/hgreviewboard/get/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -15,7 +15,7 @@ COMMENT= Mercurial reviewboard extension
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
RUN_DEPENDS= hg:devel/mercurial \
RUN_DEPENDS= ${PY_MERCURIAL} \
rbt:devel/rbtools
WRKSRC= ${WRKDIR}/ccaughie-hgreviewboard-e461a0baf62d

View File

@ -3,7 +3,7 @@
PORTNAME= hgsvn
PORTVERSION= 0.5.2
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -14,7 +14,7 @@ COMMENT= Scripts to work locally on Subversion checkouts using Mercurial
LICENSE= GPLv3
RUN_DEPENDS= svn:devel/subversion \
hg:devel/mercurial \
${PY_MERCURIAL} \
${PYTHON_PKGNAMEPREFIX}hglib>0:devel/py-hglib@${PY_FLAVOR}
USES= python

View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= kirigami-gallery
DISTVERSION= ${KDE_APPLICATIONS_VERSION}
CATEGORIES= devel kde kde-applications
MAINTAINER= kde@FreeBSD.org
COMMENT= Kirigami component gallery application
LICENSE= LGPL20
LICENSE_FILE= ${WRKSRC}/LICENSE.LGPL-2
USES= cmake kde:5 qt:5 tar:xz
USE_KDE= ecm kirigami2 package
USE_QT= core declarative gui network quickcontrols2 svg widgets \
buildtools_build qmake_build
OPTIONS_DEFINE= DOCS
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1599329267
SHA256 (KDE/release-service/20.08.1/kirigami-gallery-20.08.1.tar.xz) = 497886cc5a8483f068a642ce19df19f69fd105a4fb583f1a9898c885659c9df5
SIZE (KDE/release-service/20.08.1/kirigami-gallery-20.08.1.tar.xz) = 287796

View File

@ -0,0 +1,5 @@
Example application which uses all features from kirigami, including links to
the sourcecode, tips on how to use the components and links to the
corresponding HIG pages and code examples on cgit
WWW: https://invent.kde.org/sdk/kirigami-gallery

View File

@ -0,0 +1,32 @@
bin/kirigami2gallery
share/applications/org.kde.kirigami2.gallery.desktop
share/locale/ca/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/ca@valencia/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/cs/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/da/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/de/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/el/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/en_GB/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/es/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/et/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/eu/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/fi/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/fr/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/gl/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/it/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/ja/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/ko/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/lt/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/nl/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/nn/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/pl/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/pt/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/pt_BR/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/ru/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/sk/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/sl/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/sv/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/uk/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/zh_CN/LC_MESSAGES/kirigamigallery_qt.qm
share/locale/zh_TW/LC_MESSAGES/kirigamigallery_qt.qm
share/metainfo/org.kde.kirigami2.gallery.appdata.xml

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= kokkos
DISTVERSION= 3.1.01
DISTVERSION= 3.2.00
CATEGORIES= devel
MAINTAINER= yuri@FreeBSD.org
@ -19,7 +19,4 @@ SHEBANG_FILES= bin/nvcc_wrapper
CMAKE_ON= BUILD_SHARED_LIBS
post-install:
@cd ${STAGEDIR}${PREFIX}/include/eti && ${RMDIR} Cuda HPX OpenMP ROCm Serial Threads
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1588812285
SHA256 (kokkos-kokkos-3.1.01_GH0.tar.gz) = ff5024ebe8570887d00246e2793667e0d796b08c77a8227fe271127d36eec9dd
SIZE (kokkos-kokkos-3.1.01_GH0.tar.gz) = 1972707
TIMESTAMP = 1599353617
SHA256 (kokkos-kokkos-3.2.00_GH0.tar.gz) = 05e1b4dd1ef383ca56fe577913e1ff31614764e65de6d6f2a163b2bddb60b3e9
SIZE (kokkos-kokkos-3.2.00_GH0.tar.gz) = 1945887

View File

@ -17,8 +17,6 @@ include/Cuda/Kokkos_Cuda_UniqueToken.hpp
include/Cuda/Kokkos_Cuda_Vectorization.hpp
include/Cuda/Kokkos_Cuda_Version_9_8_Compatibility.hpp
include/Cuda/Kokkos_Cuda_View.hpp
include/Cuda/Kokkos_Cuda_ViewCopyETIAvail.hpp
include/Cuda/Kokkos_Cuda_ViewCopyETIDecl.hpp
include/Cuda/Kokkos_Cuda_WorkGraphPolicy.hpp
include/Cuda/Kokkos_Cuda_abort.hpp
include/Cuda/Kokkos_Cuda_fwd.hpp
@ -34,16 +32,17 @@ include/HIP/Kokkos_HIP_Parallel_MDRange.hpp
include/HIP/Kokkos_HIP_Parallel_Range.hpp
include/HIP/Kokkos_HIP_Parallel_Team.hpp
include/HIP/Kokkos_HIP_ReduceScan.hpp
include/HIP/Kokkos_HIP_Shuffle_Reduce.hpp
include/HIP/Kokkos_HIP_Team.hpp
include/HIP/Kokkos_HIP_UniqueToken.hpp
include/HIP/Kokkos_HIP_Vectorization.hpp
include/HIP/Kokkos_HIP_WorkGraphPolicy.hpp
include/HPX/Kokkos_HPX_ChunkedRoundRobinExecutor.hpp
include/HPX/Kokkos_HPX_Task.hpp
include/HPX/Kokkos_HPX_ViewCopyETIAvail.hpp
include/HPX/Kokkos_HPX_ViewCopyETIDecl.hpp
include/HPX/Kokkos_HPX_WorkGraphPolicy.hpp
include/KokkosAlgorithms_config.h
include/KokkosCore_config.h
include/KokkosExp_MDRangePolicy.hpp
include/Kokkos_AcquireUniqueTokenImpl.hpp
include/Kokkos_AnonymousSpace.hpp
include/Kokkos_Array.hpp
include/Kokkos_Atomic.hpp
@ -108,8 +107,6 @@ include/OpenMP/Kokkos_OpenMP_Exec.hpp
include/OpenMP/Kokkos_OpenMP_Parallel.hpp
include/OpenMP/Kokkos_OpenMP_Task.hpp
include/OpenMP/Kokkos_OpenMP_Team.hpp
include/OpenMP/Kokkos_OpenMP_ViewCopyETIAvail.hpp
include/OpenMP/Kokkos_OpenMP_ViewCopyETIDecl.hpp
include/OpenMP/Kokkos_OpenMP_WorkGraphPolicy.hpp
include/OpenMPTarget/Kokkos_OpenMPTarget_Exec.hpp
include/OpenMPTarget/Kokkos_OpenMPTarget_Instance.hpp
@ -129,19 +126,11 @@ include/ROCm/Kokkos_ROCm_Scan.hpp
include/ROCm/Kokkos_ROCm_Task.hpp
include/ROCm/Kokkos_ROCm_Tile.hpp
include/ROCm/Kokkos_ROCm_Vectorization.hpp
include/ROCm/Kokkos_ROCm_ViewCopyETIAvail.hpp
include/ROCm/Kokkos_ROCm_ViewCopyETIDecl.hpp
include/ROCm/hc_math_std.hpp
include/Serial/Kokkos_Serial_ViewCopyETIAvail.hpp
include/Serial/Kokkos_Serial_ViewCopyETIDecl.hpp
include/Threads/Kokkos_ThreadsExec.hpp
include/Threads/Kokkos_ThreadsTeam.hpp
include/Threads/Kokkos_Threads_Parallel.hpp
include/Threads/Kokkos_Threads_ViewCopyETIAvail.hpp
include/Threads/Kokkos_Threads_ViewCopyETIDecl.hpp
include/Threads/Kokkos_Threads_WorkGraphPolicy.hpp
include/eti/common/Kokkos_ViewFillCopyETIAvail_Macros.hpp
include/eti/common/Kokkos_ViewFillCopyETIDecl_Macros.hpp
include/impl/KokkosExp_Host_IterateTile.hpp
include/impl/KokkosExp_ViewMapping.hpp
include/impl/Kokkos_AnalyzePolicy.hpp
@ -168,6 +157,7 @@ include/impl/Kokkos_Bitset_impl.hpp
include/impl/Kokkos_CPUDiscovery.hpp
include/impl/Kokkos_ChaseLev.hpp
include/impl/Kokkos_ClockTic.hpp
include/impl/Kokkos_Combined_Reducer.hpp
include/impl/Kokkos_ConcurrentBitset.hpp
include/impl/Kokkos_EBO.hpp
include/impl/Kokkos_Error.hpp
@ -184,9 +174,10 @@ include/impl/Kokkos_MemoryPoolAllocator.hpp
include/impl/Kokkos_MemorySpace.hpp
include/impl/Kokkos_Memory_Fence.hpp
include/impl/Kokkos_MultipleTaskQueue.hpp
include/impl/Kokkos_OldMacros.hpp
include/impl/Kokkos_OptionalRef.hpp
include/impl/Kokkos_PhysicalLayout.hpp
include/impl/Kokkos_Profiling.hpp
include/impl/Kokkos_Profiling_C_Interface.h
include/impl/Kokkos_Profiling_DeviceInfo.hpp
include/impl/Kokkos_Profiling_Interface.hpp
include/impl/Kokkos_Serial_Task.hpp
@ -210,17 +201,16 @@ include/impl/Kokkos_TaskQueue_impl.hpp
include/impl/Kokkos_TaskResult.hpp
include/impl/Kokkos_TaskTeamMember.hpp
include/impl/Kokkos_Timer.hpp
include/impl/Kokkos_Tools.hpp
include/impl/Kokkos_Traits.hpp
include/impl/Kokkos_UnorderedMap_impl.hpp
include/impl/Kokkos_Utilities.hpp
include/impl/Kokkos_VLAEmulation.hpp
include/impl/Kokkos_ViewArray.hpp
include/impl/Kokkos_ViewCtor.hpp
include/impl/Kokkos_ViewFillCopyETIAvail.hpp
include/impl/Kokkos_ViewFillCopyETIDecl.hpp
include/impl/Kokkos_ViewLayoutTiled.hpp
include/impl/Kokkos_ViewMapping.hpp
include/impl/Kokkos_ViewTile.hpp
include/impl/Kokkos_ViewTracker.hpp
include/impl/Kokkos_ViewUniformType.hpp
include/impl/Kokkos_Volatile_Load.hpp
lib/cmake/Kokkos/KokkosConfig.cmake
@ -229,6 +219,6 @@ lib/cmake/Kokkos/KokkosConfigVersion.cmake
lib/cmake/Kokkos/KokkosTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/Kokkos/KokkosTargets.cmake
lib/libkokkoscontainers.so
lib/libkokkoscontainers.so.3.1.1
lib/libkokkoscontainers.so.3.2.0
lib/libkokkoscore.so
lib/libkokkoscore.so.3.1.1
lib/libkokkoscore.so.3.2.0

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libcjson
PORTVERSION= 1.7.13
PORTVERSION= 1.7.14
DISTVERSIONPREFIX= v
CATEGORIES= devel

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1585907192
SHA256 (DaveGamble-cJSON-v1.7.13_GH0.tar.gz) = d4e77a38f540f2c37f55758f2666655314f1f51c716fea5f279659940efdcf04
SIZE (DaveGamble-cJSON-v1.7.13_GH0.tar.gz) = 354448
TIMESTAMP = 1599302707
SHA256 (DaveGamble-cJSON-v1.7.14_GH0.tar.gz) = fb50a663eefdc76bafa80c82bc045af13b1363e8f45cec8b442007aef6a41343
SIZE (DaveGamble-cJSON-v1.7.14_GH0.tar.gz) = 352028

View File

@ -1,11 +0,0 @@
--- cJSON.c.orig 2020-04-02 15:35:50 UTC
+++ cJSON.c
@@ -106,7 +106,7 @@ CJSON_PUBLIC(double) cJSON_GetNumberValue(cJSON *item)
{
if (!cJSON_IsNumber(item))
{
- return NAN;
+ return (double)NAN;
}
return item->valuedouble;

View File

@ -3,6 +3,7 @@
PORTNAME= opam
PORTVERSION= 2.0.6
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://github.com/ocaml/opam/releases/download/${DISTVERSION}/
PKGNAMEPREFIX= ocaml-
@ -34,7 +35,7 @@ DARCS_DESC= Remote repository synchronized with darcs
RSYNC_RUN_DEPENDS= rsync:net/rsync
GIT_RUN_DEPENDS= git:devel/git
HG_RUN_DEPENDS= hg:devel/mercurial
HG_RUN_DEPENDS= ${PY_MERCURIAL}
DARCS_RUN_DEPENDS= darcs:devel/hs-darcs
MAKE_JOBS_UNSAFE= yes

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= IO-Tee
PORTVERSION= 0.65
PORTVERSION= 0.66
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -16,4 +16,6 @@ LICENSE_COMB= dual
USES= perl5
USE_PERL5= configure
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1505756995
SHA256 (IO-Tee-0.65.tar.gz) = c63dcd109b268962f867407da2654282e3c85113dc7e9655fe8a62331d490c12
SIZE (IO-Tee-0.65.tar.gz) = 12842
TIMESTAMP = 1599342891
SHA256 (IO-Tee-0.66.tar.gz) = 2d9ce7206516f9c30863a367aa1c2b9b35702e369b0abaa15f99fb2cc08552e0
SIZE (IO-Tee-0.66.tar.gz) = 12883

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= List-AllUtils
PORTVERSION= 0.16
PORTVERSION= 0.17
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1583257468
SHA256 (List-AllUtils-0.16.tar.gz) = 559b3aa911c73003a3a1ebd860d3b16e171137de8203d86be63a2390364c63dd
SIZE (List-AllUtils-0.16.tar.gz) = 54319
TIMESTAMP = 1599376006
SHA256 (List-AllUtils-0.17.tar.gz) = 1e72d83e752cd31c3d696f660fff05bfeb929e2bdc05613d762396dea02fe619
SIZE (List-AllUtils-0.17.tar.gz) = 54244

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Test-Dependencies
PORTVERSION= 0.24
PORTVERSION= 0.28
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
@ -25,4 +25,11 @@ USE_PERL5= configure
NO_ARCH= yes
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} <= 503200
BUILD_DEPENDS+= p5-Module-CoreList>=5.20200620:devel/p5-Module-CoreList
RUN_DEPENDS+= p5-Module-CoreList>=5.20200620:devel/p5-Module-CoreList
.endif
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1569809135
SHA256 (Test-Dependencies-0.24.tar.gz) = e2b78ae6528a7ded159cd200232c2202382b25fbd52a28447fd650acdd80c1be
SIZE (Test-Dependencies-0.24.tar.gz) = 15967
TIMESTAMP = 1598970905
SHA256 (Test-Dependencies-0.28.tar.gz) = 574fb26b925e395482db0474a31f1dfbfe90161d7c19d2acd862e76adc9eaa81
SIZE (Test-Dependencies-0.28.tar.gz) = 15647

View File

@ -1,4 +1,2 @@
%%SITE_PERL%%/Test/Dependencies.pm
%%SITE_PERL%%/Test/Dependencies/Light.pm
%%PERL5_MAN3%%/Test::Dependencies.3.gz
%%PERL5_MAN3%%/Test::Dependencies::Light.3.gz

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= ast
PORTVERSION= 1.0.8
PORTVERSION= 1.0.9
CATEGORIES= devel
MAINTAINER= sunpoet@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1596954324
SHA256 (PECL/ast-1.0.8.tgz) = 334286ac01625b62f63beaf50250f0b4f5560db5a6ee1ff1eadf7d2b97c522c0
SIZE (PECL/ast-1.0.8.tgz) = 45409
TIMESTAMP = 1599302739
SHA256 (PECL/ast-1.0.9.tgz) = e6e93f798228eb49609ee8c79fef23994992e4b9bae58e222aa5f40b7472d22b
SIZE (PECL/ast-1.0.9.tgz) = 45465

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= canonicaljson
PORTVERSION= 1.3.0
PORTVERSION= 1.4.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}frozendict>=1.0:devel/py-frozendict@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}simplejson>=3.14.0:devel/py-simplejson@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR}
USES= python:3.5+
USE_PYTHON= autoplist concurrent distutils
@ -23,6 +23,6 @@ USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
do-test:
@(cd ${WRKSRC} && ${PYTHON_CMD} -m pytest)
cd ${WRKSRC} && ${PYTHON_CMD} -m pytest
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1597569959
SHA256 (canonicaljson-1.3.0.tar.gz) = b4763db06a2e8553293c5edaa4bda05605c3307179a7ddfb30273a24ac384b6c
SIZE (canonicaljson-1.3.0.tar.gz) = 9572
TIMESTAMP = 1599302741
SHA256 (canonicaljson-1.4.0.tar.gz) = 899b7604f5a6a8a92109115d9250142cdf0b1dfdcb62cdb21d8fb5bf37780631
SIZE (canonicaljson-1.4.0.tar.gz) = 9863

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= castellan
PORTVERSION= 3.4.0
PORTVERSION= 3.5.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1595416583
SHA256 (castellan-3.4.0.tar.gz) = 53d39a4ae93c48d26f904f36ae2f3dedde6ad40d34b5f031c23055fff2a1d7f6
SIZE (castellan-3.4.0.tar.gz) = 71335
TIMESTAMP = 1599376010
SHA256 (castellan-3.5.0.tar.gz) = 3fac168f2e60a36f84fe140175f408518d6e7054470cdf19900cfae2a00fda25
SIZE (castellan-3.5.0.tar.gz) = 71841

Some files were not shown because too many files have changed in this diff Show More