*/*: sync with upstream
Taken from: HardenedBSD
This commit is contained in:
parent
35227a77cd
commit
6ba5bb3d54
343 changed files with 5187 additions and 2657 deletions
|
|
@ -171,7 +171,6 @@
|
|||
SUBDIR += ppunpack
|
||||
SUBDIR += pxz
|
||||
SUBDIR += py-acefile
|
||||
SUBDIR += py-attic
|
||||
SUBDIR += py-backports.lzma
|
||||
SUBDIR += py-borgbackup
|
||||
SUBDIR += py-brotli
|
||||
|
|
|
|||
|
|
@ -1,41 +0,0 @@
|
|||
# Created by: Thomas Hurst <tom@hur.st>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= attic
|
||||
PORTVERSION= 0.16
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= archivers python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
DISTNAME= Attic-${PORTVERSION}
|
||||
|
||||
MAINTAINER= tom@hur.st
|
||||
COMMENT= Deduplicating backup program
|
||||
|
||||
LICENSE= BSD3CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
DEPRECATED= Unsupported by upstream, please migrate to archivers/py-borg. \
|
||||
See https://borgbackup.readthedocs.io/en/stable/usage/upgrade.html\#borg-upgrade
|
||||
EXPIRATION_DATE= 2019-09-01
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack>=0.1.10:devel/py-msgpack@${PY_FLAVOR}
|
||||
|
||||
USES= python:3.3-3.6 ssl
|
||||
USE_PYTHON= autoplist cython distutils
|
||||
|
||||
PYDISTUTILS_BUILDPATH=${BUILD_WRKSRC}/build/lib.${OPSYS:tl}-${UNAMER}-${ARCH}-${PYTHON_VER}
|
||||
REINPLACE_ARGS= -i ''
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e 's|msgpack-python|msgpack|' ${WRKSRC}/setup.py
|
||||
|
||||
post-install:
|
||||
@${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/attic/*.so
|
||||
|
||||
do-test:
|
||||
cd ${WRKDIR} && ${SETENV} PYTHONPATH="${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}:${PYTHONPATH}" \
|
||||
${PYTHON_CMD} -m attic.testsuite.run
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
SHA256 (Attic-0.16.tar.gz) = 6650cd28072101c2e05941e77b93a62f91da6179785e4e4b4880916c469bba2c
|
||||
SIZE (Attic-0.16.tar.gz) = 232455
|
||||
|
|
@ -1,59 +0,0 @@
|
|||
--- attic/crypto.pyx.orig 2015-04-27 20:15:50 UTC
|
||||
+++ attic/crypto.pyx
|
||||
@@ -23,8 +23,9 @@ cdef extern from "openssl/evp.h":
|
||||
pass
|
||||
const EVP_MD *EVP_sha256()
|
||||
const EVP_CIPHER *EVP_aes_256_ctr()
|
||||
- void EVP_CIPHER_CTX_init(EVP_CIPHER_CTX *a)
|
||||
- void EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *a)
|
||||
+ EVP_CIPHER_CTX *EVP_CIPHER_CTX_new()
|
||||
+ const unsigned char *EVP_CIPHER_CTX_iv(const EVP_CIPHER_CTX *a)
|
||||
+ void EVP_CIPHER_CTX_free(EVP_CIPHER_CTX *a)
|
||||
|
||||
int EVP_EncryptInit_ex(EVP_CIPHER_CTX *ctx,const EVP_CIPHER *cipher, ENGINE *impl,
|
||||
const unsigned char *key, const unsigned char *iv)
|
||||
@@ -84,16 +85,16 @@ def get_random_bytes(n):
|
||||
cdef class AES:
|
||||
"""A thin wrapper around the OpenSSL EVP cipher API
|
||||
"""
|
||||
- cdef EVP_CIPHER_CTX ctx
|
||||
+ cdef EVP_CIPHER_CTX * ctx
|
||||
|
||||
def __cinit__(self, key, iv=None):
|
||||
- EVP_CIPHER_CTX_init(&self.ctx)
|
||||
- if not EVP_EncryptInit_ex(&self.ctx, EVP_aes_256_ctr(), NULL, NULL, NULL):
|
||||
+ self.ctx = EVP_CIPHER_CTX_new();
|
||||
+ if not EVP_EncryptInit_ex(self.ctx, EVP_aes_256_ctr(), NULL, NULL, NULL):
|
||||
raise Exception('EVP_EncryptInit_ex failed')
|
||||
self.reset(key, iv)
|
||||
|
||||
def __dealloc__(self):
|
||||
- EVP_CIPHER_CTX_cleanup(&self.ctx)
|
||||
+ EVP_CIPHER_CTX_free(self.ctx)
|
||||
|
||||
def reset(self, key=None, iv=None):
|
||||
cdef const unsigned char *key2 = NULL
|
||||
@@ -102,12 +103,12 @@ cdef class AES:
|
||||
key2 = key
|
||||
if iv:
|
||||
iv2 = iv
|
||||
- if not EVP_EncryptInit_ex(&self.ctx, NULL, NULL, key2, iv2):
|
||||
+ if not EVP_EncryptInit_ex(self.ctx, NULL, NULL, key2, iv2):
|
||||
raise Exception('EVP_EncryptInit_ex failed')
|
||||
|
||||
@property
|
||||
def iv(self):
|
||||
- return self.ctx.iv[:16]
|
||||
+ return EVP_CIPHER_CTX_iv(self.ctx)[:16]
|
||||
|
||||
def encrypt(self, data):
|
||||
cdef int inl = len(data)
|
||||
@@ -116,7 +117,7 @@ cdef class AES:
|
||||
if not out:
|
||||
raise MemoryError
|
||||
try:
|
||||
- if not EVP_EncryptUpdate(&self.ctx, out, &outl, data, inl):
|
||||
+ if not EVP_EncryptUpdate(self.ctx, out, &outl, data, inl):
|
||||
raise Exception('EVP_EncryptUpdate failed')
|
||||
return out[:inl]
|
||||
finally:
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
Attic is a deduplicating backup program written in Python. The main goal of
|
||||
Attic is to provide an efficient and secure way to backup data. The data
|
||||
deduplication technique used makes Attic suitable for daily backups since only
|
||||
the changes are stored.
|
||||
|
||||
WWW: https://attic-backup.org
|
||||
|
|
@ -1,14 +1,14 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= polyphone
|
||||
DISTVERSION= 2.0.1.20190716
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 2.1.0
|
||||
CATEGORIES= audio
|
||||
|
||||
MAINTAINER= yuri@FreeBSD.org
|
||||
COMMENT= Graphical user interface for editing soundfont (sf2 and sfz) files
|
||||
|
||||
LICENSE= GPLv3
|
||||
LICENSE_FILE= ${WRKSRC}/../LICENSE.txt
|
||||
|
||||
LIB_DEPENDS= libFLAC.so:audio/flac \
|
||||
libjack.so:audio/jack \
|
||||
|
|
@ -18,10 +18,9 @@ LIB_DEPENDS= libFLAC.so:audio/flac \
|
|||
libstk.so:audio/stk \
|
||||
libvorbisfile.so:audio/libvorbis
|
||||
|
||||
USES= compiler:c++11-lang desktop-file-utils gl gnome pkgconfig qmake:outsource qt:5 shared-mime-info ssl
|
||||
USES= compiler:c++11-lang desktop-file-utils gl gnome pkgconfig qmake:outsource qt:5 shared-mime-info ssl xorg
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= davy7125
|
||||
GH_TAGNAME= d7459fa
|
||||
USE_GL= gl
|
||||
USE_QT= core concurrent gui network printsupport svg widgets buildtools_build qmake_build
|
||||
USE_GNOME= glib20
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1563732467
|
||||
SHA256 (davy7125-polyphone-2.0.1.20190716-d7459fa_GH0.tar.gz) = 4d1cdd0cc360962081ac88ce96a4f1a53aedbd3d95199d5acc5a7d547eedbfad
|
||||
SIZE (davy7125-polyphone-2.0.1.20190716-d7459fa_GH0.tar.gz) = 1964365
|
||||
TIMESTAMP = 1567474097
|
||||
SHA256 (davy7125-polyphone-2.1.0_GH0.tar.gz) = 30812339f34b9125bd53820d34a12077f474a8433b50a0ddd0122e789861d2a0
|
||||
SIZE (davy7125-polyphone-2.1.0_GH0.tar.gz) = 1980275
|
||||
|
|
|
|||
|
|
@ -1,13 +0,0 @@
|
|||
--- core/input/sfark/sfarkextractor1.cpp.orig 2019-07-16 14:22:06 UTC
|
||||
+++ core/input/sfark/sfarkextractor1.cpp
|
||||
@@ -30,8 +30,8 @@
|
||||
#include "zlib.h"
|
||||
#include "stdint.h"
|
||||
|
||||
-#ifdef Q_OS_MAC
|
||||
-#include "unistd.h"
|
||||
+#if defined(Q_OS_MAC) || defined(__FreeBSD__) || defined(__DragonFly__)
|
||||
+#include <unistd.h>
|
||||
#endif
|
||||
|
||||
static const char * SfArkId = ".sfArk";
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
PORTNAME= lua-resty-redis
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.26
|
||||
DISTVERSION= 0.27
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= arcade@b1t.name
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1510862473
|
||||
SHA256 (openresty-lua-resty-redis-v0.26_GH0.tar.gz) = 8ec3a2b5055776657980fead5dee7651246f4bbb0903db4322dd232209f43b2e
|
||||
SIZE (openresty-lua-resty-redis-v0.26_GH0.tar.gz) = 17531
|
||||
TIMESTAMP = 1567193899
|
||||
SHA256 (openresty-lua-resty-redis-v0.27_GH0.tar.gz) = 71de123e1262b62e5ffef02c9dec708d5b77dd55cf99175bae2ad6edaaa2fa80
|
||||
SIZE (openresty-lua-resty-redis-v0.27_GH0.tar.gz) = 17558
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= redis
|
||||
PORTVERSION= 5.0.1
|
||||
PORTVERSION= 5.0.2
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= daniel@blodan.se
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562938907
|
||||
SHA256 (PECL/redis-5.0.1.tgz) = 6921d6461629e323822bacc91a0906b903cb61f12877a2ee320dd28ddca3c65f
|
||||
SIZE (PECL/redis-5.0.1.tgz) = 243524
|
||||
TIMESTAMP = 1564568603
|
||||
SHA256 (PECL/redis-5.0.2.tgz) = 4e18d7ebe032a562c358d79f94efa5f187ea90db7a56ef648476e24f4fe0b72c
|
||||
SIZE (PECL/redis-5.0.2.tgz) = 243270
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= pspg
|
||||
DISTVERSION= 1.6.8
|
||||
DISTVERSION= 1.7.2
|
||||
CATEGORIES= databases
|
||||
|
||||
MAINTAINER= dg@syrec.org
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564048863
|
||||
SHA256 (okbob-pspg-1.6.8_GH0.tar.gz) = f2488ec0b600752a4896fe50ce8e5bde08e0e79af38fd86b7935cdb1240e2c9f
|
||||
SIZE (okbob-pspg-1.6.8_GH0.tar.gz) = 1017316
|
||||
TIMESTAMP = 1567371014
|
||||
SHA256 (okbob-pspg-1.7.2_GH0.tar.gz) = 8865da5672cb160a5609e0e6f3de0377b3e25e287311a54c0290edbb56f367f1
|
||||
SIZE (okbob-pspg-1.7.2_GH0.tar.gz) = 1316356
|
||||
|
|
|
|||
|
|
@ -1,9 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Pyrseas
|
||||
PORTVERSION= 0.8.0
|
||||
PORTVERSION= 0.9.0
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION= 3
|
||||
CATEGORIES= databases python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1528053550
|
||||
SHA256 (perseas-Pyrseas-v0.8.0_GH0.tar.gz) = 178107e163595d37b0ad332117b1a9b5c97f975e8c9ea90934ff25b00a1e998f
|
||||
SIZE (perseas-Pyrseas-v0.8.0_GH0.tar.gz) = 175483
|
||||
TIMESTAMP = 1567194448
|
||||
SHA256 (perseas-Pyrseas-v0.9.0_GH0.tar.gz) = e013e3776ae52f1b71c3b46f25946962355fa3f816c6925cf85ff14e332429eb
|
||||
SIZE (perseas-Pyrseas-v0.9.0_GH0.tar.gz) = 176948
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= marshmallow-sqlalchemy
|
||||
PORTVERSION= 0.17.1
|
||||
PORTVERSION= 0.17.2
|
||||
CATEGORIES= databases python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1567362065
|
||||
SHA256 (marshmallow-sqlalchemy-0.17.1.tar.gz) = 51a0959e794ba57349396f9a3f6e452f85e34f0c4c32e58d4ec0ec11ab279f26
|
||||
SIZE (marshmallow-sqlalchemy-0.17.1.tar.gz) = 47579
|
||||
TIMESTAMP = 1567451238
|
||||
SHA256 (marshmallow-sqlalchemy-0.17.2.tar.gz) = d4323a29928f6b575001a0161eb00f3166a5c662dbd4cf2724d5966fc9395250
|
||||
SIZE (marshmallow-sqlalchemy-0.17.2.tar.gz) = 47780
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= redis_exporter
|
||||
PORTVERSION= 1.0.3
|
||||
PORTVERSION= 1.1.0
|
||||
DISTVERSIONPREFIX=v
|
||||
CATEGORIES= databases
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1561547829
|
||||
SHA256 (oliver006-redis_exporter-v1.0.3_GH0.tar.gz) = 8b59caf2314adbcd40c381d9c80eb2c9d3e1385ee6468edf21260c554fe12bca
|
||||
SIZE (oliver006-redis_exporter-v1.0.3_GH0.tar.gz) = 1414574
|
||||
TIMESTAMP = 1567194774
|
||||
SHA256 (oliver006-redis_exporter-v1.1.0_GH0.tar.gz) = 86148aa0a81e75f00801809a6252863f50a99adeb469f21e30e7519aa65ab74a
|
||||
SIZE (oliver006-redis_exporter-v1.1.0_GH0.tar.gz) = 1414894
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= treesheets
|
||||
PORTVERSION= 1.0.1
|
||||
PORTREVISION= 3
|
||||
PORTVERSION= 1.0.2
|
||||
DISTVERSIONPREFIX= v
|
||||
CATEGORIES= deskutils
|
||||
|
||||
|
|
@ -13,7 +12,7 @@ COMMENT= Free form data organizer
|
|||
LICENSE= ZLIB
|
||||
LICENSE_FILE= ${WRKSRC}/ZLIB_LICENSE.txt
|
||||
|
||||
USES= compiler:c++17-lang desktop-file-utils
|
||||
USES= compiler:c++17-lang desktop-file-utils gnome
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= aardappel
|
||||
|
|
@ -21,12 +20,12 @@ GH_ACCOUNT= aardappel
|
|||
USE_WX= 3.0+
|
||||
INSTALLS_ICONS= yes
|
||||
|
||||
BUILD_WRKSRC= ${WRKSRC}/src
|
||||
BUILD_WRKSRC= ${WRKSRC}/src
|
||||
PACKAGE_VERSION= \"${PORTVERSION}\"
|
||||
MAKE_ENV= PACKAGE_VERSION=${PACKAGE_VERSION:Q}
|
||||
MAKE_ENV= PACKAGE_VERSION=${PACKAGE_VERSION:Q}
|
||||
|
||||
PORTDATA= images scripts translations/*/*.mo
|
||||
PORTDOCS= docs *.html
|
||||
PORTDOCS= *.html docs
|
||||
PORTEXAMPLES= *
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME} \
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1541105162
|
||||
SHA256 (aardappel-treesheets-v1.0.1_GH0.tar.gz) = cacf0593e12c484f68adf4d462147efed202b1c2d09e58e90c9fb98cb3e7b874
|
||||
SIZE (aardappel-treesheets-v1.0.1_GH0.tar.gz) = 2316388
|
||||
TIMESTAMP = 1564766678
|
||||
SHA256 (aardappel-treesheets-v1.0.2_GH0.tar.gz) = 84eb82f122bc7be3ded399d2511536128911477a4a69c51b26b856de2160405f
|
||||
SIZE (aardappel-treesheets-v1.0.2_GH0.tar.gz) = 2486893
|
||||
|
|
|
|||
15
deskutils/treesheets/files/patch-src_Makefile
Normal file
15
deskutils/treesheets/files/patch-src_Makefile
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
--- src/Makefile.orig 2019-08-02 17:24:38 UTC
|
||||
+++ src/Makefile
|
||||
@@ -20,8 +20,12 @@ DIST_ARGS?= -caf
|
||||
APPNAME= treesheets
|
||||
SRCS= main.cpp \
|
||||
lobster_impl.cpp \
|
||||
+ ../lobster/external/flatbuffers/src/idl_gen_text.cpp \
|
||||
+ ../lobster/external/flatbuffers/src/idl_parser.cpp \
|
||||
+ ../lobster/external/flatbuffers/src/util.cpp \
|
||||
../lobster/src/builtins.cpp \
|
||||
../lobster/src/compiler.cpp \
|
||||
+ ../lobster/src/disasm.cpp \
|
||||
../lobster/src/file.cpp \
|
||||
../lobster/src/lobsterreader.cpp \
|
||||
../lobster/src/platform.cpp \
|
||||
|
|
@ -4594,6 +4594,7 @@
|
|||
SUBDIR += py-lazr.uri
|
||||
SUBDIR += py-lazy
|
||||
SUBDIR += py-lazy-object-proxy
|
||||
SUBDIR += py-libioc
|
||||
SUBDIR += py-libiocage
|
||||
SUBDIR += py-liblarch
|
||||
SUBDIR += py-libpeas
|
||||
|
|
@ -5836,6 +5837,7 @@
|
|||
SUBDIR += rubygem-grape_logging
|
||||
SUBDIR += rubygem-graphiql-rails
|
||||
SUBDIR += rubygem-graphql
|
||||
SUBDIR += rubygem-graphql-docs
|
||||
SUBDIR += rubygem-grit
|
||||
SUBDIR += rubygem-guess_html_encoding
|
||||
SUBDIR += rubygem-gyoku
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= bazel
|
||||
DISTVERSION= 0.28.0
|
||||
DISTVERSION= 0.29.0
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://storage.googleapis.com/bazel/${PORTVERSION}/rc${FINALRC}/
|
||||
DISTNAME= bazel-${PORTVERSION}rc${FINALRC}-dist
|
||||
|
|
@ -26,7 +26,7 @@ USES= python:3.3+ shebangfix zip:infozip
|
|||
# In bazel, a release is always code-wise identical to the final release candidate.
|
||||
# Hence we can also download that one and so have a simple way to also test earlier release
|
||||
# candidates.
|
||||
FINALRC= 2
|
||||
FINALRC= 8
|
||||
|
||||
SHEBANG_REGEX= .*(sh|txt|_stub|stub_.*|bazel|get_workspace_status|protobuf_support|_so)
|
||||
USE_JAVA= yes
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562751385
|
||||
SHA256 (bazel-0.28.0rc2-dist.zip) = 1fa0879671c505b07f2186a67e6eba6642d9d90ab8ed996f7c992f59bddb2739
|
||||
SIZE (bazel-0.28.0rc2-dist.zip) = 256639115
|
||||
TIMESTAMP = 1566883509
|
||||
SHA256 (bazel-0.29.0rc8-dist.zip) = d812e6fb46540b42fa8546c381f44728d3a27fcd8029faec05a7f8d14cfc7aa1
|
||||
SIZE (bazel-0.29.0rc8-dist.zip) = 265744572
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
--- scripts/bootstrap/bootstrap.sh.orig 2017-11-11 21:44:20 UTC
|
||||
+++ scripts/bootstrap/bootstrap.sh
|
||||
@@ -34,7 +34,7 @@
|
||||
--- scripts/bootstrap/bootstrap.sh.orig 2019-08-06 08:04:56.534744000 +0000
|
||||
+++ scripts/bootstrap/bootstrap.sh 2019-08-06 08:05:20.598434000 +0000
|
||||
@@ -35,7 +35,7 @@
|
||||
--host_java_toolchain=//src/java_tools/buildjar:bootstrap_toolchain \
|
||||
--spawn_strategy=standalone \
|
||||
--nojava_header_compilation \
|
||||
- --strategy=Javac=worker --worker_quit_after_build --ignore_unsupported_sandboxing \
|
||||
+ --strategy=Javac=standalone --ignore_unsupported_sandboxing --curses=no \
|
||||
--compilation_mode=opt \
|
||||
--distdir=derived/distdir \
|
||||
${EXTRA_BAZEL_ARGS:-}"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,13 +1,9 @@
|
|||
--- tools/jdk/default_java_toolchain.bzl.orig 1980-01-01 00:00:00.000000000 +0000
|
||||
+++ tools/jdk/default_java_toolchain.bzl 2019-03-04 15:02:00.395888000 +0000
|
||||
@@ -19,29 +19,6 @@
|
||||
--- tools/jdk/default_java_toolchain.bzl.orig 2019-08-06 08:09:07.930962000 +0000
|
||||
+++ tools/jdk/default_java_toolchain.bzl 2019-08-06 08:16:15.674960000 +0000
|
||||
@@ -19,25 +19,6 @@
|
||||
]
|
||||
|
||||
JDK9_JVM_OPTS = [
|
||||
- # In JDK9 we have seen a ~30% slow down in JavaBuilder performance when using
|
||||
- # G1 collector and having compact strings enabled.
|
||||
- "-XX:+UseParallelOldGC",
|
||||
- "-XX:-CompactStrings",
|
||||
- # Allow JavaBuilder to access internal javac APIs.
|
||||
- "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
|
||||
- "--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED",
|
||||
|
|
@ -30,7 +26,7 @@
|
|||
]
|
||||
|
||||
DEFAULT_JAVACOPTS = [
|
||||
@@ -74,7 +51,7 @@
|
||||
@@ -70,7 +51,7 @@
|
||||
"@bazel_tools//tools/jdk:jdk_compiler_jar",
|
||||
],
|
||||
"javac_supports_workers": 1,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cligen
|
||||
PORTVERSION= 3.9.0
|
||||
PORTVERSION= 4.0.0
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= dcornejo@netgate.com
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1550886695
|
||||
SHA256 (olofhagsand-cligen-3.9.0_GH0.tar.gz) = 7164b48e5776eb0b42c4b74279fd267d0e53fad0903cc88f76a618354a0601de
|
||||
SIZE (olofhagsand-cligen-3.9.0_GH0.tar.gz) = 777578
|
||||
TIMESTAMP = 1563660374
|
||||
SHA256 (olofhagsand-cligen-4.0.0_GH0.tar.gz) = 60735eeeca7a5de861ca04b0b34ad6ca9874b4fc32318d8ddfd5f13d94e46fa6
|
||||
SIZE (olofhagsand-cligen-4.0.0_GH0.tar.gz) = 791264
|
||||
|
|
|
|||
|
|
@ -5,11 +5,13 @@ include/cligen/cligen_cvec.h
|
|||
include/cligen/cligen_expand.h
|
||||
include/cligen/cligen_gen.h
|
||||
include/cligen/cligen_handle.h
|
||||
include/cligen/cligen_history.h
|
||||
include/cligen/cligen_io.h
|
||||
include/cligen/cligen_print.h
|
||||
include/cligen/cligen_read.h
|
||||
include/cligen/cligen_regex.h
|
||||
include/cligen/cligen_syntax.h
|
||||
include/cligen/cligen_util.h
|
||||
lib/libcligen.so
|
||||
lib/libcligen.so.3
|
||||
lib/libcligen.so.3.9
|
||||
lib/libcligen.so.4
|
||||
lib/libcligen.so.4.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= clion
|
||||
PORTVERSION= 2019.1.4
|
||||
PORTVERSION= 2019.2.1
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://download-cf.jetbrains.com/cpp/
|
||||
PKGNAMEPREFIX= jetbrains-
|
||||
|
|
@ -16,13 +16,12 @@ LICENSE_NAME= Subscription license agreement for business and organizations
|
|||
LICENSE_TEXT= See: https://www.jetbrains.com/store/license.html
|
||||
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
||||
|
||||
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
|
||||
intellij-pty4j>0:java/intellij-pty4j
|
||||
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier
|
||||
|
||||
USES= python:run shebangfix
|
||||
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.8+
|
||||
JAVA_VERSION= 8+
|
||||
|
||||
SHEBANG_FILES= bin/printenv.py bin/restart.py
|
||||
|
||||
|
|
@ -32,30 +31,27 @@ NO_BUILD= yes
|
|||
WRKSRC= ${WRKDIR}/clion-${PORTVERSION}
|
||||
|
||||
SUB_FILES= clion clion.desktop pkg-message
|
||||
SUB_LIST= DATADIR=${DATADIR}
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
@${TAR} -czf - -C ${WRKSRC} . | ${TAR} xzf - -C ${STAGEDIR}${DATADIR}
|
||||
# Linux/Windows/OS X only so remove them
|
||||
@${RM} -r ${STAGEDIR}${DATADIR}/bin/fsnotifier \
|
||||
${STAGEDIR}${DATADIR}/bin/fsnotifier-arm \
|
||||
${STAGEDIR}${DATADIR}/bin/fsnotifier64 \
|
||||
${STAGEDIR}${DATADIR}/bin/lib*.so \
|
||||
${STAGEDIR}${DATADIR}/bin/clang \
|
||||
${STAGEDIR}${DATADIR}/bin/cmake \
|
||||
${STAGEDIR}${DATADIR}/bin/gdb/linux \
|
||||
${STAGEDIR}${DATADIR}/bin/lldb/linux
|
||||
# Remove the bundled native Pty4J support libraries, they are replaced
|
||||
# by java/intellij-pty4j
|
||||
@${RM} -r ${STAGEDIR}${DATADIR}/lib/pty4j-native
|
||||
# Remove bundled linux OpenJDK and DroidSerif fonts
|
||||
@${RM} -r ${STAGEDIR}${DATADIR}/jre64
|
||||
@${RM} -r ${WRKSRC}/bin/fsnotifier \
|
||||
${WRKSRC}/bin/fsnotifier-arm \
|
||||
${WRKSRC}/bin/fsnotifier64 \
|
||||
${WRKSRC}/bin/clang \
|
||||
${WRKSRC}/bin/cmake \
|
||||
${WRKSRC}/bin/gdb/linux \
|
||||
${WRKSRC}/bin/lldb/linux \
|
||||
${WRKSRC}/lib/pty4j-native \
|
||||
${WRKSRC}/plugins/performanceTesting/bin
|
||||
# Remove bundled linux JetBrains Runtime and OpenJDK
|
||||
@${RM} -r ${WRKSRC}/jbr ${WRKSRC}/jre64
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \
|
||||
"! -name *\.so ! -name *\.dll ! -name *\.dylib ! -name *\.pdb ! -name *\.sh")
|
||||
@(cd ${WRKSRC} && ${COPYTREE_BIN} . ${STAGEDIR}${DATADIR} "-name *\.sh")
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/clion ${STAGEDIR}${PREFIX}/bin/clion
|
||||
${INSTALL_MAN} ${FILESDIR}/clion.1 ${STAGEDIR}${PREFIX}/man/man1
|
||||
${INSTALL_DATA} ${WRKDIR}/clion.desktop ${STAGEDIR}${PREFIX}/share/applications/
|
||||
cd ${WRKSRC}/lib && ${JAVA_HOME}/bin/jar xf icons.jar
|
||||
${INSTALL_DATA} ${WRKSRC}/lib/icon.png ${STAGEDIR}${DATADIR}/clion.png
|
||||
# Use fsnotifier replacement provided by java/intellij-fsnotifier
|
||||
${ECHO} "idea.filewatcher.executable.path=${PREFIX}/intellij/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
|
||||
# Fix slow render
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1559383357
|
||||
SHA256 (jetbrains/CLion-2019.1.4.tar.gz) = c9249f7a378b66071e4c4308a339bfd3afa38765e9316ffaaeeec66fcb3b8bb1
|
||||
SIZE (jetbrains/CLion-2019.1.4.tar.gz) = 431747416
|
||||
TIMESTAMP = 1566564369
|
||||
SHA256 (jetbrains/CLion-2019.2.1.tar.gz) = 978a13bc4e9d5ca35379a1eed8493890e3365873d7aad358fa9c4efaf760c28f
|
||||
SIZE (jetbrains/CLion-2019.2.1.tar.gz) = 493159056
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
There is native (faster) file watching support backed by kqueue which is
|
||||
enabled by default. If you encounter problems problems with watching large
|
||||
trees, you disable it by appending the following property into
|
||||
%%DATADIR%%/bin/idea.properties:
|
||||
There is a native (faster) file watching support backed by kqueue which is
|
||||
enabled by default. If you encounter problems with watching large
|
||||
trees, you can disable it by adding the following property via the menu
|
||||
entry Help -> Edit Custom Properties...
|
||||
|
||||
idea.filewatcher.disabled=true
|
||||
EOM
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= goland
|
||||
PORTVERSION= 2019.1.3
|
||||
PORTVERSION= 2019.2.1
|
||||
CATEGORIES= devel java
|
||||
MASTER_SITES= https://download-cf.jetbrains.com/go/
|
||||
PKGNAMEPREFIX= jetbrains-
|
||||
|
|
@ -15,13 +15,12 @@ LICENSE_NAME= Subscription license agreement for business and organizations
|
|||
LICENSE_TEXT= See: https://www.jetbrains.com/store/license.html
|
||||
LICENSE_PERMS= dist-mirror pkg-mirror auto-accept
|
||||
|
||||
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier \
|
||||
intellij-pty4j>0:java/intellij-pty4j
|
||||
RUN_DEPENDS= intellij-fsnotifier>0:java/intellij-fsnotifier
|
||||
|
||||
USES= python:run shebangfix
|
||||
|
||||
USE_JAVA= yes
|
||||
JAVA_VERSION= 1.8+
|
||||
JAVA_VERSION= 8+
|
||||
|
||||
SHEBANG_FILES= bin/printenv.py bin/restart.py
|
||||
|
||||
|
|
@ -31,26 +30,23 @@ NO_BUILD= yes
|
|||
WRKSRC= ${WRKDIR}/GoLand-${PORTVERSION}
|
||||
|
||||
SUB_FILES= goland goland.desktop pkg-message
|
||||
SUB_LIST= DATADIR=${DATADIR}
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
@${TAR} -czf - -C ${WRKSRC} . | ${TAR} xzf - -C ${STAGEDIR}${DATADIR}
|
||||
# Linux/Windows/OS X only so remove them
|
||||
@${RM} ${STAGEDIR}${DATADIR}/bin/fsnotifier \
|
||||
${STAGEDIR}${DATADIR}/bin/fsnotifier-arm \
|
||||
${STAGEDIR}${DATADIR}/bin/fsnotifier64 \
|
||||
${STAGEDIR}${DATADIR}/bin/lib*.so
|
||||
# Remove the bundled native Pty4J support libraries, they are replaced
|
||||
# by java/intellij-pty4j
|
||||
@${RM} -r ${STAGEDIR}${DATADIR}/lib/pty4j-native
|
||||
# Remove bundled linux OpenJDK and DroidSerif fonts
|
||||
@${RM} -r ${STAGEDIR}${DATADIR}/jre64
|
||||
@${RM} -r ${WRKSRC}/bin/fsnotifier \
|
||||
${WRKSRC}/bin/fsnotifier-arm \
|
||||
${WRKSRC}/bin/fsnotifier64 \
|
||||
${WRKSRC}/lib/pty4j-native \
|
||||
${WRKSRC}/plugins/performanceTesting/bin
|
||||
# Remove bundled linux JetBrains Runtime and OpenJDK
|
||||
@${RM} -r ${WRKSRC}/jbr ${WRKSRC}/jre64
|
||||
${MKDIR} ${STAGEDIR}${DATADIR}
|
||||
@(cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR} \
|
||||
"! -name *\.so ! -name *\.dll ! -name *\.dylib ! -name *\.pdb ! -name *\.sh")
|
||||
@(cd ${WRKSRC} && ${COPYTREE_BIN} . ${STAGEDIR}${DATADIR} "-name *\.sh")
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/goland ${STAGEDIR}${PREFIX}/bin/goland
|
||||
${INSTALL_MAN} ${FILESDIR}/goland.1 ${STAGEDIR}${PREFIX}/man/man1
|
||||
${INSTALL_DATA} ${WRKDIR}/goland.desktop ${STAGEDIR}${PREFIX}/share/applications/
|
||||
cd ${WRKSRC}/lib && ${JAVA_HOME}/bin/jar xf icons.jar
|
||||
${INSTALL_DATA} ${WRKSRC}/lib/icon.png ${STAGEDIR}${DATADIR}/goland.png
|
||||
# Use fsnotifier replacement provided by java/intellij-fsnotifier
|
||||
${ECHO} "idea.filewatcher.executable.path=${PREFIX}/intellij/bin/fsnotifier" >> ${STAGEDIR}${DATADIR}/bin/idea.properties
|
||||
# Fix slow render
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1559386338
|
||||
SHA256 (jetbrains/goland-2019.1.3.tar.gz) = b0e22be860ead904c88595f005d5fe2b0fea310c15a1d8551372b5c336d1895b
|
||||
SIZE (jetbrains/goland-2019.1.3.tar.gz) = 312837589
|
||||
TIMESTAMP = 1566564380
|
||||
SHA256 (jetbrains/goland-2019.2.1.tar.gz) = d21363e7b2f259fd9df9f4e305f1356cd2ae94d90fe7070a682575c48cd3959b
|
||||
SIZE (jetbrains/goland-2019.2.1.tar.gz) = 360863903
|
||||
|
|
|
|||
|
|
@ -1,10 +1,10 @@
|
|||
[
|
||||
{ type: install
|
||||
message: <<EOM
|
||||
There is native (faster) file watching support backed by kqueue which is
|
||||
enabled by default. If you encounter problems problems with watching large
|
||||
trees, you disable it by appending the following property into
|
||||
%%DATADIR%%/bin/idea.properties:
|
||||
There is a native (faster) file watching support backed by kqueue which is
|
||||
enabled by default. If you encounter problems with watching large
|
||||
trees, you can disable it by adding the following property via the menu
|
||||
entry Help -> Edit Custom Properties...
|
||||
|
||||
idea.filewatcher.disabled=true
|
||||
EOM
|
||||
|
|
|
|||
|
|
@ -14,7 +14,6 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/bin/printenv.py
|
||||
%%DATADIR%%/bin/restart.py
|
||||
%%DATADIR%%/build.txt
|
||||
%%DATADIR%%/goland.png
|
||||
%%DATADIR%%/help/ReferenceCard.pdf
|
||||
%%DATADIR%%/help/ReferenceCardForMac.pdf
|
||||
%%DATADIR%%/lib/FastInfoset-1.2.15.jar
|
||||
|
|
@ -22,16 +21,31 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/lib/annotations-java5.jar
|
||||
%%DATADIR%%/lib/asm-all-7.0.1.jar
|
||||
%%DATADIR%%/lib/automaton-1.12-1.jar
|
||||
%%DATADIR%%/lib/batik-all-1.10.jar
|
||||
%%DATADIR%%/lib/bcprov-jdk15on-1.60.jar
|
||||
%%DATADIR%%/lib/batik-anim-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-awt-util-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-bridge-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-constants-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-css-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-dom-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-ext-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-gvt-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-parser-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-svg-dom-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-svggen-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-transcoder-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-util-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/batik-xml-1.12.0-8.jar
|
||||
%%DATADIR%%/lib/bcpkix-jdk15on-1.62.jar
|
||||
%%DATADIR%%/lib/bcprov-jdk15on-1.62.jar
|
||||
%%DATADIR%%/lib/bootstrap.jar
|
||||
%%DATADIR%%/lib/built-in-server.jar
|
||||
%%DATADIR%%/lib/cglib-nodep-3.2.4.jar
|
||||
%%DATADIR%%/lib/cli-parser-1.1.2.jar
|
||||
%%DATADIR%%/lib/cli-parser-1.1.5.jar
|
||||
%%DATADIR%%/lib/cloud-config-client.jar
|
||||
%%DATADIR%%/lib/common-image-3.4.1.jar
|
||||
%%DATADIR%%/lib/common-io-3.4.1.jar
|
||||
%%DATADIR%%/lib/common-lang-3.4.1.jar
|
||||
%%DATADIR%%/lib/commons-codec-1.10.jar
|
||||
%%DATADIR%%/lib/commons-codec-1.13.jar
|
||||
%%DATADIR%%/lib/commons-collections-3.2.2.jar
|
||||
%%DATADIR%%/lib/commons-compress-1.18.jar
|
||||
%%DATADIR%%/lib/commons-httpclient-3.1-patched.jar
|
||||
|
|
@ -39,109 +53,131 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/lib/commons-lang-2.4.jar
|
||||
%%DATADIR%%/lib/commons-logging-1.2.jar
|
||||
%%DATADIR%%/lib/commons-net-3.6.jar
|
||||
%%DATADIR%%/lib/delight-rhino-sandbox-0.0.9.jar
|
||||
%%DATADIR%%/lib/configuration-store-impl.jar
|
||||
%%DATADIR%%/lib/credential-store.jar
|
||||
%%DATADIR%%/lib/delight-rhino-sandbox-0.0.10.jar
|
||||
%%DATADIR%%/lib/eddsa-0.2.0.jar
|
||||
%%DATADIR%%/lib/error_prone_annotations-2.3.1.jar
|
||||
%%DATADIR%%/lib/extensions.jar
|
||||
%%DATADIR%%/lib/fluent-hc-4.5.6.jar
|
||||
%%DATADIR%%/lib/external-system-rt.jar
|
||||
%%DATADIR%%/lib/fluent-hc-4.5.9.jar
|
||||
%%DATADIR%%/lib/forms-1.1-preview.jar
|
||||
%%DATADIR%%/lib/forms_rt.jar
|
||||
%%DATADIR%%/lib/fst-2.57.jar
|
||||
%%DATADIR%%/lib/goland.jar
|
||||
%%DATADIR%%/lib/groovy-all-2.4.15.jar
|
||||
%%DATADIR%%/lib/groovy-all-2.4.17.jar
|
||||
%%DATADIR%%/lib/gson-2.8.5.jar
|
||||
%%DATADIR%%/lib/guava-25.1-jre.jar
|
||||
%%DATADIR%%/lib/httpclient-4.5.6.jar
|
||||
%%DATADIR%%/lib/httpcore-4.4.10.jar
|
||||
%%DATADIR%%/lib/httpmime-4.5.6.jar
|
||||
%%DATADIR%%/lib/httpclient-4.5.9.jar
|
||||
%%DATADIR%%/lib/httpcore-4.4.11.jar
|
||||
%%DATADIR%%/lib/httpmime-4.5.9.jar
|
||||
%%DATADIR%%/lib/icons.jar
|
||||
%%DATADIR%%/lib/imageio-core-3.4.1.jar
|
||||
%%DATADIR%%/lib/imageio-metadata-3.4.1.jar
|
||||
%%DATADIR%%/lib/imageio-tiff-3.4.1.jar
|
||||
%%DATADIR%%/lib/images.jar
|
||||
%%DATADIR%%/lib/imgscalr-lib-4.2.jar
|
||||
%%DATADIR%%/lib/ini4j-0.5.5-2.jar
|
||||
%%DATADIR%%/lib/intellij-coverage-agent-1.0.495.jar
|
||||
%%DATADIR%%/lib/intellij-test-discovery-agent-1.0.495.jar
|
||||
%%DATADIR%%/lib/intellij-coverage-agent-1.0.508.jar
|
||||
%%DATADIR%%/lib/intellij-dvcs.jar
|
||||
%%DATADIR%%/lib/intellij-test-discovery-agent-1.0.508.jar
|
||||
%%DATADIR%%/lib/intellij-xml.jar
|
||||
%%DATADIR%%/lib/ion-java-1.5.0-1.jar
|
||||
%%DATADIR%%/lib/isorelax-20030108.jar
|
||||
%%DATADIR%%/lib/istack-commons-runtime-3.0.7.jar
|
||||
%%DATADIR%%/lib/jackson-annotations-2.9.0.jar
|
||||
%%DATADIR%%/lib/jackson-core-2.9.7.jar
|
||||
%%DATADIR%%/lib/jackson-databind-2.9.7.jar
|
||||
%%DATADIR%%/lib/jackson-core-2.9.9.jar
|
||||
%%DATADIR%%/lib/jackson-databind-2.9.9.jar
|
||||
%%DATADIR%%/lib/java-compatibility-1.0.1.jar
|
||||
%%DATADIR%%/lib/javahelp-2.0.02.jar
|
||||
%%DATADIR%%/lib/javassist-3.22.0-GA.jar
|
||||
%%DATADIR%%/lib/javax.activation-1.2.0.jar
|
||||
%%DATADIR%%/lib/javax.annotation-api-1.3.2.jar
|
||||
%%DATADIR%%/lib/jaxb-api-2.3.1.jar
|
||||
%%DATADIR%%/lib/jaxb-runtime-2.3.1.jar
|
||||
%%DATADIR%%/lib/jaxen-1.1.6.jar
|
||||
%%DATADIR%%/lib/jaxen-1.2.0.jar
|
||||
%%DATADIR%%/lib/jbcrypt-1.0.0.jar
|
||||
%%DATADIR%%/lib/jdom.jar
|
||||
%%DATADIR%%/lib/jediterm-pty-2.14.jar
|
||||
%%DATADIR%%/lib/jediterm-pty-2.20.jar
|
||||
%%DATADIR%%/lib/jettison-1.4.0.jar
|
||||
%%DATADIR%%/lib/jing-20030619.jar
|
||||
%%DATADIR%%/lib/jna-platform.jar
|
||||
%%DATADIR%%/lib/jna.jar
|
||||
%%DATADIR%%/lib/jps-model.jar
|
||||
%%DATADIR%%/lib/jsch-0.1.55.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.connector-factory.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.core.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.jsch.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.pageant.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.sshagent.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.usocket-jna.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.usocket-nc.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.connector-factory-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.core-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.jsch-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.pageant-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.sshagent-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.sshj-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.usocket-jna-0.0.9.jar
|
||||
%%DATADIR%%/lib/jsch.agentproxy.usocket-nc-0.0.9.jar
|
||||
%%DATADIR%%/lib/json.jar
|
||||
%%DATADIR%%/lib/jsoup-1.8.3.jar
|
||||
%%DATADIR%%/lib/jzlib-1.1.3.jar
|
||||
%%DATADIR%%/lib/kotlin-reflect-1.3.11.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-1.3.11.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-common-1.3.11.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-jdk7-1.3.11.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-jdk8-1.3.11.jar
|
||||
%%DATADIR%%/lib/kotlinx-coroutines-core-1.0.1.jar
|
||||
%%DATADIR%%/lib/kotlinx-coroutines-core-common-1.0.1.jar
|
||||
%%DATADIR%%/lib/kotlinx-coroutines-jdk8-1.0.1.jar
|
||||
%%DATADIR%%/lib/kotlin-reflect-1.3.31.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-1.3.31.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-common-1.3.31.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-jdk7-1.3.31.jar
|
||||
%%DATADIR%%/lib/kotlin-stdlib-jdk8-1.3.31.jar
|
||||
%%DATADIR%%/lib/kotlinx-coroutines-core-1.2.1.jar
|
||||
%%DATADIR%%/lib/kotlinx-coroutines-jdk8-1.2.1.jar
|
||||
%%DATADIR%%/lib/log4j.jar
|
||||
%%DATADIR%%/lib/lz4-1.3.0.jar
|
||||
%%DATADIR%%/lib/lz4-java-1.6.0.jar
|
||||
%%DATADIR%%/lib/markdown4j-2.2-cj-1.1.jar
|
||||
%%DATADIR%%/lib/markdownj-core-0.4.2-SNAPSHOT.jar
|
||||
%%DATADIR%%/lib/microba.jar
|
||||
%%DATADIR%%/lib/miglayout-core-5.2.jar
|
||||
%%DATADIR%%/lib/miglayout-swing-5.2.jar
|
||||
%%DATADIR%%/lib/nanoxml-2.2.3.jar
|
||||
%%DATADIR%%/lib/netty-buffer-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-http-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-common-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-handler-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-resolver-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/netty-transport-4.1.32.Final.jar
|
||||
%%DATADIR%%/lib/objenesis-2.6.jar
|
||||
%%DATADIR%%/lib/netty-buffer-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-http-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-http2-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-codec-socks-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-common-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-handler-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-handler-proxy-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-resolver-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/netty-transport-4.1.38.Final.jar
|
||||
%%DATADIR%%/lib/openapi.jar
|
||||
%%DATADIR%%/lib/org.eclipse.lsp4j-0.7.1.jar
|
||||
%%DATADIR%%/lib/org.eclipse.lsp4j.jsonrpc-0.7.1.jar
|
||||
%%DATADIR%%/lib/org.eclipse.xtend.lib-2.14.0.jar
|
||||
%%DATADIR%%/lib/org.eclipse.xtend.lib.macro-2.14.0.jar
|
||||
%%DATADIR%%/lib/org.eclipse.xtext.xbase.lib-2.14.0.jar
|
||||
%%DATADIR%%/lib/oro-2.0.8.jar
|
||||
%%DATADIR%%/lib/picocontainer-1.2.jar
|
||||
%%DATADIR%%/lib/platform-api.jar
|
||||
%%DATADIR%%/lib/platform-concurrency.jar
|
||||
%%DATADIR%%/lib/platform-core-ui.jar
|
||||
%%DATADIR%%/lib/platform-ide-util-io.jar
|
||||
%%DATADIR%%/lib/platform-impl.jar
|
||||
%%DATADIR%%/lib/platform-objectSerializer-annotations.jar
|
||||
%%DATADIR%%/lib/platform-objectSerializer.jar
|
||||
%%DATADIR%%/lib/platform-util-ex.jar
|
||||
%%DATADIR%%/lib/platform-util-ui.jar
|
||||
%%DATADIR%%/lib/protobuf-java-3.5.1.jar
|
||||
%%DATADIR%%/lib/proxy-vole-1.0.6.jar
|
||||
%%DATADIR%%/lib/pty4j-0.9.3.jar
|
||||
%%DATADIR%%/lib/proxy-vole-1.0.5-jb.2.jar
|
||||
%%DATADIR%%/lib/pty4j-0.9.4.jar
|
||||
%%DATADIR%%/lib/purejavacomm-0.0.11.1.jar
|
||||
%%DATADIR%%/lib/rd-core-0.191.63.jar
|
||||
%%DATADIR%%/lib/rd-swing-0.191.63.jar
|
||||
%%DATADIR%%/lib/resources.jar
|
||||
%%DATADIR%%/lib/resources_en.jar
|
||||
%%DATADIR%%/lib/rhino-1.7.10.jar
|
||||
%%DATADIR%%/lib/rhino-1.7.11.jar
|
||||
%%DATADIR%%/lib/rngom-20051226-patched.jar
|
||||
%%DATADIR%%/lib/serviceMessages.jar
|
||||
%%DATADIR%%/lib/slf4j-api-1.7.25.jar
|
||||
%%DATADIR%%/lib/slf4j-log4j12-1.7.25.jar
|
||||
%%DATADIR%%/lib/snakeyaml-1.23.jar
|
||||
%%DATADIR%%/lib/snakeyaml-1.24.jar
|
||||
%%DATADIR%%/lib/spellchecker.jar
|
||||
%%DATADIR%%/lib/sshj-0.27.0.jar
|
||||
%%DATADIR%%/lib/stax-api-1.0.1.jar
|
||||
%%DATADIR%%/lib/stax-ex-1.8.jar
|
||||
%%DATADIR%%/lib/streamex-0.6.7.jar
|
||||
%%DATADIR%%/lib/streamex-0.6.8.jar
|
||||
%%DATADIR%%/lib/swingx-core-1.6.2-2.jar
|
||||
%%DATADIR%%/lib/trang-core.jar
|
||||
%%DATADIR%%/lib/trilead-ssh2-build-217-jenkins-11.jar
|
||||
%%DATADIR%%/lib/trilead-ssh2-build-217-jenkins-14.jar
|
||||
%%DATADIR%%/lib/trove4j.jar
|
||||
%%DATADIR%%/lib/txw2-2.3.1.jar
|
||||
%%DATADIR%%/lib/util.jar
|
||||
|
|
@ -155,9 +191,8 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/lib/xmlpull-1.1.3.1.jar
|
||||
%%DATADIR%%/lib/xmlrpc-2.0.1.jar
|
||||
%%DATADIR%%/lib/xpp3_min-1.1.4c.jar
|
||||
%%DATADIR%%/lib/xstream-1.4.10.jar
|
||||
%%DATADIR%%/lib/xstream-1.4.11.1.jar
|
||||
%%DATADIR%%/lib/xz-1.8.jar
|
||||
%%DATADIR%%/lib/yjp-controller-api-redist.jar
|
||||
%%DATADIR%%/license/XStream_license.txt
|
||||
%%DATADIR%%/license/ant_license.txt
|
||||
%%DATADIR%%/license/asm_license.txt
|
||||
|
|
@ -194,6 +229,7 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/CSS/lib/css.jar
|
||||
%%DATADIR%%/plugins/CSS/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/DatabaseTools/lib/database-impl.jar
|
||||
%%DATADIR%%/plugins/DatabaseTools/lib/database-minicat.jar
|
||||
%%DATADIR%%/plugins/DatabaseTools/lib/database-openapi.jar
|
||||
%%DATADIR%%/plugins/DatabaseTools/lib/dekaf-single-2.0.0.390.jar
|
||||
%%DATADIR%%/plugins/DatabaseTools/lib/jdbc-console.jar
|
||||
|
|
@ -208,18 +244,17 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/Docker/lib/Docker.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/commons-cli-1.2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/commons-io-2.3.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/jackson-dataformat-yaml-2.7.3.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/jackson-dataformat-yaml-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/FastInfoset-1.2.15.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/annotations-3.0.1u2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/aopalliance-repackaged-2.5.0-b42.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/bcpkix-jdk15on-1.60.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/bcprov-jdk15on-1.60.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-cli-1.2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-codec-1.11.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-compress-1.17.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-compress-1.18.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-io-2.6.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/commons-lang-2.6.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-3.1.0-rc-4.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/docker-java-3.1.2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/guava-19.0.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/hk2-api-2.5.0-b42.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/hk2-locator-2.5.0-b42.jar
|
||||
|
|
@ -228,11 +263,11 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/Docker/lib/rt/httpcore-4.4.10.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/istack-commons-runtime-3.0.7.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-annotations-2.9.0.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-core-2.9.5.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-databind-2.9.5.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-base-2.9.5.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-json-provider-2.9.5.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-module-jaxb-annotations-2.9.5.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-core-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-databind-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-base-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-jaxrs-json-provider-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jackson-module-jaxb-annotations-2.9.8.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/javassist-3.22.0-CR2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/javax.annotation-api-1.2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/javax.inject-1.jar
|
||||
|
|
@ -241,19 +276,30 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/Docker/lib/rt/javax.ws.rs-api-2.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jaxb-api-2.3.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jaxb-runtime-2.3.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jcip-annotations-1.0.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jcl-over-slf4j-1.7.21.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jcl-over-slf4j-1.7.25.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jersey-apache-connector-2.27.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jersey-client-2.27.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jersey-common-2.27.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jersey-hk2-2.27.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/jsr305-3.0.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/junixsocket-common-2.0.4.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/junixsocket-native-common-2.0.4.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/junixsocket-common-2.2.0.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/junixsocket-native-common-2.2.0.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-1.3.31.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-common-1.3.31.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-jdk7-1.3.31.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/kotlin-stdlib-jdk8-1.3.31.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/log4j-1.2.17.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/native-lib-loader-2.0.2.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-all-4.1.27.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-epoll-4.1.27.Final-linux-x86_64.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-buffer-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-codec-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-codec-http-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-codec-socks-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-common-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-handler-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-handler-proxy-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-resolver-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-epoll-4.1.31.Final-linux-x86_64.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-kqueue-4.1.31.Final-osx-x86_64.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/netty-transport-native-unix-common-4.1.31.Final.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/osgi-resource-locator-1.0.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/slf4j-api-1.7.25.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/slf4j-log4j12-1.7.25.jar
|
||||
|
|
@ -265,8 +311,10 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-8.0.22.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/tomcat-websocket-api-8.0.22.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/rt/txw2-2.3.1.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/snakeyaml-1.23.jar
|
||||
%%DATADIR%%/plugins/Docker/lib/specifics/dockerSpecifics.jar
|
||||
%%DATADIR%%/plugins/IntelliLang/lib/IntelliLang.jar
|
||||
%%DATADIR%%/plugins/IntelliLang/lib/intellilang-jps-plugin.jar
|
||||
%%DATADIR%%/plugins/JSIntentionPowerPack/lib/JSIntentionPowerPack.jar
|
||||
%%DATADIR%%/plugins/JSIntentionPowerPack/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/JavaScriptDebugger/lib/ChromeConnector.jar
|
||||
|
|
@ -279,7 +327,7 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-stringifier.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-tree.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/base-test-reporter/intellij-util.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-jasmine.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-jasmine-reporter.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-reporter.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-stdin-fix.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/helpers/jest-intellij/lib/jest-intellij-test-results-processor.js
|
||||
|
|
@ -320,6 +368,7 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/JavaScriptLanguage/index/sdk-stubs.version
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/browser.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/cancellationToken.js
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/es2019decorators.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/flow.utilities.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.dom.d.ts
|
||||
|
|
@ -353,8 +402,13 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.array.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.full.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.object.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.string.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2019.symbol.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.full.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.string.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es2020.symbol.wellknown.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es5.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es6.d.ts
|
||||
%%DATADIR%%/plugins/JavaScriptLanguage/jsLanguageServicesImpl/external/lib.es7.d.ts
|
||||
|
|
@ -432,6 +486,7 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/fileWatcher/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/git4idea/lib/git4idea-rt.jar
|
||||
%%DATADIR%%/plugins/git4idea/lib/git4idea.jar
|
||||
%%DATADIR%%/plugins/git4idea/lib/remote-servers-git.jar
|
||||
%%DATADIR%%/plugins/git4idea/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/github/lib/github.jar
|
||||
%%DATADIR%%/plugins/github/lib/resources_en.jar
|
||||
|
|
@ -481,17 +536,356 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/markdown/lib/markdown.jar
|
||||
%%DATADIR%%/plugins/markdown/lib/owasp-java-html-sanitizer.jar
|
||||
%%DATADIR%%/plugins/markdown/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/performanceTesting/lib/async-profiler-1.5-1.jar
|
||||
%%DATADIR%%/plugins/performanceTesting/lib/performanceTesting.jar
|
||||
%%DATADIR%%/plugins/performanceTesting/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/performanceTesting/lib/yjp-controller-api-redist.jar
|
||||
%%DATADIR%%/plugins/remote-run/lib/remote-run.jar
|
||||
%%DATADIR%%/plugins/remote-run/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/restClient/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/restClient/lib/restClient.jar
|
||||
%%DATADIR%%/plugins/sh/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/sh/lib/sh.jar
|
||||
%%DATADIR%%/plugins/terminal/.zshrc
|
||||
%%DATADIR%%/plugins/terminal/fish/config.fish
|
||||
%%DATADIR%%/plugins/terminal/jediterm-bash.in
|
||||
%%DATADIR%%/plugins/terminal/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/terminal/lib/terminal.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/jcodings-1.0.30.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/joni-2.1.18.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/snippets/batchfile.snippets.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/bat/syntaxes/batchfile.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/clojure/syntaxes/clojure.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/snippets/coffeescript.snippets.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/coffeescript/syntaxes/coffeescript.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/c.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/snippets/cpp.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/c.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/cpp.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/cpp/syntaxes/platform.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/snippets/csharp.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/csharp/syntaxes/csharp.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscode/launch.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/css/syntaxes/css.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/docker/syntaxes/docker.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/snippets/fsharp.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/fsharp/syntaxes/fsharp.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/README.md
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/extension.webpack.config.js
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/diff.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-commit.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/git-rebase.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/languages/ignore.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/api1.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/extension.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/api/git.d.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-empty.sh
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass-main.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.sh
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/askpass.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/autofetch.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/commands.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/contentProvider.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorationProvider.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/decorators.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/encoding.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/git.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/main.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/model.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/protocolHandler.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/repository.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/staging.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/statusbar.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/test/git.test.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/typings/jschardet.d.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/typings/refs.d.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/uri.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/src/util.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/diff.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-commit.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/git-rebase.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/syntaxes/ignore.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/tsconfig.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/git/yarn.lock
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/go/syntaxes/go.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/snippets/groovy.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/groovy/syntaxes/groovy.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/handlebars/syntaxes/Handlebars.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/hlsl/syntaxes/hlsl.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html-derivative.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/html/syntaxes/html.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/ini.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/properties.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ini/syntaxes/ini.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/snippets/java.snippets.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/java/syntaxes/java.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/javascript-language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/schemas/jsconfig.schema.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/snippets/javascript.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScript.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/JavaScriptReact.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Readme.md
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/syntaxes/Regular Expressions (JavaScript).tmLanguage
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/javascript/tags-language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSON.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/json/syntaxes/JSONC.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/less/syntaxes/less.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/log/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/log/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/log/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/log/syntaxes/log.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/lua/syntaxes/lua.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/make/syntaxes/make.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/snippets/markdown.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/markdown-basics/syntaxes/markdown.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/cpp.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c++.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/objective-c/syntaxes/objective-c.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/perl6.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/perl/syntaxes/perl6.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/launch.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscode/tasks.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/snippets/php.snippets.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/html.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/php/syntaxes/php.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/snippets/powershell.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/powershell/syntaxes/powershell.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/pug/syntaxes/pug.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/launch.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscode/tasks.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/pythonMain.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/src/typings/ref.d.ts
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicPython.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/syntaxes/MagicRegExp.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/python/tsconfig.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/r/syntaxes/r.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/razor/syntaxes/cshtml.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/ruby/syntaxes/ruby.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/rust/syntaxes/rust.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/sassdoc.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/scss/syntaxes/scss.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shaderlab/syntaxes/shaderlab.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/shellscript/syntaxes/shell-unix-bash.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/sql/syntaxes/sql.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/LICENSE.md
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/snippets/swift.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/swift/syntaxes/swift.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/schemas/tsconfig.schema.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/snippets/typescript.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/Readme.md
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScript.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/TypeScriptReact.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/typescript-basics/syntaxes/jsdoc.injection.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/snippets/vb.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/vb/syntaxes/asp-vb-net.tmlanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xml.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/syntaxes/xsl.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xml.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/xml/xsl.language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/.vscodeignore
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/cgmanifest.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/language-configuration.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/package.nls.json
|
||||
%%DATADIR%%/plugins/textmate/lib/bundles/yaml/syntaxes/yaml.tmLanguage.json
|
||||
%%DATADIR%%/plugins/textmate/lib/jcodings-1.0.44.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/joni-2.1.29.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/textmate.jar
|
||||
%%DATADIR%%/plugins/textmate/lib/themes/All Hallow's Eve.tmTheme
|
||||
|
|
@ -516,9 +910,6 @@ share/applications/goland.desktop
|
|||
%%DATADIR%%/plugins/webDeployment/lib/commons-vfs2-2.2.1.5.jar
|
||||
%%DATADIR%%/plugins/webDeployment/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/webDeployment/lib/webDeployment.jar
|
||||
%%DATADIR%%/plugins/xpath/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/xpath/lib/rt/xslt-rt.jar
|
||||
%%DATADIR%%/plugins/xpath/lib/xpath.jar
|
||||
%%DATADIR%%/plugins/yaml/lib/resources_en.jar
|
||||
%%DATADIR%%/plugins/yaml/lib/yaml.jar
|
||||
%%DATADIR%%/product-info.json
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= llvm
|
||||
DISTVERSION= 9.0.0rc2
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 9.0.0rc3
|
||||
PORTREVISION= 0
|
||||
CATEGORIES= devel lang
|
||||
.if ${DISTVERSION:M*rc*}
|
||||
MASTER_SITES= http://prereleases.llvm.org/${LLVM_RELEASE}/${RCDIR}
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
TIMESTAMP = 1565895069
|
||||
SHA256 (llvm-9.0.0rc2.src.tar.xz) = 0258418317820df7335d3687a44b61a6bd313992f1600a504146ce3f53298628
|
||||
SIZE (llvm-9.0.0rc2.src.tar.xz) = 32982396
|
||||
SHA256 (cfe-9.0.0rc2.src.tar.xz) = 1e1374b9f9edffbf9200410cf9ff9b907cfd48f34a727ebcce6b8f33c67dbb4b
|
||||
SIZE (cfe-9.0.0rc2.src.tar.xz) = 13528208
|
||||
SHA256 (compiler-rt-9.0.0rc2.src.tar.xz) = 8b002ce280134e60599d4879796f10981aff41ef592cf434f1e8f1e2ea72cd02
|
||||
SIZE (compiler-rt-9.0.0rc2.src.tar.xz) = 1990896
|
||||
SHA256 (clang-tools-extra-9.0.0rc2.src.tar.xz) = 21c6aabdde3e8a8808c1eb116f0d820c647dc475757a83c5387f6514bdcefdc0
|
||||
SIZE (clang-tools-extra-9.0.0rc2.src.tar.xz) = 2182628
|
||||
SHA256 (lld-9.0.0rc2.src.tar.xz) = e91ac89b8ac2bca0c52cece572f089a0760053d7a6630cab03cd9e9807d4f8d7
|
||||
SIZE (lld-9.0.0rc2.src.tar.xz) = 1098060
|
||||
SHA256 (lldb-9.0.0rc2.src.tar.xz) = ce27fd03183734c4d8b488a5a01a1602cc03bcc95cd793ce74b95a39b69f2ad1
|
||||
SIZE (lldb-9.0.0rc2.src.tar.xz) = 9848536
|
||||
SHA256 (openmp-9.0.0rc2.src.tar.xz) = 0f5be5211f9e7de6855b18c3e5f80b319ddd053ed525d219a737f62c0a65bcf1
|
||||
SIZE (openmp-9.0.0rc2.src.tar.xz) = 938932
|
||||
TIMESTAMP = 1567190923
|
||||
SHA256 (llvm-9.0.0rc3.src.tar.xz) = df21bfab2dea6f5951276a03bb896f7a76409c669ab1bd9d4755ae673f184faa
|
||||
SIZE (llvm-9.0.0rc3.src.tar.xz) = 32986428
|
||||
SHA256 (cfe-9.0.0rc3.src.tar.xz) = f584e72919bed3e4bcd4783f14aa736ab80d3ea1708835f54ff085d7fb85329d
|
||||
SIZE (cfe-9.0.0rc3.src.tar.xz) = 13531816
|
||||
SHA256 (compiler-rt-9.0.0rc3.src.tar.xz) = ce32699768c0c6abcc2de804165bcba949321519fca30e6074d64c379ef9eef5
|
||||
SIZE (compiler-rt-9.0.0rc3.src.tar.xz) = 1990992
|
||||
SHA256 (clang-tools-extra-9.0.0rc3.src.tar.xz) = d05899fe6a38530397743acfa8d6e0bda46a59bd0d7fd18ed21a31f58735246b
|
||||
SIZE (clang-tools-extra-9.0.0rc3.src.tar.xz) = 2184004
|
||||
SHA256 (lld-9.0.0rc3.src.tar.xz) = dfcc551533c5d3a42fd386fdcbee1c56aa4c6a0d30805ea8c27bb6f892c7b23c
|
||||
SIZE (lld-9.0.0rc3.src.tar.xz) = 1098952
|
||||
SHA256 (lldb-9.0.0rc3.src.tar.xz) = 0a0e5fbc97f0d51089c14d35b6074731d3c685b5952239158306c7c18d0ea0f7
|
||||
SIZE (lldb-9.0.0rc3.src.tar.xz) = 9848056
|
||||
SHA256 (openmp-9.0.0rc3.src.tar.xz) = 70f03a8db41f245c4591a83d01e5f4b3dcf8322c728b85c5b8b78c98ab1a5f97
|
||||
SIZE (openmp-9.0.0rc3.src.tar.xz) = 938984
|
||||
|
|
|
|||
|
|
@ -2,10 +2,13 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= meson
|
||||
PORTVERSION= 0.51.0
|
||||
PORTVERSION= 0.51.2
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
|
||||
|
||||
PATCH_SITES= https://github.com/mesonbuild/${PORTNAME}/commit/
|
||||
PATCHFILES+= efea48788ab2.patch:-p1
|
||||
|
||||
MAINTAINER= gnome@FreeBSD.org
|
||||
COMMENT= High performance build system
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
TIMESTAMP = 1561108166
|
||||
SHA256 (meson-0.51.0.tar.gz) = 2f75fdf6d586d3595c03a07afcd0eaae11f68dd33fea5906a434d22a409ed63f
|
||||
SIZE (meson-0.51.0.tar.gz) = 1449724
|
||||
TIMESTAMP = 1566836953
|
||||
SHA256 (meson-0.51.2.tar.gz) = 23688f0fc90be623d98e80e1defeea92bbb7103bf9336a5f5b9865d36e892d76
|
||||
SIZE (meson-0.51.2.tar.gz) = 1453251
|
||||
SHA256 (efea48788ab2.patch) = eee556fb0cd6cbba5756bbfb508412081743cd813dd10d1b9cbc419769281d39
|
||||
SIZE (efea48788ab2.patch) = 953
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ COMMENT= Continuous multidirectional synchronization for remote development
|
|||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
USES= go
|
||||
USES= go:modules
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= havoc-io
|
||||
GH_TUPLE= \
|
||||
|
|
@ -37,10 +37,9 @@ GH_TUPLE= \
|
|||
spf13:cobra:v0.0.3:spf13_cobra/vendor/github.com/spf13/cobra \
|
||||
spf13:pflag:v1.0.3:spf13_pflag/vendor/github.com/spf13/pflag
|
||||
|
||||
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
||||
GO_TARGET= ${GO_PKGNAME}/cmd/mutagen \
|
||||
${GO_PKGNAME}/cmd/mutagen-agent \
|
||||
${GO_PKGNAME}/pkg/daemon/locktest
|
||||
GO_TARGET= ./cmd/mutagen \
|
||||
./cmd/mutagen-agent \
|
||||
./pkg/daemon/locktest
|
||||
|
||||
PLIST_FILES= bin/mutagen \
|
||||
bin/mutagen-agent \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= nsgenbind
|
||||
PORTVERSION= 0.6
|
||||
PORTVERSION= 0.7
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://download.netsurf-browser.org/libs/releases/
|
||||
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1536018242
|
||||
SHA256 (nsgenbind-0.6-src.tar.gz) = 92f75414635b857abd9a4e2c119a517e797d247df5db30284e3dbaf273582c6c
|
||||
SIZE (nsgenbind-0.6-src.tar.gz) = 106862
|
||||
TIMESTAMP = 1564417404
|
||||
SHA256 (nsgenbind-0.7-src.tar.gz) = 18632ea90fc98984771b4996a2f4fc06bd5f1bab33bf0379e4523b45fcacf466
|
||||
SIZE (nsgenbind-0.7-src.tar.gz) = 117110
|
||||
|
|
|
|||
|
|
@ -1,37 +0,0 @@
|
|||
--- src/Makefile.orig 2017-10-28 02:13:25 UTC
|
||||
+++ src/Makefile
|
||||
@@ -1,17 +1,17 @@
|
||||
-CFLAGS := $(CFLAGS) -I$(BUILDDIR) -Isrc/ -g -DYYENABLE_NLS=0
|
||||
+CFLAGS := $(CFLAGS) -Isrc/ -g -DYYENABLE_NLS=0
|
||||
|
||||
# Sources in this directory
|
||||
DIR_SOURCES := nsgenbind.c utils.c webidl-ast.c nsgenbind-ast.c ir.c \
|
||||
duk-libdom.c duk-libdom-interface.c duk-libdom-dictionary.c \
|
||||
duk-libdom-common.c duk-libdom-generated.c
|
||||
|
||||
-SOURCES := $(SOURCES) $(BUILDDIR)/nsgenbind-parser.c $(BUILDDIR)/nsgenbind-lexer.c $(BUILDDIR)/webidl-parser.c $(BUILDDIR)/webidl-lexer.c
|
||||
+SOURCES := $(SOURCES) src/nsgenbind-parser.c src/nsgenbind-lexer.c src/webidl-parser.c src/webidl-lexer.c
|
||||
|
||||
-$(BUILDDIR)/%-lexer.c $(BUILDDIR)/%-lexer.h: src/%-lexer.l
|
||||
+src/%-lexer.c src/%-lexer.h: src/%-lexer.l
|
||||
$(VQ)$(ECHO) " FLEX: $<"
|
||||
- $(Q)$(FLEX) --outfile=$(BUILDDIR)/$(*F)-lexer.c --header-file=$(BUILDDIR)/$(*F)-lexer.h $<
|
||||
+ $(Q)$(FLEX) --outfile=src/$(*F)-lexer.c --header-file=src/$(*F)-lexer.h $<
|
||||
|
||||
-$(BUILDDIR)/%-lexer.c: $(BUILDDIR)/%-parser.h
|
||||
+src/%-lexer.c: src/%-parser.h
|
||||
|
||||
# Bison 3.0 and later require api.prefix in curly braces
|
||||
# Bison 2.6 and later require api.prefix
|
||||
@@ -33,9 +33,9 @@ else
|
||||
endif
|
||||
endif
|
||||
|
||||
-$(BUILDDIR)/%-parser.c $(BUILDDIR)/%-parser.h: src/%-parser.y
|
||||
+src/%-parser.c src/%-parser.h: src/%-parser.y
|
||||
$(VQ)$(ECHO) " BISON: $<"
|
||||
- $(Q)$(BISON) -d -t $(BISON_DEFINES) --report=all --output=$(BUILDDIR)/$(*F)-parser.c --defines=$(BUILDDIR)/$(*F)-parser.h $<
|
||||
+ $(Q)$(BISON) -d -t $(BISON_DEFINES) --report=all --output=src/$(*F)-parser.c --defines=src/$(*F)-parser.h $<
|
||||
|
||||
# Grab the core makefile
|
||||
include $(NSBUILD)/Makefile.subdir
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Test-UNIXSock
|
||||
PORTVERSION= 0.2
|
||||
PORTVERSION= 0.4
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
PKGNAMEPREFIX= p5-
|
||||
|
|
@ -16,6 +16,7 @@ BUILD_DEPENDS= p5-Module-Build-Tiny>=0.035:devel/p5-Module-Build-Tiny
|
|||
RUN_DEPENDS= p5-Test-TCP>=0:devel/p5-Test-TCP \
|
||||
p5-Test-SharedFork>=0.29:devel/p5-Test-SharedFork
|
||||
|
||||
NO_ARCH= yes
|
||||
USES= perl5
|
||||
USE_PERL5= modbuildtiny
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1529227845
|
||||
SHA256 (Test-UNIXSock-0.2.tar.gz) = f604e9b596542eab319366127f272c57c63c310099209c447b4743d1352b69a2
|
||||
SIZE (Test-UNIXSock-0.2.tar.gz) = 11916
|
||||
TIMESTAMP = 1563683210
|
||||
SHA256 (Test-UNIXSock-0.4.tar.gz) = 3730b4cc103412cfbf6fe247bdbc300be97de309cc9b1c5cbd573713b8688f3f
|
||||
SIZE (Test-UNIXSock-0.4.tar.gz) = 12060
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= Time-Moment-Role-TimeZone
|
||||
PORTVERSION= 0.002
|
||||
PORTVERSION= 0.003
|
||||
CATEGORIES= devel perl5
|
||||
MASTER_SITES= CPAN
|
||||
MASTER_SITE_SUBDIR=CPAN:DBOOK
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1530016527
|
||||
SHA256 (Time-Moment-Role-TimeZone-0.002.tar.gz) = e5fae1d549cc0e5d6bafa7d8c9a3c41f9c137290cf9c3c097a7ca5760b1b6078
|
||||
SIZE (Time-Moment-Role-TimeZone-0.002.tar.gz) = 16564
|
||||
TIMESTAMP = 1563683272
|
||||
SHA256 (Time-Moment-Role-TimeZone-0.003.tar.gz) = f8507a115f224f65eb97276558eae43b3633fc1351498e86ae7f5c10e31db290
|
||||
SIZE (Time-Moment-Role-TimeZone-0.003.tar.gz) = 16689
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sam-translator
|
||||
PORTVERSION= 1.13.0
|
||||
PORTVERSION= 1.14.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564455307
|
||||
SHA256 (aws-sam-translator-1.13.0.tar.gz) = 6966b45dc444de3ced673164889e8cf0ac001c947cfac6030527cd38e2e40071
|
||||
SIZE (aws-sam-translator-1.13.0.tar.gz) = 102991
|
||||
TIMESTAMP = 1567393751
|
||||
SHA256 (aws-sam-translator-1.14.0.tar.gz) = 3c615bff465fcf6a7990b9f84d002d55c75cd3e52d98e727d24959756ab0f0b1
|
||||
SIZE (aws-sam-translator-1.14.0.tar.gz) = 105696
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cfn-lint
|
||||
PORTVERSION= 0.22.4
|
||||
PORTVERSION= 0.23.5
|
||||
CATEGORIES= devel python textproc
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
@ -14,8 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
|
|||
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}six>=1.11:devel/py-six@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}requests>=2.15.0:www/py-requests@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.12.0:devel/py-aws-sam-translator@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}aws-sam-translator>=1.13.0:devel/py-aws-sam-translator@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}jsonpatch>0:devel/py-jsonpatch@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}jsonschema>=3.0:devel/py-jsonschema@${PY_FLAVOR}
|
||||
py27_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pathlib2>=2.3.0:devel/py-pathlib2@${PY_FLAVOR}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1564456232
|
||||
SHA256 (cfn-lint-0.22.4.tar.gz) = 6eec5af97bba0c193e551424116aef99c8b687c21627ca662dc8ba4dd011bb7b
|
||||
SIZE (cfn-lint-0.22.4.tar.gz) = 2277868
|
||||
TIMESTAMP = 1567394152
|
||||
SHA256 (cfn-lint-0.23.5.tar.gz) = c93c05c382f727c87ff1c6a352bb11f24ad0081ab8f70941710bbf0d1ebaebac
|
||||
SIZE (cfn-lint-0.23.5.tar.gz) = 2534051
|
||||
|
|
|
|||
33
devel/py-libioc/Makefile
Normal file
33
devel/py-libioc/Makefile
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= libioc
|
||||
PORTVERSION= 0.8.2
|
||||
CATEGORIES= devel python
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= stefan@gronke.net
|
||||
COMMENT= Library to manage jails with iocage and iocell
|
||||
|
||||
LICENSE= BSD2CLAUSE
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pip>0:devel/py-pip@${PY_FLAVOR}
|
||||
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}GitPython>0:devel/py-gitpython@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}libzfs>0:devel/py-libzfs@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}sysctl>0:devel/py-sysctl@${PY_FLAVOR} \
|
||||
${PYTHON_PKGNAMEPREFIX}ucl>0:textproc/py-ucl@${PY_FLAVOR} \
|
||||
ca_root_nss>0:security/ca_root_nss \
|
||||
rsync:net/rsync
|
||||
|
||||
USES= python:3.6+
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= bsdci
|
||||
GH_PROJECT= libioc
|
||||
|
||||
NO_ARCH= yes
|
||||
USE_PYTHON= autoplist distutils py3kplist
|
||||
|
||||
PLIST_SUB+= PORTVERSION=${PORTVERSION}
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/py-libioc/distinfo
Normal file
3
devel/py-libioc/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1565256016
|
||||
SHA256 (bsdci-libioc-0.8.2_GH0.tar.gz) = d3cfbae1bb20763b4a5e3fa5ab8d50ee95bbe10eb34305e3958b8906c1d5e442
|
||||
SIZE (bsdci-libioc-0.8.2_GH0.tar.gz) = 147829
|
||||
3
devel/py-libioc/pkg-descr
Normal file
3
devel/py-libioc/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Python 3 module to access to ioc{age,ell} jails and features
|
||||
|
||||
WWW: https://github.com/bsdci/libioc
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= python-gitlab
|
||||
PORTVERSION= 1.9.0
|
||||
PORTVERSION= 1.11.0
|
||||
CATEGORIES= devel python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1561936291
|
||||
SHA256 (python-gitlab-1.9.0.tar.gz) = 1d622ccc9cbfe24d71b40db063c7ab9509bc12ee3a83aa03379b5542f53311dc
|
||||
SIZE (python-gitlab-1.9.0.tar.gz) = 116460
|
||||
TIMESTAMP = 1567351280
|
||||
SHA256 (python-gitlab-1.11.0.tar.gz) = fe356d084927477b7bf695191287474919db8cb6eb0d7832a4afd9cc8f7096c5
|
||||
SIZE (python-gitlab-1.11.0.tar.gz) = 118629
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= robotframework-pabot
|
||||
PORTVERSION= 0.72
|
||||
PORTVERSION= 0.86
|
||||
CATEGORIES= devel www python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1561800187
|
||||
SHA256 (robotframework-pabot-0.72.tar.gz) = 7db9f899fc40e20b4eaf02c46e1527084c821319555866dacfce94be08c228ea
|
||||
SIZE (robotframework-pabot-0.72.tar.gz) = 22535
|
||||
TIMESTAMP = 1567419323
|
||||
SHA256 (robotframework-pabot-0.86.tar.gz) = 80734cecaf7b0c4f04896111b3bf67dfc53bed7839e2dba2c4bf0e50bb124135
|
||||
SIZE (robotframework-pabot-0.86.tar.gz) = 23626
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-ecs
|
||||
PORTVERSION= 1.47.0
|
||||
PORTVERSION= 1.48.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1567362072
|
||||
SHA256 (rubygem/aws-sdk-ecs-1.47.0.gem) = 2af1eb4a604d5d8332ff554bc2e8348b98ef94fec01dc3e9ee66b4c002e27483
|
||||
SIZE (rubygem/aws-sdk-ecs-1.47.0.gem) = 125952
|
||||
TIMESTAMP = 1567451246
|
||||
SHA256 (rubygem/aws-sdk-ecs-1.48.0.gem) = 953dca1119c2586b2096af39887282c9465513b677f48707ab319f4c300fb532
|
||||
SIZE (rubygem/aws-sdk-ecs-1.48.0.gem) = 127488
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= aws-sdk-s3
|
||||
PORTVERSION= 1.47.0
|
||||
PORTVERSION= 1.48.0
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1567362089
|
||||
SHA256 (rubygem/aws-sdk-s3-1.47.0.gem) = 049c781c2a8b08a5a1b01038e904d7822a821023ffd094a449df57e5ffb33745
|
||||
SIZE (rubygem/aws-sdk-s3-1.47.0.gem) = 182272
|
||||
TIMESTAMP = 1567451248
|
||||
SHA256 (rubygem/aws-sdk-s3-1.48.0.gem) = 9c70cc1d5ef4baff2f72ec93e743066920988d4d31085ddb033faebd31173b92
|
||||
SIZE (rubygem/aws-sdk-s3-1.48.0.gem) = 182272
|
||||
|
|
|
|||
28
devel/rubygem-graphql-docs/Makefile
Normal file
28
devel/rubygem-graphql-docs/Makefile
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Created by: Matthias Fechner <mfechner@FreeBSD.org>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= graphql-docs
|
||||
PORTVERSION= 1.6.1
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
MAINTAINER= mfechner@FreeBSD.org
|
||||
COMMENT= Generate beautiful documentation from your GraphQL schema
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
RUN_DEPENDS= rubygem-commonmarker>=0.16<2.0:textproc/rubygem-commonmarker \
|
||||
rubygem-escape_utils>=1.2<2.0:textproc/rubygem-escape_utils \
|
||||
rubygem-extended-markdown-filter>=0.4<1.0:textproc/rubygem-extended-markdown-filter \
|
||||
rubygem-gemoji>=3.0<4.0:textproc/rubygem-gemoji \
|
||||
rubygem-graphql>=1.6<2.0:devel/rubygem-graphql \
|
||||
rubygem-html-pipeline>=2.9<3.0:textproc/rubygem-html-pipeline \
|
||||
rubygem-sass>=3.4<4.0:textproc/rubygem-sass
|
||||
|
||||
USES= gem
|
||||
USE_RUBY= yes
|
||||
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
||||
3
devel/rubygem-graphql-docs/distinfo
Normal file
3
devel/rubygem-graphql-docs/distinfo
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1567410552
|
||||
SHA256 (rubygem/graphql-docs-1.6.1.gem) = 9e35395835f4e609f9779f0361ab4d1d2981d4e7eaeb95461d226918ad79e7e6
|
||||
SIZE (rubygem/graphql-docs-1.6.1.gem) = 1374208
|
||||
3
devel/rubygem-graphql-docs/pkg-descr
Normal file
3
devel/rubygem-graphql-docs/pkg-descr
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Easily generate beautiful documentation from your GraphQL schema.
|
||||
|
||||
WWW: https://github.com/gjtorikian/graphql-docs
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= xdg
|
||||
PORTVERSION= 3.0.1
|
||||
PORTVERSION= 3.0.2
|
||||
CATEGORIES= devel rubygems
|
||||
MASTER_SITES= RG
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1562091968
|
||||
SHA256 (rubygem/xdg-3.0.1.gem) = bae3fedacad2fb1f09f6091c6d4c99916eb94005a67334e9563cce2fc4dd92d8
|
||||
SIZE (rubygem/xdg-3.0.1.gem) = 16384
|
||||
TIMESTAMP = 1567451250
|
||||
SHA256 (rubygem/xdg-3.0.2.gem) = b7ac29134ec2129340aa9df7a71acf5322e5a555891386c46e0362591c9c891c
|
||||
SIZE (rubygem/xdg-3.0.2.gem) = 16384
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= adsuck
|
||||
PORTVERSION= 2.3
|
||||
PORTREVISION= 7
|
||||
PORTREVISION= 8
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://opensource.conformal.com/snapshots/adsuck/ \
|
||||
http://philpep.org/pub/
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= autotrust
|
||||
PORTVERSION= 0.3.1
|
||||
PORTREVISION= 9
|
||||
PORTREVISION= 10
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://www.nlnetlabs.nl/downloads/autotrust/
|
||||
|
||||
|
|
|
|||
|
|
@ -41,13 +41,13 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools
|
|||
# XXX: remove tar:bz2
|
||||
USES= compiler:c11 cpe libedit pkgconfig ssl tar:bz2
|
||||
# ISC releases things like 9.8.0-P1, which our versioning doesn't like
|
||||
ISCVERSION= 9.15.3a0.2019.08.25
|
||||
ISCVERSION= 9.15.3a0.2019.08.30
|
||||
# XXX: Remove gitlab
|
||||
USE_GITLAB= yes
|
||||
GL_SITE= https://gitlab.isc.org
|
||||
GL_ACCOUNT= isc-projects
|
||||
GL_PROJECT= bind9
|
||||
GL_COMMIT= 417df8cfbc08c9c08cad29402f3827d43b77148a
|
||||
GL_COMMIT= 2367d61016304b19dadfadea70dffcab536ce4dc
|
||||
|
||||
CPE_VENDOR= isc
|
||||
CPE_VERSION= ${ISCVERSION:C/-.*//}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1566810353
|
||||
SHA256 (isc-projects-bind9-417df8cfbc08c9c08cad29402f3827d43b77148a_GL0.tar.gz) = 4afe9cca4dd429c1469930d7780483f28701d613675865cc56d97dcc30d5fa6f
|
||||
SIZE (isc-projects-bind9-417df8cfbc08c9c08cad29402f3827d43b77148a_GL0.tar.gz) = 6335775
|
||||
TIMESTAMP = 1567419416
|
||||
SHA256 (isc-projects-bind9-2367d61016304b19dadfadea70dffcab536ce4dc_GL0.tar.gz) = f5bbdd799f32ead9a46fda46ff78cbe17c6b6b05a8be725008f4d485f4317e6e
|
||||
SIZE (isc-projects-bind9-2367d61016304b19dadfadea70dffcab536ce4dc_GL0.tar.gz) = 6337913
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Add the override-cache-ttl feature.
|
||||
|
||||
--- bin/named/config.c.orig 2019-08-12 08:39:30 UTC
|
||||
--- bin/named/config.c.orig 2019-08-30 19:08:30 UTC
|
||||
+++ bin/named/config.c
|
||||
@@ -177,6 +177,7 @@ options {\n\
|
||||
notify-source *;\n\
|
||||
|
|
@ -10,9 +10,9 @@ Add the override-cache-ttl feature.
|
|||
provide-ixfr true;\n\
|
||||
qname-minimization relaxed;\n\
|
||||
query-source address *;\n\
|
||||
--- bin/named/server.c.orig 2019-08-12 08:39:30 UTC
|
||||
--- bin/named/server.c.orig 2019-08-30 19:08:30 UTC
|
||||
+++ bin/named/server.c
|
||||
@@ -4217,6 +4217,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
||||
@@ -4215,6 +4215,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl
|
||||
}
|
||||
|
||||
obj = NULL;
|
||||
|
|
@ -24,7 +24,7 @@ Add the override-cache-ttl feature.
|
|||
result = named_config_get(maps, "max-cache-ttl", &obj);
|
||||
INSIST(result == ISC_R_SUCCESS);
|
||||
view->maxcachettl = cfg_obj_asuint32(obj);
|
||||
--- lib/dns/include/dns/view.h.orig 2019-08-12 08:39:30 UTC
|
||||
--- lib/dns/include/dns/view.h.orig 2019-08-30 19:08:30 UTC
|
||||
+++ lib/dns/include/dns/view.h
|
||||
@@ -152,6 +152,7 @@ struct dns_view {
|
||||
bool requestnsid;
|
||||
|
|
@ -34,9 +34,9 @@ Add the override-cache-ttl feature.
|
|||
dns_ttl_t maxncachettl;
|
||||
dns_ttl_t mincachettl;
|
||||
dns_ttl_t minncachettl;
|
||||
--- lib/dns/resolver.c.orig 2019-08-12 08:39:30 UTC
|
||||
--- lib/dns/resolver.c.orig 2019-08-30 19:08:30 UTC
|
||||
+++ lib/dns/resolver.c
|
||||
@@ -6011,6 +6011,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
|
||||
@@ -6007,6 +6007,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
@ -49,7 +49,7 @@ Add the override-cache-ttl feature.
|
|||
* Enforce the configure maximum cache TTL.
|
||||
*/
|
||||
if (rdataset->ttl > res->view->maxcachettl) {
|
||||
--- lib/isccfg/namedconf.c.orig 2019-08-12 08:39:30 UTC
|
||||
--- lib/isccfg/namedconf.c.orig 2019-08-30 19:08:30 UTC
|
||||
+++ lib/isccfg/namedconf.c
|
||||
@@ -1907,6 +1907,7 @@ view_clauses[] = {
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= flamethrower
|
||||
PORTVERSION= 0.10
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= dns
|
||||
|
||||
MAINTAINER= pcarboni@gmail.com
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
PORTNAME= opendnssec
|
||||
PORTVERSION= 1.4.14
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://dist.opendnssec.org/source/
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= opendnssec
|
||||
PORTVERSION= 2.1.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= dns
|
||||
MASTER_SITES= http://dist.opendnssec.org/source/
|
||||
PKGNAMESUFFIX= 2
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
%%PYTHON_SITELIBDIR%%/_ldns.so.2.0.0
|
||||
%%PYTHON_SITELIBDIR%%/_ldns.so.2
|
||||
%%PYTHON_SITELIBDIR%%/_ldns.so.3.0.0
|
||||
%%PYTHON_SITELIBDIR%%/_ldns.so.3
|
||||
%%PYTHON_SITELIBDIR%%/ldns.py
|
||||
%%PYTHON_SITELIBDIR%%/_ldns.so
|
||||
%%PYTHON_SITELIBDIR%%/_ldns.a
|
||||
|
|
|
|||
|
|
@ -3,8 +3,7 @@
|
|||
|
||||
PORTNAME= focuswriter
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 1.7.2
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= 1.7.3
|
||||
CATEGORIES= editors
|
||||
|
||||
MAINTAINER= lightside@gmx.com
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1551985880
|
||||
SHA256 (gottcode-focuswriter-v1.7.2_GH0.tar.gz) = 0d6c2795445f2d124ba2e7e1a12db20a4a25731215935f228794ae79f0cc553c
|
||||
SIZE (gottcode-focuswriter-v1.7.2_GH0.tar.gz) = 10511183
|
||||
TIMESTAMP = 1565184664
|
||||
SHA256 (gottcode-focuswriter-v1.7.3_GH0.tar.gz) = 3fed103a3088e2f71ead38f19b46726aabd5d2b2f27ef6716ce1b05cb609fb3d
|
||||
SIZE (gottcode-focuswriter-v1.7.3_GH0.tar.gz) = 10511645
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= cannonball
|
||||
DISTVERSION= g20171201
|
||||
PORTREVISION= 1
|
||||
DISTVERSION= g20190819
|
||||
CATEGORIES= emulators games
|
||||
|
||||
MAINTAINER= santhosh.raju@gmail.com
|
||||
MAINTAINER= fox@FreeBSD.org
|
||||
COMMENT= Enhanced OutRun Engine
|
||||
|
||||
LICENSE= MAME-LICENSE
|
||||
|
|
@ -18,12 +17,13 @@ LIB_DEPENDS= libboost_program_options.so:devel/boost-libs
|
|||
USES= cmake:insource pkgconfig sdl
|
||||
USE_SDL= sdl
|
||||
|
||||
CMAKE_ARGS= ${WRKSRC}/cmake \
|
||||
CMAKE_ARGS+= ${WRKSRC}/cmake \
|
||||
-DBSD_PREFIX_PATH=${LOCALBASE} \
|
||||
-DTARGET=bsd
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= djyt
|
||||
GH_TAGNAME= 0c0814d
|
||||
GH_TAGNAME= 48d2c62
|
||||
|
||||
BUILD_WRKSRC= ${WRKSRC}/cmake
|
||||
CONFIGURE_WRKSRC= ${WRKSRC}/cmake
|
||||
|
|
@ -36,6 +36,7 @@ do-install:
|
|||
${INSTALL_DATA} ${WRKSRC}/cmake/res/tilemap.bin ${STAGEDIR}${DATADIR}/res/tilemap.bin
|
||||
${INSTALL_DATA} ${WRKSRC}/cmake/res/tilepatch.bin ${STAGEDIR}${DATADIR}/res/tilepatch.bin
|
||||
${INSTALL_DATA} ${WRKSRC}/cmake/config.xml ${STAGEDIR}${DATADIR}/conf/config.xml
|
||||
${INSTALL_MAN} ${WRKSRC}/docs/cannonball.6 ${STAGEDIR}${MAN1PREFIX}/man/man6
|
||||
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/cmake/cannonball ${STAGEDIR}${PREFIX}/libexec
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1560212844
|
||||
SHA256 (djyt-cannonball-g20171201-0c0814d_GH0.tar.gz) = 9f79a26df838ad64b96137ddf5e843f3e76e639c2112f5bfaae39296698019d5
|
||||
SIZE (djyt-cannonball-g20171201-0c0814d_GH0.tar.gz) = 277297
|
||||
TIMESTAMP = 1566223011
|
||||
SHA256 (djyt-cannonball-g20190819-48d2c62_GH0.tar.gz) = 08c37ee43d2417446af9095ae845db3ff1f747b62fb328120d27e6ff21575b2a
|
||||
SIZE (djyt-cannonball-g20190819-48d2c62_GH0.tar.gz) = 278238
|
||||
|
|
|
|||
|
|
@ -1,16 +0,0 @@
|
|||
Remove the boost directory reference.
|
||||
|
||||
Not required in ports, since boost libraries are directly installed
|
||||
in ${LOCALBASE}/include
|
||||
|
||||
--- cmake/CMakeLists.txt.orig 2019-06-10 03:25:18 UTC
|
||||
+++ cmake/CMakeLists.txt
|
||||
@@ -25,7 +25,7 @@ else()
|
||||
include(${DCMAKE})
|
||||
endif(TARGET)
|
||||
|
||||
-set(BOOST_INCLUDEDIR ${lib_base}/boost_1_54_0)
|
||||
+set(BOOST_INCLUDEDIR ${lib_base})
|
||||
find_package(Boost REQUIRED)
|
||||
|
||||
# Include
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
Create a cmake file for FreeBSD build.
|
||||
|
||||
--- cmake/bsd.cmake.orig 2019-06-10 03:23:23 UTC
|
||||
+++ cmake/bsd.cmake
|
||||
@@ -0,0 +1,20 @@
|
||||
+# Default CMake Setup. Used for FreeBSD Builds.
|
||||
+
|
||||
+set(lib_base /usr/local/include)
|
||||
+set(sdl_root ${lib_base}/SDL)
|
||||
+
|
||||
+include_directories("${sdl_root}")
|
||||
+
|
||||
+link_libraries(cannonball
|
||||
+ SDL
|
||||
+)
|
||||
+
|
||||
+# Linking
|
||||
+link_directories(
|
||||
+ "/usr/local/lib"
|
||||
+)
|
||||
+
|
||||
+# Location for Cannonball to create save files
|
||||
+# Used to auto-generate setup.hpp with various file paths
|
||||
+set(xml_directory ./)
|
||||
+set(sdl_flags "SDL_DOUBLEBUF | SDL_SWSURFACE")
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
bin/cannonball
|
||||
libexec/cannonball
|
||||
man/man6/cannonball.6.gz
|
||||
%%DATADIR%%/conf/config.xml
|
||||
%%DATADIR%%/res/tilemap.bin
|
||||
%%DATADIR%%/res/tilepatch.bin
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= citra
|
||||
PORTVERSION= s20190830
|
||||
PORTVERSION= s20190902
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= emulators
|
||||
|
||||
|
|
@ -23,7 +23,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= citra-emu
|
||||
GH_TAGNAME= 1e3f943f6
|
||||
GH_TAGNAME= 8acd2b966
|
||||
GH_TUPLE= citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \
|
||||
citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \
|
||||
MerryMage:dynarmic:r1-992-g4e6848d1:dynarmic/externals/dynarmic \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1567171451
|
||||
SHA256 (citra-emu-citra-s20190830-1e3f943f6_GH0.tar.gz) = 79d048683ab2ed8f8547092c5808fdd172c2e8d1df785bc233d401ca03fff610
|
||||
SIZE (citra-emu-citra-s20190830-1e3f943f6_GH0.tar.gz) = 5064011
|
||||
TIMESTAMP = 1567438685
|
||||
SHA256 (citra-emu-citra-s20190902-8acd2b966_GH0.tar.gz) = 5d4e7a17539654d207212ae061741db786980e513570c884049cb57b3788a071
|
||||
SIZE (citra-emu-citra-s20190902-8acd2b966_GH0.tar.gz) = 5062786
|
||||
SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3
|
||||
SIZE (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = 1762942
|
||||
SHA256 (citra-emu-ext-soundtouch-060181e_GH0.tar.gz) = a593ab188e4feaeef8376c27b554cc413986efc777c195e44c6d3d223de9a63c
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
PORTNAME= rpcs3
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.0.7-8620 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -g81a110f34
|
||||
DISTVERSION= 0.0.7-8640 # git rev-list --count HEAD
|
||||
DISTVERSIONSUFFIX= -g08c12f4c0
|
||||
CATEGORIES= emulators
|
||||
|
||||
MAINTAINER= jbeich@FreeBSD.org
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1567191745
|
||||
SHA256 (RPCS3-rpcs3-v0.0.7-8620-g81a110f34_GH0.tar.gz) = 30562597e12824954e03b7ad052c5a14d627f0bb4e58a27de910312626d073ed
|
||||
SIZE (RPCS3-rpcs3-v0.0.7-8620-g81a110f34_GH0.tar.gz) = 5554987
|
||||
TIMESTAMP = 1567469989
|
||||
SHA256 (RPCS3-rpcs3-v0.0.7-8640-g08c12f4c0_GH0.tar.gz) = f983c882af6fbd2078c8a3838e9ff3c42ec2f536f1fff3aa69066132a39084f5
|
||||
SIZE (RPCS3-rpcs3-v0.0.7-8640-g08c12f4c0_GH0.tar.gz) = 5556484
|
||||
SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 3120e0b701943f452760e45f9fc1ac50bab356ad4c807b4cac4598041c5ca1a5
|
||||
SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 105400
|
||||
SHA256 (RPCS3-llvm-b860b5e8f4ee_GH0.tar.gz) = c151972a0c8ceac568c24b61e63d2ecbdac0f125185e23fc2238e0a14048256e
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= wine
|
||||
DISTVERSION= 4.14
|
||||
DISTVERSION= 4.15
|
||||
PORTEPOCH= 1
|
||||
CATEGORIES= emulators
|
||||
MASTER_SITES= SF/${PORTNAME}/Source \
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
TIMESTAMP = 1566027937
|
||||
SHA256 (wine-4.14.tar.xz) = dad56e090c7466d10fdce72cb379b7acc366159fc8b46058f710645de65081e6
|
||||
SIZE (wine-4.14.tar.xz) = 22151304
|
||||
SHA256 (v4.14.tar.gz) = d25ca6fa48b0a2ed812b4d72c4939c52937c3df2d4518061e2c2899655865c73
|
||||
SIZE (v4.14.tar.gz) = 9910499
|
||||
TIMESTAMP = 1567254360
|
||||
SHA256 (wine-4.15.tar.xz) = f8797587a7ecc9205c7d269eabb4b5b56ed700d2fb2310883b92ff94da26d02d
|
||||
SIZE (wine-4.15.tar.xz) = 22196108
|
||||
SHA256 (v4.15.tar.gz) = 52c4e00e2643a43f09e88080bcd26e88032c9cb33b091ed88809c9cec1b73d5f
|
||||
SIZE (v4.15.tar.gz) = 9904734
|
||||
|
|
|
|||
|
|
@ -1,47 +0,0 @@
|
|||
--- UTC
|
||||
--- dlls/iphlpapi/ipstats.c.orig 2017-03-03 12:18:32.000000000 -0800
|
||||
+++ dlls/iphlpapi/ipstats.c 2017-03-21 00:43:27.101175000 -0700
|
||||
@@ -2235,6 +2235,15 @@
|
||||
pXIG->xig_len > sizeof (struct xinpgen);
|
||||
pXIG = (struct xinpgen *)((char *)pXIG + pXIG->xig_len))
|
||||
{
|
||||
+#if __FreeBSD_version >= 1200026
|
||||
+ struct xtcpcb *pTCPData;
|
||||
+ struct xinpcb *pINData;
|
||||
+ struct xsocket *pSockData;
|
||||
+
|
||||
+ pTCPData = (struct xtcpcb *)pXIG;
|
||||
+ pINData = &pTCPData->xt_inp;
|
||||
+ pSockData = &pINData->xi_socket;
|
||||
+#else
|
||||
struct tcpcb *pTCPData = NULL;
|
||||
struct inpcb *pINData;
|
||||
struct xsocket *pSockData;
|
||||
@@ -2242,6 +2251,7 @@
|
||||
pTCPData = &((struct xtcpcb *)pXIG)->xt_tp;
|
||||
pINData = &((struct xtcpcb *)pXIG)->xt_inp;
|
||||
pSockData = &((struct xtcpcb *)pXIG)->xt_socket;
|
||||
+#endif
|
||||
|
||||
/* Ignore sockets for other protocols */
|
||||
if (pSockData->xso_protocol != IPPROTO_TCP)
|
||||
@@ -2511,11 +2521,19 @@
|
||||
pXIG->xig_len > sizeof (struct xinpgen);
|
||||
pXIG = (struct xinpgen *)((char *)pXIG + pXIG->xig_len))
|
||||
{
|
||||
+#if __FreeBSD_version >= 1200026
|
||||
+ struct xinpcb *pINData;
|
||||
+ struct xsocket *pSockData;
|
||||
+
|
||||
+ pINData = (struct xinpcb *)pXIG;
|
||||
+ pSockData = &pINData->xi_socket;
|
||||
+#else
|
||||
struct inpcb *pINData;
|
||||
struct xsocket *pSockData;
|
||||
|
||||
pINData = &((struct xinpcb *)pXIG)->xi_inp;
|
||||
pSockData = &((struct xinpcb *)pXIG)->xi_socket;
|
||||
+#endif
|
||||
|
||||
/* Ignore sockets for other protocols */
|
||||
if (pSockData->xso_protocol != IPPROTO_UDP)
|
||||
|
|
@ -517,6 +517,8 @@ include/wine/windows/mfapi.h
|
|||
include/wine/windows/mferror.h
|
||||
include/wine/windows/mfidl.h
|
||||
include/wine/windows/mfidl.idl
|
||||
include/wine/windows/mfmediaengine.h
|
||||
include/wine/windows/mfmediaengine.idl
|
||||
include/wine/windows/mfobjects.h
|
||||
include/wine/windows/mfobjects.idl
|
||||
include/wine/windows/mfplay.h
|
||||
|
|
@ -1935,6 +1937,7 @@ lib/wine/fakedlls/hidclass.sys
|
|||
lib/wine/fakedlls/hlink.dll
|
||||
lib/wine/fakedlls/hnetcfg.dll
|
||||
lib/wine/fakedlls/hostname.exe
|
||||
lib/wine/fakedlls/http.sys
|
||||
lib/wine/fakedlls/httpapi.dll
|
||||
lib/wine/fakedlls/icacls.exe
|
||||
lib/wine/fakedlls/iccvid.dll
|
||||
|
|
@ -1989,6 +1992,7 @@ lib/wine/fakedlls/mciwave.dll
|
|||
lib/wine/fakedlls/mf.dll
|
||||
lib/wine/fakedlls/mf3216.dll
|
||||
lib/wine/fakedlls/mferror.dll
|
||||
lib/wine/fakedlls/mfmediaengine.dll
|
||||
lib/wine/fakedlls/mfplat.dll
|
||||
lib/wine/fakedlls/mfplay.dll
|
||||
lib/wine/fakedlls/mfreadwrite.dll
|
||||
|
|
@ -2161,6 +2165,7 @@ lib/wine/fakedlls/reg.exe
|
|||
lib/wine/fakedlls/regapi.dll
|
||||
lib/wine/fakedlls/regasm.exe
|
||||
lib/wine/fakedlls/regedit.exe
|
||||
lib/wine/fakedlls/regini.exe
|
||||
lib/wine/fakedlls/regsvcs.exe
|
||||
lib/wine/fakedlls/regsvr32.exe
|
||||
lib/wine/fakedlls/resutils.dll
|
||||
|
|
@ -2369,7 +2374,7 @@ lib/wine/fakedlls/wsock32.dll
|
|||
lib/wine/fakedlls/wtsapi32.dll
|
||||
lib/wine/fakedlls/wuapi.dll
|
||||
lib/wine/fakedlls/wuaueng.dll
|
||||
%%STAGING%%lib/wine/fakedlls/wuauserv.exe
|
||||
lib/wine/fakedlls/wuauserv.exe
|
||||
lib/wine/fakedlls/wusa.exe
|
||||
%%OPENAL%%lib/wine/fakedlls/x3daudio1_0.dll
|
||||
%%OPENAL%%lib/wine/fakedlls/x3daudio1_1.dll
|
||||
|
|
@ -2431,6 +2436,7 @@ lib/wine/hidclass.sys.so
|
|||
lib/wine/hlink.dll.so
|
||||
lib/wine/hnetcfg.dll.so
|
||||
lib/wine/hostname.exe.so
|
||||
lib/wine/http.sys.so
|
||||
lib/wine/httpapi.dll.so
|
||||
lib/wine/icacls.exe.so
|
||||
lib/wine/iccvid.dll.so
|
||||
|
|
@ -2550,6 +2556,7 @@ lib/wine/libloadperf.def
|
|||
lib/wine/liblz32.def
|
||||
lib/wine/libmapi32.def
|
||||
lib/wine/libmf.def
|
||||
lib/wine/libmfmediaengine.def
|
||||
lib/wine/libmfplat.def
|
||||
lib/wine/libmfreadwrite.def
|
||||
lib/wine/libmfuuid.a
|
||||
|
|
@ -2682,6 +2689,7 @@ lib/wine/mciwave.dll.so
|
|||
lib/wine/mf.dll.so
|
||||
lib/wine/mf3216.dll.so
|
||||
lib/wine/mferror.dll.so
|
||||
lib/wine/mfmediaengine.dll.so
|
||||
lib/wine/mfplat.dll.so
|
||||
lib/wine/mfplay.dll.so
|
||||
lib/wine/mfreadwrite.dll.so
|
||||
|
|
@ -2854,6 +2862,7 @@ lib/wine/reg.exe.so
|
|||
lib/wine/regapi.dll.so
|
||||
lib/wine/regasm.exe.so
|
||||
lib/wine/regedit.exe.so
|
||||
lib/wine/regini.exe.so
|
||||
lib/wine/regsvcs.exe.so
|
||||
lib/wine/regsvr32.exe.so
|
||||
lib/wine/resutils.dll.so
|
||||
|
|
@ -3062,7 +3071,7 @@ lib/wine/wsock32.dll.so
|
|||
lib/wine/wtsapi32.dll.so
|
||||
lib/wine/wuapi.dll.so
|
||||
lib/wine/wuaueng.dll.so
|
||||
%%STAGING%%lib/wine/wuauserv.exe.so
|
||||
lib/wine/wuauserv.exe.so
|
||||
lib/wine/wusa.exe.so
|
||||
%%OPENAL%%lib/wine/x3daudio1_0.dll.so
|
||||
%%OPENAL%%lib/wine/x3daudio1_1.dll.so
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= yuzu
|
||||
PORTVERSION= s20190830
|
||||
PORTVERSION= s20190901
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES= emulators
|
||||
|
||||
|
|
@ -28,7 +28,7 @@ BUILD_DEPENDS= boost-libs>=1.66:devel/boost-libs \
|
|||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= yuzu-emu
|
||||
GH_TAGNAME= 4d4f9cc10
|
||||
GH_TAGNAME= 50b5bb44a
|
||||
GH_TUPLE= yuzu-emu:unicorn:1.0.1-153-g73f45735:unicorn/externals/unicorn \
|
||||
DarkLordZach:mbedtls:a280e60:mbedtls/externals/mbedtls \
|
||||
KhronosGroup:SPIRV-Headers:2c51218:SPIRV_Headers/externals/sirit/externals/SPIRV-Headers \
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
TIMESTAMP = 1567188480
|
||||
SHA256 (yuzu-emu-yuzu-s20190830-4d4f9cc10_GH0.tar.gz) = a993b931b28983c277ad6be115a4074efbf37405e9de9de5b8d3c892415b1224
|
||||
SIZE (yuzu-emu-yuzu-s20190830-4d4f9cc10_GH0.tar.gz) = 2713859
|
||||
TIMESTAMP = 1567357985
|
||||
SHA256 (yuzu-emu-yuzu-s20190901-50b5bb44a_GH0.tar.gz) = dc94a90d66b2f8b797afbe4e20b3b5e063ba41c7b0412a9fab8ed059646668e8
|
||||
SIZE (yuzu-emu-yuzu-s20190901-50b5bb44a_GH0.tar.gz) = 2713991
|
||||
SHA256 (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 8f7b4d8eb998c2a4c146268d83b44fc22ca8d4d276f26d6af1071e51f4b5bd4f
|
||||
SIZE (yuzu-emu-unicorn-1.0.1-153-g73f45735_GH0.tar.gz) = 3296254
|
||||
SHA256 (DarkLordZach-mbedtls-a280e60_GH0.tar.gz) = 4fc6ddc256bc75b975fd5ad8bb7d31ff79c62d49daafb0108585c9ef80c6c5a7
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
|
||||
PORTNAME= pure-ftpd
|
||||
PORTVERSION= 1.0.49
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= ftp ipv6
|
||||
MASTER_SITES= https://github.com/jedisct1/pure-ftpd/releases/download/${PORTVERSION}/ \
|
||||
https://download.pureftpd.org/pub/pure-ftpd/releases/ \
|
||||
|
|
@ -35,8 +36,8 @@ LANGUAGE?= english
|
|||
|
||||
OPTIONS_DEFINE= ANONDELETE ANONRENAME ANONRESUME DOCS EXAMPLES LARGEFILE LDAP \
|
||||
MYSQL PAM PERUSERLIMITS PGSQL PRIVSEP SCRYPT SENDFILE \
|
||||
THROTTLING TLS UPLOADSCRIPT UTF8 VIRTUALCHROOT
|
||||
OPTIONS_DEFAULT=PAM PRIVSEP SENDFILE SCRYPT TLS UTF8 VIRTUALCHROOT
|
||||
THROTTLING TLS UPLOADSCRIPT VIRTUALCHROOT
|
||||
OPTIONS_DEFAULT=PAM PRIVSEP SENDFILE SCRYPT TLS VIRTUALCHROOT
|
||||
ANONDELETE_DESC= Allow anonymous user to delete files
|
||||
ANONRENAME_DESC= Allow anonymous user to rename files
|
||||
ANONRESUME_DESC= Allow anonymous user to resume file upload
|
||||
|
|
@ -51,7 +52,6 @@ SCRYPT_DESC= Hash passwords in PureDB with scrypt
|
|||
SENDFILE_DESC= Sendfile syscall
|
||||
THROTTLING_DESC= Bandwidth throttling
|
||||
UPLOADSCRIPT_DESC= Uploadscript daemon support
|
||||
UTF8_DESC= UTF-8 filenames
|
||||
VIRTUALCHROOT_DESC= Follow symlinks outside a chroot jail
|
||||
|
||||
ANONDELETE_CPPFLAGS= -DANON_CAN_DELETE
|
||||
|
|
@ -75,17 +75,8 @@ TLS_CPPFLAGS= -I${OPENSSLINC}
|
|||
TLS_LDFLAGS= -L${OPENSSLLIB}
|
||||
TLS_USES= ssl
|
||||
UPLOADSCRIPT_CONFIGURE_WITH= uploadscript
|
||||
UTF8_CONFIGURE_WITH= rfc2640
|
||||
UTF8_USES= iconv
|
||||
VIRTUALCHROOT_CONFIGURE_WITH= virtualchroot
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if empty(ICONV_LIB)
|
||||
CONFIGURE_ARGS+=ac_cv_lib_iconv_iconv_open=no \
|
||||
ac_cv_lib_iconv_libiconv_open=no
|
||||
.endif
|
||||
|
||||
pre-fetch:
|
||||
@${ECHO_MSG} "You can use the following additional options:"
|
||||
@${ECHO_MSG} ""
|
||||
|
|
@ -111,4 +102,4 @@ post-install-EXAMPLES-on:
|
|||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/pam.d/
|
||||
${INSTALL_DATA} ${FILESDIR}/pam.conf.5 ${STAGEDIR}${EXAMPLESDIR}/pam.d/pure-ftpd
|
||||
|
||||
.include <bsd.port.post.mk>
|
||||
.include <bsd.port.mk>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= dMagnetic
|
||||
PORTVERSION= 0.16
|
||||
PORTVERSION= 0.17
|
||||
CATEGORIES= games
|
||||
MASTER_SITES= http://www.dettus.net/dMagnetic/
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
TIMESTAMP = 1559222640
|
||||
SHA256 (dMagnetic_0.16.tar.gz) = 79d9a1f65d4a60f8b3f90c3d71b5a34a193d944b029b7e77abccdb4e7db40bac
|
||||
SIZE (dMagnetic_0.16.tar.gz) = 62190
|
||||
TIMESTAMP = 1559222641
|
||||
SHA256 (dMagnetic_0.17.tar.gz) = b1fd38e88563a7afd44df6846b2e08ab14f921efe2167b8e5b02433c189486d9
|
||||
SIZE (dMagnetic_0.17.tar.gz) = 62348
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue