summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorrillig <rillig>2007-12-01 14:09:53 +0000
committerrillig <rillig>2007-12-01 14:09:53 +0000
commit63e2bebb756d74444889f21478e05e9df35ab28c (patch)
tree268a0277e407a6b1c021355a7ceb80b31178baf5 /misc
parentf6c2098336af08aaea0f84c92d967edb0f99637e (diff)
downloadpkgsrc-63e2bebb756d74444889f21478e05e9df35ab28c.tar.gz
Fixed "extra qualification".
Diffstat (limited to 'misc')
-rw-r--r--misc/qbrew/distinfo3
-rw-r--r--misc/qbrew/patches/patch-aa24
2 files changed, 26 insertions, 1 deletions
diff --git a/misc/qbrew/distinfo b/misc/qbrew/distinfo
index f828c90c693..243e02f8d66 100644
--- a/misc/qbrew/distinfo
+++ b/misc/qbrew/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.3 2006/01/14 13:55:28 wulf Exp $
+$NetBSD: distinfo,v 1.4 2007/12/01 14:09:53 rillig Exp $
SHA1 (qbrew-0.3.5.tar.gz) = ec67830af5adb413a60c79c59c350467abb6ba7c
RMD160 (qbrew-0.3.5.tar.gz) = 3134f2763164ba6e9b1200e61f8fe8d1ca916fd4
Size (qbrew-0.3.5.tar.gz) = 458523 bytes
+SHA1 (patch-aa) = e231af46234b81178e7acea69133f78d08128e42
diff --git a/misc/qbrew/patches/patch-aa b/misc/qbrew/patches/patch-aa
new file mode 100644
index 00000000000..f03f6e37a01
--- /dev/null
+++ b/misc/qbrew/patches/patch-aa
@@ -0,0 +1,24 @@
+$NetBSD: patch-aa,v 1.1 2007/12/01 14:09:53 rillig Exp $
+
+--- qbrew/calc.h.orig 2005-05-31 03:08:34.000000000 +0000
++++ qbrew/calc.h 2007-12-01 13:57:28.000000000 +0000
+@@ -175,15 +175,15 @@ class Calc {
+ static int SRM(Recipe *r);
+
+ // convert Specific Gravity to Plato
+- static double Calc::SgToP(double sg);
++ static double SgToP(double sg);
+ // convert grain extract to yield
+- static double Calc::extractToYield(double extract);
+- static double Calc::yieldToExtract(double yield);
++ static double extractToYield(double extract);
++ static double yieldToExtract(double yield);
+
+ // add an entry to the utilization table
+ static void addUEntry(const UEntry &u);
+ // get the table of utilizations
+- static const QValueList<UEntry> &Calc::getUEntryList();
++ static const QValueList<UEntry> &getUEntryList();
+
+ private:
+ static double calcOG(Recipe *r);