Re: latest git ports upgrade

2012-11-30 Thread Kevin Wilcox
On Nov 29, 2012 2:27 PM, "Artifex Maximus"  wrote:

> BTW, why system does not know user git_daemon when git_daemon was in
> passwd and master.passwd? I am using portmaster to upgrade my
> installed ports.

I have had this exact issue when installing postgresql via portmaster. When
it fails (and it almost always does for me on 8.3-RELEASE when installing
9.1) I use vipw to remove the entry for the pgsql user. It's a little
tedious but not enough of a headache for me to file a PR or investigate.

kmw
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: latest git ports upgrade

2012-11-29 Thread Artifex Maximus
On Thu, Nov 29, 2012 at 7:59 PM, Artifex Maximus  wrote:
> On Thu, Nov 29, 2012 at 3:50 PM, Mark Felder  wrote:
>> On Thu, 29 Nov 2012 15:04:12 +0100
>> Artifex Maximus  wrote:
>>
>>> On next upgrade got the first error so I am in loop. Any idea what to do?
>>
>> Please check /usr/ports/UPDATING which has a note in there about git.
>
> Thanks for your answer. The UPDATING entry is about the daemon process
> repository permission not about the error I have. Mine is some problem
> in user adding process at port install I think.

Sorry for the noise I forgot to run pwd_mkdb first time. I had success
with pw group del git_daemon then editing master.passwd and run
pwd_mkdb -p master.passwd which generate password database and
recreate passwd from master.passwd.

BTW, why system does not know user git_daemon when git_daemon was in
passwd and master.passwd? I am using portmaster to upgrade my
installed ports.

Bye,
a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: latest git ports upgrade

2012-11-29 Thread Artifex Maximus
On Thu, Nov 29, 2012 at 3:50 PM, Mark Felder  wrote:
> On Thu, 29 Nov 2012 15:04:12 +0100
> Artifex Maximus  wrote:
>
>> On next upgrade got the first error so I am in loop. Any idea what to do?
>
> Please check /usr/ports/UPDATING which has a note in there about git.

Thanks for your answer. The UPDATING entry is about the daemon process
repository permission not about the error I have. Mine is some problem
in user adding process at port install I think.

Bye,
a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: latest git ports upgrade

2012-11-29 Thread Mark Felder
On Thu, 29 Nov 2012 15:04:12 +0100
Artifex Maximus  wrote:

> On next upgrade got the first error so I am in loop. Any idea what to do?

Please check /usr/ports/UPDATING which has a note in there about git.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


latest git ports upgrade

2012-11-29 Thread Artifex Maximus
Hello!

On upgrade I got the following error with git port:

===> Creating users and/or groups.
Using existing group `git_daemon'.
Creating user `git_daemon' with uid `964'.
pw: user 'git_daemon' already exists
*** Error code 74

Look for git_daemon user:

# id git_daemon
id: git_daemon: no such user

Hm. Try to delete:

# pw userdel git_daemon
pw: no such user `git_daemon'

Well. Are there really no such user?

# grep git_daemon /etc/passwd
git_daemon:*:964:964:git daemon:/nonexistent:/usr/sbin/nologin
# grep git_daemon /etc/master.passwd
git_daemon:*:964:964::0:0:git daemon:/nonexistent:/usr/sbin/nologin

Strange. Ok, do it manually. I remove git_daemon from passwd,
master.passwd and group which is basically a no-no process I know.
Then try to upgrade again. Now a little different error but still not
able to upgrade:

===> Creating users and/or groups.
Creating group `git_daemon' with gid `964'.
Creating user `git_daemon' with uid `964'.
pw: user 'git_daemon' disappeared during update
*** Error code 67

On next upgrade got the first error so I am in loop. Any idea what to do?

Bye,
a
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Ports: How do dependent ports upgrade when dependency shared lib version is bumped?

2010-12-12 Thread Lowell Gilbert
Yuri  writes:

> I recently updates the system. libatkmm-1.6.so.1 got bumped to
> libatkmm-1.6.so.2, now inkscape fails:
> /libexec/ld-elf.so.1: Shared object "libatkmm-1.6.so.1" not found,
> required by "inkscape"
>
> What is the right behavior in such situation? Should all depending
> packages be also automatically bumped? Or portupghrade should detect
> the change and automatically upgrade dependent ports?

There's no way to do it fully automatically, but porters try to do this
by hand, by incrementing PORTREVISION for the dependent ports.  Once
that is done, portupgrade will pick it up automatically.  However,
porters will sometimes miss subtle dependencies, especially optional
ones.  

In this case, I don't see a direct dependency of inkscape on atkmm, so I
don't know how it should have been marked.  In any case, inkscape was
updated shortly after atkmm, so if you upgraded everything more
recently, it looks like you should have gotten inkscape rebuilt after
the atkmm change.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Ports: How do dependent ports upgrade when dependency shared lib version is bumped?

2010-12-12 Thread Alexander Best
On Sat Dec 11 10, Yuri wrote:
> I recently updates the system. libatkmm-1.6.so.1 got bumped to 
> libatkmm-1.6.so.2, now inkscape fails:
> /libexec/ld-elf.so.1: Shared object "libatkmm-1.6.so.1" not found, 
> required by "inkscape"
> 
> What is the right behavior in such situation? Should all depending 
> packages be also automatically bumped? Or portupghrade should detect the 
> change and automatically upgrade dependent ports?

portupgrade -rfx atkmm atkmm should take care of the issue, although
portupgrade -rf atkmm is probably ok too, unless atkmm takes multiple hours to
build.

as a workaround you could also add an entry to /etc/libmap.conf:

libatkmm-1.6.so.1   libatkmm-1.6.so.2

if things in libatkmm haven't changed too much you might get away with it for
now and delay the portupgrade to some time that's more convenient to you.

cheers.
alex

> 
> Yuri
> 

-- 
a13x
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Ports: How do dependent ports upgrade when dependency shared lib version is bumped?

2010-12-11 Thread Yuri
I recently updates the system. libatkmm-1.6.so.1 got bumped to 
libatkmm-1.6.so.2, now inkscape fails:
/libexec/ld-elf.so.1: Shared object "libatkmm-1.6.so.1" not found, 
required by "inkscape"


What is the right behavior in such situation? Should all depending 
packages be also automatically bumped? Or portupghrade should detect the 
change and automatically upgrade dependent ports?


Yuri

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Boris Samorodov
On Thu, 4 Jun 2009 14:34:44 -0400 Tsu-Fan Cheng wrote:

> I see, can you tell me which are FC4 ports?? thanks!!

Please, reread my previous email. I wrote _all_ linux ports.

> On Thu, Jun 4, 2009 at 2:26 PM, Boris Samorodov  wrote:

> > On Thu, 4 Jun 2009 14:15:42 -0400 Tsu-Fan Cheng wrote:
> >
> > > Thank you, Boris. This is my linux ports,linux-f8-atk-1.20.0_1
> > Accessibility
> > > Toolkit, Linux/i386 binary (Linux Fedora 8)
> > > linux-f8-cairo-1.4.14_1 Vector graphics library Cairo (Linux Fedora 8)
> > > linux-f8-curl-7.18.2_1 The command line tool for transferring files with
> > URL
> > > synta
> > > linux-f8-expat-2.0.1_1 Linux/i386 binary port of Expat XML-parsing
> > library
> > > (Linux
> > > linux-f8-gdk-pixbuf-0.22.0 Image loading library for GTK+ (Linux Fedora
> > 8)
> > > linux-f8-libidn-0.6.14_1 Internationalized Domain Name support library
> > > (Linux Fedora
> > > linux-f8-libxml2-2.7.2 Library providing XML and HTML support (Linux
> > Fedora
> > > 8)
> > > linux-f8-nspr-4.7.3 Netscape Portable Runtime (Linux Fedora 8)
> > > linux-f8-nss-3.12.2.0 Network Security Services (Linux Fedora 8)
> > > linux-f8-openssl-0.9.8b The OpenSSL toolkit (Linux Fedora 8)
> > > linux-f8-pango-1.18.4 The pango library (Linux Fedora 8)
> > > linux-f8-png-1.2.22_1 RPM of the PNG lib (Linux Fedora 8)
> > > linux-f8-sqlite3-3.4.2_1 The library that implements an embeddable SQL
> > > database engi
> > > linux-f8-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora 8)
> > > linux-f8-xorg-libs-7.3_3 Xorg libraries (Linux Fedora 8)
> > > linux-flashplugin-10.0r22 Adobe Flash Player NPAPI Plugin
> > > linux-fontconfig-2.2.3_9 Linux/i386 binary of Fontconfig
> > > linux-gtk2-2.6.10_2 GTK+ library, version 2.X, Linux binary
> > > linux-hicolor-icon-theme-0.5_2 A high-color icon theme shell from the
> > > FreeDesktop project
> > > linux-jpeg-6b.34_2  RPM of the JPEG lib
> > > linux-libsigc-2.0.17_1 Callback Framework for C++ (linux version)
> > > linux-mplayerplug-in-3.50_3 Embed MPlayer into browser
> > > linux-nvu-1.0_1 A complete Web Authoring System
> > > linux-openmotif-2.2.4_3 Motif toolkit Linux libraries
> > > linux-pango-1.10.2_2 Linux pango binary
> > > linux-realplayer-10.0.9.809.20070726 Linux RealPlayer 10 from
> > RealNetworks
> > > linux-scim-gtk-fc8-1.4.7_1 Smart Common Input Method platform, gtk
> > module,
> > > Linux binar
> > > linux-scim-libs-fc8-1.4.7_2 Smart Common Input Method platform, library
> > > part, Linux bin
> > > linux_base-f8-8_11  Base set of packages needed in Linux mode (for
> > > i386/amd64)
> > > linux_dri-7.0   Binary Linux DRI libraries for 3D hardware
> > acceleration
> > > of
> >
> > OK, you have a mix with FC4 and F8 ports. The best way for you is
> > to remove all linux ports, clean /compat/linux and reinstall needed
> > linux applications (i.e. linux-realplayer, acroread8, skype, etc.).
> >
> > > and I am running 7.2-stable, looks like linux-f8* is just as good to me.
> >
> > Yes, that may be a good choice for you.


WBR
-- 
bsam
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Tsu-Fan Cheng
I see, can you tell me which are FC4 ports?? thanks!!
TFC

On Thu, Jun 4, 2009 at 2:26 PM, Boris Samorodov  wrote:

> On Thu, 4 Jun 2009 14:15:42 -0400 Tsu-Fan Cheng wrote:
>
> > Thank you, Boris. This is my linux ports,linux-f8-atk-1.20.0_1
> Accessibility
> > Toolkit, Linux/i386 binary (Linux Fedora 8)
> > linux-f8-cairo-1.4.14_1 Vector graphics library Cairo (Linux Fedora 8)
> > linux-f8-curl-7.18.2_1 The command line tool for transferring files with
> URL
> > synta
> > linux-f8-expat-2.0.1_1 Linux/i386 binary port of Expat XML-parsing
> library
> > (Linux
> > linux-f8-gdk-pixbuf-0.22.0 Image loading library for GTK+ (Linux Fedora
> 8)
> > linux-f8-libidn-0.6.14_1 Internationalized Domain Name support library
> > (Linux Fedora
> > linux-f8-libxml2-2.7.2 Library providing XML and HTML support (Linux
> Fedora
> > 8)
> > linux-f8-nspr-4.7.3 Netscape Portable Runtime (Linux Fedora 8)
> > linux-f8-nss-3.12.2.0 Network Security Services (Linux Fedora 8)
> > linux-f8-openssl-0.9.8b The OpenSSL toolkit (Linux Fedora 8)
> > linux-f8-pango-1.18.4 The pango library (Linux Fedora 8)
> > linux-f8-png-1.2.22_1 RPM of the PNG lib (Linux Fedora 8)
> > linux-f8-sqlite3-3.4.2_1 The library that implements an embeddable SQL
> > database engi
> > linux-f8-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora 8)
> > linux-f8-xorg-libs-7.3_3 Xorg libraries (Linux Fedora 8)
> > linux-flashplugin-10.0r22 Adobe Flash Player NPAPI Plugin
> > linux-fontconfig-2.2.3_9 Linux/i386 binary of Fontconfig
> > linux-gtk2-2.6.10_2 GTK+ library, version 2.X, Linux binary
> > linux-hicolor-icon-theme-0.5_2 A high-color icon theme shell from the
> > FreeDesktop project
> > linux-jpeg-6b.34_2  RPM of the JPEG lib
> > linux-libsigc-2.0.17_1 Callback Framework for C++ (linux version)
> > linux-mplayerplug-in-3.50_3 Embed MPlayer into browser
> > linux-nvu-1.0_1 A complete Web Authoring System
> > linux-openmotif-2.2.4_3 Motif toolkit Linux libraries
> > linux-pango-1.10.2_2 Linux pango binary
> > linux-realplayer-10.0.9.809.20070726 Linux RealPlayer 10 from
> RealNetworks
> > linux-scim-gtk-fc8-1.4.7_1 Smart Common Input Method platform, gtk
> module,
> > Linux binar
> > linux-scim-libs-fc8-1.4.7_2 Smart Common Input Method platform, library
> > part, Linux bin
> > linux_base-f8-8_11  Base set of packages needed in Linux mode (for
> > i386/amd64)
> > linux_dri-7.0   Binary Linux DRI libraries for 3D hardware
> acceleration
> > of
>
> OK, you have a mix with FC4 and F8 ports. The best way for you is
> to remove all linux ports, clean /compat/linux and reinstall needed
> linux applications (i.e. linux-realplayer, acroread8, skype, etc.).
>
> > and I am running 7.2-stable, looks like linux-f8* is just as good to me.
>
> Yes, that may be a good choice for you.
>
>
> WBR
> --
> Boris Samorodov (bsam)
> Research Engineer, http://www.ipt.ru Telephone & Internet SP
> FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Boris Samorodov
On Thu, 4 Jun 2009 14:15:42 -0400 Tsu-Fan Cheng wrote:

> Thank you, Boris. This is my linux ports,linux-f8-atk-1.20.0_1 Accessibility
> Toolkit, Linux/i386 binary (Linux Fedora 8)
> linux-f8-cairo-1.4.14_1 Vector graphics library Cairo (Linux Fedora 8)
> linux-f8-curl-7.18.2_1 The command line tool for transferring files with URL
> synta
> linux-f8-expat-2.0.1_1 Linux/i386 binary port of Expat XML-parsing library
> (Linux
> linux-f8-gdk-pixbuf-0.22.0 Image loading library for GTK+ (Linux Fedora 8)
> linux-f8-libidn-0.6.14_1 Internationalized Domain Name support library
> (Linux Fedora
> linux-f8-libxml2-2.7.2 Library providing XML and HTML support (Linux Fedora
> 8)
> linux-f8-nspr-4.7.3 Netscape Portable Runtime (Linux Fedora 8)
> linux-f8-nss-3.12.2.0 Network Security Services (Linux Fedora 8)
> linux-f8-openssl-0.9.8b The OpenSSL toolkit (Linux Fedora 8)
> linux-f8-pango-1.18.4 The pango library (Linux Fedora 8)
> linux-f8-png-1.2.22_1 RPM of the PNG lib (Linux Fedora 8)
> linux-f8-sqlite3-3.4.2_1 The library that implements an embeddable SQL
> database engi
> linux-f8-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora 8)
> linux-f8-xorg-libs-7.3_3 Xorg libraries (Linux Fedora 8)
> linux-flashplugin-10.0r22 Adobe Flash Player NPAPI Plugin
> linux-fontconfig-2.2.3_9 Linux/i386 binary of Fontconfig
> linux-gtk2-2.6.10_2 GTK+ library, version 2.X, Linux binary
> linux-hicolor-icon-theme-0.5_2 A high-color icon theme shell from the
> FreeDesktop project
> linux-jpeg-6b.34_2  RPM of the JPEG lib
> linux-libsigc-2.0.17_1 Callback Framework for C++ (linux version)
> linux-mplayerplug-in-3.50_3 Embed MPlayer into browser
> linux-nvu-1.0_1 A complete Web Authoring System
> linux-openmotif-2.2.4_3 Motif toolkit Linux libraries
> linux-pango-1.10.2_2 Linux pango binary
> linux-realplayer-10.0.9.809.20070726 Linux RealPlayer 10 from RealNetworks
> linux-scim-gtk-fc8-1.4.7_1 Smart Common Input Method platform, gtk module,
> Linux binar
> linux-scim-libs-fc8-1.4.7_2 Smart Common Input Method platform, library
> part, Linux bin
> linux_base-f8-8_11  Base set of packages needed in Linux mode (for
> i386/amd64)
> linux_dri-7.0   Binary Linux DRI libraries for 3D hardware acceleration
> of

OK, you have a mix with FC4 and F8 ports. The best way for you is
to remove all linux ports, clean /compat/linux and reinstall needed
linux applications (i.e. linux-realplayer, acroread8, skype, etc.).

> and I am running 7.2-stable, looks like linux-f8* is just as good to me.

Yes, that may be a good choice for you.


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone & Internet SP
FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Tsu-Fan Cheng
It's funny, sometimes I think portmaster knows  that it should upgrade
linux-f8* ports and not linux-* ports but sometimes doesn't. I don't know
why...

TFC

On Thu, Jun 4, 2009 at 2:15 PM, Tsu-Fan Cheng  wrote:

> Thank you, Boris. This is my linux ports,linux-f8-atk-1.20.0_1
> Accessibility Toolkit, Linux/i386 binary (Linux Fedora 8)
> linux-f8-cairo-1.4.14_1 Vector graphics library Cairo (Linux Fedora 8)
> linux-f8-curl-7.18.2_1 The command line tool for transferring files with
> URL synta
> linux-f8-expat-2.0.1_1 Linux/i386 binary port of Expat XML-parsing library
> (Linux
> linux-f8-gdk-pixbuf-0.22.0 Image loading library for GTK+ (Linux Fedora 8)
> linux-f8-libidn-0.6.14_1 Internationalized Domain Name support library
> (Linux Fedora
> linux-f8-libxml2-2.7.2 Library providing XML and HTML support (Linux Fedora
> 8)
> linux-f8-nspr-4.7.3 Netscape Portable Runtime (Linux Fedora 8)
> linux-f8-nss-3.12.2.0 Network Security Services (Linux Fedora 8)
> linux-f8-openssl-0.9.8b The OpenSSL toolkit (Linux Fedora 8)
> linux-f8-pango-1.18.4 The pango library (Linux Fedora 8)
> linux-f8-png-1.2.22_1 RPM of the PNG lib (Linux Fedora 8)
> linux-f8-sqlite3-3.4.2_1 The library that implements an embeddable SQL
> database engi
> linux-f8-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora 8)
> linux-f8-xorg-libs-7.3_3 Xorg libraries (Linux Fedora 8)
> linux-flashplugin-10.0r22 Adobe Flash Player NPAPI Plugin
> linux-fontconfig-2.2.3_9 Linux/i386 binary of Fontconfig
> linux-gtk2-2.6.10_2 GTK+ library, version 2.X, Linux binary
> linux-hicolor-icon-theme-0.5_2 A high-color icon theme shell from the
> FreeDesktop project
> linux-jpeg-6b.34_2  RPM of the JPEG lib
> linux-libsigc-2.0.17_1 Callback Framework for C++ (linux version)
> linux-mplayerplug-in-3.50_3 Embed MPlayer into browser
> linux-nvu-1.0_1 A complete Web Authoring System
> linux-openmotif-2.2.4_3 Motif toolkit Linux libraries
> linux-pango-1.10.2_2 Linux pango binary
> linux-realplayer-10.0.9.809.20070726 Linux RealPlayer 10 from RealNetworks
> linux-scim-gtk-fc8-1.4.7_1 Smart Common Input Method platform, gtk module,
> Linux binar
> linux-scim-libs-fc8-1.4.7_2 Smart Common Input Method platform, library
> part, Linux bin
> linux_base-f8-8_11  Base set of packages needed in Linux mode (for
> i386/amd64)
> linux_dri-7.0   Binary Linux DRI libraries for 3D hardware acceleration
> of
>
>
> and I am running 7.2-stable, looks like linux-f8* is just as good to me.
>
>
> TFC
>
>
> On Thu, Jun 4, 2009 at 1:59 PM, Boris Samorodov  wrote:
>
>> On Thu, 4 Jun 2009 13:15:21 -0400 Tsu-Fan Cheng wrote:
>>
>> > Hi,   Just use portmaster to upgrade ports and found out a lot of
>> linux-*
>> > ports are renewed. But strange to see that upgrading was interrupted by
>> > ports conflicts, such as linux-f8-tiff and linux-tiff.
>>
>> Yes, those ports install files with the sane name/path, so they have
>> a conflict and can't be used/unstalled together.
>>
>> > What I have are a
>> > whole bunch of f8 stuff, I dont understand why portmaster choose to
>> upgrade
>> > ports that are not "f8".
>>
>> I don't use portmaster but you are first to complain. Can you show
>> the output of "pkg_info -xI linux"?
>>
>> > And also curious to know which linux* is better?
>>
>> Hm, it a good question. ;-)
>> The one which does what you need. But there are some security
>> problems (seems with pango ports) which won't be resolved for
>> Fedora Core 4 ports (since there is no new fixed packages).
>>
>> > with or without f8/f10? thank you!!
>>
>> It depends on your OS version and your tasks. The default (even
>> for 8-CURRENT so far) is linux_base-fc4 and it's infrastructure
>> ports. I think that for FreeBSD-6.x and lower there is no other
>> alternative. For 7.2-RELEASE (and even better, 7-STABLE) one can
>> use -f8- base and infrastructure ports. For recent 8-CURRENT one
>> can use -f10- ports. There is a WIP to change this to default for
>> 8-CURRENT.
>>
>>
>> WBR
>> --
>> Boris Samorodov (bsam)
>> Research Engineer, http://www.ipt.ru Telephone & Internet SP
>> FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
>>
>
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Tsu-Fan Cheng
Thank you, Boris. This is my linux ports,linux-f8-atk-1.20.0_1 Accessibility
Toolkit, Linux/i386 binary (Linux Fedora 8)
linux-f8-cairo-1.4.14_1 Vector graphics library Cairo (Linux Fedora 8)
linux-f8-curl-7.18.2_1 The command line tool for transferring files with URL
synta
linux-f8-expat-2.0.1_1 Linux/i386 binary port of Expat XML-parsing library
(Linux
linux-f8-gdk-pixbuf-0.22.0 Image loading library for GTK+ (Linux Fedora 8)
linux-f8-libidn-0.6.14_1 Internationalized Domain Name support library
(Linux Fedora
linux-f8-libxml2-2.7.2 Library providing XML and HTML support (Linux Fedora
8)
linux-f8-nspr-4.7.3 Netscape Portable Runtime (Linux Fedora 8)
linux-f8-nss-3.12.2.0 Network Security Services (Linux Fedora 8)
linux-f8-openssl-0.9.8b The OpenSSL toolkit (Linux Fedora 8)
linux-f8-pango-1.18.4 The pango library (Linux Fedora 8)
linux-f8-png-1.2.22_1 RPM of the PNG lib (Linux Fedora 8)
linux-f8-sqlite3-3.4.2_1 The library that implements an embeddable SQL
database engi
linux-f8-tiff-3.8.2 The TIFF library, Linux/i386 binary (Linux Fedora 8)
linux-f8-xorg-libs-7.3_3 Xorg libraries (Linux Fedora 8)
linux-flashplugin-10.0r22 Adobe Flash Player NPAPI Plugin
linux-fontconfig-2.2.3_9 Linux/i386 binary of Fontconfig
linux-gtk2-2.6.10_2 GTK+ library, version 2.X, Linux binary
linux-hicolor-icon-theme-0.5_2 A high-color icon theme shell from the
FreeDesktop project
linux-jpeg-6b.34_2  RPM of the JPEG lib
linux-libsigc-2.0.17_1 Callback Framework for C++ (linux version)
linux-mplayerplug-in-3.50_3 Embed MPlayer into browser
linux-nvu-1.0_1 A complete Web Authoring System
linux-openmotif-2.2.4_3 Motif toolkit Linux libraries
linux-pango-1.10.2_2 Linux pango binary
linux-realplayer-10.0.9.809.20070726 Linux RealPlayer 10 from RealNetworks
linux-scim-gtk-fc8-1.4.7_1 Smart Common Input Method platform, gtk module,
Linux binar
linux-scim-libs-fc8-1.4.7_2 Smart Common Input Method platform, library
part, Linux bin
linux_base-f8-8_11  Base set of packages needed in Linux mode (for
i386/amd64)
linux_dri-7.0   Binary Linux DRI libraries for 3D hardware acceleration
of


and I am running 7.2-stable, looks like linux-f8* is just as good to me.


TFC


On Thu, Jun 4, 2009 at 1:59 PM, Boris Samorodov  wrote:

> On Thu, 4 Jun 2009 13:15:21 -0400 Tsu-Fan Cheng wrote:
>
> > Hi,   Just use portmaster to upgrade ports and found out a lot of linux-*
> > ports are renewed. But strange to see that upgrading was interrupted by
> > ports conflicts, such as linux-f8-tiff and linux-tiff.
>
> Yes, those ports install files with the sane name/path, so they have
> a conflict and can't be used/unstalled together.
>
> > What I have are a
> > whole bunch of f8 stuff, I dont understand why portmaster choose to
> upgrade
> > ports that are not "f8".
>
> I don't use portmaster but you are first to complain. Can you show
> the output of "pkg_info -xI linux"?
>
> > And also curious to know which linux* is better?
>
> Hm, it a good question. ;-)
> The one which does what you need. But there are some security
> problems (seems with pango ports) which won't be resolved for
> Fedora Core 4 ports (since there is no new fixed packages).
>
> > with or without f8/f10? thank you!!
>
> It depends on your OS version and your tasks. The default (even
> for 8-CURRENT so far) is linux_base-fc4 and it's infrastructure
> ports. I think that for FreeBSD-6.x and lower there is no other
> alternative. For 7.2-RELEASE (and even better, 7-STABLE) one can
> use -f8- base and infrastructure ports. For recent 8-CURRENT one
> can use -f10- ports. There is a WIP to change this to default for
> 8-CURRENT.
>
>
> WBR
> --
> Boris Samorodov (bsam)
> Research Engineer, http://www.ipt.ru Telephone & Internet SP
> FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: linux compatibility ports upgrade

2009-06-04 Thread Boris Samorodov
On Thu, 4 Jun 2009 13:15:21 -0400 Tsu-Fan Cheng wrote:

> Hi,   Just use portmaster to upgrade ports and found out a lot of linux-*
> ports are renewed. But strange to see that upgrading was interrupted by
> ports conflicts, such as linux-f8-tiff and linux-tiff.

Yes, those ports install files with the sane name/path, so they have
a conflict and can't be used/unstalled together.

> What I have are a
> whole bunch of f8 stuff, I dont understand why portmaster choose to upgrade
> ports that are not "f8".

I don't use portmaster but you are first to complain. Can you show
the output of "pkg_info -xI linux"?

> And also curious to know which linux* is better?

Hm, it a good question. ;-)
The one which does what you need. But there are some security
problems (seems with pango ports) which won't be resolved for
Fedora Core 4 ports (since there is no new fixed packages).

> with or without f8/f10? thank you!!

It depends on your OS version and your tasks. The default (even
for 8-CURRENT so far) is linux_base-fc4 and it's infrastructure
ports. I think that for FreeBSD-6.x and lower there is no other
alternative. For 7.2-RELEASE (and even better, 7-STABLE) one can
use -f8- base and infrastructure ports. For recent 8-CURRENT one
can use -f10- ports. There is a WIP to change this to default for
8-CURRENT.


WBR
-- 
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone & Internet SP
FreeBSD Committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


linux compatibility ports upgrade

2009-06-04 Thread Tsu-Fan Cheng
Hi,   Just use portmaster to upgrade ports and found out a lot of linux-*
ports are renewed. But strange to see that upgrading was interrupted by
ports conflicts, such as linux-f8-tiff and linux-tiff. What I have are a
whole bunch of f8 stuff, I dont understand why portmaster choose to upgrade
ports that are not "f8". And also curious to know which linux* is better?
with or without f8/f10? thank you!!

TFC
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


firefox3 crashes after ports upgrade

2009-04-26 Thread Yuri

Yesterday I updated ports. And now firefox3 crashes right after start.
Windows firefox3 under wine also has some graphics defects, many icons 
are jammed.

Some icons in kde4 applets are oversized.

Something isn't quite right.
Anyone has similar problems?

Yuri

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Performing installed ports upgrade / leaving some software intact

2009-01-17 Thread Frank Shute
On Thu, Jan 15, 2009 at 07:17:27AM +0100, Zbigniew Szalbot wrote:
>
> Hello,
> 
> >> 1/ backing up the hacked [mailman] files and restoring them later (but I
> >> will
> >> overwrite the newer files with older ones perhaps breaking something).
> >> 2/ making them read only (but the end result will be the same and
> >> upgrading as root I will overwrite them anyway).
> >
> > Keep in mind mailman is all python.  There really is nothing to recompile
> > after a system upgrade.  (Unless you are upgrading python which you aren't).
> 
> I am not so sure. According to
> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html
> 
> "All third party software will now need to be rebuilt and
> re-installed. This is required as installed software may depend on
> libraries which have been removed during the upgrade process. The
> ports-mgmt/portupgrade command may be used to automate this process.
> The following commands may be used to begin this process:"

This is prefaced by:

"Note: Depending on whether any libraries version numbers got bumped,
there may only be two install phases instead of three."

Rebuilding all the installed ports being the third phase.

Since you're just going from 7.0 to 7.1 this shouldn't be the case
unless specifically mentioned in /usr/src/UPDATING



Regards,

-- 

 Frank 


 Contact info: http://www.shute.org.uk/misc/contact.html 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Performing installed ports upgrade / leaving some software intact

2009-01-14 Thread Zbigniew Szalbot
Hello,

>> 1/ backing up the hacked [mailman] files and restoring them later (but I
>> will
>> overwrite the newer files with older ones perhaps breaking something).
>> 2/ making them read only (but the end result will be the same and
>> upgrading as root I will overwrite them anyway).
>
> Keep in mind mailman is all python.  There really is nothing to recompile
> after a system upgrade.  (Unless you are upgrading python which you aren't).

I am not so sure. According to
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/updating-upgrading-freebsdupdate.html

"All third party software will now need to be rebuilt and
re-installed. This is required as installed software may depend on
libraries which have been removed during the upgrade process. The
ports-mgmt/portupgrade command may be used to automate this process.
The following commands may be used to begin this process:"

So my thinking is that by issuing portupgrade -af both python and
mailman will get reinstalled. However, the option suggested by Roland
(thank you!) of touching /var/db/pkg/mailman/+IGNOREME seems very
interesting. I must read more about it.

Thank you all!

-- 
Zbigniew Szalbot
www.slowo.pl
www.fairtrade.net.pl
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Performing installed ports upgrade / leaving some software intact

2009-01-14 Thread Jeffrey Goldberg

On Jan 14, 2009, at 12:03 PM, Zbigniew Szalbot wrote:

1/ backing up the hacked [mailman] files and restoring them later  
(but I will

overwrite the newer files with older ones perhaps breaking something).
2/ making them read only (but the end result will be the same and
upgrading as root I will overwrite them anyway).


Keep in mind mailman is all python.  There really is nothing to  
recompile after a system upgrade.  (Unless you are upgrading python  
which you aren't).


Cheers,

-j
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Performing installed ports upgrade / leaving some software intact

2009-01-14 Thread Roland Smith
On Wed, Jan 14, 2009 at 07:03:02PM +0100, Zbigniew Szalbot wrote:
> Dear all,
> 
> I am now full into planning the 7.0-RELEASE to 7.1-RELEASE upgrade. I
> know that at the end of the day it will also mean upgrading all ports
> (portupgrade -af). 

Not necessarily. Upgrading all ports is only mandatory after a major
version update, e.g. from 6.x to 7.x because of changed shared library
versions. A point release should not affect shared library versions.

Personally, I like to keep the ports on my desktop updated every other
week or so, depending on if I see something interesting on freshports...

> I have one port - mailman - which I have customized
> a lot and do not really want to upgrade it as it will most likely mean
> I will have to hack a few files again.
> 
> What options do I have so that I do not break the setup?
>
> I am thinking of:
> 
> 1/ backing up the hacked files and restoring them later (but I will
> overwrite the newer files with older ones perhaps breaking something).

You should merge any differences by hand instead of overwriting
them. 'diff -u' is your friend there.

> 2/ making them read only (but the end result will be the same and
> upgrading as root I will overwrite them anyway).

'chflags schg,sunlnk ' (as root) will do the trick. Even root
cannot overwrite these without removing the flags.
 
> And that would be it. My wisdom ends here. Is there any option to
> survive the ports upgrade? :)

Touch /var/db/pkg/mailman/+IGNOREME. This should make both portmaster
and portupgrade leave this port alone.

> If not, I guess I will just have to hack Mailman files again after the
> upgrade...

Or see if you can get your changes comitted upstream. Maybe as OPTIONS? 

Roland
-- 
R.F.Smith   http://www.xs4all.nl/~rsmith/
[plain text _non-HTML_ PGP/GnuPG encrypted/signed email much appreciated]
pgp: 1A2B 477F 9970 BA3C 2914  B7CE 1277 EFB0 C321 A725 (KeyID: C321A725)


pgp6T2lWu2KuF.pgp
Description: PGP signature


Re: Performing installed ports upgrade / leaving some software intact

2009-01-14 Thread Steve Bertrand
Zbigniew Szalbot wrote:
> Dear all,
> 
> I am now full into planning the 7.0-RELEASE to 7.1-RELEASE upgrade. I
> know that at the end of the day it will also mean upgrading all ports
> (portupgrade -af). I have one port - mailman - which I have customized
> a lot and do not really want to upgrade it as it will most likely mean
> I will have to hack a few files again.
> 
> What options do I have so that I do not break the setup?
> 
> I am thinking of:
> 
> 1/ backing up the hacked files and restoring them later (but I will
> overwrite the newer files with older ones perhaps breaking something).
> 2/ making them read only (but the end result will be the same and
> upgrading as root I will overwrite them anyway).
> 
> And that would be it. My wisdom ends here. Is there any option to
> survive the ports upgrade? :)
> 
> If not, I guess I will just have to hack Mailman files again after the
> upgrade...

Can you verify that the original copy of the files you've hacked have
indeed been modified in the upgraded version?

Perhaps you could download the source for both the new version in ports,
and the original version, and find out exactly what, if any changes have
been made to your modified files.

Steve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Performing installed ports upgrade / leaving some software intact

2009-01-14 Thread Zbigniew Szalbot
Dear all,

I am now full into planning the 7.0-RELEASE to 7.1-RELEASE upgrade. I
know that at the end of the day it will also mean upgrading all ports
(portupgrade -af). I have one port - mailman - which I have customized
a lot and do not really want to upgrade it as it will most likely mean
I will have to hack a few files again.

What options do I have so that I do not break the setup?

I am thinking of:

1/ backing up the hacked files and restoring them later (but I will
overwrite the newer files with older ones perhaps breaking something).
2/ making them read only (but the end result will be the same and
upgrading as root I will overwrite them anyway).

And that would be it. My wisdom ends here. Is there any option to
survive the ports upgrade? :)

If not, I guess I will just have to hack Mailman files again after the
upgrade...

-- 
Zbigniew Szalbot
www.slowo.pl
www.fairtrade.net.pl
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Ports upgrade within Jail

2008-08-07 Thread Ivailo Tanusheff
The only common between the jail and the hosted system are the kernel and 
its drivers.
You may use entirely different ports in the base system and into the 
jailed enviroment. So you may keep your jailed ports up to date without 
any concern as long as they do not conflict with the base system drivers 
and etc.

Regards,

Ivailo Tanusheff
Deputy Head of IT Department
ProCredit Bank (Bulgaria) AD





Druckbar <[EMAIL PROTECTED]> 
Sent by: [EMAIL PROTECTED]
07.08.2008 13:15

To
freebsd-questions@freebsd.org
cc

Subject
Ports upgrade within Jail






Hello List,
i have a jail hosted on a 6-2 RELEASE machine i don't have access to. As 
i don't have access, i can't upgrade the base system. But i would like 
to keep the ports i use up to date.

Will i encounter problems if i just upgrade my ports using portsnap and 
portmaster? or will those tools be aware of the version my base system 
is and only use ports that are made for this version?

-- 
Thank you
manuel


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
"[EMAIL PROTECTED]"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Ports upgrade within Jail

2008-08-07 Thread Edwin Groothuis
> Will i encounter problems if i just upgrade my ports using portsnap and
> portmaster? or will those tools be aware of the version my base system
> is and only use ports that are made for this version?

The components of your jail are totally seperate from the host. You
can use portsnap, or cvsup, or csup (can you? not sure) to update
*your* ports collection.

Only things which won't work are kernel drivers etc, you can't load
them. But for the rest, no problem at all.

Edwin

-- 
Edwin Groothuis  |Personal website: http://www.mavetju.org
[EMAIL PROTECTED]|  Weblog: http://www.mavetju.org/weblog/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Ports upgrade within Jail

2008-08-07 Thread Druckbar

Hello List,
i have a jail hosted on a 6-2 RELEASE machine i don't have access to. As 
i don't have access, i can't upgrade the base system. But i would like 
to keep the ports i use up to date.


Will i encounter problems if i just upgrade my ports using portsnap and 
portmaster? or will those tools be aware of the version my base system 
is and only use ports that are made for this version?


--
Thank you
manuel


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Samba doesn't start after a ports upgrade

2008-05-13 Thread Johan Dowdy


For extra info at start time I always use

sh -x /sur/local/etc/rc.d/foo start   which will give you some nice realtime
debugging.

-J

On 5/13/08 1:20 AM, "Reinhold" <[EMAIL PROTECTED]> wrote:

> Hi
> 
> I have a samba server here at work. Last night I did a ports upgrade and
> since then samba fails to start. It just hangs at the rc script.
> 
> # /usr/local/etc/rc.d/samba start
> Removing stale Samba tdb files:  done
> Starting nmbd.
> Starting smbd.
> 
> 
> # ps auxwww |grep smb
> root 66854  0.0  0.7  5740  3464  ??  Ss9:09AM   0:00.01
> /usr/local/sbin/nmbd -D -s /usr/local/etc/smb.conf
> root 67466  0.0  1.3  9616  6756  p1  I+9:09AM   0:00.06
> /usr/local/sbin/smbd -d 5 -s /usr/local/etc/smb.conf
> root 67561  0.0  0.2  1596   924  p2  S+9:09AM   0:00.00 grep smb
> 
> and in the log file it looks like this
> [2008/05/13 09:14:16, 5] lib/debug.c:debug_dump_status(391)
>   INFO: Current debug levels:
> all: True/5
> tdb: False/0
> printdrivers: False/0
> lanman: False/0
> smb: False/0
> rpc_parse: False/0
> rpc_srv: False/0
> rpc_cli: False/0
> passdb: False/0
> sam: False/0
> auth: False/0
> winbind: False/0
> vfs: False/0
> idmap: False/0
> quota: False/0
> acls: False/0
> locking: False/0
> msdfs: False/0
> dmapi: False/0
> [2008/05/13 09:14:16, 3] lib/fault.c:dump_core_setup(134)
>   Maximum core file size limits now -1(soft) -1(hard)
> [2008/05/13 09:14:16, 3] smbd/sec_ctx.c:get_current_groups(167)
>   get_current_groups: user is in 3 groups: 0, 0, 5
> [2008/05/13 09:14:16, 0] smbd/server.c:main(944)
>   smbd version 3.0.28a started.
>   Copyright Andrew Tridgell and the Samba Team 1992-2008
> [2008/05/13 09:14:16, 2] smbd/server.c:main(948)
>   uid=0 gid=0 euid=0 egid=0
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>   Build environment:
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  Built by:[EMAIL PROTECTED]
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  Built on:Tue May 13 08:52:37 BST 2008
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  Built using: cc
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  Build host:  FreeBSD fbsd01.gim.local 6.3-STABLE FreeBSD 6.3-STABLE
> #1: Mon May 12 18:47:12 BST 2008
> [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERN  i386
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  SRCDIR:  /usr/ports/net/samba3/work/samba-3.0.28a/source
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>  BUILDDIR:/usr/ports/net/samba3/work/samba-3.0.28a/source
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> 
> And loads of other stuff that looks the same as above
> It ends with this
> [2008/05/13 09:14:16, 3] printing/pcap.c:pcap_cache_reload(117)
>   reloading printcap cache
> [2008/05/13 09:14:16, 5] printing/print_cups.c:cups_cache_reload(94)
>   reloading cups printcap cache
> [2008/05/13 09:16:46, 0] printing/print_cups.c:cups_connect(69)
>   Unable to connect to CUPS server localhost:631 - Operation timed out
> [2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(223)
>   reload status: error
> [2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(117)
>   reloading printcap cache
> [2008/05/13 09:16:46, 5] printing/print_cups.c:cups_cache_reload(94)
>   reloading cups printcap cache
> 
> 
> Any help please, my whole office is down at the moment :-(
> 
> Regards
> Reinhold
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"

-- 
Johan Dowdy - CISSP
Senior Systems Administrator
nCircle Network Security
 
415.318.2880

"Any sufficiently advanced technology is indistinguishable from magic."
-- Arthur C. Clarke

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Samba doesn't start after a ports upgrade

2008-05-13 Thread Reinhold
On Tue, May 13, 2008 10:55, Wojciech Puchar wrote:
>> The problem was cups.
>>
>
> i don't have cups installed and have samba running. check samba config -
> it should not be like this
>

I just checked make config and I have cups selected, but I'm pretty sure
it has always been selected. I'll deselect it and recompile and see what
happens.

Here is my smb.conf
[global]
dos charset = ASCII
unix charset = UTF8
workgroup = OFFICE
server string = Samba File Server
passdb backend = tdbsam
log file = /var/log/samba/log.%m
max log size = 50
load printers = No
os level = 60
preferred master = Yes
domain master = Yes
dns proxy = No
wins support = Yes
ldap ssl = no
#acl group control = Yes
#inherit acls = Yes
profile acls = Yes
#map acl inherit = Yes
delete veto files = Yes
veto files =
/.AppleDB/.AppleDesktop/.AppleDouble/.TemporaryItems/._.TemporaryItems/Network
Trash Folder/Temporary Items/
hide files =
/.cshrc/.history/.lesshst/.login/.login_conf/.mail_aliases/.mailrc/.profile/.rhosts/.shrc/.ssh/.subversion/.tmp/.usermin/.viminfo/.vimrc
/
map archive = No
store dos attributes = Yes
dos filemode = Yes

[homes]
browseable = No
comment = Home Directories
delete readonly = yes
writable = yes
***snip

>>
>> I never used cups before, but for some reason now I have to start cups
>> up so that samba can work.
>>
>> Regards
>> Reinhold
>>
>>


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Samba doesn't start after a ports upgrade

2008-05-13 Thread Wojciech Puchar

The problem was cups.


i don't have cups installed and have samba running. check samba config - 
it should not be like this




I never used cups before, but for some reason now I have to start cups up
so that samba can work.

Regards
Reinhold

On Tue, May 13, 2008 09:20, Reinhold wrote:

Hi


I have a samba server here at work. Last night I did a ports upgrade and
since then samba fails to start. It just hangs at the rc script.

# /usr/local/etc/rc.d/samba start
Removing stale Samba tdb files:  done
Starting nmbd.
Starting smbd.



# ps auxwww |grep smb
root 66854  0.0  0.7  5740  3464  ??  Ss9:09AM   0:00.01
/usr/local/sbin/nmbd -D -s /usr/local/etc/smb.conf
root 67466  0.0  1.3  9616  6756  p1  I+9:09AM   0:00.06
/usr/local/sbin/smbd -d 5 -s /usr/local/etc/smb.conf
root 67561  0.0  0.2  1596   924  p2  S+9:09AM   0:00.00 grep smb

and in the log file it looks like this [2008/05/13 09:14:16, 5]
lib/debug.c:debug_dump_status(391)
INFO: Current debug levels:
all: True/5
tdb: False/0
printdrivers: False/0
lanman: False/0
smb: False/0
rpc_parse: False/0
rpc_srv: False/0
rpc_cli: False/0
passdb: False/0
sam: False/0
auth: False/0
winbind: False/0
vfs: False/0
idmap: False/0
quota: False/0
acls: False/0
locking: False/0
msdfs: False/0
dmapi: False/0
[2008/05/13 09:14:16, 3] lib/fault.c:dump_core_setup(134)
Maximum core file size limits now -1(soft) -1(hard)
[2008/05/13 09:14:16, 3] smbd/sec_ctx.c:get_current_groups(167)
get_current_groups: user is in 3 groups: 0, 0, 5
[2008/05/13 09:14:16, 0] smbd/server.c:main(944)
smbd version 3.0.28a started. Copyright Andrew Tridgell and the Samba Team
1992-2008
[2008/05/13 09:14:16, 2] smbd/server.c:main(948)
uid=0 gid=0 euid=0 egid=0 [2008/05/13 09:14:16, 4]
smbd/build_options.c:output(45)
Build environment:
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
Built by:[EMAIL PROTECTED]
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
Built on:Tue May 13 08:52:37 BST 2008
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
Built using: cc
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
Build host:  FreeBSD fbsd01.gim.local 6.3-STABLE FreeBSD 6.3-STABLE
#1: Mon May 12 18:47:12 BST 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERN  i386
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
SRCDIR:  /usr/ports/net/samba3/work/samba-3.0.28a/source
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
BUILDDIR:/usr/ports/net/samba3/work/samba-3.0.28a/source
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)


And loads of other stuff that looks the same as above
It ends with this
[2008/05/13 09:14:16, 3] printing/pcap.c:pcap_cache_reload(117)
reloading printcap cache [2008/05/13 09:14:16, 5]
printing/print_cups.c:cups_cache_reload(94)
reloading cups printcap cache [2008/05/13 09:16:46, 0]
printing/print_cups.c:cups_connect(69)
Unable to connect to CUPS server localhost:631 - Operation timed out
[2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(223)
reload status: error [2008/05/13 09:16:46, 3]
printing/pcap.c:pcap_cache_reload(117)
reloading printcap cache [2008/05/13 09:16:46, 5]
printing/print_cups.c:cups_cache_reload(94)
reloading cups printcap cache


Any help please, my whole office is down at the moment :-(


Regards
Reinhold


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to
"[EMAIL PROTECTED]"





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Samba doesn't start after a ports upgrade

2008-05-13 Thread Reinhold
Woot, its back up.

The problem was cups.

I never used cups before, but for some reason now I have to start cups up
so that samba can work.

Regards
Reinhold

On Tue, May 13, 2008 09:20, Reinhold wrote:
> Hi
>
>
> I have a samba server here at work. Last night I did a ports upgrade and
> since then samba fails to start. It just hangs at the rc script.
>
> # /usr/local/etc/rc.d/samba start
> Removing stale Samba tdb files:  done
> Starting nmbd.
> Starting smbd.
>
>
>
> # ps auxwww |grep smb
> root 66854  0.0  0.7  5740  3464  ??  Ss9:09AM   0:00.01
> /usr/local/sbin/nmbd -D -s /usr/local/etc/smb.conf
> root 67466  0.0  1.3  9616  6756  p1  I+9:09AM   0:00.06
> /usr/local/sbin/smbd -d 5 -s /usr/local/etc/smb.conf
> root 67561  0.0  0.2  1596   924  p2  S+9:09AM   0:00.00 grep smb
>
> and in the log file it looks like this [2008/05/13 09:14:16, 5]
> lib/debug.c:debug_dump_status(391)
> INFO: Current debug levels:
> all: True/5
> tdb: False/0
> printdrivers: False/0
> lanman: False/0
> smb: False/0
> rpc_parse: False/0
> rpc_srv: False/0
> rpc_cli: False/0
> passdb: False/0
> sam: False/0
> auth: False/0
> winbind: False/0
> vfs: False/0
> idmap: False/0
> quota: False/0
> acls: False/0
> locking: False/0
> msdfs: False/0
> dmapi: False/0
> [2008/05/13 09:14:16, 3] lib/fault.c:dump_core_setup(134)
> Maximum core file size limits now -1(soft) -1(hard)
> [2008/05/13 09:14:16, 3] smbd/sec_ctx.c:get_current_groups(167)
> get_current_groups: user is in 3 groups: 0, 0, 5
> [2008/05/13 09:14:16, 0] smbd/server.c:main(944)
> smbd version 3.0.28a started. Copyright Andrew Tridgell and the Samba Team
> 1992-2008
> [2008/05/13 09:14:16, 2] smbd/server.c:main(948)
> uid=0 gid=0 euid=0 egid=0 [2008/05/13 09:14:16, 4]
> smbd/build_options.c:output(45)
> Build environment:
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> Built by:[EMAIL PROTECTED]
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> Built on:Tue May 13 08:52:37 BST 2008
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> Built using: cc
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> Build host:  FreeBSD fbsd01.gim.local 6.3-STABLE FreeBSD 6.3-STABLE
> #1: Mon May 12 18:47:12 BST 2008
> [EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERN  i386
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> SRCDIR:  /usr/ports/net/samba3/work/samba-3.0.28a/source
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
> BUILDDIR:/usr/ports/net/samba3/work/samba-3.0.28a/source
> [2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
>
>
> And loads of other stuff that looks the same as above
> It ends with this
> [2008/05/13 09:14:16, 3] printing/pcap.c:pcap_cache_reload(117)
> reloading printcap cache [2008/05/13 09:14:16, 5]
> printing/print_cups.c:cups_cache_reload(94)
> reloading cups printcap cache [2008/05/13 09:16:46, 0]
> printing/print_cups.c:cups_connect(69)
> Unable to connect to CUPS server localhost:631 - Operation timed out
> [2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(223)
> reload status: error [2008/05/13 09:16:46, 3]
> printing/pcap.c:pcap_cache_reload(117)
> reloading printcap cache [2008/05/13 09:16:46, 5]
> printing/print_cups.c:cups_cache_reload(94)
> reloading cups printcap cache
>
>
> Any help please, my whole office is down at the moment :-(
>
>
> Regards
> Reinhold
>
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"
>
>


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Samba doesn't start after a ports upgrade

2008-05-13 Thread Reinhold
Hi

I have a samba server here at work. Last night I did a ports upgrade and
since then samba fails to start. It just hangs at the rc script.

# /usr/local/etc/rc.d/samba start
Removing stale Samba tdb files:  done
Starting nmbd.
Starting smbd.


# ps auxwww |grep smb
root 66854  0.0  0.7  5740  3464  ??  Ss9:09AM   0:00.01
/usr/local/sbin/nmbd -D -s /usr/local/etc/smb.conf
root 67466  0.0  1.3  9616  6756  p1  I+9:09AM   0:00.06
/usr/local/sbin/smbd -d 5 -s /usr/local/etc/smb.conf
root 67561  0.0  0.2  1596   924  p2  S+9:09AM   0:00.00 grep smb

and in the log file it looks like this
[2008/05/13 09:14:16, 5] lib/debug.c:debug_dump_status(391)
  INFO: Current debug levels:
all: True/5
tdb: False/0
printdrivers: False/0
lanman: False/0
smb: False/0
rpc_parse: False/0
rpc_srv: False/0
rpc_cli: False/0
passdb: False/0
sam: False/0
auth: False/0
winbind: False/0
vfs: False/0
idmap: False/0
quota: False/0
acls: False/0
locking: False/0
msdfs: False/0
dmapi: False/0
[2008/05/13 09:14:16, 3] lib/fault.c:dump_core_setup(134)
  Maximum core file size limits now -1(soft) -1(hard)
[2008/05/13 09:14:16, 3] smbd/sec_ctx.c:get_current_groups(167)
  get_current_groups: user is in 3 groups: 0, 0, 5
[2008/05/13 09:14:16, 0] smbd/server.c:main(944)
  smbd version 3.0.28a started.
  Copyright Andrew Tridgell and the Samba Team 1992-2008
[2008/05/13 09:14:16, 2] smbd/server.c:main(948)
  uid=0 gid=0 euid=0 egid=0
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
  Build environment:
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 Built by:[EMAIL PROTECTED]
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 Built on:Tue May 13 08:52:37 BST 2008
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 Built using: cc
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 Build host:  FreeBSD fbsd01.gim.local 6.3-STABLE FreeBSD 6.3-STABLE
#1: Mon May 12 18:47:12 BST 2008
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/MYKERN  i386
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 SRCDIR:  /usr/ports/net/samba3/work/samba-3.0.28a/source
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)
 BUILDDIR:/usr/ports/net/samba3/work/samba-3.0.28a/source
[2008/05/13 09:14:16, 4] smbd/build_options.c:output(45)

And loads of other stuff that looks the same as above
It ends with this
[2008/05/13 09:14:16, 3] printing/pcap.c:pcap_cache_reload(117)
  reloading printcap cache
[2008/05/13 09:14:16, 5] printing/print_cups.c:cups_cache_reload(94)
  reloading cups printcap cache
[2008/05/13 09:16:46, 0] printing/print_cups.c:cups_connect(69)
  Unable to connect to CUPS server localhost:631 - Operation timed out
[2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(223)
  reload status: error
[2008/05/13 09:16:46, 3] printing/pcap.c:pcap_cache_reload(117)
  reloading printcap cache
[2008/05/13 09:16:46, 5] printing/print_cups.c:cups_cache_reload(94)
  reloading cups printcap cache


Any help please, my whole office is down at the moment :-(

Regards
Reinhold

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: automate ports upgrade (portmanager -u -l)

2008-05-08 Thread Simon Jolle
On Thu, May 8, 2008 at 1:53 PM, RW <[EMAIL PROTECTED]> wrote:
>> How to do unattended ports upgrade? I am using FreeBSD 7.0 and
>> portmanager ask me strange questions[0] (about compile-time options)
>
> It's not actually portmanager, it's the ports-system itself. This
> question comes-up regularly. Try looking for the thread:
>
> "overnight upgrade interrupted by questions"

Thank you, the thread can be found here[0]. I use now "portupgrade -a --batch"
There are so many port management tools. Which one is officially
recommended? What do you use and why?

cheers
Simon

[0] http://www.mail-archive.com/freebsd-questions@freebsd.org/msg189925.html
-- 
XMPP: [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: automate ports upgrade (portmanager -u -l)

2008-05-08 Thread Odhiambo Washington
On Thu, May 8, 2008 at 2:10 PM, Simon Jolle <[EMAIL PROTECTED]> wrote:

> Hi FreeBSD users
>
> How to do unattended ports upgrade? I am using FreeBSD 7.0 and
> portmanager ask me strange questions[0] (about compile-time options)


Unattended?
Even on Windows, I doubt they do that:-)


-- 
Best regards,
Odhiambo WASHINGTON,
Nairobi,KE
+254733744121/+254722743223
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

"Oh My God! They killed init! You Bastards!"
--from a /. post
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: automate ports upgrade (portmanager -u -l)

2008-05-08 Thread RW
On Thu, 8 May 2008 13:10:23 +0200
"Simon Jolle" <[EMAIL PROTECTED]> wrote:

> Hi FreeBSD users
> 
> How to do unattended ports upgrade? I am using FreeBSD 7.0 and
> portmanager ask me strange questions[0] (about compile-time options)

It's not actually portmanager, it's the ports-system itself. This
question comes-up regularly. Try looking for the thread: 


"overnight upgrade interrupted by questions"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


automate ports upgrade (portmanager -u -l)

2008-05-08 Thread Simon Jolle
Hi FreeBSD users

How to do unattended ports upgrade? I am using FreeBSD 7.0 and
portmanager ask me strange questions[0] (about compile-time options)

cheers
Simon

[0] http://img384.imageshack.us/img384/8657/portmanageruloptionsaw9.png
-- 
XMPP: [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-09 Thread Anatoliy

On Fri, Jun 08, 2007 at 05:07:25PM -0400, Gerard wrote:

On June 08, 2007 at 03:48PM Bill Moran wrote:

[snip]

> It's not an assumption, its OPTIMISM!

That reminds me of an optimist who fell off of a fifty story building.
As he passed each floor on the way down, he yelled, "So, so far!"

Seriously, I hope you are right. I believe it was 'gettext' that was
updated a short time age. That update caused me all sorts of
dependency problems. My shell, bash, would no longer work, etc.
Over a hundred ports had to be updated to get everything back on an
even keel. That is the sort of problem I am worried about. Hopefully,
it won't happen.


FYI, if you'd used an upgrade tool like portupgrade it would have been
seamless because portupgrade keeps the old library version around for
precisely this reason.

Kris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Kris Kennaway
On Fri, Jun 08, 2007 at 08:30:01PM -0400, Gerard wrote:
> On June 08, 2007 at 05:12PM Kris Kennaway wrote:
> 
> [snip]
> 
> > FYI, if you'd used an upgrade tool like portupgrade it would have been
> > seamless because portupgrade keeps the old library version around for
> > precisely this reason.
> 
> Actually, I ended up using portmanager with the '-p' flag to force
> updating of all dependencies no matter how far down the dependency
> tree they were.

OK, but the point about the cause of your problems stands.  If you're
going to complain about dependency problems, you should consider
instead using a tool that is mature enough to handle them without
causing problems.

Kris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[2]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Gerard
On June 08, 2007 at 05:12PM Kris Kennaway wrote:

[snip]

> FYI, if you'd used an upgrade tool like portupgrade it would have been
> seamless because portupgrade keeps the old library version around for
> precisely this reason.

Actually, I ended up using portmanager with the '-p' flag to force
updating of all dependencies no matter how far down the dependency
tree they were.

-- 
Gerard
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Kris Kennaway
On Fri, Jun 08, 2007 at 05:07:25PM -0400, Gerard wrote:
> On June 08, 2007 at 03:48PM Bill Moran wrote:
> 
> [snip]
> 
> > It's not an assumption, its OPTIMISM!
> 
> That reminds me of an optimist who fell off of a fifty story building.
> As he passed each floor on the way down, he yelled, "So, so far!"
> 
> Seriously, I hope you are right. I believe it was 'gettext' that was
> updated a short time age. That update caused me all sorts of
> dependency problems. My shell, bash, would no longer work, etc.
> Over a hundred ports had to be updated to get everything back on an
> even keel. That is the sort of problem I am worried about. Hopefully,
> it won't happen.

FYI, if you'd used an upgrade tool like portupgrade it would have been
seamless because portupgrade keeps the old library version around for
precisely this reason.

Kris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[4]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Gerard
On June 08, 2007 at 03:48PM Bill Moran wrote:

[snip]

> It's not an assumption, its OPTIMISM!

That reminds me of an optimist who fell off of a fifty story building.
As he passed each floor on the way down, he yelled, "So, so far!"

Seriously, I hope you are right. I believe it was 'gettext' that was
updated a short time age. That update caused me all sorts of
dependency problems. My shell, bash, would no longer work, etc.
Over a hundred ports had to be updated to get everything back on an
even keel. That is the sort of problem I am worried about. Hopefully,
it won't happen.


-- 
Gerard
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Re[2]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Bill Moran
In response to Thomas Dickey <[EMAIL PROTECTED]>:

> On Fri, Jun 08, 2007 at 03:34:38PM -0400, Bill Moran wrote:
> > > I am not totally convinced. If one small package is updated that is
> > > depended on by 10 other package that in turn are depended on by a like
> > > number of other packages, what has been really gained by breaking
> > > everything into small bits? They may be easier to maintain; however
> > > the impact on updating the system seems like it would be minimal.
> > 
> > No.  As long as the communication interface between modules (whether
> > it be an API or something else) doesn't change, it's perfectly possible
> > to update a single module without updating anything else.
> 
> "as long as" is an assumption which I haven't seen any evidence that 
> xorg developers are willing to warrant.
> 
> fwiw, they changed interface in the Xaw library a couple of years ago,
> which required some a change to xterm.
> 
> Absent any evidence that they're going to maintain stable interfaces,
> this is just an assumption.

Nay!  Your dark thoughts and negative vibes will not deter my boundless
optimism!  I have faith that the xorg developers will prevail in their
effort to create stable, consistent interfaces between modules!

It's not an assumption, its OPTIMISM!

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Re[2]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Thomas Dickey
On Fri, Jun 08, 2007 at 03:34:38PM -0400, Bill Moran wrote:
> > I am not totally convinced. If one small package is updated that is
> > depended on by 10 other package that in turn are depended on by a like
> > number of other packages, what has been really gained by breaking
> > everything into small bits? They may be easier to maintain; however
> > the impact on updating the system seems like it would be minimal.
> 
> No.  As long as the communication interface between modules (whether
> it be an API or something else) doesn't change, it's perfectly possible
> to update a single module without updating anything else.

"as long as" is an assumption which I haven't seen any evidence that 
xorg developers are willing to warrant.

fwiw, they changed interface in the Xaw library a couple of years ago,
which required some a change to xterm.

Absent any evidence that they're going to maintain stable interfaces,
this is just an assumption.

-- 
Thomas E. Dickey
http://invisible-island.net
ftp://invisible-island.net


pgpKwRHAuHW1J.pgp
Description: PGP signature


Re: Re[2]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Bill Moran
In response to Gerard <[EMAIL PROTECTED]>:

> On June 08, 2007 at 02:57PM [EMAIL PROTECTED] wrote:
> 
> > xorg is now 180-230 some-odd tiny packages (ports)
> > instead of the old -clients, -server, -libraries blobs.
> > 
> > It seems to work okay, and minor updates are far less
> > strenuous.  I give it five years to either prove itself or
> > all the developers to go mad and sacrifice their firstborn
> > in some wicked ritual to the sun-god.
> 
> I am not totally convinced. If one small package is updated that is
> depended on by 10 other package that in turn are depended on by a like
> number of other packages, what has been really gained by breaking
> everything into small bits? They may be easier to maintain; however
> the impact on updating the system seems like it would be minimal.

No.  As long as the communication interface between modules (whether
it be an API or something else) doesn't change, it's perfectly possible
to update a single module without updating anything else.

In practice, I've updated 5 or 6 little sub-ports of xorg 7 since I
did the switch, and haven't had to rebuild all of xorg yet.

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re[2]: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Gerard
On June 08, 2007 at 02:57PM [EMAIL PROTECTED] wrote:


> xorg is now 180-230 some-odd tiny packages (ports)
> instead of the old -clients, -server, -libraries blobs.
> 
> It seems to work okay, and minor updates are far less
> strenuous.  I give it five years to either prove itself or
> all the developers to go mad and sacrifice their firstborn
> in some wicked ritual to the sun-god.

I am not totally convinced. If one small package is updated that is
depended on by 10 other package that in turn are depended on by a like
number of other packages, what has been really gained by breaking
everything into small bits? They may be easier to maintain; however
the impact on updating the system seems like it would be minimal.
 
> Failure or not, the "modularity" will be adopted by microsoft
> sometime around 2013, who will announce it as "The First
> Commercial Product to Use a Wholley Modular Codebase"
> except they won't spell "Wholley" with as much style.

I always thought that, that was what 'DLL's' were all about.
 
-- 
Gerard
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Jerry McAllister
On Fri, Jun 08, 2007 at 01:57:40PM -0500, [EMAIL PROTECTED] wrote:

> On 08/06/07, Amarendra Godbole <[EMAIL PROTECTED]> wrote:
> . . .
> >Initially I had about 230 packages installed, and after the upgrade
> >the number has gone up to 450! Lot of these seem to be X related
> >packages.
> >
> >Does xorg 7.2 have more dependencies, and hence so many ports were 
> >installed?
> 
> xorg is now 180-230 some-odd tiny packages (ports)
> instead of the old -clients, -server, -libraries blobs.
> 
> It seems to work okay, and minor updates are far less
> strenuous.  I give it five years to either prove itself or
> all the developers to go mad and sacrifice their firstborn
> in some wicked ritual to the sun-god.
> 
> Failure or not, the "modularity" will be adopted by microsoft
> sometime around 2013, who will announce it as "The First
> Commercial Product to Use a Wholley Modular Codebase"
> except they won't spell "Wholley" with as much style.

In MS case, I would expect them to spell it 'holey' and introduce
some special incantations to be used with prescribed incense.

jerry

> 
> I just hope we aren't still putting up with people using "impact"
> all the time, by then.
> 
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread [EMAIL PROTECTED]

On 08/06/07, Amarendra Godbole <[EMAIL PROTECTED]> wrote:
. . .

Initially I had about 230 packages installed, and after the upgrade
the number has gone up to 450! Lot of these seem to be X related
packages.

Does xorg 7.2 have more dependencies, and hence so many ports were installed?


xorg is now 180-230 some-odd tiny packages (ports)
instead of the old -clients, -server, -libraries blobs.

It seems to work okay, and minor updates are far less
strenuous.  I give it five years to either prove itself or
all the developers to go mad and sacrifice their firstborn
in some wicked ritual to the sun-god.

Failure or not, the "modularity" will be adopted by microsoft
sometime around 2013, who will announce it as "The First
Commercial Product to Use a Wholley Modular Codebase"
except they won't spell "Wholley" with as much style.

I just hope we aren't still putting up with people using "impact"
all the time, by then.

--
--
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Robert Huff
Amarendra Godbole writes:

>  Does xorg 7.2 have more dependencies, and hence so many ports
>  were installed?

No, but a _lot_ of stuff which used to be bundled is now its
own port.  An additional 225+ packages sounds about right.


Robert Huff
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Bill Moran
In response to "Amarendra Godbole" <[EMAIL PROTECTED]>:

> Hi,
> 
> I recently upgraded to xorg 7.2 by doing a complete portupgrade. I run
> FreeBSD 6.2-RELEASE, with the default kernel, and default settings.
> Initially I had about 230 packages installed, and after the upgrade
> the number has gone up to 450! Lot of these seem to be X related
> packages.
> 
> Does xorg 7.2 have more dependencies, and hence so many ports were installed?

As best I can tell, xorg has been reorganized so that instead of a few
large ports, it's now a whole bunch of small ports.

Theoretically, this should allow faster/easier updating, and eventually
allow you to deinstall a lot of xorg that you don't need (for example,
drivers for video cards you don't have)

-- 
Bill Moran
http://www.potentialtech.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Increase in the number of ports: upgrade xorg to 7.2...

2007-06-08 Thread Amarendra Godbole

Hi,

I recently upgraded to xorg 7.2 by doing a complete portupgrade. I run
FreeBSD 6.2-RELEASE, with the default kernel, and default settings.
Initially I had about 230 packages installed, and after the upgrade
the number has gone up to 450! Lot of these seem to be X related
packages.

Does xorg 7.2 have more dependencies, and hence so many ports were installed?

-Amarendra
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Upgrade FreeBSD 6.1 to 6.2 - ports upgrade

2007-06-07 Thread Jose Luis Alarcon Sanchez
On Thu, 7 Jun 2007 16:50:31 +0300
Dominik Zalewski <[EMAIL PROTECTED]> wrote:

> Dear All,
> 
> I'm planning to upgrade my FreeBSD 6.1 box to 6.2. Should I remove all 
> installed ports and rebuild them under 6.2 ?
> 
> Thanks in advance,
> 
> 
> Dominik 
> 

Hey Dominik.

Imagine you don't plan any release upgrade...

Do you make from while to while any rebuild of your ports with portsnap,
portupgrade, portmanager or another tool?.

I hope my question answer your question.

Regards.

Jose.

-- 
http://www.lordofunix.org/
 
Not Registered GNU/Hurd User.
Registered BSD User 51101.
Registered Linux User #213309.
Memories. You are talking about memories.
Rick Deckard. Blade Runner.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Upgrade FreeBSD 6.1 to 6.2 - ports upgrade

2007-06-07 Thread Matthew Seaman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Derek Ragona wrote:
> At 08:50 AM 6/7/2007, Dominik Zalewski wrote:
>> Dear All,
>>
>> I'm planning to upgrade my FreeBSD 6.1 box to 6.2. Should I remove all
>> installed ports and rebuild them under 6.2 ?
>>
>> Thanks in advance,
> 
> You don't need to remove them.  But you should run portmanager or
> portupgrade to rebuild them all after you upgrade.

Actually, that isn't the case.  You only *need* to force a rebuild of
all ports if you update across a major version number (eg. 5.5 --> 6.2).
That's because  the ABI version on various system shlibs is bumped
with the new major version.  While you can still keep running 5.x
software on a 6.x system (by installing the compat5x stuff) you will
very quickly run into problems when updating if all or most of your
ports aren't compiled on the current OS version.

For a minor version number bump (6.1 --> 6.2) generally upgrading
everything should not be necessary.  There might be one or two ports
in the tree that notice the difference, but those are the exception
rather than the rule and can be updated individually if they cause
a problem.  In fact, by far the most likely scenario for the OP is that
he won't need to do anything at all to his installed ports: it will all
just keep on working fine.

Cheers,

Matthew

- -- 
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
  Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
  Kent, CT11 9PW
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.3 (FreeBSD)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGaDZD8Mjk52CukIwRCHyvAJ0eX771mzcEJ44WXFv6qzsrYCtzjQCgh/JF
ect3ZZbByYSCZ5UA14wTzmA=
=JUVU
-END PGP SIGNATURE-
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Upgrade FreeBSD 6.1 to 6.2 - ports upgrade

2007-06-07 Thread Derek Ragona

At 08:50 AM 6/7/2007, Dominik Zalewski wrote:

Dear All,

I'm planning to upgrade my FreeBSD 6.1 box to 6.2. Should I remove all
installed ports and rebuild them under 6.2 ?

Thanks in advance,


You don't need to remove them.  But you should run portmanager or 
portupgrade to rebuild them all after you upgrade.


-Derek
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Upgrade FreeBSD 6.1 to 6.2 - ports upgrade

2007-06-07 Thread Dominik Zalewski
Dear All,

I'm planning to upgrade my FreeBSD 6.1 box to 6.2. Should I remove all 
installed ports and rebuild them under 6.2 ?

Thanks in advance,


Dominik 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade question

2006-06-11 Thread wc_fbsd



On 6/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
I'm a newbie running 6.1 stable and I have what may be several 
simple questions: What exactly is happening when I run "make index 
&& make readmes" after I upgrade my ports tree? Why aren't the 
indexes and readmes made when we run cvsup ports



You don't need to run make index... just cd into /usr/ports and type


Better yet, don't screw with cvsup.  "Portsnap" is standard equipment 
in 6.x.  It's much faster, uses less bandwidth, and is even less load 
on the update server.  And it does the indexes automatically.  Just 
"man portsnap" or search the archives.


  -Wayne
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade question

2006-06-10 Thread Nikolas Britton

On 6/10/06, Nikolas Britton <[EMAIL PROTECTED]> wrote:

On 6/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I'm a newbie running 6.1 stable and I have what may be several simple questions: What exactly 
is happening when I run "make index && make readmes" after I upgrade my ports 
tree? Why aren't the indexes and readmes made when we run cvsup ports-supfile? Finally, why does it 
take so long to make what appear (to me) to be fairly small files? Thanks.
>

You don't need to run make index... just cd into /usr/ports and type
'make fetchindex' after every cvsup session. You don't need to run
make readmes too, these are just html pages with all the ports listed
on them... see here for an example: http://www.freebsd.org/ports/


err... that link/example should be something more like this one:
http://www.freebsd.org/cgi/ports.cgi?query=stuff&stype=all&sektion=all


--
BSD Podcasts @:
http://bsdtalk.blogspot.com/
http://freebsdforall.blogspot.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade question

2006-06-10 Thread Nikolas Britton

On 6/10/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:

I'm a newbie running 6.1 stable and I have what may be several simple questions: What exactly is 
happening when I run "make index && make readmes" after I upgrade my ports 
tree? Why aren't the indexes and readmes made when we run cvsup ports-supfile? Finally, why does 
it take so long to make what appear (to me) to be fairly small files? Thanks.



You don't need to run make index... just cd into /usr/ports and type
'make fetchindex' after every cvsup session. You don't need to run
make readmes too, these are just html pages with all the ports listed
on them... see here for an example: http://www.freebsd.org/ports/


--
BSD Podcasts @:
http://bsdtalk.blogspot.com/
http://freebsdforall.blogspot.com/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ports upgrade question

2006-06-10 Thread aaronvan
I'm a newbie running 6.1 stable and I have what may be several simple 
questions: What exactly is happening when I run "make index && make readmes" 
after I upgrade my ports tree? Why aren't the indexes and readmes made when we 
run cvsup ports-supfile? Finally, why does it take so long to make what appear 
(to me) to be fairly small files? Thanks.

-- Aaron
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: abiword broken after ports upgrade

2006-05-01 Thread Kris Kennaway
On Mon, May 01, 2006 at 07:40:56PM -0400, Peter wrote:
> 
> --- Kris Kennaway <[EMAIL PROTECTED]> wrote:
> 
> > On Mon, May 01, 2006 at 07:30:20PM -0400, Peter wrote:
> > > A couple of days ago I upgraded my ports on my 5.4-STABLE system. 
> > > Afterwords Abiword cannot start:
> > > 
> > > /libexec/ld-elf.so.1: Shared object "libgsf-1.so.113" not found,
> > > required by "libwv-1.2.so.1"
> > > 
> > > Any ideas?
> > 
> > Finish updating your ports? :)
> 
> You figure it will be fixed if I update & upgrade again?

I'm saying that if you had missing libraries after your upgrade then
you did something wrong, e.g. you didn't update everything you were
supposed to.

Kris


pgpmX2BSI4dL7.pgp
Description: PGP signature


Re: abiword broken after ports upgrade

2006-05-01 Thread Peter

--- Kris Kennaway <[EMAIL PROTECTED]> wrote:

> On Mon, May 01, 2006 at 07:30:20PM -0400, Peter wrote:
> > A couple of days ago I upgraded my ports on my 5.4-STABLE system. 
> > Afterwords Abiword cannot start:
> > 
> > /libexec/ld-elf.so.1: Shared object "libgsf-1.so.113" not found,
> > required by "libwv-1.2.so.1"
> > 
> > Any ideas?
> 
> Finish updating your ports? :)

You figure it will be fixed if I update & upgrade again?

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: abiword broken after ports upgrade

2006-05-01 Thread Kris Kennaway
On Mon, May 01, 2006 at 07:30:20PM -0400, Peter wrote:
> A couple of days ago I upgraded my ports on my 5.4-STABLE system. 
> Afterwords Abiword cannot start:
> 
> /libexec/ld-elf.so.1: Shared object "libgsf-1.so.113" not found,
> required by "libwv-1.2.so.1"
> 
> Any ideas?

Finish updating your ports? :)

Kris


pgpVTH0bQHjXe.pgp
Description: PGP signature


abiword broken after ports upgrade

2006-05-01 Thread Peter
A couple of days ago I upgraded my ports on my 5.4-STABLE system. 
Afterwords Abiword cannot start:

/libexec/ld-elf.so.1: Shared object "libgsf-1.so.113" not found,
required by "libwv-1.2.so.1"

Any ideas?


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Ports upgrade policy

2006-03-14 Thread Jud
On Tue, 14 Mar 2006 08:35:46 -0600, "Mike Loiterman"
<[EMAIL PROTECTED]> said:
> Erik Trulsson  wrote:
[snip]
> >>> Is it advisable to sync my source to RELEASE, but to CURRENT for
> >>> ports? Typically, I upgade my ports a few days after they get
> >>> updated so I'm always running the latest version, but would it be
> >>> better to sync both ports and source to RELEASE? 
[snip]
> > Ports *are* tagged for each release, but they are not branched.
> 
> Yes, I know, which is why I asked the question...which is better?

Considerations I can think of -

(1) Advantage of using -HEAD (-CURRENT): Updates to ports may include
security fixes.

(2) Disadvantage of using -HEAD (-CURRENT): It is possible, though
perhaps not likely, that an updated port would require something your
-RELEASE base system lacked.

Jud
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Ports upgrade policy

2006-03-14 Thread Bob Johnson
On 3/14/06, Mike Loiterman <[EMAIL PROTECTED]> wrote:
> Erik Trulsson  wrote:
> > On Tue, Mar 14, 2006 at 04:18:13AM -0400, Duane Whitty wrote:
> >> Mike Loiterman wrote:
> >>> Is it advisable to sync my source to RELEASE, but to CURRENT for
> >>> ports? Typically, I upgade my ports a few days after they get
> >>> updated so I'm always running the latest version, but would it be
> >>> better to sync both ports and source to RELEASE?
> >>>
> >> It would be nice I guess if ports were tagged like src but they are
> >> not. Basically HEAD is all there is vis-a-vis tags.  You can specify
> >> a specific date however.
> >
> > Ports *are* tagged for each release, but they are not branched.
>
> Yes, I know, which is why I asked the question...which is better?

As I understand it, release tagsare static.  If you specify a release
tag, you get the ports as they were at the time of that release. 
Ports don't branch with releases, so if you want updated ports, you
use "tag=."


- Bob
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


RE: Ports upgrade policy

2006-03-14 Thread Mike Loiterman
Erik Trulsson  wrote:
> On Tue, Mar 14, 2006 at 04:18:13AM -0400, Duane Whitty wrote:
>> Mike Loiterman wrote:
>>> This is my supfile:
>>> 
>>> *default  host=cvsup1.FreeBSD.org
>>> *default  base=/usr
>>> *default  prefix=/usr
>>> *default  release=cvs
>>> *default  tag=RELENG_6_0
>>> *default  delete use-rel-suffix
>>> 
>>> src-all
>>> 
>>> *default tag=.
>>> ports-all
>>> doc-all
>>> 
>>> I have been using it like this for years, obviously changing to the
>>> latest release tag.  I haven't had problem and I'm not having
>>> problems, but my question is this: 
>>> 
>>> Is it advisable to sync my source to RELEASE, but to CURRENT for
>>> ports? Typically, I upgade my ports a few days after they get
>>> updated so I'm always running the latest version, but would it be
>>> better to sync both ports and source to RELEASE? 
>>> 
>> Hi Mike,
>> 
>> It would be nice I guess if ports were tagged like src but they are
>> not. Basically HEAD is all there is vis-a-vis tags.  You can specify
>> a specific date however.
> 
> Ports *are* tagged for each release, but they are not branched.

Yes, I know, which is why I asked the question...which is better?

--
Mike Loiterman
grantADLER
Tel: 630-302-4944
Fax: 773-442-0992
Email: [EMAIL PROTECTED]
PGP Key: 0xD1B9D18E

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Ports upgrade policy

2006-03-14 Thread Erik Trulsson
On Tue, Mar 14, 2006 at 04:18:13AM -0400, Duane Whitty wrote:
> Mike Loiterman wrote:
> >This is my supfile:
> >
> >*default  host=cvsup1.FreeBSD.org
> >*default  base=/usr
> >*default  prefix=/usr
> >*default  release=cvs
> >*default  tag=RELENG_6_0
> >*default  delete use-rel-suffix
> >
> >src-all
> >
> >*default tag=.
> >ports-all
> >doc-all
> >
> >I have been using it like this for years, obviously changing to the latest
> >release tag.  I haven't had problem and I'm not having problems, but my
> >question is this:
> >
> >Is it advisable to sync my source to RELEASE, but to CURRENT for ports?
> >Typically, I upgade my ports a few days after they get updated so I'm 
> >always
> >running the latest version, but would it be better to sync both ports and
> >source to RELEASE?
> >  
> Hi Mike,
> 
> It would be nice I guess if ports were tagged like src but they are not.
> Basically HEAD is all there is vis-a-vis tags.  You can specify a
> specific date however.

Ports *are* tagged for each release, but they are not branched.


> 
> Duane
> >Obviously, it depends, somewhat, on personal choice, but in terms of
> >stablity and "correctness" which is better?
> >

-- 

Erik Trulsson
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Ports upgrade policy

2006-03-14 Thread Duane Whitty

Mike Loiterman wrote:

This is my supfile:

*default  host=cvsup1.FreeBSD.org
*default  base=/usr
*default  prefix=/usr
*default  release=cvs
*default  tag=RELENG_6_0
*default  delete use-rel-suffix

src-all

*default tag=.
ports-all
doc-all

I have been using it like this for years, obviously changing to the latest
release tag.  I haven't had problem and I'm not having problems, but my
question is this:

Is it advisable to sync my source to RELEASE, but to CURRENT for ports?
Typically, I upgade my ports a few days after they get updated so I'm always
running the latest version, but would it be better to sync both ports and
source to RELEASE?
  

Hi Mike,

It would be nice I guess if ports were tagged like src but they are not.
Basically HEAD is all there is vis-a-vis tags.  You can specify a
specific date however.

Duane

Obviously, it depends, somewhat, on personal choice, but in terms of
stablity and "correctness" which is better?

--
Mike Loiterman
grantADLER
Tel: 630-302-4944
Fax: 773-442-0992
Email: [EMAIL PROTECTED]
PGP Key: 0xD1B9D18E

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



  

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Ports upgrade policy

2006-03-14 Thread Mike Loiterman
This is my supfile:

*default  host=cvsup1.FreeBSD.org
*default  base=/usr
*default  prefix=/usr
*default  release=cvs
*default  tag=RELENG_6_0
*default  delete use-rel-suffix

src-all

*default tag=.
ports-all
doc-all

I have been using it like this for years, obviously changing to the latest
release tag.  I haven't had problem and I'm not having problems, but my
question is this:

Is it advisable to sync my source to RELEASE, but to CURRENT for ports?
Typically, I upgade my ports a few days after they get updated so I'm always
running the latest version, but would it be better to sync both ports and
source to RELEASE?

Obviously, it depends, somewhat, on personal choice, but in terms of
stablity and "correctness" which is better?

--
Mike Loiterman
grantADLER
Tel: 630-302-4944
Fax: 773-442-0992
Email: [EMAIL PROTECTED]
PGP Key: 0xD1B9D18E

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: unattended ports upgrade possible?

2005-12-27 Thread Jonathan Chen
On Tue, Dec 27, 2005 at 03:20:07PM -0500, Peter wrote:
> Is there any way to fully automate the upgrade of all installed ports? 
> Typically ncurses screens prompt for compile options.  Is there any way to
> instruct portupgrade to use default compile values?

Add a `BATCH=yes' to /etc/make.conf.
-- 
Jonathan Chen <[EMAIL PROTECTED]>
--
"I don't want to achive immortality through my works..
 I want to achieve it through not dying" - Woody Allen
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


unattended ports upgrade possible?

2005-12-27 Thread Peter
Is there any way to fully automate the upgrade of all installed ports? 
Typically ncurses screens prompt for compile options.  Is there any way to
instruct portupgrade to use default compile values?

--
Peter






__ 
Find your next car at http://autos.yahoo.ca
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: Newbie: Ports upgrade, CVSup, and disk space problems

2005-12-07 Thread Ashley Moran
On Wednesday 07 December 2005 14:43, Charles Haynes wrote:
> Hi, all. I'm new to FreeBSD.
>
> I'm setting up a machine to act as a webserver using:
>
> FreeBSD 4.11-RELEASE-p12-jc2 (jail18) #0
>
> Tonight I added the package:
>
> cvsup-without-gui-16.1h_2
>
> and ran:
>
> # cvsup -g -L 2 /root/cvs-supfile
>
> After it ran (which took over an hour), I realized I used the
> "cvs-supfile" and not the "ports-supfile." I only wanted to update the
> ports tree, and not download the entire CVS repository. How do I prune
> this back to a manageable size? I'm going to be using this machine
> (it's a VPS) as a webserver only.
>

Just delete /usr/src.  You can get it back if you need it by redoing the 
cvsup.

Ashley
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Newbie: Ports upgrade, CVSup, and disk space problems

2005-12-07 Thread Charles Haynes
Hi, all. I'm new to FreeBSD. 

I'm setting up a machine to act as a webserver using: 

FreeBSD 4.11-RELEASE-p12-jc2 (jail18) #0

Tonight I added the package: 

cvsup-without-gui-16.1h_2 

and ran: 

# cvsup -g -L 2 /root/cvs-supfile

After it ran (which took over an hour), I realized I used the
"cvs-supfile" and not the "ports-supfile." I only wanted to update the
ports tree, and not download the entire CVS repository. How do I prune
this back to a manageable size? I'm going to be using this machine
(it's a VPS) as a webserver only. 

Many thanks for any assistance you can offer! 

Here's the relevant parts of the supfile: 

*default host=cvsup9.us.FreeBSD.org
*default base=/usr
*default prefix=/usr
*default release=cvs
*default delete use-rel-suffix

*default compress

src-all

ports-base  
ports-archivers
ports-benchmarks
ports-comms 
ports-converters
ports-databases
ports-devel
ports-dns  
ports-editors
ports-ftp
ports-java
ports-lang
ports-mail
ports-misc
ports-net 
ports-net-mgmt
ports-security
ports-shells
ports-sysutils
ports-textproc 
ports-www   

cvsroot-all
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: system wide ports upgrade

2004-11-20 Thread Huw Wynn-Jones
On Saturday 20 November 2004 04:51, Steel City Phantom wrote:
> i remember there being a program out there that will go through all
> my installed apps and upgrade them with the latest versions in the
> ports collection, what was it called again?
>
> thanks

portupgrade is the program. it is found in /usr/ports/sysutils/

portupgrade -varR will upgrade everything including all dependencies.

check the man page cos you can get it to upgrade using binaries 
instead of compiling, if they are available.

also the below article is very useful.

http://www.onlamp.com/pub/a/bsd/2003/08/28/FreeBSD_Basics.html

cheers

Huw
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: system wide ports upgrade

2004-11-19 Thread Brian Bobowski
Steel City Phantom wrote:
i remember there being a program out there that will go through all my 
installed apps and upgrade them with the latest versions in the ports 
collection, what was it called again?

thanks
portupgrade, in the sysutils directory.
-BB
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


system wide ports upgrade

2004-11-19 Thread Steel City Phantom
i remember there being a program out there that will go through all my 
installed apps and upgrade them with the latest versions in the ports 
collection, what was it called again?

thanks
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ports upgrade question 4.10 stable

2004-10-16 Thread Alexander J. Martinez
I am a new FreeBSD user coming from Debian Linux.
I think I have finally got the upgrading process done right.  I just
need to know if I am missing anything or have something configured
wrong. I have gotten bits and pieces from this forum, FreeBSD handbook
and the examples that came with this installation.  The following is the
supfile that I use with cvsup (no-gui)

# start supfile
# $FreeBSD: src/share/examples/cvsup/stable-supfile,v 1.19.2.6
# 2002/08/06 08:24:46 blackend Exp $ modified from the original file
# above cvsup hosts listed at
# http://www.freebsd.org/doc/handbook/mirrors.html.

*default host=cvsup4.us.FreeBSD.org
*default base=/var/db
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
*default compress

# Main Ports Tree.
ports-all
# end supfile


The following script is the one I use to upgrade the ports:

# start of script file
cd /usr/ports
#
# check and rebuild pkg database
pkgdb -Fuvf
#
# run ports-all cvs
cvsup -g -L 2 -r 5 /root/stable-ports-supfile
echo "."
echo "strike any key to continue"
clear
#
# check and rebuild again the pkg db
pkgdb -Fuvf
#
# get new list and check for insecure programs
portaudit -aF > /root/portaudit_log.txt
clear
less /root/portaudit_log.txt
#
# not sure if this is needed...portmanager
/usr/local/bin/portmanager -s > /root/portmanager_status_log.txt
clear
less /root/portmanager_status.txt
clear
#
# check for any needed steps before updating
less /usr/ports/UPDATING
#
clear
echo "It is VERY important that you read all"
echo "of the UPDATING file!"
echo "."
echo "If you ignore the contents of this file,"
echo "you may end up with a broken system..."
echo "."
echo "You have been warned"
echo "."
echo "If after reading the UPDATING file, you need"
echo "to make any manual changes...Ctrl C to"
echo "abort this script"
echo "."
echo "otherwise strike a key to do a portupgrade"
read JUNK
clear
#
# perform upgrade and generate a list of ports
portupgrade -a -v -l /root/portupgrade_log.txt
clear
less /root/portupgrade_log.txt
#
# check and rebuild agian the pkg db
pkgdb -Fuvf
# end of script file

-- 
- Windows users say they travel at the speed of sound
- Linux users say they travel at the speed of light
- FreeBSD users say...what's taking you guys so long?

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade question

2004-05-03 Thread Matthew Seaman
On Mon, May 03, 2004 at 02:25:18PM +0300, alexander botov wrote:

> I'm sure that this is a trivial question to ask . I'm considering source and 
> ports tree upgarde from 5.2_REL to 5.2.1_REL . I've never did cvs before
> (usually i back up , format + binary install and restore ) . I've read the 
> article from the handbook and everything is pretty much explained there . My 
> question is when i install the new distro how should i upgrade the ports tree 
> after syncing it from cvs ? Are there any guidelines , tips or tricks ? I've 
> heard about portupgrade port . Is this the right tool for bringing my ports 
> up to date ? Your help will be greatly appreciated and I hope will save me 
> hours of hesitation and headache :-)

You've pretty much got the right idea.  portupgrade(1) is the tool to
use.  However, you should read /usr/ports/UPDATING carefully -- apart
from anything else, if you're upgrading from the ports tree as it was
at the time of 5.2-RELEASE you'll have a tricky ruby(1) version bump
to deal with (ruby is the language portupgrade is written in) as well
as major updates for some large software collections like Gnome and
KDE.  

Note that the ports collection is developed pretty much independently
from the base system, and reflects the completely independent
development of software by any number of completely different
projects.  There's no particular requirement to only upgrade your
ports concurrently with upgrading your system.  In fact, it's probably
better to upgrade ports slightly more frequently (or perhaps even a
lot more frequently) than the base system.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


ports upgrade question

2004-05-03 Thread alexander botov
Hi to everyone !

I'm sure that this is a trivial question to ask . I'm considering source and 
ports tree upgarde from 5.2_REL to 5.2.1_REL . I've never did cvs before
(usually i back up , format + binary install and restore ) . I've read the 
article from the handbook and everything is pretty much explained there . My 
question is when i install the new distro how should i upgrade the ports tree 
after syncing it from cvs ? Are there any guidelines , tips or tricks ? I've 
heard about portupgrade port . Is this the right tool for bringing my ports 
up to date ? Your help will be greatly appreciated and I hope will save me 
hours of hesitation and headache :-)

Thanks

Excuse my english 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade error?

2004-04-16 Thread Marwan Sultan
Thank you Tim, Thank you Kent,
This fixed the problem.


On Fri, 16 Apr 2004 07:14:28 -0700, Kent Stewart wrote
> 
> You only need the one with the *default on it. It is complaining 
> about the first one.
> 
> Kent
> 
> > *default base=/usr
> > *default prefix=/usr
> > *default release=cvs tag=.
> > *default delete use-rel-suffix
> > *default compress
> > ports-all

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade error?

2004-04-16 Thread Tim McMillen
On Fri, 2004-04-16 at 15:11, Marwan Sultan wrote:
> Hello everyone,

> PS: This command will run as a background proccess? if i disconnect from
> internet and I connect again later (Dialup) it will resume the updating?

I think it will time out and exit the process eventually, so you would
have to restart the cvsup.  You could script that, but be careful as
noted below.

> or i have to download it one time?

No, it is mostly a linear process.  Whatever is updated by the time you
disconnect will still be updated.  Then when you restart the cvsup, you
wont have to redo that part.  There is some overhead searching through
parts that don't need to be updated, so don't do it every 5minutes, but
its not huge overhead.

Tim

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade error?

2004-04-16 Thread Kent Stewart
On Friday 16 April 2004 08:11 am, Marwan Sultan wrote:
> Hello everyone,
>
> Im on FreeBSD 5.1-Release, CVsup, portupgrade are installed.
> I want to upgrade my ports tree, so I did whats on the Handbook.
> I'v copied and edit the file - ports-supfile.
> I ran the command cvsup -g -L 2 /path/to/ports-supfile
>
> And it gave me the following error:
>
> Parsing supfile "/usr/home/deadline/things/ports-supfile"
> Release not specified for collection "host=cvsup1.freebsd.org"
>
> I tired to change the mirror site, Also i tried to uncomment one
> of the packages, and I tired to add ports-all to end of the entries,
> but all gave the same error, any ideas? tips? please.
>
> This is my ports-supfile entries:
>
> host=cvsup1.freebsd.org
> *default host=cvsup1.freebsd.org

You only need the one with the *default on it. It is complaining about 
the first one.

Kent

> *default base=/usr
> *default prefix=/usr
> *default release=cvs tag=.
> *default delete use-rel-suffix
> *default compress
> ports-all
>
>
> PS: This command will run as a background proccess? if i disconnect
> from internet and I connect again later (Dialup) it will resume the
> updating? or i have to download it one time?
> --
> Marwan Sultan
>
> ___
> [EMAIL PROTECTED] mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to
> "[EMAIL PROTECTED]"

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ports upgrade error?

2004-04-16 Thread Marwan Sultan
Hello everyone,

Im on FreeBSD 5.1-Release, CVsup, portupgrade are installed.
I want to upgrade my ports tree, so I did whats on the Handbook.
I'v copied and edit the file - ports-supfile.
I ran the command cvsup -g -L 2 /path/to/ports-supfile

And it gave me the following error:

Parsing supfile "/usr/home/deadline/things/ports-supfile"
Release not specified for collection "host=cvsup1.freebsd.org"

I tired to change the mirror site, Also i tried to uncomment one of the 
packages, and I tired to add ports-all to end of the entries, but 
all gave the same error, any ideas? tips? please.

This is my ports-supfile entries:

host=cvsup1.freebsd.org
*default host=cvsup1.freebsd.org
*default base=/usr
*default prefix=/usr
*default release=cvs tag=.
*default delete use-rel-suffix
*default compress
ports-all


PS: This command will run as a background proccess? if i disconnect from
internet and I connect again later (Dialup) it will resume the updating?
or i have to download it one time?
--
Marwan Sultan

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade w/out internet connection

2003-09-22 Thread Kent Stewart
On Monday 22 September 2003 08:44 am, Brian Henning wrote:
> Greetings:
> Can i perform a ports upgrade to a computer that has no internet
> connection by ftping the file /pub/FreeBSD/ports/ports/ports.tar.gz
> and replacing the /usr/ports/ directory
> with the uncompressed version of this file? please let me know your
> opinion to solve my problem.

It is only the beginning. You also have to download the distfiles for 
each of the ports that you want to update. You could also download the 
packages and bypass building the ports. 

I don't think the packages will be as uptodate as the port structure 
that you would download. They require hours to build. Where as, the 
port structure can be tarballed fairly quickly every day.

Kent

>
> thanks,
>
> brian

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


ports upgrade w/out internet connection

2003-09-22 Thread Brian Henning
Greetings:
Can i perform a ports upgrade to a computer that has no internet connection by
ftping the file /pub/FreeBSD/ports/ports/ports.tar.gz and replacing the
/usr/ports/ directory
with the uncompressed version of this file? please let me know your opinion to
solve my problem.

thanks,

brian
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Strange error during ports upgrade

2003-07-22 Thread Jack Raats
After running cvsup and making the index file I'll get the following
warnings/errors

heaven# make index
Generating INDEX - please wait..zh-openoffice-CN-1.0.3_2:
"/usr/ports/devel/jakarta-ant" non-existent -- dependency list incomplete
zh-openoffice-TW-1.0.3_2: "/usr/ports/devel/jakarta-ant" non-existent -- 
dependency list incomplete
mysql-jdbc-mm-2.0.14: "/usr/ports/devel/jakarta-ant" non-existent -- 
dependency list incomplete
postgresql-jdbc-7.3.3: "/usr/ports/devel/jakarta-ant" non-existent -- 
dependency list incomplete

What's wrong???

Met vriendelijke groeten,
Jack Raats

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: ports upgrade

2002-12-20 Thread iuliand
Thanks for your answers!
> 
> To Unsubscribe: send mail to [EMAIL PROTECTED]
> with "unsubscribe freebsd-questions" in the body of the message


-- 
Iulian Dumbrava
ROMTELECOM. O&M Network. IN Management Center 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



Re: ports upgrade

2002-12-20 Thread Jud
On Fri, 20 Dec 2002 18:11:11 +0200, <[EMAIL PROTECTED]> wrote:


Hello!
If I cvsup'd ports what will I need in order to make my new ports to 
work? I mean I should make a buildworld?
Thanks!

You will often be able to build most or all of your new ports without 
building the world, because cvsup-ing has updated the ports skeletons.  
However, occasionally an updated port will depend on something in your 
system having been updated, so building world would be necessary to avoid 
breakage.  Therefore, unless building the world would be a problem (takes 
too long, don't want to take the machine offline, etc.), doing so avoids 
any potential difficulty.

--
Jud

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message


Re: ports upgrade

2002-12-20 Thread Ying-Chieh Liao
On Fri, Dec 20, 2002 at 18:11:11 +0200, [EMAIL PROTECTED] wrote:
> Hello!
> If I cvsup'd ports what will I need in order to make my new ports to work? I mean I 
>should make a buildworld?

no you wont

just installs portupgrade (ports/sysutils/portupgrade), and then run
portupgrade -R your_port_name
-- 
char*p="char*p=%c%s%c;main(){printf(p,34,p,34);}";main(){printf(p,34,p,34);}
-- Anonymous



msg12690/pgp0.pgp
Description: PGP signature


ports upgrade

2002-12-20 Thread iuliand
Hello!
If I cvsup'd ports what will I need in order to make my new ports to work? I mean I 
should make a buildworld?
Thanks!

-- 
Iulian
ROMTELECOM. O&M Network. IN Management Center 

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message



ports upgrade?

2002-10-22 Thread Omer Faruk Sen

First I am sorry if here is not the right place to ask it. I am trying to 
update a port but I am having a problem. I am in fact having problems while 
patch'ing my old port. Here is what I have done. 

#cp -r category/ports category/ports.old
#cd category/ports

#cd /usr/ports/category
#diff -ruN ports.old ports >patch 

I have 2 questions here.
1)I have to remove a directory from my port. How can I do that? I have rm 
-fr /usr/ports/category/ports/files but it didn't work since patch didn't 
remove that directory. 

2)After patching ports with `patch < patch' i see files with *.orig but I 
think they shouldn't be there. 

I have read the porters' handbook of course. But I think there can be a 
ports' upgraders :) section too in that guide. 

REGARDS

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-questions" in the body of the message