Skip to Content.
Sympa Menu

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

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 (e94408956abbcc7d73e359e0128572ede663a782)
  • Date: Sat, 3 Jan 2009 05:34:42 -0600

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

gnome2-apps/epiphany-extensions/DEPENDS
| 4 ++--
gnome2-apps/epiphany-extensions/HISTORY
| 3 +++
gnome2-apps/epiphany/HISTORY
| 4 ++++
gnome2-apps/epiphany/PRE_SUB_DEPENDS
| 2 +-
gnome2-apps/epiphany/REPAIR^2323d34df38f16d5b05e4b7923733c07^PRE_SUB_DEPENDS
| 4 ++++
gnome2-apps/epiphany/SUB_DEPENDS
| 2 +-
6 files changed, 15 insertions(+), 4 deletions(-)

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

epiphany: added repair file for PRE_SUB_DEPENDS #15000

commit 7ba912e2e1917daae14a0d00e7d8124233bbd2ba
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

epiphany-extensions: added missing && and uppercased the subdep #15000

commit 0464855b11d40221fe491b3a6b6f21f5e94d1baf
Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>

epiphany: {PRE_,}SUB_DEPENDS: made the subdeps uppercase #15000

diff --git a/gnome2-apps/epiphany-extensions/DEPENDS
b/gnome2-apps/epiphany-extensions/DEPENDS
index 030ce65..a73e4aa 100755
--- a/gnome2-apps/epiphany-extensions/DEPENDS
+++ b/gnome2-apps/epiphany-extensions/DEPENDS
@@ -3,8 +3,8 @@ depends xulrunner &&
depends pcre &&

if [[ "${EPIPHANY_FAVICON}" == "y" || "${EPIPHANY_PYCON}" == "y" ||
"${EPIPHANY_SAMPLEPY}" == "y" ]]; then
- depends python
- sub_depends epiphany gnome-python2
+ depends python &&
+ sub_depends epiphany GNOME-PYTHON2
fi &&

optional_depends opensp \
diff --git a/gnome2-apps/epiphany-extensions/HISTORY
b/gnome2-apps/epiphany-extensions/HISTORY
index d53c7d5..671e726 100644
--- a/gnome2-apps/epiphany-extensions/HISTORY
+++ b/gnome2-apps/epiphany-extensions/HISTORY
@@ -1,3 +1,6 @@
+2009-01-03 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * DEPENDS: added missing && and uppercased the subdep #15000
+
2008-11-30 Robin Cook <rcook AT wyrms.net>
* DETAILS: updated VERSION to 2.24.1

diff --git a/gnome2-apps/epiphany/HISTORY b/gnome2-apps/epiphany/HISTORY
index 995a358..a9da311 100644
--- a/gnome2-apps/epiphany/HISTORY
+++ b/gnome2-apps/epiphany/HISTORY
@@ -1,3 +1,7 @@
+2009-01-03 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * REPAIR^2323d34d: added repair file for the PRE_SUB_DEPENDS change
+ * {PRE_,}SUB_DEPENDS: made the subdeps uppercase #15000
+
2008-11-26 George Sherwood <gsherwood AT sourcemage.org>
* DETAILS: Updated to version 2.24.2.1

diff --git a/gnome2-apps/epiphany/PRE_SUB_DEPENDS
b/gnome2-apps/epiphany/PRE_SUB_DEPENDS
index d7760b5..b84d6af 100755
--- a/gnome2-apps/epiphany/PRE_SUB_DEPENDS
+++ b/gnome2-apps/epiphany/PRE_SUB_DEPENDS
@@ -1,4 +1,4 @@
case $THIS_SUB_DEPENDS in
- gnome-python2) is_depends_enabled $SPELL gnome-python2 ;;
+ gnome-python2|GNOME-PYTHON2) is_depends_enabled $SPELL gnome-python2 ;;
*) message "${PROBLEM_COLOR}bogus sub_depends: ${SPELL}
${THIS_SUB_DEPENDS}${DEFAULT_COLOR}" && return 1 ;;
esac
diff --git
a/gnome2-apps/epiphany/REPAIR^2323d34df38f16d5b05e4b7923733c07^PRE_SUB_DEPENDS

b/gnome2-apps/epiphany/REPAIR^2323d34df38f16d5b05e4b7923733c07^PRE_SUB_DEPENDS
new file mode 100755
index 0000000..a90912b
--- /dev/null
+++
b/gnome2-apps/epiphany/REPAIR^2323d34df38f16d5b05e4b7923733c07^PRE_SUB_DEPENDS
@@ -0,0 +1,4 @@
+case $THIS_SUB_DEPENDS in
+ GNOME-PYTHON2) is_depends_enabled $SPELL gnome-python2 ;;
+ *) message "${PROBLEM_COLOR}bogus sub_depends: ${SPELL}
${THIS_SUB_DEPENDS}${DEFAULT_COLOR}" && return 1 ;;
+esac
diff --git a/gnome2-apps/epiphany/SUB_DEPENDS
b/gnome2-apps/epiphany/SUB_DEPENDS
index 5f6ca46..ca1b636 100755
--- a/gnome2-apps/epiphany/SUB_DEPENDS
+++ b/gnome2-apps/epiphany/SUB_DEPENDS
@@ -1,4 +1,4 @@
case $THIS_SUB_DEPENDS in
-gnome-python2) echo "python bindings requested, forcing them."; depends
gnome-python2 '--enable-python';;
+gnome-python2|GNOME-PYTHON2) echo "python bindings requested, forcing
them."; depends gnome-python2 '--enable-python';;
*) echo "unknown sub-depends!"; return 1;;
esac



  • [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (e94408956abbcc7d73e359e0128572ede663a782), Jaka Kranjc, 01/03/2009

Archive powered by MHonArc 2.6.24.

Top of Page