Skip to Content.
Sympa Menu

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

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 (51538dba9e840e09b219ee2ec47def18a10d4a79)
  • Date: Fri, 17 Apr 2015 11:33:31 -0500

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

ChangeLog | 5 +++++
perl-cpan/net-daemon/DEPENDS | 1 +
perl-cpan/net-daemon/DETAILS | 22 ++++++++++++++++++++++
perl-cpan/net-daemon/HISTORY | 2 ++
perl-cpan/plrpc/DEPENDS | 2 ++
perl-cpan/plrpc/DETAILS | 19 +++++++++++++++++++
perl-cpan/plrpc/HISTORY | 2 ++
7 files changed, 53 insertions(+)

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

plrpc: new spell, Perl extension for writing PlRPC clients and servers

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

net-daemon: new spell, Perl extension for portable daemons

diff --git a/ChangeLog b/ChangeLog
index d518175..dd523bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-04-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * perl-cpan/net-daemon: new spell, Perl extension for portable daemons
+ * perl-cpan/plrpc: new spell, Perl extension for writing PlRPC clients
+ and servers
+
2015-04-16 Vlad Glagolev <stealth AT sourcemage.org>
* chat-irc: take over maintainership
* cluster: take over maintainership
diff --git a/perl-cpan/net-daemon/DEPENDS b/perl-cpan/net-daemon/DEPENDS
new file mode 100755
index 0000000..6826bc7
--- /dev/null
+++ b/perl-cpan/net-daemon/DEPENDS
@@ -0,0 +1 @@
+depends perl
diff --git a/perl-cpan/net-daemon/DETAILS b/perl-cpan/net-daemon/DETAILS
new file mode 100755
index 0000000..aff4678
--- /dev/null
+++ b/perl-cpan/net-daemon/DETAILS
@@ -0,0 +1,22 @@
+ SPELL=net-daemon
+ SPELLX=Net-Daemon
+ VERSION=0.48
+ SOURCE=${SPELLX}-${VERSION}.tar.gz
+ SOURCE_URL[0]=$PERL_CPAN_URL/CPAN/authors/id/M/MN/MNOONING/${SOURCE}
+
SOURCE_HASH=sha512:85bc280adc0de6be8ebd64771732f83299018edd06441cf96c438914a16c3805918805cde07bae4fe92caa86475ad35cabfc1edfccff117dcce7f5dc8b137bba
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}-${VERSION}"
+ LICENSE=ART
+ WEB_SITE=http://search.cpan.org/dist/Net-Daemon/
+ ENTERED=20150417
+ KEYWORDS="perl"
+ SHORT="Perl extension for portable daemons"
+cat << EOF
+Net::Daemon is an abstract base class for implementing portable server
+applications in a very simple way.
+
+It offers methods for the most common tasks a daemon needs: starting up,
+logging, accepting clients, authorization, restricting its own environment
for
+security and doing the true work. You only have to override those methods
that
+aren't appropriate for you, but typically inheriting will safe you a lot of
work
+anyways.
+EOF
diff --git a/perl-cpan/net-daemon/HISTORY b/perl-cpan/net-daemon/HISTORY
new file mode 100644
index 0000000..a370bc7
--- /dev/null
+++ b/perl-cpan/net-daemon/HISTORY
@@ -0,0 +1,2 @@
+2015-04-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.48
diff --git a/perl-cpan/plrpc/DEPENDS b/perl-cpan/plrpc/DEPENDS
new file mode 100755
index 0000000..8783091
--- /dev/null
+++ b/perl-cpan/plrpc/DEPENDS
@@ -0,0 +1,2 @@
+depends perl &&
+depends net-daemon
diff --git a/perl-cpan/plrpc/DETAILS b/perl-cpan/plrpc/DETAILS
new file mode 100755
index 0000000..0c034e5
--- /dev/null
+++ b/perl-cpan/plrpc/DETAILS
@@ -0,0 +1,19 @@
+ SPELL=plrpc
+ SPELLX=PlRPC
+ VERSION=0.2020
+ SOURCE=${SPELLX}-${VERSION}.tar.gz
+
SOURCE_URL[0]=$PERL_CPAN_URL/CPAN/authors/id/M/MN/MNOONING/${SPELLX}/${SOURCE}
+
SOURCE_HASH=sha512:2c79c5c27bce7027561f1968023ae4307778f291caa9291fee779537d047a35bb4bd5928fe2b343a2b09dbdcf6450239d79c6898018ea880619a7c69a1498a86
+SOURCE_DIRECTORY="${BUILD_DIRECTORY}/${SPELLX}"
+ LICENSE=ART
+ WEB_SITE=http://search.cpan.org/dist/PlRPC/
+ ENTERED=20150417
+ KEYWORDS="perl rpc"
+ SHORT="Perl extension for writing PlRPC clients and servers"
+cat << EOF
+PlRPC (Perl RPC) is a package for implementing servers and clients that are
+written in Perl entirely. The name is borrowed from Sun's RPC (Remote
Procedure
+Call), but it could as well be RMI like Java's "Remote Method Interface),
+because PlRPC gives you the complete power of Perl's OO framework in a very
+simple manner.
+EOF
diff --git a/perl-cpan/plrpc/HISTORY b/perl-cpan/plrpc/HISTORY
new file mode 100644
index 0000000..5e7e83b
--- /dev/null
+++ b/perl-cpan/plrpc/HISTORY
@@ -0,0 +1,2 @@
+2015-04-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS: created spell, version 0.2020



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (51538dba9e840e09b219ee2ec47def18a10d4a79), Vlad Glagolev, 04/17/2015

Archive powered by MHonArc 2.6.24.

Top of Page