summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-09-10EasyPG is a GnuPG interface for Emacs. It has two aspects: convenientgdt4-0/+44
tools which allow to use GnuPG from Emacs (EasyPG Assistant), and a fully functional interface library to GnuPG (EasyPG Library.) It does not cache passphrases, so gpg-agent (security/gnupg-devel) is recommended.
2006-09-09Whitespace cleanups.wiz4-413/+385
2006-09-09Document ALLFILES, reindent a bit.wiz1-293/+297
2006-09-09No whitespace directly after to <para>.wiz1-373/+305
2006-09-09note mailman update (fixes security issues)bouyer1-1/+2
2006-09-09Update to 2.1.9rc1, fixes security issues.bouyer3-8/+116
Security - A malicious user could visit a specially crafted URI and inject an apparent log message into Mailman's error log which might induce an unsuspecting administrator to visit a phishing site. This has been blocked. Thanks to Moritz Naumann for its discovery. - Fixed denial of service attack which can be caused by some standards-breaking RFC 2231 formatted headers. CVE-2006-2941. - Several cross-site scripting issues have been fixed. Thanks to Moritz Naumann for their discovery. CVE-2006-3636 Internationalization - New languages: Arabic, Vietnamese. Bug fixes and other patches - Fixed Decorate.py so that characters in message header/footer which are not in the character set of the list's language are ignored rather than causing shunted messages (1507248). - Switchboard.py - Closed very tiny holes at the upper ends of queue slices that could result in unprocessable queue entries. Improved FIFO processing when two queue entries have the same timestamp.
2006-09-09added support for IRIX 5schwarz1-1/+20
2006-09-09improve support for IRIX 5 working around some bad default settingsschwarz3-8/+44
2006-09-09Corrected dewey pattern for Dragonfly.heinz1-2/+2
2006-09-09Also works on Dragonfly BSD (reported by Thomas Schlesinger onheinz1-1/+2
pkgsrc-users).
2006-09-09Updated ttyrec to 1.0.8.obache2-3/+3
2006-09-09Update ttyrec to 1.0.8, patch based on PR 34426 by Martin Wilke.obache4-14/+18
ChangeLog is unknown.
2006-09-09Updated ald to 0.1.7.obache2-3/+3
2006-09-09Update ald to 0.1.7. Close PR 26552.obache11-168/+12
0.1.7 2004/10/10 - added commands: display, ldisplay, undisplay to dump specified memory locations after each single step (thanks to ziberpunk <ziberpunk =at= ziberghetto dhis org> for the suggestion and code) - all Makefiles are now based on automake in the hopes that this will fix some of the problems integrating ald into the *BSD ports systems - bug fix where a pointer wasn't set to NULL after clearing program arguments with the "set args" command - this is related to the previous feature: if the effective address lies inside a symbol/function, the corresponding symbol is now displayed - for CALL and JMP instructions, exact target/effective addresses are now computed (code for this was contributed by Samuel Falvo II <kc5tja =at= arrl net>) - upgraded all configure scripts to autoconf v2.59 0.1.6 2004/07/23 - 2 bug fixes in "examine" command relating to dumping large numbers of bytes (found by mbe21 <mbe21 =at= o2 pl>) - bug fix where ~/.aldrc was not saved on ^D - minor memory leak fix which would occur in the loading of ~/.aldrc on startup (found by Alfredo Beaumont <ziberpunk =at= ziberghetto dhis org>) - more graceful handling of when the debugged program receives an unknown signal - "examine" command can now take section and symbol names in addition to numerical addresses - fix for libreadline detection in autoconf - ripped out all ncurses related code - minor memory leak fix: During print bursts, users may hit 'q' or ^C to stop the burst. This is implemented via a longjmp() call, but if memory was allocated beforehand, it would not have been freed since longjmp() alters the path of execution. A simple list structure was implemented to fix this. - fixed some issues related to upgrade to autoconf 2.58 - bumped LICENSE up to GPL v2 - "register" command now defaults to compact output format - fixed some minor disassembly bugs - got ald to compile on NetBSD 1.6.2 (many thanks to Brad Spencer for providing me with a NetBSD shell account) 0.1.5p1 2003/10/14 - bandaid to top level Makefile.in to make ald compile in OpenBSD's ports system 0.1.5 2003/10/11 - "file secinfo" command can now output information on a.out sections - added TODO and BUGS files - fixed problems relating to changing values of fpu special purpose registers - added some missing SSE instructions to libDASM - OpenBSD support is back: fixed compile problems relating to fpu code, tested on 3.3 release - bug fixes in disassembling various MMX instructions (thanks to Peter Boettcher for patch) - changed library libDisasm to libDASM (Debugger's Assembler Library) in anticipation of its new capability to assemble instructions - added OSABI information to elf header parsing in libOFF (someone sent me a patch for this ages ago - sorry for taking so long!) - added -DNDEBUG to turn off assert() in out-of-the-box compiles - bug fix in a.out parser: now checks for QMAGIC binaries - "file symbols" command has changed to "file syminfo" and you can now use "file syminfo [symbol name]" to get information for a specific symbol - added libOFF to handle all the object file format stuff 0.1.4 2003/07/09 - libOp has been replaced with the rewritten library libDisasm which has a better overall design - incorporated hp's patch: . "disassemble" command now shows symbol information. Also added "set disasm-show-syms" to toggle this feature on/off. . added ascii output for all size memory dumps . bug fix in elf header parsing - added ~/.aldrc configuration file to save settings - fixed MSB problem when setting register values 0.1.3 2002/06/29 - added "set step-display-mmxregs" option to display mmx registers after single stepping - "lbreak" command now shows the name of the symbol containing each breakpoint, if any 0.1.2 2002/06/14 - added "set step-display-fpregs" option to display fpu registers after single stepping - added "-all" flag to "register" command to output fpu registers - fix for disassembling fld opcodes - fix in elf parser for executables with no section name string table present 0.1.1 2002/04/24 - bug fix in disassembling opcodes with /digit fields - bug fix in setting breakpoints which are close together - bug fix in handling of runtime arguments - new man page 0.1.0 2002/04/13 - added attach/detach commands - added human readable flags register output - minor bugfixes
2006-09-09Updated ltm to 0.39.obache1-1/+2
2006-09-09Update to 0.39.obache3-12/+15
April 4th, 2006 v0.39 -- Jim Wigginton pointed out my Montgomery examples in figures 6.4 and 6.6 were off by one, k should be 9 not 8 -- Bruce Guenter suggested I use --tag=CC for libtool builds where the compiler may think it's C++. -- "mm" from sci.crypt pointed out that my mp_gcd was sub-optimal (I also updated and corrected the book) -- updated some of the @@ tags in tommath.src to reflect source changes. -- updated email and url info in all source files Jan 26th, 2006 v0.38 -- broken makefile.shared fixed -- removed some carry stores that were not required [updated text] November 18th, 2005 v0.37 -- [Don Porter] reported on a TCL list [HEY SEND ME BUGREPORTS ALREADY!!!] that mp_add_d() would compute -0 with some inputs. Fixed. -- [rinick@gmail.com] reported the makefile.bcc was messed up. Fixed. -- [Kevin Kenny] reported some issues with mp_toradix_n(). Now it doesn't require a min of 3 chars of output. -- Made the make command renamable. Wee August 1st, 2005 v0.36 -- LTM_PRIME_2MSB_ON was fixed and the "OFF" flag was removed. -- [Peter LaDow] found a typo in the XREALLOC macro -- [Peter LaDow] pointed out that mp_read_(un)signed_bin should have "const" on the input -- Ported LTC patch to fix the prime_random_ex() function to get the bitsize correct [and the maskOR flags] -- Kevin Kenny pointed out a stray // -- David Hulton pointed out a typo in the textbook [mp_montgomery_setup() pseudo-code] -- Neal Hamilton (Elliptic Semiconductor) pointed out that my Karatsuba notation was backwards and that I could use unsigned operations in the routine. -- Paul Schmidt pointed out a linking error in mp_exptmod() when BN_S_MP_EXPTMOD_C is undefined (and another for read_radix) -- Updated makefiles to be way more flexible March 12th, 2005 v0.35 -- Stupid XOR function missing line again... oops. -- Fixed bug in invmod not handling negative inputs correctly [Wolfgang Ehrhardt] -- Made exteuclid always give positive u3 output...[ Wolfgang Ehrhardt ] -- [Wolfgang Ehrhardt] Suggested a fix for mp_reduce() which avoided underruns. ;-) -- mp_rand() would emit one too many digits and it was possible to get a 0 out of it ... oops -- Added montgomery to the testing to make sure it handles 1..10 digit moduli correctly -- Fixed bug in comba that would lead to possible erroneous outputs when "pa < digs" -- Fixed bug in mp_toradix_size for "0" [Kevin Kenny] -- Updated chapters 1-5 of the textbook ;-) It now talks about the new comba code! February 12th, 2005 v0.34 -- Fixed two more small errors in mp_prime_random_ex() -- Fixed overflow in mp_mul_d() [Kevin Kenny] -- Added mp_to_(un)signed_bin_n() functions which do bounds checking for ya [and report the size] -- Added "large" diminished radix support. Speeds up things like DSA where the moduli is of the form 2^k - P for some P < 2^(k/2) or so Actually is faster than Montgomery on my AMD64 (and probably much faster on a P4) -- Updated the manual a bit -- Ok so I haven't done the textbook work yet... My current freelance gig has landed me in France till the end of Feb/05. Once I get back I'll have tons of free time and I plan to go to town on the book. As of this release the API will freeze. At least until the book catches up with all the changes. I welcome bug reports but new algorithms will have to wait. December 23rd, 2004 v0.33 -- Fixed "small" variant for mp_div() which would munge with negative dividends... -- Fixed bug in mp_prime_random_ex() which would set the most significant byte to zero when no special flags were set -- Fixed overflow [minor] bug in fast_s_mp_sqr() -- Made the makefiles easier to configure the group/user that ltm will install as -- Fixed "final carry" bug in comba multipliers. (Volkan Ceylan) -- Matt Johnston pointed out a missing semi-colon in mp_exptmod October 29th, 2004 v0.32 -- Added "makefile.shared" for shared object support -- Added more to the build options/configs in the manual -- Started the Depends framework, wrote dep.pl to scan deps and produce "callgraph.txt" ;-) -- Wrote SC_RSA_1 which will enable close to the minimum required to perform RSA on 32-bit [or 64-bit] platforms with LibTomCrypt -- Merged in the small/slower mp_div replacement. You can now toggle which you want to use as your mp_div() at build time. Saves roughly 8KB or so. -- Renamed a few files and changed some comments to make depends system work better. (No changes to function names) -- Merged in new Combas that perform 2 reads per inner loop instead of the older 3reads/2writes per inner loop of the old code. Really though if you want speed learn to use TomsFastMath ;-) August 9th, 2004 v0.31 -- "profiled" builds now :-) new timings for Intel Northwoods -- Added "pretty" build target -- Update mp_init() to actually assign 0's instead of relying on calloc() -- "Wolfgang Ehrhardt" <Wolfgang.Ehrhardt@munich.netsurf.de> found a bug in mp_mul() where if you multiply a negative by zero you get negative zero as the result. Oops. -- J Harper from PeerSec let me toy with his AMD64 and I got 60-bit digits working properly [this also means that I fixed a bug where if sizeof(int) < sizeof(mp_digit) it would bug]
2006-09-09Update MASTER_SITES and HOMEPAGE.obache1-3/+3
2006-09-09MAKEFILE has been renamed to MAKE_FILE.obache2-3/+6
2006-09-09+bind-9.3.3,samba-3.0.23ctaca1-2/+3
2006-09-09Note update of www/zope29 package to 2.9.4nb2.taca1-1/+2
2006-09-09Fix RCD_SCRIPTS; drop ".sh" suffixes.taca1-3/+3
Bump PKGREVISION.
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache1-5/+5
2006-09-09Rename variable MAKEFILE to MAKE_FILE.obache187-387/+387
2006-09-09Usage of variable MAKEFILE in pkgsrc has been changed.obache1-12/+3
So no longer needs this hack.
2006-09-09Rename variable MAKEFILE to MAKE_FILE, as suggested in PR 28392.obache4-10/+10
2006-09-08Make sure to revert pthread handling as before.taca1-4/+8
2006-09-08Note PKGREVISION bump for devel/libslang.kristerw1-1/+2
2006-09-08Darwin does not define unix. Make the installed file slang.h useful anyway.kristerw3-7/+6
Bump PKGREVISION.
2006-09-08Note addition of icon-naming-utils.jmmv1-1/+2
2006-09-08Add and enable icon-naming-utils.jmmv1-1/+2
2006-09-08Initial import of icon-naming-utils, version 0.8.1:jmmv5-0/+55
Icon Naming Utilities is a program that helps with the transition to the new naming scheme defined by the Tango project. This utility maps the icon names used by the GNOME and KDE desktops to the icon names proposed in the Icon Naming Specification.
2006-09-08Note update of xdg-dirs and xdg-x11-dirs to 1.4.jmmv1-1/+3
2006-09-08Update to 1.4: add the share/dtds directory, initially used by thejmmv4-6/+8
forthcoming icon-naming-utils package.
2006-09-08There's no need to use GCC_REQD+= 3.4 because 3.0 is enough.xtraeme1-2/+1
Pointed out by jmmv.
2006-09-08NetBSD >= 4.0 needs to depend on lang/gcc34 and USE_PKGSRC_GCC.xtraeme1-3/+8
If your system uses gcc4, put it on this conditional. At this moment this is the only way to build qemu... maybe jlam or someone will fix it soon.
2006-09-08+ openbox-3.3.1, rblcheck-1.5 [pkg/34492].wiz1-2/+3
2006-09-08 Updated graphics/p5-Image-ExifTool to 6.36 [gdt 2006-09-08]gdt1-1/+2
2006-09-08Update to 6.36. Some changes since 6.29 (many minor fixes/addititions omitted):gdt2-6/+6
- Renamed Canon AFPointsUsed20D to AFPointsUsed and decode for 30D and 400D - Added new Canon AutoISO tag, renamed Canon:ISO tag to ShotISO, and added a new composite ISO tag to give the ISO that was actually used - Decode a number of new values for FujiFilm PictureMode (thanks Michael Meissner) - Added support for Nikon D80 lens information and recognize a new lens (thanks Robert Rottmerhusen)
2006-09-08Force monotonic clock on DragonFly to prevent build from failing.joerg2-1/+24
2006-09-08Don't install configuration files into $HOME, it might not even bejoerg2-4/+22
writeable.
2006-09-08Jukka Salmi becomes the maintainer of this package.obache1-2/+2
2006-09-08Needs tar as tool. Use tools framework for unzip as well, instead ofjoerg1-4/+2
manual build dependency.
2006-09-08Set EXTRACT_ONLY instead of EXTRACT_CMD, require gzcat.joerg1-2/+4
2006-09-08TODO:rillig1-1/+2
* Check all the shell commands to see if they are mentioned in USE_TOOLS.
2006-09-08Improved the heuristics for detecting absolute pathnames.rillig2-6/+9
Not only CFLAGS, but also {FOO}_CFLAGS should be passed through the :M* operator before being passed to the shell.
2006-09-08This package needs tar, as suggested in PR 34494.rillig1-1/+2
2006-09-08Added a reference to NetBSD's send-pr web page, for pkgsrc users thatrillig1-6/+14
don't have send-pr in their base system. Fixes part of PR 34493.
2006-09-08Consistently use c++ frontend end, not -x c++ on FreeBSD and DragonFly.joerg2-10/+37
2006-09-08vim-share-7.0.91martti1-1/+2
2006-09-08Updated editors/vim-share to 7.0.91martti4-6/+57
2799 7.0.077 crash when unletting a v: variable 1968 7.0.078 there are two error messages called E46 51669 7.0.079 vimtutor doesn't work for Russian when 'encoding' is utf-8 1759 7.0.080 compile error when CFLAGS contains a backslash 2043 7.0.081 command line completion doesn't work for ":!/path" 2850 7.0.082 crash when using List or Dict argument and waiting for input 3001 7.0.083 mouse doesn't work for all entries with inputlist() 5968 7.0.084 garbage collection may free Lists and Dicts still in use 1512 7.0.085 running tests changes the viminfo file 2379 7.0.086 getqflist() uses number zero for empty pattern and text 7382 7.0.087 'acd' doesn't work for ":file fname" and ":saveas fname" 3066 7.0.088 generated prototypes have "extern" when build with Perl 2445 7.0.089 "ga" gave wrong results for non-Unicode multi-byte encoding 2486 7.0.090 need to type Esc twice in console confirm() dialog 1698 7.0.091 winrestview() may leave cursor in the wrong position