Re: portupgrade fails with quoted options
Sergey Matveychuk wrote: Naram Qashat wrote: When I try to upgrade a port that has quoted options (an example is www/apache22, where I opted to retain the old WITH_MODULES line I had before) in pkgtools.conf, portupgrade fails to quote the option and causes the port to fail to build or even causes portupgrade itself to bomb. Strangely enough, if I use the following script that uses the same tools as portupgrade: require "pkgtools" require "optparse" load_config opts = OptionParser.new opts.order(ARGV) do |arg| make_args = config_make_args(arg) puts "#{arg}:#{make_args}" end It shows the correct options if I run it for www/apache22. I get the following with the above script: www/apache22:WITHOUT_APACHE_OPTIONS=yes WITHOUT_IPV6=yes WITH_MYSQL=yes WITH_BDB=yes WITH_SUEXEC=yes SUEXEC_LOGFILE=/var/log/www/httpd-suexec.log WITH_MODULES="actions alias auth_basic auth_digest authn_dbd authn_dbd authn_default authz_default authz_host authz_user autoindex cgi dav dav_fs dbd deflate dir echo env expires filter headers ident imagemap include info log_config log_forensic logio mime mime_magic negotiation rewrite setenvif ssl status suexec unique_id userdir version vhost_alias" BATCH=yes WITH_OPENSSL=yes WITH_OPENSSL_PORT=yes WITHOUT_X11=yes WITH_BDB_VER=43 WITH_MYSQL_VER=50 But when I use portupgrade itself, I get the following as the make arguments instead: ---> Building '/usr/ports/www/apache22' with make flags: WITHOUT_APACHE_OPTIONS=yes WITHOUT_IPV6=yes WITH_MYSQL=yes WITH_BDB=yes WITH_SUEXEC=yes SUEXEC_LOGFILE=/var/log/www/httpd-suexec.log "WITH_MODULES=\"actions alias auth_basic auth_digest authn_dbd authn_dbd authn_default authz_default authz_host authz_user autoindex cgi dav dav_fs dbd deflate dir echo env expires filter headers ident imagemap include info log_config log_forensic logio mime mime_magic negotiation rewrite setenvif ssl status suexec unique_id userdir version vhost_alias\"" BATCH=yes WITH_OPENSSL=yes WITH_OPENSSL_PORT=yes WITHOUT_X11=yes WITH_BDB_VER=43 WITH_MYSQL_VER=50 Notice how WITH_MODULES has quotes around it and then escaped quotes inside it? It shouldn't be doing things like that. I don't know ruby (I only made that above script from looking at some parts of portupgrade, but I have almost no understanding of ruby), so I can't give a fix for this. You missed lines from pkgtools.conf you use. Please, show them. Here's the www/apache22 and '*' section I have in my pkgtools.conf: '*' => [ 'BATCH=yes', 'WITH_OPENSSL_PORT=yes', 'WITH_OPENSSL=yes', 'WITHOUT_GNOME=esound', 'WITHOUT_CUPS=yes', 'WITH_BDB_VER=46', 'WITH_MYSQL_VER=50', 'WITH_OPTIMIZED_CFLAGS=yes' ], 'www/apache22' => [ 'WITHOUT_APACHE_OPTIONS=yes', 'WITH_PCRE_FROM_PORTS=yes', 'WITH_MYSQL=yes', 'WITH_BDB=yes', 'WITH_SUEXEC=yes', 'SUEXEC_LOGFILE=/var/log/www/httpd-suexec.log', 'WITH_MODULES="actions alias auth_basic auth_digest authn_dbd authn_default authz_default authz_host authz_user autoindex cgi dav dav_fs dav_lock dbd deflate dir echo env expires filter headers ident imagemap include info log_config log_forensic logio mime mime_magic negotiation rewrite setenvif status suexec unique_id userdir version vhost_alias"' ], Naram Qashat ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
RE: The ongoing saga of lsof-4.71.1
Dmitry, Can you make sure a full buildworld/installworld buildkernel/installkernel set has been done? We believe that the problem is due to a mis-match with the installed sources vs. the installed includes. Thanks! -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683E-Mail: [EMAIL PROTECTED] US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dmitry Andrianov Sent: Monday, September 01, 2008 8:18 PM To: freebsd-ports@FreeBSD.org Cc: Hermes Trismegistus Subject: Re: The ongoing saga of lsof-4.71.1 ===> Building for lsof-4.81D,2 (cd lib; make DEBUG="-O2" CFGF="-fno-strict-aliasing -pipe -DHASEFFNLINK=i_effnlink -DHASF_VNODE -DHASCPUMASK_T -DHASSBSTATE -DHAS_KVM_VNODE -DHAS_UFS1_2 -DHAS_NO_SI_UDEV -DHAS_SI_PRIV -DHAS_SYS_SX_H -DHAS_ZFS -DFREEBSDV=7000 -DHASFDESCFS=2 -DHASPSEUDOFS -DHASNULLFS -DHASIPv6 -DHAS_STRFTIME -DLSOF_VSTR=\"7.0-RELEASE-p3\"") cc -fno-strict-aliasing -pipe -DHASEFFNLINK=i_effnlink -DHASF_VNODE -DHASCPUMASK_T -DHASSBSTATE -DHAS_KVM_VNODE -DHAS_UFS1_2 -DHAS_NO_SI_UDEV -DHAS_SI_PRIV -DHAS_SYS_SX_H -DHAS_ZFS -DFREEBSDV=7000 -DHASFDESCFS=2 -DHASPSEUDOFS -DHASNULLFS -DHASIPv6 -DHAS_STRFTIME -DLSOF_VSTR="7.0-RELEASE-p3" -I/usr/src/sys -O2 -c ckkv.c In file included from ckkv.c:33: ../machine.h:62: error: redefinition of typedef 'cpumask_t' /usr/src/sys/sys/types.h:146: error: previous declaration of 'cpumask_t' was here *** Error code 1 Stop in /usr/ports/sysutils/lsof/work/lsof_4.81D.freebsd/lib. *** Error code 1 Stop in /usr/ports/sysutils/lsof/work/lsof_4.81D.freebsd. *** Error code 1 Stop in /usr/ports/sysutils/lsof. -- Dmitry Andianov .masterhost http://masterhost.ru ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]" ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: nVidia driver update today: renders X11 unusable
on 02/09/2008 17:28 O. Hartmann said the following: > Andriy Gapon wrote: >> Question to those having this problem - what kind of nVidia hardware do >> you have? >> Is that something that is based on G80 GPU or later (GeForce 8XXX or >> later)? >> I see that there is already version 2.1.12 of nv driver (in xorg >> repository) that is supposed to fix CPUToScreenColorExpandFill function >> for G80 cards. >> I decided to change mailing list from -stable to -x11 and -ports, because those seem to be more relevant to the issue. > Well, > the problems I have are related to a nv8600GTS based board, this is, as [snip] > How can I selectively 'downgrade' a port? Someone already suggested portupgrade -fPP that would downgrade the port to the latest version available through packages. You can also try ports-mgmt/portdowngrade. But I hope that our port would be upgraded to 2.1.12 promptly and that that upgrade would help you with the problem introduced in 2.1.11. -- Andriy Gapon ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
FreeBSD Port: openbgpd-4.0
Farrokhi, I like to know if there is any change of upgrading openospfd/openbgpd to the latest version? At the moment we're running FreeBSD 6.2 with openospfd on our internal routers. Our external (BGP) routers are running FreeBSD and Quagga. I would like to use the latest version of OpenBGPD (including the looking-glas shell) on our Border routers. Maybe we can support these ports to help getting the ports done. Please let me now how. Regards, -- Peter Spekreijse E: [EMAIL PROTECTED] T: +31-742672764 M: +31-641922460 ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: amd64/104311: ports/wine should be installable on amd64
Synopsis: ports/wine should be installable on amd64 Responsible-Changed-From-To: ports->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Tue Sep 2 22:49:23 UTC 2008 Responsible-Changed-Why: Canonicalize assignment. http://www.freebsd.org/cgi/query-pr.cgi?pr=104311 ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
INDEX build failed for 6.x
INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: nagios-3.0.3 Committers on the hook: beech chinsan cy linimon lippe pgollucci stas Most recent CVS update was: U UPDATING U devel/open-beagle/Makefile U devel/open-beagle/distinfo U devel/open-beagle/pkg-plist U devel/p5-B-Utils/Makefile U devel/p5-B-Utils/distinfo U devel/p5-B-Utils/pkg-plist U editors/texmacs/Makefile U editors/texmacs/distinfo U editors/texmacs/pkg-plist U ftp/smbftpd/Makefile U ftp/smbftpd/distinfo U graphics/evince/Makefile U math/ploticus/Makefile U math/ploticus/distinfo U math/ploticus/pkg-descr U math/ploticus/pkg-plist U math/ploticus/files/patch-README U math/ploticus/files/patch-man-man3-libploticus.3 U math/ploticus/files/patch-man_man1-pl.1 U math/ploticus/files/patch-pltestsuite-README U math/ploticus/files/patch-pltestsuite-run_all_scripts U math/ploticus/files/patch-pltestsuite-run_script_test U math/ploticus/files/patch-src-execline.c U math/ploticus/files/patch-src-pl.c U math/ploticus/files/patch-src-preliminaries.c U net-mgmt/Makefile U net-mgmt/nagios/Makefile U net-mgmt/nagios/distinfo U net-mgmt/nagios/pkg-descr U net-mgmt/nagios/pkg-plist U net-mgmt/nagios/files/nagios.in U net-mgmt/nagios/files/patch-Makefile.in U net-mgmt/nagios/files/patch-base-Makefile.in U net-mgmt/nagios/files/patch-cgi-Makefile.in U net-mgmt/nagios/files/patch-configure.in U net-mgmt/nagios/files/patch-html-Makefile.in U net-mgmt/nagios/files/patch-include-locations.h.in U net-mgmt/nagios/files/patch-sample-config-nagios.cfg.in U net-mgmt/nagios/files/patch-sample-config-template-object-localhost.cfg.in U net-mgmt/nagios/files/patch-sample-config-template-object-templates.cfg.in U net-mgmt/nagios12/Makefile U net-mgmt/nagios12/pkg-plist U net-mgmt/nagios12/files/nagios.in U net-mgmt/nagios12/files/pkg-deinstall.in U net-mgmt/nagios12/files/pkg-install.in U net-mgmt/nagios12/files/pkg-message.in U net-mgmt/nagios2/Makefile U net-mgmt/nagios2/files/nagios.in U security/Makefile U security/fwbuilder/Makefile U security/fwbuilder/distinfo U security/fwbuilder/pkg-plist U security/fwbuilder/files/patch-aa U security/fwbuilder/files/patch-src-gui-ipfAdvancedDialog.cpp U security/fwbuilder/files/patch-src-gui-ipfadvanceddialog_q.ui U security/fwbuilder2/Makefile U security/libfwbuilder/Makefile U security/libfwbuilder/distinfo U security/libfwbuilder/pkg-plist U security/libfwbuilder2/Makefile U www/mod_wsgi/Makefile U www/mod_wsgi/distinfo U www/mod_wsgi/files/patch-mod_wsgi.c U www/mod_wsgi/files/pkg-message.in ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: INDEX build failed for 6.x
Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: nagios-3.0.3 Committers on the hook: beech chinsan cy linimon lippe pgollucci stas d'oh, thats me, I'm looking at it now. -- Philip M. Gollucci ([EMAIL PROTECTED]) o:703.549.2050x206 Senior System Admin - Riderway, Inc. http://riderway.com / http://ridecharge.com 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: portupgrade fails with quoted options
Sergey Matveychuk wrote: Naram Qashat wrote: Notice how WITH_MODULES has quotes around it and then escaped quotes inside it? It shouldn't be doing things like that. I don't know ruby (I only made that above script from looking at some parts of portupgrade, but I have almost no understanding of ruby), so I can't give a fix for this. Try the patch please. (cd /usr/local/lib/ruby/site_ruby/1.8; patch < ~/pkgmisc.rb.diff) Does it fix the problem for you? It seems like it got a little farther, but it still bombed. I'm not sure if the new problems is a problems in portupgrade's ruby scripts or if it's something in the Makefiles themselves: ---> Reinstalling 'apache-2.2.9_3' (www/apache22) ---> Building '/usr/ports/www/apache22' with make flags: BATCH=yes WITH_OPENSSL_PORT=yes WITH_OPENSSL=yes WITHOUT_GNOME=esound WITHOUT_CUPS=yes WITH_BDB_VER=46 WITH_MYSQL_VER=50 WITH_OPTIMIZED_CFLAGS=yes WITHOUT_APACHE_OPTIONS=yes WITH_PCRE_FROM_PORTS=yes WITH_MYSQL=yes WITH_BDB=yes WITH_SUEXEC=yes SUEXEC_LOGFILE=/var/log/www/httpd-suexec.log WITH_MODULES="actions alias auth_basic auth_digest authn_dbd authn_default authz_default authz_host authz_user autoindex cgi dav dav_fs dav_lock dbd deflate dir echo env expires filter headers ident imagemap include info log_config log_forensic logio mime mime_magic negotiation rewrite setenvif status suexec unique_id userdir version vhost_alias" "/usr/ports/Mk/bsd.apache.mk", line 261: Need an operator ** Listing the failed packages (-:ignored / *:skipped / !:failed) ! www/apache22 (apache-2.2.9_3) (clean error) But that does seem to be a step in a right direction. Naram Qashat ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/deskutils/everygui Makefile ports/deskutils/superswitcher Makefile ports/devel/cdk Makefile ports/devel/p5-Cdk Makefile ports/multimedia/gcfilms Makefile ports/security/openvpn-a
Hi, The build which triggered this email is done under tinderbox-2.4.3, on 7-STABLE on amd64, with tinderd_flags="-nullfs -plistcheck -onceonly" and ccache support, with the "official" up-to-date Ports Tree, with the following vars set: NOPORTDOCS=yes, NOPORTEXAMPLES=yes, NOPORTDATA=yes, FORCE_PACKAGE=yes. Excerpt from http://T64.TecNik93.com/logs/7-STABLE-FTP/cdk-5.0.20050424,1.log : building cdk-5.0.20050424,1 in directory /var/tinderbox/7-STABLE-FTP maintained by: [EMAIL PROTECTED] building for: 7.0-STABLE amd64 port directory: /usr/ports/devel/cdk Makefile ident: $FreeBSD: ports/devel/cdk/Makefile,v 1.40 2008/09/03 02:50:56 linimon Exp $ prefixes: LOCALBASE=usr/local X11BASE=usr/local NO* env vars: NOPORTDOCS=yes NOPORTEXAMPLES=yes NOPORTDATA=yes build started at Wed Sep 3 03:24:34 UTC 2008 ... /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/deleteCursesWindow.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/dirName.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/eraseCursesWindow.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/floorCDK.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/freeCharList.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/freeChtypeList.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/char2DisplayType.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/checkForLink.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/chstrncpy.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/chtype2String.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/justifyString.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/mode2Filetype.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/moveCursesWindow.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/popupLabelAttrib.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/selectFile.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/setWidgetDimension.3.gz /usr/local/man/man3/cdk_util.3.gz /usr/local/man/man3/viewInfo.3.gz ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for cdk-5.0.20050424,1 ===> Building package for cdk-5.0.20050424,1 Creating package /tmp/packages/All/cdk-5.0.20050424,1.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/cdk-5.0.20050424,1.tbz' Deleting cdk-5.0.20050424,1 === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 92341214 drwxr-xr-x2 root wheel 512 Sep 3 03:24 usr/local/share/doc/cdk 92341228 -r--r--r--1 root wheel3331 Sep 3 03:24 usr/local/share/doc/cdk/EXPANDING 92341238 -r--r--r--1 root wheel2313 Sep 3 03:24 usr/local/share/doc/cdk/NOTES 92341248 -r--r--r--1 root wheel2420 Sep 3 03:24 usr/local/share/doc/cdk/TODO 9234125 12 -r--r--r--1 root wheel4936 Sep 3 03:24 usr/local/share/doc/cdk/COPYING 92341264 -r--r--r--1 root wheel1994 Sep 3 03:24 usr/local/share/doc/cdk/INSTALL 9234127 16 -r--r--r--1 root wheel7752 Sep 3 03:24 usr/local/share/doc/cdk/README build of /usr/ports/devel/cdk ended at Wed Sep 3 03:25:09 UTC 2008 A description of the testing process can be found here: http://T32.TecNik93.com/FreeBSD/QA-Tindy/testing_process.txt Thanks for your work on making FreeBSD better, -- IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" FreeBSD committer -> [EMAIL PROTECTED], PGP Key ID 057E9F8B493A297B ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: INDEX build failed for 6.x
Philip M. Gollucci wrote: Erwin Lansing wrote: INDEX build failed with errors: Generating INDEX-6 - please wait..pkg_info: not found pkg_info: not found pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: nagios-3.0.3 Committers on the hook: beech chinsan cy linimon lippe pgollucci stas d'oh, thats me, I'm looking at it now. I can commit this after approval, of it someone wants to do it now, please have at it. nagios-devel maintainer and my mentors are CC'ed. [Other port changes are waiting on a major update] CVS Log: - Unbreak INDEX Reported by:erwin Discussed with: kiotsu on #bsdports Approved by:(gabor|araujo) mentor, $ ports/net-mgmt/nagios-devel> cvs diff Index: Makefile === RCS file: /home/ncvs/ports/net-mgmt/nagios-devel/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- Makefile20 Aug 2008 00:57:09 - 1.17 +++ Makefile3 Sep 2008 03:22:27 - @@ -10,6 +10,7 @@ CATEGORIES=net-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=nagios +PKGNAMESUFFIX= -devel MAINTAINER=[EMAIL PROTECTED] COMMENT= Extremely powerful network monitoring system -- Philip M. Gollucci ([EMAIL PROTECTED]) o:703.549.2050x206 Senior System Admin - Riderway, Inc. http://riderway.com / http://ridecharge.com 1024D/DB9B8C1C B90B FBC3 A3A1 C71A 8E70 3F8C 75B8 8FFB DB9B 8C1C Work like you don't need the money, love like you'll never get hurt, and dance like nobody's watching. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
INDEX now builds successfully on 6.x
___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: cvs commit: ports/deskutils/everygui Makefile ports/deskutils/superswitcher MakeRe: file ports/devel/cdk Makefile ports/devel/p5-Cdk Makefile ports/multimedia/gcfilms Makefile ports/security/openv
I'll work on Cdk, this one's easy. Beech -- --- Beech Rintoul - FreeBSD Developer - [EMAIL PROTECTED] /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://people.freebsd.org/~beech X - NO Word docs in e-mail | Skype: akbeech / \ - http://www.FreeBSD.org/releases/7.0R/announce.html --- ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"