*/*: sync with upstream

Taken from: HardenedBSD
This commit is contained in:
Franco Fichtner 2018-01-19 15:11:14 +01:00
parent 78406cc77c
commit 5039859f07
216 changed files with 3677 additions and 745 deletions

View File

@ -0,0 +1,11 @@
--- setup_lz4.py.orig 2017-12-30 09:14:25 UTC
+++ setup_lz4.py
@@ -24,7 +24,7 @@ def lz4_system_prefix(prefixes):
for prefix in prefixes:
filename = os.path.join(prefix, 'include', 'lz4.h')
if os.path.exists(filename):
- with open(filename, 'r') as fd:
+ with open(filename, 'r', encoding='utf-8') as fd:
if 'LZ4_compress_default' in fd.read(): # requires lz4 >= 1.7.0 (r129)
return prefix

View File

@ -14,6 +14,8 @@ COMMENT= Setiathome Enhanced for BOINC
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN_powerpc64= does not compile: analyzeFuncs_altivec.cpp: CoreServices/CoreServices.h: No such file or directory
BROKEN_FreeBSD_10_i386= does not compile: vector/x86_ops.h:149:9: error: unknown type name '__m128i'; did you mean '__m128'?
BUILD_DEPENDS= ${LOCALBASE}/include/fftw3.h:math/fftw3
RUN_DEPENDS= boinc_client:net/boinc-client
LIB_DEPENDS= libfftw3f.so:math/fftw3-float
@ -83,8 +85,6 @@ PLIST_SUB+= PREFIX=${PREFIX} \
BOINC_CLIENT_USER=${BOINC_CLIENT_USER} \
BOINC_CLIENT_GROUP=${BOINC_CLIENT_GROUP}
BROKEN_powerpc64= does not compile: analyzeFuncs_altivec.cpp: CoreServices/CoreServices.h: No such file or directory
# str_replace.h is included in newer versions of net/boinc-client,
# but it is not needed on FreeBSD
post-patch:

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= Astro-SpaceTrack
PORTVERSION= 0.102
PORTVERSION= 0.103
CATEGORIES= astro perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1514730601
SHA256 (Astro-SpaceTrack-0.102.tar.gz) = dfa1ca0fd44511f53d016b99617acd2ecf0f852a81395afdb49b8412ee7d412d
SIZE (Astro-SpaceTrack-0.102.tar.gz) = 170403
TIMESTAMP = 1516280951
SHA256 (Astro-SpaceTrack-0.103.tar.gz) = 52561d3370218ba3c1293cb8a8e24ffdee02778a2cb53b70ec42a362dad75c78
SIZE (Astro-SpaceTrack-0.103.tar.gz) = 170610

View File

@ -11,9 +11,14 @@ MASTER_SITES= http://arvin.schnell-web.net/xanalyser/ \
MAINTAINER= db@FreeBSD.org
COMMENT= Spectrum analyser
LICENSE= GPLv2+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= gmake libtool motif tar:bzip2
GNU_CONFIGURE= yes
PLIST_FILES= bin/xanalyser lib/X11/app-defaults/XAnalyser man/man1/xanalyser.1.gz
post-patch:
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
-e 's|%%MOTIFLIB%%|${MOTIFLIB} |g' \

View File

@ -0,0 +1,128 @@
--- src/Analyser.cc.orig 2018-01-19 00:36:36 UTC
+++ src/Analyser.cc
@@ -146,7 +146,7 @@ Analyser::resize (bool redraw)
marker[1] = f2sx (f[1]);
if (redraw) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect);
}
}
@@ -169,7 +169,7 @@ Analyser::clear (bool drawit)
calcfoo ();
if (drawit) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect);
}
}
@@ -188,7 +188,7 @@ Analyser::drawpeaktext (bool showit)
snprintf (peak_text, 10, "%i", (int) peak_f);
- peak_sx = f2sx (peak_f) - (strlen (peak_text) * font_width) / 2;
+ peak_sx = f2sx (peak_f) - (strlen (peak_text) * font_width) / 2;
peak_sy = db2sy (peak_db) - 6;
XSetForeground (display, gc, xanalyser.markercolor);
@@ -203,7 +203,7 @@ void
Analyser::drawpeakmarker ()
{
for (int m = 0; m < 2; m++) {
- XRectangle rect = { marker[m], 0, 1, height };
+ XRectangle rect = { static_cast<short>(marker[m]), 0, 1, static_cast<unsigned short>(height) };
draw (rect);
}
}
@@ -251,13 +251,13 @@ Analyser::drawgrid (bool withtext)
else
XSetForeground (display, gc, xanalyser.minorgridcolor);
- XDrawLine (display, window, gc, 0, sy, width - 1, sy);
+ XDrawLine (display, window, gc, 0, sy, static_cast<unsigned short>(width) - 1, sy);
if (withtext) {
const int size = 10;
char buffer[size];
snprintf (buffer, size, "%+d", db);
- XDrawString (display, window, gc, width - 2 - font_width *
+ XDrawString (display, window, gc, static_cast<unsigned short>(width) - 2 - font_width *
strlen (buffer), sy - 2, buffer, strlen (buffer));
}
}
@@ -280,7 +280,7 @@ Analyser::draw (XRectangle rect, bool complete)
if (complete) {
XSetForeground (display, gc, xanalyser.backgroundcolor);
- XFillRectangle (display, window, gc, 0, 0, width, height);
+ XFillRectangle (display, window, gc, 0, 0, static_cast<unsigned short>(width), height);
XSetForeground (display, gc, xanalyser.datacolor);
for (int sx = first; sx <= last; sx++) {
@@ -344,7 +344,7 @@ Analyser::realize (Display* display, Window window)
gc = XCreateGC (display, window, gc_mask, &gc_values);
- // get width and height
+ // get static_cast<unsigned short>(width) and height
myXGetDrawableSize (display, window, &width, &height);
@@ -382,8 +382,8 @@ Analyser::realize (Display* display, Window window)
envelope ();
marker[0] = 0;
- // note: it might be that width - 1 != num_fft - 1
- marker[1] = width - 1;
+ // note: it might be that static_cast<unsigned short>(width) - 1 != num_fft - 1
+ marker[1] = static_cast<unsigned short>(width) - 1;
return true;
}
@@ -427,7 +427,7 @@ Analyser::shot (const int32_t* buffer, int channel, bo
analyse (buffer, channel);
if (drawit) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect, false);
}
@@ -608,7 +608,7 @@ Analyser::set_search (bool search)
drawpeaktext (true);
for (int m = 0; m < 2; m++) {
- XRectangle rect = { marker[m], 0, 1, height };
+ XRectangle rect = { static_cast<short>(marker[m]), 0, 1, static_cast<unsigned short>(height) };
draw (rect);
}
@@ -618,7 +618,7 @@ Analyser::set_search (bool search)
drawpeaktext (false);
for (int m = 0; m < 2; m++) {
- XRectangle rect = { marker[m], 0, 1, height };
+ XRectangle rect = { static_cast<short>(marker[m]), 0, 1, static_cast<unsigned short>(height) };
draw (rect);
}
@@ -647,7 +647,7 @@ Analyser::set_marker (short sx)
// remove old marker and text
- XRectangle rect = { old, 0, 1, height };
+ XRectangle rect = { old, 0, 1, static_cast<unsigned short>(height) };
draw (rect);
XSetClipMask (display, gc, None);
@@ -662,7 +662,7 @@ Analyser::set_marker (short sx)
peaksearch (true);
for (int m = 0; m < 2; m++) {
- XRectangle rect = { marker[m], 0, 1, height };
+ XRectangle rect = { static_cast<short>(marker[m]), 0, 1, static_cast<unsigned short>(height) };
draw (rect);
}

View File

@ -0,0 +1,29 @@
--- src/Scope.cc.orig 2018-01-19 00:47:02 UTC
+++ src/Scope.cc
@@ -132,7 +132,7 @@ Scope::resize (bool redraw)
clearbuffer ();
if (redraw) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect);
}
}
@@ -193,7 +193,7 @@ Scope::clear (bool drawit)
clearbuffer ();
if (drawit) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect);
}
}
@@ -310,7 +310,7 @@ Scope::shot (const int32_t* buffer, bool drawit)
}
if (drawit && sample.frame_count % num_count == num_count - 1) {
- XRectangle rect = { 0, 0, width, height };
+ XRectangle rect = { 0, 0, static_cast<unsigned short>(width), static_cast<unsigned short>(height) };
draw (rect);
}

View File

@ -0,0 +1,29 @@
--- src/control.cc.orig 2018-01-19 00:48:36 UTC
+++ src/control.cc
@@ -566,7 +566,7 @@ analyser_callback (Widget, XtPointer client_data, XtPo
XtWindow (analyser_drawing_w[n]));
XExposeEvent* e = (XExposeEvent*) c->event;
- XRectangle rect = { e->x, e->y, e->width, e->height };
+ XRectangle rect = { static_cast<short>(e->x), static_cast<short>(e->y), static_cast<unsigned short>(e->width), static_cast<unsigned short>(e->height) };
analyser[n].draw (rect);
} break;
@@ -585,7 +585,7 @@ analyser_callback (Widget, XtPointer client_data, XtPo
case ButtonPress:
case MotionNotify: {
XButtonPressedEvent* e = (XButtonPressedEvent*) c->event;
- XPoint point = { e->x, e->y };
+ XPoint point = { static_cast<short>(e->x),static_cast<short>(e->y) };
analyser[0].set_marker (point.x);
analyser[1].set_marker (point.x);
@@ -709,7 +709,7 @@ scope_callback (Widget, XtPointer, XtPointer call_data
scope.realize (XtDisplay (scope_drawing_w), XtWindow (scope_drawing_w));
XExposeEvent* e = (XExposeEvent*) c->event;
- XRectangle rect = { e->x, e->y, e->width, e->height };
+ XRectangle rect = { static_cast<short>(e->x),static_cast<short>(e->y), static_cast<unsigned short>(e->width), static_cast<unsigned short>(e->height) };
scope.draw (rect);
} break;

View File

@ -1,3 +0,0 @@
bin/xanalyser
lib/X11/app-defaults/XAnalyser
man/man1/xanalyser.1.gz

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= sysbench
PORTVERSION= 1.0.11
PORTVERSION= 1.0.12
CATEGORIES= benchmarks databases
MAINTAINER= sunpoet@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512927021
SHA256 (akopytov-sysbench-1.0.11_GH0.tar.gz) = 2621d274d9103496e22c57863faec11f855f25db838fae0248be6e825a426dbe
SIZE (akopytov-sysbench-1.0.11_GH0.tar.gz) = 1498802
TIMESTAMP = 1516280814
SHA256 (akopytov-sysbench-1.0.12_GH0.tar.gz) = 1d730b4619eb5d92cb3d2e642ed55f84b3fca8ec5d2acb5ca09b52a73d6831b4
SIZE (akopytov-sysbench-1.0.12_GH0.tar.gz) = 1506013

View File

@ -14,6 +14,7 @@ bin/sysbench
%%DATADIR%%/tests/include/api_sql_common.sh
%%DATADIR%%/tests/include/config.sh
%%DATADIR%%/tests/include/drv_common.sh
%%DATADIR%%/tests/include/inspect.lua
%%DATADIR%%/tests/include/mysql_common.sh
%%DATADIR%%/tests/include/oltp_legacy/bulk_insert.lua
%%DATADIR%%/tests/include/oltp_legacy/common.lua

View File

@ -1,6 +1,6 @@
--- admin/aprsd.conf.orig 2008-01-22 20:08:12.000000000 -0500
+++ admin/aprsd.conf 2008-01-22 20:12:45.000000000 -0500
@@ -46,7 +46,7 @@
--- admin/aprsd.conf.orig 2003-10-01 16:57:16 UTC
+++ admin/aprsd.conf
@@ -46,7 +46,7 @@ NetBeacon 10 !3802.21NI07830.61W& APRS Server
#Define the TNC beacon. The TNC will supply the ax25 path header.
#It's optional and you may use the TNC BTEXT in the INIT.TNC file instead.
#
@ -9,7 +9,7 @@
#
#
#Send 2 extra message acks is addition to each received ack to TNC
@@ -65,12 +65,12 @@
@@ -65,12 +65,12 @@ expire 35
#If undefined all TNC related functions are disabled.
#Permissable baud rates are 1200,2400,4800,9600 and 19200.
#
@ -24,7 +24,7 @@
#For the TNC, set this in INIT.TNC. Note the format is
#slightly different to the TNC command.
aprspath APRS v WIDE
@@ -97,7 +97,7 @@
@@ -97,7 +97,7 @@ Trace no
logAllRF no
#
# Allow the insecure aprs passcodes to be used

View File

@ -1,6 +1,6 @@
--- src/aprsString.h.orig 2008-01-12 18:11:00.000000000 -0500
+++ src/aprsString.h 2008-01-12 18:11:35.000000000 -0500
@@ -196,7 +196,8 @@
--- src/aprsString.h.orig 2003-10-01 16:58:27 UTC
+++ src/aprsString.h
@@ -196,7 +196,8 @@ class aprsString: public string (public)
void parseLogon(void);
bool parseCommand(void);
bool parsePortFilter(void);

View File

@ -1,16 +1,16 @@
--- src/aprsd.cpp.orig 2003-05-28 23:09:39.000000000 -0400
+++ src/aprsd.cpp 2008-01-24 01:13:26.000000000 -0500
@@ -98,7 +98,8 @@
--- src/aprsd.cpp.orig 2003-05-29 03:09:39 UTC
+++ src/aprsd.cpp
@@ -98,7 +98,8 @@ string szAprsPath;
int msgsn;
const string HOMEDIR("/home/aprsd2");
-const string CONFPATH("");
+const string LOGPATH("%%LOGPATH%%");
+const string CONFPATH("%%CONFPATH%%");
+const string LOGPATH("/var/log/aprsd/");
+const string CONFPATH("/usr/local/etc/aprsd/");
const string CONFFILE("aprsd.conf");
const string MAINLOG("aprsd.log");
const string STSMLOG("thirdparty.log");
@@ -126,7 +127,7 @@
@@ -126,7 +127,7 @@ void serverQuit(void) /* Invoked by console 'q' q
WriteLog(string("Server Shutdown"), MAINLOG);
tcsetattr(fileno(stdin),TCSANOW,&initial_settings); //restore terminal mode
@ -19,7 +19,7 @@
outFile += SAVE_HISTORY;
int n = SaveHistory(outFile);
@@ -872,8 +873,8 @@
@@ -872,8 +873,8 @@ int daemonInit(void)
if (f.is_open()) {
f.read(s, 10);
xx = atoi(s);
@ -30,7 +30,7 @@
cout << "aprsd already running" << endl;
cout << "PID: " << pid_file << endl;
exit(1);
@@ -977,7 +978,7 @@
@@ -977,7 +978,7 @@ int main(int argc, char *argv[])
//fdump = fopen("dump.txt","w+"); //debug

View File

@ -1,5 +1,5 @@
--- src/osdep.h.orig 2003-04-20 14:34:47.000000000 -0400
+++ src/osdep.h 2008-01-23 23:29:47.000000000 -0500
--- src/osdep.h.orig 2003-04-20 18:34:47 UTC
+++ src/osdep.h
@@ -32,6 +32,14 @@
extern "C"
{
@ -15,7 +15,7 @@
#if TIME_WITH_SYS_TIME
# include <sys/time.h>
@@ -63,10 +71,27 @@
@@ -63,10 +71,27 @@ namespace aprsd
char *buf, size_t buflen, struct hostent **result,
int *h_errnop)
{

View File

@ -1,5 +1,5 @@
--- src/queryResp.cpp.orig 2003-03-30 23:49:40.000000000 -0500
+++ src/queryResp.cpp 2008-01-23 22:12:30.000000000 -0500
--- src/queryResp.cpp.orig 2003-03-31 04:49:40 UTC
+++ src/queryResp.cpp
@@ -40,6 +40,9 @@
#include <netinet/in.h>
@ -10,7 +10,7 @@
#include "constant.h"
#include "utils.h"
@@ -84,7 +87,6 @@
@@ -84,7 +87,6 @@ void queryResp(int source, const aprsString* pkt)
if ((rc = gethostname(hostname,80)) != 0)
strcpy(hostname, "Host_Unknown");
else {
@ -18,7 +18,7 @@
//Thread-Safe verison of gethostbyname()
h = NULL;
rc = gethostbyname_r(hostname,
@@ -94,12 +96,10 @@
@@ -94,12 +96,10 @@ void queryResp(int source, const aprsString* pkt)
&h,
&h_err);

View File

@ -1,19 +1,20 @@
--- src/servers.cpp.orig 2003-10-01 12:58:27.000000000 -0400
+++ src/servers.cpp 2008-01-23 23:26:01.000000000 -0500
@@ -2627,7 +2627,6 @@
&hostinfo,
&h_err);
--- src/servers.cpp.orig 2003-10-01 16:58:27 UTC
+++ src/servers.cpp
@@ -2283,7 +2283,7 @@ void *TCPServerThread(void *p)
server.sin_addr.s_addr = INADDR_ANY;
server.sin_port = htons(sp->ServerPort);
-
if (rc || (hostinfo == NULL)){
char* cp = new char[256];
memset(cp, 0, 256);
@@ -3277,7 +3276,7 @@
- if (bind(s, (struct sockaddr *)&server, sizeof(server)) < 0) {
+ if (::bind(s, (struct sockaddr *)&server, sizeof(server)) < 0) {
perror("TCPServerThread bind error");
ShutDownServer = true;
return NULL;
@@ -2382,7 +2382,7 @@ void *UDPServerThread(void *p)
server.sin_port = htons(UDP_Port) ;/* 0 = Use any available port */
server.sin_addr.s_addr = INADDR_ANY; /* Server's Internet Address */
//----------------------------------------------------------------------
-inline string convertUpTime(int dTime)
+string convertUpTime(int dTime)
{
std::ostringstream ostr;
int x;
- if (bind(s, (struct sockaddr *)&server, sizeof(server)) < 0) {
+ if (::bind(s, (struct sockaddr *)&server, sizeof(server)) < 0) {
perror("Datagram socket bind error");
ShutDownServer = true;
return NULL;

View File

@ -1,5 +1,5 @@
--- src/servers.h.orig 2008-01-12 18:18:53.000000000 -0500
+++ src/servers.h 2008-01-12 18:36:15.000000000 -0500
--- src/servers.h.orig 2003-10-01 16:58:27 UTC
+++ src/servers.h
@@ -28,6 +28,12 @@
#include <string>
@ -13,17 +13,17 @@
#include "aprsd.h"
#include "mutex.h"
@@ -135,11 +141,17 @@
@@ -135,11 +141,17 @@ struct pidList{
//Stuff for trusted UDP source IPs
+#ifdef BSD
+struct sTrusted {
struct sTrusted {
+ struct in_addr sin_addr; //ip address
+ struct in_addr sin_mask; //subnet mask
+};
+#else
struct sTrusted {
+struct sTrusted {
in_addr sin_addr; //ip address
in_addr sin_mask; //subnet mask
};

View File

@ -1,14 +1,14 @@
--- src/utils.cpp.orig 2003-10-01 12:58:27.000000000 -0400
+++ src/utils.cpp 2008-01-22 21:54:44.000000000 -0500
@@ -41,6 +41,7 @@
--- src/utils.cpp.orig 2003-10-01 16:58:27 UTC
+++ src/utils.cpp
@@ -41,6 +41,7 @@ int CountDefault = 7; //Max of 7 instances of one
static RecursiveMutex pmtxLog;
+const string LOGPATH("%%LOGPATH%%");
+const string LOGPATH("/var/log/aprsd/");
int WriteLog(const string& sp, const string& LogFile)
{
@@ -50,11 +51,12 @@
@@ -50,11 +51,12 @@ int WriteLog(const string& sp, const string& LogFile)
static Lock locker(pmtxLog, false);
locker.get();
@ -23,7 +23,7 @@
time(&ltime); // Timestamp
ctime_r(&ltime, szTime); // "threadsafe" ctime
@@ -91,8 +93,8 @@
@@ -91,8 +93,8 @@ int WriteLog(const char* pch, const char* LogFile)
pthread_mutex_lock(pmtxLog);

View File

@ -1,5 +1,5 @@
--- src/validate.cpp.orig 2008-01-13 20:00:27.000000000 -0500
+++ src/validate.cpp 2008-01-13 20:45:17.000000000 -0500
--- src/validate.cpp.orig 2003-03-31 04:49:41 UTC
+++ src/validate.cpp
@@ -34,6 +34,10 @@
#include <iostream>
#include <strstream>
@ -11,7 +11,7 @@
using namespace std;
@@ -47,11 +51,17 @@
@@ -47,11 +51,17 @@ struct user_info {
const string group;
};
#else
@ -29,19 +29,19 @@
#include "validate.h"
@@ -140,12 +150,21 @@
@@ -140,12 +150,21 @@ int checkSystemPass(const string szUser, const string
pam_end(pamh, PAM_SUCCESS);
return 0;
#else
+#ifdef BSD
+ passwd *ppw = NULL;
passwd *ppw = NULL;
+ struct group *pgrp = NULL;
+ struct spwd *pspwd = NULL;
+ char *member = NULL;
+ struct group grp;
+ struct passwd pwd;
+#else
passwd *ppw = NULL;
+ passwd *ppw = NULL;
group *pgrp = NULL;
spwd *pspwd = NULL;
char *member = NULL;
@ -51,7 +51,7 @@
int i;
char salt[16];
int usrfound = 0 ;
@@ -158,7 +177,11 @@
@@ -158,7 +177,11 @@ int checkSystemPass(const string szUser, const string
#endif
@ -63,8 +63,12 @@
char *buffer1 = new char[bufsize];
//Thread-Safe getgrnam()
getgrnam_r(szGroup.c_str(), /* Does group name szGroup exist? */
@@ -171,9 +194,11 @@
delete buffer1;
@@ -168,12 +191,14 @@ int checkSystemPass(const string szUser, const string
&pgrp);
if (pgrp == NULL) {
- delete buffer1;
+ delete[] buffer1;
return rc; /* return BADGROUP if not */
}
-
@ -77,7 +81,29 @@
char *buffer2 = new char[bufsize];
//Thread-Safe getpwnam()
getpwnam_r(szUser.c_str(),
@@ -214,6 +239,7 @@
@@ -183,8 +208,8 @@ int checkSystemPass(const string szUser, const string
&ppw);
if (ppw == NULL){
- delete buffer2;
- delete buffer1;
+ delete[] buffer2;
+ delete[] buffer1;
return BADUSER ; /* return BADUSER if no such user */
}
@@ -200,8 +225,8 @@ int checkSystemPass(const string szUser, const string
}
if (usrfound == 0) {
- delete buffer1;
- delete buffer2;
+ delete[] buffer1;
+ delete[] buffer2;
return BADGROUP; /* return BADGROUP if user not in group */
}
@@ -214,6 +239,7 @@ int checkSystemPass(const string szUser, const string
pwLength = strlen(ppw->pw_passwd);
@ -85,7 +111,7 @@
if (ppw->pw_passwd[0] != '$') {
/* DES salt */
strncpy(salt,ppw->pw_passwd,2);
@@ -230,15 +256,18 @@
@@ -230,15 +256,18 @@ int checkSystemPass(const string szUser, const string
salt[i++] = '$';
salt[i] = '\0';
}
@ -105,11 +131,26 @@
if ((rc == BADPASSWD) && (strcmp("x",ppw->pw_passwd) == 0)) {
#ifdef DEBUG
cout << "Shadow passwords enabled\n";
@@ -288,6 +317,7 @@
@@ -246,8 +275,8 @@ int checkSystemPass(const string szUser, const string
pspwd = getspnam(szUser.c_str()); //Get shadow password file data for user
if (pspwd == NULL) {
cout << "validate: Can't read shadowed password file. This program must run as root\n";
- delete buffer1;
- delete buffer2;
+ delete[] buffer1;
+ delete[] buffer2;
return MUSTRUNROOT;
}
pwLength = strlen(pspwd->sp_pwdp);
@@ -288,8 +317,9 @@ int checkSystemPass(const string szUser, const string
<< endl;
#endif
}
- delete buffer1;
- delete buffer2;
+#endif
delete buffer1;
delete buffer2;
+ delete[] buffer1;
+ delete[] buffer2;
return rc;
#endif
}

View File

@ -1,6 +1,6 @@
--- configure.orig 2017-04-01 02:21:18 UTC
--- configure.orig 2018-01-14 19:21:15 UTC
+++ configure
@@ -6143,7 +6143,7 @@ $as_echo "$FLTK_CONFIG" >&6; }
@@ -6166,7 +6166,7 @@ $as_echo "$FLTK_CONFIG" >&6; }
FLTK_LIBS=`$FLTK_CONFIG --ldflags --use-images`
if test "x$target_mingw32" != "xyes"; then
if test "x$target_darwin" != "xyes"; then

View File

@ -0,0 +1,11 @@
--- src/main.cxx.orig 2018-01-18 20:38:50 UTC
+++ src/main.cxx
@@ -514,7 +514,7 @@ int parse_args(int argc, char **argv, int& idx)
exit(0);
}
if (strcasecmp("--version", argv[idx]) == 0) {
- printf("Version: "VERSION"\n");
+ printf("Version: %s\n",VERSION);
exit (0);
}
if (strcasecmp("--rig_debug", argv[idx]) == 0) {

View File

@ -0,0 +1,11 @@
--- src/flwrap.cxx.orig 2018-01-18 20:57:00 UTC
+++ src/flwrap.cxx
@@ -547,7 +547,7 @@ int parse_args(int argc, char **argv, int& idx)
exit(0);
}
if (strcasecmp("--version", argv[idx]) == 0) {
- printf("Version: "VERSION"\n");
+ printf("Version: %s\n",VERSION);
exit(0);
}

View File

@ -1,10 +1,10 @@
# $FreeBSD$
PORTNAME= splat
PORTVERSION= 1.4.0
PORTVERSION= 1.4.2
CATEGORIES= comms hamradio
MASTER_SITES= SUNSITE/apps/ham
MASTER_SITES= http://www.qsl.net/kd2bd/
#http://www.qsl.net/kd2bd/splat-1.4.2.tar.bz2
MAINTAINER= hamradio@FreeBSD.org
COMMENT= Used in calculating path losses, useful to ham radio and others

View File

@ -1,2 +1,3 @@
SHA256 (splat-1.4.0.tar.bz2) = f081951c68577234668ac2a1e6eff86e60e57e17c470d765900e9d1461058678
SIZE (splat-1.4.0.tar.bz2) = 357433
TIMESTAMP = 1516294940
SHA256 (splat-1.4.2.tar.bz2) = 39b0b314e2e927bdf00d1eda4b9865efd128ba850305f987aec049c4fd58a29c
SIZE (splat-1.4.2.tar.bz2) = 356823

View File

@ -0,0 +1,20 @@
--- splat.cpp.orig 2018-01-18 17:04:01 UTC
+++ splat.cpp
@@ -567,7 +567,7 @@ double ElevationAngle(struct site source, struct site
(downtilt), as referenced to a normal to the center of
the earth. */
- register double a, b, dx;
+ double a, b, dx;
a=GetElevation(destination)+destination.alt+earthradius;
b=GetElevation(source)+source.alt+earthradius;
@@ -2727,7 +2727,7 @@ void PlotPath(struct site source, struct site destinat
char block;
int x, y;
- register double cos_xmtr_angle, cos_test_angle, test_alt;
+ double cos_xmtr_angle, cos_test_angle, test_alt;
double distance, rx_alt, tx_alt;
ReadPath(source,destination);

View File

@ -1,12 +0,0 @@
--- utils/fontdata.c.orig 2012-11-05 15:44:52.000000000 -0500
+++ utils/fontdata.c 2012-11-05 15:42:54.000000000 -0500
@@ -39,7 +39,8 @@
{
int x;
unsigned char line, input;
- FILE *infile, *outfile;
+ gzFile infile;
+ FILE *outfile;
if (argc==2)
infile=gzopen(argv[1],"rb");

View File

@ -1,5 +1,5 @@
--- utils/postdownload.orig 2012-11-03 03:56:52.000000000 -0500
+++ utils/postdownload 2012-11-03 03:57:09.000000000 -0500
--- utils/postdownload.orig 2009-03-01 17:37:04 UTC
+++ utils/postdownload
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/bin/sh

View File

@ -1,8 +1,8 @@
# $FreeBSD$
PORTNAME?= mariadb
PORTVERSION= 5.5.58
PORTREVISION?= 1
PORTVERSION= 5.5.59
PORTREVISION?= 0
CATEGORIES= databases ipv6
MASTER_SITES= http://ftp.osuosl.org/pub/mariadb/${PORTNAME}-${PORTVERSION}/source/ \
http://mirrors.supportex.net/mariadb/${PORTNAME}-${PORTVERSION}/source/ \

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1508325537
SHA256 (mariadb-5.5.58.tar.gz) = 26fdf8784a51e5d6f7624c0f4528433a6188065dd1bf92ef69e27db6b0a41002
SIZE (mariadb-5.5.58.tar.gz) = 45784323
TIMESTAMP = 1516351401
SHA256 (mariadb-5.5.59.tar.gz) = c3269ce20b45b177239fd1e3d6d9428a94131711f12758ebf5f65222278bb110
SIZE (mariadb-5.5.59.tar.gz) = 45804920

View File

@ -1,63 +0,0 @@
--- sql/sql_view.cc.orig 2016-03-28 18:06:12 UTC
+++ sql/sql_view.cc
@@ -773,46 +773,46 @@ static const int required_view_parameter
*/
static File_option view_parameters[]=
{{{ C_STRING_WITH_LEN("query")},
- my_offsetof(TABLE_LIST, select_stmt),
+ static_cast<int>(my_offsetof(TABLE_LIST, select_stmt)),
FILE_OPTIONS_ESTRING},
{{ C_STRING_WITH_LEN("md5")},
- my_offsetof(TABLE_LIST, md5),
+ static_cast<int>(my_offsetof(TABLE_LIST, md5)),
FILE_OPTIONS_STRING},
{{ C_STRING_WITH_LEN("updatable")},
- my_offsetof(TABLE_LIST, updatable_view),
+ static_cast<int>(my_offsetof(TABLE_LIST, updatable_view)),
FILE_OPTIONS_ULONGLONG},
{{ C_STRING_WITH_LEN("algorithm")},
- my_offsetof(TABLE_LIST, algorithm),
+ static_cast<int>(my_offsetof(TABLE_LIST, algorithm)),
FILE_OPTIONS_ULONGLONG},
{{ C_STRING_WITH_LEN("definer_user")},
- my_offsetof(TABLE_LIST, definer.user),
+ static_cast<int>(my_offsetof(TABLE_LIST, definer.user)),
FILE_OPTIONS_STRING},
{{ C_STRING_WITH_LEN("definer_host")},
- my_offsetof(TABLE_LIST, definer.host),
+ static_cast<int>(my_offsetof(TABLE_LIST, definer.host)),
FILE_OPTIONS_STRING},
{{ C_STRING_WITH_LEN("suid")},
- my_offsetof(TABLE_LIST, view_suid),
+ static_cast<int>(my_offsetof(TABLE_LIST, view_suid)),
FILE_OPTIONS_ULONGLONG},
{{ C_STRING_WITH_LEN("with_check_option")},
- my_offsetof(TABLE_LIST, with_check),
+ static_cast<int>(my_offsetof(TABLE_LIST, with_check)),
FILE_OPTIONS_ULONGLONG},
{{ C_STRING_WITH_LEN("timestamp")},
- my_offsetof(TABLE_LIST, timestamp),
+ static_cast<int>(my_offsetof(TABLE_LIST, timestamp)),
FILE_OPTIONS_TIMESTAMP},
{{ C_STRING_WITH_LEN("create-version")},
- my_offsetof(TABLE_LIST, file_version),
+ static_cast<int>(my_offsetof(TABLE_LIST, file_version)),
FILE_OPTIONS_ULONGLONG},
{{ C_STRING_WITH_LEN("source")},
- my_offsetof(TABLE_LIST, source),
+ static_cast<int>(my_offsetof(TABLE_LIST, source)),
FILE_OPTIONS_ESTRING},
{{(char*) STRING_WITH_LEN("client_cs_name")},
- my_offsetof(TABLE_LIST, view_client_cs_name),
+ static_cast<int>(my_offsetof(TABLE_LIST, view_client_cs_name)),
FILE_OPTIONS_STRING},
{{(char*) STRING_WITH_LEN("connection_cl_name")},
- my_offsetof(TABLE_LIST, view_connection_cl_name),
+ static_cast<int>(my_offsetof(TABLE_LIST, view_connection_cl_name)),
FILE_OPTIONS_STRING},
{{(char*) STRING_WITH_LEN("view_body_utf8")},
- my_offsetof(TABLE_LIST, view_body_utf8),
+ static_cast<int>(my_offsetof(TABLE_LIST, view_body_utf8)),
FILE_OPTIONS_ESTRING},
{{NullS, 0}, 0,
FILE_OPTIONS_STRING}

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= MongoDB
PORTVERSION= 1.8.0
PORTVERSION= 1.8.1
DISTVERSIONPREFIX= v
CATEGORIES= databases perl5
MASTER_SITES= CPAN

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1491898004
SHA256 (MongoDB-v1.8.0.tar.gz) = 6772215b863baa685e23cda10492f536738d45281f7ae136d426d221b743b5fc
SIZE (MongoDB-v1.8.0.tar.gz) = 521237
TIMESTAMP = 1516280989
SHA256 (MongoDB-v1.8.1.tar.gz) = dbe30920ccbf261686c562f3dd66d93d2341f47e6aa71a284ed18d1e3974dfd8
SIZE (MongoDB-v1.8.1.tar.gz) = 528885

View File

@ -0,0 +1,38 @@
--- sql-common/client.c.orig 2018-01-17 11:39:51.315029000 +0000
+++ sql-common/client.c 2018-01-17 11:44:53.493273000 +0000
@@ -1884,7 +1884,7 @@
*errptr= "Failed to get DNS name from SAN list item";
DBUG_RETURN(1);
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
cn= (const char *)ASN1_STRING_data(dns_name);
#else
cn= (const char *)ASN1_STRING_get0_data(dns_name);
@@ -1946,7 +1946,7 @@
*errptr= "Invalid IP address embedded in the certificate SAN IP address";
DBUG_RETURN(1);
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
ip= ASN1_STRING_data(ip_address);
#else
ip= ASN1_STRING_get0_data(ip_address);
@@ -2111,7 +2111,7 @@
if(server_ip_address != NULL)
{
iplen= ASN1_STRING_length(server_ip_address);
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
ipout= (const unsigned char *) ASN1_STRING_data(server_ip_address);
#else
ipout= (const unsigned char *) ASN1_STRING_get0_data(server_ip_address);
@@ -2163,7 +2163,7 @@
goto error;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
cn= (const char *) ASN1_STRING_data(cn_asn1);
#else
cn= (const char *) ASN1_STRING_get0_data(cn_asn1);

View File

@ -0,0 +1,11 @@
--- vio/viosslfactories.c.orig 2018-01-17 11:42:33.764076000 +0000
+++ vio/viosslfactories.c 2018-01-17 11:43:21.072238000 +0000
@@ -125,7 +125,7 @@
{
BIGNUM* p= BN_bin2bn(dh2048_p,sizeof(dh2048_p),NULL);
BIGNUM* g= BN_bin2bn(dh2048_g,sizeof(dh2048_g),NULL);
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined( LIBRESSL_VERSION_NUMBER )
dh->p= p;
dh->g= g;
if (! dh->p || ! dh->g)

View File

@ -0,0 +1,38 @@
--- sql-common/client.c.orig 2018-01-17 11:39:51.315029000 +0000
+++ sql-common/client.c 2018-01-17 11:44:53.493273000 +0000
@@ -1884,7 +1884,7 @@
*errptr= "Failed to get DNS name from SAN list item";
DBUG_RETURN(1);
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
cn= (const char *)ASN1_STRING_data(dns_name);
#else
cn= (const char *)ASN1_STRING_get0_data(dns_name);
@@ -1946,7 +1946,7 @@
*errptr= "Invalid IP address embedded in the certificate SAN IP address";
DBUG_RETURN(1);
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
ip= ASN1_STRING_data(ip_address);
#else
ip= ASN1_STRING_get0_data(ip_address);
@@ -2111,7 +2111,7 @@
if(server_ip_address != NULL)
{
iplen= ASN1_STRING_length(server_ip_address);
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
ipout= (const unsigned char *) ASN1_STRING_data(server_ip_address);
#else
ipout= (const unsigned char *) ASN1_STRING_get0_data(server_ip_address);
@@ -2163,7 +2163,7 @@
goto error;
}
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined(LIBRESSL_VERSION_NUMBER)
cn= (const char *) ASN1_STRING_data(cn_asn1);
#else
cn= (const char *) ASN1_STRING_get0_data(cn_asn1);

View File

@ -0,0 +1,11 @@
--- vio/viosslfactories.c.orig 2018-01-17 11:42:33.764076000 +0000
+++ vio/viosslfactories.c 2018-01-17 11:43:21.072238000 +0000
@@ -125,7 +125,7 @@
{
BIGNUM* p= BN_bin2bn(dh2048_p,sizeof(dh2048_p),NULL);
BIGNUM* g= BN_bin2bn(dh2048_g,sizeof(dh2048_g),NULL);
-#if OPENSSL_VERSION_NUMBER < 0x10100000L
+#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined( LIBRESSL_VERSION_NUMBER )
dh->p= p;
dh->g= g;
if (! dh->p || ! dh->g)

View File

@ -12,8 +12,6 @@ COMMENT= Microsoft C++ REST SDK
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/../license.txt
BROKEN= fails to build with boost 1.66, see bug 224093
LIB_DEPENDS= libboost_system.so:devel/boost-libs
USE_GITHUB= yes

View File

@ -0,0 +1,34 @@
This fixes the build against Boost 1.66
In file included from src/websockets/client/ws_client_wspp.cpp:28:
In file included from libs/websocketpp/websocketpp/config/asio_client.hpp:32:
In file included from libs/websocketpp/websocketpp/transport/asio/endpoint.hpp:32:
libs/websocketpp/websocketpp/transport/asio/connection.hpp:425:24: error: no matching function for call to 'make_shared'
m_strand = lib::make_shared<boost::asio::strand>(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/v1/memory:4642:1: note: candidate template ignored: invalid explicitly-specified argument for template parameter '_Tp'
make_shared(_Args&& ...__args)
^
From 6b2e0480018530b616f61d5cdc786c92ba148bb7 Mon Sep 17 00:00:00 2001
From: John Hruby <johnh@vitrium.com>
Date: Tue, 26 Dec 2017 16:52:13 +0100
Subject: [PATCH] fixed strand
---
Release/libs/websocketpp/websocketpp/transport/asio/connection.hpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Release/libs/websocketpp/websocketpp/transport/asio/connection.hpp b/Release/libs/websocketpp/websocketpp/transport/asio/connection.hpp
index 0be40f6b..395632c3 100644
--- libs/websocketpp/websocketpp/transport/asio/connection.hpp
+++ libs/websocketpp/websocketpp/transport/asio/connection.hpp
@@ -422,7 +422,7 @@ class connection : public config::socket_type::socket_con_type {
m_io_service = io_service;
if (config::enable_multithreading) {
- m_strand = lib::make_shared<boost::asio::strand>(
+ m_strand = lib::make_shared<boost::asio::io_service::strand>(
lib::ref(*io_service));
m_async_read_handler = m_strand->wrap(lib::bind(

View File

@ -5,7 +5,7 @@
[app: :lager_logger,
version: "1.0.4",
- elixir: ">= 1.1.0 and < 1.5.0",
+ elixir: ">= 1.1.0 and < 1.6.0",
+ elixir: ">= 1.1.0 and < 1.7.0",
package: package(),
- description: description(),
- deps: deps()]

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= tzdata
PORTVERSION= 0.5.15
PORTVERSION= 0.5.16
DISTVERSIONPREFIX= v
CATEGORIES= devel
PKGNAMEPREFIX= elixir-

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1515403369
SHA256 (lau-tzdata-v0.5.15_GH0.tar.gz) = 56a06065108ae745b04eb43ddb751b9ec2f70760d5ff6f53b9591f51b8fb0df3
SIZE (lau-tzdata-v0.5.15_GH0.tar.gz) = 833263
TIMESTAMP = 1516289426
SHA256 (lau-tzdata-v0.5.16_GH0.tar.gz) = 5d8f93bfe7722dd674a7481608f6584e770590ca0e652d5b7bed8c1c304c8b2b
SIZE (lau-tzdata-v0.5.16_GH0.tar.gz) = 833296

View File

@ -2,7 +2,7 @@
PORTNAME= gcc-arm-embedded
PORTVERSION= 7.2.20171218
PORTREVISION= 0
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/
DISTNAME= ${ORIGINAL_PACKAGE_NAME}-src

View File

@ -0,0 +1,10 @@
--- src/gdb/gdb/common/selftest.h.orig 2018-01-18 18:38:13.161295000 +0300
+++ src/gdb/gdb/common/selftest.h 2018-01-18 18:38:29.032519000 +0300
@@ -31,6 +31,7 @@
struct selftest
{
+ virtual ~selftest() {}
virtual void operator() () const = 0;
};

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= lfcbase
PORTVERSION= 1.11.5
PORTVERSION= 1.11.6
CATEGORIES= devel
MASTER_SITES= http://www.lemke-it.com/

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1513797882
SHA256 (lfcbase-1.11.5.tar.gz) = 95d91a75d309c3aab3bbbca29ac5b3c4689e2d343d3da7118e212b9269f34d07
SIZE (lfcbase-1.11.5.tar.gz) = 639476
TIMESTAMP = 1516294233
SHA256 (lfcbase-1.11.6.tar.gz) = ac81ea65c02876a96ccb4e88717d5d1b5a52a3c43d38ca658f368870e157aa06
SIZE (lfcbase-1.11.6.tar.gz) = 639449

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= libfwnt
PORTVERSION= 20170115
PORTVERSION= 20180117
DISTVERSIONPREFIX= alpha-
CATEGORIES= devel
MASTER_SITES= https://github.com/libyal/libfwnt/releases/download/${PORTVERSION}/ \
@ -14,23 +14,27 @@ COMMENT= Library for Windows NT data types
LICENSE= LGPL3+
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= python${PYTHON2_DEFAULT}:lang/python${PYTHON2_DEFAULT:S/.//} \
python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//}
RUN_DEPENDS= python${PYTHON2_DEFAULT}:lang/python${PYTHON2_DEFAULT:S/.//} \
python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//}
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-python
USES= libtool pathfix python
CONFIGURE_ARGS= --enable-python2 --enable-python3
CONFIGURE_ENV= PYTHON2_CONFIG=${LOCALBASE}/bin/python${PYTHON2_DEFAULT}-config \
PYTHON3=${LOCALBASE}/bin/python${PYTHON3_DEFAULT} \
PYTHON3_CONFIG=${LOCALBASE}/bin/python${PYTHON3_DEFAULT}-config
USES= libtool pathfix
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
PLIST_SUB= PYTHON2_SITELIBDIR=lib/python${PYTHON2_DEFAULT}/site-packages \
PYTHON3_SITELIBDIR=lib/python${PYTHON3_DEFAULT}/site-packages
OPTIONS_DEFINE= DOCS NLS
OPTIONS_DEFINE= NLS
NLS_USES= gettext
NLS_CONFIGURE_ON= --with-libintl-prefix=${LOCALBASE}
NLS_CONFIGURE_OFF= --disable-nls
PORTDOCS= AUTHORS ChangeLog
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1484548573
SHA256 (libfwnt-alpha-20170115.tar.gz) = 010990789656a4a17537a68d625e5ba1f7243dffe4d1b993a64f10036fd40de1
SIZE (libfwnt-alpha-20170115.tar.gz) = 696120
TIMESTAMP = 1516286616
SHA256 (libfwnt-alpha-20180117.tar.gz) = d968bbbf900b5dbd8a19458986967b7e4715fe6019b6c85a57ae3a962c138096
SIZE (libfwnt-alpha-20180117.tar.gz) = 695519

View File

@ -8,7 +8,9 @@ lib/libfwnt.a
lib/libfwnt.so
lib/libfwnt.so.1
lib/libfwnt.so.1.0.0
%%PYTHON_SITELIBDIR%%/pyfwnt.a
%%PYTHON_SITELIBDIR%%/pyfwnt.so
%%PYTHON2_SITELIBDIR%%/pyfwnt.a
%%PYTHON2_SITELIBDIR%%/pyfwnt.so
%%PYTHON3_SITELIBDIR%%/pyfwnt.a
%%PYTHON3_SITELIBDIR%%/pyfwnt.so
libdata/pkgconfig/libfwnt.pc
man/man3/libfwnt.3.gz

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= mdb
PORTVERSION= 0.1
PORTVERSION= 0.2
CATEGORIES= devel
MAINTAINER= jhb@FreeBSD.org
@ -14,7 +14,7 @@ USES= uidfix
USE_GITHUB= yes
GH_ACCOUNT= bsdjhb
GH_PROJECT= illumos-gate
GH_TAGNAME= b8a73a7590
GH_TAGNAME= 291c37a43d
ONLY_FOR_ARCHS= amd64

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1500586203
SHA256 (bsdjhb-illumos-gate-0.1-b8a73a7590_GH0.tar.gz) = 6fe907ac8c107400ccf68ed4dc240b35361e14e18ddac571e554c261d46f758c
SIZE (bsdjhb-illumos-gate-0.1-b8a73a7590_GH0.tar.gz) = 115104723
TIMESTAMP = 1516319136
SHA256 (bsdjhb-illumos-gate-0.2-291c37a43d_GH0.tar.gz) = e155a771d37a1e597cd783f4977734361c18b89456947a5a6ce44e5d2faf087f
SIZE (bsdjhb-illumos-gate-0.2-291c37a43d_GH0.tar.gz) = 115105258

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= PkgConfig-LibPkgConf
PORTVERSION= 0.07
PORTVERSION= 0.08
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:PLICEASE
@ -15,7 +15,7 @@ LICENSE= ART10 GPLv1
LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= pkgconf>=1.3.0:devel/pkgconf
BUILD_DEPENDS= pkgconf>=1.3.90:devel/pkgconf
LIB_DEPENDS= libpkgconf.so:devel/pkgconf
CFLAGS+= -I${LOCALBASE}/include/pkgconf

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1514410141
SHA256 (PkgConfig-LibPkgConf-0.07.tar.gz) = aa82677cb3097d804a52fbb5578cfac0d8bb75a5328410b69af3ed8a11242afb
SIZE (PkgConfig-LibPkgConf-0.07.tar.gz) = 26692
TIMESTAMP = 1516297294
SHA256 (PkgConfig-LibPkgConf-0.08.tar.gz) = 0ec629deefa0c12c6df7bd621862ada9a40fa70ce33629986e5e4691268a0fea
SIZE (PkgConfig-LibPkgConf-0.08.tar.gz) = 26307

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= grpc
PORTVERSION= 1.8.0
PORTVERSION= 1.8.3
CATEGORIES= devel net
MAINTAINER= vanilla@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1513349287
SHA256 (PECL/grpc-1.8.0.tgz) = cec11452d2938da8d7c5a5b11bc7df6c11469ece18c0954fd12edd34a3321dab
SIZE (PECL/grpc-1.8.0.tgz) = 2304860
TIMESTAMP = 1516288477
SHA256 (PECL/grpc-1.8.3.tgz) = f115b9dd4d0156eabe795ec493271bd33775bb388e90677535a6d21eb63aa842
SIZE (PECL/grpc-1.8.3.tgz) = 2304400

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= coloredlogs
PORTVERSION= 8.0
PORTVERSION= 9.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -12,7 +12,7 @@ COMMENT= Colored terminal output for Python logging module
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}humanfriendly>=3.7:textproc/py-humanfriendly@${FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}humanfriendly>=4.7:textproc/py-humanfriendly@${FLAVOR}
NO_ARCH= yes
USES= python

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1515425025
SHA256 (coloredlogs-8.0.tar.gz) = 2701dc90cada3a78afe4d7b5245026c355e083ca248f6a8a13696b2c6e0ddb16
SIZE (coloredlogs-8.0.tar.gz) = 289746
TIMESTAMP = 1516281042
SHA256 (coloredlogs-9.0.tar.gz) = e3b19320bd21bde506444601a71397cf5215f040df06503013697c6261b05de9
SIZE (coloredlogs-9.0.tar.gz) = 261750

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= ipykernel
PORTVERSION= 4.7.0
PORTVERSION= 4.8.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512745188
SHA256 (ipykernel-4.7.0.tar.gz) = 354986612a38f0555c43d5af2425e2a67506b63b313a0325e38904003b9d977b
SIZE (ipykernel-4.7.0.tar.gz) = 92549
TIMESTAMP = 1516281067
SHA256 (ipykernel-4.8.0.tar.gz) = dedc199df6a38725c732986dfa606c245fb8fe0fe999b33a0c305b73d80c6774
SIZE (ipykernel-4.8.0.tar.gz) = 95005

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= urwid
PORTVERSION= 1.3.1
PORTREVISION= 1
PORTVERSION= 2.0.0
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View File

@ -1,2 +1,3 @@
SHA256 (urwid-1.3.1.tar.gz) = cfcec03e36de25a1073e2e35c2c7b0cc6969b85745715c3a025a31d9786896a1
SIZE (urwid-1.3.1.tar.gz) = 588549
TIMESTAMP = 1516281099
SHA256 (urwid-2.0.0.tar.gz) = 2ec42d29cd173a7126817174468614a17bcd9bafc0bdd47918f4e473301b4761
SIZE (urwid-2.0.0.tar.gz) = 603825

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= aws-sdk-core
DISTVERSION= 2.10.119
DISTVERSION= 2.10.120
CATEGORIES= devel rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1516191403
SHA256 (rubygem/aws-sdk-core-2.10.119.gem) = ff56d904974a18c7abdb672b83e197a9096222d1a848e901486996bb0d7210de
SIZE (rubygem/aws-sdk-core-2.10.119.gem) = 1191424
TIMESTAMP = 1516281165
SHA256 (rubygem/aws-sdk-core-2.10.120.gem) = 15c97742623cd88039e7cb4487f86acd83ea90a9c680b8e9933b44c98d182202
SIZE (rubygem/aws-sdk-core-2.10.120.gem) = 1191424

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= aws-sdk-resources
DISTVERSION= 2.10.119
DISTVERSION= 2.10.120
CATEGORIES= devel rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1516191411
SHA256 (rubygem/aws-sdk-resources-2.10.119.gem) = 194d6826ee5e84a34e1a5a740654f9fe7a02bec33c4f44a729e8db2ec5a045e0
SIZE (rubygem/aws-sdk-resources-2.10.119.gem) = 48640
TIMESTAMP = 1516281177
SHA256 (rubygem/aws-sdk-resources-2.10.120.gem) = 29808b87693716bc5328076b9dfdc36a300fdf24408d24cdf19817b858c8aa4e
SIZE (rubygem/aws-sdk-resources-2.10.120.gem) = 48640

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= aws-sdk
DISTVERSION= 2.10.119
DISTVERSION= 2.10.120
CATEGORIES= devel rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1516191419
SHA256 (rubygem/aws-sdk-2.10.119.gem) = aa30484c6b9ca293d707a47947d6e927208b8dd5d3f8b8164a2e9b31afb682d4
SIZE (rubygem/aws-sdk-2.10.119.gem) = 4608
TIMESTAMP = 1516281190
SHA256 (rubygem/aws-sdk-2.10.120.gem) = 4e5593cf98dcd8fc68a0007ff5da439f51824917c36ec4ad00129f1e2956b091
SIZE (rubygem/aws-sdk-2.10.120.gem) = 4608

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= bson
PORTVERSION= 4.2.2
PORTVERSION= 4.3.0
CATEGORIES= devel rubygems
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1499142326
SHA256 (rubygem/bson-4.2.2.gem) = 860f4d888aafd11ae4120023a2796c783054c8b4cfffc2696e766af4b3595285
SIZE (rubygem/bson-4.2.2.gem) = 80896
TIMESTAMP = 1516281203
SHA256 (rubygem/bson-4.3.0.gem) = ca0a6fd3614888fb255f219ce0cc81915f86e55401c2b3b57b6565d4b2ec6a1d
SIZE (rubygem/bson-4.3.0.gem) = 87552

View File

@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= jasmine-core
PORTVERSION= 2.8.0
PORTVERSION= 2.9.0
CATEGORIES= devel ruby
MASTER_SITES= RG

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1503678480
SHA256 (rubygem/jasmine-core-2.8.0.gem) = e148f4b054a2265ed80746b0ab0dcb2c5554d7a100171f460f404848c041f3a4
SIZE (rubygem/jasmine-core-2.8.0.gem) = 118272
TIMESTAMP = 1516281217
SHA256 (rubygem/jasmine-core-2.9.0.gem) = 34026320f521ce66b2774fda3611ba9bdf472c3d3380c4cf06ced6045aa8c7e8
SIZE (rubygem/jasmine-core-2.9.0.gem) = 121856

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= mongo
PORTVERSION= 2.4.3
PORTVERSION= 2.5.0
CATEGORIES= devel rubygems
MASTER_SITES= RG
@ -12,7 +12,7 @@ COMMENT= Ruby driver for MongoDB
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
RUN_DEPENDS= rubygem-bson>=${PORTVERSION}:devel/rubygem-bson
RUN_DEPENDS= rubygem-bson>=4.3.0:devel/rubygem-bson
NO_ARCH= yes
USE_RUBY= yes

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1500990068
SHA256 (rubygem/mongo-2.4.3.gem) = 9101d1ad2d75cce8a6120ef20db1e02f0cf147394020ce9550c8a698e376e3d1
SIZE (rubygem/mongo-2.4.3.gem) = 287232
TIMESTAMP = 1516281242
SHA256 (rubygem/mongo-2.5.0.gem) = b367f69e3fd6df97aca119ce7c82157c21caba384ace72213fd196097fd75b6f
SIZE (rubygem/mongo-2.5.0.gem) = 337920

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= tbb
PORTVERSION= 2018
PORTVERSION= 2018.2
CATEGORIES= devel
MAINTAINER= martymac@FreeBSD.org
@ -10,6 +10,11 @@ COMMENT= Library that provides thread building blocks
LICENSE= APACHE20
ONLY_FOR_ARCHS= amd64 armv6 i386
ONLY_FOR_ARCHS_REASON= has not been ported to this platform
USES= compiler gmake tar:tgz
USE_GITHUB= yes
GH_ACCOUNT= 01org
GH_TAGNAME= ${PORTVERSION:S/./_U/}
@ -23,11 +28,7 @@ SUB_LIST= prefix="${PREFIX}" \
OPTIONS_DEFINE= DOCS
PORTDOCS= *
ONLY_FOR_ARCHS= amd64 armv6 i386
ONLY_FOR_ARCHS_REASON= has not been ported to this platform
USE_LDCONFIG= yes
USES= compiler gmake tar:tgz
ALL_TARGET= default
CC_BASENAME= ${CC:C,^.*/,,}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1505454798
SHA256 (01org-tbb-2018_GH0.tar.gz) = 94f643f1edfaccb57d64b503c7c96f00dec64e8635c054bbaa33855d72c5822d
SIZE (01org-tbb-2018_GH0.tar.gz) = 2889943
TIMESTAMP = 1515705707
SHA256 (01org-tbb-2018.2-2018_U2_GH0.tar.gz) = 78bb9bae474736d213342f01fe1a6d00c6939d5c75b367e2e43e7bf29a6d8eca
SIZE (01org-tbb-2018.2-2018_U2_GH0.tar.gz) = 2905393

View File

@ -29,6 +29,8 @@ include/tbb/internal/_aggregator_impl.h
include/tbb/internal/_concurrent_queue_impl.h
include/tbb/internal/_concurrent_unordered_impl.h
include/tbb/internal/_flow_graph_async_msg_impl.h
include/tbb/internal/_flow_graph_body_impl.h
include/tbb/internal/_flow_graph_cache_impl.h
include/tbb/internal/_flow_graph_impl.h
include/tbb/internal/_flow_graph_indexer_impl.h
include/tbb/internal/_flow_graph_item_buffer_impl.h
@ -42,6 +44,7 @@ include/tbb/internal/_mutex_padding.h
include/tbb/internal/_range_iterator.h
include/tbb/internal/_tbb_hash_compare_impl.h
include/tbb/internal/_tbb_strings.h
include/tbb/internal/_tbb_trace_impl.h
include/tbb/internal/_tbb_windef.h
include/tbb/internal/_template_helpers.h
include/tbb/internal/_x86_eliding_mutex_impl.h

View File

@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
PORTREVISION= 0
.else
# dns/bind9xx here
PORTREVISION= 0
PORTREVISION= 1
.endif
CATEGORIES= dns net ipv6
MASTER_SITES= LOCAL/mat/bind

View File

@ -2,92 +2,92 @@
; $FreeBSD$
;
; This file holds the information on root name servers needed to
; This file holds the information on root name servers needed to
; initialize cache of Internet domain name servers
; (e.g. reference this file in the "cache . <file>"
; configuration file of BIND domain name servers).
;
; configuration file of BIND domain name servers).
;
; This file is made available by InterNIC
; under anonymous FTP as
; file /domain/named.cache
; file /domain/named.cache
; on server FTP.INTERNIC.NET
; -OR- RS.INTERNIC.NET
;
; last update: April 11, 2017
; related version of root zone: 2017041101
;
; formerly NS.INTERNIC.NET
;
; last update: November 16, 2017
; related version of root zone: 2017111601
;
; FORMERLY NS.INTERNIC.NET
;
. 3600000 NS A.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4
A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
;
; FORMERLY NS1.ISI.EDU
;
; FORMERLY NS1.ISI.EDU
;
. 3600000 NS B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b
;
; FORMERLY C.PSI.NET
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
;
; FORMERLY C.PSI.NET
;
. 3600000 NS C.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12
C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c
;
; FORMERLY TERP.UMD.EDU
;
; FORMERLY TERP.UMD.EDU
;
. 3600000 NS D.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13
D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d
;
;
; FORMERLY NS.NASA.GOV
;
. 3600000 NS E.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10
E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:a8::e
;
;
; FORMERLY NS.ISC.ORG
;
. 3600000 NS F.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241
F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f
;
;
; FORMERLY NS.NIC.DDN.MIL
;
. 3600000 NS G.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4
G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::d0d
;
;
; FORMERLY AOS.ARL.ARMY.MIL
;
. 3600000 NS H.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53
H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53
;
;
; FORMERLY NIC.NORDU.NET
;
. 3600000 NS I.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17
I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53
;
;
; OPERATED BY VERISIGN, INC.
;
. 3600000 NS J.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30
J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30
;
;
; OPERATED BY RIPE NCC
;
. 3600000 NS K.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129
K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1
;
;
; OPERATED BY ICANN
;
. 3600000 NS L.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42
L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9f::42
;
;
; OPERATED BY WIDE
;
. 3600000 NS M.ROOT-SERVERS.NET.

View File

@ -3,7 +3,7 @@
PORTNAME= bind
PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
PORTREVISION= 0
PORTREVISION= 1
CATEGORIES= dns net ipv6
MASTER_SITES= ISC/bind9/${ISCVERSION}
PKGNAMESUFFIX= 910

View File

@ -2,92 +2,92 @@
; $FreeBSD$
;
; This file holds the information on root name servers needed to
; This file holds the information on root name servers needed to
; initialize cache of Internet domain name servers
; (e.g. reference this file in the "cache . <file>"
; configuration file of BIND domain name servers).
;
; configuration file of BIND domain name servers).
;
; This file is made available by InterNIC
; under anonymous FTP as
; file /domain/named.cache
; file /domain/named.cache
; on server FTP.INTERNIC.NET
; -OR- RS.INTERNIC.NET
;
; last update: April 11, 2017
; related version of root zone: 2017041101
;
; formerly NS.INTERNIC.NET
;
; last update: November 16, 2017
; related version of root zone: 2017111601
;
; FORMERLY NS.INTERNIC.NET
;
. 3600000 NS A.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4
A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
;
; FORMERLY NS1.ISI.EDU
;
; FORMERLY NS1.ISI.EDU
;
. 3600000 NS B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b
;
; FORMERLY C.PSI.NET
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
;
; FORMERLY C.PSI.NET
;
. 3600000 NS C.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12
C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c
;
; FORMERLY TERP.UMD.EDU
;
; FORMERLY TERP.UMD.EDU
;
. 3600000 NS D.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13
D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d
;
;
; FORMERLY NS.NASA.GOV
;
. 3600000 NS E.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10
E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:a8::e
;
;
; FORMERLY NS.ISC.ORG
;
. 3600000 NS F.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241
F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f
;
;
; FORMERLY NS.NIC.DDN.MIL
;
. 3600000 NS G.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4
G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::d0d
;
;
; FORMERLY AOS.ARL.ARMY.MIL
;
. 3600000 NS H.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53
H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53
;
;
; FORMERLY NIC.NORDU.NET
;
. 3600000 NS I.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17
I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53
;
;
; OPERATED BY VERISIGN, INC.
;
. 3600000 NS J.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30
J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30
;
;
; OPERATED BY RIPE NCC
;
. 3600000 NS K.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129
K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1
;
;
; OPERATED BY ICANN
;
. 3600000 NS L.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42
L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9f::42
;
;
; OPERATED BY WIDE
;
. 3600000 NS M.ROOT-SERVERS.NET.

View File

@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
PORTREVISION= 0
.else
# dns/bind912 here
PORTREVISION= 0
PORTREVISION= 1
.endif
CATEGORIES= dns net ipv6
MASTER_SITES= ISC/bind9/${ISCVERSION}

View File

@ -2,92 +2,92 @@
; $FreeBSD$
;
; This file holds the information on root name servers needed to
; This file holds the information on root name servers needed to
; initialize cache of Internet domain name servers
; (e.g. reference this file in the "cache . <file>"
; configuration file of BIND domain name servers).
;
; configuration file of BIND domain name servers).
;
; This file is made available by InterNIC
; under anonymous FTP as
; file /domain/named.cache
; file /domain/named.cache
; on server FTP.INTERNIC.NET
; -OR- RS.INTERNIC.NET
;
; last update: April 11, 2017
; related version of root zone: 2017041101
;
; formerly NS.INTERNIC.NET
;
; last update: November 16, 2017
; related version of root zone: 2017111601
;
; FORMERLY NS.INTERNIC.NET
;
. 3600000 NS A.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4
A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
;
; FORMERLY NS1.ISI.EDU
;
; FORMERLY NS1.ISI.EDU
;
. 3600000 NS B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b
;
; FORMERLY C.PSI.NET
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
;
; FORMERLY C.PSI.NET
;
. 3600000 NS C.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12
C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c
;
; FORMERLY TERP.UMD.EDU
;
; FORMERLY TERP.UMD.EDU
;
. 3600000 NS D.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13
D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d
;
;
; FORMERLY NS.NASA.GOV
;
. 3600000 NS E.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10
E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:a8::e
;
;
; FORMERLY NS.ISC.ORG
;
. 3600000 NS F.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241
F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f
;
;
; FORMERLY NS.NIC.DDN.MIL
;
. 3600000 NS G.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4
G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::d0d
;
;
; FORMERLY AOS.ARL.ARMY.MIL
;
. 3600000 NS H.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53
H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53
;
;
; FORMERLY NIC.NORDU.NET
;
. 3600000 NS I.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17
I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53
;
;
; OPERATED BY VERISIGN, INC.
;
. 3600000 NS J.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30
J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30
;
;
; OPERATED BY RIPE NCC
;
. 3600000 NS K.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129
K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1
;
;
; OPERATED BY ICANN
;
. 3600000 NS L.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42
L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9f::42
;
;
; OPERATED BY WIDE
;
. 3600000 NS M.ROOT-SERVERS.NET.

View File

@ -3,7 +3,7 @@
PORTNAME= bind
PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc/.rc/}
PORTREVISION= 0
PORTREVISION= 1
CATEGORIES= dns net ipv6
MASTER_SITES= ISC/bind9/${ISCVERSION}
PKGNAMESUFFIX= 99

View File

@ -2,92 +2,92 @@
; $FreeBSD$
;
; This file holds the information on root name servers needed to
; This file holds the information on root name servers needed to
; initialize cache of Internet domain name servers
; (e.g. reference this file in the "cache . <file>"
; configuration file of BIND domain name servers).
;
; configuration file of BIND domain name servers).
;
; This file is made available by InterNIC
; under anonymous FTP as
; file /domain/named.cache
; file /domain/named.cache
; on server FTP.INTERNIC.NET
; -OR- RS.INTERNIC.NET
;
; last update: April 11, 2017
; related version of root zone: 2017041101
;
; formerly NS.INTERNIC.NET
;
; last update: November 16, 2017
; related version of root zone: 2017111601
;
; FORMERLY NS.INTERNIC.NET
;
. 3600000 NS A.ROOT-SERVERS.NET.
A.ROOT-SERVERS.NET. 3600000 A 198.41.0.4
A.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:ba3e::2:30
;
; FORMERLY NS1.ISI.EDU
;
; FORMERLY NS1.ISI.EDU
;
. 3600000 NS B.ROOT-SERVERS.NET.
B.ROOT-SERVERS.NET. 3600000 A 192.228.79.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:84::b
;
; FORMERLY C.PSI.NET
B.ROOT-SERVERS.NET. 3600000 A 199.9.14.201
B.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:200::b
;
; FORMERLY C.PSI.NET
;
. 3600000 NS C.ROOT-SERVERS.NET.
C.ROOT-SERVERS.NET. 3600000 A 192.33.4.12
C.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2::c
;
; FORMERLY TERP.UMD.EDU
;
; FORMERLY TERP.UMD.EDU
;
. 3600000 NS D.ROOT-SERVERS.NET.
D.ROOT-SERVERS.NET. 3600000 A 199.7.91.13
D.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2d::d
;
;
; FORMERLY NS.NASA.GOV
;
. 3600000 NS E.ROOT-SERVERS.NET.
E.ROOT-SERVERS.NET. 3600000 A 192.203.230.10
E.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:a8::e
;
;
; FORMERLY NS.ISC.ORG
;
. 3600000 NS F.ROOT-SERVERS.NET.
F.ROOT-SERVERS.NET. 3600000 A 192.5.5.241
F.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:2f::f
;
;
; FORMERLY NS.NIC.DDN.MIL
;
. 3600000 NS G.ROOT-SERVERS.NET.
G.ROOT-SERVERS.NET. 3600000 A 192.112.36.4
G.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:12::d0d
;
;
; FORMERLY AOS.ARL.ARMY.MIL
;
. 3600000 NS H.ROOT-SERVERS.NET.
H.ROOT-SERVERS.NET. 3600000 A 198.97.190.53
H.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:1::53
;
;
; FORMERLY NIC.NORDU.NET
;
. 3600000 NS I.ROOT-SERVERS.NET.
I.ROOT-SERVERS.NET. 3600000 A 192.36.148.17
I.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fe::53
;
;
; OPERATED BY VERISIGN, INC.
;
. 3600000 NS J.ROOT-SERVERS.NET.
J.ROOT-SERVERS.NET. 3600000 A 192.58.128.30
J.ROOT-SERVERS.NET. 3600000 AAAA 2001:503:c27::2:30
;
;
; OPERATED BY RIPE NCC
;
. 3600000 NS K.ROOT-SERVERS.NET.
K.ROOT-SERVERS.NET. 3600000 A 193.0.14.129
K.ROOT-SERVERS.NET. 3600000 AAAA 2001:7fd::1
;
;
; OPERATED BY ICANN
;
. 3600000 NS L.ROOT-SERVERS.NET.
L.ROOT-SERVERS.NET. 3600000 A 199.7.83.42
L.ROOT-SERVERS.NET. 3600000 AAAA 2001:500:9f::42
;
;
; OPERATED BY WIDE
;
. 3600000 NS M.ROOT-SERVERS.NET.

View File

@ -0,0 +1,14 @@
--- sdk/codelite_cppcheck/CMakeLists.txt.orig 2018-01-17 21:37:24 UTC
+++ sdk/codelite_cppcheck/CMakeLists.txt
@@ -5,8 +5,10 @@ cmake_minimum_required(VERSION 2.6.2)
# visual studio, and in our makefiles.
project(codelitegcc)
+set (CMAKE_INCLUDE_DIRECTORIES ON)
+
# Include paths
-include_directories("${CL_SRC_ROOT}/sdk/codelite_cppcheck/lib" "${CL_SRC_ROOT}/sdk/codelite_cppcheck/cli")
+include_directories(BEFORE "${CL_SRC_ROOT}/sdk/codelite_cppcheck/lib" "${CL_SRC_ROOT}/sdk/codelite_cppcheck/cli")
set( ADDITIONAL_LIBRARIES "" )

View File

@ -450,6 +450,9 @@ do-build:
fi ; \
cd ${WRKSRC}/instsetoo_native ; \
. ../${FREEBSD_ENV_SET} ; \
if [ -n "${HOME}" -a ! -w "${HOME}" ]; then \
export HOME=/tmp ; \
fi ; \
build.pl --all -P$${numproc} -- -P$${dmproc}
do-install:

View File

@ -0,0 +1,10 @@
--- solenv/gbuild/platform/freebsd.mk.orig 2017-11-27 13:50:25 UTC
+++ solenv/gbuild/platform/freebsd.mk
@@ -94,6 +94,7 @@ gb_CXXFLAGS := \
-fno-use-cxa-atexit \
-fvisibility-inlines-hidden \
-fvisibility=hidden \
+ -std=gnu++98 \
-pipe
ifeq ($(COM),CLANG)
gb_CXXFLAGS += -DHAVE_STL_INCLUDE_PATH

View File

@ -0,0 +1,11 @@
--- solenv/inc/unxfbsd.mk.orig 2017-11-27 13:50:28 UTC
+++ solenv/inc/unxfbsd.mk
@@ -96,7 +96,7 @@ CFLAGSEXCEPTIONS=-fexceptions -fno-enforce-eh-specs
CFLAGS_NO_EXCEPTIONS=-fno-exceptions
# -fpermissive should be removed as soon as possible
-CFLAGSCXX= -pipe $(ARCH_FLAGS)
+CFLAGSCXX= -pipe $(ARCH_FLAGS) -std=gnu++98
.IF "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"
CFLAGSCXX += -fvisibility-inlines-hidden
.ENDIF # "$(HAVE_GCC_VISIBILITY_FEATURE)" == "TRUE"

View File

@ -0,0 +1,11 @@
--- src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp.orig 2018-01-15 14:56:07 UTC
+++ src/VBox/Runtime/common/err/RTErrConvertFromErrno.cpp
@@ -302,7 +302,7 @@ RTDECL(int) RTErrConvertFromErrno(unsigned uNativeCod
case EILSEQ: return VERR_NO_TRANSLATION;
#endif
#ifdef ERESTART
- case ERESTART: return VERR_INTERRUPTED;/** @todo fix duplicate error?*/
+ case (unsigned)ERESTART: return VERR_INTERRUPTED;/** @todo fix duplicate error?*/
#endif
#ifdef ESTRPIPE
//case ESTRPIPE 86 /* Streams pipe error */

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= wordpress
DISTVERSION= 4.9.1
DISTVERSION= 4.9.2
DISTVERSIONSUFFIX= -fr_FR
PORTEPOCH= 1
CATEGORIES= french www

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512203685
SHA256 (wordpress-4.9.1-fr_FR.tar.gz) = 981e36d4d9aff1f67f49f78ee904f1ac7e2f1d0e5e12bfa1dd219c0ebb2f09cb
SIZE (wordpress-4.9.1-fr_FR.tar.gz) = 10147920
TIMESTAMP = 1516345612
SHA256 (wordpress-4.9.2-fr_FR.tar.gz) = ca78c1aad69db1ab0dbcaeff82a9505c311554776ef98d056fe9e9ad4ef10a23
SIZE (wordpress-4.9.2-fr_FR.tar.gz) = 9307544

View File

@ -22,9 +22,6 @@ RUN_DEPENDS= soya_editor:graphics/py-soya3d@${FLAVOR} \
${PYTHON_PKGNAMEPREFIX}cerealizer>0:security/py-cerealizer@${FLAVOR} \
${PYTHON_PKGNAMEPREFIX}twisted>=0:devel/py-twisted@${FLAVOR}
BROKEN= fails to package: pkg-static: py27-twisted-17.5.0_1 conflicts with py27-twistedCore-15.2.1 (installs files into the same place)
DEPRECATED= Broken for more than 6 months
EXPIRATION_DATE= 2018-01-27
NO_ARCH= yes
USES= gettext python:2.7 tar:bzip2

View File

@ -29,7 +29,6 @@ LIB_DEPENDS= libFLAC.so:audio/flac \
libpng.so:graphics/png
BROKEN_aarch64= fails to compile: polymost.cpp:2403:18: non-constant-expression cannot be narrowed from type 'long' to 'int32_t' (aka 'int') in initializer list
BROKEN_sparc64= fails to compile
USES= gmake pkgconfig tar:xz
USE_GL= gl glu
@ -48,6 +47,8 @@ PORTEXAMPLES= *
OPTIONS_DEFINE= EXAMPLES GCC HRP OFFENSIVE SHAREWARE VOXEL
OPTIONS_DEFINE_i386= ASM
OPTIONS_DEFAULT_i386= ASM
OPTIONS_DEFAULT_powerpc= GCC
OPTIONS_DEFAULT_sparc64= GCC
ASM_BUILD_DEPENDS= nasm:devel/nasm
ASM_MAKE_ARGS_OFF= NOASM=1

View File

@ -1,10 +1,10 @@
# $FreeBSD$
PORTNAME= netpanzer
PORTVERSION= 0.8.4
PORTREVISION= 4
PORTVERSION= 0.8.7
DISTVERSIONSUFFIX= -source
CATEGORIES= games
MASTER_SITES= LOCAL/madpilot/netpanzer
MASTER_SITES= http://www.netpanzer.info/Download/NetPanzer/Releases/${PORTVERSION}/
MAINTAINER= madpilot@FreeBSD.org
COMMENT= Real time, isometric view, tank multiplayer strategy game
@ -14,11 +14,16 @@ LICENSE_FILE= ${WRKSRC}/COPYING
LDFLAGS+= -lpthreads
USES= scons tar:bzip2
USES= scons zip
USE_SDL= sdl mixer image
USE_GNOME= libxml2
SCONS_ARGS+= datadir="${DATADIR}"
SCONS_BUILDENV= ${SCONS_ENV}
MAKE_ARGS+= datadir="${DATADIR}"
NO_WRKSUBDIR= yes
PLIST_FILES= bin/netpanzer \
share/applications/netpanzer.desktop \
share/pixmaps/netpanzer.png \
share/pixmaps/netpanzer.xpm
PORTDOCS= *
PORTDATA= *
@ -29,13 +34,15 @@ post-configure:
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/netpanzer ${STAGEDIR}${PREFIX}/bin
${MKDIR} ${STAGEDIR}${DATADIR}
(cd ${WRKSRC} && ${COPYTREE_SHARE} "cache maps pics powerups scripts sound units wads" ${STAGEDIR}${DATADIR})
${INSTALL_MAN} ${WRKSRC}/docs/netpanzer.6 ${STAGEDIR}${MANPREFIX}/man/man6
${INSTALL_DATA} ${WRKSRC}/netpanzer.desktop ${STAGEDIR}${PREFIX}/share/applications
${INSTALL_DATA} ${WRKSRC}/netpanzer.png ${WRKSRC}/netpanzer.xpm ${STAGEDIR}${PREFIX}/share/pixmaps
(cd ${WRKSRC} && ${COPYTREE_SHARE} "cache maps pics powerups scripts sound units wads" \
${STAGEDIR}${DATADIR})
${INSTALL_DATA} ${WRKSRC}/support/win32/netpanzer.desktop ${STAGEDIR}${PREFIX}/share/applications
${INSTALL_DATA} ${WRKSRC}/netpanzer.png ${WRKSRC}/support/icon/netpanzer.xpm \
${STAGEDIR}${PREFIX}/share/pixmaps
${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} COPYING ChangeLog README RELNOTES TODO ${STAGEDIR}${DOCSDIR})
(cd ${WRKSRC}/docs && ${INSTALL_DATA} Doxyfile code-notes.txt coding.txt serverhowto.html tipofday.txt ${STAGEDIR}${DOCSDIR})
(cd ${WRKSRC} && ${INSTALL_DATA} COPYING README ${STAGEDIR}${DOCSDIR})
(cd ${WRKSRC}/docs && ${INSTALL_DATA} code-notes.txt coding.txt old/serverhowto.html \
${STAGEDIR}${DOCSDIR})
do-fetch-svn:
svn export svn://svn.berlios.de/${PORTNAME}/tags/${PORTNAME}/${PORTVERSION} ${PORTNAME}-${PORTVERSION}

View File

@ -1,2 +1,3 @@
SHA256 (netpanzer-0.8.4.tar.bz2) = 96ee69fbe0f84cd46647e35f0983c9ef8869ad2f2b9e244a82d34d8ea6279712
SIZE (netpanzer-0.8.4.tar.bz2) = 11731818
TIMESTAMP = 1516265645
SHA256 (netpanzer-0.8.7-source.zip) = 90e2b78d43cc32fb3f6af027788162dc9d272941f9630b43fc34f203a55c86a7
SIZE (netpanzer-0.8.7-source.zip) = 13466285

View File

@ -1,19 +1,19 @@
--- SConstruct.orig 2011-12-22 19:32:06.000000000 +0100
+++ SConstruct 2012-04-24 23:49:38.000000000 +0200
@@ -69,7 +69,7 @@
('crossmingwsdlconfig','sets the sdl-config full path for mingw cross compiler', 'sdl-config')
--- SConstruct.orig 2016-04-09 13:14:00 UTC
+++ SConstruct
@@ -95,7 +95,7 @@ opts.AddVariables(
('compilerprefix', 'sets the prefix for the cross linux compiler, example: i686-pc-linux-gnu-', ''),
)
-env = Environment(ENV = os.environ, options = opts)
+env = Environment(ENV = os.environ, options = opts, CC = os.environ['CC'], CXX = os.environ['CXX'])
Help(opts.GenerateHelpText(env))
################################################################
@@ -240,6 +240,7 @@
SetupSpawn(env)
env.Append( CCFLAGS = [ '-DPACKAGE_VERSION=\\"' + NPVERSION + '\\"' ] )
@@ -202,6 +202,7 @@ elif thisplatform == 'win32':
else:
networkenv.ParseConfig(env['sdlconfig'] + ' --cflags --libs')
env.ParseConfig(env['sdlconfig'] + ' --cflags --libs')
+ env.Append( _LIBFLAGS = [ '-L%%LOCALBASE%%/lib' ] )
env.Append( NPLIBS = [ 'SDL_mixer' ] )
# for crossmingw platform
# note: for some magic reason, now doesn't need to put the full path for
# SDL_mixer when using mingw crosscompilation
env.Append( LIBS = ['SDL_mixer' ] )

View File

@ -1,11 +0,0 @@
--- src/Lib/ArrayUtil/QueueTemplate.hpp.orig 2012-04-24 23:51:05.000000000 +0200
+++ src/Lib/ArrayUtil/QueueTemplate.hpp 2012-04-24 23:51:15.000000000 +0200
@@ -42,7 +42,7 @@
bool enqueue(const TYPE& object )
{
- add( object, (rear + 1) % this->size );
+ this->add( object, (rear + 1) % this->size );
rear = (rear + 1) % this->size;
if ( front == rear )

View File

@ -1,6 +1,6 @@
--- src/Lib/Network/Address.hpp.orig 2010-01-19 17:08:17.000000000 +0100
+++ src/Lib/Network/Address.hpp 2012-04-20 17:34:26.306480287 +0200
@@ -47,7 +47,7 @@
--- src/Lib/Network/Address.hpp.orig 2016-04-09 13:14:00 UTC
+++ src/Lib/Network/Address.hpp
@@ -62,7 +62,7 @@ class Address (public)
struct sockaddr * getSockaddr() const { return (struct sockaddr *)&ss; };
socklen_t getSockaddrLen() const
{

View File

@ -0,0 +1,11 @@
--- src/Lib/Network/SocketBase.cpp.orig 2016-04-09 13:14:00 UTC
+++ src/Lib/Network/SocketBase.cpp
@@ -147,7 +147,7 @@ SocketBase::bindSocketTo(const Address& toaddr) throw(
{
if ( state == CONFIGURED )
{
- int res = bind(sockfd, toaddr.getSockaddr(), toaddr.getSockaddrLen());
+ int res = ::bind(sockfd, toaddr.getSockaddr(), toaddr.getSockaddrLen());
if(res == SOCKET_ERROR) {
lastError = GET_NET_ERROR();
doClose();

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