summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-03-04initial import of libelf-0.8.5recht5-0/+55
provided by Andrey Petrov in PR 24658 Libelf - ELF object file access library.
2004-03-04bl3ifyrecht2-2/+22
Patch provided by Michal Pasternak in PR 24664 (with fixes by me).
2004-03-04pycurl needs Python 2.2 or later - so remove 2.1 from the list.recht1-2/+2
While at it make 2.3 the default version. spotted by kristerw@'s bulk build
2004-03-04Make ocalm build with tk-8.4.minskim3-1/+37
2004-03-04Note update of priv ppriv to version 1.0-beta2.simonb1-1/+2
Changes from previous version are: + Avoid null-pointer dereference if getpwuid(getuid()) fails. + Fix a single byte buffer overflow. Can only be a NUL byte that overflows, not believed (at this stage!) to be exploitable in any way.
2004-03-04Update to priv-1.0-beta2.simonb3-25/+8
Changes from previous version are: + Fix a single byte buffer overflow. Can only be a NUL byte that overflows, not believed (at this stage!) to be exploitable in any way. + Avoid null-pointer dereference if getpwuid(getuid()) fails.
2004-03-03Note update of sylpheed-gtk2 to 0.9.9.minskim1-1/+2
2004-03-03Update to 0.9.9.minskim3-7/+8
Changes: * Word wrapping on multibyte locales has been improved. * The receive menu has been improved. * The combo button for toolbar has been implemented. * The download feature for IMAP / News folders has been implemented. * URL is now shown on the toolbar when links are clicked, and put warning in case of fake URL. * JIS X 0201 Kana (hankaku kana) will be converted into JIS X 0208 when sending. * Crashes on 64-bit environments has been fixed. * Other bugfixes have been made.
2004-03-03"alot" is not a word.snj1-1/+1
2004-03-03Note update of xchm to 0.9.minskim1-1/+2
2004-03-03Update to 0.9.minskim3-6/+10
Changes: - added i18n support. - added Romanian and French translations of xCHM's interface. - no more warnings on wxWidgets 2.5.1 compilations.
2004-03-03Add explicit dependency on pkgconfig.minskim1-1/+2
2004-03-03Update bvi from 1.3.0 to 1.3.2. Remove from TODO and make note in CHANGES.ben5-13/+14
Changes include: * bug and portability fixes * -c option in bmore (clear before displaying) * -n num option in bmore (display the indicated number of lines in each screenful * -w num option in bmore (display the indicated number of bytes in each line) * autoconf 2.52 * bmore: nicer last line
2004-03-03Delete lynx-current because the lynx package has now caught up to it.ben9-290/+3
Make a note in CHANGES.
2004-03-03Fix Chinese PO file.ben2-5/+8
2004-03-03Update to milter-regex-1.2.manu4-7/+8
It now supports boolean expressions and macros, and drops privileges when run as root
2004-03-03Note chat/silc-server update.salo2-2/+2
2004-03-03Update to version 0.9.18.salo2-7/+7
Changes: 0.9.18: ======= Upgrade release because of couple serious bugs in the 0.9.17. Especially backup router had stability problems with 0.9.17. This was due to a rekey bug when performing rekey with PFS, and because of another bug it caused the backup (and other servers too) to crash. If you are running a normal server or backup router then ugprading is strongly recommended. If you are running any kind of server with PFS enabled in rekey, upgrading is recommended. - Fixed protocol completion handling in connection closing. - Fixed rekey with PFS to work on backup with disabled connections. - Fixed CMODE command reply to return the user limit correctly. - Fixed the watch notify to be called for resuming clients. 0.9.17: ======= - Implemented the user limit to the CMODE_CHANGE notify and to the CMODE and JOIN command replies, as defined in the new protocol specs. - Implemented the public key support to WATCH command, as defined in the new protocol specs. - Added asynchronous connecting to remote router/server. - Fixed the WHOIS public key deleting. - Several other bugfixes were also made.
2004-03-03The security component needs libfreebl_hybrid_3.so on SunOS/sparc, sobouyer2-2/+4
add it to PLIST so that moz-install will copy it (the mozilla packages are correct). It seems that firefox dosn't need libfreebl_pure32_3.so to use SSL, so I didn't add it to the PLIST.
2004-03-03err remove shift from -v in getopt case.xtraeme1-3/+2
2004-03-03note update of py-ZODB to 3.2.1recht1-2/+3
add missing "Updated" for mklivecd
2004-03-03update to 3.2.1recht3-113/+120
provided by Michal Pasternak in PR 24657 What's new in ZODB3 3.2.1? ========================== Release-date: 12-Feb-2004 The storage comparison matrix (Doc/storages.html) was updated. It now has current information about Adaptable Persistence (Ape): http://hathaway.freezope.org/Software/Ape. What's new in ZODB3 3.2.1 release candidate 1? ============================================== Release-date: 20-Jan-2004 FileStorage ----------- Fixed a serious bug in the new pack implementation. If pack was called on the storage and passed a time earlier than a previous pack time, data could be lost. In other words, if there are any two pack calls, where the time argument passed to the second call was earlier than the first call, data loss could occur. The bug was fixed by causing the second call to raise a StorageError before performing any work. ZEO --- Fixed a bug in the ZEO authentication implementation that could cause a properly authenticated connection to fail unexpectedly with a ValueError -- "Received message without HMAC." Fixed a bug in the ZEO server's getInvalidations() method. If it had the requested invalidations, it would send all the invalidations in its queue rather than just the requested ones. This didn't affect correctness of the cache, but did cause it to throw out valid data. Fixed a bug that prevented the -m / --monitor argument from working. Fixed and enhanced the zeopasswd.py script. It now runs as a script and supports command-line arguments for all the options that can be specified in the configuration file. What's new in ZODB3 3.2.1 beta 1 ================================ Release-date: 18-Nov-2003 This code in this release should be identical to the code in Zope 2.7.0 beta 3. Changed the ZEO server and control process to work with a single configuration file; this is now the default way to configure these processes. (It's still possible to use separate configuration files.) The ZEO configuration file can now include a "runner" section used by the control process and ignored by the ZEO server process itself. If present, the control process can use the same configuration file. Fixed a performance problem in the logging code for the ZEO protocol. The logging code could call repr() on arbitrarily long lists, even though it only logged the first 60 bytes; worse, it calls repr() even if logging is currently disabled. Fixed to call repr() on individual elements until the limit is reached. ReadConflictErrors have an experimental new method, ignore(). If a database connection raises a read conflict, the current transaction was eventually be aborted. If the ignore() method is called, it will allow a transaction to commit after receiving a read conflict. This method should be used with great care, because ignoring read conflicts may allow inconsistent data to be written to the database. Several bare string exceptions were changed to raise exception objects. All these exceptions were in fairly obscure parts of the code. Bug fix for Acquisition in ExtensionClass. Zope Collector #1056: aq_acquire() ignored the default argument. The zdaemon.Daemon module was removed, because it is no longer used by zdaemon. The ZEO test suite is more robust. A variety of small changes were made that make it less likely to fail on slow or loaded machines.
2004-03-03Update mklivecd to 0.3.xtraeme4-41/+102
o Added a new flag (-v) to show more informational messages. o Don't try to mount/umount pkgsrc directory every time the `chroot' target is invoked. o Added a new option to the config file: `CDRECORD_ARGS'.
2004-03-03Note update of gnet to 2.0.5.minskim2-2/+2
2004-03-03Update gnet to 2.0.5.minskim3-7/+7
Changes: * Many Win32 fixes * Desciptor leak fixed in TCP sockets * GConn 100% CPU bug fix * Bug fix for URIs with high Latin-1 characters * IPv6 fix for inetaddr_get_canonical_name() * New echoserver-partyline example * Miscellaneous clean-ups
2004-03-03Not used any more.minskim1-25/+0
2004-03-03+ doclifter-1.8, gnet-2.0.5, gnustep-0.9.2, inform-6.30 [pkg/24631],wiz1-2/+6
jpilot-0.99.7 [pkg/24635], snownews-1.5.0.
2004-03-03+ audacity-1.2.0, dict-client-1.9.11, dict-server-1.9.11minskim1-0/+3
2004-03-03Be more verbose (show each $F) while cleaning ISODIR.keihan1-2/+3
2004-03-03category is 'databases', not 'database'jdolecek1-2/+2
2004-03-03Updated lynx to 2.8.5adam2-2/+2
2004-03-03Changes 2.8.5:adam6-111/+79
* file-upload supported * support for bzip2 compression * performance improved * improved SSL support * improvements to color-style * better interaction with user * improved cookie support
2004-03-03Updated ncurses to 5.4adam2-2/+2
2004-03-03Changes 5.4:adam5-45/+182
* Interface changes * New features and improvements: library, programs * Major bug fixes (See ANNOUNCE for details)
2004-03-03note avrasm update to 1.20dillo1-1/+2
2004-03-03update to 1.20:dillo2-7/+7
Added .align directive
2004-03-03add a todo item for the wxWindows -> wxWidgets rename.grant1-0/+4
2004-03-03Updated t1lib to 5.0.1adam2-2/+3
2004-03-03Changes:adam1-9/+10
* use buildlink3 now * name changed from 1.0.1pl1 to 1.0.1a * bumped revision because of t1lib major version change
2004-03-03Changes 5.0.0:adam6-18/+19
- Forced PostScript target in the doc directory to file. - Subsetting code extended in order to ensure that components of composite characters are also part of the subset. - Hinting meachanism reworked in order to get rid of some rasterizing artifacts. - Experimental support for stroked fonts (PaintType=1) - Experimental support for stroking standard ATM fonts with PaintType=0. - Functions for drawing rectangles. - Bug Fixes Changes 5.0.1: - Support for Flex was not adapted to the changes from 5.0.0. This led to rasterization errors in fonts that use the Flex functionality --> fixed. - Bug Fixes
2004-03-03some updatesdrochner2-3/+5
2004-03-03Updated xpdf to 3.00adam2-3/+2
2004-03-03Changes 3.00:adam10-45/+69
* New PDF rasterizer ("Splash"). * Added support for PDF 1.5. * Replaced pdftopbm with pdftoppm (which can generate PBM, PGM, and PPM files).
2004-03-03Note the following updates:recht1-1/+5
- bittorrent to 3.3nb5 - bittorrent-gui-3.3 - py-soappy to 0.11.3 - py-google to 0.6 Note addition of bittorrent-gui-3.3.
2004-03-03update to 0.6recht7-189/+14
- use tar.gz instead of zip to avoid extra dependency - use new project homepage - enable install of fallback SOAP library 0.6 of 02/24/2004 - support the latest SOAPpy release, fallback to included version if it's not found, or is a version that's known to be buggy. - epydoc API documentation - quite a bit of refactoring - make some functions and classes that SHOULD be private, actually private - formatting cleanup
2004-03-03update to 0.11.3recht2-6/+5
- Bug fixes: - Code in Types.py assumes nested scopes, so I added the proper import so this will work under python 2.2.x - Fixing namespace collision - Fixed handing of named arguments bug introduced in 0.11.1. - Fix memory leak when exceptions are raised. - Fix bug when content-length is not present in parsed SOAP message. - Fix bug #888345: Python 2.3 boolean type serialized as int - Fix bug #875977: no escaping of bad tagnames for NoneTypes - New features: - Improved Globus support and documentation. Thanks Ivan! - Added context handling - Changed the use of SOAPAction, it used to default to setting it to "", now it defaults to setting it to the method (not the nsmethod). There is a clause in Server.py that catches 'old style' SOAPActions (aka "") and sets them to the method. When this is confirmed to be what everyone wants and we decide it's alright to (possibly) break client/server interop, we can take the clause out of Server.py and just handle SOAPActions of "" as a possible error/warning. - Additional test code. - Raise a SOAPException instead of returning a SOAPpy.faultType when a SOAP Fault is encountered and simplify_objects is enabled.
2004-03-03Add and enable bittorrent-gui.recht1-1/+2
2004-03-03wxGTK gui for BitTorrent. (Part of the BitTorrent distribution.)recht2-0/+25
BitTorrent is a tool for distributing files. It's extremely easy to use - downloads are started by clicking on hyperlinks. Whenever more than one person is downloading at once they send pieces of the file(s) to each other, thus relieving the central server's bandwidth burden. Even with many simultaneous downloads, the upload burden on the central server remains quite small, since each new downloader introduces new upload capacity.
2004-03-03Factor out the wxGTK gui in an extra pkg (will be imported next).recht5-19/+44
Add myself as maintainer. Bump PKGREVISION. ok'd by wiz@
2004-03-03Note trac-0.5.2 update.epg1-1/+2