Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (7867aca2b4f454d0db0b16d00de07ed48b8444b6)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (7867aca2b4f454d0db0b16d00de07ed48b8444b6)
  • Date: Sun, 19 Dec 2010 18:48:20 -0600

GIT changes to master grimoire by Ladislav Hagara <hgr AT vabo.cz>:

dev/null |binary
graphics/f-spot/DETAILS | 2 +-
graphics/f-spot/HISTORY | 4 ++++
graphics/f-spot/PRE_BUILD | 4 +---
graphics/f-spot/empty-crash.patch | 11 -----------
graphics/f-spot/f-spot-0.8.0.tar.bz2.sig | 0
graphics/f-spot/f-spot-0.8.2.tar.bz2.sig |binary
graphics/f-spot/mono-2.8.1-f-stop.patch | 30
------------------------------
8 files changed, 6 insertions(+), 45 deletions(-)

New commits:
commit 7867aca2b4f454d0db0b16d00de07ed48b8444b6
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>

f-spot 0.8.2

diff --git a/graphics/f-spot/DETAILS b/graphics/f-spot/DETAILS
index c87409a..c3846b3 100755
--- a/graphics/f-spot/DETAILS
+++ b/graphics/f-spot/DETAILS
@@ -1,5 +1,5 @@
SPELL=f-spot
- VERSION=0.8.0
+ VERSION=0.8.2
BRANCH=`echo $VERSION|cut -d . -f 1,2`
SOURCE=$SPELL-$VERSION.tar.bz2
SOURCE_DIRECTORY=$BUILD_DIRECTORY/$SPELL-$VERSION
diff --git a/graphics/f-spot/HISTORY b/graphics/f-spot/HISTORY
index 6211099..079ddda 100644
--- a/graphics/f-spot/HISTORY
+++ b/graphics/f-spot/HISTORY
@@ -1,3 +1,7 @@
+2010-12-20 Ladislav Hagara <hgr AT vabo.cz>
+ * DETAILS: 0.8.2
+ * PRE_BUILD, {mono-2.8.1-f-stop,empty-crash}.patch: patches removed
+
2010-11-20 George Sherwood <gsherwood AT sourcemage.org>
* PRE_BUILD: Added for 3 patches
* mono-2.8.1-f-stop.patch: patch for mono 2.8.1
diff --git a/graphics/f-spot/PRE_BUILD b/graphics/f-spot/PRE_BUILD
index b78b0b3..fbd82cc 100755
--- a/graphics/f-spot/PRE_BUILD
+++ b/graphics/f-spot/PRE_BUILD
@@ -1,5 +1,3 @@
default_pre_build &&
cd $SOURCE_DIRECTORY &&
-patch -p0 < $SPELL_DIRECTORY/mono-2.8.1-f-stop.patch &&
-patch -p0 < $SPELL_DIRECTORY/f-stop-PixbufLoader.patch &&
-patch -p0 < $SPELL_DIRECTORY/empty-crash.patch
+patch -p0 < $SPELL_DIRECTORY/f-stop-PixbufLoader.patch
diff --git a/graphics/f-spot/empty-crash.patch
b/graphics/f-spot/empty-crash.patch
deleted file mode 100644
index 18b62ca..0000000
--- a/graphics/f-spot/empty-crash.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/Clients/MainApp/FSpot/App.cs
-+++ src/Clients/MainApp/FSpot/App.cs
-@@ -223,7 +223,7 @@ namespace FSpot
- {
- // Some users get wonky URIs here, trying to work around below.
- // https://bugzilla.gnome.org/show_bug.cgi?id=629248
-- if (path.StartsWith ("gphoto2:usb:")) {
-+ if (path != null && path.StartsWith ("gphoto2:usb:")) {
- path = String.Format ("gphoto2://[{0}]", path.Substring
(8));
- }
-
diff --git a/graphics/f-spot/f-spot-0.8.0.tar.bz2.sig
b/graphics/f-spot/f-spot-0.8.0.tar.bz2.sig
deleted file mode 100644
index 69eb3ea..0000000
Binary files a/graphics/f-spot/f-spot-0.8.0.tar.bz2.sig and /dev/null differ
diff --git a/graphics/f-spot/f-spot-0.8.2.tar.bz2.sig
b/graphics/f-spot/f-spot-0.8.2.tar.bz2.sig
new file mode 100644
index 0000000..f7ca909
Binary files /dev/null and b/graphics/f-spot/f-spot-0.8.2.tar.bz2.sig differ
diff --git a/graphics/f-spot/mono-2.8.1-f-stop.patch
b/graphics/f-spot/mono-2.8.1-f-stop.patch
deleted file mode 100644
index 63812d1..0000000
--- a/graphics/f-spot/mono-2.8.1-f-stop.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs.orig 2010-11-20
19:50:45.520002431 -0600
-+++ lib/TagLib/TagLib/src/TagLib/IFD/Entries/Rational.cs 2010-11-20
19:51:47.440002796 -0600
-@@ -62,8 +62,10 @@
- /// </param>
- public Rational (uint numerator, uint denominator)
- {
-- Numerator = numerator;
-- Denominator = denominator;
-+ if (denominator == 0)
-+ throw new ArgumentException ("denominator");
-+ this.numerator = numerator;
-+ this.denominator = denominator;
- }
-
- #endregion
---- lib/TagLib/TagLib/src/TagLib/IFD/Entries/SRational.cs.orig 2010-11-20
19:52:11.384002643 -0600
-+++ lib/TagLib/TagLib/src/TagLib/IFD/Entries/SRational.cs 2010-11-20
19:52:43.948002767 -0600
-@@ -62,8 +62,10 @@
- /// </param>
- public SRational (int numerator, int denominator)
- {
-- Numerator = numerator;
-- Denominator = denominator;
-+ if (denominator == 0)
-+ throw new ArgumentException ("denominator");
-+ this.numerator = numerator;
-+ this.denominator = denominator;
- }
-
- #endregion



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (7867aca2b4f454d0db0b16d00de07ed48b8444b6), Ladislav Hagara, 12/19/2010

Archive powered by MHonArc 2.6.24.

Top of Page