Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by David Kowis (00c6e805eef403714616695796441348e747b1dc)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: David Kowis <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by David Kowis (00c6e805eef403714616695796441348e747b1dc)
  • Date: Thu, 29 Jun 2006 15:28:39 -0500

GIT changes to master grimoire by David Kowis <dkowis AT shlrm.org>:

ChangeLog | 4 ++++
net/snmptt/BUILD | 5 +++++
net/snmptt/CONFIGURE | 6 ++++++
net/snmptt/DEPENDS | 15 +++++++++++++++
net/snmptt/DETAILS | 19 +++++++++++++++++++
net/snmptt/HISTORY | 2 ++
perl-cpan/dbd-mysql/DETAILS | 4 ++--
perl-cpan/dbd-mysql/HISTORY | 3 +++
perl-cpan/dbd-pg/DETAILS | 4 ++--
perl-cpan/dbd-pg/HISTORY | 3 +++
perl-cpan/dbd-pgpp/DETAILS | 6 +++---
perl-cpan/dbd-pgpp/HISTORY | 3 +++
perl-cpan/sys-syslog/BUILD | 1 +
perl-cpan/sys-syslog/DEPENDS | 1 +
perl-cpan/sys-syslog/DETAILS | 18 ++++++++++++++++++
perl-cpan/sys-syslog/HISTORY | 2 ++
16 files changed, 89 insertions(+), 7 deletions(-)

New commits:
commit 00c6e805eef403714616695796441348e747b1dc
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

snmptt

Adding new spell snmptt

commit 9c6931224ff45fe699fb7a46f96406ee51f44147
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

dbd-pg

Version bump

commit 6fd4017c0ca0a92d467a3fe4fce38f9969d7e18f
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

dbd-pgpp

Version bump

commit 572ad5359b11e19be852bd4ec23af4b66d387ba8
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

dbd-mysql:

version bump

commit a5ca05cf5dc67927ca326d7abf236c1c1af477b4
Author: David Kowis <dkowis AT shlrm.org>
Commit: David Kowis <dkowis AT shlrm.org>

sys-syslog:

Adding spell sys-syslog and a changelog entry for it

diff --git a/ChangeLog b/ChangeLog
index c6f403a..f3d380a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * perl-cpan/sys-syslog: new spell, syslog interface for perl
+ * net/snmptt: new spell, snmp trap translator
+
2006-06-29 Andraž "ruskie" Levstik <ruskie AT mages.ath.cx>
* devel/rascl-ocaml: new spell
* libs/findlib: new spell
diff --git a/net/snmptt/BUILD b/net/snmptt/BUILD
new file mode 100755
index 0000000..533f878
--- /dev/null
+++ b/net/snmptt/BUILD
@@ -0,0 +1,5 @@
+OPTS="$OPTS --with-sys-contact=root@$( hostname -f) \
+ --enable-ucd-snmp-compatibility \
+ --with-persistent-directory=/var/state/ucd-snmp --with-defaults"
+
+default_build
diff --git a/net/snmptt/CONFIGURE b/net/snmptt/CONFIGURE
new file mode 100755
index 0000000..6264e92
--- /dev/null
+++ b/net/snmptt/CONFIGURE
@@ -0,0 +1,6 @@
+config_query SNMPTT_MYSQL "Enable MySQL support?" n &&
+config_query SNMPTT_POSTGRES "Enable Postgresql support?" n &&
+
+if [[ "$SNMPTT_POSTGRES" == "y" ]]; then
+ config_query_list SNMPTT_PG "Which Perl Postgresql driver to use?"
dbd-pgpp dbd-pg
+fi
diff --git a/net/snmptt/DEPENDS b/net/snmptt/DEPENDS
new file mode 100755
index 0000000..66fd2a3
--- /dev/null
+++ b/net/snmptt/DEPENDS
@@ -0,0 +1,15 @@
+depends perl &&
+depends net-snmp &&
+depends time-hires &&
+depends config-inifiles &&
+depends sys-syslog &&
+
+if [[ "$SNMPTT_MYSQL" == "y" ]]; then
+ depends dbi &&
+ depends dbd-mysql
+fi &&
+
+if [[ "$SNMPTT_POSTGRES" == "y" ]]; then
+ depends dbi &&
+ depends $SNMPTT_PG
+fi
diff --git a/net/snmptt/DETAILS b/net/snmptt/DETAILS
new file mode 100755
index 0000000..c1fa2c6
--- /dev/null
+++ b/net/snmptt/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=snmptt
+ VERSION=1.1
+ SOURCE=$SPELL_$VERSION.tgz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL_$VERSION
+ SOURCE_URL[0]=$SOURCEFORGE_URL/$SPELL/$SOURCE
+ SOURCE_URL[1]=${SOURCEFORGE_URL}/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:bd39268f31405b73f51b61455c16359be4f2c60f9ff8a9802653b9f61e4a2f00df3de767a397e660c34f0e423e522198ea7f3dc62fbc121df74442bc6b49b841
+ WEB_SITE=http://snmptt.sourceforge.net/
+ ENTERED=20060629
+ UPDATED=20021007
+ LICENSE[0]=GPL
+ BUILD_API=2
+ KEYWORDS="net"
+ SHORT="SNMP Trap Translator"
+cat << EOF
+SNMPTT (SNMP Trap Translator) is an SNMP trap handler written in Perl for use
+with the Net-SNMP / UCD-SNMP snmptrapd program (www.net-snmp.org). SNMPTT
+supports Linux, Unix and Windows.
+EOF
diff --git a/net/snmptt/HISTORY b/net/snmptt/HISTORY
new file mode 100644
index 0000000..3ebcba0
--- /dev/null
+++ b/net/snmptt/HISTORY
@@ -0,0 +1,2 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * ALL: created spell snmptt
diff --git a/perl-cpan/dbd-mysql/DETAILS b/perl-cpan/dbd-mysql/DETAILS
index 9591adf..6cb0e02 100755
--- a/perl-cpan/dbd-mysql/DETAILS
+++ b/perl-cpan/dbd-mysql/DETAILS
@@ -1,10 +1,10 @@
SPELL=dbd-mysql
- VERSION=2.9004
+ VERSION=3.0006
SOURCE=DBD-mysql-$VERSION.tar.gz
BUILD_API=2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/DBD-mysql-$VERSION
SOURCE_URL[0]=http://www.cpan.org/modules/by-module/DBD/$SOURCE
-
SOURCE_HASH=sha512:dd30bf968fceae90a96fcea3e59f1b1f743822a150f1a967114fadbeb98096ae3843f544fed44bc716db1a440c19abc6ad3702f1ea4c61137d5f34b3c7ad58d6
+
SOURCE_HASH=sha512:3053a8b36990883756b98552a4235b6fa6b43d08f3405736c3169824f4363fde08c33887653f6d80c307f258f5df2e5f4733bd768b6c44df553f5e9f651ea24a
LICENSE=ART
WEB_SITE=http://www.cpan.org/
ENTERED=20020319
diff --git a/perl-cpan/dbd-mysql/HISTORY b/perl-cpan/dbd-mysql/HISTORY
index 989586c..76b4dce 100644
--- a/perl-cpan/dbd-mysql/HISTORY
+++ b/perl-cpan/dbd-mysql/HISTORY
@@ -1,3 +1,6 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: Version bump to 3.0006
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/dbd-pg/DETAILS b/perl-cpan/dbd-pg/DETAILS
index bb8d5c7..da54219 100755
--- a/perl-cpan/dbd-pg/DETAILS
+++ b/perl-cpan/dbd-pg/DETAILS
@@ -1,10 +1,10 @@
SPELL=dbd-pg
- VERSION=1.43
+ VERSION=1.49
SOURCE=DBD-Pg-$VERSION.tar.gz
BUILD_API=2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/DBD-Pg-$VERSION
SOURCE_URL[0]=http://www.cpan.org/modules/by-module/DBD/$SOURCE
-
SOURCE_HASH=sha512:5dea12d017919254c709a635f91f38ccc8fa7430c78d0afa8c9ea02447f5622b031b96d839b9e7c971ee2de52e2bebe26dce197075406a53585faeec7827978a
+
SOURCE_HASH=sha512:69395c82a81316b5ae74a9181126f1ae176a8426288e141c04b86ee9232c67ecebaecb8d8816b018104a6690d7060c94b7233866e60fa655722a2ddbfd7c96ec
LICENSE=ART
WEB_SITE=http://www.cpan.org/
ENTERED=20030604
diff --git a/perl-cpan/dbd-pg/HISTORY b/perl-cpan/dbd-pg/HISTORY
index 8764b8e..9b9558c 100644
--- a/perl-cpan/dbd-pg/HISTORY
+++ b/perl-cpan/dbd-pg/HISTORY
@@ -1,3 +1,6 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: version bump
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/dbd-pgpp/DETAILS b/perl-cpan/dbd-pgpp/DETAILS
index 5caed13..29d06e1 100755
--- a/perl-cpan/dbd-pgpp/DETAILS
+++ b/perl-cpan/dbd-pgpp/DETAILS
@@ -1,10 +1,10 @@
- BUILD_API=2
+ BUILD_API=2
SPELL=dbd-pgpp
- VERSION=0.04
+ VERSION=0.05
SOURCE=DBD-PgPP-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/DBD-PgPP-$VERSION
SOURCE_URL[0]=http://www.cpan.org/modules/by-module/DBD/$SOURCE
-
SOURCE_HASH=sha512:8e8fded9daf4fd6ba7deb24b6d2e63a16bf8d4e27c664c1f3dd7153b1daa684a34b131d010862266358fb442387d4f035046af958d0fca26157ff1648d4cb4b7
+
SOURCE_HASH=sha512:0106be11c8ee5f680bc48766169f060b69d6e022c95315ef2bf68208ae651420efc82d45be79233771145e64ac6c5ed0696726d984cf7ebf63448a7fd5fdffce
LICENSE=ART
WEB_SITE=http://www.cpan.org/
ENTERED=20030604
diff --git a/perl-cpan/dbd-pgpp/HISTORY b/perl-cpan/dbd-pgpp/HISTORY
index 0b14380..9487a10 100644
--- a/perl-cpan/dbd-pgpp/HISTORY
+++ b/perl-cpan/dbd-pgpp/HISTORY
@@ -1,3 +1,6 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * DETAILS: Version bump
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/sys-syslog/BUILD b/perl-cpan/sys-syslog/BUILD
new file mode 100755
index 0000000..2c6f78b
--- /dev/null
+++ b/perl-cpan/sys-syslog/BUILD
@@ -0,0 +1 @@
+source $SECTION_DIRECTORY/PERL_BUILD
diff --git a/perl-cpan/sys-syslog/DEPENDS b/perl-cpan/sys-syslog/DEPENDS
new file mode 100755
index 0000000..6826bc7
--- /dev/null
+++ b/perl-cpan/sys-syslog/DEPENDS
@@ -0,0 +1 @@
+depends perl
diff --git a/perl-cpan/sys-syslog/DETAILS b/perl-cpan/sys-syslog/DETAILS
new file mode 100755
index 0000000..feea1ae
--- /dev/null
+++ b/perl-cpan/sys-syslog/DETAILS
@@ -0,0 +1,18 @@
+ SPELL=sys-syslog
+ CPAN=Sys-Syslog
+ VERSION=0.16
+ SOURCE=$CPAN-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/$CPAN-$VERSION
+ SOURCE_URL[0]=http://search.cpan.org/CPAN/authors/id/S/SA/SAPER/$SOURCE
+ BUILD_API=2
+
SOURCE_HASH=sha512:f1b0fb0ae59be5c9782bbab8e3714421e1cd0ae454b366a47ed6a7c867584b2aaadd6b93ca36c6a328dee3837eb269d61d33e18b1c58c435f11b37712637c9f5
+ WEB_SITE="http://search.cpan.org/~saper/Sys-Syslog-0.16/";
+ LICENSE=ART
+ ENTERED=20060629
+ UPDATED=20021001
+ KEYWORDS="perl"
+ SHORT="Perl interface to the UNIX syslog(3) calls"
+cat << EOF
+Sys::Syslog is an interface to the UNIX syslog(3) program. Call syslog()
with a
+string priority and a list of printf() args just like syslog(3).
+EOF
diff --git a/perl-cpan/sys-syslog/HISTORY b/perl-cpan/sys-syslog/HISTORY
new file mode 100644
index 0000000..be1ad2a
--- /dev/null
+++ b/perl-cpan/sys-syslog/HISTORY
@@ -0,0 +1,2 @@
+2006-06-29 David Kowis <dkowis AT shlrm.org>
+ * ALL FILES: Spell Created



  • [SM-Commit] GIT changes to master grimoire by David Kowis (00c6e805eef403714616695796441348e747b1dc), David Kowis, 06/29/2006

Archive powered by MHonArc 2.6.24.

Top of Page