only run offline tests by default

This commit is contained in:
idk
2019-02-28 20:32:28 -05:00
parent 4a8fc1acfe
commit 88c615b411
6 changed files with 37 additions and 9 deletions

View File

@ -3,14 +3,14 @@ goSam
A go library for using the [I2P](https://geti2p.net/en/) Simple Anonymous A go library for using the [I2P](https://geti2p.net/en/) Simple Anonymous
Messaging ([SAM version 3.0](https://geti2p.net/en/docs/api/samv3)) bridge. It Messaging ([SAM version 3.0](https://geti2p.net/en/docs/api/samv3)) bridge. It
has limited support for SAM version 3.1 signature types. has support for SAM version 3.1 signature types.
This is in an **early development stage**. I would love to hear about any This is in an **early development stage**. I would love to hear about any
issues or ideas for improvement. issues or ideas for improvement.
## Installation ## Installation
``` ```
go get github.com/cryptix/goSam go get github.com/eyedeekay/goSam
``` ```
## Using it for HTTP Transport ## Using it for HTTP Transport

View File

@ -1,3 +1,5 @@
// +build nettest
package goSam package goSam
import "testing" import "testing"

23
debian/changelog vendored
View File

@ -1,4 +1,20 @@
golang-github-eyedeekay-gosam (0.1.0+git20190221.2896c83) UNRELEASED; urgency=medium golang-github-eyedeekay-gosam (0.1.0+git20190221.2896c83ubuntu1+nmu2) bionic; urgency=medium
[ idk ]
* incorporate cryptix-debug without the counter
* incorporate cryptix-debug without the counter
* fix module
-- lair repo key <problemsolver@openmailbox.org> Thu, 28 Feb 2019 20:02:33 -0500
golang-github-eyedeekay-gosam (0.1.0+git20190221.2896c83ubuntu1+nmu1) bionic; urgency=medium
* add sid
*
-- idk <hankhill19580@gmail.com> Thu, 28 Feb 2019 18:52:01 -0500
golang-github-eyedeekay-gosam (0.1.0+git20190221.2896c83ubuntu1) bionic; urgency=medium
[ idk ] [ idk ]
* Update changelog for 0.1.0+git20190221.2896c83-1 release * Update changelog for 0.1.0+git20190221.2896c83-1 release
@ -14,4 +30,7 @@ golang-github-eyedeekay-gosam (0.1.0+git20190221.2896c83) UNRELEASED; urgency=me
* remove 'commented-out' id * remove 'commented-out' id
* Initial release (Closes: TODO) * Initial release (Closes: TODO)
-- idk <hankhill19580@gmail.com> Sat, 23 Feb 2019 11:43:05 -0500 [ idk ]
* add bionic
-- idk <hankhill19580@gmail.com> Thu, 28 Feb 2019 18:51:23 -0500

13
debian/control vendored
View File

@ -5,19 +5,22 @@ Maintainer: idk <hankhill19580@gmail.com>
Uploaders: idk <hankhill19580@gmail.com> Uploaders: idk <hankhill19580@gmail.com>
Build-Depends: debhelper (>= 11), Build-Depends: debhelper (>= 11),
dh-golang, dh-golang,
golang-any golang-any,
i2pd | i2p
Standards-Version: 4.2.1 Standards-Version: 4.2.1
Homepage: https://github.com/eyedeekay/gosam Homepage: https://github.com/eyedeekay/gosam
Vcs-Browser: https:/github.com/eyedeekay/gosam Vcs-Browser: https:/github.com/eyedeekay/gosam
Vcs-Git: https://github.com/eyedeekay/gosam.git Vcs-Git: https://github.com/eyedeekay/gosam.git
XS-Go-Import-Path: github.com/eyedeekay/gosam XS-Go-Import-Path: github.com/eyedeekay/gosam
Testsuite: autopkgtest-pkg-go Testsuite: autopkgtest-pkg-go
Launchpad-Bugs-Fixed: #1818159
Package: golang-github-eyedeekay-gosam-dev Package: golang-github-eyedeekay-gosam-dev
Architecture: all Architecture: all
Depends: ${misc:Depends} Depends: ${misc:Depends},
Description: A go library for using the I2P Simple Anonymous Messaging (SAM version 3.0) bridge i2pd | i2p
goSam A go library for using the I2P (https://geti2p.net/en/) Description: A go library for using the I2P (https://geti2p.net/en/)
Simple Anonymous Messaging (SAM version 3.0 Simple Anonymous Messaging (SAM version 3.1
(https://geti2p.net/en/docs/api/samv3)) bridge (https://geti2p.net/en/docs/api/samv3)) bridge
. .
Launchpad-Bugs-Fixed: #1818159

View File

@ -1,3 +1,5 @@
// +build nettest
package goSam package goSam
import ( import (

View File

@ -1,3 +1,5 @@
// +build nettest
package goSam package goSam
import ( import (