Portmanager won't update some ports

I just ran a:

Code:
portmanager -u

on my FreeBSD server and it updated all ports successfully except this one:

Code:
00141 have:openssh-portable-5.2.p1_1,1         /security/openssh-portable          built with OLD dependency: openssl-0.9.8k_2

skipping openssh-portable-5.2.p1_1,1 /security/openssh-portable marked IGNORE reason: looping, 3rd attempt at make

I always seem to have issues with OpenSSH when updating my ports, can someone shed some light on this pleas? :e

The other thing I did was an update of the system:

Code:
freebsd-update fetch
freebsd-update install

If I run uname -a I get the following:

Code:
FreeBSD alpha.bsdpanic.com 7.2-RELEASE-p2 FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009     root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC  i386

I have patched my machine up to 7.2-RELEASE-p3. Is there any other way around rebooting your server after running freebsd-update?

I know its a silly thing to ask but I am getting use to never rebooting my server and watching the uptime counter increase all the time hehe
 
xy16644 said:
I just ran a:

Code:
portmanager -u

on my FreeBSD server and it updated all ports successfully except this one:

Code:
00141 have:openssh-portable-5.2.p1_1,1         /security/openssh-portable          built with OLD dependency: openssl-0.9.8k_2

skipping openssh-portable-5.2.p1_1,1 /security/openssh-portable marked IGNORE reason: looping, 3rd attempt at make

I just looked at the Makefile, and there isn't anywhere it defines IGNORE, so that must be from portmanager. Try this to manually upgrade the port:

Code:
cd /usr/ports/security/openssh-portable/
make

If that works, then you can install it with:

Code:
make deinstall reinstall clean
 
jrick, I tried what you said but when I ran portmanager -u I get the same error that I mentioned above. Really odd?
 
There are more problems with this port, it seems. On FreeBSD 8:

Code:
[/usr/ports/security/openssh-portable]# make
===>  openssh-portable-5.2.p1_1,1 is marked as broken: does not compile.
*** Error code 1
 
The other error I get is when I run this:

Code:
pkg_version -vIL'<'

I then get:

Code:
libltdl-1.5.26                      !   Comparison failed
libtool-1.5.26                      !   Comparison failed

Why do I get these errors? All the other ports are up to date and fine!
 
Aaaah thank you! That helped.

I ran:

Code:
  portmaster -o devel/libtool22 devel/libtool15
  portmaster -o devel/libltdl22 devel/libltdl15

Now when I run
Code:
pkg_version -vIL'<'

I get "up-to-date with index" on all my ports! ;-))
 
I dont know if I am losing my marbles but after I ran a:
Code:
freebsd-update fetch
freebsd-update install

I could have sworn it said it was going to upgrade me to:

7.2-RELEASE-p3

But when I do a uname -a I get:
Code:
FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009

Am I on the latest build?

If I run freebsd-update fetch it says:
Code:
No updates needed to update system to 7.2-RELEASE-p3.
 
xy16644 said:
I dont know if I am losing my marbles but after I ran a:
Code:
freebsd-update fetch
freebsd-update install

I could have sworn it said it was going to upgrade me to:

7.2-RELEASE-p3

But when I do a uname -a I get:
Code:
FreeBSD 7.2-RELEASE-p2 #0: Wed Jun 24 00:57:44 UTC 2009

Am I on the latest build?

If I run freebsd-update fetch it says:
Code:
No updates needed to update system to 7.2-RELEASE-p3.

If the kernel wasn't updated, then uname will still show the last kernel revision. If you're vain enough, you can rebuild your kernel from source to "fix" this, but it's really not necessary. If freebsd-update says you're up to date, you are up to date.
 
Try rebooting (if the kernel is actually of the same date as the freebsd-update run, you'll have to reboot to use it). Indefinite uptimes are, in my opinion, a pointless form of vanity ... ;)
 
DutchDaemon said:
Try rebooting (if the kernel is actually of the same date as the freebsd-update run, you'll have to reboot to use it). Indefinite uptimes are, in my opinion, a pointless form of vanity ... ;)

I did reboot the box last night and it didn't make a difference so I guess I am fully up to date and patched?

It still amazes me how quickly FreeBSD reboots! :e
 
xy16644 said:
I did reboot the box last night and it didn't make a difference so I guess I am fully up to date and patched?

Yes.

xy16644 said:
It still amazes me how quickly FreeBSD reboots! :e

If you think FreeBSD boots fast, you should check out Haiku. My Haiku install literally boots in no more than 9 seconds. :e
 
DutchDaemon said:
There are more problems with this port, it seems. On FreeBSD 8:

Code:
[/usr/ports/security/openssh-portable]# make
===>  openssh-portable-5.2.p1_1,1 is marked as broken: does not compile.
*** Error code 1

From the release notes:
Code:
- Under OSVERSION >= 800000, only mark BROKEN if WITH_KERBEROS.

building without kerberos worked for me.
 
Back
Top