cvs commit: src/usr.bin/login login.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 12:44:04 UTC FreeBSD src repository Modified files: usr.bin/loginlogin.c Log: Prepare for upcoming POSIXed putenv() rewrite: don't free memory after putenv() Revision ChangesPath 1.103 +1 -1 src/usr.bin/login/login.c _

cvs commit: src/usr.bin/su su.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 12:51:02 UTC FreeBSD src repository Modified files: usr.bin/su su.c Log: Prepare for upcoming POSIXed putenv() rewrite: don't free memory after putenv() Revision ChangesPath 1.84 +3 -2 src/usr.bin/su/su.c __

cvs commit: src/usr.bin/login login.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 12:54:02 UTC FreeBSD src repository Modified files: usr.bin/loginlogin.c Log: Slightly tune previous fix: free memory if !export Revision ChangesPath 1.104 +2 -2 src/usr.bin/login/login.c

cvs commit: src/usr.sbin/sade variable.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 13:03:35 UTC FreeBSD src repository Modified files: usr.sbin/sadevariable.c Log: Prepare for upcoming POSIXed putenv() rewrite: don't allow putenv() arg be on the stack, use strdup() Revision ChangesPath 1.40 +1 -1 src/usr.sbin/s

cvs commit: src/usr.sbin/sysinstall variable.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 13:07:34 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall variable.c Log: Prepare for upcoming POSIXed putenv() rewrite: don't allow putenv() arg be on the stack, use strdup() Revision ChangesPath 1.38 +1 -1 src/usr.sbin/s

cvs commit: src/bin/sh var.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 15:01:34 UTC FreeBSD src repository Modified files: bin/sh var.c Log: Simplify previous fix and disallow VTEXTFIXED direct pass for putenv() too, just use savestr() Revision ChangesPath 1.34 +3 -3 src/bin/sh/var.c _

cvs commit: src/usr.sbin/sade main.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 15:10:53 UTC FreeBSD src repository Modified files: usr.sbin/sademain.c Log: Preparing for upcoming POSIXed putenv() rewrite: don't allow const as putenv() arg, dup it Revision ChangesPath 1.78 +1 -1 src/usr.sbin/sade/main.c

cvs commit: src/usr.sbin/pstat pstat.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 15:14:24 UTC FreeBSD src repository Modified files: usr.sbin/pstat pstat.c Log: Preparing for upcoming POSIXed putenv() rewrite: don't allow const as putenv() arg, dup it Revision ChangesPath 1.100 +3 -3 src/usr.sbin/pstat/pstat.c _

cvs commit: src/usr.sbin/sysinstall main.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 15:16:19 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall main.c Log: Preparing for upcoming POSIXed putenv() rewrite: don't allow const as putenv() arg, dup it Revision ChangesPath 1.75 +1 -1 src/usr.sbin/sysinstall/main.

cvs commit: src/lib/libc/stdlib getenv.3 getenv.c putenv.c setenv.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 16:56:18 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.3 getenv.c putenv.c setenv.c Log: Make putenv() fully conforms to Open Group specs Issue 6 (also IEEE Std 1003.1-2001) The specs explicitly says that altering passed string

cvs commit: src/lib/libc/stdlib getenv.3

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 18:01:51 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.3 Log: Add phrase "so altering the argument shall change the environment." into putenv description. Revision ChangesPath 1.24 +2 -1 src/lib/libc/stdlib/get

cvs commit: src/usr.bin/env env.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 19:25:00 UTC FreeBSD src repository Modified files: usr.bin/env env.c Log: env calls setenv("name=value", "value", 1); which violates POSIX: "The setenv( ) function shall fail if: [EINVAL] The name argument is a null pointer, points to an empty str

cvs commit: src/lib/libc/stdlib getenv.3

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 19:37:10 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.3 Log: Bump .Dd Suggested by: Henrik Brix Andersen <[EMAIL PROTECTED]> Revision ChangesPath 1.25 +1 -1 src/lib/libc/stdlib/getenv.3 __

cvs commit: src/usr.bin/limits limits.c

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 20:10:11 UTC FreeBSD src repository Modified files: usr.bin/limits limits.c Log: limits calls setenv("name=value", "value", 1); which violates POSIX: "The setenv( ) function shall fail if: [EINVAL] The name argument is a null pointer, points to an emp

cvs commit: src/sys/sys param.h

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 21:14:53 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version after making setenv(), putenv(), getenv() and unsetenv() POSIXed Revision ChangesPath 1.292 +1 -1 src/sys/sys/param.h ___

cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml

2007-04-30 Thread Andrey A. Chernov
ache2007-04-30 21:24:36 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Document version bump related to ...env(3) functions Revision ChangesPath 1.827 +5 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.

cvs commit: src/lib/libc/stdlib getenv.3 getenv.c putenv.c setenv.c src/sys/sys param.h src/usr.bin/limits limits.c src/usr.bin/env env.c src/usr.sbin/sysinstall main.c variable.c src/usr.sbin/pstat p

2007-05-01 Thread Andrey A. Chernov
ache2007-05-01 16:02:44 UTC FreeBSD src repository Modified files: lib/libc/stdlib getenv.3 getenv.c putenv.c setenv.c sys/sys param.h usr.bin/limits limits.c usr.bin/env env.c usr.sbin/sysinstall main.c variable.c usr.sbi

cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml

2007-05-01 Thread Andrey A. Chernov
ache2007-05-01 16:04:31 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Back out all POSIXified *env() changes. Not because I admit they are technically wrong and not because of bug reports (I receive nothing). But becau

cvs commit: src/sys/sys param.h

2007-05-01 Thread Andrey A. Chernov
ache2007-05-01 19:03:42 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump FreeBSD_version to not have it going backwards. Asked by: Ceri Davies <[EMAIL PROTECTED]> Revision ChangesPath 1.294 +1 -1 src/sys/sys/par

cvs commit: src/share/mklocale ja_JP.eucJP.src

2007-05-09 Thread Andrey A. Chernov
ache2007-05-09 21:34:51 UTC FreeBSD src repository Modified files: share/mklocale ja_JP.eucJP.src Log: Use dummy definitions for codeset 3 and 4 like in ko_KR.eucKR.src PR: 51085 Submitted by: Yamazaki Atsushi <[EMAIL PROTECTED]> Revision Chan

cvs commit: ports/graphics/png Makefile distinfo ports/graphics/png/files patch-aa patch-ab patch-ad patch-ae

2007-05-21 Thread Andrey A. Chernov
ache2007-05-21 11:21:09 UTC FreeBSD ports repository Modified files: graphics/png Makefile distinfo graphics/png/files patch-aa patch-ab patch-ad Added files: graphics/png/files patch-ae Log: Update to 1.2.18 PR: 112725 Submitted by:

cvs commit: ports/www/lynx-current Makefile distinfo pkg-plist ports/www/lynx-current/files patch-aa

2007-05-24 Thread Andrey A. Chernov
ache2007-05-25 02:42:07 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo pkg-plist www/lynx-current/files patch-aa Log: Upgrade to 2.8.7dev.5 Revision ChangesPath 1.175 +10 -13ports/www/lynx-current/Makefile 1.186

cvs commit: ports/www/lynx-current Makefile

2007-05-27 Thread Andrey A. Chernov
ache2007-05-27 22:00:02 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile Log: Use ncursesw only after it was merged in 6.2-STABLE Revision ChangesPath 1.176 +8 -1 ports/www/lynx-current/Makefile __

cvs commit: ports/www/lynx-current Makefile

2007-05-27 Thread Andrey A. Chernov
ache2007-05-27 23:00:50 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile Log: Move OSVERSION check after bsd.port.pre.mk Revision ChangesPath 1.177 +6 -6 ports/www/lynx-current/Makefile ___

cvs commit: ports/archivers/unrar Makefile distinfo

2007-05-31 Thread Andrey A. Chernov
ache2007-05-31 10:52:06 UTC FreeBSD ports repository Modified files: archivers/unrar Makefile distinfo Log: Upgrade to 3.70 Revision ChangesPath 1.53 +2 -2 ports/archivers/unrar/Makefile 1.29 +3 -3 ports/archivers/unrar/distinfo

cvs commit: ports/www/apache13/files patch-ae

2007-05-31 Thread Andrey A. Chernov
ache2007-05-31 11:08:46 UTC FreeBSD ports repository Modified files: www/apache13/files patch-ae Log: Fix build when custom LC_ALL is set PR: 96703 Revision ChangesPath 1.3 +10 -1 ports/www/apache13/files/patch-ae

cvs commit: ports/math/p5-Math-Polynomial-Solve p5-Math-Polynomial-Solve-2.10.tbz

2006-11-02 Thread Andrey A. Chernov
ache2006-11-02 22:36:57 UTC FreeBSD ports repository Removed files: math/p5-Math-Polynomial-Solve p5-Math-Polynomial-Solve-2.10.tbz Log: Remove junk Revision ChangesPath 1.2 +0 -75 ports/math/p5-Math-Polynomial-Solve/p

cvs commit: ports/mail/milter-bogom Makefile distinfo

2006-11-05 Thread Andrey A. Chernov
ache2006-11-05 13:46:44 UTC FreeBSD ports repository Modified files: mail/milter-bogomMakefile distinfo Log: Update to 1.9 PR: 105143 Submitted by: Victor Balada Diaz <[EMAIL PROTECTED]> (maintainer) Revision ChangesPath 1.7 +1 -1

cvs commit: ports/mail/dkim-milter Makefile ports/mail/dkim-milter/files patch-libar-Makefile.m4

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 08:15:08 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile Added files: mail/dkim-milter/files patch-libar-Makefile.m4 Log: 1) change COMMENT resembling to mail/dk-milter 2) rename gentxt as mail/dk-milter installs it in the sa

cvs commit: ports/mail/dk-milter Makefile pkg-install pkg-plist ports/mail/dk-milter/files milter-dk.sh.in

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 20:20:10 UTC FreeBSD ports repository Modified files: mail/dk-milter Makefile pkg-plist mail/dk-milter/files milter-dk.sh.in Removed files: mail/dk-milter pkg-install Log: Install gentxt as gentxt-dk Use "mailnull" as default user Al

cvs commit: ports/mail/dkim-milter pkg-install ports/mail/dkim-milter/files milter-dkim.sh.in

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 20:24:57 UTC FreeBSD ports repository Modified files: mail/dkim-milter/files milter-dkim.sh.in Removed files: mail/dkim-milter pkg-install Log: Use "mailnull" user as default Always chown piddir Submitted by: Hirohisa Yamaguchi <[EMAIL PROTE

cvs commit: ports/mail/dk-milter Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 20:52:14 UTC FreeBSD ports repository Modified files: mail/dk-milter Makefile Log: Remove pkg-install vestiges Revision ChangesPath 1.16 +0 -1 ports/mail/dk-milter/Makefile ___ cvs-all@free

cvs commit: ports/mail/dkim-milter Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 20:53:01 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile Log: Remove pkg-install vestiges Revision ChangesPath 1.11 +0 -1 ports/mail/dkim-milter/Makefile ___ cvs-all@fr

cvs commit: ports/mail/dk-milter Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 21:10:06 UTC FreeBSD ports repository Modified files: mail/dk-milter Makefile Log: Bump PORTREVISION Revision ChangesPath 1.17 +1 -1 ports/mail/dk-milter/Makefile ___ cvs-all@freebsd.org ma

cvs commit: ports/mail/dkim-milter Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-07 21:11:39 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile Log: Bump PORTREVISION Revision ChangesPath 1.12 +1 -1 ports/mail/dkim-milter/Makefile ___ cvs-all@freebsd.org

cvs commit: ports/mail/milter-bogom Makefile ports/mail/milter-bogom/files milter-bogom.sh.in

2006-11-07 Thread Andrey A. Chernov
ache2006-11-08 03:01:06 UTC FreeBSD ports repository Modified files: mail/milter-bogomMakefile mail/milter-bogom/files milter-bogom.sh.in Log: the boot script evaluated milterbogom_flags before reading the configuration from rc.conf, so if you changed things like m

cvs commit: ports/mail/milter-bogom Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-08 03:22:39 UTC FreeBSD ports repository Modified files: mail/milter-bogomMakefile Log: Fix typo in PORTREVISION Revision ChangesPath 1.9 +1 -1 ports/mail/milter-bogom/Makefile ___ cvs-all@free

cvs commit: ports/mail/dkim-milter Makefile

2006-11-07 Thread Andrey A. Chernov
ache2006-11-08 05:37:38 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile Log: Mark WITH_VERIFY_DOMAINKEYS as BROKEN dkim-milter does not verify DomainKeys correctly Submitted by: Hirohisa Yamaguchi <[EMAIL PROTECTED]> (maintainer) Revis

cvs commit: ports/mail/milter-bogom Makefile pkg-deinstall pkg-install ports/mail/milter-bogom/files milter-bogom.sh.in

2006-11-09 Thread Andrey A. Chernov
ache2006-11-09 13:28:33 UTC FreeBSD ports repository Modified files: mail/milter-bogomMakefile mail/milter-bogom/files milter-bogom.sh.in Removed files: mail/milter-bogompkg-deinstall pkg-install Log: Switch to mailnull user as default PR:

cvs commit: ports UIDs

2006-11-09 Thread Andrey A. Chernov
ache2006-11-09 13:32:44 UTC FreeBSD ports repository Modified files: .UIDs Log: Remove bogomilter and dkfilter PR: 105329 Submitted by: Victor Balada Diaz <[EMAIL PROTECTED]> (maintainer) Revision ChangesPath 1.18 +1 -

cvs commit: ports UPDATING

2006-11-09 Thread Andrey A. Chernov
ache2006-11-09 13:37:21 UTC FreeBSD ports repository Modified files: .UPDATING Log: Reflect milter-bogom, dk-milter, dkim-milter default user change PR: 105329 Revision ChangesPath 1.424 +7 -1 ports/UPDATING __

cvs commit: ports UIDs

2006-11-09 Thread Andrey A. Chernov
ache2006-11-09 13:39:25 UTC FreeBSD ports repository Modified files: .UIDs Log: Oops, restore dkfilter, still needed for dkfilter port Revision ChangesPath 1.19 +2 -1 ports/UIDs ___ cvs-all@

cvs commit: ports/www/lynx-current Makefile distinfo

2006-11-10 Thread Andrey A. Chernov
ache2006-11-10 21:38:58 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo Log: Upgrade to 2.8.7dev.2 Revision ChangesPath 1.172 +3 -3 ports/www/lynx-current/Makefile 1.183 +3 -3 ports/www/lynx-current/distinfo

cvs commit: ports/www/lynx-current pkg-plist

2006-11-11 Thread Andrey A. Chernov
ache2006-11-11 20:57:36 UTC FreeBSD ports repository Modified files: www/lynx-current pkg-plist Log: Add missing files Revision ChangesPath 1.46 +2 -0 ports/www/lynx-current/pkg-plist ___ cvs-all@freebsd.or

cvs commit: ports/news/tin Makefile pkg-plist

2006-11-12 Thread Andrey A. Chernov
ache2006-11-12 11:49:16 UTC FreeBSD ports repository Modified files: news/tin Makefile pkg-plist Log: Remove stale mirror Actually use ${PREFIX}/etc/mime.types Use misc/mime-support package Fix manpages PR: 105421 Submitted by: rafan (pa

cvs commit: src/etc/mtree BSD.local.dist

2006-11-12 Thread Andrey A. Chernov
ache2006-11-12 12:02:35 UTC FreeBSD src repository Modified files: etc/mtreeBSD.local.dist Log: Back out 1.120, it was premature. Revision ChangesPath 1.125 +0 -2 src/etc/mtree/BSD.local.dist ___ cvs

cvs commit: ports/www/lynx-current Makefile distinfo

2006-11-14 Thread Andrey A. Chernov
ache2006-11-14 14:24:53 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo Log: Dist re-rolled on master site (compression) Use misc/mime-support package Revision ChangesPath 1.173 +8 -0 ports/www/lynx-current/Makefile

cvs commit: src/lib/libc/stdio freopen.c

2006-11-18 Thread Andrey A. Chernov
ache2006-11-18 21:16:55 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) lib/libc/stdio freopen.c Log: MFC: 1.14-1.17 (position bugfixes) Revision ChangesPath 1.13.8.1 +18 -10src/lib/libc/stdio/freopen.c _

cvs commit: src/lib/libc/gen arc4random.c

2006-11-18 Thread Andrey A. Chernov
ache2006-11-18 21:35:13 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) lib/libc/gen arc4random.c Log: MFC: 1.11 (automatically re-stir) Revision ChangesPath 1.10.8.1 +4 -2 src/lib/libc/gen/arc4random.c __

cvs commit: ports/www/lynx-current Makefile distinfo

2006-11-21 Thread Andrey A. Chernov
ache2006-11-22 01:40:39 UTC FreeBSD ports repository Modified files: www/lynx-current Makefile distinfo Log: Update to 2.8.7dev.4 Revision ChangesPath 1.174 +2 -3 ports/www/lynx-current/Makefile 1.185 +3 -3 ports/www/lynx-current/distinfo _

cvs commit: ports/www/apache13 Makefile ports/www/apache13/files apache.sh

2006-12-09 Thread Andrey A. Chernov
ache2006-12-09 17:34:33 UTC FreeBSD ports repository Modified files: www/apache13 Makefile www/apache13/files apache.sh Log: Replace # REQUIRE: DAEMON # BEFORE: LOGIN with # REQUIRE: LOGIN cleanvar (mysql-first problem) PR: 106429

cvs commit: ports/mail/milter-greylist Makefile

2006-12-09 Thread Andrey A. Chernov
ache2006-12-09 20:17:40 UTC FreeBSD ports repository Modified files: mail/milter-greylist Makefile Log: Reset MAINTAINER - address is no longer available Revision ChangesPath 1.18 +1 -1 ports/mail/milter-greylist/Makefile

cvs commit: ports/mail/milter-greylist-devel Makefile

2006-12-09 Thread Andrey A. Chernov
ache2006-12-09 20:51:15 UTC FreeBSD ports repository Modified files: mail/milter-greylist-devel Makefile Log: Reset MAINTAINER - address is dead Revision ChangesPath 1.5 +1 -1 ports/mail/milter-greylist-devel/Makefile ___

cvs commit: ports/mail/milter-greylist Makefile distinfo pkg-message pkg-plist ports/mail/milter-greylist/files milter-greylist.sh patch-configure patch-greylist.conf

2006-12-09 Thread Andrey A. Chernov
ache2006-12-10 05:10:38 UTC FreeBSD ports repository Modified files: mail/milter-greylist Makefile distinfo pkg-message pkg-plist mail/milter-greylist/files milter-greylist.sh Added files: mail/milter-greylist/files patch-configure patch-greylist.conf Log: Upgrade

cvs commit: ports/mail/milter-greylist Makefile

2006-12-13 Thread Andrey A. Chernov
ache2006-12-13 11:19:21 UTC FreeBSD ports repository Modified files: mail/milter-greylist Makefile Log: Change BUILD_DEPENDS to LIB_DEPENDS for libspf2 Revision ChangesPath 1.22 +1 -1 ports/mail/milter-greylist/Makefile __

cvs commit: ports/mail/dkim-milter pkg-message

2006-12-15 Thread Andrey A. Chernov
ache2006-12-15 16:12:36 UTC FreeBSD ports repository Modified files: mail/dkim-milter pkg-message Log: Remove unneded confMILTER_MACROS_* PR: 106758 Submitted by: Hirohisa Yamaguchi <[EMAIL PROTECTED]> Revision ChangesPath 1.4 +0 -3

cvs commit: src/sys/kern subr_sleepqueue.c

2006-12-16 Thread Andrey A. Chernov
ache2006-12-16 20:33:26 UTC FreeBSD src repository Modified files: sys/kern subr_sleepqueue.c Log: Fix NULL pointer reference for INVARIANTS case Submitted by: Yuriy Tsibizov <[EMAIL PROTECTED]> Revision ChangesPath 1.33 +1 -1 src/sys/

cvs commit: src/sys/kern subr_sleepqueue.c

2006-12-16 Thread Andrey A. Chernov
ache2006-12-16 21:17:27 UTC FreeBSD src repository Modified files: sys/kern subr_sleepqueue.c Log: Don't intermix assignments and variable declarations in prev. commit Revision ChangesPath 1.34 +6 -4 src/sys/kern/subr_sleepqueue.c ___

cvs commit: doc/share/pgpkeys ache.key

2006-12-26 Thread Andrey A. Chernov
ache2006-12-26 18:31:35 UTC FreeBSD doc repository Modified files: share/pgpkeysache.key Log: Change my key Revision ChangesPath 1.7 +126 -78 doc/share/pgpkeys/ache.key ___ cvs-all@freebsd.org mailing lis

cvs commit: src/contrib/libreadline - Imported sources

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:06:35 UTC FreeBSD src repository src/contrib/libreadline - Imported sources Update of /home/ncvs/src/contrib/libreadline In directory repoman.freebsd.org:/tmp/cvs-serv3866 Log Message: Virgin import of GNU Readline 5.2 Status: Vendor Tag: FSF

cvs commit: src/contrib/libreadline FREEBSD-upgrade

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:10:49 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/libreadline FREEBSD-upgrade Log: Remove non-FSF file Revision ChangesPath 1.1.1.2 +0 -9 src/contrib/libreadline/FREEBSD-upgrade (dead) _

cvs commit: src/contrib/libreadline FREEBSD-upgrade

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:12:19 UTC FreeBSD src repository Modified files: contrib/libreadline FREEBSD-upgrade Log: Update instructions Revision ChangesPath 1.8 +2 -4 src/contrib/libreadline/FREEBSD-upgrade ___ cvs-a

cvs commit: src/contrib/libreadline complete.c display.c readline.h rlconf.h terminal.c vi_mode.c src/contrib/libreadline/doc readline.3

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:22:31 UTC FreeBSD src repository Modified files: contrib/libreadline complete.c display.c readline.h rlconf.h terminal.c vi_mode.c contrib/libreadline/doc readline.3 Log: Merge conflicts Revision ChangesPath 1.13

cvs commit: src/gnu/lib/libreadline config.h

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:26:00 UTC FreeBSD src repository Modified files: gnu/lib/libreadline config.h Log: Update config Revision ChangesPath 1.9 +33 -3 src/gnu/lib/libreadline/config.h ___ cvs-all@freebsd.org maili

cvs commit: src/gnu/lib/libreadline Makefile.inc

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:27:16 UTC FreeBSD src repository Modified files: gnu/lib/libreadline Makefile.inc Log: Change RL_LIBRARY_VERSION Revision ChangesPath 1.14 +1 -1 src/gnu/lib/libreadline/Makefile.inc ___ cvs-a

cvs commit: src/contrib/libreadline - Imported sources

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:45:19 UTC FreeBSD src repository src/contrib/libreadline - Imported sources Update of /home/ncvs/src/contrib/libreadline In directory repoman.freebsd.org:/tmp/cvs-serv10766 Log Message: Official patch 001 Status: Vendor Tag: FSF Release Tags:

cvs commit: src/contrib/libreadline display.c

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:47:34 UTC FreeBSD src repository Modified files: contrib/libreadline display.c Log: Merge conflict after official patch Revision ChangesPath 1.12 +2 -0 src/contrib/libreadline/display.c ___ c

cvs commit: src/contrib/libreadline FREEBSD-upgrade

2006-12-31 Thread Andrey A. Chernov
ache2006-12-31 09:50:45 UTC FreeBSD src repository Modified files: contrib/libreadline FREEBSD-upgrade Log: Udate info after official patch Revision ChangesPath 1.9 +2 -0 src/contrib/libreadline/FREEBSD-upgrade _

cvs commit: ports/graphics/png Makefile distinfo ports/graphics/png/files patch-ab

2007-01-04 Thread Andrey A. Chernov
ache2007-01-04 19:51:58 UTC FreeBSD ports repository Modified files: graphics/png Makefile distinfo graphics/png/files patch-ab Log: Upgrade to 1.2.14 Revision ChangesPath 1.79 +1 -2 ports/graphics/png/Makefile 1.33 +3 -3 ports

cvs commit: ports/print/ghostscript-afpl Makefile pkg-plist

2007-02-06 Thread Andrey A. Chernov
ache2007-02-07 03:26:47 UTC FreeBSD ports repository Modified files: print/ghostscript-afpl Makefile pkg-plist Log: Make libgs useful (at least for ImageMagick) by installing its API headers. Revision ChangesPath 1.144 +10 -0 ports/print/ghostscript-afpl

cvs commit: ports/archivers/unrar Makefile distinfo

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 17:09:52 UTC FreeBSD ports repository Modified files: archivers/unrar Makefile distinfo Log: Upgrade to 3.70 beta 3 Revision ChangesPath 1.47 +2 -2 ports/archivers/unrar/Makefile 1.26 +3 -3 ports/archivers/unrar/distinfo _

cvs commit: ports/archivers/unrar Makefile

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 17:18:32 UTC FreeBSD ports repository Modified files: archivers/unrar Makefile Log: Add CONFLICTS with zh-unrar-* Revision ChangesPath 1.48 +1 -0 ports/archivers/unrar/Makefile ___ cvs-all@f

cvs commit: ports/chinese/unrar Makefile

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 17:20:41 UTC FreeBSD ports repository Modified files: chinese/unrarMakefile Log: Add CONFLICTS with unrar-* Revision ChangesPath 1.6 +2 -0 ports/chinese/unrar/Makefile ___ cvs-all@freebs

cvs commit: ports/archivers/unrar Makefile

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 18:25:05 UTC FreeBSD ports repository Modified files: archivers/unrar Makefile Log: Forced commit to indicate PR PR: 108933 Submitted by: Michael Neumann<[EMAIL PROTECTED]> Revision ChangesPath 1.49 +0 -0 ports/ar

cvs commit: ports/chinese/unrar Makefile

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 18:25:54 UTC FreeBSD ports repository Modified files: chinese/unrarMakefile Log: Forced commit to indicate PR PR: 108933 Submitted by: Michael Neumann<[EMAIL PROTECTED]> Revision ChangesPath 1.7 +0 -0 ports/ch

cvs commit: ports/archivers/unzip Makefile

2007-02-08 Thread Andrey A. Chernov
ache2007-02-08 18:35:01 UTC FreeBSD ports repository Modified files: archivers/unzip Makefile Log: Make it work with files >2Gb in archives PR: 108799 Submitted by: "George L. Yermulnik" <[EMAIL PROTECTED]> Revision ChangesPath 1.56

cvs commit: ports/news/tin Makefile distinfo

2007-02-10 Thread Andrey A. Chernov
ache2007-02-10 19:00:25 UTC FreeBSD ports repository Modified files: news/tin Makefile distinfo Log: Update to 1.8.3 PR: 108995 Submitted by: Li-Wen Hsu <[EMAIL PROTECTED]> Revision ChangesPath 1.138 +14 -11ports/news/tin/M

cvs commit: ports/news/tin Makefile pkg-plist

2007-02-12 Thread Andrey A. Chernov
ache2007-02-12 18:28:37 UTC FreeBSD ports repository Modified files: news/tin Makefile pkg-plist Log: Rename url_handler.sh to tinurl_handler.sh to avoid conflict with urlview port. PR: 109090 Revision ChangesPath 1.139 +12 -5

cvs commit: ports/graphics/ImageMagick Makefile

2007-02-22 Thread Andrey A. Chernov
ache2007-02-23 03:48:44 UTC FreeBSD ports repository Modified files: graphics/ImageMagick Makefile Log: Turn gslib support into option. IM can work with gs with or without it. Switch to gs-afpl as default one checked. IM needs newer gs for some operations and gs-gnu is

cvs commit: src/share/monetdef ru_RU.CP1251.src ru_RU.CP866.src ru_RU.ISO8859-5.src ru_RU.KOI8-R.src ru_RU.UTF-8.src

2007-02-28 Thread Andrey A. Chernov
ache2007-02-28 16:28:49 UTC FreeBSD src repository Modified files: share/monetdef ru_RU.CP1251.src ru_RU.CP866.src ru_RU.ISO8859-5.src ru_RU.KOI8-R.src ru_RU.UTF-8.src Log: International code for Russian Ruble is chang

cvs commit: src/share/monetdef ru_RU.CP1251.src ru_RU.CP866.src ru_RU.ISO8859-5.src ru_RU.KOI8-R.src ru_RU.UTF-8.src

2007-02-28 Thread Andrey A. Chernov
ache2007-02-28 19:00:38 UTC FreeBSD src repository Modified files:(Branch: RELENG_6) share/monetdef ru_RU.CP1251.src ru_RU.CP866.src ru_RU.ISO8859-5.src ru_RU.KOI8-R.src ru_RU.UTF-8.src Log: MFC: RUR->RUB

cvs commit: ports/news/tin Makefile

2007-02-28 Thread Andrey A. Chernov
ache2007-03-01 07:57:35 UTC FreeBSD ports repository Modified files: news/tin Makefile Log: Add WITH_TIN_SCREEN knob PR: 109604 Submitted by: leeym Revision ChangesPath 1.140 +2 -1 ports/news/tin/Makefile _

cvs commit: ports/graphics/png Makefile distinfo ports/graphics/png/files patch-ab

2007-12-11 Thread Andrey A. Chernov
ache2007-12-11 19:37:20 UTC FreeBSD ports repository Modified files: graphics/png Makefile distinfo graphics/png/files patch-ab Log: Update to 1.2.23 Revision ChangesPath 1.83 +1 -1 ports/graphics/png/Makefile 1.37 +3 -3 ports/

cvs commit: src/lib/libc/stdlib rand.c

2007-12-11 Thread Andrey A. Chernov
ache2007-12-11 20:39:32 UTC FreeBSD src repository Modified files: lib/libc/stdlib rand.c Log: Fix typo in the comment Revision ChangesPath 1.17 +1 -1 src/lib/libc/stdlib/rand.c ___ cvs-all@freebsd.org mai

cvs commit: ports/mail/dkim-milter Makefile ports/mail/dkim-milter/files patch-dkim-filter__Makefile.m4 site.config.m4

2007-12-16 Thread Andrey A. Chernov
ache2007-12-16 19:55:07 UTC FreeBSD ports repository Modified files: mail/dkim-milter Makefile mail/dkim-milter/files site.config.m4 Added files: mail/dkim-milter/files patch-dkim-filter__Makefile.m4 Log: There are some executables installed with dkim-filter,

cvs commit: ports/graphics/png Makefile pkg-plist

2007-12-20 Thread Andrey A. Chernov
ache2007-12-20 21:11:41 UTC FreeBSD ports repository Modified files: graphics/png Makefile pkg-plist Log: Install libpng.pc as symlink to libpng12.pc, some ports search it. Submitted by: Tim Bishop <[EMAIL PROTECTED]> (partially) Revision ChangesPath

cvs commit: src/share/colldef Makefile map.ISO8859-9 tr_TR.ISO8859-9.src

2007-12-24 Thread Andrey A. Chernov
ache2007-12-24 10:30:09 UTC FreeBSD src repository Modified files: share/colldefMakefile Added files: share/colldefmap.ISO8859-9 tr_TR.ISO8859-9.src Log: Add Turkish collate PR: 118976 Submitted by: Ismail YENIGUL <[EMAIL PROTECTED]

cvs commit: src/share/mklocale Makefile tr_TR.ISO8859-9.src

2007-12-25 Thread Andrey A. Chernov
ache2007-12-25 20:30:36 UTC FreeBSD src repository Modified files: share/mklocale Makefile Added files: share/mklocale tr_TR.ISO8859-9.src Log: Implement Turkish locale Submitted by: Ismail YENIGUL <[EMAIL PROTECTED]> Revision ChangesPath

cvs commit: src/share/timedef tr_TR.ISO8859-9.src

2007-12-25 Thread Andrey A. Chernov
ache2007-12-25 21:19:09 UTC FreeBSD src repository Modified files: share/timedeftr_TR.ISO8859-9.src Log: Just copy long months names to (alternative). Alternative means another form and not ASCIIsizing of month names. Revision ChangesPath 1.5 +7 -7

cvs commit: src/share/colldef README

2007-12-25 Thread Andrey A. Chernov
ache2007-12-25 21:21:26 UTC FreeBSD src repository Modified files: share/colldefREADME Log: Add reference to mnemonic char names Revision ChangesPath 1.3 +1 -0 src/share/colldef/README ___ cvs-all@free

cvs commit: src/share/timedef tr_TR.UTF-8.src

2007-12-25 Thread Andrey A. Chernov
ache2007-12-25 21:24:18 UTC FreeBSD src repository Modified files: share/timedeftr_TR.UTF-8.src Log: Just copy long months names to alternative. Alternative does not means ASCIIsizing of months names. Revision ChangesPath 1.2 +6 -6 src/share/t

cvs commit: src/share/timedef am_ET.UTF-8.src be_BY.CP1131.src be_BY.CP1251.src be_BY.ISO8859-5.src be_BY.UTF-8.src bg_BG.CP1251.src bg_BG.UTF-8.src ca_ES.ISO8859-1.src ca_ES.UTF-8.src cs_CZ.ISO8859-2

2007-12-29 Thread Andrey A. Chernov
ache2007-12-29 16:28:17 UTC FreeBSD src repository Modified files: share/timedefam_ET.UTF-8.src be_BY.CP1131.src be_BY.CP1251.src be_BY.ISO8859-5.src be_BY.UTF-8.src bg_BG.CP1251.src bg_BG.UTF-8.

cvs commit: ports/www/ljpms Makefile distinfo ports/www/ljpms/files patch-ljpms.pl

2007-12-29 Thread Andrey A. Chernov
ache2007-12-29 18:01:27 UTC FreeBSD ports repository Modified files: www/ljpmsMakefile distinfo www/ljpms/files patch-ljpms.pl Log: Update to 1.4 Revision ChangesPath 1.7 +3 -4 ports/www/ljpms/Makefile 1.4 +3 -3 ports/

cvs commit: ports/www/ljsm Makefile distinfo

2007-12-29 Thread Andrey A. Chernov
ache2007-12-29 18:16:27 UTC FreeBSD ports repository Modified files: www/ljsm Makefile distinfo Log: Upgrade to 2.9 Revision ChangesPath 1.11 +2 -3 ports/www/ljsm/Makefile 1.4 +3 -3 ports/www/ljsm/distinfo ___

cvs commit: ports/www/ljpms Makefile

2007-12-29 Thread Andrey A. Chernov
ache2007-12-29 18:17:43 UTC FreeBSD ports repository Modified files: www/ljpmsMakefile Log: Use EXTRACT_SUFX Revision ChangesPath 1.8 +1 -1 ports/www/ljpms/Makefile ___ cvs-all@freebsd.org mailing

cvs commit: src/share/timedef am_ET.UTF-8.src be_BY.CP1131.src be_BY.CP1251.src be_BY.ISO8859-5.src be_BY.UTF-8.src bg_BG.CP1251.src bg_BG.UTF-8.src ca_ES.ISO8859-1.src ca_ES.UTF-8.src cs_CZ.ISO8859-2

2007-12-29 Thread Andrey A. Chernov
ache2007-12-30 03:08:54 UTC FreeBSD src repository Modified files: share/timedefam_ET.UTF-8.src be_BY.CP1131.src be_BY.CP1251.src be_BY.ISO8859-5.src be_BY.UTF-8.src bg_BG.CP1251.src bg_BG.UTF-8.

cvs commit: ports/www/apache13 Makefile distinfo

2008-01-20 Thread Andrey A. Chernov
ache2008-01-21 03:39:57 UTC FreeBSD ports repository Modified files: www/apache13 Makefile distinfo Log: Upgrade to 1.3.41 Revision ChangesPath 1.182 +2 -3 ports/www/apache13/Makefile 1.62 +3 -3 ports/www/apache13/distinfo

cvs commit: src/lib/libc/locale Makefile.inc ascii.c mblocal.h setrunelocale.c

2008-01-21 Thread Andrey A. Chernov
ache2008-01-21 23:48:13 UTC FreeBSD src repository Modified files: lib/libc/locale Makefile.inc mblocal.h setrunelocale.c Added files: lib/libc/locale ascii.c Log: Introduce new encoding: "ASCII" It differs from default C/POSIX "NONE" mainly by stricter 8bi

cvs commit: src/usr.bin/mklocale mklocale.1 yacc.y

2008-01-21 Thread Andrey A. Chernov
ache2008-01-22 00:04:52 UTC FreeBSD src repository Modified files: usr.bin/mklocale mklocale.1 yacc.y Log: Understand newly introduced "ASCII" encoding Revision ChangesPath 1.28 +2 -0 src/usr.bin/mklocale/mklocale.1 1.28 +1 -0 src/usr.bin

cvs commit: src Makefile.inc1

2008-01-22 Thread Andrey A. Chernov
ache2008-01-23 00:16:37 UTC FreeBSD src repository Modified files: .Makefile.inc1 Log: Conditionally add mklocale to bootstrap-tools Revision ChangesPath 1.595 +5 -0 src/Makefile.inc1 ___ cvs

<    1   2   3   4   5   6   >