Re: py34-rpy2 port dependence on R...

2017-05-11 Thread Russell Jones
Generally using MacPorts with anything in /usr/local will cause problems, so see if R will install to another location. You may be able to use binpaths in macports.conf in the way one can with MacTeX, though this relies on ports having binary rather than port name dependencies. Let me know if

Re: Upgrading python from 27 to 36

2017-04-27 Thread Russell Jones
g/mac.html Russell On 27/04/17 14:38, Russell Jones wrote: In short, most stuff works with 2 and 3, and you should use 3. You can install both, they're independent. virtualenvs are your friend. Also, "import this" if you haven't already :) In full, it's quite complex. See https://

Re: Upgrading python from 27 to 36

2017-04-27 Thread Russell Jones
In short, most stuff works with 2 and 3, and you should use 3. You can install both, they're independent. virtualenvs are your friend. Also, "import this" if you haven't already :) In full, it's quite complex. See https://wiki.python.org/moin/Python2orPython3 For most features and least

Re: gtk2 and gtk3 ports and +x11 vs +quartz variant worries

2016-10-11 Thread Russell Jones
Interesting. Aren't the main requirement for quartz and wayland support the same, i.e. port to GTK+ 3 and don't use X11 calls? Or is it more subtle than that? Russell On 11/10/16 02:42, David Evans wrote: Overall quartz is taking a back seat to some other alternative backends, particularly

Re: Holding a package at a given version

2016-08-11 Thread Russell Jones
It's not really equivalent, since the Debianoids freeze (almost all of) the distro at a particular version, so you don't really get dependency version errors in the way you do with rolling distros like MacPorts. You'd need to hold all the deps in the same way, and all the rdeps of those,

Re: mpv and python

2016-05-05 Thread Russell Jones
From a quick glance at the output of "port cat mpv" it looks like it embeds python, and uses it to run the build tool "waf" and for doc generation. set python.versions {27 34} set python.default_version 27 ... # Set ${python.version} to the currently active variant. foreach ver

Re: php55 extension to use __()?

2016-04-25 Thread Russell Jones
Just a hunch-- could it be that PHP7 defines it, but it does something other than what phpmyadmin expects? Russell On 22/04/16 21:57, Jim Hu wrote: Thanks, I should have provided more detail. The error I get is: PHP Fatal error: Call to undefined function __() in

Re: Thank you all for the wonderful MacPorts Meeting in Slovenia (and see you again soon ...)

2016-03-19 Thread Russell Jones
I was thinking "The MacPortient Seven" :) On 18/03/16 14:39, Eneko Gotzon wrote: On Fri, Mar 18, 2016 at 11:29 AM, Mojca Miklavec > wrote: the relatively small group of hackers The Magnificent Seven

Re: Audacity build question. for Ticket #47189

2016-02-25 Thread Russell Jones
I see the version of the Portfile at https://github.com/RJVB/macstrop/tree/master/audio/audacity linked in https://trac.macports.org/ticket/47189 uses wxWidgets 3.0.x: "wxWidgets.use wxWidgets-3.0" Russell On 23/02/16 11:02, Robert Chalmers wrote: Interesting port. Do you plan to

Re: py33-scipy problem

2016-01-21 Thread Russell Jones
Have you tried this? Russell On 21/01/16 09:10, Jerry wrote: :error:fetch org.macports.fetch for port py33-scipy returned: must set at least one Fortran variant ___ macports-users mailing list macports-users@lists.macosforge.org

Re: What is the name of the Bouncy Castle Port?

2016-01-06 Thread Russell Jones
The description field in the Portfile should include the words "bouncy castle" so it shows up on a "port search". Ah well. "port search --long_description bouncy" does find it (see the output of "port help search"). Russell On 04/01/16 19:54, Jeffrey Walton wrote: On Mon, Jan 4, 2016 at

Re: How to use personal style and class files with LaTeX built through TexLive

2015-12-22 Thread Russell Jones
I use MacTeX, but for that it's ~/Library/texlive/201*/texmf-var/ I guess it's the same for MacPorts? kpsepath tex | tr : "\n" | sort should give a list of locations. Run just "kpsepath" to get a list of other available paths. ( FWIW, I set binpath

Re: latex/texlive port: broken latex?

2015-11-30 Thread Russell Jones
What if you comment out \usepackage{mydefs} and add \begin{document} test \end{document} as the rest of the document? That works for me on Ubuntu 14.04 LTS with XeLaTeX and pdflatex from MacTeX on 10.10. I can't readily test it with the MacPorts package as we use MacTeX with MacPorts by

Re: Variant conflicts

2015-11-18 Thread Russell Jones
Most likely, you have installed a port that doesn't support quartz, but that directly or indirectly depends on gtk3. Russell On 18/11/15 07:45, Bachsau wrote: Hi there! Today I ran a port upgrade outdated and got the following message: Error: gtk3: Variant quartz conflicts with x11 Error:

Re: Error installing Cairo/ Pango/ ncurses/ port self updates and so on..

2015-11-12 Thread Russell Jones
I suggest you use Disk Utility to run disk and permissions repairs, possibly with a verify first if you want to know which files will be affected. Then see if what you describe changes. It would also be useful to know whether either of these repairs take any action. Russell On 11/11/15

Re: Error installing Cairo/ Pango/ ncurses/ port self updates and so on..

2015-11-12 Thread Russell Jones
On 12/11/15 10:45, Ryan Schmidt wrote: On Nov 12, 2015, at 4:22 AM, Russell Jones wrote: I suggest you use Disk Utility to run disk and permissions repairs, possibly with a verify first if you want to know which files will be affected. Then see if what you describe changes. It would also

Re: GIMP latest version

2015-10-09 Thread Russell Jones
On 09/10/15 10:12, Eneko Gotzon wrote: On Thu, Oct 8, 2015 at 11:50 PM, Dominik Reichardt > wrote: 14 is a higher number than 2, so 2.8.14 is newer than 2.8.2 Oh my God! What kind of Cosmic Stupid I am…! Please, excuse me and don't throw

Re: Trace/BPT trap: 5 on Mac OS 10.9.2 Mavericks

2015-10-09 Thread Russell Jones
Run otool -L on it and see if the files listed exist (e.g. as below). If not, install the corresponding ports. You'll likely need to recompile the binary if it was linked against a previous MacPorts installation. otool -L /bin/bash | sed -E -e "s/^[^ ]+$//g" -e 's/^([^ ]*).*$/\1/g' | xargs ls

Re: Trace/BPT trap: 5 on Mac OS 10.9.2 Mavericks

2015-10-09 Thread Russell Jones
Run otool -L on it and see if the files listed exist (e.g. as below). If not, install the corresponding ports. You'll likely need to recompile the binary if it was linked against a previous MacPorts installation. otool -L /bin/bash | sed -E -e "s/^[^ ]+$//g" -e 's/^([^ ]*).*$/\1/g' | xargs ls

Re: Help uninstall a port

2015-09-09 Thread Russell Jones
Also consider sudo port selfupdate && sudo port upgrade outdated and https://guide.macports.org/chunked/installing.macports.uninstalling.html (but only if you're not using anything else in MacPorts) Have you found another way to run ROOT? What doesn't work in the MacPorts version?

Re: Python packages installed using pip not on PATH

2015-07-16 Thread Russell Jones
One can similarly break OS X by installing to the system Python The Apple-provided build of Python is installed in /System/Library/Frameworks/Python.framework and /usr/bin/python, respectively. You should never modify or delete these, as they are Apple-controlled and are used by Apple- or

Re: Python packages installed using pip not on PATH

2015-07-16 Thread Russell Jones
It depends on the use case, but with Python often it's worth using a virtualenv with a requirements.txt, the commands are virtualenv-2.7 and pyvenv-3.4 in MacPorts. This allows better reproduceability and it's fairly easy to start the setup again with a fresh virtualenv. I think Ruby has at

Re: Installing igraph

2015-07-03 Thread Russell Jones
Did you remove /opt/local/ then try to reinstall MacPorts? If so, then see https://guide.macports.org/chunked/installing.macports.uninstalling.html Russell On 03/07/15 15:46, Floriane B wrote: Dear All, I got a problem while trying to install igraph to use on python27, implemented in

RE: Mythtv-core.25

2012-08-04 Thread Russell Jones
That should be sudo port install, not just sudo install, no? If no-one here knows for sure, also check on the MythTV mailing list or ask on IRC http://www.mythtv.org/wiki/IRC . Russell From: macports-users-boun...@lists.macosforge.org

RE: MythTV port?

2012-03-24 Thread Russell Jones
Most people don't file tickets at all, they just think huh, it doesn't work and move on. For those who do file bug reports, sometimes there's time to look into the logs and what the problems are, sometimes there isn't. Sure, more detail is better and will get things fixed quicker, but do you

gcc4.5 doesn't build on 10.7.3 for me

2012-03-15 Thread Russell Jones
Is anyone else having this problem? The ticket below would suggest so, though it may be a different problem from mine. http://trac.macports.org/ticket/30306 It's suggested that one build with clang rather than llvm-gcc42, but it's not explained how to ask MacPorts to do that. I guess one

port clean all stops at py25-mayavi

2012-02-09 Thread Russell Jones
port clean all stops at py25-mayavi and displays the message Error: Unable to open port: Port remote fetch failed: You do not have permission to write to /opt/local/var/macports/portdirs To report a bug, see http://guide.macports.org/#project.tickets port clean py25-mayavi does the same thing.

RE: Python frameworks

2011-08-09 Thread Russell Jones
From: Ryan Schmidt [ryandes...@macports.org] Sent: 08 August 2011 17:50 To: Russell Jones Cc: mark brethen; macports-users@lists.macosforge.org Subject: Re: Python frameworks Are you suggesting that a port, such as py27-pylint, should install different contents (e.g. a pylint symlink

RE: Python frameworks

2011-08-09 Thread Russell Jones
August 2011 07:43 To: Russell Jones Cc: mark brethen; macports-users@lists.macosforge.org Subject: Re: Python frameworks ___ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macports-users

RE: Python frameworks

2011-08-08 Thread Russell Jones
Or simpler for the user (perhaps) have an as_python option, the default (this would work for ipython, too), which would set the value based on the selected version of python, e.g. python2.7 - pylint-2.7 (or however it's written in the port select names) Russell

RE: Macports group instead of macports user?

2011-07-21 Thread Russell Jones
From: Joshua Root [j...@macports.org] Sent: 19 July 2011 17:48 To: Russell Jones Cc: MacPorts Users Subject: Re: Macports group instead of macports user? On 28164-7-23 05:59 , Russell Jones wrote: Hello, My understanding is that Macports 2.0 will allow

Macports group instead of macports user?

2011-07-19 Thread Russell Jones
Hello, My understanding is that Macports 2.0 will allow (require?) one to run the macports system as a special macports user. Would it be possible to run it as any member of a macports group? This would be useful to us if, for instance, we want to work on porting a program with a user and

RE: Problem with install

2011-03-31 Thread Russell Jones
Hi Ed, Did you have a look at trac.macports.org? e.g. http://trac.macports.org/search?q=pure-gen Russell ___ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macports-users

RE: Re:

2011-03-09 Thread Russell Jones
If you noticed the number in square brackets next to the process when you suspended it, you can also say kill %n where n is the number, e.g. kill %1. You then need to type fg (or bg) to continue the process, so it can die. Russell From:

RE: How do I get etherape to work in OS X 10.6.6?

2011-03-08 Thread Russell Jones
As I understand it you don't need to do that since ultimately gcc4.5 gets built by gcc4.5. Russell From: macports-users-boun...@lists.macosforge.org [macports-users-boun...@lists.macosforge.org] on behalf of Zack Perry [zack.pe...@sbcglobal.net] Sent: 08 March

RE: finding size of port

2011-02-24 Thread Russell Jones
@lists.macosforge.org Subject: Re: finding size of port Citando Russell Jones : If you have access to a system with it installed, you could use the following to get the size in kilobytes port contents texlive-latex-extra | xargs file | grep -vE : directory$ | cut -d: -f1 | xargs du -k | cut -f1

RE: finding size of port

2011-02-24 Thread Russell Jones
How does that give the right result, though? Are all the apparent files outside of that directory linked? Russell From: Ryan Schmidt [ryandes...@macports.org] Sent: 24 February 2011 11:05 To: Russell Jones Cc: Emmanuel Hainry; macports-users

RE: finding size of port

2011-02-23 Thread Russell Jones
If you have access to a system with it installed, you could use the following to get the size in kilobytes port contents texlive-latex-extra | xargs file | grep -vE : directory$ | cut -d: -f1 | xargs du -k | cut -f1 | paste -s -d + - | bc Russell From:

RE: dolphin (kdebase4) details view

2011-01-19 Thread Russell Jones
Have you tried bugs.kde.org? Russell From: macports-users-boun...@lists.macosforge.org [macports-users-boun...@lists.macosforge.org] on behalf of Jonathan Stickel [jjstic...@vcn.com] Sent: 19 January 2011 15:03 To: macports-users@lists.macosforge.org

RE: libpng 1.5.0 has issues and is breaking builds (but it's not in macports)

2011-01-18 Thread Russell Jones
two ports that failed to build... As you say, no need for a rollback as it's still 1.4.x. On Jan 17, 2011, at 14:51, Russell Jones wrote: Srinath Vadlamani wrote: Current warning on libpng website:http://www.libpng.org/pub/png/libpng.html seems that many ports are not building because

RE: libpng 1.5.0 has issues and is breaking builds

2011-01-17 Thread Russell Jones
gnuplot and netpbm fail to build, at least. I'm hoping for a rollback, but failing that I guess I'll have to start checking which ports don't build and finding/filing reports for each. I'm doing a leaf-per-line build now to see how far the damage extends. Russell

RE: libpng 1.5.0 has issues and is breaking builds

2011-01-17 Thread Russell Jones
[ryandes...@macports.org] Sent: 17 January 2011 21:30 To: Russell Jones Cc: Srinath Vadlamani; macports-users@lists.macosforge.org Subject: Re: libpng 1.5.0 has issues and is breaking builds On Jan 17, 2011, at 14:51, Russell Jones wrote: Srinath Vadlamani wrote: Current warning on libpng website

RE: [MacPorts] #27913: xulrunner-devel @2.0b8: error: --with-system-nspr and --with-nspr-libs/cflags are mutually exclusive.

2011-01-10 Thread Russell Jones
Try port contents firefox-x11-devel | grep bin Russell From: macports-users-boun...@lists.macosforge.org [macports-users-boun...@lists.macosforge.org] on behalf of Jasper Frumau [jasperfru...@gmail.com] Sent: 10 January 2011 14:54 To: MacPorts Users Subject: Re:

RE: OpenSSH

2010-11-09 Thread Russell Jones
It runs on port by default, and so I don't think it interacts as such. If you tried to run it on port 22, it wouldn't start until you disabled the built in ssh. And I mean disabled, not just stopped as on Linux: services seem to always auto-restart on Mac OS X. Russell

RE: Compiling Java 6 on 10.5.8

2010-09-28 Thread Russell Jones
Have you looked at the JVM selection dialogue in System Preferences? Russell From: macports-users-boun...@lists.macosforge.org [macports-users-boun...@lists.macosforge.org] on behalf of Michael_google gmail_Gersten [keybou...@gmail.com] Sent: 27

RE: Compiling Java 6 on 10.5.8

2010-09-28 Thread Russell Jones
I meant Java Preferences in /Applications/Utilities AIUI, Sun released as much as they could as GPL without violating third party license agreements. There is the GNU Classpath project to clone Java which predates this, OpenJDK which is Sun's release IIRC, and Iced Tea which I think is an

RE: build fail for package R @2.11.1 +gcc44

2010-09-09 Thread Russell Jones
Some suggestions: search for existing reports of this problem in trac.macports.org and if you find none, file a new ticket. Reply to this thread stating the ticket number. Contact the port maintainer. If there isn't one, try the relevant R mailing list(s). Russell ---BeginMessage--- Hey

Re: I'm a beginner so be nice to me

2010-09-03 Thread Russell Jones
On 03/09/10 09:27, Scott Haneda wrote: mv local/{,.off} This expands to mv local/ local/.off I think you want mv local{,.off} i.e. mv local local.off or even mv local{,.off}/ giving mv local/ local.off/ echo's handy for checking how things like this turn out. Russell

Re: latex packages and ports

2010-08-20 Thread Russell Jones
On 19/08/10 18:55, Scott Webster wrote: On Thu, Aug 19, 2010 at 10:49 AM, Thomas Weiss thomas.we...@s2001.tu-chemnitz.de wrote: Use the local tree. That's why it exists I'm not saying that that is an inappropriate thing to do, it's just that the whole point of using the macports versions

Re: rubber dependencies

2010-08-20 Thread Russell Jones
On 20/08/10 12:49, Arno Hautala wrote: MacPorts can live happily next to Fink I guess it can, but don't the macports developers recommend not doing this because of potential name conflicts and library cross-linking nightmares? Russell ___

Re: how to configure macports Lyx

2010-07-16 Thread Russell Jones
revtex at least is available as a separate port (or was quite recently: the texlive port has just been reorganised I think). Russell Srinath Vadlamani wrote: I am trying to get LyX @1.6.7_0+python25 (active) to be configured to use new document classes. The Mac lyx website

Re: Installing a particular package version via macports

2010-05-26 Thread Russell Jones
Simone wrote: Hi, I'm trying to install, via macports , a complete py-gtk environment[1] on snow-leopard but I'm getting errors[2] compiling some gtk2 dependencies. Supposing a gtk2 related problem, I used the port list installed|grep gtk2 to discover the gtk2 version installed by macports:

Re: MacPorts 1.9.0-beta2 now available for testing

2010-05-20 Thread Russell Jones
Joshua Root wrote: Source code and disk images for MacPorts 1.9.0-beta2 are now available [1]. Testing of either of these install methods is helpful. While there are no known regressions from 1.8.2 at this point, be prepared to encounter bugs. Please report any that you find [2] (after first

RE: Installing Quartz GnuCash

2010-05-18 Thread Russell Jones
Or perhaps have a look at the changeset used to make that pre-built package and translate it into macports (or just point out the relevant bits and file a bug). Russell ---BeginMessage--- Try the pre-built 2.2.9 version: http://sourceforge.net/projects/gnucash/ I struggled a lot with trying to

Re: LOL - macports for windows?

2010-04-19 Thread Russell Jones
reiser.p...@gmail.com wrote: Hello - I have had good results with MacPorts on my Mac, and now my girlfriend wants gnumeric for her windows machine. Is there an equivalent to MacPorts for Windows, something that will allow someone with not a lot of unix experience to get it up and running? Not

Re: Updated libvmime

2010-04-15 Thread Russell Jones
Nothing unless someone chooses to do something. That's what unmaintained means. The implication is that you might consider maintaining the port. Have a look at http://guide.macports.org/#development.local-repositorieshttp://guide.macports.org/#development if you think that might be an option.

RE: mplayer-devel upgrade breaks

2010-03-25 Thread Russell Jones
Does x264 build? It doesn't build on 10.6.2 +universal here. Are either of you setting +universal in /opt/local/etc/macports/variants.conf ? Russell ---BeginMessage--- I ran `sudo port outdatedsudo port upgrade outdated port clean --all mplayer-devel` and it worked for me. Installed

trac ticket reports broken?

2010-03-19 Thread Russell Jones
Is there something wrong with trac? I can't file tickets at the moment. I don't get an error, the ticket form just reloads with blank values. I checked the tickets filed by me report, and none of them have gone through. Russell ___ macports-users

RE: Port problem: GitX

2010-03-16 Thread Russell Jones
nor is there apparently a precompiled version of git There isn't anything precompiled in macports, I thought. Is there a reason not to use git-core? Could you modify that port to have a +universal variant? Russell ---BeginMessage--- Kleiman-ibook:~ michael$ sudo port install -d GitX

RE: port install wget broken

2010-03-15 Thread Russell Jones
Try sudo port selfupdate sudo port clean wget sudo port install wget If that fails, try sudo port clean wget sudo port -d install wget ---BeginMessage--- Nah, Still getting errors on this. New to ports so don't know my way around so well ;-) jmacl...@p0rnstar.local ~ sudo port sync -v

RE: port install wget broken

2010-03-15 Thread Russell Jones
Oh, and send us the output. I'm wondering if you're forgotten to type sudo at some point and installed locally. Russell ---BeginMessage--- Try sudo port selfupdate sudo port clean wget sudo port install wget If that fails, try sudo port clean wget sudo port -d install wget ---BeginMessage---

RE: no module named vtk

2010-03-12 Thread Russell Jones
As a side note, it's always worth running port variants package when considering installing package That way you can pick from the list and not have to guess, though of course variant names should be consistent. Have you encountered ports that have +py26 as a variant? Sounds like it might be an

RE: history completion possible?

2010-02-18 Thread Russell Jones
fn+up/dn = pg up/dn Also, to get a pg up/dn control sequence in terminal, press shift + pg up/dn, so you your keyboard shift+fn+up/dn Russell ---BeginMessage--- that started with svn. However, I don't remember how I did that (it was years ago) and I can't find anything about it in my bash

pgplot fails to build on 10.5.8

2010-02-11 Thread Russell Jones
I've filed a ticket here: https://trac.macports.org/ticket/23668 Russell ___ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macports-users

RE: Open LDAP +universal won't build on 10.6.2

2010-01-22 Thread Russell Jones
Now working, thanks! So the problem was that openldap didn't depend on icu? Russell ---BeginMessage--- On Jan 21, 2010, at 10:16, Russell Jones wrote: I filed a bug in trac ( http://trac.macports.org/ticket/23300 ) about this a few days ago. Anyone able to shed some light on why it doesn't

re: HELP!!!

2009-12-22 Thread Russell Jones
In-Reply-To: db9cb0a1-9726-468a-a25d-7d119d08c...@wcc.net HELP!! I NEED A QUESTION ANSWERED, ARE THERE ANY HUMANS OUT THERE? I have installed Mac ports, but I can't find or figure out how to access user command list or menu. Please tell me how to access user option menu, or