Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (185af754b8cb69495c379b08c90310e3781baf8b)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (185af754b8cb69495c379b08c90310e3781baf8b)
  • Date: Fri, 4 May 2007 07:34:00 -0500

GIT changes to master grimoire by Jaka Kranjc <lynxlynxlynx AT sourcemage.org>:

dev/null |binary
libs/libdnsres/BUILD | 3 +++
libs/libdnsres/DEPENDS | 1 +
libs/libdnsres/DETAILS | 25 +++++++++++++++++++++++++
libs/libdnsres/HISTORY | 3 +++
libs/libdnsres/libdnsres/BUILD | 3 ---
libs/libdnsres/libdnsres/DEPENDS | 1 -
libs/libdnsres/libdnsres/DETAILS | 25 -------------------------
libs/libdnsres/libdnsres/HISTORY | 3 ---
libs/libdnsres/libdnsres/provos.gpg | 0
libs/libdnsres/provos.gpg |binary
security/honeyd/HISTORY | 2 +-
12 files changed, 33 insertions(+), 33 deletions(-)

New commits:
commit 185af754b8cb69495c379b08c90310e3781baf8b
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

fix HISTORY typo

commit 89f626682bf56af38af02015c2c95d2de32255ac
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

fix bad libdnsres path

libs/libdnsres/libdnsres/HISTORY

diff --git a/libs/libdnsres/BUILD b/libs/libdnsres/BUILD
new file mode 100755
index 0000000..d22e99f
--- /dev/null
+++ b/libs/libdnsres/BUILD
@@ -0,0 +1,3 @@
+make_single &&
+default_build &&
+make_normal
diff --git a/libs/libdnsres/DEPENDS b/libs/libdnsres/DEPENDS
new file mode 100755
index 0000000..c5f70b0
--- /dev/null
+++ b/libs/libdnsres/DEPENDS
@@ -0,0 +1 @@
+depends libevent
diff --git a/libs/libdnsres/DETAILS b/libs/libdnsres/DETAILS
new file mode 100755
index 0000000..85e68e2
--- /dev/null
+++ b/libs/libdnsres/DETAILS
@@ -0,0 +1,25 @@
+ SPELL=libdnsres
+ VERSION=0.1a
+ SOURCE="${SPELL}-${VERSION}.tar.gz"
+ SOURCE2=$SOURCE.sig
+ SOURCE_URL[0]=http://www.monkey.org/~provos/${SOURCE}
+ SOURCE2_URL[0]=http://www.monkey.org/~provos/$SOURCE2
+ SOURCE_GPG="provos.gpg:$SOURCE2:UPSTREAM_KEY"
+ SOURCE2_IGNORE=signature
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
+ WEB_SITE=http://www.monkey.org/~provos/libdnsres/
+ LICENSE[0]=BSD
+ ENTERED=20070125
+ SHORT="A non-blocking, thread-safe DNS resolver library."
+cat << EOF
+Libdnsres provides a non-blocking, thread-safe API for resolving
+DNS names. It requires that your main application is built on top of
+libevent. The API essentially mirrors the traditional gethostbyname and
+getaddrinfo interfaces. All return values have been replaced by callbacks
+instead. The code borrows heavily from the BSD resolver library. In fact,
+it is an extremely ugly hack to make the BSD resolver library non-blocking
+and thread-safe without changing the API too much.
+ Although it has not been tested heavily, it
+should compile on BSD systems and Linux. The library comes with a simple
+test program that can be use to verify if it works correctly.
+EOF
diff --git a/libs/libdnsres/HISTORY b/libs/libdnsres/HISTORY
new file mode 100644
index 0000000..7b51161
--- /dev/null
+++ b/libs/libdnsres/HISTORY
@@ -0,0 +1,3 @@
+2007-01-25 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DETAILS, DEPENDS, HISTORY, BUILD: created spell
+ * provos.gpg: copied from security/usr-systrace
diff --git a/libs/libdnsres/libdnsres/BUILD b/libs/libdnsres/libdnsres/BUILD
deleted file mode 100755
index d22e99f..0000000
--- a/libs/libdnsres/libdnsres/BUILD
+++ /dev/null
@@ -1,3 +0,0 @@
-make_single &&
-default_build &&
-make_normal
diff --git a/libs/libdnsres/libdnsres/DEPENDS
b/libs/libdnsres/libdnsres/DEPENDS
deleted file mode 100755
index c5f70b0..0000000
--- a/libs/libdnsres/libdnsres/DEPENDS
+++ /dev/null
@@ -1 +0,0 @@
-depends libevent
diff --git a/libs/libdnsres/libdnsres/DETAILS
b/libs/libdnsres/libdnsres/DETAILS
deleted file mode 100755
index 85e68e2..0000000
--- a/libs/libdnsres/libdnsres/DETAILS
+++ /dev/null
@@ -1,25 +0,0 @@
- SPELL=libdnsres
- VERSION=0.1a
- SOURCE="${SPELL}-${VERSION}.tar.gz"
- SOURCE2=$SOURCE.sig
- SOURCE_URL[0]=http://www.monkey.org/~provos/${SOURCE}
- SOURCE2_URL[0]=http://www.monkey.org/~provos/$SOURCE2
- SOURCE_GPG="provos.gpg:$SOURCE2:UPSTREAM_KEY"
- SOURCE2_IGNORE=signature
-SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELL}-${VERSION}"
- WEB_SITE=http://www.monkey.org/~provos/libdnsres/
- LICENSE[0]=BSD
- ENTERED=20070125
- SHORT="A non-blocking, thread-safe DNS resolver library."
-cat << EOF
-Libdnsres provides a non-blocking, thread-safe API for resolving
-DNS names. It requires that your main application is built on top of
-libevent. The API essentially mirrors the traditional gethostbyname and
-getaddrinfo interfaces. All return values have been replaced by callbacks
-instead. The code borrows heavily from the BSD resolver library. In fact,
-it is an extremely ugly hack to make the BSD resolver library non-blocking
-and thread-safe without changing the API too much.
- Although it has not been tested heavily, it
-should compile on BSD systems and Linux. The library comes with a simple
-test program that can be use to verify if it works correctly.
-EOF
diff --git a/libs/libdnsres/libdnsres/HISTORY
b/libs/libdnsres/libdnsres/HISTORY
deleted file mode 100644
index 7b51161..0000000
--- a/libs/libdnsres/libdnsres/HISTORY
+++ /dev/null
@@ -1,3 +0,0 @@
-2007-01-25 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
- * DETAILS, DEPENDS, HISTORY, BUILD: created spell
- * provos.gpg: copied from security/usr-systrace
diff --git a/libs/libdnsres/libdnsres/provos.gpg
b/libs/libdnsres/libdnsres/provos.gpg
deleted file mode 100644
index 4897bd9..0000000
Binary files a/libs/libdnsres/libdnsres/provos.gpg and /dev/null differ
diff --git a/libs/libdnsres/provos.gpg b/libs/libdnsres/provos.gpg
new file mode 100644
index 0000000..4897bd9
Binary files /dev/null and b/libs/libdnsres/provos.gpg differ
diff --git a/security/honeyd/HISTORY b/security/honeyd/HISTORY
index 53368dc..6ff8d67 100644
--- a/security/honeyd/HISTORY
+++ b/security/honeyd/HISTORY
@@ -2,7 +2,7 @@
* POST_INSTALL: moved to FINAL
* DETAILS: updated spell to 1.5b
removed build api1
- * HISTORY: added libdnsres
+ * DEPENDS: added libdnsres

2006-10-03 Juuso Alasuutari <iuso AT sourcemage.org>
* DETAILS: [automated] Removed UPDATED.



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (185af754b8cb69495c379b08c90310e3781baf8b), Jaka Kranjc, 05/04/2007

Archive powered by MHonArc 2.6.24.

Top of Page