pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/math/gnome-calculator Update gnome-calculator to 3.20.1
details: https://anonhg.NetBSD.org/pkgsrc/rev/3a52fbb36331
branches: trunk
changeset: 348819:3a52fbb36331
user: prlw1 <prlw1%pkgsrc.org@localhost>
date: Sun Jun 19 15:40:11 2016 +0000
description:
Update gnome-calculator to 3.20.1
Overview of changes in gnome-calculator 3.20.1
* Fix: precedence of root operator (Alexis Poirier and Alberto Ruiz)
* Update: Translation (Translation team)
diffstat:
math/gnome-calculator/Makefile | 5 +-
math/gnome-calculator/distinfo | 11 +--
math/gnome-calculator/patches/patch-lib_equations-parser.vala | 32 -----------
3 files changed, 7 insertions(+), 41 deletions(-)
diffs (65 lines):
diff -r ae3194429bd6 -r 3a52fbb36331 math/gnome-calculator/Makefile
--- a/math/gnome-calculator/Makefile Sun Jun 19 15:25:28 2016 +0000
+++ b/math/gnome-calculator/Makefile Sun Jun 19 15:40:11 2016 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2016/05/03 11:40:04 prlw1 Exp $
+# $NetBSD: Makefile,v 1.12 2016/06/19 15:40:11 prlw1 Exp $
-DISTNAME= gnome-calculator-3.20.0
-PKGREVISION= 1
+DISTNAME= gnome-calculator-3.20.1
CATEGORIES= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gnome-calculator/${PKGVERSION_NOREV:R}/}
EXTRACT_SUFX= .tar.xz
diff -r ae3194429bd6 -r 3a52fbb36331 math/gnome-calculator/distinfo
--- a/math/gnome-calculator/distinfo Sun Jun 19 15:25:28 2016 +0000
+++ b/math/gnome-calculator/distinfo Sun Jun 19 15:40:11 2016 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.5 2016/04/21 22:11:32 prlw1 Exp $
+$NetBSD: distinfo,v 1.6 2016/06/19 15:40:11 prlw1 Exp $
-SHA1 (gnome-calculator-3.20.0.tar.xz) = 95bdd2f68cc55453a5120c82bc7787ea1d4e7f01
-RMD160 (gnome-calculator-3.20.0.tar.xz) = 75c4a6bff254b9ed1b776b0a987158a6e741c03a
-SHA512 (gnome-calculator-3.20.0.tar.xz) = 6f5daa64af19f91c35e9242e182aef759a13060e11476fac7965854af715ddf4c247e181e9146042a56e126a9665daf4ddd447950dc201f892ca9267e02a24e3
-Size (gnome-calculator-3.20.0.tar.xz) = 1347932 bytes
-SHA1 (patch-lib_equations-parser.vala) = 39debd2e1d4b5e141ab1bb7357e45612a3ed9f7e
+SHA1 (gnome-calculator-3.20.1.tar.xz) = 461a9bccd4fcf8d4c5202bffcacd3fa7fed28995
+RMD160 (gnome-calculator-3.20.1.tar.xz) = 1523acb5842791cb6270813da75ed6541e5117a0
+SHA512 (gnome-calculator-3.20.1.tar.xz) = 28198343422d61eec40938e35659e92bec1a67c4a6f16bdafd7a13f0b3a449d884f33daa9cf6c61bd56e9859ae3554522a02c0650ffcfaf64fb69b69671e347e
+Size (gnome-calculator-3.20.1.tar.xz) = 1454768 bytes
diff -r ae3194429bd6 -r 3a52fbb36331 math/gnome-calculator/patches/patch-lib_equations-parser.vala
--- a/math/gnome-calculator/patches/patch-lib_equations-parser.vala Sun Jun 19 15:25:28 2016 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-$NetBSD: patch-lib_equations-parser.vala,v 1.1 2016/04/21 22:11:32 prlw1 Exp $
-
-equation: fix precedence of the root operator with regards to the unary minus
-commit 87f716da
-
---- ./lib/equation-parser.vala.orig 2016-02-15 16:53:44.000000000 +0000
-+++ ./lib/equation-parser.vala
-@@ -26,15 +26,15 @@ private enum Precedence
- MOD = 3,
- DIVIDE = 3,
- NOT = 4,
-- ROOT = 5,
-- FUNCTION = 6,
-- BOOLEAN = 7,
-- PERCENTAGE = 8,
-- /* UNARY_MINUS and POWER must have same precedence. */
-- UNARY_MINUS = 9,
-- POWER = 9,
-- FACTORIAL = 10,
-- NUMBER_VARIABLE = 11,
-+ FUNCTION = 5,
-+ BOOLEAN = 6,
-+ PERCENTAGE = 7,
-+ /* UNARY_MINUS, ROOT and POWER must have same precedence. */
-+ UNARY_MINUS = 8,
-+ POWER = 8,
-+ ROOT = 8,
-+ FACTORIAL = 9,
-+ NUMBER_VARIABLE = 10,
- /* DEPTH should be always at the bottom. It stops node jumping off the current depth level. */
- DEPTH
- }
Home |
Main Index |
Thread Index |
Old Index