*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2019-07-10 10:24:11 +02:00
parent a0f302ad27
commit 71cd6e31d9
230 changed files with 1282 additions and 994 deletions

View File

@ -63,6 +63,7 @@
SUBDIR += boodler
SUBDIR += bristol
SUBDIR += bs2b-lv2
SUBDIR += bsequencer-lv2
SUBDIR += cadence
SUBDIR += calf-lv2
SUBDIR += cam

View File

@ -0,0 +1,28 @@
# $FreeBSD$
PORTNAME= bsequencer
DISTVERSIONPREFIX= v
DISTVERSION= 0.3-16
DISTVERSIONSUFFIX= -g49dc212
CATEGORIES= audio
PKGNAMESUFFIX= -lv2
MAINTAINER= yuri@FreeBSD.org
COMMENT= Multi channel MIDI step sequencer LV2 plugin
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= lv2>0:audio/lv2
USES= gmake gnome pkgconfig
USE_GITHUB= yes
GH_ACCOUNT= sjaehn
GH_PROJECT= BSEQuencer
USE_GCC= any # see https://github.com/sjaehn/BSEQuencer/issues/7
USE_GNOME= cairo
USE_XORG= x11
MAKEFILE= makefile
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1562728215
SHA256 (sjaehn-BSEQuencer-v0.3-16-g49dc212_GH0.tar.gz) = 19dc26dd3d9cdeedb95ecfe212827a53d03033092d2ede03cc955ef3fdc93ba2
SIZE (sjaehn-BSEQuencer-v0.3-16-g49dc212_GH0.tar.gz) = 1140966

View File

@ -0,0 +1,15 @@
Multi channel MIDI step sequencer LV2 plugin.
Key features:
* Step sequencer with a selectable pattern matrix size (8x16, 16x16, 24x16,
or 32x16)
* Autoplay or host / MIDI controlled playing
* Handles multiple MIDI inputs signals (keys) in one sequencer instance
* Use musical scales and / or drumkits
* Scale editor
* Controls for playing direction, jump, skip, and stop options placeable to any
position within the matrix
* Notes can be associated with four different, configurable output channels
* Output channels connectable with individual MIDI channels
WWW: https://github.com/sjaehn/BSEQuencer

View File

@ -0,0 +1,10 @@
lib/lv2/BSEQuencer.lv2/BSEQuencer.so
lib/lv2/BSEQuencer.lv2/BSEQuencer.ttl
lib/lv2/BSEQuencer.lv2/BSEQuencer_GUI.so
lib/lv2/BSEQuencer.lv2/DrumSymbol.png
lib/lv2/BSEQuencer.lv2/EditSymbol.png
lib/lv2/BSEQuencer.lv2/LICENSE
lib/lv2/BSEQuencer.lv2/NoteSymbol.png
lib/lv2/BSEQuencer.lv2/ScaleEditor.png
lib/lv2/BSEQuencer.lv2/manifest.ttl
lib/lv2/BSEQuencer.lv2/surface.png

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= gsequencer
DISTVERSION= 2.2.10
DISTVERSION= 2.2.17
CATEGORIES= audio
MASTER_SITES= SAVANNAH/gsequencer/${DISTVERSION:R}.x

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1562307942
SHA256 (gsequencer-2.2.10.tar.gz) = 27633e2e2f53581bed68aa66fb812356c2af3900771b1a07d2f010aeaef7f238
SIZE (gsequencer-2.2.10.tar.gz) = 5219083
TIMESTAMP = 1562746736
SHA256 (gsequencer-2.2.17.tar.gz) = ae65942b9d08ead94b015ac8e61882081653f53e73ac1dc19e6599b67150412c
SIZE (gsequencer-2.2.17.tar.gz) = 5219839

View File

@ -12,6 +12,8 @@ COMMENT= Free, multi-source, network-controlled music player daemon
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_i386= fails to build
LIB_DEPENDS= libao.so:audio/libao \
libavcodec.so:multimedia/ffmpeg \
libgcrypt.so:security/libgcrypt \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494198
SHA256 (KDE/plasma/5.16.2/plasma-pa-5.16.2.tar.xz) = 676c769f66353110586b7091d21c5e58f404de83d263298b37a24a42a775fd13
SIZE (KDE/plasma/5.16.2/plasma-pa-5.16.2.tar.xz) = 100712
TIMESTAMP = 1562702184
SHA256 (KDE/plasma/5.16.3/plasma-pa-5.16.3.tar.xz) = e149732abd31b6958d845bb2326f65e344d6440e995d2448c997ddd707a466d6
SIZE (KDE/plasma/5.16.3/plasma-pa-5.16.3.tar.xz) = 100436

View File

@ -16,7 +16,7 @@
namespace rtc {
PlatformThreadId CurrentThreadId() {
@@ -32,9 +38,15 @@ PlatformThreadId CurrentThreadId() {
@@ -32,6 +38,12 @@ PlatformThreadId CurrentThreadId() {
ret = syscall(__NR_gettid);
#elif defined(WEBRTC_ANDROID)
ret = gettid();
@ -24,16 +24,12 @@
+ ret = pthread_getthreadid_np();
+#elif defined(__NetBSD__) // WEBRTC_BSD
+ ret = _lwp_self();
+#elif defined(__OpenBSD__) // WEBRTC_BSD
+ ret = getthrid();
#else
// Default implementation for nacl and solaris.
- ret = reinterpret_cast<pid_t>(pthread_self());
+ // WEBRTC_BSD: pthread_t is a pointer, so cannot be casted to pid_t
+ // (aka int32_t) on 64-bit archs. Required on OpenBSD.
+ ret = reinterpret_cast<uintptr_t>(pthread_self());
#endif
#endif // defined(WEBRTC_POSIX)
RTC_DCHECK(ret);
@@ -76,6 +90,10 @@ void SetCurrentThreadName(const char* name) {
ret = reinterpret_cast<pid_t>(pthread_self());
@@ -76,6 +88,10 @@ void SetCurrentThreadName(const char* name) {
prctl(PR_SET_NAME, reinterpret_cast<unsigned long>(name));
#elif defined(WEBRTC_MAC) || defined(WEBRTC_IOS)
pthread_setname_np(name);

View File

@ -2,6 +2,7 @@
PORTNAME= ncbi-blast+
DISTVERSION= 2.9.0
PORTREVISION= 1
CATEGORIES= biology perl5 python
MASTER_SITES= https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ \
https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/${PORTVERSION}/

View File

@ -3,7 +3,7 @@
PORTNAME= ncbi-toolkit
DISTVERSION= 2017.01.06 # containing BLAST v2.2.27 (? is this true)
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= biology
MASTER_SITES= ftp://ftp.ncbi.nlm.nih.gov/toolbox/ncbi_tools/old/${PORTVERSION:S/.//g}/
DISTNAME= ncbi

View File

@ -1,3 +1,6 @@
[
{
message: <<EOM
Normally, dcf77pi and readpin need to be run as root due to the permissions of
/dev/gpioc* , but they can be run as a regular user by changing the permissions
of the device node:
@ -7,3 +10,7 @@ of the device node:
And to make the change persistent across reboots:
# echo "perm gpioc* 0660" >> /etc/devfs.conf
EOM
type: install
}
]

View File

@ -5,7 +5,7 @@ PORTNAME= db6
PORTVERSION= 6.2.32
PORTREVISION= 1
CATEGORIES= databases java
MASTER_SITES= http://download.oracle.com/berkeley-db/
MASTER_SITES= https://download.oracle.com/berkeley-db/
PKGNAMEPREFIX?=
#
# the distfiles aren't named db6-* but db-*:

View File

@ -12,6 +12,8 @@ COMMENT= Thread-safe connection pool library
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_i386= fails to build
USES= compiler:c11 gmake libtool localbase pathfix
GNU_CONFIGURE= yes

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME?= percona
DISTVERSION= 5.6.42-84.2
DISTVERSION= 5.6.43-84.3
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://www.percona.com/downloads/Percona-Server-5.6/Percona-Server-${DISTVERSION}/source/tarball/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1547501540
SHA256 (percona-server-5.6.42-84.2.tar.gz) = 3105ead687f56a1ae0ace557d276fe8dc7f4e1f71d8523032f713ebb80635347
SIZE (percona-server-5.6.42-84.2.tar.gz) = 52836067
TIMESTAMP = 1550822232
SHA256 (percona-server-5.6.43-84.3.tar.gz) = fc5259776bfcfc613de805de011791a46d03f8f3fa6bcd1648fc127caba380b1
SIZE (percona-server-5.6.43-84.3.tar.gz) = 52828517

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= tableschema
PORTVERSION= 1.5.4
PORTVERSION= 1.6.0
CATEGORIES= databases python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561826352
SHA256 (tableschema-1.5.4.tar.gz) = 73c718e78b398c6f4c2fc56ec9ab19c8c56a06e8fff3237e2e584ec94b7d752c
SIZE (tableschema-1.5.4.tar.gz) = 65240
TIMESTAMP = 1562689555
SHA256 (tableschema-1.6.0.tar.gz) = ac75b847634bc3c0b21013f11dfd9db71bb4cc44be4ce2e6b8e3a7ab6839bc58
SIZE (tableschema-1.6.0.tar.gz) = 65350

View File

@ -13,7 +13,7 @@ COMMENT= C++ Database Access Library
LICENSE= BSL
LICENSE_FILE= ${WRKSRC}/LICENSE_1_0.txt
USES= cmake zip
USES= cmake compiler:c++11-lang zip
CMAKE_ARGS+= -DWITH_ORACLE:BOOL=OFF
USE_LDCONFIG= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494199
SHA256 (KDE/plasma/5.16.2/milou-5.16.2.tar.xz) = 5b284574b43ac76e3c3d84693adb9acf19371d68ee04fae4d95d56ed47f9e8bc
SIZE (KDE/plasma/5.16.2/milou-5.16.2.tar.xz) = 57476
TIMESTAMP = 1562702185
SHA256 (KDE/plasma/5.16.3/milou-5.16.3.tar.xz) = 9a06e35d1bf613010301979d7ab5fbdb828943a432bc6a76c6b26ad20e5a199a
SIZE (KDE/plasma/5.16.3/milou-5.16.3.tar.xz) = 57384

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494200
SHA256 (KDE/plasma/5.16.2/sddm-kcm-5.16.2.tar.xz) = f024e06b46c85d1ad6f59938324769bc502cbd26dcde97e42c5cff08e69c0474
SIZE (KDE/plasma/5.16.2/sddm-kcm-5.16.2.tar.xz) = 62176
TIMESTAMP = 1562702185
SHA256 (KDE/plasma/5.16.3/sddm-kcm-5.16.3.tar.xz) = 0fad91b5a7901a42df03113a2277d317ceddf048934f4aa83cd2d735bb9738a3
SIZE (KDE/plasma/5.16.3/sddm-kcm-5.16.3.tar.xz) = 61884

View File

@ -4077,6 +4077,7 @@
SUBDIR += py-XStatic-term.js
SUBDIR += py-XStatic-tv4
SUBDIR += py-ZopeUndo
SUBDIR += py-absl
SUBDIR += py-adb
SUBDIR += py-addict
SUBDIR += py-aenum
@ -4429,6 +4430,7 @@
SUBDIR += py-game
SUBDIR += py-game_sdl2
SUBDIR += py-gamin
SUBDIR += py-gast
SUBDIR += py-gdata
SUBDIR += py-gdbgui
SUBDIR += py-gearman

View File

@ -18,7 +18,7 @@
#include <iostream>
#include <limits>
#include <sstream>
@@ -71,6 +72,12 @@
@@ -71,6 +72,16 @@
#include <unistd.h>
#elif defined(_WIN32)
#include <windows.h>
@ -26,12 +26,16 @@
+#include <pthread_np.h>
+#elif defined(__NetBSD__)
+#include <lwp.h>
+#else // OpenBSD, Solaris
+#elif defined(__OpenBSD__)
+#include <unistd.h>
+#elif defined(__sun)
+#include <thread.h>
+#else // fallback
+#include <stdint.h>
#endif
#if defined(_WIN32)
@@ -88,6 +97,12 @@ static thread_id GetThreadId() {
@@ -88,6 +97,16 @@ static thread_id GetThreadId() {
return syscall(__NR_gettid);
#elif defined(_WIN32)
return GetCurrentThreadId();
@ -39,7 +43,11 @@
+ return pthread_getthreadid_np();
+#elif defined(__NetBSD__)
+ return _lwp_self();
+#else // OpenBSD, Solaris
+#elif defined(__OpenBSD__)
+ return getthrid();
+#elif defined(__sun)
+ return thr_self();
+#else // fallback
+ return (intptr_t) pthread_self();
#endif
}

View File

@ -1,6 +1,6 @@
--- libcutils/threads.cpp.orig 2018-07-13 19:58:45 UTC
+++ libcutils/threads.cpp
@@ -24,11 +24,17 @@
@@ -24,11 +24,21 @@
#include <sys/syscall.h>
#include <sys/time.h>
#include <unistd.h>
@ -8,17 +8,21 @@
+#include <pthread_np.h>
+#elif defined(__NetBSD__)
+#include <lwp.h>
+#elif defined(__OpenBSD__)
+#include <unistd.h>
+#elif defined(__sun)
+#include <thread.h>
#elif defined(__linux__) && !defined(__ANDROID__)
#include <syscall.h>
#include <unistd.h>
#elif defined(_WIN32)
#include <windows.h>
+#else // OpenBSD, Solaris
+#else // fallback
+#include <stdint.h>
#endif
// No definition needed for Android because we'll just pick up bionic's copy.
@@ -38,10 +46,16 @@ pid_t gettid() {
@@ -38,10 +46,20 @@ pid_t gettid() {
uint64_t tid;
pthread_threadid_np(NULL, &tid);
return tid;
@ -26,11 +30,15 @@
+ return pthread_getthreadid_np();
+#elif defined(__NetBSD__)
+ return _lwp_self();
+#elif defined(__OpenBSD__)
+ return getthrid();
+#elif defined(__sun)
+ return thr_self();
#elif defined(__linux__)
return syscall(__NR_gettid);
#elif defined(_WIN32)
return GetCurrentThreadId();
+#else // OpenBSD, Solaris
+#else // fallback
+ return (intptr_t) pthread_self();
#endif
}

View File

@ -18,7 +18,7 @@
#include <iostream>
#include <limits>
#include <sstream>
@@ -71,6 +72,12 @@
@@ -71,6 +72,16 @@
#include <unistd.h>
#elif defined(_WIN32)
#include <windows.h>
@ -26,12 +26,16 @@
+#include <pthread_np.h>
+#elif defined(__NetBSD__)
+#include <lwp.h>
+#else // OpenBSD, Solaris
+#elif defined(__OpenBSD__)
+#include <unistd.h>
+#elif defined(__sun)
+#include <thread.h>
+#else // fallback
+#include <stdint.h>
#endif
#if defined(_WIN32)
@@ -88,6 +97,12 @@ static thread_id GetThreadId() {
@@ -88,6 +97,16 @@ static thread_id GetThreadId() {
return syscall(__NR_gettid);
#elif defined(_WIN32)
return GetCurrentThreadId();
@ -39,7 +43,11 @@
+ return pthread_getthreadid_np();
+#elif defined(__NetBSD__)
+ return _lwp_self();
+#else // OpenBSD, Solaris
+#elif defined(__OpenBSD__)
+ return getthrid();
+#elif defined(__sun)
+ return thr_self();
+#else // fallback
+ return (intptr_t) pthread_self();
#endif
}

View File

@ -18,7 +18,7 @@
#include <iostream>
#include <limits>
#include <sstream>
@@ -71,6 +72,12 @@
@@ -71,6 +72,16 @@
#include <unistd.h>
#elif defined(_WIN32)
#include <windows.h>
@ -26,20 +26,28 @@
+#include <pthread_np.h>
+#elif defined(__NetBSD__)
+#include <lwp.h>
+#else
+#elif defined(__OpenBSD__)
+#include <unistd.h>
+#elif defined(__sun)
+#include <thread.h>
+#else // fallback
+#include <stdint.h>
#endif
#if defined(_WIN32)
@@ -88,6 +97,12 @@ static thread_id GetThreadId() {
@@ -88,6 +97,16 @@ static thread_id GetThreadId() {
return syscall(__NR_gettid);
#elif defined(_WIN32)
return GetCurrentThreadId();
+#elif defined(__NetBSD__)
+ return _lwp_self();
+#elif defined(__DragonFly__) || defined(__FreeBSD__)
+ return pthread_getthreadid_np();
+#else
+#elif defined(__NetBSD__)
+ return _lwp_self();
+#elif defined(__OpenBSD__)
+ return getthrid();
+#elif defined(__sun)
+ return thr_self();
+#else // fallback
+ return (intptr_t) pthread_self();
#endif
}

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= jenkins
PORTVERSION= 2.183
PORTVERSION= 2.184
CATEGORIES= devel java
MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/
DISTNAME= jenkins

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1562182403
SHA256 (jenkins/2.183/jenkins.war) = bdb626b6bddc14e2cf41a5d192e94cec262a86e0894990073b900208ff22dfc7
SIZE (jenkins/2.183/jenkins.war) = 77635819
TIMESTAMP = 1562620369
SHA256 (jenkins/2.184/jenkins.war) = ca99d046d34b58d6a6276cc8337e04cb61aedd7818f5142b480072905a05c4c9
SIZE (jenkins/2.184/jenkins.war) = 77633066

View File

@ -10,6 +10,8 @@ COMMENT= QSBR and EBR library
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/../LICENSE
BROKEN_i386= fails to build
USES= compiler:c11 gmake libtool:build
USE_GITHUB= yes

View File

@ -3,6 +3,7 @@
PORTNAME= opendht
DISTVERSION= 1.9.5
PORTREVISION= 1
CATEGORIES= devel net
MAINTAINER= yuri@FreeBSD.org

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= MCE
PORTVERSION= 1.840
PORTVERSION= 1.841
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:MARIOROY

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1562607981
SHA256 (MCE-1.840.tar.gz) = 1699a45af5550099783a47c914fc4b1e0ddc536530a12bce0e2645500f590485
SIZE (MCE-1.840.tar.gz) = 207821
TIMESTAMP = 1562689552
SHA256 (MCE-1.841.tar.gz) = 5a29414134fb887eb0838ba68a2ec8527d3a38bf7ea0afce6212e7e4113cf049
SIZE (MCE-1.841.tar.gz) = 208096

View File

@ -3,7 +3,7 @@
PORTNAME= pijul
PORTVERSION= 0.12.0
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= devel
MASTER_SITES= https://pijul.org/releases/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}

View File

@ -0,0 +1,51 @@
From af76e728b3f309b6962847f06876e6c4c6a8c065 Mon Sep 17 00:00:00 2001
From: Justus Winter <justus@sequoia-pgp.org>
Date: Mon, 1 Jul 2019 12:05:09 +0200
Subject: [PATCH] Do not bind the openssl-compat interface.
* In Nettle 3.5, the libdes/openssl compatibility interface is
removed, breaking the build of nettle-sys.
* Fix this by not binding any of the compatibility interfaces
present in Nettle.
* Fixes #4.
From 7ec219212af8c1331a645b5a153bc2271bef19e6 Mon Sep 17 00:00:00 2001
From: Justus Winter <justus@sequoia-pgp.org>
Date: Mon, 8 Jul 2019 11:55:37 +0200
Subject: [PATCH] Fix building against latest Nettle.
- `nettle/nettle-stdint.h` is no longer distributed with Nettle.
Dropping it from `bindgen-wrapper.h` does not change the generated
bindings, hence we do not need to bump the major version.
- Tested against Nettle revision
eead7cfa32c341b5193a697273de9fc7336e694a.
- Fixes #5.
--- cargo-crates/nettle-sys-1.0.1/bindgen-wrapper.h.orig 2017-11-30 11:38:42 UTC
+++ cargo-crates/nettle-sys-1.0.1/bindgen-wrapper.h
@@ -16,9 +16,7 @@
#include <nettle/chacha.h>
#include <nettle/ctr.h>
#include <nettle/curve25519.h>
-#include <nettle/des-compat.h>
#include <nettle/des.h>
-#include <nettle/dsa-compat.h>
#include <nettle/dsa.h>
#include <nettle/eax.h>
#include <nettle/ecc-curve.h>
@@ -33,12 +31,10 @@
#include <nettle/macros.h>
#include <nettle/md2.h>
#include <nettle/md4.h>
-#include <nettle/md5-compat.h>
#include <nettle/md5.h>
#include <nettle/memops.h>
#include <nettle/memxor.h>
#include <nettle/nettle-meta.h>
-#include <nettle/nettle-stdint.h>
#include <nettle/nettle-types.h>
#include <nettle/pbkdf2.h>
#include <nettle/pgp.h>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494201
SHA256 (KDE/plasma/5.16.2/khotkeys-5.16.2.tar.xz) = 5e6063cecbafac20d60245e5c7f27038cb438355a10dfe538fa94b2f6ac803b7
SIZE (KDE/plasma/5.16.2/khotkeys-5.16.2.tar.xz) = 1865836
TIMESTAMP = 1562702187
SHA256 (KDE/plasma/5.16.3/khotkeys-5.16.3.tar.xz) = caa65d8b3b6567dac483acf27f62e9baefc31416aa5f991409b0304920211f4e
SIZE (KDE/plasma/5.16.3/khotkeys-5.16.3.tar.xz) = 1865440

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494202
SHA256 (KDE/plasma/5.16.2/kwrited-5.16.2.tar.xz) = 02302e83eaa64b8015b6d084644fb2c48f3fa3db5ff7c01cdc6abb8ad4c6d921
SIZE (KDE/plasma/5.16.2/kwrited-5.16.2.tar.xz) = 20016
TIMESTAMP = 1562702188
SHA256 (KDE/plasma/5.16.3/kwrited-5.16.3.tar.xz) = 9c86575d080219a00ad9fa99b7d12acc06b2cd807bd256fc9f4d96cc8d7ab37e
SIZE (KDE/plasma/5.16.3/kwrited-5.16.3.tar.xz) = 19984

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561494203
SHA256 (KDE/plasma/5.16.2/plasma-sdk-5.16.2.tar.xz) = eb0d9f12968c30d77153a59fccc95ac47e73b30e0f0352a274b25f138225d3e2
SIZE (KDE/plasma/5.16.2/plasma-sdk-5.16.2.tar.xz) = 250460
TIMESTAMP = 1562702189
SHA256 (KDE/plasma/5.16.3/plasma-sdk-5.16.3.tar.xz) = 53a5d03d83ae974032fc32414003038a1b068766eba01e831ecdb1fd91df5b15
SIZE (KDE/plasma/5.16.3/plasma-sdk-5.16.3.tar.xz) = 250308

24
devel/py-absl/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $FreeBSD$
PORTNAME= absl
DISTVERSION= 0.7.1
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= absl-py-${PORTVERSION}
MAINTAINER= amzo1337@gmail.com
COMMENT= Abseil Python Common Libraries
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

3
devel/py-absl/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1562695293
SHA256 (absl-py-0.7.1.tar.gz) = b943d1c567743ed0455878fcd60bc28ac9fae38d129d1ccfad58079da00b8951
SIZE (absl-py-0.7.1.tar.gz) = 99948

9
devel/py-absl/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
Abseil is an open source collection of libraries drawn from the most fundamental
pieces of Google internal codebase. These libraries are the nuts-and-bolts that
underpin almost everything Google runs. Bits and pieces of these APIs are
embedded in most of our open source projects, and Abseil aims to bring them
together into one comprehensive project. Abseil encompasses the most basic
building blocks of Googles codebase: code that is production-tested and will be
fully maintained for years to come.
WWW: https://github.com/abseil/abseil-py

20
devel/py-gast/Makefile Normal file
View File

@ -0,0 +1,20 @@
# $FreeBSD$
PORTNAME= gast
DISTVERSION= 0.2.2
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= amzo1337@gmail.com
COMMENT= AST that abstracts the underlying Python version
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= python
USE_PYTHON= distutils autoplist
NO_ARCH= yes
.include <bsd.port.mk>

3
devel/py-gast/distinfo Normal file
View File

@ -0,0 +1,3 @@
TIMESTAMP = 1562695667
SHA256 (gast-0.2.2.tar.gz) = fe939df4583692f0512161ec1c880e0a10e71e6a232da045ab8edd3756fbadf0
SIZE (gast-0.2.2.tar.gz) = 10294

6
devel/py-gast/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST).
GAST provides a compatibility layer between the AST of various Python versions,
as produced by ast.parse from the standard ast module.
WWW: https://github.com/serge-sans-paille/gast

View File

@ -13,9 +13,6 @@ COMMENT= C-based extension implementing fast integer bit sets
LICENSE= LGPL3
LICENSE_FILE= ${WRKSRC}/LICENSE
BROKEN_armv6= fails to compile: the clang compiler does not support -march=core2
BROKEN_armv7= fails to compile: the clang compiler does not support -march=core2
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>=0:devel/py-nose@${PY_FLAVOR}

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= jupyter_client
PORTVERSION= 5.2.4
PORTREVISION= 1
PORTVERSION= 5.3.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1549821302
SHA256 (jupyter_client-5.2.4.tar.gz) = b5f9cb06105c1d2d30719db5ffb3ea67da60919fb68deaefa583deccd8813551
SIZE (jupyter_client-5.2.4.tar.gz) = 273397
TIMESTAMP = 1562608101
SHA256 (jupyter_client-5.3.0.tar.gz) = 7bd4bd1baac00e21aa171d2b5f61e709e80810ff43eafe0c266ff2ebe4a5c734
SIZE (jupyter_client-5.3.0.tar.gz) = 274699

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= samurai
DISTVERSION= 0.6
DISTVERSION= 0.7
CATEGORIES= devel
MASTER_SITES= https://github.com/michaelforney/samurai/releases/download/${DISTVERSION}/
@ -14,7 +14,8 @@ LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE
LICENSE_FILE_MIT= ${WRKSRC}/LICENSE
ALL_TARGET= samu
PLIST_FILES= bin/samu man/man1/samu.1.gz
PLIST_FILES= bin/samu \
man/man1/samu.1.gz
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/samu ${STAGEDIR}${PREFIX}/bin

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1552017328
SHA256 (samurai-0.6.tar.gz) = b1ead55ec7b319e08e1c66924c55c2af467f32a250cb86827b7a4496b6a8822f
SIZE (samurai-0.6.tar.gz) = 27020
TIMESTAMP = 1562747991
SHA256 (samurai-0.7.tar.gz) = e079e8de3b07ba0f1fffe2dff31c1fcb3be357c523abc6937108635a081a11f0
SIZE (samurai-0.7.tar.gz) = 28197

View File

@ -2,8 +2,7 @@
PORTNAME= tokei
DISTVERSIONPREFIX= v
DISTVERSION= 10.0.0
PORTREVISION= 1
DISTVERSION= 10.0.1
CATEGORIES= devel
MAINTAINER= tobik@FreeBSD.org

View File

@ -1,4 +1,4 @@
TIMESTAMP = 1560263000
TIMESTAMP = 1562397908
SHA256 (rust/crates/aho-corasick-0.7.3.tar.gz) = e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c
SIZE (rust/crates/aho-corasick-0.7.3.tar.gz) = 55093
SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b
@ -273,5 +273,5 @@ SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901ae465d6185fa7864d63fbd5720d
SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737
SHA256 (rust/crates/yaml-rust-0.4.3.tar.gz) = 65923dd1784f44da1d2c3dbbc5e822045628c590ba72123e1c73d3c230c4434d
SIZE (rust/crates/yaml-rust-0.4.3.tar.gz) = 45768
SHA256 (XAMPPRocky-tokei-v10.0.0_GH0.tar.gz) = e2dab2f028061c50ba8dd242cd7691488af8bf5e389ba8800f0843c1ff45df20
SIZE (XAMPPRocky-tokei-v10.0.0_GH0.tar.gz) = 82383
SHA256 (XAMPPRocky-tokei-v10.0.1_GH0.tar.gz) = 4c58388c293d6c37b603fbbcf0bdefec244dc057accff623b44b77af65998b60
SIZE (XAMPPRocky-tokei-v10.0.1_GH0.tar.gz) = 82884

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= dnscap
PORTVERSION= 1.10.0
PORTVERSION= 1.10.1
MASTER_SITES= https://www.dns-oarc.net/files/dnscap/
PORTEPOCH= 1
CATEGORIES= dns

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1544024365
SHA256 (dnscap-1.10.0.tar.gz) = 00f4b04a179e2a7c81a426c72ab228efe408868c1caf0c6cb0aa7906055222f4
SIZE (dnscap-1.10.0.tar.gz) = 661981
TIMESTAMP = 1562689550
SHA256 (dnscap-1.10.1.tar.gz) = f919e6a8494e35b4a3428999fe4665ecb35c2ae1452d0c35da823f608c77a84f
SIZE (dnscap-1.10.1.tar.gz) = 655853

View File

@ -3,7 +3,7 @@
PORTNAME= dnsmasq
DISTVERSION= 2.80rc1
PORTREVISION= 2
PORTREVISION= 3
PORTEPOCH= 3
CATEGORIES= dns ipv6
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/release-candidates/

View File

@ -3,7 +3,7 @@
PORTNAME= knot-resolver
DISTVERSION= 3.2.1
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= dns ipv6
MASTER_SITES= https://secure.nic.cz/files/knot-resolver/ \
https://dns.company/downloads/knot-resolver/

View File

@ -3,6 +3,7 @@
PORTNAME= knot
DISTVERSION= 2.8.1
PORTREVISION= 1
CATEGORIES= dns ipv6
MASTER_SITES= https://secure.nic.cz/files/knot-dns/ \
https://dns.company/downloads/knot-dns/

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= citra
PORTVERSION= s20190706
PORTVERSION= s20190708
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= 529967888
GH_TAGNAME= 2f7a10eea
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 \

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1562428448
SHA256 (citra-emu-citra-s20190706-529967888_GH0.tar.gz) = beb4991e5ba1bfdd50b3d98415a4df138b400e2411804dd6a7e62c45c5795f86
SIZE (citra-emu-citra-s20190706-529967888_GH0.tar.gz) = 5048717
TIMESTAMP = 1562554592
SHA256 (citra-emu-citra-s20190708-2f7a10eea_GH0.tar.gz) = 6aaf827a5cf3c055838bc8f0adaee7e026155f285579c5f092c5da18d3a1ec49
SIZE (citra-emu-citra-s20190708-2f7a10eea_GH0.tar.gz) = 5048596
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

View File

@ -2,6 +2,7 @@
PORTNAME= qemu
PORTVERSION= 0.d${SNAPDATE}
PORTREVISION= 1
CATEGORIES= emulators devel
PKGNAMESUFFIX= -cheri

View File

@ -3,7 +3,7 @@
PORTNAME= qemu
PORTVERSION= 3.1.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
PKGNAMESUFFIX= -devel

View File

@ -3,7 +3,7 @@
PORTNAME= qemu
PORTVERSION= 3.0.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
DIST_SUBDIR= qemu/${PORTVERSION}

View File

@ -3,7 +3,7 @@
PORTNAME= qemu
PORTVERSION= 2.12.1
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= emulators
MASTER_SITES= https://download.qemu.org/
PKGNAMESUFFIX= 2

View File

@ -2,8 +2,8 @@
PORTNAME= rpcs3
DISTVERSIONPREFIX= v
DISTVERSION= 0.0.6-8331 # git rev-list --count HEAD
DISTVERSIONSUFFIX= -g6d65d3424
DISTVERSION= 0.0.6-8336 # git rev-list --count HEAD
DISTVERSIONSUFFIX= -gdb4bc6f6b
CATEGORIES= emulators
MAINTAINER= jbeich@FreeBSD.org

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1562435898
SHA256 (RPCS3-rpcs3-v0.0.6-8331-g6d65d3424_GH0.tar.gz) = 77162d7ff31ec6ff33ce8e85a95cdd5bb37a0517d82fe41c8dd15894cbb94707
SIZE (RPCS3-rpcs3-v0.0.6-8331-g6d65d3424_GH0.tar.gz) = 5451093
TIMESTAMP = 1562604196
SHA256 (RPCS3-rpcs3-v0.0.6-8336-gdb4bc6f6b_GH0.tar.gz) = 07bdbf81b1bebc6ee8b22df0d632fe169f8b41d54eaabc4a08322e0ce8f21cf9
SIZE (RPCS3-rpcs3-v0.0.6-8336-gdb4bc6f6b_GH0.tar.gz) = 5510375
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

View File

@ -1,44 +0,0 @@
Cotire uses precompiled headers which are more fragile with Clang.
For one, https://github.com/KhronosGroup/glslang/commit/e8c8af9c4b0d casues
error: POSIX thread support was disabled in PCH file but is currently enabled
--- rpcs3/CMakeLists.txt.orig 2019-05-31 16:49:32 UTC
+++ rpcs3/CMakeLists.txt
@@ -1,7 +1,5 @@
cmake_minimum_required(VERSION 3.8.2)
-include(cotire)
-
# Generate git-version.h at build time.
include(${CMAKE_CURRENT_SOURCE_DIR}/git-version.cmake)
@@ -80,12 +78,6 @@ if(WIN32)
else()
target_link_libraries(rpcs3 ${CMAKE_DL_LIBS})
endif()
-
-set_target_properties(rpcs3 PROPERTIES
- COTIRE_CXX_PREFIX_HEADER_INIT "${RPCS3_SRC_DIR}/stdafx.h"
- COTIRE_ADD_UNITY_BUILD OFF)
-
-cotire(rpcs3)
# Copy icons to executable directory
if(APPLE)
--- rpcs3/Emu/CMakeLists.txt.orig 2019-05-31 16:49:32 UTC
+++ rpcs3/Emu/CMakeLists.txt
@@ -115,13 +115,3 @@ target_link_libraries(rpcs3_emu
PRIVATE
3rdparty::gsl 3rdparty::xxhash
3rdparty::dx12)
-
-
-# Setup cotire
-option(UNITY_BUILD_EMU "Use unity build for rpcs3_emu target" OFF)
-
-set_target_properties(rpcs3_emu PROPERTIES
- COTIRE_CXX_PREFIX_HEADER_INIT "${RPCS3_SRC_DIR}/stdafx.h"
- COTIRE_ADD_UNITY_BUILD ${UNITY_BUILD_EMU})
-
-cotire(rpcs3_emu)

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wine
DISTVERSION= 4.11
DISTVERSION= 4.12
PORTEPOCH= 1
CATEGORIES= emulators
MASTER_SITES= SF/${PORTNAME}/Source \

View File

@ -1,5 +1,5 @@
TIMESTAMP = 1561188957
SHA256 (wine-4.11.tar.xz) = 2e515766d59d3afdfd5f8d0eb29eb1d1d4ae84969c0a7a7eb4427feb2977bee6
SIZE (wine-4.11.tar.xz) = 22098508
SHA256 (v4.11.tar.gz) = b51f70d25c89279bb3752938d9fb4f3f281742f642bf139703768cc524c6fde0
SIZE (v4.11.tar.gz) = 9919887
TIMESTAMP = 1562608529
SHA256 (wine-4.12.tar.xz) = 00125c50b12363a4accd884de9463dc769601372ffbde6360bf40bfc19bbe5ab
SIZE (wine-4.12.tar.xz) = 22127120
SHA256 (v4.12.tar.gz) = 54507d60037612a4746b0c37382bbec1e5beed1b832449f10cec08ffb88af3b0
SIZE (v4.12.tar.gz) = 9920407

View File

@ -605,6 +605,7 @@ include/wine/windows/npapi.h
include/wine/windows/nserror.h
include/wine/windows/nspapi.h
include/wine/windows/ntddcdrm.h
include/wine/windows/ntddmou.h
include/wine/windows/ntddndis.h
include/wine/windows/ntddscsi.h
include/wine/windows/ntddstor.h

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= yuzu
PORTVERSION= s20190705
PORTVERSION= s20190708
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= 772c86a26
GH_TAGNAME= 618d8446a
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 \

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1562348353
SHA256 (yuzu-emu-yuzu-s20190705-772c86a26_GH0.tar.gz) = cae3329193d4dd3075720c434985691fe0f2e712551d7b9c09ef00e7a78322b8
SIZE (yuzu-emu-yuzu-s20190705-772c86a26_GH0.tar.gz) = 2682048
TIMESTAMP = 1562592942
SHA256 (yuzu-emu-yuzu-s20190708-618d8446a_GH0.tar.gz) = a4d6227992834ca2d33b27055e1fd93d6e81e6b67fa5b4d58e6c1c59249366fc
SIZE (yuzu-emu-yuzu-s20190708-618d8446a_GH0.tar.gz) = 2684562
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

View File

@ -2,7 +2,7 @@
PORTNAME= filezilla
PORTVERSION= 3.40.0
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= ftp
MASTER_SITES= https://download.filezilla-project.org/client/
DISTNAME= FileZilla_${PORTVERSION}_src

View File

@ -2,6 +2,7 @@
PORTNAME= libfilezilla
PORTVERSION= 0.15.1
PORTREVISION= 1
CATEGORIES= ftp
MASTER_SITES= https://download.filezilla-project.org/${PORTNAME}/

View File

@ -3,7 +3,7 @@
PORTNAME= supertuxkart
PORTVERSION= 1.0
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= games
MASTER_SITES= SF/supertuxkart/SuperTuxKart/${PORTVERSION}
DISTNAME= ${PORTNAME}-${PORTVERSION}-src

View File

@ -4,7 +4,7 @@
PORTNAME= aseprite
DISTVERSIONPREFIX= v
DISTVERSION= 1.2.9
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= graphics
MAINTAINER= yuri@FreeBSD.org

View File

@ -5,7 +5,7 @@ PORTNAME= drm-current-kmod
PORTVERSION= 4.16.g20190519
CATEGORIES= graphics kld
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= DRM modules for the linuxkpi-based KMS components
LICENSE= BSD2CLAUSE MIT GPLv2

View File

@ -6,7 +6,7 @@ PORTVERSION= 5.0.g20190520
PORTREVISION= 1
CATEGORIES= graphics kld
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= DRM modules for the linuxkpi-based KMS components (development version)
LICENSE= BSD2CLAUSE MIT GPLv2

View File

@ -5,7 +5,7 @@ PORTNAME= drm-fbsd11.2-kmod
PORTVERSION= 4.11g20190424
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= DRM modules for the linuxkpi-based KMS components
LICENSE= BSD2CLAUSE MIT GPLv2

View File

@ -5,7 +5,7 @@ PORTNAME= drm-fbsd12.0-kmod
PORTVERSION= 4.16.g20190624
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= DRM modules for the linuxkpi-based KMS components
LICENSE= BSD2CLAUSE MIT GPLv2

View File

@ -2,10 +2,10 @@
# $FreeBSD$
PORTNAME= drm-kmod
PORTVERSION= g20181126
PORTVERSION= g20190710
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= Metaport of DRM modules for the linuxkpi-based KMS components
USES= metaport
@ -30,7 +30,9 @@ IGNORE= not supported on older 12, no kernel support
RUN_DEPENDS= ${KMODDIR}/drm.ko:graphics/drm-fbsd11.2-kmod
.elif ${OSVERSION} >= 1200058 && ${OSVERSION} < 1300000
RUN_DEPENDS= ${KMODDIR}/drm.ko:graphics/drm-fbsd12.0-kmod
.elif ${OSVERSION} >= 1300000
.elif ${OSVERSION} >= 1300000 && ${OSVERSION} < 1300029
IGNORE= not supported on older 13, no kernel support
.elif ${OSVERSION} >= 1300029
RUN_DEPENDS= ${KMODDIR}/drm.ko:graphics/drm-current-kmod
.else
IGNORE= not supported for this configuration

View File

@ -2,10 +2,10 @@
# $FreeBSD$
PORTNAME= drm-legacy-kmod
PORTVERSION= g20190523
PORTVERSION= g20190709
CATEGORIES= graphics
MAINTAINER= jmd@FreeBSD.org
MAINTAINER= x11@FreeBSD.org
COMMENT= Legacy DRM modules for the linuxkpi-based KMS components
LICENSE= BSD2CLAUSE MIT GPLv2
@ -27,7 +27,7 @@ CONFLICTS_INSTALL= drm-devel-kmod \
USE_GITHUB= yes
GH_ACCOUNT= FreeBSDDesktop
GH_PROJECT= drm-legacy
GH_TAGNAME= 12bd551
GH_TAGNAME= 990f64b
.include <bsd.port.options.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1558637098
SHA256 (FreeBSDDesktop-drm-legacy-g20190523-12bd551_GH0.tar.gz) = fd8332d384b4cfb12bef1604ec1c966685f54a2a6b0aac3983a75de5b8065a9d
SIZE (FreeBSDDesktop-drm-legacy-g20190523-12bd551_GH0.tar.gz) = 1676352
TIMESTAMP = 1562697284
SHA256 (FreeBSDDesktop-drm-legacy-g20190709-990f64b_GH0.tar.gz) = 65010e884f53289bf16c68b80b2d3b93944816610d354ccef56918ba9c8a0356
SIZE (FreeBSDDesktop-drm-legacy-g20190709-990f64b_GH0.tar.gz) = 1676608

View File

@ -21,11 +21,8 @@ RUN_DEPENDS:= ${BUILD_DEPENDS}
USES= gmake gnome jpeg localbase:ldflags pkgconfig
USE_GITLAB= yes
# This is a workaround to convert the subproject into a project. It's also
# required to avoid slashes in the DISTNAME.
GL_SITE= https://gitlab.com/sane-project
GL_ACCOUNT= frontend # would be 'sane-project'
# ...and GL_PROJECT would be 'frontend/xsane' then but introduces a '/' to DISTNAME
GL_ACCOUNT= frontend
GL_COMMIT= d01b4089ce6778e76fa86a0410d4e80cf6eb819e
USE_GNOME= gtk20 gdkpixbuf2
GNU_CONFIGURE= yes

View File

@ -21,7 +21,7 @@ USE_GNOME= glib20
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
OPTIONS_DEFINE= BOT CAPSICUM DOCS OTR PERL PROXY SOCKS TRUECOLOR UTF8PROC
OPTIONS_DEFINE= BOT CAPSICUM DEBUG DOCS OTR PERL PROXY SOCKS TRUECOLOR UTF8PROC
OPTIONS_DEFAULT= CAPSICUM PERL
OPTIONS_SUB= yes
@ -29,6 +29,8 @@ BOT_DESC= Bot support
BOT_CONFIGURE_WITH= bot
CAPSICUM_DESC= Capsicum support
CAPSICUM_CONFIGURE_WITH= capsicum
DEBUG_DESC= Build with debug symbols
DEBUG_VARS= WITH_DEBUG=yes
OTR_DESC= OTR (off-the-record) support
OTR_CONFIGURE_ON= --with-otr \
--with-libotr-inc-prefix=${PREFIX}/include

View File

@ -9,4 +9,4 @@ Unified Configuration and Management
And of course Java EE!
WWW: http://wildfly.org
WWW: https://wildfly.org/

View File

@ -20,4 +20,4 @@ implementation. Features include:
for fast file I/O; thread local hash tables and streams to
eliminate locking overhead; cons hashing support.
WWW: http://www.clozure.com/clozurecl.html
WWW: https://www.clozure.com/ccl

View File

@ -7,4 +7,4 @@ concurrency, distribution and fault tolerance.
This port contains a standalone runtime environment of Erlang 21
to be used during the development of OTP applications.
WWW: http://www.erlang.org/
WWW: https://www.erlang.org/

View File

@ -1,4 +1,4 @@
TIMESTAMP = 1553834988
TIMESTAMP = 1562721048
SHA256 (python/python-2.7.16-docs-html.tar.bz2) = 02d488e908ceaa793662c3ea17ee9b9259f32782d74705633151c19f5fd05fe5
SIZE (python/python-2.7.16-docs-html.tar.bz2) = 4629448
SHA256 (python/python-2.7.16-docs-pdf-a4.tar.bz2) = b8397a5ba1c8a205a9873c12899dd33c0d5f265abaad33ce200f2e9aad0fb492
@ -15,19 +15,19 @@ SHA256 (python/python-3.5.7-docs-pdf-letter.tar.bz2) = 7444e91546beca9ecf9163ee0
SIZE (python/python-3.5.7-docs-pdf-letter.tar.bz2) = 10877760
SHA256 (python/python-3.5.7-docs-text.tar.bz2) = 3d001c4a23f99a5c22116de7bc5c27fd985541b90fef29a7454b61add51b3d96
SIZE (python/python-3.5.7-docs-text.tar.bz2) = 2067002
SHA256 (python/python-3.6.8-docs-html.tar.bz2) = d17ebdc57a6590b7c86c98047c4f90723c5a1846343a4640e0596161922cf9eb
SIZE (python/python-3.6.8-docs-html.tar.bz2) = 6010329
SHA256 (python/python-3.6.8-docs-pdf-a4.tar.bz2) = 4734db2cea99bbd2d3b6523cc3aa969c88cebfce7c705e8918677fce96cdd1c8
SIZE (python/python-3.6.8-docs-pdf-a4.tar.bz2) = 13672468
SHA256 (python/python-3.6.8-docs-pdf-letter.tar.bz2) = 76562a113644bc01b1107aab8dafe8680227c8ee384946a07ce67f21b7e31086
SIZE (python/python-3.6.8-docs-pdf-letter.tar.bz2) = 13673043
SHA256 (python/python-3.6.8-docs-text.tar.bz2) = 4a48632298ac7ed94aedb2c3093170b739b4c7cd607419cbb5bf3edb8f9d8c0a
SIZE (python/python-3.6.8-docs-text.tar.bz2) = 2163182
SHA256 (python/python-3.7.3-docs-html.tar.bz2) = 38bac7ff3330fab68c57ee9ce553f2f9ccce4365ff4ae646c0d06868bd0c9bd8
SIZE (python/python-3.7.3-docs-html.tar.bz2) = 6223981
SHA256 (python/python-3.7.3-docs-pdf-a4.tar.bz2) = e998213bf0e8117b58fa3653d0d46a70ae79d1e05a4c2d6995687c179b7310a6
SIZE (python/python-3.7.3-docs-pdf-a4.tar.bz2) = 14046636
SHA256 (python/python-3.7.3-docs-pdf-letter.tar.bz2) = 424d68cfd4b9dff842bd9d335452784fed19e5062db8e13427ca017dd94a035e
SIZE (python/python-3.7.3-docs-pdf-letter.tar.bz2) = 14044806
SHA256 (python/python-3.7.3-docs-text.tar.bz2) = d847ffda5a3c2bd0802c2cd791785302770ecf6a25e9d3406ce8a20af2f82cba
SIZE (python/python-3.7.3-docs-text.tar.bz2) = 2262525
SHA256 (python/python-3.6.9-docs-html.tar.bz2) = a5272e517c3b71c89a647cfa55390aec394407ee224017e1288fc3d22141d013
SIZE (python/python-3.6.9-docs-html.tar.bz2) = 5992329
SHA256 (python/python-3.6.9-docs-pdf-a4.tar.bz2) = bf95834d777ebe3252ad0bee2a36e4772e41414331c8068332961ebad3a89761
SIZE (python/python-3.6.9-docs-pdf-a4.tar.bz2) = 13818889
SHA256 (python/python-3.6.9-docs-pdf-letter.tar.bz2) = 656e70bfff58d1815507ca7cd82cc74ee5d30a9c575ba0488df6edaa8d290c24
SIZE (python/python-3.6.9-docs-pdf-letter.tar.bz2) = 13819027
SHA256 (python/python-3.6.9-docs-text.tar.bz2) = bbcce937a6853310f987c2a9434224f03180927622b86ab60feb4176cfcd8ec5
SIZE (python/python-3.6.9-docs-text.tar.bz2) = 2165791
SHA256 (python/python-3.7.4-docs-html.tar.bz2) = af668cf1d9bc4fc11b3cfb7dc0f62b5e058ea5a453b8c709276d426ad9fd4907
SIZE (python/python-3.7.4-docs-html.tar.bz2) = 6212393
SHA256 (python/python-3.7.4-docs-pdf-a4.tar.bz2) = bfabf8f6850eb3e1c9125c3df4456736af621f021049658638593c99fcc5dc8c
SIZE (python/python-3.7.4-docs-pdf-a4.tar.bz2) = 14220535
SHA256 (python/python-3.7.4-docs-pdf-letter.tar.bz2) = c5e648a756b8284ba81681fb934eec419aa6e58550dbb3b5139c75a25e5957dc
SIZE (python/python-3.7.4-docs-pdf-letter.tar.bz2) = 14220720
SHA256 (python/python-3.7.4-docs-text.tar.bz2) = a56c222b22bb01a6c0e8cea726f9f406ea48fc337bb4d38ea8398e958c7cf307
SIZE (python/python-3.7.4-docs-text.tar.bz2) = 2271187

View File

@ -3,7 +3,6 @@
PORTNAME= python
PORTVERSION= ${PYTHON_PORTVERSION}
PORTREVISION= 2
CATEGORIES= lang python ipv6
MASTER_SITES= PYTHON/ftp/python/${PORTVERSION}
PKGNAMESUFFIX= ${PYTHON_SUFFIX}

View File

@ -3,4 +3,4 @@
# Do not forget to update python documentation (lang/python-doc-*)
# Run "make -C lang/python-doc-html makesum"
PYTHON_PORTVERSION= 3.6.8
PYTHON_PORTVERSION= 3.6.9

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1545693407
SHA256 (python/Python-3.6.8.tar.xz) = 35446241e995773b1bed7d196f4b624dadcadc8429f26282e756b2fb8a351193
SIZE (python/Python-3.6.8.tar.xz) = 17212420
TIMESTAMP = 1562110897
SHA256 (python/Python-3.6.9.tar.xz) = 5e2f5f554e3f8f7f0296f7e73d8600c4e9acbaee6b2555b83206edf5153870da
SIZE (python/Python-3.6.9.tar.xz) = 17212164

View File

@ -1,21 +0,0 @@
Obtained from: https://github.com/python/cpython/commit/216a4d83c3b72f4fdcd81b588dc3f42cc461739a
bpo-35746: Fix segfault in ssl's cert parser (GH-11569) (GH-11573)
Fix a NULL pointer deref in ssl module. The cert parser did not handle CRL
distribution points with empty DP or URI correctly. A malicious or buggy
certificate can result into segfault.
--- Modules/_ssl.c.orig
+++ Modules/_ssl.c
@@ -1338,6 +1338,10 @@ _get_crl_dp(X509 *certificate) {
STACK_OF(GENERAL_NAME) *gns;
dp = sk_DIST_POINT_value(dps, i);
+ if (dp->distpoint == NULL) {
+ /* Ignore empty DP value, CVE-2019-5010 */
+ continue;
+ }
gns = dp->distpoint->name.fullname;
for (j=0; j < sk_GENERAL_NAME_num(gns); j++) {

View File

@ -5205,6 +5205,7 @@ lib/python%%XYDOT%%/test/support/__pycache__/testresult.cpython-%%XY%%.opt-2.pyc
lib/python%%XYDOT%%/test/support/__pycache__/testresult.cpython-%%XY%%.pyc
lib/python%%XYDOT%%/test/support/script_helper.py
lib/python%%XYDOT%%/test/support/testresult.py
lib/python%%XYDOT%%/test/talos-2019-0758.pem
lib/python%%XYDOT%%/test/test___all__.py
lib/python%%XYDOT%%/test/test___future__.py
lib/python%%XYDOT%%/test/test__locale.py

View File

@ -14,7 +14,7 @@ CONFLICTS_INSTALL= rust
# Which source to pull:
# https://static.rust-lang.org/dist/${NIGHTLY_DATE}/rustc-nightly-src.tar.gz
# https://static.rust-lang.org/dist/channel-rust-nightly.toml
NIGHTLY_DATE= 2019-07-07
NIGHTLY_DATE= 2019-07-09
NIGHTLY_SUBDIR= ${NIGHTLY_DATE}/
# See WRKSRC/src/stage0.txt for this date

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1562444254
SHA256 (rust/2019-07-07/rustc-nightly-src.tar.xz) = 6a73d940355e238e5c8f50fc855f870ba25aa1d10789f0f60726891f1a10344f
SIZE (rust/2019-07-07/rustc-nightly-src.tar.xz) = 101281828
TIMESTAMP = 1562594687
SHA256 (rust/2019-07-09/rustc-nightly-src.tar.xz) = 85abdbd4b21340a08a8b08b6c5269ce158867ac4a9b92c7ce75ea9d32b6f522c
SIZE (rust/2019-07-09/rustc-nightly-src.tar.xz) = 101250644
SHA256 (rust/2019-07-04/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 2e3f9fd2ba916facd3239df2bab16420161c6aa62d03317caa3b038ce56e5738
SIZE (rust/2019-07-04/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 70343111
SHA256 (rust/2019-07-04/rust-std-beta-x86_64-unknown-freebsd.tar.gz) = 735c8a380bd369ca4b1c05cb3f93d3fad41e073a94146230f4e851be66f23b0f

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= claws-mail
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= mail news ipv6
COMMENT= Lightweight and featureful GTK+ based e-mail and news client

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= mini_mime
PORTVERSION= 1.0.1
PORTVERSION= 1.0.2
CATEGORIES= mail rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1534255325
SHA256 (rubygem/mini_mime-1.0.1.gem) = a325b0c7a0242720a624f47149181f3873b4f81663cb346ada9f1e3430d497e0
SIZE (rubygem/mini_mime-1.0.1.gem) = 33280
TIMESTAMP = 1562689571
SHA256 (rubygem/mini_mime-1.0.2.gem) = 0a0ecc37505f011ce78419188f894774806e143a75babaf8485a8fee7b06b5ab
SIZE (rubygem/mini_mime-1.0.2.gem) = 33280

View File

@ -1,5 +1,5 @@
MiniMime is a minimal mime type implementation for use with the mail and
rest-client gems. It is optimised to minimize memory usage and keeps a
cache of 100 mime type lookups (and 100 misses).
rest-client gem. It is optimised to minimize memory usage. It keeps a cache of
100 mime type lookups (and 100 misses).
WWW: https://github.com/discourse/mini_mime

View File

@ -2,8 +2,7 @@
PORTNAME= mkl-dnn
DISTVERSIONPREFIX= v
DISTVERSION= 0.20
DISTVERSIONSUFFIX= -rc
DISTVERSION= 0.20.1
CATEGORIES= math
MAINTAINER= yuri@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1561163360
SHA256 (intel-mkl-dnn-v0.20-rc_GH0.tar.gz) = a200cd1e1464a42bb1683fb79853af4d788c0dd01c657a20ef2731602ba69f74
SIZE (intel-mkl-dnn-v0.20-rc_GH0.tar.gz) = 1678969
TIMESTAMP = 1562749469
SHA256 (intel-mkl-dnn-v0.20.1_GH0.tar.gz) = 26f720ed912843ba293e8a1e0822fe5318e93c529d80c87af1cf555d68e642d0
SIZE (intel-mkl-dnn-v0.20.1_GH0.tar.gz) = 1679424

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