Commit graph

110720 commits

Author SHA1 Message Date
rillig
197add6321 On IRIX, <standards.h> needs to be included before <sys/endian.h>. 2007-03-08 23:11:20 +00:00
rillig
dc31efeb7a Renamed replace-pkg to _flavor-replace and undo-replace-pkg to
_flavor-undo-replace. The leading underscore makes it obvious that these
targets are private, which saves redundant comments.
2007-03-08 23:06:37 +00:00
rillig
07e433310c Added headings. 2007-03-08 22:57:00 +00:00
rillig
38de695082 Documented how to use checkperms in bulk builds. 2007-03-08 22:49:05 +00:00
wiz
bdf7eeadf1 Sort. 2007-03-08 21:56:40 +00:00
rillig
4972b6c230 Fixed pkglint warnings. 2007-03-08 21:24:59 +00:00
wiz
4da76635fe gmime updated to 2.2.4. 2007-03-08 20:04:29 +00:00
wiz
44d9a395b3 Update to 2.2.4:
2007-02-08  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.4

2007-02-06  Jeffrey Stedfast

	Fix for bug #394433

	* configure.in: Detect if the system has GNU's getopt
	implementation available for us to use.

	* Makefile.am: Don't build our own copy of the GNU getopt library
	if the system has it available.

	* src/uuencode.c: If the system has getopt.h, use it instead of
	our own getopt.h.

	* src/uudecode.c: If the system has getopt.h, use it instead of
	our own getopt.h.

2007-02-06  Jeffrey Stedfast

	More fixes on account of my test suite...

	* tests/test-cat.c (test_cat_substream): end = start + random
	amount... duh. Fixes a bug where sometimes the end bound was < the
	start bound.

	* gmime/gmime-stream-cat.c (stream_substream): Calculate the
	length of each of the source streams correctly. D'oh.
	(stream_substream): Fixed the calculation for s->start.
	(stream_substream): Fixed the s->end calculation for when end
	within the source stream's bounds.
	(stream_substream): Keep track of how long our substream is going
	to be for use with setting absolute bound_end on a multi-stream
	substream.

2007-02-05  Jeffrey Stedfast

	Fixes on account of the awesome test suite I wrote earlier... still
	need to fix ::substream() tho (or maybe it's just the test that's
	broke?).

	* gmime/gmime-stream-cat.c: Added an id member to struct
	_cat_node, for use with debugging...
	(stream_read): Seek in the source stream, don't call
	Cat::stream_seek() to do it.
	(stream_seek): Swapped the logic of the "within bounds" check, had
	it backwards. When seeking past a stream, set the node->position
	to the length of the stream (technically, it's like we read() thru
	all that data, right?). Instead of resetting all streams starting
	at n->next, reset them all starting at current->next... since 'n'
	technically might be before 'current'.
	(g_mime_stream_cat_add_source): Assign each node an id for easier
	debugging...

2007-02-05  Jeffrey Stedfast

	* tests/test-cat.c: The beginnings of a test suite for
	GMimeStreamCat.

	* gmime/gmime-stream-cat.c (stream_read): Go to the next stream if
	nread <= 0, not just nread == 0.

2007-02-04  Jeffrey Stedfast

	* gmime/gmime-stream-mem.c (stream_reset): No longer need to
	update stream->position.

	* gmime/gmime-stream-mmap.c (stream_reset): Same g_return_if_fail
	change. Also don't update stream->position.
	(stream_seek): Added similar sanity checking/eos resetting as
	StreamFs code.

	* gmime/gmime-stream-file.c (stream_read): Style changes.
	(stream_write): Style changes.
	(stream_close): Fixed compiler warning.
	(stream_reset): Changed g_return_if_fail to a true if-then.
	(stream_seek): Changed to mimic the StreamFs changes.
	(g_mime_stream_file_new): Similar to fs_new() change.

	* gmime/gmime-stream-fs.c (stream_close): Loop the close()
	ourselves.
	(stream_reset): Changed g_return_if_fail to a true if-then. Also
	be better about resetting eos.
	(stream_seek): Rewritten to be more correct/robust (at least I
	hope). Also properly reset eos when appropriate.
	(g_mime_stream_fs_new): If lseek() fails, pretend start offset is
	0.

	* gmime/gmime-stream.c (stream_reset): No longer needs to update
	stream->position.
	(g_mime_stream_reset): Update stream->position if everything reset
	smoothly. This is just a convenience change to subclass
	implementations.

	* gmime/gmime-stream-cat.c (stream_read): Rewritten. Hopefully
	correct now? Ugh. We can hope...
	(stream_write): Fixed to work better.
	(stream_close): Rewritten.
	(stream_reset): Rewritten to reset the streams, don't seek.
	(stream_seek): Rewritten... still not correct, but should be ok
	assuming our bound_start is 0.
	(stream_length): Rewritten to not depend on a pre-calculated
	length value... this Does Not Work (tm) if the source streams are
	unbound and we've written to them.
	(stream_substream): Rewritten... because ::seek() is so complex
	for this type of stream, I've tried to eliminate a lot of the
	headaches by making substreams only slurp up the streams within
	the bounds of the start/end requested. If the entire contents
	within the requested bounds are contained within a single source
	stream, we return a substream of said source stream instead.
	(g_mime_stream_cat_add_source): Don't precalculate the length here
	anymore.

	* gmime/gmime-stream-buffer.c (stream_read): Fixed to never allow
	buflen to be negative if the read() of our source stream fails.
	(stream_close): Handle the case where we've already been closed.
	(stream_eos): Simplified.
	(stream_reset): Stylistic changes.
	(stream_seek): Don't allow seeks under our bound_start.

2007-02-03  Jeffrey Stedfast

	* gmime/gmime-stream-cat.c (stream_flush): Flush all streams up to
	and including the current stream, not just the current stream.
	(stream_write): break if we don't write any data to
	current->stream or get an error so we can try the next stream.

	* gmime/gmime-stream-file.c (stream_close): Same as below.

	* gmime/gmime-stream-fs.c (stream_close): Allow closing multiple
	times... makes this consistant with the other streams.
	(stream_write): If a system write fails with EFBIG or ENOSPC, set
	eos to TRUE.

2007-01-20  Jeffrey Stedfast

	* tests/test-streams.c (test_stream_gets): printf formatter fixes.

	* examples/imap-example.c: #include <glib/gstdio.h>, fixes bug
	#394434.

2007-01-20  Jeffrey Stedfast

	Fixes bug #394419

	* gmime/gmime-filter-charset.c (filter_filter): Do iconv const
	casting.
	(filter_complete): Same.

2006-11-02  Jeffrey Stedfast

	* gmime/gmime-utils.c (g_mime_utils_header_format_date): Changed
	the names of the parameters to date and tz_offset to prevent
	warnings from -Wshadow.

	* gmime/gmime-filter-html.c (writeln): Fixed another possible
	buffer overflow condition pointed out by hpj.

	* gmime/gmime-filter-crlf.c (filter_filter): Fixed a possible
	buffer overflow condition pointed out by hpj.

	* gmime/gmime-gpg-context.c (gpg_ctx_op_step): Modified to use
	poll() rather than select()

2006-09-18  Joe Shaw

	* mono/Makefile.am: Use SOURCES_XML instead of XML_SOURCES to
	specify the sources.xml file.  XML_SOURCES breaks with newer
	automakes.

2006-08-29  Pawel Salek

	* gmime/gmime-message-partial.c: set buf just before use - since
	the mem stream buffer may get reallocated in the meantime leading
	to segfaults.

2006-08-29  Jeffrey Stedfast

	* gmime/gmime-param.c (decode_quoted_string): Unescape escape
	sequences. Fixes bug #352771.

	* gmime/gmime-message.c (g_mime_message_set_subject): Updated the
	docs.
	(g_mime_message_get_subject): Same.

2006-08-21  Peter Bloomfield

	* gmime/gmime-utils.c (g_mime_utils_unquote_string): handle an
	arbitrary sequence of quoted and unquoted sections.

2006-08-02  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.3

	* gmime/gmime-message.c (process_header): Decode the values for
	Subject, From, Reply-To so that g_mime_message_get_subject/etc all
	return decoded strings like they were meant to.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c (swrite): Use g_build_filename() and
	g_get_tmp_dir() rather than hard-coding the tmpfile to be in /tmp.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-part.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-parser.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-param.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-multipart-signed.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-multipart-encrypted.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-multipart.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message-partial.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message-part.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-message.c: Use g_ascii_* versions of str[n]casecmp.

	* gmime/gmime-iconv.c (g_mime_iconv_open): Use g_ascii_* versions
	of str[n]casecmp.

	* gmime/gmime-header.c (g_mime_header_new): Use
	g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.

	* gmime/gmime-gpg-context.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-filter-enriched.c: Use g_ascii_* versions of
	str[n]casecmp.

	* gmime/gmime-disposition.c (g_mime_disposition_add_parameter):
	Use g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.
	(g_mime_disposition_new): Same.
	(param_equal): Removed.
	(param_hash): Removed.

	* gmime/gmime-content-type.c: Use g_ascii_* versions of
	str[n]casecmp.
	(g_mime_content_type_new_from_string): Use
	g_mime_strcase_[hash,equal] rather than param_[hash,equal] to
	reuse code.
	(g_mime_content_type_set_parameter): Same.
	(param_equal): Removed.
	(param_hash): Removed.

	* gmime/gmime-charset.c: Use g_ascii_* versions of str[n]casecmp.

2006-06-23  Jeffrey Stedfast

	* gmime/gmime-stream-cat.c (stream_seek): Fixed to only seek if
	necessary and also to use ::reset() if seeking back to the
	beginning of the stream so that it works for non-seekable streams
	too. Fixes bug #345503 - again thanks to Charles for reporting
	this bug.

	* gmime/gmime-object.c (subtype_bucket_foreach): Fixed to also
	free the bucket memory. Fixes bug #345768, thanks to Charles Kerr
	for pointing this out.

2006-06-22  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c: Removed #define _POSIX_SOURCE to fix
	bug #172179.

2006-06-15  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.2

2006-06-01  Jeffrey Stedfast

	* gmime/gmime-utils.c (parse_broken_date): Fixed to handle
	MM-DD-YY properly and also to fallback to DD-MM-YY if the first
	pair of digits isn't within range for a proper month.

2006-05-30  Jeffrey Stedfast

	* gmime.h.in: Removed.

	* gmime.h: Now static, no longer auto-generated.

	* gmime/gmime.c: Set the gmime_[major,minor,micro]_version
	variables.
	(g_mime_check_version): New function to check the required
	version.

	* gmime/gmime-stream-fs.c: Implement our own no-op version of
	fsync() for systems that don't have fsync().

2006-05-24  Jeffrey Stedfast

	* examples/imap-example.c (main): Use g_mkdir() to make this
	example portable to Win32.

2006-05-01  Jeffrey Stedfast

	* gmime/gmime-gpg-context.c (gpg_ctx_parse_status): Handle prompts
	from GnuPG asking for the user's PIN for their SmartCard.

2006-04-21  Jeffrey Stedfast

	* gmime/gmime-stream.h: #include <stdio.h> for SEEK_SET/CUR/END
	enum values.

2006-03-16  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.1

	* gmime/gmime-parser.c (parser_step): No-op if we are in an ERROR
	state.
	(parser_construct_message): Don't bail if we don't start in state
	INIT, this is valid.
	(parser_step_from): We need to bail even if parser_fill() returns
	> 0 if the line is incomplete (e.g. a forced refill was needed but
	no additional data could be read).

2006-03-16  Jeffrey Stedfast

	* README: Bumped version

	* configure.in: Bumped version to 2.2.0, it's about time I made a
	stable release.

2006-03-15  Jeffrey Stedfast

	* gmime/gmime-parser.c (parser_step_from): If we fail to find a
	From line, set an error state. Also fixed the End-Of-Data check to
	prevent an infinite loop if the stream ends with \n\n.
	(parser_construct_message): Make sure our state starts off at
	INIT. Also check for the ERROR state in our parser_step() loop and
	return NULL if we encounter an error.

2006-03-03  Jeffrey Stedfast

	* util/url-scanner.c (g_url_web_end): Allow urls such as
	"http://www.novell.com./path" (note the '.' before the path
	component).
	(g_url_addrspec_start): If the '@' is the first character in the
	match, then it isn't a valid email address.
2007-03-08 20:04:06 +00:00
wiz
3efc9fc195 Note pilotmgr and keylaunch updates. 2007-03-08 19:50:06 +00:00
wiz
8648201a4b Update to 1.3.3, provided by Sergey Svishchev in private mail:
keylaunch (1.3.3) unstable; urgency=low

  * No longer depend on xlibs-dev. (Closes: #347006)

 -- Stefan Pfetzing <dreamind@dreamind.de>  Mon,  9 Jan 2006 17:58:57 +0100

keylaunch (1.3.2) unstable; urgency=low

  * Update Keylaunch to use autoconf.
  * Install documentation.
  * Complain when ~/.keylaunchr is not found.

 -- Stefan Pfetzing <dreamind@dreamind.de>  Sat,  9 Jul 2005 20:15:43 +0200

keylaunch (1.3.1) unstable; urgency=low

  * The I'm back release.
  * Finally fixed the problem when $HOME was not defined, so lets get
    the information from the right place.
  * Fix lintian errors.
2007-03-08 19:49:16 +00:00
wiz
dbe499c1ff Some pkglint cleanup. 2007-03-08 19:43:45 +00:00
wiz
232fe1b5d3 Update to 1.109, provided by Sergey Svishchev in private mail.
Changes from v1.108 to v1.109

	* Conduits included in the PilotManager distribution now have
	version numbers identical to the PilotManager version.
	Third-party conduits can (and should) continue to have their own
	version number schemes.

	* Change the way we reference constants exported from libpisock,
	in preparation for pilot-link 0.12.0-pre5.  Backwards
	compatibility is maintained.  Use symbolic constants instead of
	hard-coded integer values, if running with a version of pilot-link
	that provides them.

	* A second attempt to fix the bug in the Properties dialog with
	Tk-804.  The first one didn't work with certain combinations of
	libraries.

	* Fix bug introduced in 1.108 that broke -syncwith and -install
	for normally inactive conduits.

	* Don't call conduitQuit on conduits that haven't been loaded.
	Eliminates an error message when using -syncwith (bug introduced
	in 1.108).

	* Fix bug where PilotManager would report a successful connection
	and then a Perl error, when what really happened was simply a
	timeout.

	* Eliminated numerous -w warnings

	* PilotSync.pm (affects SyncAB, SyncFood, and some third-party
	conduits; all changes by Ralf Schlatterbeck): fix some crash bugs
	and a bug that caused creation of empty fields; add support for
	full sync; some new functionality for use by conduit authors:
	possibility to skip some pilot records, and to generate local ID
	based on contents of pilot record.

	* SyncMemo conduit: work around a bug in perl 5.8.0 that was
	causing the filename filters not to work sometimes.  The
	workaround involves forcing these filters to be ASCII-only; this
	could conceivably be a problem for people using non-ASCII
	filenames.  Fix bug that caused spurious conflict to be detected
	when doing full sync and a file had changed but the corresponding
	pilot memo had not.  Eliminate some barewords to avoid strict subs
	warnings in some versions of perl (bug report from Ralf
	Schlatterbeck).

	* SyncCM conduit: Work around libcsa bug that was causing "INVALID
	DATE TIME" error when syncing "all dates" in a timezone east of
	GMT; workaround for dtcm bug that made weekly repeating
	appointments created on the pilot uneditable in dtcm; fix up
	repeating appointments from the pilot whose start date isn't one
	of the repeat days.  The following patches from Alan Harder: if cm
	appointment has no end time, use end time equal to start time on
	pilot (rather than refusing to sync the appointment); clearer and
	more informative log messages; when doing "Sync All (dates)", use
	2021 instead of 2010 as the end of the range; propagate
	appointment deletion from palm to desktop even if the archive flag
	is set.

	* Installer conduit: Respect -rcdir argument when running
	installer from command line (Alan Harder)

	* Backup conduit: add an option "Ignore modify date (backup every
	time)"; more informative log messages.  (Both by Alan Harder.)
	For deciding whether to back up a database, use a different scheme
	that doesn't depend on the two clocks being synchronized.

	* SyncTime conduit: remove workaround for some ancient pilot-link
	version (Alan Harder).

	* SyncFood conduit: Refuse to sync if $FOODFILE has been deleted,
	in order to avoid wiping everything out. Patch from Alan Harder, I
	haven't tested it.

	* SyncAB conduit: fix bug in setting vCard file name, and in
	handling of newlines (Alan Harder).  Implement full sync, allowing
	sync with multiple desktop machines (Ralf Schlatterbeck).  Allow
	filtering by private flag and by category (Ralf Schlatterbeck).

	* SyncPlan conduit: Appointments that repeat more than one day a
	week, every n weeks, where n > 1, are possible on the pilot but
	not in plan.  Signal them as unsyncable, rather than converting
	them to once-per-week repeats (Thomas DeWeese).  Show progress bar
	while reading Pilot records.  Re-fix bug about plan alarms getting
	turned off that was supposed to be fixed in 1.108 but really
	wasn't.  Fix some bugs related to time zone conversion: end date
	of repeating appointments would move back a day when synced from
	pilot to plan in time zones east of GMT, and appointment times
	shown in the log window would be in GMT rather than local time.

	* SendMail conduit: fix bug that comes up when the database
	doesn't exist on the pilot.

	* Remove contrib/dinesh-dutt, which was an old version of software
	that was later distributed on its own (the syncbbdb project on
	sourceforge, not to be confused with syncbbdb2, which is an
	unrelated project and is the one I recommend for bbdb syncing).


Changes from v1.107 to v1.108

	* Add error checking throughought PilotManager and several
	  conduits to fix a bug that caused data loss when the link to the
	  pilot was lost during a sync.

	* Only load active conduits, rather than all conduits, at
	  startup.  This means that you no longer need to rename or delete
	  unused conduits that have missing dependencies.  As a side
	  effect, the "Load New Conduits..." menu item is gone, replaced
	  by a "Rescan" button on the "Properties" dialog.

	* Changes for compatibility with pilot-link 0.12.0.  Backwards
	  compatibility with earlier pilot-link versions is matained.

	* Changes for compatibility with Tk 804. fixes bug causing some
	  color preferences to be ignored when using Tk 804, and fixes
	  buggy behavior of the Up and Down buttons in the Preferences
	  dialog.

	* Fix pcid corruption in preferences file that could cause every sync
	  to be a full sync.

	* Fix hang when trying to sync to a USB device that wasn't connected.

	* Applied patch to fix problems with PalmOS 3.5 and above.

	* Fix purely cosmetic y2k display bug.

	* Use Digest::MD5 instead of the deprecated MD5.

	* Patch from NWalsh to lib/perl5/PilotSync.pm, fixes unreliability
	  problems, esp. with newer versions of Perl.

	* Change the dates in the log messages to be ISO compliant instead
	  of US-centric mm/dd/yyyy (Mark Staveley).

	* Replaced Setup script with Setup.pl.  The script is no longer
	  invoked automatically the first time PilotManager is run; rather,
	  it must be run by hand (perl Setup.pl) to create the executable
	  PilotManager.

	* If Setup.pl is given a -conduitdir argument, then PilotManager
	  will look in that directory for loadable conduit modules (in
	  addition to the directories it already looked in).

	* Updated developer contact information

	* Backup conduit: update to version 1.008, which had been released
	  separately as 1.008ea.
	  - Better, more consistent filename handling throughout.

	* Installer conduit: update to version 1.009, which had been released
	  separately as 1.009ea2.
	  - Recognizes .pqa files as well as .pdb/.prc.
	  - Only use included "MultiFileSelect.pm" with Tk 4.0,
	    otherwise, use Tk::Fileselect module.
	  - Print message after each file is installed.

	* SendMail conduit: new version 0.900
	  - only perform wordwrap on body of mail message, not
	    headers. (Chris Waters)
	  - Check for I/O errors (see comment at top of ChangeLog)

	* SyncAB conduit: no changes, version number stays at 0.96 BETAp1.

	* SyncCM conduit: new version 1.103
	  - Check for I/O errors (see comment at top of ChangeLog)

	* SyncFood conduit: no changes, version number stays at 0.96 BETA.

	* SyncMemo conduit: new version 1.9 integrates changes from
	  version 1.8-ea2, which had been released separately, plus
	  additional changes.
	  - from 1.8ea2: Use internal checksum function instead of
	    Shell::sum.
	  - from 1.8ea2: Use internal isPilotText function instead of
	    Shell::file
	  - from 1.8ea2: Use opendir/readdir/closedir for directory access
	    rather than relying on globbing.  Fixes breakage when category
	    names have whitespace.
 	  - Eliminate discrepancy between behavior of full sync and fast
	    sync.  In earlier versions, a memo deleted from the desktop would
	    be deleted from the pilot during a fast sync, but recopied from
	    the pilot to the desktop on a full sync.  A preferences option
	    allows you to keep the old behavior if you wish.
	  - Process all file deletions before any file creations, to avoid
	    unnecessary file name collisions.
	  - Use gtkdiff or tkdiff if filemerge not available (Mark
	    Staveley). Better would be to allow merge program to be chosen
	    via the configuration gui--patches welcome.
	  - Remove special characters from filenames (idea from Mark
	    Staveley)
	  - Increase maximum file name length (Mark Staveley)
	  - Check for I/O errors (see comment at top of ChangeLog)

	* SyncPlan conduit: new version 0.97 integrates changes from
	  version 0.96BETA, which had been released separately, plus
	  additional changes.
	  - from 0.96BETA: Support for weekly appts from pilot with
	    frequency > 1 (patch by Alan Harder based on changes in
	    sync-plan)
	  - from 0.96BETA: Fix repeat end date for daily repeating plan
	    records (patch by Alan Harder based on research by Aaron
	    Kaplan)
	  - from 0.96BETA: Patch to support plan records with two alarms
	    (just use earlier one for pilot) by Kevin Fink
	  - from 0.96BETA: Configurable level of verbose output and
	    configurable netplan port, patch by Andreas S. Oesterhelt
	    (oes@paradis.rhein.de)
	  - Fix a bug that caused deleted records to reappear when
	    syncing one pilot with more than one desktop machine.
	  - Fix a bug that would cause an alarm to be disabled in plan if
	    the appointment was modified on the pilot.  As a side-effect,
	    any appointment created on the pilot will now have an alarm
	    set in plan.
	  - Check for I/O errors (see comment at top of ChangeLog)

	* Updated version of contrib/alan-harder/UpdateMemos.pl

	* Added SyncAB_plusBBDB to contrib/dinesh-dutt.  This had never
	  been released as part of a PilotManager package, but was available
	  separately on moshpit.org.  Since I'm already supporting
	  SyncBBDB, I don't intend to support SyncAB_plusBBDB.

	* SourceForge CVS repository set up (Chris Waters)

	* Development now coordinated by Aaron Kaplan
2007-03-08 19:43:10 +00:00
wiz
291ba6f729 + cardboard-schedule-1.14c [at http://www.bright-green.com/downloads/],
imapproxy-1.2.5 [see http://horde.org/imapproxy/ -> www.imapproxy.org],
  ja-less-382 [at http://www25.big.jp/~jam/less/], lft-2.5 [at
  http://pwhois.org/], py-proj-1.8.1a [at python.org], py-textile-2.0.11,
  rc-1.7.1 [at ftp://quenix2.dyndns.org/FreeBSD/ports/distfiles/],
  tn5250-0.17.3 [at http://tn5250.sourceforge.net/], weex-2.6.1.5
  [at http://weex.sourceforge.net/].

From Sergey Svishchev.
2007-03-08 19:31:21 +00:00
rillig
40c18f0881 Made the package definition simpler and fixed pkglint -Wall warnings. 2007-03-08 19:26:41 +00:00
wiz
33043e8906 Minor pkglint cleanup, from Sergey Svishchev. 2007-03-08 19:25:32 +00:00
wiz
c1961bd5a9 Remove dead mastersite. 2007-03-08 19:25:14 +00:00
rillig
e537d9a551 Fixed pkglint errors. 2007-03-08 19:24:24 +00:00
wiz
1842a060fc compface updated to 1.5.2. 2007-03-08 19:23:36 +00:00
wiz
2c8d41f0de Update to 1.5.2:
2005-08-04  Ben Wing

	Version 1.5.2: Fixed CRLF endings in sources.  Moved configure.in to
	configure.ac and rewrote obsolete constructions.  Redid installation
	in `make install' so it actually worked, including on Cygwin
	(needs the EXEEXT variable from `configure').
2007-03-08 19:23:04 +00:00
wiz
ddd75707dd Updated yasm to 0.6.0 and p5-Compress-Zlib to 2.004. 2007-03-08 19:11:47 +00:00
wiz
fac400b450 Update to 2.004:
2.004 3 March 2007

      * rewrote memGzip using IO::Compress::Gzip::gzip
2007-03-08 19:11:12 +00:00
wiz
720e800f48 Update to 0.6.0:
New features (compared to 0.5.0):

    * Brand-new "virtual" multi-pass optimizer that automatically
      generates much smaller code for jumps and immediates.
    * Support for Mach-O object format used in MacOS X, including
      both the 32-bit (x86) and 64-bit (AMD64) versions (contributed
      by Henryk Richter).
    * Support for structured exception handling on Win64.
    * Support for RDOFF2 (.rdf) object format.
    * Support for STRICT keyword in NASM syntax.
    * Rewritten NASM and GAS parsers (now recursive descent rather
      than Bison-based).
    * Absolute / FAR location bugfixes.
    * Yasm no longer defaults to reading from standard input if no
      files are specified; standard input can be specified with "-".
    * Many other bugfixes.
2007-03-08 19:09:27 +00:00
wiz
9867dd8481 p5-IO-Compress-Zlib and its dependencies updated to 2.004. 2007-03-08 19:03:13 +00:00
wiz
1500413e37 Update to 2.004:
2.004 3 March 2007

      * IO::Compress::Zip

        - Added Zip64 documentation.

        - Fixed extended timestamp.
          Creation time isn't available in Unix so only store the
          modification time and the last access time in the extended field.

        - Fixed file mode.

        - Added ExtAttr option to control the value of the "external file
          attributes" field in the central directory.

        - Added Unix2 extended attribute ("Ux").
          This stores the UID & GID.

      * IO::Compress::Gzip

        - Fixed 050interop-gzip.t for Windows
2007-03-08 19:02:29 +00:00
wiz
96733c8916 Update to 2.004:
2.004 3 March 2007

      * Made seek less wasteful of memory.
2007-03-08 18:59:47 +00:00
wiz
577c4af1d8 Update to 2.004:
2.004 3 March 2007

      * Fixed lvalue substr issue

      * Remove redundant code from Zlib.xs
2007-03-08 18:59:08 +00:00
wiz
e07af69121 gsed updated to 4.1.5. 2007-03-08 18:54:21 +00:00
wiz
5bce614705 Update to 4.1.5:
Sed 4.1.5

* fix parsing of a negative character class not including a closed bracket,
  like [^]] or [^]a-z].

* fix parsing of [ inside an y command, like y/[/A/.

* output the result of commands a, r, R when a q command is found.

----------------------------------------------------------------------------
Sed 4.1.4

* \B correctly means "not on a word boundary" rather than "inside a word"

* bugfixes for platform without internationalization

* more thorough testing framework for tarballs (`make full-distcheck')

----------------------------------------------------------------------------
Sed 4.1.3

* regex addresses do not use leftmost-longest matching.  In other words,
  /.\+/ only looks for a single character, and does not try to find as
  many of them as possible like it used to do.

* added a note to BUGS and the manual about changed interpretation
  of `s|abc\|def||', and about localization issues.

* fixed --disable-nls build problems on Solaris.

* fixed `make check' in non-English locales.

* `make check' tests the regex library by default if the included regex
  is used (regex tests had to be enabled separately up to now).

----------------------------------------------------------------------------
Sed 4.1.2

* fix bug in 'y' command in multi-byte character sets

* fix severe bug in parsing of ranges with an embedded open bracket

* fix off-by-one error when printing a "bad command" error
2007-03-08 18:53:56 +00:00
wiz
84529736bb unrar updated to 3.7.4. 2007-03-08 18:25:47 +00:00
wiz
b0d20dcf88 Update to 3.7.4:
Changes in \\ handling.
2007-03-08 18:25:26 +00:00
wiz
ed75a0ff67 xsane updated to 0.99.4. 2007-03-08 18:25:14 +00:00
wiz
8ca3e3eeb1 Update to 0.99.4:
xsane-0.993 -> 0.994:
---------------------

 - corrected postscript bug: moved "/DeviceRGB setcolorspace" and
 "CSA... setcolorspace" from document setup to page setup

 - added black point compensation to printer setup dialog

 - xsane-scan.c: if (channels==1) then scanner_default_gray_icm_profile
 is used instead of scanner_default_color_icm_profile

 - xsane-scan.c: bugfix segfault when scanning: when
 scanner_default_color_icm_profile is not defined then "" is used
 instead of scanner_default_color_icm_profile
2007-03-08 18:24:46 +00:00
wiz
c25ccc9048 libtasn1 updated to 0.3.9. 2007-03-08 18:24:33 +00:00
wiz
9011846386 Update to 0.3.9:
Version 0.3.9 (released 2007-03-02)
- In generated code, config.h is pulled in if HAVE_CONFIG_H.
- Development changes: changed from CVS to GIT as an experiment.
  I push my changes to <http://repo.or.cz/w/libtasn1.git>.
- Autoconf 2.61 and automake 1.10 is required.

Version 0.3.8 (released 2006-11-16)
- Fix reading of binary files in asn1Decoding, for Windows.

Version 0.3.7 (released 2006-10-19)
- When asn1_der_coding encoded a TYPE_NULL and the output buffer is
  NULL, it would not increment the counter properly, so the size of
  the required buffer would be off by one.  Fixed.  Reported by
  Stephen Wrobleski <steve@localtoast.org>.
- Fix configure to respect user-definable flags.  Reported by "Diego
  'Flameeyes' Pettenò" <flameeyes@gentoo.org>.
- The --help and --version outputs from the tools have been improved.

Version 0.3.6 (released 2006-08-13)
- Fix man pages to use \- instead of - for negative signs (as in "-1").
- Add -I's when building in src/, so that unistd.h etc is found on
  systems that doesn't have them.
- Valgrind isn't used for cross-compilation by default, and there is
  also --disable-valgrind-tests to unconditionally disable it.
- Valgrind is invoked without parameters, put things you like into
  ~/.valgrindrc instead.
2007-03-08 18:23:42 +00:00
wiz
003cb4f509 + GConf2-2.18.0.1, cairo-1.4.0, cdl3-1.2.7 [pkg/35941], digikam-0.9.1,
drraw-2.2a3, gimp-ufraw-0.11, glib2-2.12.10, libxml++2-2.18.0,
  liferea-1.2.7, nagios-3.0a1, ocaml-ssl-0.4.1 [pkg/35942],
  silc-client-1.0.4, socat-1.6.0.0.
2007-03-08 18:22:36 +00:00
wiz
3f9fc8f775 dialog updated to 1.1.20070227. 2007-03-08 18:21:48 +00:00
wiz
0a187c2bce Update to 1.1.20070227:
2007/02/27
	+ add dialog-config script, which provides applications with compile-
	  and link-information for using the dialog library.
	[pkgsrc: not installed, since library is not installed]
	+ move calls to dlg_trim_string() out of loop in dialog.c, so each
	  string is trimmed once (report by Ivanov Makcim).
	+ modify textbox.c to allow resizing while the search box is presented.
	  This relies on bug-fix in ncurses 5.6 20070224.
	+ use dgettext() rather than gettext() to allow libdialog to use the
	  messages installed for dialog (patch by Vajna Miklos).
	+ modify inputbox to position the cursor initially at the end of any
	  initial-text (request by Klaus Knopper).
	+ add configure --with-valgrind for testing.
	+ add --trace option, for debugging.
	+ add --ascii-lines and --no-lines options to control the way the
	  line-drawing characters are rendered (request by Klaus Knopper).
	+ add --keep-tite option, to override suppression of smcup/rmcup
	  (termcap ti/te) strings which would switch to xterm's alternate
	  screen (Debian #380665).
	+ modify fselect/dselect to use space-character as a completion
	  operator like tab in shells (patch by Yoram Bar Haim).
	+ remove a redundant chunk from checklist.c which reported status a
	  second time if the help-button was pressed but no item-help option
	  was in effect (Andre C Barros).
	+ fix return-status from "dialog --pause" (Debian #409254).
	+ add --mixedform and --mixedgauge dialogs based on patch from
	  Kiran Cherupally.
	+ add some notes on compatibility to the manpage.
	+ add editbox dialog (compatible with Xdialog, Debian #368478).
	+ add dselect dialog (compatible with Xdialog).
	+ remove an incorrect initialization of .text_flen from 2005/12/07
	  changes, which made all fields in a form editable (Debian #404045).
	+ report error and exit if a filename given for the --file option
	  cannot be opened (report by "Dog Walker").
	+ make --program-prefix, etc., work in configure script, e.g., to make
	  program install as "cdialog".  This does not alter the library name.
	+ add install-bin, install-man (and uninstall) rules to makefile.
	+ updates for configure script macros (originally vile, lynx, xterm):
	  AM_PATH_PROG_WITH_TEST, AM_WITH_NLS, CF_CURSES_CPPFLAGS,
	  CF_CURSES_LIBS, CF_INCLUDE_DIRS, CF_LARGEFILE, CF_MAKEFLAGS,
	  CF_PATH_SYNTAX, CF_SUBDIR_PATH, CF_SUBST, CF_WITH_DBMALLOC,
	  CF_WITH_DMALLOC, CF_WITH_LIBTOOL and CF_XOPEN_SOURCE.
	+ updated config.guess, config.sub
	> adapted fixes from SuSE package (Werner Fink):
	  + add some limit-checks in dlg_draw_shadow().
	  + make shadows resizable, using new dlg_move_window() in msgbox.c
	    and yesno.c
	  + add dialog_state.input, use this in end_dialog() to decide whether
	    to close pipe inputs and call _exit(), or simply call exit().
	  + modify dlg_ctl_size() to check if the reason for failure is because
	    shadows were used; retry in that case without shadows.
	  + add signal catcher for SIGSEGV.
2007-03-08 18:21:13 +00:00
rillig
3e25aa3847 Shortened the code. 2007-03-08 17:42:56 +00:00
joerg
8c3da2a8b4 Fix PLIST. Bump revision. 2007-03-08 17:21:54 +00:00
rillig
48d928e216 Removed extra parentheses around simple return statements, to align with
the current NetBSD version.
2007-03-08 17:18:18 +00:00
rillig
c4ffd9c017 Merged the change from NetBSD's 1.51 to 1.52:
EROFS is not a critical error in a "mkdir -p".
2007-03-08 17:11:46 +00:00
rillig
565d36e736 Documented the "regen" target. 2007-03-08 16:02:32 +00:00
rillig
0f3f71deb4 regen 2007-03-08 16:02:00 +00:00
rillig
4f6d6a97a3 Added a caveat in the Makefiles section that I just stumbled upon.
Added some questions regarding the tools framework.
2007-03-08 16:00:16 +00:00
rillig
f701a00e46 Don't create ${.TARGET} unless no further error can occur. The make(1)
manual page says that ${.TARGET} is removed automatically if make is
interrupted, but it is _not_ removed if a command fails. This case may
happen after an incomplete CVS update (I forgot the -d option). When
running "make depends" for the first time, an error message is printed.
When running it for the second time, an empty .depends file existed, so
the build continued.
2007-03-08 15:38:47 +00:00
sborrill
e66a1df744 Fix HOMEPAGE link 2007-03-08 15:25:21 +00:00
rillig
80632b6a04 Sorted and reindented. 2007-03-08 15:11:14 +00:00
rillig
802a8fcc9e Added myself to bulk builds and unprivileged builds. 2007-03-08 15:09:14 +00:00
rillig
a3685db68e Fixed these gcc error messages from PR 35948:
Sun.c:8: error: static declaration of 'op' follows non-static declaration
Sun.h:40: error: previous declaration of 'op' was here

While here, also fixed the pkglint errors.
2007-03-08 15:01:50 +00:00
rillig
3be8b1b509 Using offsetof() instead of a null pointer dereference fixes a g++ error
message. Fixes PR 35950.
2007-03-08 14:38:31 +00:00