pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

torsocks: Rename to torsocks-git



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Mon Oct 3 01:28:12 2016 +0200
Changeset:	da06e9e329e24f480fc7024c01b88e244fe168a1

Modified Files:
	Makefile
Added Files:
	torsocks-git/DESCR
	torsocks-git/Makefile
	torsocks-git/PLIST
	torsocks-git/TODO
Removed Files:
	torsocks/DESCR
	torsocks/Makefile
	torsocks/PLIST
	torsocks/TODO

Log Message:
torsocks: Rename to torsocks-git

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=da06e9e329e24f480fc7024c01b88e244fe168a1

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile              |  2 +-
 torsocks-git/DESCR    | 15 +++++++++++++++
 torsocks-git/Makefile | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
 torsocks-git/PLIST    | 11 +++++++++++
 torsocks-git/TODO     |  3 +++
 torsocks/DESCR        | 15 ---------------
 torsocks/Makefile     | 49 -------------------------------------------------
 torsocks/PLIST        | 11 -----------
 torsocks/TODO         |  3 ---
 9 files changed, 79 insertions(+), 79 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index a483c31..d6b7d53 100644
--- a/Makefile
+++ b/Makefile
@@ -4088,7 +4088,7 @@ SUBDIR+=	tops-bin
 SUBDIR+=	torcs
 SUBDIR+=	torque2d
 SUBDIR+=	torque3d
-SUBDIR+=	torsocks
+SUBDIR+=	torsocks-git
 SUBDIR+=	tortunnel
 SUBDIR+=	totem
 SUBDIR+=	totem-pl-parser
diff --git a/torsocks-git/DESCR b/torsocks-git/DESCR
new file mode 100644
index 0000000..4043c28
--- /dev/null
+++ b/torsocks-git/DESCR
@@ -0,0 +1,15 @@
+Torsocks allows you to use most applications in a safe way with
+Tor. It ensures that DNS requests are handled safely and explicitly
+rejects any traffic other then TCP from the application you're
+using.
+
+Torsocks is an ELF shared library that is loaded before all others.
+The library overrides every needed Internet communication libc
+function calls such as connect(2) or gethostbyname(3).
+
+This process is transparent to the user and if torsocks detects
+any communication that can't go through the Tor network such as
+UDP traffic for instance, the connection is denied. If, in some
+way, there is no way for torsocks to provide the Tor anonymity
+guarantee with your application, torsocks will force the application
+to quit and stop everything.
diff --git a/torsocks-git/Makefile b/torsocks-git/Makefile
new file mode 100644
index 0000000..b89ee7c
--- /dev/null
+++ b/torsocks-git/Makefile
@@ -0,0 +1,49 @@
+# $NetBSD: Makefile,v 1.4 2015/05/24 13:55:43 i3enedek Exp $
+
+DISTNAME=	torsocks
+CATEGORIES=	net security
+
+MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE=	https://gitweb.torproject.org/torsocks.git
+COMMENT=	Library to torify applications
+LICENSE=	gnu-gpl-v2
+
+
+GIT_REPOSITORIES=       master
+GIT_REPO.master=        https://git.torproject.org/torsocks.git
+GIT_MODULE.master=      torsocks
+
+
+DIST_SUBDIR=	torsocks
+
+USE_TOOLS+=	autoreconf autoconf automake
+GNU_CONFIGURE=	yes
+USE_LIBTOOL=	yes
+CONFIGURE_ENV+=	LIBC_PATH=/lib/libc.so
+
+SUBST_CLASSES+=			configure
+SUBST_STAGE.configure=		pre-configure
+SUBST_MESSAGE.configure=	Fixing configure.ac
+SUBST_FILES.configure=		configure.ac
+SUBST_SED.configure=		-e '/test/ s/ == / = /g'
+
+.include "../../mk/bsd.prefs.mk"
+.include "../../wip/mk/git-package.mk"
+# gethostbyaddr(3) in NetBSD < 7.0 prototype is:
+#     struct hostent *
+#     gethostbyaddr(const char *addr, socklen_t len, int type);
+# torsocks and The Open Group expects:
+#     struct hostent *
+#     gethostbyaddr(const void *addr, socklen_t len, int type);
+.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-6].*)
+SUBST_CLASSES+=		lib
+SUBST_STAGE.lib=	pre-configure
+SUBST_MESSAGE.lib=	Fixing src/lib/torsocks.h
+SUBST_FILES.lib=	src/lib/torsocks.h
+SUBST_SED.lib=		-e '/LIBC_GETHOSTBYADDR_SIG/ s/const void \*addr/const char *addr/'
+.endif
+
+pre-configure:
+	cd ${WRKSRC} && autoreconf -fiv
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/torsocks-git/PLIST b/torsocks-git/PLIST
new file mode 100644
index 0000000..0addcfb
--- /dev/null
+++ b/torsocks-git/PLIST
@@ -0,0 +1,11 @@
+@comment $NetBSD: PLIST,v 1.3 2014/08/15 20:59:39 leot1990 Exp $
+bin/torsocks
+etc/tor/torsocks.conf
+lib/torsocks/libtorsocks.la
+man/man1/torsocks.1
+man/man5/torsocks.conf.5
+man/man8/torsocks.8
+share/doc/torsocks/ChangeLog
+share/doc/torsocks/DEBUG
+share/doc/torsocks/SOCKS5
+share/doc/torsocks/socks-extensions.txt
diff --git a/torsocks-git/TODO b/torsocks-git/TODO
new file mode 100644
index 0000000..ce786a6
--- /dev/null
+++ b/torsocks-git/TODO
@@ -0,0 +1,3 @@
+Config file needs fixing.
+
+Builds fine, any intercepted exec segfaults though.
diff --git a/torsocks/DESCR b/torsocks/DESCR
deleted file mode 100644
index 4043c28..0000000
--- a/torsocks/DESCR
+++ /dev/null
@@ -1,15 +0,0 @@
-Torsocks allows you to use most applications in a safe way with
-Tor. It ensures that DNS requests are handled safely and explicitly
-rejects any traffic other then TCP from the application you're
-using.
-
-Torsocks is an ELF shared library that is loaded before all others.
-The library overrides every needed Internet communication libc
-function calls such as connect(2) or gethostbyname(3).
-
-This process is transparent to the user and if torsocks detects
-any communication that can't go through the Tor network such as
-UDP traffic for instance, the connection is denied. If, in some
-way, there is no way for torsocks to provide the Tor anonymity
-guarantee with your application, torsocks will force the application
-to quit and stop everything.
diff --git a/torsocks/Makefile b/torsocks/Makefile
deleted file mode 100644
index b89ee7c..0000000
--- a/torsocks/Makefile
+++ /dev/null
@@ -1,49 +0,0 @@
-# $NetBSD: Makefile,v 1.4 2015/05/24 13:55:43 i3enedek Exp $
-
-DISTNAME=	torsocks
-CATEGORIES=	net security
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	https://gitweb.torproject.org/torsocks.git
-COMMENT=	Library to torify applications
-LICENSE=	gnu-gpl-v2
-
-
-GIT_REPOSITORIES=       master
-GIT_REPO.master=        https://git.torproject.org/torsocks.git
-GIT_MODULE.master=      torsocks
-
-
-DIST_SUBDIR=	torsocks
-
-USE_TOOLS+=	autoreconf autoconf automake
-GNU_CONFIGURE=	yes
-USE_LIBTOOL=	yes
-CONFIGURE_ENV+=	LIBC_PATH=/lib/libc.so
-
-SUBST_CLASSES+=			configure
-SUBST_STAGE.configure=		pre-configure
-SUBST_MESSAGE.configure=	Fixing configure.ac
-SUBST_FILES.configure=		configure.ac
-SUBST_SED.configure=		-e '/test/ s/ == / = /g'
-
-.include "../../mk/bsd.prefs.mk"
-.include "../../wip/mk/git-package.mk"
-# gethostbyaddr(3) in NetBSD < 7.0 prototype is:
-#     struct hostent *
-#     gethostbyaddr(const char *addr, socklen_t len, int type);
-# torsocks and The Open Group expects:
-#     struct hostent *
-#     gethostbyaddr(const void *addr, socklen_t len, int type);
-.if ${OPSYS} == "NetBSD" && !empty(OS_VERSION:M[0-6].*)
-SUBST_CLASSES+=		lib
-SUBST_STAGE.lib=	pre-configure
-SUBST_MESSAGE.lib=	Fixing src/lib/torsocks.h
-SUBST_FILES.lib=	src/lib/torsocks.h
-SUBST_SED.lib=		-e '/LIBC_GETHOSTBYADDR_SIG/ s/const void \*addr/const char *addr/'
-.endif
-
-pre-configure:
-	cd ${WRKSRC} && autoreconf -fiv
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/torsocks/PLIST b/torsocks/PLIST
deleted file mode 100644
index 0addcfb..0000000
--- a/torsocks/PLIST
+++ /dev/null
@@ -1,11 +0,0 @@
-@comment $NetBSD: PLIST,v 1.3 2014/08/15 20:59:39 leot1990 Exp $
-bin/torsocks
-etc/tor/torsocks.conf
-lib/torsocks/libtorsocks.la
-man/man1/torsocks.1
-man/man5/torsocks.conf.5
-man/man8/torsocks.8
-share/doc/torsocks/ChangeLog
-share/doc/torsocks/DEBUG
-share/doc/torsocks/SOCKS5
-share/doc/torsocks/socks-extensions.txt
diff --git a/torsocks/TODO b/torsocks/TODO
deleted file mode 100644
index ce786a6..0000000
--- a/torsocks/TODO
+++ /dev/null
@@ -1,3 +0,0 @@
-Config file needs fixing.
-
-Builds fine, any intercepted exec segfaults though.


Home | Main Index | Thread Index | Old Index