Package Details: frobby 0.9.1-1

Git Clone URL: https://aur.archlinux.org/frobby.git (read-only, click to copy)
Package Base: frobby
Description: Computations With Monomial Ideals
Upstream URL: https://github.com/Macaulay2/frobby
Licenses: GPL
Submitter: remyoudompheng
Maintainer: jneem
Last Packager: jneem
Votes: 2
Popularity: 0.000000
First Submitted: 2009-04-09 13:26 (UTC)
Last Updated: 2021-04-02 20:36 (UTC)

Latest Comments

« First ‹ Previous 1 2

micwoj92 commented on 2021-04-02 18:55 (UTC)

Tagged release is 0.9.1 and you can download sources from that tag https://github.com/Macaulay2/frobby/archive/refs/tags/v0.9.1.tar.gz

jneem commented on 2021-04-02 18:53 (UTC)

Ok sure, I can adopt it again. But where should I be getting the releases from? The macaulay2 website [1] links to broune.com, which then links back to [2], but I don't see releases there.

The reason I ask is that someone flagged this out-of-date but I don't see a package for anything newer than 0.9.0. (The version in github is tagged 0.9.5 but I don't see a release for that.)

[1] http://www2.macaulay2.com/Macaulay2/doc/Macaulay2-1.12/share/doc/Macaulay2/Macaulay2Doc/html/_frobby.html [2] https://github.com/Macaulay2/frobby

DanGrayson commented on 2021-04-02 18:37 (UTC)

Macaulay2 still depends on frobby, so it would be good if the frobby package would continue to exist.

jneem commented on 2021-04-02 18:19 (UTC)

[1] http://www2.macaulay2.com/Macaulay2/doc/Macaulay2-1.12/share/doc/Macaulay2/Macaulay2Doc/html/_dual_lp__Monomial__Ideal_rp.html

jneem commented on 2021-04-02 18:18 (UTC)

According to the macaulay2 website[1], this functionality is now included in macaulay2 itself. Therefore, I think this package is no longer needed and I'll be disowning it.

<deleted-account> commented on 2013-08-02 02:18 (UTC)

as Omid shows, until it is updated upstream, just manually download the tarball and change the one letter inside the StatisticsStrategy.cpp. It will then build properly!

jneem commented on 2013-04-23 05:44 (UTC)

Any chance of getting Omid's patch included? Build fails without it...

Omid commented on 2013-01-25 09:46 (UTC)

Please add the following for new gmp compatibility (borrowed from gentoo ebuild) diff -U 3 -dHrN frobby_v0.9.0.orig/src/StatisticsStrategy.cpp frobby_v0.9.0/src/StatisticsStrategy.cpp --- frobby_v0.9.0.orig/src/StatisticsStrategy.cpp 2013-01-15 22:40:13.186967442 +0100 +++ frobby_v0.9.0/src/StatisticsStrategy.cpp 2013-01-15 22:40:33.267100780 +0100 @@ -140,7 +140,7 @@ if (_nodeCount == 0) return 0.0; else { - mpz_class q = mpq_class(_subGenSum) / _nodeCount; + mpq_class q = mpq_class(_subGenSum) / _nodeCount; return q.get_d(); } }

Omid commented on 2013-01-25 09:02 (UTC)

I have this problem in installing frobby: src/StatisticsStrategy.cpp:143:43: error: conversion from ‘__gmp_expr<__mpq_struct [1], __gmp_binary_expr<__gmp_expr<__mpq_struct [1], __mpq_struct [1]>, __gmp_expr<__mpz_struct [1], __mpz_struct [1]>, __gmp_binary_divides> >’ to non-scalar type ‘mpz_class {aka __gmp_expr<__mpz_struct [1], __mpz_struct [1]>}’ requested make: *** [bin/release/StatisticsStrategy.o] Error 1 ==> ERROR: A failure occurred in build(). Aborting...