1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Update to 2.18.0

This commit is contained in:
Dmitry Marakasov 2018-02-17 22:19:39 +00:00
parent 9e3e90903a
commit f34318c64e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=462197
6 changed files with 4 additions and 58 deletions

View File

@ -2,8 +2,7 @@
# $FreeBSD$
PORTNAME= i2pd
PORTVERSION= 2.17.0
PORTREVISION= 1
PORTVERSION= 2.18.0
CATEGORIES= security net-p2p
MAINTAINER= amdmi3@FreeBSD.org

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1512469109
SHA256 (PurpleI2P-i2pd-2.17.0_GH0.tar.gz) = 9afc79427300cabd4e50216466bcb5be980aee841dc2aea17a8c2ab60cd7918b
SIZE (PurpleI2P-i2pd-2.17.0_GH0.tar.gz) = 1874984
TIMESTAMP = 1518621300
SHA256 (PurpleI2P-i2pd-2.18.0_GH0.tar.gz) = 8834190418de0c4e56c46eb8b9dc4422ef14f1ad7d6591e9daae99493bf7170e
SIZE (PurpleI2P-i2pd-2.18.0_GH0.tar.gz) = 1868440

View File

@ -1,15 +0,0 @@
--- build/CMakeLists.txt.orig 2017-12-04 18:40:32 UTC
+++ build/CMakeLists.txt
@@ -461,12 +461,6 @@ if (WITH_BINARY)
fixup_bundle(\"${APPS}\" \"\" \"${DIRS}\")
" COMPONENT Runtime)
endif ()
-
- if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
- if (NOT (MSVC OR MSYS OR APPLE)) # for Clang build on Linux
- target_link_libraries("${PROJECT_NAME}" stdc++)
- endif()
- endif()
endif ()
install(FILES ../LICENSE

View File

@ -1,11 +0,0 @@
--- daemon/I2PControl.cpp.orig 2017-12-04 18:40:32 UTC
+++ daemon/I2PControl.cpp
@@ -35,7 +35,7 @@ namespace client
I2PControlService::I2PControlService (const std::string& address, int port):
m_IsRunning (false), m_Thread (nullptr),
m_Acceptor (m_Service, boost::asio::ip::tcp::endpoint(boost::asio::ip::address::from_string(address), port)),
- m_SSLContext (m_Service, boost::asio::ssl::context::sslv23),
+ m_SSLContext (boost::asio::ssl::context::sslv23),
m_ShutdownTimer (m_Service)
{
i2p::config::GetOption("i2pcontrol.password", m_Password);

View File

@ -1,16 +0,0 @@
--- libi2pd/I2PEndian.h.orig 2017-12-04 18:40:32 UTC
+++ libi2pd/I2PEndian.h
@@ -3,10 +3,10 @@
#include <inttypes.h>
#include <string.h>
-#if defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
-#include <endian.h>
-#elif __FreeBSD__
+#if defined(__FreeBSD__)
#include <sys/endian.h>
+#elif defined(__linux__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
+#include <endian.h>
#elif defined(__APPLE__) && defined(__MACH__)
#include <libkern/OSByteOrder.h>

View File

@ -1,11 +0,0 @@
--- libi2pd/Reseed.cpp.orig 2017-12-04 18:40:32 UTC
+++ libi2pd/Reseed.cpp
@@ -522,7 +522,7 @@ namespace data
boost::asio::io_service service;
boost::system::error_code ecode;
- boost::asio::ssl::context ctx(service, boost::asio::ssl::context::sslv23);
+ boost::asio::ssl::context ctx(boost::asio::ssl::context::sslv23);
ctx.set_verify_mode(boost::asio::ssl::context::verify_none);
boost::asio::ssl::stream<boost::asio::ip::tcp::socket> s(service, ctx);