diff options
author | rillig <rillig@pkgsrc.org> | 2007-12-01 14:09:53 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2007-12-01 14:09:53 +0000 |
commit | c7dabb6664fa91b6f5947b5797e221a80e0a4efc (patch) | |
tree | 268a0277e407a6b1c021355a7ceb80b31178baf5 /misc/qbrew | |
parent | 35a79ca37df33680848f737b922c0f65febc6270 (diff) | |
download | pkgsrc-c7dabb6664fa91b6f5947b5797e221a80e0a4efc.tar.gz |
Fixed "extra qualification".
Diffstat (limited to 'misc/qbrew')
-rw-r--r-- | misc/qbrew/distinfo | 3 | ||||
-rw-r--r-- | misc/qbrew/patches/patch-aa | 24 |
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); |