From 36c0a25ae93c2e0c47ec858c2aae794c410e2335 Mon Sep 17 00:00:00 2001 From: R4SAS Date: Thu, 6 Sep 2018 06:03:02 +0300 Subject: [PATCH] import i2pd package from chantisnake/chocolateyPackage --- README.md | 1 + i2pd/i2pd.nuspec | 145 +++++++++++++++++++++++++++++++ i2pd/tools/ChocolateyInstall.ps1 | 4 + 3 files changed, 150 insertions(+) create mode 100644 README.md create mode 100644 i2pd/i2pd.nuspec create mode 100644 i2pd/tools/ChocolateyInstall.ps1 diff --git a/README.md b/README.md new file mode 100644 index 0000000..36b7022 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +That repository for Chocolatey packages \ No newline at end of file diff --git a/i2pd/i2pd.nuspec b/i2pd/i2pd.nuspec new file mode 100644 index 0000000..90bf7a2 --- /dev/null +++ b/i2pd/i2pd.nuspec @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + i2pd + + + + 2.20.0 + + + + + + + I2P Daemon + PurpleI2P + + https://github.com/PurpleI2P/i2pd + http://i2pd.website/images/favicon.png + + + + + + + + i2pd admin network encryption + Full C++ implementation of I2P client + i2pd +==== + +[Русская версия](https://github.com/PurpleI2P/i2pd_docs_ru/blob/master/README.md) + +i2pd (I2P Daemon) is a full-featured C++ implementation of I2P client. + +I2P (Invisible Internet Protocol) is a universal anonymous network layer. +All communications over I2P are anonymous and end-to-end encrypted, participants +don't reveal their real IP addresses. + +I2P client is a software used for building and using anonymous I2P +networks. Such networks are commonly used for anonymous peer-to-peer +applications (filesharing, cryptocurrencies) and anonymous client-server +applications (websites, instant messengers, chat-servers). + +I2P allows people from all around the world to communicate and share information +without restrictions. + +* [Website](http://i2pd.website) +* [Documentation](https://i2pd.readthedocs.io/en/latest/) +* [Wiki](https://github.com/PurpleI2P/i2pd/wiki) +* [Tickets/Issues](https://github.com/PurpleI2P/i2pd/issues) +* [Specifications](https://geti2p.net/spec) +* [Twitter](https://twitter.com/hashtag/i2pd) + +Installing +---------- + +The easiest way to install i2pd is by using +[precompiled binaries](https://github.com/PurpleI2P/i2pd/releases/latest). +See [documentation](https://i2pd.readthedocs.io/en/latest/) for how to build +i2pd from source on your OS. + +**Supported systems:** + +* Linux x86/x64 - [![Build Status](https://travis-ci.org/PurpleI2P/i2pd.svg?branch=openssl)](https://travis-ci.org/PurpleI2P/i2pd) +* Windows - [![Build status](https://ci.appveyor.com/api/projects/status/1908qe4p48ff1x23?svg=true)](https://ci.appveyor.com/project/PurpleI2P/i2pd) +* Mac OS X +* FreeBSD +* Android +* iOS + +Using i2pd +---------- + +See [documentation](https://i2pd.readthedocs.io/en/latest/usage.html) and +[example config file](https://github.com/PurpleI2P/i2pd/blob/openssl/docs/i2pd.conf). + +Donations +--------- + +BTC: 1K7Ds6KUeR8ya287UC4rYTjvC96vXyZbDY +DASH: Xw8YUrQpYzP9tZBmbjqxS3M97Q7v3vJKUF +LTC: LKQirrYrDeTuAPnpYq5y7LVKtywfkkHi59 +ANC: AQJYweYYUqM1nVfLqfoSMpUMfzxvS4Xd7z +DOGE: DNXLQKziRPAsD9H3DFNjk4fLQrdaSX893Y + +License +------- + +This project is licensed under the BSD 3-clause license, which can be found in the file +LICENSE in the root of the project source code. + + + + + + + + + + chantisnake + https://github.com/PurpleI2P/i2pd/wikis + 1. Full implementation of NTCP2 +2. Provide assets for android +3. Single apk for arm7 and x86 android builds +4. Some fix in web console +5. Don't add address in RouterInfo if transport is disabled in config + https://github.com/chantisnake/chocolateyPackage + true + https://github.com/PurpleI2P/i2pd/blob/openssl/LICENSE + https://github.com/PurpleI2P/i2pd/issues + https://github.com/PurpleI2P/i2pd + + + + + + + \ No newline at end of file diff --git a/i2pd/tools/ChocolateyInstall.ps1 b/i2pd/tools/ChocolateyInstall.ps1 new file mode 100644 index 0000000..8762ed1 --- /dev/null +++ b/i2pd/tools/ChocolateyInstall.ps1 @@ -0,0 +1,4 @@ + +$ErrorActionPreference = 'Stop'; # stop on all errors + +Install-ChocolateyZipPackage -packageName 'i2pd' -UnzipLocation $(Split-Path -Parent $MyInvocation.MyCommand.Definition) -Url 'https://github.com/PurpleI2P/i2pd/releases/download/2.20.0/i2pd_2.20.0_win32_mingw.zip' -checksum 'AD9A910A50F42598E7425DF137A0FEDFF929E91F095FC284F055F2E4BB38258A' -checksumType 'sha256'-Url64 'https://github.com/PurpleI2P/i2pd/releases/download/2.20.0/i2pd_2.20.0_win64_mingw.zip' -checksum64 'B819B5F2C390E04C6CB4B5619498B5C0B2E948CEB4FE22FBAF3E0DB3A5EBC422' -checksumType64 'sha256'