Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a409186f19215d64b8354df5b13b1248aeb863b9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a409186f19215d64b8354df5b13b1248aeb863b9)
  • Date: Mon, 7 Jan 2013 04:04:19 -0600

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 4 ++++
crypto/cryptcat/BUILD | 3 +++
crypto/cryptcat/CONFIGURE | 3 +++
crypto/cryptcat/CONFLICTS | 2 ++
crypto/cryptcat/DEPENDS | 1 +
crypto/cryptcat/DETAILS | 27 +++++++++++++++++++++++++++
crypto/cryptcat/HISTORY | 2 ++
crypto/cryptcat/INSTALL | 2 ++
net/nc/BUILD | 4 +++-
net/nc/CONFLICTS | 3 ++-
net/nc/HISTORY | 4 ++++
net/netcat/CONFLICTS | 3 ++-
net/netcat/HISTORY | 3 +++
13 files changed, 58 insertions(+), 3 deletions(-)

New commits:
commit a409186f19215d64b8354df5b13b1248aeb863b9
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

nc: conflicts cryptcat

commit ae2fc594115c876dc5df99faba14af48042ce40c
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

netcat: conflicts cryptcat

commit 1aa6f5c234f7fda45031861a9c67cdf32aa320f6
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

cryptcat: new spell, standard netcat enhanced with twofish encryption

diff --git a/ChangeLog b/ChangeLog
index c07f69b..5af65dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-01-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * crypto/cryptcat: new spell, standard netcat enhanced with twofish
+ encryption
+
2013-01-01 Ladislav Hagara <hgr AT vabo.cz>
* fonts-x11/open-dyslexic: new spell,
font created to increase readability for readers with dyslexia
diff --git a/crypto/cryptcat/BUILD b/crypto/cryptcat/BUILD
new file mode 100755
index 0000000..abb1ff0
--- /dev/null
+++ b/crypto/cryptcat/BUILD
@@ -0,0 +1,3 @@
+make_single &&
+make linux CFLAGS="$CFLAGS" STATIC="$CRYPTCAT_STATIC" &&
+make_normal
diff --git a/crypto/cryptcat/CONFIGURE b/crypto/cryptcat/CONFIGURE
new file mode 100755
index 0000000..7a1b353
--- /dev/null
+++ b/crypto/cryptcat/CONFIGURE
@@ -0,0 +1,3 @@
+config_query_option CRYPTCAT_STATIC "Build static version?" y \
+ "-static" \
+ ""
diff --git a/crypto/cryptcat/CONFLICTS b/crypto/cryptcat/CONFLICTS
new file mode 100755
index 0000000..c1f0747
--- /dev/null
+++ b/crypto/cryptcat/CONFLICTS
@@ -0,0 +1,2 @@
+conflicts netcat &&
+conflicts nc
diff --git a/crypto/cryptcat/DEPENDS b/crypto/cryptcat/DEPENDS
new file mode 100755
index 0000000..f148724
--- /dev/null
+++ b/crypto/cryptcat/DEPENDS
@@ -0,0 +1 @@
+depends -sub CXX gcc
diff --git a/crypto/cryptcat/DETAILS b/crypto/cryptcat/DETAILS
new file mode 100755
index 0000000..79a3dd5
--- /dev/null
+++ b/crypto/cryptcat/DETAILS
@@ -0,0 +1,27 @@
+ SPELL=cryptcat
+ VERSION=1.2.1
+ SOURCE=$SPELL-unix-$VERSION.tar
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/unix"
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:2de6521903e489bc6d4f242aaac7f35a3a7fb226e1812ef5f1c3554420fce4378427e94b3e90eca5476d1068f1a9b44d9c5dbd0362888ad893cf66be106deb17
+ WEB_SITE=http://sourceforge.net/projects/cryptcat/
+ LICENSE[0]=GPL
+ ENTERED=20130107
+ KEYWORDS="net"
+ SHORT="standard netcat enhanced with twofish encryption"
+cat << EOF
+Cryptcat is the standard netcat (v1.10) enhanced with twofish encryption.
+
+Twofish is courtesy of counterpane, and cryptix. We started with the Java
+version of twofish from cryptix, converted it to C++ (don't ask why), and
+enhanced it by adding CBC mode and the ciphertext stealing technique from
+Applied Cryptography (pg. 196).
+
+How do you use it?
+
+ Machine A: cryptcat -l -p 1234 < testfile
+ Machine B: cryptcat <machine A IP> 1234
+
+This is identical to the normal netcat options for doing exactly the same
+thing. However, in this case the data transferred is encrypted.
+EOF
diff --git a/crypto/cryptcat/HISTORY b/crypto/cryptcat/HISTORY
new file mode 100644
index 0000000..0e53e52
--- /dev/null
+++ b/crypto/cryptcat/HISTORY
@@ -0,0 +1,2 @@
+2013-01-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, BUILD, INSTALL, CONFIGURE, CONFLICTS: spell
created
diff --git a/crypto/cryptcat/INSTALL b/crypto/cryptcat/INSTALL
new file mode 100755
index 0000000..4f6c617
--- /dev/null
+++ b/crypto/cryptcat/INSTALL
@@ -0,0 +1,2 @@
+install -vm 755 cryptcat "$INSTALL_ROOT/usr/bin/cryptcat" &&
+ln -vsf "$TRACK_ROOT/usr/bin/cryptcat" "$INSTALL_ROOT/usr/bin/nc"
diff --git a/net/nc/BUILD b/net/nc/BUILD
index 2b65baf..ba14922 100755
--- a/net/nc/BUILD
+++ b/net/nc/BUILD
@@ -1 +1,3 @@
- make linux
+make_single &&
+make linux &&
+make_normal
diff --git a/net/nc/CONFLICTS b/net/nc/CONFLICTS
index 9a5c6cd..bc7c602 100755
--- a/net/nc/CONFLICTS
+++ b/net/nc/CONFLICTS
@@ -1 +1,2 @@
-conflicts netcat
+conflicts netcat &&
+conflicts cryptcat
diff --git a/net/nc/HISTORY b/net/nc/HISTORY
index b8b527a..24ee934 100644
--- a/net/nc/HISTORY
+++ b/net/nc/HISTORY
@@ -1,3 +1,7 @@
+2013-01-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: fixed multijob build
+ * CONFLICTS: conflicts cryptcat
+
2011-05-12 Vlad Glagolev <stealth AT sourcemage.org>
* CONFLICTS: added, to conflict with netcat
* INSTALL: use `install' and INSTALL_ROOT
diff --git a/net/netcat/CONFLICTS b/net/netcat/CONFLICTS
index a8ba927..30f1f19 100755
--- a/net/netcat/CONFLICTS
+++ b/net/netcat/CONFLICTS
@@ -1 +1,2 @@
-conflicts nc
+conflicts nc &&
+conflicts cryptcat
diff --git a/net/netcat/HISTORY b/net/netcat/HISTORY
index 55b8237..3062dd1 100644
--- a/net/netcat/HISTORY
+++ b/net/netcat/HISTORY
@@ -1,2 +1,5 @@
+2013-01-07 Vlad Glagolev <stealth AT sourcemage.org>
+ * CONFLICTS: conflicts cryptcat
+
2011-05-12 Vlad Glagolev <stealth AT sourcemage.org>
* DETAILS, DEPENDS, CONFLICTS: spell created



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (a409186f19215d64b8354df5b13b1248aeb863b9), Vlad Glagolev, 01/07/2013

Archive powered by MHonArc 2.6.24.

Top of Page