- Update to 20160717

- Remove patches as go.net and go.crypto are now in the standard library locations
This commit is contained in:
Carlo Strub 2016-08-03 19:40:40 +00:00
parent 001b628a5e
commit 9c2f5897f7
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=419545
4 changed files with 8 additions and 29 deletions

View File

@ -1,9 +1,8 @@
# $FreeBSD$
PORTNAME= xmpp-client
PORTVERSION= 20160110
PORTVERSION= 20160717
CATEGORIES= net-im
MASTER_SITES= http://c-s.li/ports/
MAINTAINER= cs@FreeBSD.org
COMMENT= XMPP client with OTR support
@ -11,8 +10,11 @@ COMMENT= XMPP client with OTR support
LICENSE= BSD3CLAUSE
BUILD_DEPENDS= ${LOCALBASE}/${GO_LIBDIR}/golang.org/x/crypto/bcrypt.a:security/go.crypto \
${LOCALBASE}/${GO_LIBDIR}/code.google.com/p/go.net/dict.a:net/go.net
${LOCALBASE}/${GO_LIBDIR}/golang.org/x/net/dict.a:net/go.net
USE_GITHUB= yes
GH_ACCOUNT= agl
GH_TAGNAME= abbf9020393e8caae3e8996a16ce48446e31cf0e
USES= go
PLIST_FILES= bin/xmpp-client
GO_PKGNAME= github.com/agl/${PORTNAME}

View File

@ -1,2 +1,3 @@
SHA256 (xmpp-client-20160110.tar.gz) = 3d1ef727c9bc2300a028e086c3858aeb8014494b3edd8a99ea9246bb0ca9ae41
SIZE (xmpp-client-20160110.tar.gz) = 38833
TIMESTAMP = 1470252820
SHA256 (agl-xmpp-client-20160717-abbf9020393e8caae3e8996a16ce48446e31cf0e_GH0.tar.gz) = 29a7ed8c97d3d313d0979296728d44f94693354d5218e19f29927a1ee57b3678
SIZE (agl-xmpp-client-20160717-abbf9020393e8caae3e8996a16ce48446e31cf0e_GH0.tar.gz) = 38832

View File

@ -1,11 +0,0 @@
--- config.go.orig 2016-01-13 19:22:20 UTC
+++ config.go
@@ -14,7 +14,7 @@ import (
"github.com/agl/xmpp-client/xmpp"
"golang.org/x/crypto/otr"
"golang.org/x/crypto/ssh/terminal"
- "golang.org/x/net/proxy"
+ "code.google.com/p/go.net/proxy"
)
type Config struct {

View File

@ -1,13 +0,0 @@
--- ui.go.orig 2016-01-13 19:21:21 UTC
+++ ui.go
@@ -26,8 +26,8 @@ import (
"github.com/agl/xmpp-client/xmpp"
"golang.org/x/crypto/otr"
"golang.org/x/crypto/ssh/terminal"
- "golang.org/x/net/html"
- "golang.org/x/net/proxy"
+ "code.google.com/p/go.net/html"
+ "code.google.com/p/go.net/proxy"
)
var configFile *string = flag.String("config-file", "", "Location of the config file")