Opened 16 years ago
Closed 15 years ago
#18408 closed defect (worksforme)
Cannot upgrade mercurial (macports wants to reinstall latest dependencies)
Reported by: | apple@… | Owned by: | deric@… |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | ports | Version: | 1.7.0 |
Keywords: | Cc: | nerdling (Jeremy Lavergne) | |
Port: | mercurial |
Description
I tried to upgrade mercurial today, but the upgrade gets into a situation where it wants to install ports that are already installed and that are not outdated and ports that are installed and depenedences that are not the latest versions but are according to the mercurial port file acceptable.
I have tried a number of ways to get the install to work beginning with 'port upgrade mercurial', next 'port -n upgrade mercurial', 'port -fn upgrade mercurial' and 'port -f upgrade mercurial'
In all cases, I either get to a place where some dependency of a dependency will not uninstall because it is required for other ports and the whole thing fails, or I get to a place where gettext (which I know is up to date) keeps being refetched, re-everything, fails to re-install and MP either fails or tries again.
Here is what 'port installed' and 'port outdated' say before I try to upgrade:
grendel% port installed mercurial The following ports are currently installed: mercurial @0.9.5_0 grendel% port outdated mercurial The following installed ports are outdated: mercurial 0.9.5_0 < 1.1.2_0 grendel% port installed gperf The following ports are currently installed: gperf @3.0.3_0 grendel% port outdated gperf No installed ports are outdated. grendel% port installed bzip2 The following ports are currently installed: bzip2 @1.0.5_1 grendel% port outdated bzip2 No installed ports are outdated. grendel% port installed gettext The following ports are currently installed: gettext @0.17_4 grendel% port outdated gettext No installed ports are outdated. grendel% port installed zlib The following ports are currently installed: zlib @1.2.3_2 grendel% port outdated zlib No installed ports are outdated. grendel% port installed python25 The following ports are currently installed: python25 @2.5.2_1+darwin_9 grendel% port outdated python25 The following installed ports are outdated: python25 2.5.2_1 < 2.5.4_0 grendel% port installed expat The following ports are currently installed: expat @2.0.1_0 grendel% port outdated expat No installed ports are outdated. grendel% port installed libiconv The following ports are currently installed: libiconv @1.12_2 grendel% port outdated libiconv No installed ports are outdated.
Attachments (4)
Change History (15)
Changed 16 years ago by apple@…
Changed 16 years ago by apple@…
port -df upgrade mercurial &> /tmp/debug1
Changed 16 years ago by apple@…
port -dn upgrade mercurial &> /tmp/debug2
Changed 16 years ago by apple@…
port -dfn upgrade mercurial &> /tmp/debug3
comment:1 follow-up: 5 Changed 16 years ago by mf2k (Frank Schima)
Owner: | changed from macports-tickets@… to deric@… |
---|---|
Port: | mercurial added |
Try the following:
sudo port selfupdate sudo port upgrade mercurial
If it fails, just attach the output in your reply.
comment:2 Changed 16 years ago by mf2k (Frank Schima)
I meant to say that you should just paste the output in your reply rather than use the less convenient gzipped attachment.
comment:4 Changed 16 years ago by apple@…
Replying to snc@…:
Cc Me!
The portfile was the latest because I ran selfupdate before I tried to upgrade initially. grendel% port selfupdate MacPorts base version 1.700 installed Downloaded MacPorts base version 1.700 The MacPorts installation is not outdated so it was not updated grendel% diff /DooDad/Backups.backupdb/grendel/2009-02-06-003745/Bede/opt/local/var/macports/sources/rsync.macports.org/release/ports/dev$ /opt/local/var/macports/sources/rsync.macports.org/release/ports/devel/mercurial/Portfile grendel%
DooDad is my Timemachine drive
By the way, I finally did a manual upgrade of the port (stepping through each phase of the build and discovered that configure is not in the the tarball for the port. But macports calls it anyway. Stopping the build. The prefix variable in the mercurial Makefile and setup.py is still set to /usr/local (there are no patches). I think the problem I am having is at a lower level than the mercurial port, but the port itself does not appear to be correct for the tarball being downloaded.
comment:5 Changed 16 years ago by apple@…
Replying to macsforever2000@…:
Try the following:
sudo port selfupdate sudo port upgrade mercurialIf it fails, just attach the output in your reply.
I do not see how to CC snc@, so I am replying twice. The portfile was the latest because I ran selfupdate before I tried to upgrade initially.
grendel% port selfupdate MacPorts base version 1.700 installed Downloaded MacPorts base version 1.700 The MacPorts installation is not outdated so it was not updated grendel% diff /DooDad/Backups.backupdb/grendel/2009-02-06-003745/Bede/opt/local/var/macports/sources/rsync.macports.org/release/ports/dev$ /opt/local/var/macports/sources/rsync.macports.org/release/ports/devel/mercurial/Portfile grendel%
DooDad is my Timemachine drive
By the way, I finally did a manual upgrade of the port (stepping through each phase of the build and discovered that configure is not in the the tarball for the port. But macports calls it anyway. Stopping the build. The prefix variable in the mercurial Makefile and setup.py is still set to /usr/local (there are no patches). I think the problem I am having is at a lower level than the mercurial port, but the port itself does not appear to be correct for the tarball being downloaded.
comment:6 Changed 16 years ago by mf2k (Frank Schima)
You do not need to reply twice, all people in the cc, such as snc, will get your replies.
Based on the output of the 'port installed' command above, I think the problem is that none of your ports are active, even though they are installed. You do not seem to be using 'sudo' before port and AFAIK, you must do that. That would explain why ports are getting reinstalled and failing.
Try the following:
sudo port activate mercurial
You will still have to activate all of the dependencies for it to work.
comment:7 follow-up: 8 Changed 16 years ago by ryandesign (Ryan Carsten Schmidt)
Replying to apple@…:
I have tried a number of ways to get the install to work beginning with 'port upgrade mercurial', next 'port -n upgrade mercurial', 'port -fn upgrade mercurial' and 'port -f upgrade mercurial'
I do not completely understand all the symptoms you are describing, but you definitely do not want to run "port -f upgrade anything". The force flag should be used sparingly, and only when necessary, and using it without also using the "-n" flag will almost definitely cause things to rebuilt that do not need to be rebuilt.
comment:8 follow-up: 9 Changed 16 years ago by apple@…
Replying to ryandesign@…:
Replying to apple@…:
I have tried a number of ways to get the install to work beginning with 'port upgrade mercurial', next 'port -n upgrade mercurial', 'port -fn upgrade mercurial' and 'port -f upgrade mercurial'
I do not completely understand all the symptoms you are describing, but you definitely do not want to run "port -f upgrade anything". The force flag should be used sparingly, and only when necessary, and using it without also using the "-n" flag will almost definitely cause things to rebuilt that do not need to be rebuilt.
See below. Also, I think somewhere in all this I included a directory listing showing the the receipts that port was complaining about were in the receipts directory. Note that those marked as active
grendel% port installed > /tmp/debug grendel% cat /tmp/debug The following ports are currently installed: a2ps @4.13b_2 (active) a52dec @0.7.4_0 aalib @1.4rc5_2 abiword2 @2.2.8_0+gnome (active) antiword @0.37_0 apache @1.3.37_0 apr @1.2.2_0 (active) apr-util @1.2.8_2 asciidoc @8.3.1_0 aspell @0.60.5_0 aspell-dict-en @6.0_0 at-spi @1.24.0_0+x11 aterm @1.0.0_0+darwin_8 atk @1.24.0_0 audiofile @0.2.6_2 autoconf @2.63_0 autogen @5.6.2_0 (active) automake @1.10.2_0 babl @0.0.22_0 bakery @2.3.8_0 (active) balsa @2.0.17_0 (active) barcode @0.98_0 bibtex2html @1.74_0 (active) bison @2.3_2 bitstream-vera @1.10_0 (active) boehmgc @6.5_0 (active) bogofilter @1.1.5_0+darwin_8 boost @1.35.0_2+darwin_9 boost-jam @3.1.16_0 bs @2.7_0 (active) bzip2 @1.0.5_1 cairo @1.8.4_0+macosx cairomm @1.6.4_0 calc @2.11.11_0 cidr @2.3.2_0 (active) clamav @0.94.2_0 clisp @2.38_1+darwin_8 cmake @2.2.3_0 (active) cocoa-sharp @0.9.4_0 cogito @0.18.2_0 control-center @2.8.0_0 (active) coreutils @6.11_0+darwin_9 csv2xml @0.6_0 cups-headers @1.1.15_1 curl @7.19.2_0 cyrus-sasl2 @2.1.22_0 db4 @4.3.29_1+darwin_8 db41 @4.1.25_1+darwin_8 db44 @4.4.20_1+darwin_8 db45 @4.5.20_2+darwin_8 db46 @4.6.21_3 dbh @1.0-19_0 (active) dbus @1.2.4_2 dbus-glib @0.76_1 desktop-file-utils @0.15_0 dia @0.92.2_0 (active) dict @1.9.7_0 (active) diffutils @2.8.1_3 docbook-xml @4.5_1 docbook-xml-scrollkeeper @4.2_0 (active) docbook-xsl @1.72.0_0 doxygen @1.4.6_0 (active) dsniff @2.3_0 (active) eel @2.24.1_0+x11 eog @2.8.0_0 (active) epiphany @1.4.4_0 (active) esound @0.2.41_1 evolution-data-server @2.22.1_0 expat @2.0.1_0 ffmpeg @0.4.9-pre1_12+a52+gpl fftw-3 @3.0.1-fma_3+altivec (active) findutils @4.4.0_0 firefox-x11 @2.0.0.13_1 flac @1.2.1_0 flex @2.5.35_0 fltk @1.1.6_0+macosx fnlib @0.5_0 (active) fontconfig @2.6.0_1+macosx fop-0.20 @0.20.5_0 freetype @2.3.7_3+macosx freetype1 @1.3.1_0 (active) fribidi @0.10.5_0 (active) ftgl @2.0.8_0 (active) gail @1.22.1_0 gal @2.2.2_0 (active) gal2 @1.99.11_0 (active) gauche @0.8.1_0 (active) gauche-gl @0.3.1_0 (active) gauche-gtk @0.4.1_0 (active) gawk @3.1.6_0 gcalctool @5.5.41_0 (active) gconf @2.22.0_0 gconf-editor @2.24.1_0 gconfmm @2.10.0_0 (active) gd @1.8.4_3 gd2 @2.0.35_2 gdbm @1.8.3_1 gedit @2.8.0_0 (active) gegl @0.0.20_2 genius @0.6.1_0 (active) gensig @2.3_0 (active) getopt @1.1.4_1 gettext @0.17_4 ggv @2.8.0_0 (active) ghostscript @8.53_0+ac15+ag14+aj16+ak12 ghostview @1.5_0 (active) gimp-print @4.2.7_0 gimp2 @2.6.4_0+darwin_9+x11 git-core @1.5.0.5_0 glade @2.12.2_1 glib1 @1.2.10_5 glib2 @2.18.2_0+darwin_9 glibmm @2.18.1_0 glut @3.7_0 (active) gmake @3.80_0 (active) gmp @4.2.4_0 gmp-cxx-wrappers @4.2.1_2+test gnome-applets @2.10.0_0 (active) gnome-backgrounds @2.10.0_0 (active) gnome-common @2.20.0_0 gnome-control-center @2.24.0.1_0 gnome-desktop @2.24.1_2+x11 gnome-doc-utils @0.12.2_1 gnome-games @2.8.0_0 (active) gnome-icon-theme @2.22.0_0 gnome-keyring @2.22.1_0 gnome-menus @2.22.1_0 gnome-mime-data @2.4.3_0 gnome-panel @2.22.1.3_0 gnome-platform-suite @2.24.0_0 gnome-session @2.22.1.1_0 gnome-settings-daemon @2.22.1_0 gnome-system-monitor @2.6.0_0 (active) gnome-terminal @2.10.0_0 (active) gnome-themes @2.22.0_0 gnome-utils @2.20.0.1_1 gnome-vfs @2.24.0_0 gnome-vfs-monikers @2.15.3_0 gnome-vfsmm @2.18.0_0 gnupg @1.4.4_0 gnuplot @3.8j.0_0 (active) gnuregex @0.12_0 (active) gnutar @1.20_0+darwin_9 gnutls @2.2.2_0+darwin_8 gocr @0.43_0+darwin_8 gpdf @2.8.0_0 (active) gperf @3.0.3_0 gpg-agent @1.9.20_2 graphviz @2.6_3+darwin_8 (active) gsed @4.1.5_3 gsl @1.6_0 (active) gst-plugins-base @0.10.19_0 gst-plugins-good @0.10.7_0 gstreamer @0.10.19_0 gtk-doc @1.10_2 gtk-engines2 @2.16.1_0 gtk2 @2.14.4_1+x11 gtkglext @1.2.0_0+darwin_9 gtkmm @2.14.3_0 gtksourceview @1.8.5_1 guile @1.6.4_0 (active) gvfs @1.0.2_1 gwhich @2.16_0 (active) gzip @1.3.12_0 hdf5 @1.6.0_0 (active) heimdal @0.7.2_0 help2man @1.36.4_1 hfstar @1.13.19_2 (active) hicolor-icon-theme @0.5_0 (active) howl @0.9.10_0 html-xml-utils @3.7_1 html2text @1.3.2a_3 hypermail @2.1.8_0+gdbm (active) icon-naming-utils @0.8.6_0 icu @3.4_0+darwin_8 id3lib @3.8.3_0 ifstat @1.1_0 (active) ilmbase @1.0.1_2 ImageMagick @6.4.1-6_0+q16 imlib2 @1.2.2_0 intltool @0.40.5_0 iperf @1.7.0_0 (active) iso-codes @2.0_0 jam @2.5_1 jasper @1.900.1_1+darwin_9 jikes @1.22_0 (active) jpeg @6b_3 kerberos5 @1.4.3_0 lablgtk2 @2.10.1_0 lame @3.97b2_0 lcms @1.15_0 libao @0.8.8_2 libart_lgpl @2.3.20_0 libassuan @0.6.10_0 libast @0.7_1 libbonobo @2.22.0_0 libbonoboui @2.24.0_0 libcaca @0.9_0 libcanberra @0.10_1 libcddb @1.3.0_0 libcdio @0.75_0 libcroco @0.6.1_1 libdv @1.0.0_0 libelf @0.8.10_1 libexif @0.6.13_1 libgail-gnome @1.20.1_0 libgcrypt @1.2.4_0+darwin_8 libgdiplus @1.2.5_0+darwin_8 libglade2 @2.6.3_0 libglademm @2.6.6_0 libgnome @2.24.1_1 libgnomecanvas @2.20.1.1_0 libgnomecups @0.2.2_0 libgnomekbd @2.22.0_0 libgnomemm @2.22.0_0 libgnomeprint @2.12.1_0 libgnomeprintui @2.12.1_0 libgnomeui @2.24.0_0 libgpg-error @1.3_0 libgsf @1.14.8_0 libgtkhtml @2.11.1_0 libgtop @2.22.1_0 libgweather @2.22.1.2_0 libiconv @1.12_2 libidl @0.8.10_0 libidl1 @0.6.8_0+darwin_powerpc libidn @0.6.11_0+darwin_8 libksba @1.0.1_0 libmad @0.15.1b_0 libmcrypt @2.5.8_0+darwin_8 libmikmod @3.2.0-beta2_0 libmng @1.0.10_0 libnet @1.0.2a_0 (active) libnids @1.18_0 (active) libogg @1.1.3_2 liboil @0.3.14_0 libopenraw @0.0.5_0 libpcap @0.9.4_0 libpixman @0.12.0_1 libpng @1.2.34_0 libproplist @0.10.1_0 (active) librsvg @2.12.7_1 libsdl @1.2.11_0+darwin_8 libsdl_gfx @2.0.13_2 libsdl_image @1.2.4_5 libsdl_mixer @1.2.6_4 libsdl_ttf @2.0.7_2 libshout2 @2.2.2_1 libsigc++ @1.2.7_0 (active) libsigc++2 @2.0.11_0 (active) libsigcxx2 @2.0.17_0+darwin_8 (active) libsigsegv @2.1_0 (active) libsndfile @1.0.11_0 libsoup @2.4.1_0 libtasn1 @1.3_0 libtheora @1.0beta2_0 libtool @2.2.6a_0 libungif @4.1.0b1_0 (active) libusb @0.1.12_0 libvorbis @1.2.0_0 libwmf @0.2.8.4_0 libwnck @2.22.1_0 libwpd @0.8.9_1 (active) libxklavier @3.6_1 libxml2 @2.7.2_1+darwin_9 libxslt @1.1.22_0 linc @1.0.3_0 (active) lincity @1.13.0_0 lincity-ng @1.0.3_0 loudmouth @1.2.1_0 lp_solve @4.0_0 lua @5.1.4_0 lynx @2.8.6rel.5_0+ssl lzo @1.08_0 m4 @1.4.12_1 mad @0.14.2b_0 (active) mathomatic @11.3e_0 (active) mercurial @1.1.2_0 metacity @2.24.0_0 mhash @0.9.9_0+darwin_8 mkcatalog @1.1_0 (active) mod_perl @1.30_2 mono @1.2.5_0+darwin_8 most @4.9.5_0 (active) mpack @1.6_0 (active) mpfr @2.2.0_3+darwin_8 mysql4 @4.1.20_0+darwin_8+server mysql5 @5.0.37_0+darwin_8+server nano @2.0.6_1 nautilus @2.24.1_0 nawk @20070501_0 ncurses @5.7_0 ncursesw @5.7_0 neon @0.28.2_0 netpbm @10.31_0+darwin_8 nmap @4.60_0 nspr @4.7_1 nss @3.11.9_0 num-utils @0.5_0 oaf @0.6.10_0 (active) ocaml @3.09.2_0 ocamlduce @3.08.4pl3_1 (active) octave @2.1.57_0 (active) opencdk @0.6.6_0 openexr @1.6.1_1 openjade @1.3.2_2 openjpeg @1.3_2 openldap @2.3.35_0 openMotif @2.2.4_1 (active) opensp @1.5.2_0 openssl @0.9.8j_0 openssl97 @0.9.7m_0+darwin_8 orbit2 @2.14.12_0 osxutils @1.7_0 p5-algorithm-annotate @0.10_0 (active) p5-algorithm-diff @1.1901_0 (active) p5-archive-tar @1.32_0 p5-bsd-resource @1.25_0 p5-class-accessor @0.25_0 p5-class-autouse @1.26_0 p5-class-data-inheritable @0.02_0 p5-class-dbi @0.96_0 p5-class-methodmaker @2.08_0 p5-class-trigger @0.09_0 p5-class-whitehole @0.04_0 p5-clone @0.20_0 p5-compress-zlib @1.41_0 (active) p5-data-hierarchy @0.21_0 (active) p5-data-uuid @0.14_0 p5-dbi @1.50_0 p5-dbix-contextualfetch @1.02_0 p5-digest-hmac @1.01_2 (active) p5-digest-sha1 @2.11_0 p5-file-chdir @0.06_0 (active) p5-file-type @0.22_0 (active) p5-freezethaw @0.43_0 (active) p5-getopt-long @2.37_0 p5-gnupg-interface @0.33_0 p5-html-parser @3.54_0 p5-html-tagset @3.10_0 (active) p5-html-tree @3.1901_0 p5-ima-dbi @0.33_0 p5-io-digest @0.10_0 (active) p5-io-pager @0.06_0 p5-io-stringy @2.110_0 (active) p5-io-zlib @1.06_0 p5-ipc-run3 @0.034_0 p5-lingua-en-inflect @1.88_0 p5-locale-gettext @1.05_0 p5-locale-maketext-lexicon @0.45_1 p5-locale-maketext-simple @0.16_0 p5-mail-audit @2.1_2 (active) p5-mail-pop3client @2.16_0 (active) p5-mail-spamassassin @3.2.5_0+bayes p5-mailtools @1.74_0 p5-mime-base64 @3.07_0 p5-mime-tools @5.418_0 (active) p5-net-dns @0.57_0 p5-net-ident @1.20_1 (active) p5-net-ip @1.25_0 p5-net-libidn @0.09_0 p5-parse-recdescent @1.94_1 (active) p5-pathtools @3.27_0 p5-perlio-eol @0.13_0 (active) p5-perlio-via-dynamic @0.12_0 p5-perlio-via-symlink @0.05_0 (active) p5-perlmagick @6.32_0 p5-pod-escapes @1.04_0 (active) p5-pod-simple @3.02_1 (active) p5-regexp-shellish @0.93_0 (active) p5-svn-mirror @0.68_0 (active) p5-svn-simple @0.27_0 (active) p5-term-readkey @2.30_0 p5-text-diff @0.35_0 (active) p5-timedate @1.16_0 (active) p5-universal-moniker @0.08_0 p5-uri @1.35_0 (active) p5-vcp-autrijus-snapshot @0.9-20041020_1 p5-xml-autowriter @0.39_0 p5-xml-namespacesupport @1.09_0 p5-xml-parser @2.34_3 (active) p5-xml-rss @1.05_0 (active) p5-xml-sax @0.16_1 p5-xml-simple @2.18_0 p5-yaml @0.39_0 pango @1.22.2_0 pangomm @2.14.1_0 pangoxsl @1.6.0.1_1 pcre @7.6_0 pdflib @7.0.0_0+darwin_8 perl5.8 @5.8.8_3+darwin_9+shared+threads php4 @4.4.7_0+apache+darwin_8+macosx php5 @5.2.6_0+apache2+macosx+mysql5+pear physfs @1.0.0_0+darwin_8 pinentry @0.7.2_0 pkgconfig @0.23_1 Platypus @3.4_0 poll-emulator @1.4_0 (active) poppler @0.10.1_0+x11 poppler-data @0.2.1_0 popt @1.13_0 port_cutleaves @0.1.1_0 pstree @2.32_0 psutils @p17_0 (active) pth @2.0.6_0 py-libxml2 @2.6.21_0 py-xml @0.8.4_0 py25-bz2 @2.5.1_0 py25-cairo @1.4.12_1+darwin_9 py25-crypto @2.0.1_0 py25-dateutil @1.2_1 py25-elementtree @1.2.6-20050316_0 py25-gnome @2.22.0_0+darwin_9 py25-gobject @2.14.1_0+darwin_9 py25-gtk @2.12.1_0+darwin_9 py25-hashlib @2.5.1_0 py25-libxml2 @2.6.21_1 py25-matplotlib @0.98.3_0+tkinter py25-nltk @0.9.5_0 py25-nose @0.10.3_1 py25-numeric @24.2_1+macosx py25-orbit @2.14.3_1+darwin_9 py25-setuptools @0.6c8_2 py25-tkinter @2.5.2_0 py25-tz @2007k_0 py25-zlib @2.5.1_0 python25 @2.5.4_0+darwin_9+macosx qt3 @3.3.6_0+darwin_8 rarian @0.8.0_0 ratpoison @1.4.3_0 re2c @0.13.0_0 readline @5.1.004_0 readline-4 @4.3_0 (active) recode @3.6_1 render @0.9.2_0 revtex @4_0 (active) rsync @3.0.3_2 rtf2html @1.1beta_0 (active) rtf2latex @1.5_0 (active) rtfreader @1.0_0 (active) ruby @1.8.6-p111_1+darwin_9+thread_hooks sane-backends @1.0.17_0+local-backends saxon @8.9_0 scrollkeeper @0.3.14_0 (active) seamonkey @1.1.9_0+darwin_9+nomail shared-mime-info @0.15_0 (active) sharutils @4.7_0 sipcalc @1.1.2_0 (active) slang @1.4.9_0 (active) slib @3a3_0 sloth @1.3_0 (active) smpeg @0.4.4_6+darwin_8 sox @12.17.4_0 (active) speex @1.0.5_0 sqlite3 @3.4.0_0+darwin_8 startup-notification @0.8_0 (active) subversion @1.4.4_0 subversion-perlbindings @1.4.4_0 svk @1.07_0 (active) swish-e @2.4.4_0 t1lib @5.0.2_0 (active) taglib @1.5_0 tcl @8.5.3_0 tcl-tls @1.5.0_0 tcllib @1.10_0 tcptrace @6.6.1_1 (active) teTeX @3.0_1 (active) texi2html @1.76_3 (active) texinfo @4.8_1 TeXShop @2.03_1 (active) tftp-hpa @0.40_0 tidy @20050705_0 (active) tiff @3.8.2_2+darwin_9+macosx tivodecode @0.2pre4_0 tk @8.5.3_0 tkdiff @4.1.3_0 tnef @1.4.5_1 transfig @3.2.4_0 (active) twain-sane @1.8_0 unison @2.13.16_0 unrtf @0.20.5_0 userinfo @1.10a_0 (active) vcp @1.6.1_0 (active) vorbis-tools @1.2.0_1 vte @0.11.11_0 (active) w3m @0.5.2_0 wavpack @4.41.0_0 wget @1.11.4_0 whatmask @1.2_0 wxWidgets @2.8.2_0+darwin_8 wxWindows @2.4.2_1+mac (active) xar @09272004_0 (active) xattr @0.1_0 Xaw3d @1.5E_1 xdiskusage @1.48_0+darwin_8 xfig @3.2.4_4 Xft2 @2.1.13_0 xmlcatmgr @2.2_1 xmlformat @1.03_0 (active) xmlto @0.0.18_3 xorg-renderproto @0.9.3_0 xorg-util-macros @1.1.5_0 xorg-xproto @7.0.11_1 xpm @3.4k_0 (active) xrender @0.9.0_3 xsane @0.991_0 xv @3.10a_0 (active) yelp @2.22.0_2 zenity @2.10.0_0 (active) zip @2.32_0 zlib @1.2.3_2 grendel%
comment:9 Changed 16 years ago by apple@…
Whoops Note that those marked as (active) are ports that I have had for a very long time. Most of them I do not use.
comment:11 Changed 15 years ago by jmroot (Joshua Root)
Resolution: | → worksforme |
---|---|
Status: | new → closed |
I don't see the problem given that the final output shows mercurial @1.1.2_0. If there was actually a bug here it was probably a dupe of #16260.
port -d upgrade mercurial &> /tmp/debug