Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (9802ae5da005a5a26d4eb9f71716b42149c31777)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (9802ae5da005a5a26d4eb9f71716b42149c31777)
  • Date: Tue, 25 Jul 2006 17:54:10 -0500

GIT changes to master grimoire by Eric Sandall <sandalle@moby.(none)>:

ChangeLog | 3 +++
dev/null |binary
e/ecore/DEPENDS | 12 +++++++++++-
e/ecore/HISTORY | 3 +++
perl-cpan/dailystrips/DEPENDS | 4 ++--
perl-cpan/dailystrips/HISTORY | 3 +++
perl-cpan/date-parse/BUILD | 3 +--
perl-cpan/date-parse/DEPENDS | 3 +--
perl-cpan/date-parse/DETAILS | 8 +-------
perl-cpan/date-parse/HISTORY | 3 +++
perl-cpan/date-parse/INSTALL | 1 +
perl-cpan/date-parse/PRE_BUILD | 1 +
perl-cpan/date-parse/TRIGGERS | 1 +
perl-cpan/file-spec/DETAILS | 14 ++++++--------
perl-cpan/file-spec/HISTORY | 5 +++++
perl-cpan/file-spec/PathTools-3.19.tar.gz.sig |binary
perl-cpan/svk/DEPENDS | 3 ++-
perl-cpan/svk/DETAILS | 6 ++----
perl-cpan/svk/HISTORY | 6 ++++++
perl-cpan/svk/SVK-1.07.tar.gz.sig | 0
perl-cpan/svk/SVK-1.08.tar.gz.sig |binary
perl-cpan/svn-mirror/DETAILS | 6 ++----
perl-cpan/svn-mirror/HISTORY | 4 ++++
perl-cpan/svn-mirror/SVN-Mirror-0.68.tar.gz.sig | 0
perl-cpan/svn-mirror/SVN-Mirror-0.69_1.tar.gz.sig |binary
perl-cpan/time-date/CONFLICTS | 1 +
perl-cpan/time-date/DETAILS | 5 ++---
perl-cpan/time-date/HISTORY | 5 +++++
28 files changed, 66 insertions(+), 34 deletions(-)

New commits:
commit 9802ae5da005a5a26d4eb9f71716b42149c31777
Author: Eric Sandall <sandalle@moby.(none)>
Commit: Eric Sandall <sandalle@moby.(none)>

Updated svk to 1.08

commit 09088d812267a8a2c8449c059312a81956ff1b34
Author: Eric Sandall <sandalle@moby.(none)>
Commit: Eric Sandall <sandalle@moby.(none)>

* Deprecate date-parse in favor of the newer time-date

* dailystrips now depends on time-date instead of date-parse
* svk now depends on time-date instead of date-parse

commit 2bbb5b9d8f61c7f45838d3e236bd502719544d93
Author: Eric Sandall <sandalle@moby.(none)>
Commit: Eric Sandall <sandalle@moby.(none)>

Updated file-spec to 3.19 (Source renamed to PathTools)

commit 05d4729f4a256fea9757098738d4a72d9b3bcc9c
Author: Eric Sandall <sandalle@moby.(none)>
Commit: Eric Sandall <sandalle@moby.(none)>

Updated svn-mirror to 0.69_1

commit 38c447da3a4bafb56b5829b99e78d278935bfa60
Author: Eric Sandall <sandalle@moby.(none)>
Commit: Eric Sandall <sandalle@moby.(none)>

ecore optionally depends on curl and dbus

diff --git a/ChangeLog b/ChangeLog
index 4e3e4c5..d8041dd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,9 @@
2006-07-26 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* wm-addons/asmem: new spell, Memory utilization monitor

+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * perl-cpan/date-parse: Deprecate in favor of newer time-date
+
2006-07-25 Kevin Dahan <unet AT sourcemage.org>
* audio-plugins/blop: new spell
* audio-plugins/caps-plugins: new spell
diff --git a/e/ecore/DEPENDS b/e/ecore/DEPENDS
index 2440f07..8ae63df 100755
--- a/e/ecore/DEPENDS
+++ b/e/ecore/DEPENDS
@@ -6,6 +6,11 @@ if [ "$ECORE_CVS" = "y" ]; then
depends CVS
fi &&

+optional_depends curl \
+ '--enable-curl' \
+ '--disable-curl' \
+ 'for CURL file transfer support' &&
+
optional_depends openssl \
"--enable-openssl" \
"--disable-openssl" \
@@ -24,4 +29,9 @@ optional_depends directfb
optional_depends xscreensaver \
"" \
"" \
- "for XScreenSaver screen locking"
+ "for XScreenSaver screen locking" &&
+
+optional_depends dbus \
+ '--enable-ecore-dbus' \
+ '--disable-ecore-dbus' \
+ 'for D-BUS IPC messaging support'
diff --git a/e/ecore/HISTORY b/e/ecore/HISTORY
index d814671..e4ab2e4 100644
--- a/e/ecore/HISTORY
+++ b/e/ecore/HISTORY
@@ -1,3 +1,6 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DEPENDS: Optionally depends on curl and dbus.
+
2006-04-18 Eric Sandall <eric AT sandall.us>
* DEPENDS: Doesn't directly depend on eet (only through evas)

diff --git a/perl-cpan/dailystrips/DEPENDS b/perl-cpan/dailystrips/DEPENDS
index d5d19d9..0908f80 100755
--- a/perl-cpan/dailystrips/DEPENDS
+++ b/perl-cpan/dailystrips/DEPENDS
@@ -1,3 +1,3 @@
-depends perl &&
depends lwp &&
-depends date-parse
+depends perl &&
+depends time-date
diff --git a/perl-cpan/dailystrips/HISTORY b/perl-cpan/dailystrips/HISTORY
index 2fa5a2a..f280562 100644
--- a/perl-cpan/dailystrips/HISTORY
+++ b/perl-cpan/dailystrips/HISTORY
@@ -1,3 +1,6 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DEPENDS: date-parse deprecated in favor of time-date
+
2006-06-12 Arwed v. Merkatz <v.merkatz AT gmx.net>
* DETAILS: inserted BUILD_API=1 line

diff --git a/perl-cpan/date-parse/BUILD b/perl-cpan/date-parse/BUILD
index ec5d6ff..27ba77d 100755
--- a/perl-cpan/date-parse/BUILD
+++ b/perl-cpan/date-parse/BUILD
@@ -1,2 +1 @@
- perl Makefile.PL &&
- make
+true
diff --git a/perl-cpan/date-parse/DEPENDS b/perl-cpan/date-parse/DEPENDS
index 50d9c74..9b6df69 100755
--- a/perl-cpan/date-parse/DEPENDS
+++ b/perl-cpan/date-parse/DEPENDS
@@ -1,2 +1 @@
-depends perl
-
+depends time-date
diff --git a/perl-cpan/date-parse/DETAILS b/perl-cpan/date-parse/DETAILS
index f053a18..c56ec4a 100755
--- a/perl-cpan/date-parse/DETAILS
+++ b/perl-cpan/date-parse/DETAILS
@@ -1,16 +1,10 @@
SPELL=date-parse
VERSION=1.1301
- SOURCE=TimeDate-$VERSION.tar.gz
BUILD_API=2
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/TimeDate-$VERSION
- SOURCE_URL[0]=http://www.cpan.org/authors/id/GBARR/$SOURCE
-
SOURCE_HASH=sha512:1665b2fbc5c71ad5a006d22f874073cb1aa1e042f3735e158bff9437cbc3d33cba4ced976abf7003b95b01ebe73ed98364da20491acca6df56c11dc5df5d59e4
LICENSE=ART
- SOURCE_URL[1]=http://www.perl.com/CPAN/authors/id/GBARR/$SOURCE
-
SOURCE_HASH=sha512:1665b2fbc5c71ad5a006d22f874073cb1aa1e042f3735e158bff9437cbc3d33cba4ced976abf7003b95b01ebe73ed98364da20491acca6df56c11dc5df5d59e4
WEB_SITE="http://search.cpan.org/search?module=Date%3A%3AParse";
+ PATCHLEVEL=1
ENTERED=20020226
- UPDATED=20020403
MAINTAINER=nealbirch AT attbi.com
KEYWORDS="perl"
SHORT="This is the perl5 TimeDate distribution."
diff --git a/perl-cpan/date-parse/HISTORY b/perl-cpan/date-parse/HISTORY
index 68c889b..e8077b4 100644
--- a/perl-cpan/date-parse/HISTORY
+++ b/perl-cpan/date-parse/HISTORY
@@ -1,3 +1,6 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * Deprecated in favor of time-date (newer version)
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/date-parse/INSTALL b/perl-cpan/date-parse/INSTALL
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/perl-cpan/date-parse/INSTALL
@@ -0,0 +1 @@
+true
diff --git a/perl-cpan/date-parse/PRE_BUILD b/perl-cpan/date-parse/PRE_BUILD
new file mode 100755
index 0000000..27ba77d
--- /dev/null
+++ b/perl-cpan/date-parse/PRE_BUILD
@@ -0,0 +1 @@
+true
diff --git a/perl-cpan/date-parse/TRIGGERS b/perl-cpan/date-parse/TRIGGERS
new file mode 100755
index 0000000..e324dac
--- /dev/null
+++ b/perl-cpan/date-parse/TRIGGERS
@@ -0,0 +1 @@
+on_cast date-parse dispel_self
diff --git a/perl-cpan/file-spec/DETAILS b/perl-cpan/file-spec/DETAILS
index af250c6..02be99f 100755
--- a/perl-cpan/file-spec/DETAILS
+++ b/perl-cpan/file-spec/DETAILS
@@ -1,15 +1,13 @@
SPELL=file-spec
- VERSION=0.90
- SOURCE=File-Spec-$VERSION.tar.gz
- BUILD_API=2
-SOURCE_DIRECTORY=$BUILD_DIRECTORY/File-Spec-$VERSION
+ VERSION=3.19
+ SOURCE=PathTools-$VERSION.tar.gz
+SOURCE_DIRECTORY=$BUILD_DIRECTORY/PathTools-$VERSION
SOURCE_URL[0]=http://www.cpan.org/authors/id/K/KW/KWILLIAMS/$SOURCE
-
SOURCE_HASH=sha512:d733f60c4e75022418bf547d07aa86529d4f21ba7d04774969acb0d58d4feda287ba04ec253d51ef6e5ca2ee869c8c727fcaf3a8ee6fe7ca05304cd1d35e8799
- LICENSE=ART
+ SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
+ LICENSE[0]=ART
+ KEYWORDS="perl"
WEB_SITE="http://search.cpan.org/search?module=File::Spec";
ENTERED=20020312
- UPDATED=20050329
- KEYWORDS="perl"
SHORT="Handling files and directories portably"
cat << EOF
This module is designed to support operations commonly
diff --git a/perl-cpan/file-spec/HISTORY b/perl-cpan/file-spec/HISTORY
index 3a7691d..a4c6cc6 100644
--- a/perl-cpan/file-spec/HISTORY
+++ b/perl-cpan/file-spec/HISTORY
@@ -1,3 +1,8 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DETAILS: Updated to 3.19 and SOURCE changed to PathTools
+ Removed BUILD_API=2 (grimoire-wide) and UPDATED
+ Changed LICENSE to LICENSE[0]
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/file-spec/PathTools-3.19.tar.gz.sig
b/perl-cpan/file-spec/PathTools-3.19.tar.gz.sig
new file mode 100644
index 0000000..64a72ab
Binary files /dev/null and b/perl-cpan/file-spec/PathTools-3.19.tar.gz.sig
differ
diff --git a/perl-cpan/svk/DEPENDS b/perl-cpan/svk/DEPENDS
index 867abdf..bf335f1 100755
--- a/perl-cpan/svk/DEPENDS
+++ b/perl-cpan/svk/DEPENDS
@@ -3,7 +3,7 @@ depends algorithm-diff &&
depends class-autouse &&
depends compress-zlib &&
depends data-hierarchy &&
-depends date-parse &&
+depends file-spec &&
depends file-type &&
depends freezethaw &&
depends io-digest &&
@@ -17,5 +17,6 @@ depends perlio-via-symlink &&
depends pod-simple &&
depends regexp-shellish &&
depends svn-mirror &&
+depends time-date &&
depends uri &&
depends yaml
diff --git a/perl-cpan/svk/DETAILS b/perl-cpan/svk/DETAILS
index 859bc93..258a807 100755
--- a/perl-cpan/svk/DETAILS
+++ b/perl-cpan/svk/DETAILS
@@ -1,15 +1,13 @@
SPELL=svk
- VERSION=1.07
+ VERSION=1.08
SOURCE=SVK-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/SVK-$VERSION
SOURCE_URL[0]=http://search.cpan.org/CPAN/authors/id/C/CL/CLKAO/$SOURCE
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
LICENSE[0]=ART
- BUILD_API=2
+ KEYWORDS="perl"
WEB_SITE=http://svk.elixus.org/
ENTERED=20050418
- UPDATED=20050418
- KEYWORDS="perl"
SHORT="Decentralized version control system"
cat << EOF
svk is a decentralized version control system written in Perl. It uses the
diff --git a/perl-cpan/svk/HISTORY b/perl-cpan/svk/HISTORY
index 55b2054..43f9e94 100644
--- a/perl-cpan/svk/HISTORY
+++ b/perl-cpan/svk/HISTORY
@@ -1,3 +1,9 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DETAILS: Updated to 1.08
+ Removed UPDATED and BUILD_API=2 (API is grimoire-wide)
+ * DEPENDS: Depends on file-spec
+ Depends on time-date rather than date-parse (older version of
time-date)
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/svk/SVK-1.07.tar.gz.sig
b/perl-cpan/svk/SVK-1.07.tar.gz.sig
deleted file mode 100644
index 8e21d49..0000000
Binary files a/perl-cpan/svk/SVK-1.07.tar.gz.sig and /dev/null differ
diff --git a/perl-cpan/svk/SVK-1.08.tar.gz.sig
b/perl-cpan/svk/SVK-1.08.tar.gz.sig
new file mode 100644
index 0000000..fa22827
Binary files /dev/null and b/perl-cpan/svk/SVK-1.08.tar.gz.sig differ
diff --git a/perl-cpan/svn-mirror/DETAILS b/perl-cpan/svn-mirror/DETAILS
index 9e40054..f387c92 100755
--- a/perl-cpan/svn-mirror/DETAILS
+++ b/perl-cpan/svn-mirror/DETAILS
@@ -1,15 +1,13 @@
SPELL=svn-mirror
- VERSION=0.68
+ VERSION=0.69_1
SOURCE=SVN-Mirror-$VERSION.tar.gz
SOURCE_DIRECTORY=$BUILD_DIRECTORY/SVN-Mirror-$VERSION
SOURCE_URL[0]=http://search.cpan.org/CPAN/authors/id/C/CL/CLKAO/$SOURCE
SOURCE_GPG="gurus.gpg:${SOURCE}.sig"
LICENSE[0]="ART GPL"
- BUILD_API=2
+ KEYWORDS="subversion perl"
WEB_SITE=http://search.cpan.org/~clkao/SVN-Mirror/
ENTERED=20050418
- UPDATED=20050418
- KEYWORDS="subversion perl"
SHORT="Mirror remote repository to local Subversion repository"
cat << EOF
Mirror remote repository to local Subversion repository
diff --git a/perl-cpan/svn-mirror/HISTORY b/perl-cpan/svn-mirror/HISTORY
index 60e05ea..3777379 100644
--- a/perl-cpan/svn-mirror/HISTORY
+++ b/perl-cpan/svn-mirror/HISTORY
@@ -1,3 +1,7 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DETAILS: Updated to 0.69_1
+ Removed UPDATED and BUILD_API=2 (API is now grimoire-wide)
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS

diff --git a/perl-cpan/svn-mirror/SVN-Mirror-0.68.tar.gz.sig
b/perl-cpan/svn-mirror/SVN-Mirror-0.68.tar.gz.sig
deleted file mode 100644
index 1ae548b..0000000
Binary files a/perl-cpan/svn-mirror/SVN-Mirror-0.68.tar.gz.sig and /dev/null
differ
diff --git a/perl-cpan/svn-mirror/SVN-Mirror-0.69_1.tar.gz.sig
b/perl-cpan/svn-mirror/SVN-Mirror-0.69_1.tar.gz.sig
new file mode 100644
index 0000000..13acc92
Binary files /dev/null and
b/perl-cpan/svn-mirror/SVN-Mirror-0.69_1.tar.gz.sig differ
diff --git a/perl-cpan/time-date/CONFLICTS b/perl-cpan/time-date/CONFLICTS
new file mode 100755
index 0000000..67c84e4
--- /dev/null
+++ b/perl-cpan/time-date/CONFLICTS
@@ -0,0 +1 @@
+conflicts date-parse y
diff --git a/perl-cpan/time-date/DETAILS b/perl-cpan/time-date/DETAILS
index e392eba..d3a24f2 100755
--- a/perl-cpan/time-date/DETAILS
+++ b/perl-cpan/time-date/DETAILS
@@ -4,10 +4,9 @@
SOURCE_DIRECTORY=$BUILD_DIRECTORY/TimeDate-$VERSION
SOURCE_URL[0]=http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/$SOURCE

SOURCE_HASH=sha512:28daea038532161302939613ab994732caa63ed027dfa2c510c795fdafbd5ccf927a6706cd266e226e5016d08e6009cba66467adb3507f12b7de8579484fa437
- ENTERED=20050713
- UPDATED=20050713
+ PATCHLEVEL=1
LICENSE[0]=ART
- BUILD_API=2
+ ENTERED=20050713

WEB_SITE=http://search.cpan.org/~gbarr/TimeDate-$VERSION/lib/Date/Format.pm
KEYWORDS="ascii perl"
SHORT="Format perl dates into ASCII strings"
diff --git a/perl-cpan/time-date/HISTORY b/perl-cpan/time-date/HISTORY
index 9ea744b..c0fc785 100644
--- a/perl-cpan/time-date/HISTORY
+++ b/perl-cpan/time-date/HISTORY
@@ -1,3 +1,8 @@
+2006-07-25 Eric Sandall <eric AT sandall.us>
+ * DETAILS: Added PATCHLEVEL=1 (replaces outdated date-parse package)
+ Removed UPDATED and BUILD_API=2 (API is grimoire-wide)
+ * CONFLICTS: Added auto-conflicts with date-parse
+
2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
* DETAILS: (automated) Add KEYWORDS




  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (9802ae5da005a5a26d4eb9f71716b42149c31777), Eric Sandall, 07/25/2006

Archive powered by MHonArc 2.6.24.

Top of Page