Commit graph

4768 commits

Author SHA1 Message Date
minskim
83f83e331f Update bbdb to 2.35.
Changes:
- Rewrite the coding cookie on save. This makes sure that the setting
  of bbdb-file-coding-system is reflected in the file.
- Get Gnus data from the raw article buffer.
- Don't open a new window for BBDB if there are no records to display.
- Bug fixes and documentation improvements.
2011-10-12 00:42:59 +00:00
minskim
00175e489f Add color-theme. 2011-10-11 19:53:49 +00:00
minskim
84fe1cae6a Import color-theme-6.6.0 as misc/color-theme.
color-theme is an emacs-lisp mode for skinning your emacs.

Packaged by pho at cielonegro dot org.
2011-10-11 19:52:48 +00:00
minskim
32da2a2ed1 Make bbdb build with emacs-24.
Without this patch, build fails with the following error:

 bbdb-mhe.el:56:1:Error: Invalid function: ...

Emacs is partially responsible for this, but the upstream won't fix it
since the cause of this (old-style backquote) will be removed in
emacs-25.

Patch provided by Makoto Fujiwara in PR 44963.
2011-10-11 19:30:40 +00:00
cheusov
98589abbad Update my email 2011-10-09 10:02:44 +00:00
shattered
26ce32cfbd PR/29576 -- Use @RCD_SCRIPTS_SHELL@ in rc.d scripts, not /bin/sh 2011-10-07 22:37:02 +00:00
ryoon
1fceed9ac2 Update to 3.4.3 based on wip/libreoffice3-bin
Due to security issue CVE-2011-2713.
http://www.libreoffice.org/advisories/CVE-2011-2713/
2011-10-07 13:28:54 +00:00
ryoon
0bb14cbc8c Update to 3.3.4
Improve stability and bug fix.
2011-10-06 12:42:26 +00:00
ryoon
5e963dad74 Fix PR pkg/45402.
* Add DragonFly support from SVN 2600.
* Regen configure script.
2011-10-04 11:55:34 +00:00
plunky
0c5fd9c060 update to zyGrib 5.0.6, ChangeLog:
2011-09-10 : zyGrib Version 5.0.6

    Bug fixed : reference date was not displayed for MeteoBlue forecast.
    Bug fixed : longitude between 1°W and 0° was not displayed for
                worldwide files (particularly for NOAA archive files).

2011-09-06 : zyGrib Version 5.0.5

    Essential for retrospective weather exploration: reading grib files
    from NOAA GFS archive (analysis data), available since 2004.
    * Cover: worldwide, grid of 1°x1°, 4 files per day.
    * Choose the .grb files whose size is about 20 MB.
    * Reading files is a bit long (it takes memory), all data are not
      recognized, but main data are displayed on the ground and in altitude.

2011-08-17 : zyGrib Version 5.0.4

    Bug fixed : it was impossible to open a meteotable while reading a
                MeteoBlue file.

2011-08-06 : zyGrib Version 5.0.3

    New russian translation (thanks Yaroslav Zavarzin),
    Now ZyGrib can read very poor free grib files from Meteoconsult.
2011-10-04 08:59:02 +00:00
jmmv
ccb260c7dd Update coreutils and gnuls to 8.13 (from the ancient 6.12).
In particular, I am doing this to fix the build under macppc.  6.12 is
just broken on machines that have a 64-bit time_t with a 32-bit long.

All of our local patches seem to have been assimilated upstream... but,
of course, this does not mean new problems won't arise!

This update has been tested on amd64, macppc and OS X 10.6.

* Noteworthy changes in release 8.13 (2011-09-08) [stable]

** Bug fixes

  chown and chgrp with the -v --from= options, now output the correct owner.
  I.E. for skipped files, the original ownership is output, not the new one.
  [bug introduced in sh-utils-2.0g]

  cp -r could mistakenly change the permissions of an existing destination
  directory.  [bug introduced in coreutils-6.8]

  cp -u -p would fail to preserve one hard link for each up-to-date copy
  of a src-hard-linked name in the destination tree.  I.e., if s/a and s/b
  are hard-linked and dst/s/a is up to date, "cp -up s dst" would copy s/b
  to dst/s/b rather than simply linking dst/s/b to dst/s/a.
  [This bug appears to have been present in "the beginning".]

  fts-using tools (rm, du, chmod, chgrp, chown, chcon) no longer use memory
  proportional to the number of entries in each directory they process.
  Before, rm -rf 4-million-entry-directory would consume about 1GiB of memory.
  Now, it uses less than 30MB, no matter how many entries there are.
  [this bug was inherent in the use of fts: thus, for rm the bug was
  introduced in coreutils-8.0.  The prior implementation of rm did not use
  as much memory.  du, chmod, chgrp and chown started using fts in 6.0.
  chcon was added in coreutils-6.9.91 with fts support.  ]

  pr -T no longer ignores a specified LAST_PAGE to stop at.
  [bug introduced in textutils-1.19q]

  printf '%d' '"' no longer accesses out-of-bounds memory in the diagnostic.
  [bug introduced in sh-utils-1.16]

  split --number l/... no longer creates extraneous files in certain cases.
  [bug introduced in coreutils-8.8]

  timeout now sends signals to commands that create their own process group.
  timeout is no longer confused when starting off with a child process.
  [bugs introduced in coreutils-7.0]

  unexpand -a now aligns correctly when there are spaces spanning a tabstop,
  followed by a tab.  In that case a space was dropped, causing misalignment.
  We also now ensure that a space never precedes a tab.
  [bug introduced in coreutils-5.3.0]

** Changes in behavior

  chmod, chown and chgrp now output the original attributes in messages,
  when -v or -c specified.

  cp -au (where --preserve=links is implicit) may now replace newer
  files in the destination, to mirror hard links from the source.

** New features

  date now accepts ISO 8601 date-time strings with "T" as the
  separator.  It has long parsed dates like "2004-02-29 16:21:42"
  with a space between the date and time strings.  Now it also parses
  "2004-02-29T16:21:42" and fractional-second and time-zone-annotated
  variants like "2004-02-29T16:21:42.333-07:00"

  md5sum accepts the new --strict option.  With --check, it makes the
  tool exit non-zero for any invalid input line, rather than just warning.
  This also affects sha1sum, sha224sum, sha384sum and sha512sum.

  split accepts a new --filter=CMD option.  With it, split filters output
  through CMD.  CMD may use the $FILE environment variable, which is set to
  the nominal output file name for each invocation of CMD.  For example, to
  split a file into 3 approximately equal parts, which are then compressed:
    split -n3 --filter='xz > $FILE.xz' big
  Note the use of single quotes, not double quotes.
  That creates files named xaa.xz, xab.xz and xac.xz.

  timeout accepts a new --foreground option, to support commands not started
  directly from a shell prompt, where the command is interactive or needs to
  receive signals initiated from the terminal.

** Improvements

  cp -p now copies trivial NSFv4 ACLs on Solaris 10.  Before, it would
  mistakenly apply a non-trivial ACL to the destination file.

  cp and ls now support HP-UX 11.11's ACLs, thanks to improved support
  in gnulib.

  df now supports disk partitions larger than 4 TiB on MacOS X 10.5
  or newer and on AIX 5.2 or newer.

  join --check-order now prints "join: FILE:LINE_NUMBER: bad_line" for an
  unsorted input, rather than e.g., "join: file 1 is not in sorted order".

  shuf outputs small subsets of large permutations much more efficiently.
  For example `shuf -i1-$((2**32-1)) -n2` no longer exhausts memory.

  stat -f now recognizes the GPFS, MQUEUE and PSTOREFS file system types.

  timeout now supports sub-second timeouts.

** Build-related

  Changes inherited from gnulib address a build failure on HP-UX 11.11
  when using /opt/ansic/bin/cc.

  Numerous portability and build improvements inherited via gnulib.


* Noteworthy changes in release 8.12 (2011-04-26) [stable]

** Bug fixes

  tail's --follow=name option no longer implies --retry on systems
  with inotify support.  [bug introduced in coreutils-7.5]

** Changes in behavior

  cp's extent-based (FIEMAP) copying code is more reliable in the face
  of varying and undocumented file system semantics:
  - it no longer treats unwritten extents specially
  - a FIEMAP-based extent copy always uses the FIEMAP_FLAG_SYNC flag.
      Before, it would incur the performance penalty of that sync only
      for 2.6.38 and older kernels.  We thought all problems would be
      resolved for 2.6.39.
  - it now attempts a FIEMAP copy only on a file that appears sparse.
      Sparse files are relatively unusual, and the copying code incurs
      the performance penalty of the now-mandatory sync only for them.

** Portability

  dd once again compiles on AIX 5.1 and 5.2


* Noteworthy changes in release 8.11 (2011-04-13) [stable]

** Bug fixes

  cp -a --link would not create a hardlink to a symlink, instead
  copying the symlink and then not preserving its timestamp.
  [bug introduced in coreutils-8.0]

  cp now avoids FIEMAP issues with BTRFS before Linux 2.6.38,
  which could result in corrupt copies of sparse files.
  [bug introduced in coreutils-8.10]

  cut could segfault when invoked with a user-specified output
  delimiter and an unbounded range like "-f1234567890-".
  [bug introduced in coreutils-5.3.0]

  du would infloop when given --files0-from=DIR
  [bug introduced in coreutils-7.1]

  sort no longer spawns 7 worker threads to sort 16 lines
  [bug introduced in coreutils-8.6]

  touch built on Solaris 9 would segfault when run on Solaris 10
  [bug introduced in coreutils-8.8]

  wc would dereference a NULL pointer upon an early out-of-memory error
  [bug introduced in coreutils-7.1]

** New features

  dd now accepts the 'nocache' flag to the iflag and oflag options,
  which will discard any cache associated with the files, or
  processed portion thereof.

  dd now warns that 'iflag=fullblock' should be used,
  in various cases where partial reads can cause issues.

** Changes in behavior

  cp now avoids syncing files when possible, when doing a FIEMAP copy.
  The sync is only needed on Linux kernels before 2.6.39.
  [The sync was introduced in coreutils-8.10]

  cp now copies empty extents efficiently, when doing a FIEMAP copy.
  It no longer reads the zero bytes from the input, and also can efficiently
  create a hole in the output file when --sparse=always is specified.

  df now aligns columns consistently, and no longer wraps entries
  with longer device identifiers, over two lines.

  install now rejects its long-deprecated --preserve_context option.
  Use --preserve-context instead.

  test now accepts "==" as a synonym for "="


* Noteworthy changes in release 8.10 (2011-02-04) [stable]

** Bug fixes

  du would abort with a failed assertion when two conditions are met:
  part of the hierarchy being traversed is moved to a higher level in the
  directory tree, and there is at least one more command line directory
  argument following the one containing the moved sub-tree.
  [bug introduced in coreutils-5.1.0]

  join --header now skips the ordering check for the first line
  even if the other file is empty.  [bug introduced in coreutils-8.5]

  rm -f no longer fails for EINVAL or EILSEQ on file systems that
  reject file names invalid for that file system.

  uniq -f NUM no longer tries to process fields after end of line.
  [bug introduced in coreutils-7.0]

** New features

  cp now copies sparse files efficiently on file systems with FIEMAP
  support (ext4, btrfs, xfs, ocfs2).  Before, it had to read 2^20 bytes
  when copying a 1MiB sparse file.  Now, it copies bytes only for the
  non-sparse sections of a file.  Similarly, to induce a hole in the
  output file, it had to detect a long sequence of zero bytes.  Now,
  it knows precisely where each hole in an input file is, and can
  reproduce them efficiently in the output file.  mv also benefits
  when it resorts to copying, e.g., between file systems.

  join now supports -o 'auto' which will automatically infer the
  output format from the first line in each file, to ensure
  the same number of fields are output for each line.

** Changes in behavior

  join no longer reports disorder when one of the files is empty.
  This allows one to use join as a field extractor like:
  join -a1 -o 1.3,1.1 - /dev/null


* Noteworthy changes in release 8.9 (2011-01-04) [stable]

** Bug fixes

  split no longer creates files with a suffix length that
  is dependent on the number of bytes or lines per file.
  [bug introduced in coreutils-8.8]


* Noteworthy changes in release 8.8 (2010-12-22) [stable]

** Bug fixes

  cp -u no longer does unnecessary copying merely because the source
  has finer-grained time stamps than the destination.

  od now prints floating-point numbers without losing information, and
  it no longer omits spaces between floating-point columns in some cases.

  sort -u with at least two threads could attempt to read through a
  corrupted pointer. [bug introduced in coreutils-8.6]

  sort with at least two threads and with blocked output would busy-loop
  (spinlock) all threads, often using 100% of available CPU cycles to
  do no work.  I.e., "sort < big-file | less" could waste a lot of power.
  [bug introduced in coreutils-8.6]

  sort with at least two threads no longer segfaults due to use of pointers
  into the stack of an expired thread. [bug introduced in coreutils-8.6]

  sort --compress no longer mishandles subprocesses' exit statuses,
  no longer hangs indefinitely due to a bug in waiting for subprocesses,
  and no longer generates many more than NMERGE subprocesses.

  sort -m -o f f ... f no longer dumps core when file descriptors are limited.

** Changes in behavior

  sort will not create more than 8 threads by default due to diminishing
  performance gains.  Also the --parallel option is no longer restricted
  to the number of available processors.

** New features

  split accepts the --number option to generate a specific number of files.


* Noteworthy changes in release 8.7 (2010-11-13) [stable]

** Bug fixes

  cp, install, mv, and touch no longer crash when setting file times
  on Solaris 10 Update 9 [Solaris PatchID 144488 and newer expose a
  latent bug introduced in coreutils 8.1, and possibly a second latent
  bug going at least as far back as coreutils 5.97]

  csplit no longer corrupts heap when writing more than 999 files,
  nor does it leak memory for every chunk of input processed
  [the bugs were present in the initial implementation]

  tail -F once again notices changes in a currently unavailable
  remote directory [bug introduced in coreutils-7.5]

** Changes in behavior

  cp --attributes-only now completely overrides --reflink.
  Previously a reflink was needlessly attempted.

  stat's %X, %Y, and %Z directives once again print only the integer
  part of seconds since the epoch.  This reverts a change from
  coreutils-8.6, that was deemed unnecessarily disruptive.
  To obtain a nanosecond-precision time stamp for %X use %.X;
  if you want (say) just 3 fractional digits, use %.3X.
  Likewise for %Y and %Z.

  stat's new %W format directive would print floating point seconds.
  However, with the above change to %X, %Y and %Z, we've made %W work
  the same way as the others.


* Noteworthy changes in release 8.6 (2010-10-15) [stable]

** Bug fixes

  du no longer multiply counts a file that is a directory or whose
  link count is 1, even if the file is reached multiple times by
  following symlinks or via multiple arguments.

  du -H and -L now consistently count pointed-to files instead of
  symbolic links, and correctly diagnose dangling symlinks.

  du --ignore=D now ignores directory D even when that directory is
  found to be part of a directory cycle.  Before, du would issue a
  "NOTIFY YOUR SYSTEM MANAGER" diagnostic and fail.

  split now diagnoses read errors rather than silently exiting.
  [bug introduced in coreutils-4.5.8]

  tac would perform a double-free when given an input line longer than 16KiB.
  [bug introduced in coreutils-8.3]

  tail -F once again notices changes in a currently unavailable directory,
  and works around a Linux kernel bug where inotify runs out of resources.
  [bugs introduced in coreutils-7.5]

  tr now consistently handles case conversion character classes.
  In some locales, valid conversion specifications caused tr to abort,
  while in all locales, some invalid specifications were undiagnosed.
  [bugs introduced in coreutils 6.9.90 and 6.9.92]

** New features

  cp now accepts the --attributes-only option to not copy file data,
  which is useful for efficiently modifying files.

  du recognizes -d N as equivalent to --max-depth=N, for compatibility
  with FreeBSD.

  sort now accepts the --debug option, to highlight the part of the
  line significant in the sort, and warn about questionable options.

  sort now supports -d, -f, -i, -R, and -V in any combination.

  stat now accepts the %m format directive to output the mount point
  for a file.  It also accepts the %w and %W format directives for
  outputting the birth time of a file, if one is available.

** Changes in behavior

  df now consistently prints the device name for a bind mounted file,
  rather than its aliased target.

  du now uses less than half as much memory when operating on trees
  with many hard-linked files.  With --count-links (-l), or when
  operating on trees with no hard-linked files, there is no change.

  ls -l now uses the traditional three field time style rather than
  the wider two field numeric ISO style, in locales where a style has
  not been specified.  The new approach has nicer behavior in some
  locales, including English, which was judged to outweigh the disadvantage
  of generating less-predictable and often worse output in poorly-configured
  locales where there is an onus to specify appropriate non-default styles.
  [The old behavior was introduced in coreutils-6.0 and had been removed
   for English only using a different method since coreutils-8.1]

  rm's -d now evokes an error;  before, it was silently ignored.

  sort -g now uses long doubles for greater range and precision.

  sort -h no longer rejects numbers with leading or trailing ".", and
  no longer accepts numbers with multiple ".".  It now considers all
  zeros to be equal.

  sort now uses the number of available processors to parallelize
  the sorting operation.  The number of sorts run concurrently can be
  limited with the --parallel option or with external process
  control like taskset for example.

  stat now provides translated output when no format is specified.

  stat no longer accepts the --context (-Z) option.  Initially it was
  merely accepted and ignored, for compatibility.  Starting two years
  ago, with coreutils-7.0, its use evoked a warning.  Printing the
  SELinux context of a file can be done with the %C format directive,
  and the default output when no format is specified now automatically
  includes %C when context information is available.

  stat no longer accepts the %C directive when the --file-system
  option is in effect, since security context is a file attribute
  rather than a file system attribute.

  stat now outputs the full sub-second resolution for the atime,
  mtime, and ctime values since the Epoch, when using the %X, %Y, and
  %Z directives of the --format option.  This matches the fact that
  %x, %y, and %z were already doing so for the human-readable variant.

  touch's --file option is no longer recognized.  Use --reference=F (-r)
  instead.  --file has not been documented for 15 years, and its use has
  elicited a warning since coreutils-7.1.

  truncate now supports setting file sizes relative to a reference file.
  Also errors are no longer suppressed for unsupported file types, and
  relative sizes are restricted to supported file types.


* Noteworthy changes in release 8.5 (2010-04-23) [stable]

** Bug fixes

  cp and mv once again support preserving extended attributes.
  [bug introduced in coreutils-8.4]

  cp now preserves "capabilities" when also preserving file ownership.

  ls --color once again honors the 'NORMAL' dircolors directive.
  [bug introduced in coreutils-6.11]

  sort -M now handles abbreviated months that are aligned using blanks
  in the locale database.  Also locales with 8 bit characters are
  handled correctly, including multi byte locales with the caveat
  that multi byte characters are matched case sensitively.

  sort again handles obsolescent key formats (+POS -POS) correctly.
  Previously if -POS was specified, 1 field too many was used in the sort.
  [bug introduced in coreutils-7.2]

** New features

  join now accepts the --header option, to treat the first line of each
  file as a header line to be joined and printed unconditionally.

  timeout now accepts the --kill-after option which sends a kill
  signal to the monitored command if it's still running the specified
  duration after the initial signal was sent.

  who: the "+/-" --mesg (-T) indicator of whether a user/tty is accepting
  messages could be incorrectly listed as "+", when in fact, the user was
  not accepting messages (mesg no).  Before, who would examine only the
  permission bits, and not consider the group of the TTY device file.
  Thus, if a login tty's group would change somehow e.g., to "root",
  that would make it unwritable (via write(1)) by normal users, in spite
  of whatever the permission bits might imply.  Now, when configured
  using the --with-tty-group[=NAME] option, who also compares the group
  of the TTY device with NAME (or "tty" if no group name is specified).

** Changes in behavior

  ls --color no longer emits the final 3-byte color-resetting escape
  sequence when it would be a no-op.

  join -t '' no longer emits an error and instead operates on
  each line as a whole (even if they contain NUL characters).


* Noteworthy changes in release 8.4 (2010-01-13) [stable]

** Bug fixes

  nproc --all is now guaranteed to be as large as the count
  of available processors, which may not have been the case
  on GNU/Linux systems with neither /proc nor /sys available.
  [bug introduced in coreutils-8.1]

** Build-related

  Work around a build failure when using buggy <sys/capability.h>.
  Alternatively, configure with --disable-libcap.

  Compilation would fail on systems using glibc-2.7..2.9 due to changes in
  gnulib's wchar.h that tickled a bug in at least those versions of glibc's
  own <wchar.h> header.  Now, gnulib works around the bug in those older
  glibc <wchar.h> headers.

  Building would fail with a link error (cp/copy.o) when XATTR headers
  were installed without the corresponding library.  Now, configure
  detects that and disables xattr support, as one would expect.


* Noteworthy changes in release 8.3 (2010-01-07) [stable]

** Bug fixes

  cp -p, install -p, mv, and touch -c could trigger a spurious error
  message when using new glibc coupled with an old kernel.
  [bug introduced in coreutils-6.12].

  ls -l --color no longer prints "argetm" in front of dangling
  symlinks when the 'LINK target' directive was given to dircolors.
  [bug introduced in fileutils-4.0]

  pr's page header was improperly formatted for long file names.
  [bug introduced in coreutils-7.2]

  rm -r --one-file-system works once again.
  The rewrite to make rm use fts introduced a regression whereby
  a commmand of the above form would fail for all subdirectories.
  [bug introduced in coreutils-8.0]

  stat -f recognizes more file system types: k-afs, fuseblk, gfs/gfs2, ocfs2,
  and rpc_pipefs. Also Minix V3 is displayed correctly as minix3, not minux3.
  [bug introduced in coreutils-8.1]

  tail -f (inotify-enabled) once again works with remote files.
  The use of inotify with remote files meant that any changes to those
  files that was not done from the local system would go unnoticed.
  [bug introduced in coreutils-7.5]

  tail -F (inotify-enabled) would abort when a tailed file is repeatedly
  renamed-aside and then recreated.
  [bug introduced in coreutils-7.5]

  tail -F (inotify-enabled) could fail to follow renamed files.
  E.g., given a "tail -F a b" process, running "mv a b" would
  make tail stop tracking additions to "b".
  [bug introduced in coreutils-7.5]

  touch -a and touch -m could trigger bugs in some file systems, such
  as xfs or ntfs-3g, and fail to update timestamps.
  [bug introduced in coreutils-8.1]

  wc now prints counts atomically so that concurrent
  processes will not intersperse their output.
  [the issue dates back to the initial implementation]


* Noteworthy changes in release 8.2 (2009-12-11) [stable]

** Bug fixes

  id's use of mgetgroups no longer writes beyond the end of a malloc'd buffer
  [bug introduced in coreutils-8.1]

  id no longer crashes on systems without supplementary group support.
  [bug introduced in coreutils-8.1]

  rm once again handles zero-length arguments properly.
  The rewrite to make rm use fts introduced a regression whereby
  a command like "rm a '' b" would fail to remove "a" and "b", due to
  the presence of the empty string argument.
  [bug introduced in coreutils-8.0]

  sort is now immune to the signal handling of its parent.
  Specifically sort now doesn't exit with an error message
  if it uses helper processes for compression and its parent
  ignores CHLD signals. [bug introduced in coreutils-6.9]

  tail without -f no longer accesses uninitialized memory
  [bug introduced in coreutils-7.6]

  timeout is now immune to the signal handling of its parent.
  Specifically timeout now doesn't exit with an error message
  if its parent ignores CHLD signals. [bug introduced in coreutils-7.6]

  a user running "make distcheck" in the coreutils source directory,
  with TMPDIR unset or set to the name of a world-writable directory,
  and with a malicious user on the same system
  was vulnerable to arbitrary code execution
  [bug introduced in coreutils-5.0]


* Noteworthy changes in release 8.1 (2009-11-18) [stable]

** Bug fixes

  chcon no longer exits immediately just because SELinux is disabled.
  Even then, chcon may still be useful.
  [bug introduced in coreutils-8.0]

  chcon, chgrp, chmod, chown and du now diagnose an ostensible directory cycle
  and arrange to exit nonzero.  Before, they would silently ignore the
  offending directory and all "contents."

  env -u A=B now fails, rather than silently adding A to the
  environment.  Likewise, printenv A=B silently ignores the invalid
  name.  [the bugs date back to the initial implementation]

  ls --color now handles files with capabilities correctly.  Previously
  files with capabilities were often not colored, and also sometimes, files
  without capabilites were colored in error. [bug introduced in coreutils-7.0]

  md5sum now prints checksums atomically so that concurrent
  processes will not intersperse their output.
  This also affected sum, sha1sum, sha224sum, sha384sum and sha512sum.
  [the bug dates back to the initial implementation]

  mktemp no longer leaves a temporary file behind if it was unable to
  output the name of the file to stdout.
  [the bug dates back to the initial implementation]

  nice -n -1 PROGRAM now runs PROGRAM even when its internal setpriority
  call fails with errno == EACCES.
  [the bug dates back to the initial implementation]

  nice, nohup, and su now refuse to execute the subsidiary program if
  they detect write failure in printing an otherwise non-fatal warning
  message to stderr.

  stat -f recognizes more file system types: afs, cifs, anon-inode FS,
  btrfs, cgroupfs, cramfs-wend, debugfs, futexfs, hfs, inotifyfs, minux3,
  nilfs, securityfs, selinux, xenfs

  tail -f (inotify-enabled) now avoids a race condition.
  Before, any data appended in the tiny interval between the initial
  read-to-EOF and the inotify watch initialization would be ignored
  initially (until more data was appended), or forever, if the file
  were first renamed or unlinked or never modified.
  [The race was introduced in coreutils-7.5]

  tail -F (inotify-enabled) now consistently tails a file that has been
  replaced via renaming.  That operation provokes either of two sequences
  of inotify events.  The less common sequence is now handled as well.
  [The bug came with the implementation change in coreutils-7.5]

  timeout now doesn't exit unless the command it is monitoring does,
  for any specified signal. [bug introduced in coreutils-7.0].

** Changes in behavior

  chroot, env, nice, and su fail with status 125, rather than 1, on
  internal error such as failure to parse command line arguments; this
  is for consistency with stdbuf and timeout, and avoids ambiguity
  with the invoked command failing with status 1.  Likewise, nohup
  fails with status 125 instead of 127.

  du (due to a change in gnulib's fts) can now traverse NFSv4 automounted
  directories in which the stat'd device number of the mount point differs
  during a traversal.  Before, it would fail, because such a mismatch would
  usually represent a serious error or a subversion attempt.

  echo and printf now interpret \e as the Escape character (0x1B).

  rm -f /read-only-fs/nonexistent now succeeds and prints no diagnostic
  on systems with an unlinkat syscall that sets errno to EROFS in that case.
  Before, it would fail with a "Read-only file system" diagnostic.
  Also, "rm /read-only-fs/nonexistent" now reports "file not found" rather
  than the less precise "Read-only file system" error.

** New programs

  nproc: Print the number of processing units available to a process.

** New features

  env and printenv now accept the option --null (-0), as a means to
  avoid ambiguity with newlines embedded in the environment.

  md5sum --check now also accepts openssl-style checksums.
  So do sha1sum, sha224sum, sha384sum and sha512sum.

  mktemp now accepts the option --suffix to provide a known suffix
  after the substitution in the template.  Additionally, uses such as
  "mktemp fileXXXXXX.txt" are able to infer an appropriate --suffix.

  touch now accepts the option --no-dereference (-h), as a means to
  change symlink timestamps on platforms with enough support.


* Noteworthy changes in release 8.0 (2009-10-06) [beta]

** Bug fixes

  cp --preserve=xattr and --archive now preserve extended attributes even
  when the source file doesn't have write access.
  [bug introduced in coreutils-7.1]

  touch -t [[CC]YY]MMDDhhmm[.ss] now accepts a timestamp string ending in .60,
  to accommodate leap seconds.
  [the bug dates back to the initial implementation]

  ls --color now reverts to the color of a base file type consistently
  when the color of a more specific type is disabled.
  [bug introduced in coreutils-5.90]

  ls -LR exits with status 2, not 0, when it encounters a cycle

  "ls -is" is now consistent with ls -lis in ignoring values returned
  from a failed stat/lstat.  For example ls -Lis now prints "?", not "0",
  for the inode number and allocated size of a dereferenced dangling symlink.

  tail --follow --pid now avoids a race condition where data written
  just before the process dies might not have been output by tail.
  Also, tail no longer delays at all when the specified pid is not live.
  [The race was introduced in coreutils-7.5,
   and the unnecessary delay was present since textutils-1.22o]

** Portability

  On Solaris 9, many commands would mistakenly treat file/ the same as
  file.  Now, even on such a system, path resolution obeys the POSIX
  rules that a trailing slash ensures that the preceeding name is a
  directory or a symlink to a directory.

** Changes in behavior

  id no longer prints SELinux " context=..." when the POSIXLY_CORRECT
  environment variable is set.

  readlink -f now ignores a trailing slash when deciding if the
  last component (possibly via a dangling symlink) can be created,
  since mkdir will succeed in that case.

** New features

  ln now accepts the options --logical (-L) and --physical (-P),
  added by POSIX 2008.  The default behavior is -P on systems like
  GNU/Linux where link(2) creates hard links to symlinks, and -L on
  BSD systems where link(2) follows symlinks.

  stat: without -f, a command-line argument of "-" now means standard input.
  With --file-system (-f), an argument of "-" is now rejected.
  If you really must operate on a file named "-", specify it as
  "./-" or use "--" to separate options from arguments.

** Improvements

  rm: rewrite to use gnulib's fts
  This makes rm -rf significantly faster (400-500%) in some pathological
  cases, and slightly slower (20%) in at least one pathological case.

  rm -r deletes deep hierarchies more efficiently.  Before, execution time
  was quadratic in the depth of the hierarchy, now it is merely linear.
  However, this improvement is not as pronounced as might be expected for
  very deep trees, because prior to this change, for any relative name
  length longer than 8KiB, rm -r would sacrifice official conformance to
  avoid the disproportionate quadratic performance penalty.  Leading to
  another improvement:

  rm -r is now slightly more standards-conformant when operating on
  write-protected files with relative names longer than 8KiB.


* Noteworthy changes in release 7.6 (2009-09-11) [stable]

** Bug fixes

  cp, mv now ignore failure to preserve a symlink time stamp, when it is
  due to their running on a kernel older than what was implied by headers
  and libraries tested at configure time.
  [bug introduced in coreutils-7.5]

  cp --reflink --preserve now preserves attributes when cloning a file.
  [bug introduced in coreutils-7.5]

  cp --preserve=xattr no longer leaks resources on each preservation failure.
  [bug introduced in coreutils-7.1]

  dd now exits with non-zero status when it encounters a write error while
  printing a summary to stderr.
  [bug introduced in coreutils-6.11]

  dd cbs=N conv=unblock would fail to print a final newline when the size
  of the input was not a multiple of N bytes.
  [the non-conforming behavior dates back to the initial implementation]

  df no longer requires that each command-line argument be readable
  [bug introduced in coreutils-7.3]

  ls -i now prints consistent inode numbers also for mount points.
  This makes ls -i DIR less efficient on systems with dysfunctional readdir,
  because ls must stat every file in order to obtain a guaranteed-valid
  inode number.  [bug introduced in coreutils-6.0]

  tail -f (inotify-enabled) now flushes any initial output before blocking.
  Before, this would print nothing and wait: stdbuf -o 4K tail -f /etc/passwd
  Note that this bug affects tail -f only when its standard output is buffered,
  which is relatively unusual.
  [bug introduced in coreutils-7.5]

  tail -f once again works with standard input.  inotify-enabled tail -f
  would fail when operating on a nameless stdin.  I.e., tail -f < /etc/passwd
  would say "tail: cannot watch `-': No such file or directory", yet the
  relatively baroque tail -f /dev/stdin < /etc/passwd would work.  Now, the
  offending usage causes tail to revert to its conventional sleep-based
  (i.e., not inotify-based) implementation.
  [bug introduced in coreutils-7.5]

** Portability

  ln, link: link f z/ would mistakenly succeed on Solaris 10, given an
  existing file, f, and nothing named "z".  ln -T f z/ has the same problem.
  Each would mistakenly create "z" as a link to "f".  Now, even on such a
  system, each command reports the error, e.g.,
  link: cannot create link `z/' to `f': Not a directory

** New features

  cp --reflink accepts a new "auto" parameter which falls back to
  a standard copy if creating a copy-on-write clone is not possible.

** Changes in behavior

  tail -f now ignores "-" when stdin is a pipe or FIFO.
  tail-with-no-args now ignores -f unconditionally when stdin is a pipe or FIFO.
  Before, it would ignore -f only when no file argument was specified,
  and then only when POSIXLY_CORRECT was set.  Now, :|tail -f - terminates
  immediately.  Before, it would block indefinitely.


* Noteworthy changes in release 7.5 (2009-08-20) [stable]

** Bug fixes

  dd's oflag=direct option now works even when the size of the input
  is not a multiple of e.g., 512 bytes.

  dd now handles signals consistently even when they're received
  before data copying has started.

  install runs faster again with SELinux enabled
  [introduced in coreutils-7.0]

  ls -1U (with two or more arguments, at least one a nonempty directory)
  would print entry names *before* the name of the containing directory.
  Also fixed incorrect output of ls -1RU and ls -1sU.
  [introduced in coreutils-7.0]

  sort now correctly ignores fields whose ending position is specified
  before the start position. Previously in numeric mode the remaining
  part of the line after the start position was used as the sort key.
  [This bug appears to have been present in "the beginning".]

  truncate -s failed to skip all whitespace in the option argument in
  some locales.

** New programs

  stdbuf: A new program to run a command with modified stdio buffering
  for its standard streams.

** Changes in behavior

  ls --color: files with multiple hard links are no longer colored differently
  by default. That can be enabled by changing the LS_COLORS environment
  variable. You can control that using the MULTIHARDLINK dircolors input
  variable which corresponds to the 'mh' LS_COLORS item. Note these variables
  were renamed from 'HARDLINK' and 'hl' which were available since
  coreutils-7.1 when this feature was introduced.

** Deprecated options

  nl --page-increment: deprecated in favor of --line-increment, the new option
  maintains the previous semantics and the same short option, -i.

** New features

  chroot now accepts the options --userspec and --groups.

  cp accepts a new option, --reflink: create a lightweight copy
  using copy-on-write (COW).  This is currently only supported within
  a btrfs file system.

  cp now preserves time stamps on symbolic links, when possible

  sort accepts a new option, --human-numeric-sort (-h): sort numbers
  while honoring human readable suffixes like KiB and MB etc.

  tail --follow now uses inotify when possible, to be more responsive
  to file changes and more efficient when monitoring many files.


* Noteworthy changes in release 7.4 (2009-05-07) [stable]

** Bug fixes

  date -d 'next mon', when run on a Monday, now prints the date
  7 days in the future rather than the current day.  Same for any other
  day-of-the-week name, when run on that same day of the week.
  [This bug appears to have been present in "the beginning". ]

  date -d tuesday, when run on a Tuesday -- using date built from the 7.3
  release tarball, not from git -- would print the date 7 days in the future.
  Now, it works properly and prints the current date.  That was due to
  human error (including not-committed changes in a release tarball)
  and the fact that there is no check to detect when the gnulib/ git
  submodule is dirty.

** Build-related

  make check: two tests have been corrected

** Portability

  There have been some ACL-related portability fixes for *BSD,
  inherited from gnulib.


* Noteworthy changes in release 7.3 (2009-05-01) [stable]

** Bug fixes

  cp now diagnoses failure to preserve selinux/xattr attributes when
  --preserve=context,xattr is specified in combination with -a.
  Also, cp no longer suppresses attribute-preservation diagnostics
  when preserving SELinux context was explicitly requested.

  ls now aligns output correctly in the presence of abbreviated month
  names from the locale database that have differing widths.

  ls -v and sort -V now order names like "#.b#" properly

  mv: do not print diagnostics when failing to preserve xattr's on file
  systems without xattr support.

  sort -m no longer segfaults when its output file is also an input file.
  E.g., with this, touch 1; sort -m -o 1 1, sort would segfault.
  [introduced in coreutils-7.2]

** Changes in behavior

  shred, sort, shuf: now use an internal pseudorandom generator by default.
  This is mainly noticable in shred where the 3 random passes it does by
  default should proceed at the speed of the disk.  Previously /dev/urandom
  was used if available, which is relatively slow on GNU/Linux systems.

** Improved robustness

  cp would exit successfully after copying less than the full contents
  of a file larger than ~4000 bytes from a linux-/proc file system to a
  destination file system with a fundamental block size of 4KiB or greater.
  Reading into a 4KiB-or-larger buffer, cp's "read" syscall would return
  a value smaller than 4096, and cp would interpret that as EOF (POSIX
  allows this).  This optimization, now removed, saved 50% of cp's read
  syscalls when copying small files.  Affected linux kernels: at least
  2.6.9 through 2.6.29.
  [the optimization was introduced in coreutils-6.0]

** Portability

  df now pre-mounts automountable directories even with automounters for
  which stat-like syscalls no longer provoke mounting.  Now, df uses open.

  `id -G $USER` now works correctly even on Darwin and NetBSD. Previously it
  would either truncate the group list to 10, or go into an infinite loop,
  due to their non-standard getgrouplist implementations.
  [truncation introduced in coreutils-6.11]
  [infinite loop introduced in coreutils-7.1]


* Noteworthy changes in release 7.2 (2009-03-31) [stable]

** New features

  pwd now accepts the options --logical (-L) and --physical (-P).  For
  compatibility with existing scripts, -P is the default behavior
  unless POSIXLY_CORRECT is requested.

** Bug fixes

  cat once again immediately outputs data it has processed.
  Previously it would have been buffered and only output if enough
  data was read, or on process exit.
  [bug introduced in coreutils-6.0]

  comm's new --check-order option would fail to detect disorder on any pair
  of lines where one was a prefix of the other.  For example, this would
  fail to report the disorder: printf 'Xb\nX\n'>k; comm --check-order k k
  [bug introduced in coreutils-7.0]

  cp once again diagnoses the invalid "cp -rl dir dir" right away,
  rather than after creating a very deep dir/dir/dir/... hierarchy.
  The bug strikes only with both --recursive (-r, -R) and --link (-l).
  [bug introduced in coreutils-7.1]

  ls --sort=version (-v) sorted names beginning with "." inconsistently.
  Now, names that start with "." are always listed before those that don't.

  pr: fix the bug whereby --indent=N (-o) did not indent header lines
  [bug introduced in coreutils-6.9.90]

  sort now handles specified key ends correctly.
  Previously -k1,1b would have caused leading space from field 2 to be
  included in the sort while -k2,3.0 would have not included field 3.

** Changes in behavior

  cat,cp,install,mv,split: these programs now read and write a minimum
  of 32KiB at a time.  This was seen to double throughput when reading
  cached files on GNU/Linux-based systems.

  cp -a now tries to preserve extended attributes (xattr), but does not
  diagnose xattr-preservation failure.  However, cp --preserve=all still does.

  ls --color: hard link highlighting can be now disabled by changing the
  LS_COLORS environment variable. To disable it you can add something like
  this to your profile: eval `dircolors | sed s/hl=[^:]*:/hl=:/`


* Noteworthy changes in release 7.1 (2009-02-21) [stable]

** New features

  Add extended attribute support available on certain filesystems like ext2
  and XFS.
    cp: Tries to copy xattrs when --preserve=xattr or --preserve=all specified
    mv: Always tries to copy xattrs
    install: Never copies xattrs

  cp and mv accept a new option, --no-clobber (-n): silently refrain
  from overwriting any existing destination file

  dd accepts iflag=cio and oflag=cio to open the file in CIO (concurrent I/O)
  mode where this feature is available.

  install accepts a new option, --compare (-C): compare each pair of source
  and destination files, and if the destination has identical content and
  any specified owner, group, permissions, and possibly SELinux context, then
  do not modify the destination at all.

  ls --color now highlights hard linked files, too

  stat -f recognizes the Lustre file system type

** Bug fixes

  chgrp, chmod, chown --silent (--quiet, -f) no longer print some diagnostics
  [bug introduced in coreutils-5.1]

  cp uses much less memory in some situations

  cp -a now correctly tries to preserve SELinux context (announced in 6.9.90),
  doesn't inform about failure, unlike with --preserve=all

  du --files0-from=FILE no longer reads all of FILE into RAM before
  processing the first file name

  seq 9223372036854775807 9223372036854775808 now prints only two numbers
  on systems with extended long double support and good library support.
  Even with this patch, on some systems, it still produces invalid output,
  from 3 to at least 1026 lines long. [bug introduced in coreutils-6.11]

  seq -w now accounts for a decimal point added to the last number
  to correctly print all numbers to the same width.

  wc --files0-from=FILE no longer reads all of FILE into RAM, before
  processing the first file name, unless the list of names is known
  to be small enough.

** Changes in behavior

  cp and mv: the --reply={yes,no,query} option has been removed.
  Using it has elicited a warning for the last three years.

  dd: user specified offsets that are too big are handled better.
  Previously, erroneous parameters to skip and seek could result
  in redundant reading of the file with no warnings or errors.

  du: -H (initially equivalent to --si) is now equivalent to
  --dereference-args, and thus works as POSIX requires

  shred: now does 3 overwrite passes by default rather than 25.

  ls -l now marks SELinux-only files with the less obtrusive '.',
  rather than '+'.  A file with any other combination of MAC and ACL
  is still marked with a '+'.


* Noteworthy changes in release 7.0 (2008-10-05) [beta]

** New programs

  timeout: Run a command with bounded time.
  truncate: Set the size of a file to a specified size.

** New features

  chgrp, chmod, chown, chcon, du, rm: now all display linear performance,
  even when operating on million-entry directories on ext3 and ext4 file
  systems.  Before, they would exhibit O(N^2) performance, due to linear
  per-entry seek time cost when operating on entries in readdir order.
  Rm was improved directly, while the others inherit the improvement
  from the newer version of fts in gnulib.

  comm now verifies that the inputs are in sorted order.  This check can
  be turned off with the --nocheck-order option.

  comm accepts new option, --output-delimiter=STR, that allows specification
  of an output delimiter other than the default single TAB.

  cp and mv: the deprecated --reply=X option is now also undocumented.

  dd accepts iflag=fullblock to make it accumulate full input blocks.
  With this new option, after a short read, dd repeatedly calls read,
  until it fills the incomplete block, reaches EOF, or encounters an error.

  df accepts a new option --total, which produces a grand total of all
  arguments after all arguments have been processed.

  If the GNU MP library is available at configure time, factor and
  expr support arbitrarily large numbers.  Pollard's rho algorithm is
  used to factor large numbers.

  install accepts a new option --strip-program to specify the program used to
  strip binaries.

  ls now colorizes files with capabilities if libcap is available

  ls -v now uses filevercmp function as sort predicate (instead of strverscmp)

  md5sum now accepts the new option, --quiet, to suppress the printing of
  'OK' messages.  sha1sum, sha224sum, sha384sum, and sha512sum accept it, too.

  sort accepts a new option, --files0-from=F, that specifies a file
  containing a null-separated list of files to sort.  This list is used
  instead of filenames passed on the command-line to avoid problems with
  maximum command-line (argv) length.

  sort accepts a new option --batch-size=NMERGE, where NMERGE
  represents the maximum number of inputs that will be merged at once.
  When processing more than NMERGE inputs, sort uses temporary files.

  sort accepts a new option --version-sort (-V, --sort=version),
  specifying that ordering is to be based on filevercmp.

** Bug fixes

  chcon --verbose now prints a newline after each message

  od no longer suffers from platform bugs in printf(3).  This is
  probably most noticeable when using 'od -tfL' to print long doubles.

  seq -0.1 0.1 2 now prints 2,0 when locale's decimal point is ",".
  Before, it would mistakenly omit the final number in that example.

  shuf honors the --zero-terminated (-z) option, even with --input-range=LO-HI

  shuf --head-count is now correctly documented.  The documentation
  previously claimed it was called --head-lines.

** Improvements

  Improved support for access control lists (ACLs): On MacOS X, Solaris 7..10,
  HP-UX 11, Tru64, AIX, IRIX 6.5, and Cygwin, "ls -l" now displays the presence
  of an ACL on a file via a '+' sign after the mode, and "cp -p" copies ACLs.

  join has significantly better performance due to better memory management

  ls now uses constant memory when not sorting and using one_per_line format,
  no matter how many files are in a given directory.  I.e., to list a directory
  with very many files, ls -1U is much more efficient.

  od now aligns fields across lines when printing multiple -t
  specifiers, and no longer prints fields that resulted entirely from
  padding the input out to the least common multiple width.

** Changes in behavior

  stat's --context (-Z) option has always been a no-op.
  Now it evokes a warning that it is obsolete and will be removed.
2011-10-03 16:17:08 +00:00
agc
bc0b71cb05 Don't define our own dprintf() function in the package; it can clash
with a libc function of the same name.  Use SUBST to modify the
function name.
2011-10-03 05:02:48 +00:00
dholland
5c5c0ed45b Remove curl/types.h; fixes build with recent curl. 2011-10-03 02:56:53 +00:00
dholland
60cec20e73 perl:build -> perl:run; add Python and Ruby. Use REPLACE_PERL,
REPLACE_PYTHON, and REPLACE_RUBY. PKGREVISION -> 12.
2011-10-03 01:34:05 +00:00
wiz
0922371859 Remove packages scheduled to be deleted according to the pkgsrc-2011Q2
release notes.
2011-10-02 14:11:51 +00:00
markd
4aaa60aae8 Fix build with gcc45 and current boost libs. 2011-10-02 04:35:03 +00:00
markd
552034deee Fix build with gcc45 and current boost libs 2011-10-02 04:32:22 +00:00
wiz
9ef4591b83 Fix build on NetBSD-current (getline). 2011-09-29 20:22:26 +00:00
joerg
7553630c56 Transitive closure for RUBY_VERSION_SUPPORTED=18. 2011-09-21 21:40:20 +00:00
mef
6c23f34e2b Following commit based on PR pkg/43967. Ok'ed by uebayasi@
(I have added 'LICENSE=        gnu-gpl-v2a' after that)

List of Changes:
	-elscreen-1.4.5
	+elscreen-1.4.6

	+elscreen-color-theme-0.0.0.tar.gz

	-elscreen-gf-1.5.2.tar.gz
	+elscreen-gf-1.5.3.tar.gz

	-elscreen-howm-0.1.0.tar.gz
	+elscreen-howm-0.1.3.tar.gz

	-elscreen-server-0.0.1.tar.gz
	+elscreen-server-0.2.0.tar.gz

	-elscreen-wl-0.7.0.tar.gz
	+elscreen-wl-0.8.0.tar.gz

elscreen-1.4.6/ChangeLog
-------------------------
2007-12-30  Naoto Morishima  <naoto@morishima.net>

        ElScreen 1.4.6 released.

2007-12-29  Naoto Morishima  <naoto@morishima.net>

        * elscreen.el (elscreen-delete-frame-confs): Don't call
        elscreen-notify-screen-modification which potentially causes an
        error when frame has been created via make-frame-on-display.

2007-11-22  Naoto Morishima  <naoto@morishima.net>

        * elscreen.el (elscreen-display-tab): Change type from boolean to
        choice of boolean and integer.  t means display with automatic
        width calculation, and integer means display with fixed width.
        (elscreen-tab-width): Removed.
        (elscreen-e21-tab-width,elscreen-xmas-tab-width): New functions.
        (elscreen-e21-tab-update,elscreen-xmas-tab-update): Use them.
        (elscreen-default-window-configuration): Set dedicated-p of
        selected-window to nil instead of splitting it.

2007-11-21  Naoto Morishima  <naoto@morishima.net>

        * elscreen.el (elscreen-default-window-configuration): Split
        window first to avoid error in case that the selected window is
        dedicated.
        (elscreen-copy-tree-1, elscreen-copy-tree): Split
        elscreen-copy-tree to two functions, backported from trunk.
        (elscreen-save-screen-excursion)
        (elscreen-notify-screen-modification-suppress)
        (elscreen-screen-modified-hook-setup)
        (elscreen-get-alist-to-nickname): Eliminate old-style backquotes,
        backported from trunk.
        (elscreen-get-alist-to-nickname): Define as subst instead of
        macro, backported from trunk.
        (elscreen-get-screen-to-name-alist): Rewritten to improve
        performance, backported from trunk.
        (elscreen-kill-internal): Returns killed screen, backported from
        trunk.
        (elscreen-tab-display-kill-screen): Now it's used to set the
        location of the icon to kill a screen.  Possible values are:
        'left, 'right and nil (to hide icons). Backported from trunk.
        (elscreen-e21-tab-create-keymap): Take arguments forming a
        sequence of KEY FUNCTION pairs, backported from trunk.
        (elscreen-e21-tab-update): Follow above changes, and M-mouse-1 on
        the icon [X] now calls elscreen-kill-screen-and-buffers.
2011-09-17 12:02:17 +00:00
minskim
09e547fbfd Make tmux build on Darwin/amd64.
Patches from tmux Subversion Revisions 2565 and 2568.
2011-09-16 05:18:57 +00:00
obache
6b21e3b35c Bump PKGREVISION from RUBY_VERSION_DEFAULT changes. 2011-09-16 02:26:44 +00:00
taca
79b6161ded Update misc/ruby-commander package to 4.0.6.
4.0.6 / 2011-09-15
==================

  * Improved load time on Ruby 1.9. (thanks to Jonathon M. Abbott)
  * Updated documentation.
2011-09-15 21:59:13 +00:00
wiz
b3f04d98d7 Update to 0.19.1:
Gaupol 0.19.1
=============

 * Fix gettext initialization in aeidon package to not make global
   changes (Olivier Aubert, Osmo Salomaa, Debian bug #639668)
 * Fix speech recognition advance length handling so that subtitles
   don't start too early
 * Update Russian translation (Alexandre Prokoudine)
2011-09-12 19:10:55 +00:00
drochner
ebd95d3a26 update to 0.8.17
changes: plug leaks
2011-09-08 20:11:54 +00:00
wiz
7bb01a7c52 Improve COMMENT, suggested by Snader_LB. 2011-09-06 20:39:50 +00:00
gson
1ccbae5421 Update misc/py-anita to 1.23. Changes since 1.21:
Support qemu 0.15, where the output of the "info block" monitor
command has backwards-incompatibly changed to no longer include a
"type" field.

New command line option "--memory-size".
2011-09-05 14:47:54 +00:00
taca
eef5ee8597 Update rubygems package to 1.8.10.
=== 1.8.10 / 2011-08-25

RubyGems 1.8.10 contains a security fix that prevents malicious gems from
executing code when their specification is loaded.  See
https://github.com/rubygems/rubygems/pull/165 for details.

* 5 bug fixes:

  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
    and %q to prevent code injection.  Issue #165 by Postmodern
  * RubyGems attempt to activate the psych gem now to obtain bugfixes from
    psych.
  * Gem.dir has been restored to the front of Gem.path.  Fixes remaining
    problem with Issue #115
  * Fixed Syck DefaultKey infecting ruby-format specifications.
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
2011-09-04 17:05:13 +00:00
alnsn
8f38725992 Add missing zlib dependency. Fixes Linux build. 2011-09-03 20:35:48 +00:00
obache
0e9313f099 Update dvtm to 0.6.
PR#45315 by Bug Hunting.

Changes include:

 - window content buffering upon resize, this actually improves
    usability quite a bit. Thanks to Niki Yoshiuchi for the initial
    patch

 - multiplexing mode, press MOD+a and your keystrokes will be sent
    to all non minimized windows. Could be handy if you have to do
    something interactive simultaneously on multiple servers.

 - a bug fix which should prevent leaking open file descriptors
2011-08-31 12:54:58 +00:00
hiramatsu
3916d00ab8 Allow bbdb to be built with emacs23nox. 2011-08-29 02:55:30 +00:00
taca
781e47d3ea Update rubygems package to 1.8.9.
=== 1.8.9 / 2011-08-23

* Bug fixes:

  * Fixed uninstalling multiple gems using `gem uninstall`
  * Gem.use_paths splatted to take multiple paths!  Issue #148

=== 1.8.8 / 2011-08-11

* Bug fix:
  * The encoding of a gem's YAML spec is now UTF-8.  Issue #149
2011-08-25 15:15:44 +00:00
wiz
65e4d88ad2 Fix build with gcc-4.5.
Include desktopdb.mk.
Bump PKGREVISION.
2011-08-22 11:24:06 +00:00
gson
10da3c115b Update misc/py-anita from 1.18 to 1.21. Changes:
Add a LICENSE definition to the package makefile.

- 1.21 released -

Disk images no longer contain holes, making them easier to use with
vnd(4).  Partially based on patch from Vladimir Kirillov.

Increase the default disk size from 512M to 768M, as 512M is no longer
sufficient for amd64.

- 1.20 released -

Run df before and after the ATF tests so that disk usage data
can be gathered from the test logs.

Increase the default timeout for the ATF test from 1 hour to 2 hours
as the number of tests has now increased to a point where 1 hour is
not always enough even on a fast machine.

Increase the timeout for the set extraction phase from 1200 to 2400
seconds; the extra time is needed when installing a system built
without optimization.

- 1.19 released -

Rename the --qemu-args option to --vmm-args in preparation for adding
support for other virtual machine monitors in addition to qemu.

Fix typos found by Antti Kantee and Jean-Yves Migeon.

Deprecate the --qemu-args -no-kvm-irqchip workaround, as it doesn't
quite work.

Add support for MacOS X hosts, from Jeff Rizzo.

New command line option "--test-timeout".

Deal with yet another seemingly nondeterministic "Press enter to
continue" prompt.
2011-08-21 13:09:51 +00:00
wiz
f9d1259621 Build fix: add -std=c++0x to the compiler flags for gcc-4.4+. 2011-08-20 21:33:27 +00:00
tnn
47cb72a928 Bump revision due to dependency name change. 2011-08-20 13:10:25 +00:00
obache
d58aaee290 Drop xulrunner-2 patches and switch to use xulrunner192.
xulrunner>2 drop support of gtkmozembed, and not usable.

Bump PKGREVISION.
2011-08-20 08:41:52 +00:00
obache
104da0de3c Drop dependency on p5-Test-Simple.
Base perl contains sufficient Test::More module.

Bump PKGREVISION.
2011-08-19 01:11:29 +00:00
jmmv
3f4f76f03a Update to 1.5:
The official list of changes is shown below.  However, this release also
switches to use GNU Autoconf and Automake, yet this is not shown in the
list of changes.  This fact obsoletes our previous local changes, although
new portability problems might arise.

CHANGES FROM 1.4 TO 1.5, 09 July 2011

* Support xterm mouse modes 1002 and 1003.
* Change from a per-session stack of buffers to one global stack. This renders
  copy-buffer useless and makes buffer-limit now a server option.
* Fix most-recently-used choice by avoiding reset the activity timer for
  unattached sessions every second.
* Add a -P option to new-window and split-window to print the new window or
  pane index in target form (useful to pass it into other commands).
* Handle a # at the end of a replacement string (such as status-left)
  correctly.
* Support for UTF-8 mouse input (\033[1005h) which was added in xterm 262.
  If the new mouse-utf8 option is on, UTF-8 mouse input is enabled for all
  UTF-8 terminals. The option defaults to on if LANG etc are set in the same
  manner as the utf8 option.
* Support for HP-UX.
* Accept colours of the hex form #ffffff and translate to the nearest from the
  xterm(1) 256-colour set.
* Clear the non-blocking IO flag (O_NONBLOCK) on the stdio file descriptors
  before closing them (fixes things like "tmux ls && cat").
* Use TMPDIR if set.
* Fix next and previous session functions to actually work.
* Support -x and -y for new-session to specify the initial size of the window
  if created detached with -d.
* Make bind-key accept characters with the top-bit-set and print them as octal.
* Set $TMUX without the session when background jobs are run.
* Simplify the way jobs work and drop the persist type, so all jobs are
  fire-and-forget.
* Accept tcgetattr/tcsetattr(3) failure, fixes problems with fatal() if the
  terminal disappears while locked.
* Add a -P option to detach to HUP the client's parent process (usually causing
  it to exit as well).
* Support passing through escape sequences to the underlying terminal by using
  DCS with a "tmux;" prefix.
* Prevent tiled producing a corrupt layout when only one column is needed.
* Give each pane created in a tmux server a unique id (starting from 0), put it
  in the TMUX_PANE environment variable and accept it as a target.
* Allow a start and end line to be specified for capture-pane which may be
  negative to capture part of the history.
* Add -a and -s options to lsp to list all panes in the server or session
  respectively. Likewise add -s to lsw.
* Change -t on display-message to be target-pane for the #[A-Z] replacements
  and add -c as target-client.
* The attach-session command now prefers the most recently used unattached
  session.
* Add -s option to detach-client to detach all clients attached to a session.
* Add -t to list-clients.
* Change window with mouse wheel over status line if mouse-select-window is on.
* When mode-mouse is on, automatically enter copy mode when the mouse is
  dragged or the mouse wheel is used. Also exit copy mode when the mouse wheel
  is scrolled off the bottom.
* Provide #h character pair for short hostname (no domain).
* Don't use strnvis(3) for the title as it breaks UTF-8.
* Use the tsl and fsl terminfo(5) capabilities to update terminal title and
  automatically fill them in on terminals with the XT capability (which means
  their title setting is xterm-compatible).
* Add a new option, mouse-resize-pane. When on, panes may be resized by
  dragging their borders.
* Fix crash by resetting last pane on {break,swap}-pane across windows.
* Add three new copy-mode commands - select-line, copy-line, copy-end-of-line.
* Support setting the xterm clipboard when copying from copy mode using the
  xterm escape sequence for the purpose (if xterm is configured to allow it).
* Support xterm(1) cursor colour change sequences through terminfo(5) Cc
  (set) and Cr (reset) extensions.
* Support DECSCUSR sequence to set the cursor style with two new terminfo(5)
  extensions, Cs and Csr.
* Make the command-prompt custom prompts recognize the status-left option
  character pairs.
* Add a respawn-pane command.
* Add a couple of extra xterm-style keys that gnome terminal provides.
* Allow the initial context on prompts to be set with the new -I option to
  command-prompt. Include the current window and session name in the prompt
  when renaming and add a new key binding ($) for rename session.
* Option bell-on-alert added to trigger the terminal bell when there is an
  alert.
* Change the list-keys format so that it shows the keys using actual tmux
  commands which should be able to be directly copied into the config file.
* Show full targets for lsp/lsw -a.
* Make confirm-before prompt customizable with -p option like command-prompt
  and add the character pairs #W and #P to the default kill-{pane,window}
  prompts.
* Avoid sending data to suspended/locked clients.
* Small memory leaks in error paths plugged.
* Vi mode improvements.
2011-08-17 16:57:18 +00:00
taca
220552018e Update ruby-bundler package to 1.0.18.
## 1.0.18 (Aug 16, 2011)

Bugfixes:

  - Fix typo in DEBUG_RESOLVER (@geemus)
  - Fixes rake 0.9.x warning (@mtylty, #1333)

Features:

  - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
  - Support hidden gemspec (@trans, @cldwalker, #827)
  - Make fetch_specs faster (@zeha, #1294)
  - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
2011-08-17 13:30:09 +00:00
obache
bb3696f957 Revision bump after updating perl5 to 5.14.1. 2011-08-14 12:59:47 +00:00
apb
ea49bf4106 Make this build with recent compilers: Include <stdio.h> and
<stdlib.h>, remove local declarations of things that are declared
standard headers, and explicilty declare a function to return int.

Bump PKGREVISION to 1.

Both the old and new patch-aa do the same thing, despite looking
so different.  The new one was produced by mkpatches.
2011-08-13 09:09:00 +00:00
taca
2bb7499857 Add dependency to hoe package due to rubygems.
Bump PKGREVISION.
2011-08-12 17:04:45 +00:00
taca
758bcbc875 Update misc/ruby-launchy package to 2.0.5.
== Version 2.0.5 - 2011-07-24

* Fix the case where $BROWSER is set and no *nix desktop was found
  (copiousfreetime/launchy#33)

== Version 2.0.4 - 2011-07-23

* Fix windows 'start' commandline (copiousfreetime/launchy#5)
* Add capability to open local files with no file: scheme present
  (copiousfreetime/launchy#29)
* Added 'rake how_to_contribute' task (copiousfreetime/launchy#30)
* Make better decisions on when to do shell escaping
  (copiousfreetime/launchy#31)
* Switch to Addressable::URI so UTF-8 urls may be
  parsed. (copiousfreetime/launchy#32)

== Version 2.0.3 - 2011-07-17

* Add in Deprecated API wrappers that warn the user

== Version 2.0.2 - 2011-07-17

* Typo fixes from @mtorrent
* Documentation updates explicitly stating the Public API
* Increase test coverage

== Version 2.0.1 - 2011-07-16

* Almost a complete rewrite
* JRuby Support
* Organization is such that it will be easier to add additional applications
* Windows behavior possibly fixed, again

== Version 1.0.0 - 2011-03-17

* Add JRuby support (Stephen Judkins)
* Remove unused Paths module
* Switch to using bones
* Switch to use minitest
* NOTE, this version was never released.
2011-08-12 16:59:14 +00:00
taca
488b51cc20 Update misc/ruby-configuration pacakge to 1.3.1.
Unknown but some bug fixes?
2011-08-12 16:57:55 +00:00
taca
1298e0da7e Update misc/ruby-commander package to 4.0.5.
4.0.5 / 2011-08-09
==================

  * Updated documentation to fix inaccuracies and unclear information.
  * Improved rake tasks for gem development.
  * Added say_ok, say_warning and say_error methods to print messages in green, yellow or red. (thanks to Simon Courtois)
  * Fixed; Allow global options to be passed in any order, even mixed with command options. (thanks to Rich Grundy)
  * Fixed; Global options can be passed before or after the command, they can even be mixed with command options. Closes #8. (thanks to Rich Grundy)
  * Fixed; Platform test should now correctly identify JRuby. (thanks to Justin Lynn)
  * Fixed; Add to_s to exceptions as option parser no longer does implicit conversion. (thanks to Justin Lynn)
2011-08-12 16:57:00 +00:00
taca
3230c3afef Add a comment to patch. 2011-08-12 16:56:10 +00:00
taca
a5e4dfa8a8 Update misc/ruby-columnize package to 0.3.4.
0.3.4 July 4, 2011

- Change to Ruby License
- Add option 'term_adjust' to ignore terminal sequences in text
- Add :ljust => :auto to decide whether or not to automatically
  left or right justify. When passing a hash parameter, the default
  is :auto.
2011-08-12 16:55:01 +00:00
taca
ccee8a0003 Update misc/ruby-bundler package to 1.0.17.
## 1.0.17 (Aug 8, 2011)

Bugfixes:

  - Fix rake issues with rubygems 1.3.x (#1342)
  - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)

## 1.0.16 (Aug 8, 2011)

Features:

  - Performance fix for MRI 1.9 (@efficientcloud, #1288)
  - Shortcuts (like `bundle i`) for all commands (@amatsuda)
  - Correcly identify missing child dependency in error message

Bugfixes:

  - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
  - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
  - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
  - Fix `bundle install --without` on kiji (@tmm1, #1287)
  - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)

Documentation:

  - Documentation for `gem ..., :require => false` (@kmayer, #1292)
  - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
2011-08-12 16:53:37 +00:00
taca
be534e75e1 Update rubygems package to 1.8.7 with adding compatibility to read
older gemspec files.

Changes are too may to write here, please refer History.txt file.
2011-08-12 15:50:44 +00:00
wiz
287fc93b07 Update to 0.19:
(speech recognition support not yet packaged -- needs
gst plugins vader + pocketsphinx; the latter depends on
cmusphinx)

Gaupol 0.19
===========

 * Add speech recognition to allow generating subtitles from video
   http://live.gnome.org/Gaupol/SpeechRecognition
 * Fix installation of custom-framerates extension
 * Add optional dependency on gst-python (this also implies a
   dependency on one or more of gst-plugins-base, gst-plugins-good,
   gst-plugins-ugly, gst-plugins-bad, gst-ffmpeg depending on what
   video and audio formats are being used)
   http://gstreamer.freedesktop.org/
 * Add optional dependency on pocketsphinx
   http://cmusphinx.sourceforge.net/
 * Add gaupol-i18n mailing list for translators
 * Update Spanish translation (Carlos Mella)
 * Update Hungarian translation (Andrássy László)
2011-08-06 11:36:30 +00:00
tnn
7470027a53 Need string.h for strdup. (same fix as patch-aj, but for x86-64) 2011-07-31 22:08:49 +00:00
plunky
ab56e01531 bump pkgrevision for zyGrib-5.0.2 2011-07-30 21:29:25 +00:00
plunky
6a513cb17b update to zyGrib 5.0.2, changelog is
2011-07-15 : zyGrib Version 5.0.2

    Reading of grib files from the Norwegian Meteorological Institute,
      available here: yr.no
    Limitations:
        displays weather data (wind, pressure, temperature, precipitation)
	 and waves but not other oceanographic data available in these files
	 (salinity, currents, etc.).
        files curr4km-skagerak.grb et ggeo-Oslofjord00.grb do not contain
	 data viewable by zygrib.
    Some minor bugs fixed (there is still much).

2011-07-14 : zyGrib Version 5.0.1

    Translations updated: czech (Pavel Kalian), dutch (Reinout de Groen),
      spanish (Luis Mederos) et frenglish (Jacques).
    Bug fixed: data waves were forgotten when exporting a météotable in
      spreadsheet format.
    Bug fixed : update headers when meteotable list of data is changed
      (had to close the meteotable).
    Some minor bugs fixed (don't worry, much remains).

2011-06-29 : zyGrib Version 5.0

    The Waves !!!
2011-07-30 21:27:36 +00:00
ryoon
655bc49311 Update to 3.0.2
Changelog:
2011-07-16  Zachary Dovel <pizzach@gmail.com>
* Fixed warning coming from a tooltip window not being empting when adding
  an hbox to it.
* Tweaks to the mutexes that were causing the program to freeze and
  choppy query input.
2011-07-23 02:54:57 +00:00
mrg
cea519f72c - apply some "const" so this builds with new bison; from jakllsch
- include <string.h> when using stdrup
- enable compilation with GCC 4.5
2011-07-22 03:03:28 +00:00
obache
8692ff62cb recursive bump from gnome-vfs drop crypto dependency. 2011-07-21 13:05:46 +00:00
ryoon
3f93f2d198 Delete unnecessary patch. 2011-07-14 23:58:17 +00:00
ryoon
f849648fa2 Update to 3.0.0
* Switch gtk2 to gtk3.

Changelog:
2010-01-10: gWaei 3.0.0
  New version of gwaei made to compile against gtk+-3.0 and match other Gnome 3
apps.  Most of the code has been rewritten and the advantages won't all appear u
ntil futuer versions of the program.

  -Spellcheck is now don't directly with enchant instead of relying on libsexy
  -The backend is now separated into a libtool library for cleaner code.
  -The dictionary folder is now in ~/.config/gwaei instead of ~/.waei.
  -Manual installation of dictionaries is now easier and more straight forward.
  -Translations are now handled by intltool instead of gettext
  -Much of the code now uses GError for proper error handling and message passin
g
  -The code now uses GRegex instead of the C regex library included with the OS,
 making the program more cross platform friendly
2011-07-14 21:11:54 +00:00
drochner
7177b8dd79 update to 0.8.16
changes:
-Improve ODF 1.2 output of fraction format
-Improve accuracy of complex power
-bugfixes
2011-07-12 19:12:45 +00:00
wiz
8a19512062 Update to 1.1.20110707:
2011/07/07
	+ modify util.c to work better with old versions of ncurses:
	  + suppress use of wchgat() before fix in 20060715 which is needed
	    for simple shadow manipulation used here in 2011/06/30 (report
	    by xDog Walker).
	  + add a null-pointer check in dlg_print_scrolled()
	+ fix a regression in dlg_getc() introduced by changes to intercept
	  F1 for help-popup (report by xDog Walker).

2011/06/30
	+ correct license statement for prgbox.c (Debian #632198).
	+ correct layout when "--colors" is used, by discounting characters in
	  the escape sequences from the column counts (report by xDog Walker).
	+ modify dlg_checklist() so that only one item in the list can
	  initially be selected (report by xDog Walker).
	+ add/use macro dlg_enter_buttoncode() to improve implementation of
	  "--nook" option (report by xDog Walker).
	+ add option "--no-nl-expand" to suppress the conversion of "\n"
	  strings into newlines (request by xDog Walker).
	+ modify LIB_CREATE symbol in makefile.in to include the library
	  dependencies such as ncurses.  This is needed when dynamically
	  loading the library (report/analysis by xDog Walker).
	+ modify dlg_exit_label() to suppress the Cancel button, for
	  consistency.
	+ modify dlg_exit_label() to honor the --nook option, except when there
	  is no other button, e.g., the help-button.
	+ modify dlg_exit_buttoncode() so that it returns the proper code for
	  help-button (report by xDog Walker).
	+ correct loop limit when processing "--column-separator" (report by
	  xDog Walker).
	+ modify handling of "--version" and "--help" to ensure that they are
	  processed, and exit before widgets.  Separate "--print-version"
	  from "--version", allowing its output to be interspersed with
	  widget output (report by xDog Walker).
	+ correct a few places where "--version" or "--help" options went
	  always to stdout rather than allowing redirection with the "--stderr"
	  option (report by xDog Walker).
	+ improve repainting after erasing a widget and its shadow.
	+ add "--hline" and "--hfile" options for compatibility with FreeBSD
	  dialog (request by Devin Teske).
	+ add dialog version message when opening a trace file (request by
	  xDog Walker).
	+ show filename of rc-file in traces.
	+ add piped-in data for gauge widget to traces.
	+ add entrypoints to gauge widget, for allocating, updating and freeing
	  the widget (adapted from patch by Stephen Hurd).
	+ fix a reference to freed memory in the gauge widget.
	+ fix --no-mouse option by actually closing the mouse (report by
	  xDog Walker).
	+ add sk.po from
		http://translationproject.org/latest/dialog/
	+ limit Solaris xpg4 portability fix for redefinition of ERR to cover
	  the specific value found in <sys/regset.h>, in case an application
	  includes dialog.h after curses.h (FreeBSD #156601, report by Jaakko
	  Heinonen, Stephen Hurd).
	+ updated configure macros:
	  + CF_CURSES_CPPFLAGS,
	  + CF_CURSES_LIBS, make checks for special libraries on hpux10 and
	    sunos4 optional
	  + CF_CURSES_FUNCS, workaround for bug in gcc 4.2.1 (FreeBSD 8.1)
	    which caused part of test program to be omitted, i.e., when it saw
	    two return-statements in a row it omitted the _first_ one.  Also
	    add expression to pointer check to help FreeBSD's linker decide it
	    should be validated.  Just an assignment was not enough.  Also, add
	    check for unctrl.h
	  + CF_CURSES_HEADER, change order for curses.h / ncurses.h pairs to
	    put ncurses.h first, which will tend to provide the same #define's
	    as in CF_NCURSES_HEADER (report by Dennis Preiser).
	  + CF_CURSES_TERM_H, modify to avoid spurious check for
	    <curses.hterm.h> if there is no ncurses version.  Look for
	    ncurses's term.h anyway, to work around breakage by packagers who
	    separate ncurses' header files.
	  + CF_DISABLE_RPATH_HACK, fix garbled message
	  + CF_LD_RPATH_OPT, add mirbsd
	  + CF_MAKEFLAGS, filter out GNU make's entering/leaving messages.
	    This only appeared when using the macro in a dpkg script, though it
	    should have in other cases.
	  + CF_RPATH_HACK, add a check for libraries not found, e.g., from
	    suppressed functionality of gcc in linking from /usr/local/lib, and
	    add a -L option to help work around this.
	  + CF_XOPEN_SOURCE, workaround for cygwin to get ncurses' configure
	    script to define _XOPEN_SOURCE_EXTENDED (cygwin's features.h
	    doesn't do anything, so it needs a crutch).
	+ updated config.guess, config.sub
2011-07-12 13:50:07 +00:00
wiz
b815cc4d31 Update to 0.18:
Gaupol 0.18
===========

 * Add extension that allows use of custom framerates (#637503)
 * Add "Get more extensions" button to the preferences dialog
 * Relax SubRip file parsing in unambiguous cases (#634129)
 * Fix saving of last used directory in file dialogs with "paths that
   cannot be represented as a local filename" (#649347)
 * Add Brazilian Portuguese translation (Átila Camurça,
   Darlildo Souza)
 * Update German translation (Chris Leick)
2011-07-12 13:36:49 +00:00
tron
fc03537cdd Update "less" package to version 444.
The list of changes between our outdated version 418 and 444 is too long
to list here. You can find all the release notes here:

http://www.greenwoodsoftware.com/less/old.html
2011-07-08 10:42:53 +00:00
jym
d729ab7223 check-interpreter fix. 2011-07-03 16:27:14 +00:00
dholland
7a1f958956 Not MAKE_JOBS_SAFE. 2011-07-03 08:09:49 +00:00
dholland
80c4eb69fd fix typo 2011-07-03 07:21:23 +00:00
markd
63bcff2e34 /usr/bin/env clenaup. 2011-07-03 05:43:34 +00:00
markd
fec252512f /usr/bin/env cleanup. 2011-07-03 02:31:10 +00:00
jakllsch
4fb2611249 Update stellarium to 0.11.0.
Changes since 0.10.6:
New feature: atmosphere refraction support.
New plugin: Historical supernova.
New translatable strings: landscapes.
New moons of solar system planets (LP: #730686).
New feature: using different symbols for nebula icons.
TimeZone plug-in: fixed a bug preventing the saving of custom time zones. (LP: #720107)
Ocular plug-in: Corrected the calculation of CCD FOV.
Ocular plug-in: Implemented rotating the CCD bounding box.
Ocular plug-in: Made Telrad & CCD mutually exclusive.
Ocular plug-in: Implemented better binoculars support (LP: #695568).
Ocular plug-in: Redesign dialog.
SVMT plug-in: Adding QtWebKit dependency.
Satellite plug-in: improve of code.
Solar System Editor plug-in: fixed MPES online search and updated hard-coded URLs (LP: #725870).
Skycultures: two new skyculture descriptions in Norwegian (Bokmål).
Redesign search tool (LP: #730687).
Improved texture manager.
Various problems resolved (LP: #730069, #772206, #683255, #657455, #785574, #515311, #730075, #711887, #688978, #616748, #589634)
2011-07-02 17:58:00 +00:00
markd
8644492085 /usr/bin/env cleanup 2011-07-02 03:19:41 +00:00
obache
145580aa94 Add xulrunner-2 support patches.
taken from OpenSUSE and Gentoo repository.

Bump PKGREVISION, because not bumped at xulrunner updated to 2.0.
2011-06-26 12:46:06 +00:00
ryoon
64dd419033 Update to 3.3.3
* Bug fix
* Translation update
2011-06-19 06:12:26 +00:00
dholland
4c922812c7 Add USE_TOOLS+=bash:run, since it uses REPLACE_BASH on installed scripts.
PKGREVISION -> 5.
XXX: not actually tested, let me know if it blows up.
2011-06-19 02:26:10 +00:00
dholland
2987e07b39 Needs REPLACE_BASH like kdepim4. Add USE_TOOLS+=bash:run. PKGREVISION -> 10.
XXX: not actually tested, let me know if it blows up.
2011-06-19 02:12:59 +00:00
taca
a867890347 Update ruby-launchy package to 0.4.0.
= Launchy Changlog

== Version 0.4.0 - 2011-01-27

* Add support for file:/// schema (postmodern)
2011-06-19 01:49:27 +00:00
taca
37e8c46bbb Update ruby-daemons package to 1.1.4.
= Daemons Release History

== Release 1.1.4: June 17, 2011

* Do not change the umask to 0000 when daemonizing anymore, just leave it as it
  was (thanks to Jon Botelho).

== Release 1.1.3: April 14, 2011

* Fixed a bug in Application.stop: the cached pid number needs to
  be used to check for the status of a killed process (thanks to Jimmy Sieben).

== Release 1.1.2: March 29, 2011

* Fixed gemspec to include all needed files.

== Release 1.1.1: March 29, 2011

* Make the logging facilities work in :mode => :none (i.e. when calling
  Daemons.daemonize) (thanks to the input from Peter Hegedus).
2011-06-19 01:48:39 +00:00
taca
0cc0c95db9 Update ruby-commander package to 4.0.4.
4.0.4 / 2011-04-04
==================

  * Fixed program(:key) behavior for non-Array keys like name, version, description under Ruby 1.9
  * All specs should pass under Ruby 1.9 now

4.0.3 / 2010-04-06
==================

  * Fixed global_option which was consuming arguments when not expected. Closes #22
2011-06-19 01:47:47 +00:00
taca
91bbb4040c Update ruby-columnize package to 0.3.3.
0.3.3 June 12, 2011 Fleetwood release

- More general but simpler inteface using an options
  hash. Compatibility is maintaind though.
2011-06-19 01:46:47 +00:00
plunky
c8320e14bd update to zyGrib-maps2.4
(data files, no changelog)
2011-06-17 16:00:17 +00:00
plunky
00256f19ab update to zyGrib version 4.0.1:
# 2011-05-21 : zyGrib Version 4.0.1

    * User can choose visible data in the left board (right clic in the panel).
    * Bug fixed: crash sometimes with data out of the "normal" range.

# 2011-05-08 : zyGrib Version 4.0

    * NOAA data up to 8 days rather than 7.
    * Color scales.
    * Data values panel can be hidden (Ctrl+V).
    * Colors scale panel can be hidden (Ctrl+Y).
    * Warning : changes in directories structure.
    * Totally new colors scheme.
      Color scales are editable (text files colors_xxx.txt).
          o 1 ligne per threshold : v r g b
            v = threshold value
            r g b = rgb level (red, green, blue) between 0 and 255
          o values must be in ascending order
          o color is attributed to values ##less than or equal to v
            except the last which is also the color of all excess values##
          o fixed color (no interpolation) below the first value or above the last.
    * More complete list of cities (source GeoNames)
      Around 60,000 cities come with zygrib (population >= 3000).
      Around 100,000 smaller cities are available in additional files (see download page).
    * New population threshold for shown cities:
         1. population >= 1000000
         2. population >= 100000
         3. population >= 10000
         4. population >= 1000
         5. population < 1000
    * Bug fixed : values displayed for the position under the mouse are updated when the date is changed using the keyboard.
    * Bug fixed : crash (sometimes) when the mouse was moved on a POI while reading aa grib file.
2011-06-17 15:57:13 +00:00
wiz
ba56ef7503 Fix build on NetBSD-current. From Daniel Loffgren in PR 45019. 2011-06-14 13:25:57 +00:00
ryoon
d94ed40821 Add libreoffice3-bin 2011-06-12 09:08:12 +00:00
ryoon
dbe89d3cf4 Import libreoffice3-bin-3.3.2 as misc/libreoffice3-bin
LibreOffice is the free power-packed Open Source personal productivity
suite for Windows, Macintosh and Linux, that gives you six feature-rich
applications for all your document production and data processing
needs: Writer, Calc, Impress, Draw, Math and Base.

This is linux binary package.
2011-06-12 09:05:30 +00:00
shattered
73b9ef031c PR/39663: enable 256 color support (only with ncurses and PDCurses). 2011-06-11 18:49:31 +00:00
taca
9177a2253e Update ruby-bundler package to 1.0.15.
## 1.0.15 (June 9, 2011)

Features:

  - Improved Rubygems integration, removed many deprecation notices

Bugfixes:

  - Escape URL arguments to git correctly on Windows (1.0.14 regression)

## 1.0.14 (May 27, 2011)

Features:

  - Rubinius platform :rbx (@rkbodenner)
  - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
  - Include user name and email from git config in new gemspec (@ognevsky)

Bugfixes:

  - Set file permissions after checking out git repos (@tissak)
  - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
  - Require the version file in new gemspecs (@rubiii)
  - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
  - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
  - Display installed path correctly on Windows (@tadman)
  - Escape quotes in git URIs (@mheffner)
  - Improve Rake 0.9 support (@quix)
  - Handle certain directories already existing (@raggi)
  - Escape filenames containing regex characters (@indirect)

## 1.0.13 (May 4, 2011)

Features:

  - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
  - Informative error when --path points to a broken symlink
  - Support Rake 0.9 and greater (@e2)
  - Output full errors for non-TTYs e.g. pow (@josh)

Bugfixes:

  - Allow spaces in gem path names for gem tasks (@rslifka)
  - Have cap run bundle install from release_path (@martinjagusch)
  - Quote git refspec so zsh doesn't expand it (@goneflyin)

## 1.0.12 (April 8, 2011)

Features:

  - Add --no-deployment option to `install` for disabling it on dev machines
  - Better error message when git fails and cache is present (@parndt)
  - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)

Bugfixes:

  - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
  - Fix changing gem order in lock (@gucki)
  - Remove color escape sequences when displaying man pages (@bgreenlee)
  - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
  - Fix gems without a gemspec and directories in bin/ (@epall)
  - Fix --no-prune option for `bundle install` (@cmeiklejohn)

## 1.0.11 (April 1, 2011)

Features:

  - Compatibility with Rubygems 1.6 and 1.7
  - Better error messages when a git command fails

Bugfixes:

  - Don't always update gemspec gems (@carllerche)
  - Remove ivar warnings (@jackdempsey)
  - Fix occasional git failures in zsh (@jonah-carbonfive)
  - Consistent lock for gems with double deps like Cap (@akahn)

## 1.0.10 (February 1, 2011)

Bugfixes:

  - Fix a regression loading YAML gemspecs from :git and :path gems
  - Requires, namespaces, etc. to work with changes in Rubygems 1.5
2011-06-11 02:38:03 +00:00
obache
9572f6d892 recursive bump from textproc/icu shlib major bump. 2011-06-10 09:39:41 +00:00
cheusov
6da59efa6a +send-pr, oked by wiz@ 2011-05-29 13:53:00 +00:00
cheusov
1ecea24412 send-pr is a tool used to submit problem reports (PRs) to a central
GNATS support site.
2011-05-29 13:51:30 +00:00
mspo
a1a98b833c "screen," -> GNU Screen as pointed out by Snader_LB in freenode as a DESCR clarification/typo 2011-05-28 14:11:47 +00:00
cheusov
3d07d2b7a8 DESCR_SRC now contains full paths to DESCR files 2011-05-28 10:15:14 +00:00
cheusov
338977009a add heirloom-printenv, oked by sponsors 2011-05-28 09:58:05 +00:00
cheusov
9d9e76278c heirloom-printenv, a part of heirloom collection 2011-05-28 09:56:56 +00:00
cheusov
1a575d242f add heirloom-random, oked by sponsors 2011-05-28 09:53:58 +00:00
cheusov
3e20549cef heirloom-random, a part of heirloom tools 2011-05-28 09:52:50 +00:00
cheusov
74fd0fa374 add heirloom-hd, approved by sponsors 2011-05-28 09:42:51 +00:00
cheusov
a01ca2018b heirloom part 2011-05-28 09:40:41 +00:00
cheusov
d56ed3e6a8 add heirloom packages, oked by sponsors 2011-05-28 08:34:13 +00:00
cheusov
00088b2adc heirloom part 2011-05-28 08:33:06 +00:00
cheusov
7c318f5b16 heirloom part 2011-05-28 08:32:41 +00:00
cheusov
941c6101ab heirloom part 2011-05-28 08:32:18 +00:00
cheusov
45891ac05d heirloom part 2011-05-28 08:31:54 +00:00
cheusov
7e81bd25b2 heirloom part 2011-05-28 08:31:35 +00:00
cheusov
e4776fb281 heirloom part 2011-05-28 08:31:15 +00:00
cheusov
da8bb4adef heirloom part 2011-05-28 08:30:56 +00:00
cheusov
f6958eabe0 heirloom part 2011-05-28 08:30:35 +00:00
cheusov
165bf69f05 heirloom part 2011-05-28 08:30:15 +00:00
cheusov
3069c7e870 heirloom part 2011-05-28 08:29:52 +00:00
drochner
5817516e7d update to 0.8.15
changes:
-Implement a GSettings backend for GOConf
-bugfixes
2011-05-25 09:45:05 +00:00
wiz
1197c5e12f Update to 0.8.2 provided by Rhialto in PR 44868.
Changes since 0.6.x: many too many to list here.
Now comes with its own store.
2011-05-21 15:07:48 +00:00
drochner
508df49da4 add manpage to substitution rule as in the original build
(still inconsistent since not all occurences are substituted)
2011-05-18 10:48:34 +00:00
markd
a17c52f31d Update HOMEPAGE 2011-05-13 21:04:15 +00:00
obache
1949ccf620 emacs20nox11 is not valid for EMACS_VERSIONS_ACCEPTED. 2011-05-13 14:21:46 +00:00
ryoon
5b2375edcc Update to 1.20
Changelog:
* 1.19:
        + fixed the table of contents display for most non-Latin
        character set documents (provided you get a Unicode
        build).
        + fixed linking issue for wxWidgets 2.9 (the AUI libraries
        were not being pulled in).
        + fixed a bunch of minor bugs.
* 1.20:
        + fixed a nasty bug that crashed the application with some
        CHM files.
        + fixed strict-aliasing compile-time warning.
        + fixed a few signed/unsigned comparison warnings.
2011-05-10 12:50:44 +00:00
cheusov
76765b5a6f +epm, oked by sponsors 2011-05-08 21:52:00 +00:00
cheusov
3ec8a996eb EPM is an open source UNIX software and file packaging program that
generates distribution archives from a list of files. EPM provides a
complete, cross-platform software distribution solution for your
applications.

ESP generates both native and "portable" script-based distribution packages
complete with installation and removal scripts and standard
install/uninstall GUIs. The installers can be customized with product logos,
"readme" files, and click-wrap licenses as desired.
2011-05-08 21:50:48 +00:00
drochner
59e5ff3d93 update to 2.2.4
changes:
-misc fixes and improvements
-added selftest
2011-05-06 18:02:06 +00:00
abs
97866a5270 some more REPLACE_PYTHON, ++PKGREVISION 2011-05-02 10:09:11 +00:00
abs
992cf43b65 Catch another REPLACE_BASH needing script. Foo. Remember "Always wait (~forever) for the build to compleye before commit." ++PKGREVISION 2011-05-01 20:18:56 +00:00
abs
fd28132f37 The great /usr/bin/env purge continues. REPLACE_BASH, ++PKGREVISION, plus a free PLIST sort 2011-05-01 16:50:59 +00:00
abs
f811faa9d9 REPLACE_PERL to eliminate usr/bin/env usage. bump PKGREVISION 2011-05-01 07:39:14 +00:00
obache
1d9df3258a recursive bump from gettext-lib shlib bump. 2011-04-22 13:41:54 +00:00
roy
96666dd3d9 Use python correctly. 2011-04-20 09:03:18 +00:00
drochner
91e0b6de21 kill a DISABLE_DEPRECATED to make this build against recent gtk2 2011-04-15 16:08:06 +00:00
wiz
3e1dce8ca4 Fix build with png-1.5. 2011-04-12 21:48:01 +00:00
wiz
43aefeb5ed Update to 2.1.5:
eBay has been pretty active lately; this most recent breakage was
just of non-US non-PayPal listings. I took the opportunity to
address a few minor issues, while I'm looking into some longer-term
problems. Best of luck with your auctions!

Fixes

    * The non-US non-PayPal item issue
    * 'Post to: ' in location fields
    * Failure to read feedback scores

Improvements

    * Some attempts to improve data consistency
    * Completed auction loading and 'lost' auction recovery don't
    block each other
    * Better messaging around the browse-to site and My JBidwatcher
    configurations
    * Show the revision number on Windows and Linux
2011-04-12 08:46:19 +00:00
wiz
eb6783f66a Update to 0.17.2:
Gaupol 0.17.2
=============

 * Add framerate 24.0 fps found on Blu-rays and use three decimals for
   all framerates (#580345)
 * Fix broken inheritance of action classes, which caused Gaupol to
   fail to start with recent versions of (Py)GTK (#643958)
 * Fix previewing of changes in position shift and transformation
   dialogs
 * Fix eternal loop when opening translation files and having
   existing zero-duration subtitles
 * Fix names of filetype filters in open dialog
 * Update author email address
 * Move development repository from Gitorious to GitHub
   (https://github.com/otsaloma/gaupol)
 * Abandon use of Transifex for translations
 * Add Turkish translation (Koray Löker and Çağlar Kilimci)

Gaupol 0.17.1
=============

 * Fix search dialog replace button to change sensitivity without
   delay to avoid concurrent replacements (#626976)
 * Save text assistant window size
 * Show line lengths in text assistant confirmation page
 * Hopefully fix spell-check not working on Windows (#623864)
 * Build Windows installer without UI translations to avoid a partly
   translated mess (especially due to pygtk bug #574520)
 * Add Hebrew translation (Yaron Shahrabani)
 * Update Hungarian translation (Andrássy László)
 * Update Spanish translation (Carlos Mella)
2011-04-11 14:56:00 +00:00
obache
e318b55716 Update fd to 3.00j.
Ver. 3.00j	Failure of some HTTP redirection is fixed.
 (09/25/10)	Needless network access when URLDRIVE=1 is suppressed.
		Mis-parsing of the file list from some HTTP servers is fixed.
		Failure of INFO_FILESYS on MINIX is fixed.

Ver. 3.00i	Support MINIX 3.
 (07/24/10)	Support NetBSD 5.0.
		Changing to directory on some pseudo file system is allowed.
		Freezing of pseudo terminal with utf8-mac is fixed.
		Failure to convert Kanji code of startup argument is fixed.
		Broken shell output string with effective DEFKCODE is fixed.
		Failure to convert case letter on ShiftJIS is fixed.
		Miscount of items on customizer when changing tab is fixed.
		Misprint of string to map key code is fixed.
		Column overflow of Japanese filename on status line is fixed.
		Wrong cursor position when closing archive browser is fixed.
		Failed archive browser with here-document is fixed.
		Illegal newline code with archive browser is fixed. (MS-DOS)
		Invalid terminal input with internal shell on DJGPP is fixed.
		Unloadable newline (^J) from command history file is fixed.

Ver. 3.00h	Hang-up when 'PS1' internal variable includes \[...\] is fixed.
 (06/14/10)	Failure to compile with non-standard C compiler is fixed.
		Recursive call of malloc() in abortion is fixed.

Ver. 3.00g	Broken tree screen with unprintable directory name is fixed.
 (06/04/10)	Abortion when accessing directory with Japanese is fixed.
		Buffer overflow in Japanese string parser is fixed.

Ver. 3.00f	Mis-action of 'dir' builtin which differs from MS-DOS is fixed.
 (05/29/10)	Invalidated default attribute mask of 'dir' builtin is fixed.
		Abortion when canceling in COPY_TREE/MOVE_TREE is fixed.

Ver. 3.00e	Add mkdir_p.c for installation.
 (02/27/10)	Support Cygwin 1.7.1.
		Failure to compile with some non-ANSI C compilers is fixed.

Ver. 3.00d	Freezing by filename completion on some environments is fixed.
 (11/30/08)	Mis-identified path invoked as login shell via su(1) is fixed.
		Freezing by the large value set as 'HISTSIZE' is fixed.
		Bug that 'echo' builtin ignores anyone starts with - is fixed.
		Support function keys with some VT100 compatible terminals.
		Warning by ioctl() on 64bits BSDs is fixed.

Ver. 3.00c	Bug to garble the pasted string when INPUTKCODE=utf8 is fixed.
 (07/27/08)	Failure to access the root directory is fixed. (MS-DOS)
		Failure to be invoked on Windows NT is fixed. (MS-DOS)
		Illegal newline code for input/output is fixed. (MS-DOS)
		Failure to replace some strings in 'fc' builtin is fixed.

Ver. 3.00b	Failure to replace with $()/$(()) is fixed.
 (07/06/08)	Bug that some temporary files may remain is fixed.
		Freezing by here-document with huge size is fixed.
		Mis-substitution of variables with exit status is fixed.
		Failure to treat argument with '=' as substitution is fixed.
		Buffer overflow with the undefined floppy drive is fixed.
		Mis-operation for redirections with complex sentences is fixed.
		Bug that trap on exit cannot be executed suitably is fixed.
		Inaccurate value of 'LINENO' internal variable is fixed.
		Bug that newline cannot be allowed in 'case' sentence is fixed.
		Bug that ${} cannot include meta characters within "" is fixed.
		Mis-replacement for meta characters in here-document is fixed.
		Adjust representations for 'FD_VERSION' of each documents.
		Bug that 'FD_VERSION' may not be set is fixed.

Ver. 3.00a	Failure to replace the alias with no argument is fixed.
 (06/21/08)	Abortion with recursively invoked archive browser is fixed.
		Resolve a directory traversal vulnerability on the URL drive.
		Mis-implementation of telnet commands in FTP is fixed.
		Failure to compile on Solaris 8 is fixed.
		Adjust representations of each documents to Ver. 3.00.

Ver. 3.00	Add the URL drive function.
 (05/31/08)	Add scheme moditiers to access socket as redirect file.
		Support the message catalog.
		Abolish limits of each registrations.
		Support argument of EDIT_CONFIG as environment variable name.
		Add 'AUTOUPDATE' internal variable.
		Add 'VERSION' internal variable.
		Add 'URLDRIVE', 'URLKCODE', 'HIDEPASSWD' internal variables.
		Add 'URLOPTIONS', 'URLTIMEOUT' internal variables.
		Add 'FTPPROXY', 'FTPLOGFILE', 'FTPADDRESS' internal variables.
		Add 'HTTPPROXY', 'HTTPLOGFILE' internal variables.
		Add 'HTMLLOGFILE' internal variable.
		Add 'accept', 'socketinfo', 'addcr' builtins.
		Add -N option in 'echo' builtin.
		Add -N option in 'read' builtin.
		Add the formats of %w, %p, %B, %b, %/, %! for archive browser.
		Add the redirectees of '<>&', '><&' for duplication.
		Add the redirectees of '<>-', '<>&-', '><-', '><&-' for close.
		Change default file descriptor of '><' redirectee to stdout.

Ver. 2.09i	Failure to compile on Darwin 9.x (Mac OS X 10.5) is fixed.
 (04/19/08)	Odd screen when displaying some long file names is fixed.
		Failure to write directory for FAT file system is fixed.

Ver. 2.09h	Bug that ATTR_FILE/ATTR_DIR have sometimes no effect is fixed.
 (03/15/08)	Unsuitable error message with no controlling terminal is fixed.
		Odd completion choice list while shifting filename is fixed.

Ver. 2.09g	Abortion with no controlling terminal is fixed.
 (01/26/08)	Failure to find the startup directory is resolved partly.
		Failure to input some special keys is reduced.

Ver. 2.09f	Bug to garble the pasted string in some environments is fixed.
 (10/28/07)	Mis-inputted keys after dynamic variation of 'TERM' is fixed.
		Bug to ignore some configuration files on NFS is fixed.
		Failure with some builtins in non-interactive shell is fixed.
		Bug not to expand variables after '~' is fixed.

Ver. 2.09e	Freezing sometimes caused in 'copy' builtin is fixed.
 (09/16/07)	Abortion when missing the current directory is fixed.
		Wrong default file descriptor of '<>'/'><' redirectee is fixed.
		Incomplete check for the supplementary group is fixed.

Ver. 2.09d	Support Linux kernel 2.6.20.
 (04/26/07)	Progress key responses when INPUTKCODE=utf8.
		Abortion with accessing the empty directory is fixed.
		Inaccessiblity of the floppy drive with large size is fixed.

Ver. 2.09c	Failure to support Linux kernel 2.6.18 is fixed.
 (01/17/07)

Ver. 2.09b	Support Linux kernel 2.6.18.
 (12/22/06)	Bug that '..' is not accessible in floppy drive is fixed.
2011-04-08 11:34:44 +00:00
wiz
3cd8efec95 The syntax doesn't work on most shells, remove the patches again until
they're fixed properly. Reported by drochner. Bump PKGREVISION.
2011-04-05 12:05:01 +00:00
wiz
265479cd10 Fix CVE-2008-0386 using patch from upstream repository.
Patch created by Makoto Fujiwara.

Bump PKGREVISION, set LICENSE.
2011-04-05 09:13:42 +00:00
bouyer
f431d51c8b Don't #include <ufs/ufs/quota.h> on NetBSD. it makes the build fail on
current, and nothing related to quotas is needed here.
OK agc@
2011-04-01 20:11:33 +00:00
taca
7b6fb22521 * Allow build on not only ruby18 but ruby19.
* Ugly hack to replace with already installed gem command.

Bump PKGREVISION.
2011-03-27 13:02:17 +00:00
taca
531790bcf7 Update misc/ruby-bundler package to 1.0.10.
## 1.0.10 (February 1, 2011)

Bugfixes:

  - Fix a regression loading YAML gemspecs from :git and :path gems
  - Requires, namespaces, etc. to work with changes in Rubygems 1.5

## 1.0.9 (January 19, 2011)

Bugfixes:

  - Fix a bug where Bundler.require could remove gems from the load
    path. In Rails apps with a default application.rb, this removed
    all gems in groups other than :default and Rails.env.

## 1.0.8 (January 18, 2011)

Features:

  - Allow overriding gemspec() deps with :git deps
  - Add --local option to `bundle update`
  - Ignore Gemfile.lock in newly generated gems
  - Use `less` as help pager instead of `more`
  - Run `bundle exec rake` instead of `rake` in Capistrano tasks

Bugfixes:

  - Fix --no-cache option for `bundle install`
  - Allow Vlad deploys to work without Capistrano gem installed
  - Fix group arguments to `bundle console`
  - Allow groups to be loaded even if other groups were loaded
  - Evaluate gemspec() gemspecs in their directory not the cwd
  - Count on Rake to chdir to the right place in GemHelper
  - Change Pathnames to Strings for MacRuby
  - Check git process exit status correctly
  - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
2011-03-23 15:03:52 +00:00
taca
5e6c94b918 Update rubygems package to 1.6.2.
For complete changes, please refer:

	https://github.com/rubygems/rubygems/blob/master/History.txt
2011-03-23 14:35:04 +00:00
plunky
beafa4f940 minor update from 3.9.9 -> 3.9.9.1:
2011-01-23 : zyGrib Version 3.9.9.1

    * New russian translation (thanks Yaroslav/Specter).
    * Bug fixed : drawing wind arrows on the grid for Meteoblue files.
    * Personnal "cities" list :
          o All files whose name begins with cities and located in maps / gis / are read.
          o Format : text, encoding UTF8
          o One city by line (5 data, separator ';') :
            country;name;population;latitude;longitude
               1. country: 2 chars international code ISO-3166 A2
               2. name
               3. population : "importance" of the city. 4 levels:
                     1. population >= 1000000
                     2. population >= 200000
                     3. population >= 50000
                     4. population < 50000
               4. latitude
               5. longitude
          o Sample:
            AD;Andorra la Vella;20430;42.5;1.5166667
2011-03-21 11:44:58 +00:00
wiz
d79336a1e0 Drop maintainership. 2011-03-19 02:20:44 +00:00
wiz
db54fecd29 Recursive bump for libzip-0.10. 2011-03-18 13:49:38 +00:00
zafer
0a74e15a3d remove dead mirror 2011-03-17 21:21:01 +00:00
zafer
518f71625d update master_sites 2011-03-17 21:19:53 +00:00
zafer
36b08b499d service suspended (not earthquake related) since Feb 2010. fetch from backup. 2011-03-17 21:17:28 +00:00
zafer
301b583aed service suspended. fetch from backup. 2011-03-17 21:11:44 +00:00
zafer
9b451bff6f remove dead mirror. 2011-03-17 21:10:47 +00:00
zafer
a7b9b7ad12 service suspended. fetch from backup. 2011-03-17 21:07:16 +00:00
rumko
d6fe8228f2 misc/screen: DragonFly BSD 2.9+ support
Make screen use utmpx on DragonFly BSD 2.9+ so that it compiles
again.

Patch submitted by Matthias Rampke ( https://gist.github.com/823307 ).

ok@ wiz
2011-03-14 06:15:23 +00:00
rumko
b18976a3f2 misc/tmux: make it compilable on DragonFly
* we need to link to libevent in order to succesfully compile
* we already define closefrom(2) so define HAVE_CLOSEFROM

Patch provided by Antonie Huete Jimenez via private mail.

ok@ wiz
2011-03-14 06:06:58 +00:00
drochner
fd3dbf84c9 in te NetBSD backend, fill in some metadata which are needed at least
for per-track CD-TEXT support
(CD-TEXT does work basically, but it is unclear which encoding it
is supposed to be, and who should sanitize the text, eg delete
trailing garbage)
2011-03-13 11:36:19 +00:00
wiz
5ad2bb3750 Update to 1.1.20110302:
2011/03/02
	+ add --prgbox and --programbox (adapted from patch by David Boyd).
	+ add sl.po from
		http://translationproject.org/latest/dialog/
	+ fix timeouts from 2011/01/18, which were being interpreted as
	  milliseconds rather than seconds (report by Luis Moreira).
2011-03-11 10:59:35 +00:00
wiz
01781f697c Update to 2.1.4.1:
eBay made some surprising changes over the last week or so, removing the end date from a lot of their auction and fixed price listings. I had to scramble a little, but I came up with a way to handle it in the general case. Fixed price items now may show up as ‘n/a’ as their end date, because it’s just not visible to JBidwatcher. Other than that there’s a few minor fixes, improving the UI in little ways, and continuing to try and improve speed. Thanks for your support, and best of luck with your auctions!

Changes

    * Fix breakage due to eBay removing the end-date from the title
    on many listings
    * Try to provide a safety-net for a potential sniping failure bug
    * Get eBay pages as compressed data for faster updating
    * Paste and Add Auction should add to the currently displayed tab/category
    * Allow Basic Authentication lines longer than 80 characters
    for My JBidwatcher support
    * Improve the look of JBidwatcher’s minimized window under Mac OS X
2011-03-11 10:57:03 +00:00
jmmv
7c0e10f1f0 Add and enable window. 2011-03-09 17:39:29 +00:00
jmmv
e900e1b2ea Initial import of window-20110309:
window(1) implements a windowing environment on ASCII terminals.
It is similar to tmux and GNU screen.

The program provided by this package is based on the original code of
window(1) shipped by NetBSD 5.x.  NetBSD is replacing window(1) with
tmux, and when that happens this package will be the canonical source
for window(1).
2011-03-09 17:38:55 +00:00
obache
b9c28283c4 user-destdir installation support. 2011-03-08 12:00:15 +00:00
adam
bfc090eb28 Fix building with GPGME 1.3.0. 2011-03-05 11:57:08 +00:00
adam
47e8d73e91 Fix building with Clang 2011-03-02 15:16:27 +00:00
wiz
e2f84ad43f Reset maintainer for retired developers. 2011-02-28 14:52:37 +00:00
aymeric
0d128167eb Allow building with new X11/Xlib.h. Patch from upstream, see OpenOffice
bug report 115871; adapted for vcl/unx/inc/xfont.hxx
2011-02-26 16:02:39 +00:00
drochner
6b31035dbe update to 0.8.13
changes:
-ODF improvement
-bugfixes
2011-02-25 13:34:39 +00:00
obache
a12f29f0ea + howm 2011-02-25 11:08:44 +00:00
obache
3cb0932ef5 Import howm-1.3.9.1 as misc/howm from pkgsrc-wip-jp.
Based on PR#44553 by ISIHARA Takanori.

howm: Write fragmentarily and read collectively.

Howm is a note-taking tool on Emacs.  It is similar to emacs-wiki;
you can enjoy hyperlinks and full-text search easily. It is not
similar to emacs-wiki; it can be combined with any format.
2011-02-25 11:04:56 +00:00
wiz
f09b8dbca6 Let's assume for now that everything that worked with python-2.6 also
works with python-2.7.
2011-02-25 09:47:18 +00:00
taca
a6beb63f63 Remove patches to make a gemspec file's format compatible as before.
Now latest ruby19-base package comes with gem supporting newer format,
so no need to keep older.

Shouold be fix build problem of newer rails3 related packages with
ruby18-base.

Bump PKGREVISION.
2011-02-23 10:32:24 +00:00
markd
03bcd24f95 Dont try to use kernel only interface to inotify on linux 2011-02-17 09:37:13 +00:00
ryoon
e8dc6accf5 Update to 2.72.
Changelog:
2006-10-10 04:26:33 GMT	Michael Olson <mwolson@gnu.org>	patch-147

    Summary:
      Release emacs-wiki 2.72.
    Revision:
      emacs-wiki--main--1.0--patch-147

    * emacs-wiki.el (emacs-wiki-version): Release emacs-wiki 2.72.

    * emacs-wiki-colors.el (emacs-wiki-use-font-lock): Fix bug that was
      noticed with recent builds of Emacs 22.  Improper quoting was used.
      Thanks to Chong Yidong and intrigeri for noticing this.

    modified files:
     ChangeLog README emacs-wiki-colors.el emacs-wiki.el
     emacs-wiki.texi


2006-10-10 04:20:02 GMT	Michael Olson <mwolson@gnu.org>	patch-146

    Summary:
      Debian packaging changes from February.
    Revision:
      emacs-wiki--main--1.0--patch-146


    new files:
     debian/.arch-ids/compat.id debian/compat

    modified files:
     ChangeLog debian/NEWS debian/changelog debian/control
     debian/rules


2006-02-07 14:24:19 GMT	Michael Olson <mwolson@gnu.org>	patch-145

    Summary:
      Release emacs-wiki 2.71.
    Revision:
      emacs-wiki--main--1.0--patch-145

    * emacs-wiki.el (emacs-wiki-version): Release emacs-wiki 2.71.

    * README, emacs-wiki.texi, debian/NEWS: Note that Emacs Muse is
      recommended instead, and that this will probably be the last release of
      emacs-wiki.

    * debian/rules: Change compatibility level to 4.

    * emacs-wiki-srctag.el (emacs-wiki-src-tag): Silence compiler warning.

    new files:
     debian/.arch-ids/NEWS.id debian/NEWS

    modified files:
     ChangeLog Makefile.defs README debian/changelog debian/rules
     emacs-wiki-srctag.el emacs-wiki.el emacs-wiki.texi


2005-12-16 23:22:14 GMT	Michael Olson <mwolson@gnu.org>	patch-144

    Summary:
      Don't escape '#' in URLs.
    Revision:
      emacs-wiki--main--1.0--patch-144

    * emacs-wiki-publish.el (emacs-wiki-escape-url): Add '#' to list of
      characters not to escape in URLs.  Thanks to Marc Tommasi for the
      report.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-11-21 04:54:08 GMT	Michael Olson <mwolson@gnu.org>	patch-143

    Summary:
      Make WikiName matching more flexible.
    Revision:
      emacs-wiki--main--1.0--patch-143

    * emacs-wiki-regexps.el (emacs-wiki-name-regexp): Match names like
      ConvertingAClass and XMLSchema.  Thanks to Rory McCann for the initial
      patch and the heads up.

    modified files:
     ChangeLog emacs-wiki-regexps.el emacs-wiki-transition.el


2005-10-04 15:24:23 GMT	Michael Olson <mwolson@gnu.org>	patch-142

    Summary:
      Apply patch from Magnus Henoch.
    Revision:
      emacs-wiki--main--1.0--patch-142

    * emacs-wiki.el (emacs-wiki-link-escape): Fix Yet Another escaping bug.
      Thanks to Magnus Henoch for the patch.

    modified files:
     ChangeLog emacs-wiki.el


2005-09-30 03:38:56 GMT	Michael Olson <mwolson@gnu.org>	patch-141

    Summary:
      Fix #14666.
    Revision:
      emacs-wiki--main--1.0--patch-141

    * emacs-wiki.el (emacs-wiki-link-escape, emacs-wiki-link-unescape):
      s/further/is-desc/.

    modified files:
     ChangeLog emacs-wiki.el


2005-09-25 01:48:38 GMT	Michael Olson <mwolson@gnu.org>	patch-140

    Summary:
      Fix #14337: bug in emacs-wiki-link-url.
    Revision:
      emacs-wiki--main--1.0--patch-140

    * emacs-wiki-publish.el (emacs-wiki-link-url): Treat WikiIndex pages
      specially, since they might not exist on the filesystem yet.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-09-25 01:44:19 GMT	Michael Olson <mwolson@gnu.org>	patch-139

    Summary:
      Fix #14336: bug in emacs-wiki-markup-list-or-paragraph.
    Revision:
      emacs-wiki--main--1.0--patch-139

    * emacs-wiki-publish.el (emacs-wiki-markup-list-or-paragraph): Add
      save-match-data so the match data doesn't get clobbered.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-09-25 01:41:14 GMT	Michael Olson <mwolson@gnu.org>	patch-138

    Summary:
      Highlight bare URLs in emacs-wiki buffers.
    Revision:
      emacs-wiki--main--1.0--patch-138

    * emacs-wiki-colors.el (emacs-wiki-highlight-markup): Use
      emacs-wiki-url-or-name-regexp instead of emacs-wiki-name-regexp.  This
      causes bare URLs to be highlighted in emacs-wiki buffers.

    modified files:
     ChangeLog emacs-wiki-colors.el


2005-09-25 01:31:22 GMT	Michael Olson <mwolson@gnu.org>	patch-137

    Summary:
      Fix '#' in link descriptions.
    Revision:
      emacs-wiki--main--1.0--patch-137

    * emacs-wiki.el (emacs-wiki-link-escape): Don't escape '#' if we are
      given a link description.  Thanks to Stefan Reichör for the report.
      (emacs-wiki-link-unescape): Update documentation.

    modified files:
     ChangeLog emacs-wiki.el


2005-09-07 04:23:09 GMT	Michael Olson <mwolson@gnu.org>	patch-136

    Summary:
      Fix #14455: Typo in emacs-wiki-escape-html-string.
    Revision:
      emacs-wiki--main--1.0--patch-136

    * emacs-wiki-publish.el (emacs-wiki-escape-html-string): Replace boundp
      check with fboundp.  Thanks to an anonymous bug reporter for the fix.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-09-04 04:47:43 GMT	Michael Olson <mwolson@gnu.org>	patch-135

    Summary:
      Don't escape '?' and '=' in URLs.
    Revision:
      emacs-wiki--main--1.0--patch-135

    * emacs-wiki-publish.el (emacs-wiki-escape-url): Add '?' and '=' to list
      of characters to not escape.  Thanks to Sacha for the report.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-09-03 18:06:08 GMT	Michael Olson <mwolson@gnu.org>	patch-134

    Summary:
      Fix note visiting problem.
    Revision:
      emacs-wiki--main--1.0--patch-134

    * emacs-wiki.el (emacs-wiki-visit-link): Make sure that we match against
      a complete, whitespace-delimited tag.  Thanks to Sergey Vlasov for the
      report and suggested fix.

    modified files:
     ChangeLog emacs-wiki.el


2005-09-02 04:37:42 GMT	Michael Olson <mwolson@gnu.org>	patch-133

    Summary:
      Try to get rid of error; apply latest patch to emacs-wiki-srctag.
    Revision:
      emacs-wiki--main--1.0--patch-133

    * emacs-wiki-publish.el (emacs-wiki-publish-index): Don't modify
      default-directory directly.  Call `cd' instead, and only when
      necessary.  Hopefully this will get rid of that weird stringp nil
      error.

    * emacs-wiki-srctag.el: Apply latest patch from Sun Yijiang.  You can now
      use extensions from `auto-mode-alist' in the <src> tag.

    modified files:
     ChangeLog emacs-wiki-publish.el emacs-wiki-srctag.el


2005-09-01 11:42:04 GMT	Michael Olson <mwolson@gnu.org>	patch-132

    Summary:
      Apply patches from Sergey Vlasov.
    Revision:
      emacs-wiki--main--1.0--patch-132

    * emacs-wiki-regexps (emacs-wiki-link-properties)
      (emacs-wiki-highlight-extended-link): Move '(mouse-face highlight) into
      the branch which handles the displayed text.  Also move
      '(rear-nonsticky t) to the common list, and kill the redundant
      '(emacs-wiki-keymap-property emacs-wiki-local-map) which was both in
      the common list and in the lists for displayed and invisible text.

    * emacs-wiki-regexps.el (emacs-wiki-regexp-emacs-revision): Move
      save-match-data outside of the `and' statement.

    modified files:
     ChangeLog emacs-wiki-colors.el emacs-wiki-regexps.el


2005-08-29 06:21:48 GMT	Michael Olson <mwolson@gnu.org>	patch-131

    Summary:
      Reinstate former extended character class rules.
    Revision:
      emacs-wiki--main--1.0--patch-131

    * emacs-wiki-regexps.el (emacs-wiki-regexp-use-character-classes): New
      option that allows the user to override emacs-wiki's algorithm for
      deciding whether to use extended character classes.
      (emacs-wiki-regexp-emacs-revision): New variable that indicates the revision
      number of this version of Emacs.
      (emacs-wiki-extreg-usable-p): Reinstate old rules -- Emacs 21.2 and 21.3
      aren't working well enough with extended character classes in regexps.

    * emacs-wiki.el (emacs-wiki-mode, emacs-wiki-find-file): Use
      make-local-variable instead of make-variable-buffer-local.

    modified files:
     ChangeLog emacs-wiki-regexps.el emacs-wiki.el


2005-08-29 00:00:01 GMT	Michael Olson <mwolson@gnu.org>	patch-130

    Summary:
      Fix paragraph-filling breakage in Emacs21.
    Revision:
      emacs-wiki--main--1.0--patch-130

    * emacs-wiki.el (emacs-wiki-mode): Check explicitly for Emacs21 rather
      than relying on emacs-wiki-extreg-usable-p.  Thanks to Sergey Vlasov
      for the bug report.

    modified files:
     ChangeLog emacs-wiki.el


2005-08-27 02:28:05 GMT	Michael Olson <mwolson@gnu.org>	patch-129

    Summary:
      Allow Emacs 21.3 to use extended character classes in regexps.
    Revision:
      emacs-wiki--main--1.0--patch-129

    * emacs-wiki-regexps.el (emacs-wiki-extreg-usable-p): Use a simpler
      algorithm.  Since enough positive reports have come in about the
      usability of 21.3, we'll allow it to use extended character classes in
      regexps by default.

    modified files:
     ChangeLog emacs-wiki-regexps.el


2005-08-25 16:51:35 GMT	Michael Olson <mwolson@gnu.org>	patch-128

    Summary:
      Attempt to fix a publishing warning.
    Revision:
      emacs-wiki--main--1.0--patch-128

    * emacs-wiki-publish.el (emacs-wiki-publish-index): Don't set
      default-directory to nil, just let-bind it so that our routine doesn't
      change it permanently.  Thanks to Seth Falcon for the report.

    modified files:
     ChangeLog emacs-wiki-publish.el


2005-08-17 19:06:27 GMT	Michael Olson <mwolson@gnu.org>	patch-127

    Summary:
      Make numeric anchors publish as valid (X)HTML.
    Revision:
      emacs-wiki--main--1.0--patch-127

    * emacs-wiki-publish.el (emacs-wiki-insert-anchor): If we're given only a
      numbers-only anchor, pre-pend "anchor-" to make it valid.  Otherwise,
      insert verbatim.
      (emacs-wiki-contents-tag): Publish with "sec-" rather than "sec"
      pre-pended.
      (emacs-wiki-link-url): Determine whether or not "anchor-" needs to be
      pre-pended when linking to an anchor.

    modified files:
     ChangeLog emacs-wiki-publish.el

    new patches:
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--base-0
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-1
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-2
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-3
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-4
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-5
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-6
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-7
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-8
     zakame@spunge.org--2005/emacs-wiki--zakame--1.0--patch-9


2005-08-13 05:04:33 GMT	Michael Olson <mwolson@gnu.org>	patch-126

    Summary:
      emacs-wiki-mode: Minor regexp tweak.
    Revision:
      emacs-wiki--main--1.0--patch-126

    * emacs-wiki.el (emacs-wiki-mode): Use \\s- rather than [[:blank:]].

    modified files:
     ChangeLog emacs-wiki.el


2005-08-12 20:56:20 GMT	Michael Olson <mwolson@gnu.org>	patch-125

    Summary:
      Keep lists from getting mashed together on M-q.
    Revision:
      emacs-wiki--main--1.0--patch-125

    * emacs-wiki-macros.el: Embarrassing header fix.

    * emacs-wiki.el (emacs-wiki-mode): Handle footnotes.  Set
      `paragraph-start' locally so that lists don't get blended together
      incorrectly upon hitting M-q.

    modified files:
     ChangeLog emacs-wiki-macros.el emacs-wiki.el


2005-08-09 23:11:17 GMT	Michael Olson <mwolson@gnu.org>	patch-124

    Summary:
      Make generated Debian packages slightly easier to upload.
    Revision:
      emacs-wiki--main--1.0--patch-124

    * debian/changelog: Generate 2.70-3.

    * debian/rules (clean): Call $(MAKE) realclean instead of $(MAKE) clean.

    * Makefile.defs (LASTUPLOAD): New variable that indicates the version
      that was last uploaded to Debian.
      (BUILDOPTS): Other options that are to be passed to dpkg-buildpackage.

    * Makefile (debrelease): Use $(LASTUPLOAD) to ensure that a full set of
      changes is generated.  This means we have to use dpkg-buildpackage,
      since debuild doesn't recognize the environment variables that it
      claims to recognize.  Use $(BUILDOPTS) to include any other options
      that I might need for dpkg-buildpackage.

    modified files:
     ChangeLog Makefile Makefile.defs debian/changelog debian/rules


2005-08-09 07:42:14 GMT	Michael Olson <mwolson@gnu.org>	patch-123

    Summary:
      Apply buffer-visiting patch from Marco Gidde.
    Revision:
      emacs-wiki--main--1.0--patch-123

    * emacs-wiki.el (emacs-wiki-visit-link): Apply patch from Marco Gidde
      that allows the user to link to a buffer.

    modified files:
     ChangeLog emacs-wiki.el


2005-08-09 06:47:35 GMT	Michael Olson <mwolson@gnu.org>	patch-122

    Summary:
      Minor build enhancement.
    Revision:
      emacs-wiki--main--1.0--patch-122

    * scripts/emacs-wiki-build.el (emacs-wiki-elint-files): Simplify the
      loading of all source files.

    modified files:
     ChangeLog scripts/emacs-wiki-build.el


2005-08-06 17:42:50 GMT	Michael Olson <mwolson@gnu.org>	patch-121

    Summary:
      Fix Debian package build.
    Revision:
      emacs-wiki--main--1.0--patch-121

    * Makefile (debclean): Last patch broke this -- make it work again.

    modified files:
     ChangeLog Makefile


2005-08-06 17:38:13 GMT	Michael Olson <mwolson@gnu.org>	patch-120

    Summary:
      Fix Debian bug #321616.
    Revision:
      emacs-wiki--main--1.0--patch-120

    * debian/control (Depends): Add dependency on emacsen (in addition to
      emacs21 and xemacs21) to fix Debian bug #321616.  Thanks to Daniel
      Dehennin for reporting this.

    * debian/changelog: Release the 2.70-2 Debian package.

    * Makefile (debclean): Remove previously-generated Debian packages for
      emacs-wiki in parent directory.

    modified files:
     ChangeLog Makefile debian/changelog debian/control


2005-08-05 04:50:25 GMT	Michael Olson <mwolson@gnu.org>	patch-119

    Summary:
      Fix: problem with punctuation in plan page names.
    Revision:
      emacs-wiki--main--1.0--patch-119

    * emacs-wiki.el (emacs-wiki-wiki-visible-name): Apply patch from Sacha
      that surrounds emacs-wiki-name-regexp with grouping symbols since it
      has "\|" in it.

    modified files:
     ChangeLog emacs-wiki.el


2005-07-26 00:20:11 GMT	Michael Olson <mwolson@gnu.org>	patch-118

    Summary:
      Try to upload to savannah.nongnu.org.
    Revision:
      emacs-wiki--main--1.0--patch-118

    * Makefile (upload): New target that causes emacs-wiki to be uploaded to
      savannah.nongnu.org.  I can't tell if this works yet.

    modified files:
     ChangeLog Makefile
2011-02-13 09:59:34 +00:00
tnn
ce57998993 revbump(1) for devel/libevent update. 2011-02-11 21:22:02 +00:00
wiz
96f6605a37 Remove gxmame since xmame was removed. 2011-02-09 09:51:19 +00:00
roy
b69ea126de Allow tmux to use the native terminfo if available. 2011-02-08 13:16:37 +00:00
taca
88d4914289 Remove RUBY_REQD which specify older version of
current supported version of Ruby.

No functional change.
2011-02-07 14:55:55 +00:00
wiz
b0ce402148 Set LICENSE. Include desktopdb.mk and bump PKGREVISION for it. 2011-02-06 23:59:50 +00:00
wiz
c761de878c Fix build with png-1.5. 2011-02-06 23:59:36 +00:00
markd
2562703a49 Correct previous patch to fix build with gcc4.4 2011-02-05 19:37:13 +00:00
wiz
afce883bca Update to 1.1.20110118:
2011/01/18
	+ fix inconsistency in return-codes for textbox when help-button is
	  used by making dlg_exit_buttoncode() a wrapper for
	  dlg_ok_buttoncode().
	+ modify pause widget to use dlg_ok_buttoncode(), so help-button works.
	+ correct two infobox sample scripts, which did not pass extra
	  command-line parameters due to quoting problems.
	+ add a limit-check to the timebox widget (patch by Garrett Cooper).
	+ modify --trace option to also trace the command-line parameters.
	+ account for combining characters when wrapping text (Debian #570634).
	+ correct handling of SIGWINCH in gauge widget (Debian #305705).
	+ add gauge_color, to make guage's progress-bar distinct from
	  title_color (request by Dominic Derdau).
	+ update fi.po from
		http://translationproject.org/latest/dialog/
	  as well as resync line-numbers in the other po-files.
	+ modify configure script and dialog program to build with NetBSD's
	  wide-character curses functions, including workarounds for its
	  incorrect WACS_xxx definitions.  Some of the UTF-8 examples work.
	+ add back-tab for traversal of tailboxbg widgets, for symmetry with
	  tab-traversal.
	+ reduce flicker in tailboxbg by checking if the input file size has
	  changed.
	+ modify internals of callbacks to avoid blocking reads of their
	  associated files by keyboard input.
	+ add command-line option --no-mouse, to suppress use of mouse.
	+ add configure option --enable-header-subdir to allow the header files
	  to be installed into a subdirectory named for the package.
	+ modify dlg_restore_vars() to retain the updated values of
	  input_result and input_length, eliminating the need for a caller to
	  provide their own user buffer (prompted by report by Thiago Bimbatti
	  Felicio).
	+ add a null-pointer check in show_result() for
	  dialog_vars.input_result, and ensure it is set to null after freeing
	  (prompted by report by Thiago Bimbatti Felicio).
	+ change order of -I options in CPPFLAGS (report by Michel Feldheim)
	+ modify pause-widget so that it no longer exits when an unrecognized
	  key is pressed (patch by Creidieki M Crouch).
	+ add --with-package option to configure script to allow renaming
	  of the dialog program and library, to support the package scripts.
	+ add Debian and RPM package scripts for test-builds.
	+ several improvements to configure script:
	  + quote params of ifelse()
	  + change obsolete ${name-value} to standard ${name:-value}
	  + use new macros CF_ADD_LIB/CF_ADD_LIBS to enforce consistency.
	  + AM_GNU_GETTEXT, drop $MKINSTALLDIRS, use "mkdir -p" consistently.
	  + CF_ADD_SUBDIR_PATH, workaround - if $prefix was not mkdir'd yet, no
	    directories were added.
	  + CF_BUNDLED_INTL, add --with-textdomain option, to use with lynx-dev
	    package
	  + CF_FIND_LINKAGE, simplify save/restore of $LIBS
	  + CF_GCC_WARNINGS, fix for Mac OS X (compiler makes conftest.dSYM
	    directory)
	  + CF_HEADER_PATH, don't search for variations of everything in the
	    current include-path
	  + CF_WITH_CURSES_DIR, move the calls to CF_ADD_INCDIR and
	    CF_ADD_LIBDIR for the curses-directory here, from
	    CF_NCURSES_CPPFLAGS and CF_NCURSES_LDFLAGS, so it will work even
	    with the default checking, e.g., no --with-ncurses, etc.
	+ updated config.guess, config.sub
2011-02-03 13:03:13 +00:00
jym
db0556478e Remove TODO. It does not apply to this pkg anymore. 2011-01-31 21:01:13 +00:00
jym
ef6d9899f5 misc/ec2-ami-tools and misc/ec2-api-tools 2011-01-31 20:59:51 +00:00
jym
0fcbfb7d9e Import misc/ec2-ami-tools.
The Amazon EC2 AMI Tools are command-line utilities to help bundle
an Amazon Machine Image (AMI), create an AMI from an existing machine
or installed volume, and upload a bundled AMI to Amazon S3.

You can use these to create and upload a NetBSD AMI to EC2. Bundling
and using NetBSD AMIs will be part of a wiki article, as there are some
limitations that I need to fix before making it official.
It has nothing to do with this pkg though, so in case someone wants to
play with AWS, there is no reason to hold it back.

Ruby modules are written so that they can be used on any platform
supported by Amazon (some Linuces and Solaris), I just re-used the
framework to make it work with NetBSD.
2011-01-31 20:56:13 +00:00
jym
137910b14c Import misc/ec2-api-tools.
The API tools serve as the client interface to the Amazon EC2 web
service. Use these tools to register and launch AMI instances, manage
EBS volumes, manipulate security groups, and more.
2011-01-31 20:46:01 +00:00
wiz
c8ba04dd4e Fix build with png-1.5 (includes upstream bug report URL). 2011-01-30 01:07:00 +00:00
adam
8da2dd4392 Changes 1.18:
* updated PT translation.
* added --notopics and --noindex as command line parameters.
  They inhibit loading the topics tree and the index list, respectively.
* added Vim-like document scrolling key bindings.
* made the source code wxWidgets 2.9 friendly.
* documents using Chinese simplified now display properly.
* fixed Windows application crash that happened when the user clicked the
  "Fonts.." button.
* made the source code compatible with Unicode/MSVC wxMSW builds.
* fixed loading of search-in-titles results.
2011-01-28 10:35:23 +00:00
jnemeth
235f59b490 add and enable ruby-commander 2011-01-27 04:57:29 +00:00
ryoon
17a785fb71 January 10, 2011
A new gWaei release for the new year! 1.5.2 is out! Go get it!

	Updates of the website have been sparse, but development of gWaei
	has continued regardless. A number of bug fixes have made it in
	again, and finally I am going around making updates to the README
	documentation again. gWaei 1.5.2 should be good an ready for
	package maintainers when Gnome 2.31 comes to their machines and
	when Gnome 3.0 is finally released.

	    * Searches when using & in the query work again instead of
	      being truncated as you type.
	    * The interface is now more responsive when a search is
	      carried out by edits to thread locking.
	    * Exact matching for the console version of gWaei was readded
	      because it is truly needed there
	    * The sandboxing issue caused by gtk-update-icon-cache for the
	      package maintainers.
	    * The README has been updated as it was woefully out of date.


November 4, 2010
	Release of the first Public Binary of gWaei for Windows! Go get it!

	Real progress has been made on a usable native gWaei binary for
	Windows. It still needs some love, but it means the worst of the
	port is over. I am currently looking for someone who wants to be a
	Windows port maintainer. If you are interested and ready to learn,
	I would be happy to have you aboard. Just contact us through our
	IRC channel or email me.

	What is still missing from the Windows version are:

	    * Spellcheck support through libsexy/enchant
	    * Preferences which will become possible once the code is ported
	      to GSettings from GConf
	    * Proper multithreading during searches
	    * Various polish issues

	Otherwise, the program is working pretty well and it is exciting
	seeing gWaei make it to more platforms.


May 10, 2010
	Version 1.4.0 of gWaei is out! Go get it!

	A fair amount more background reworking had went into this
	release, and much of the interface has been tweaked to be smaller,
	easier to maintain, and prettier.There is a revamped no results
	page where you can search for the word online or in another
	dictionary with just a click. There is also functionality to
	search for a word in a new tab by right clicking it.

	The command line now show download progress as a dictionary is
	being installe,d, and has recieved some basic maintenace.


May 9, 2010
	Version 1.3.1 and 1.2.3 of gWaei is out! Go get it!

	This fixes corrupt dictionary installs because the whole file
	wasn't being written to disk. If you have gWaei crash right at the
	end of searches, it is most likely this bug. Install the update,
	reinstall the dictionary, and you should be fine. (Alternatively,
	install the dictionary then quit to force the whole file to be
	written. Then searches should be fine.)


May 6, 2010
	Version 1.2.2 of gWaei is out! Go get it!

	But if you have 1.3.0, don't get it! This is a bug fix release
	with minimal changes for distrobutions using ths e 1.2.x
	series. This should remove crashes that appear when using a
	version of gtk+ greater than 2.16.


March 19, 2010
	Version 1.3.0 of gWaei is out! Go get it!

	Now supports tabs. A lot of code rewritten. New ncurses interface
	for the console version. Many bug fixes. Simpler preferences
	dialog.
2011-01-25 11:02:34 +00:00
markd
2d92c179cd Update to KDE SC 4.5.5
bugfixes and translation updates
2011-01-23 07:55:12 +00:00
markd
4b31d1fc42 svn r1216162 fix a memcpy with overlapping source/dest 2011-01-23 04:26:59 +00:00
plunky
5e07589898 update to zyGrib 3.9.9, changelog below
# 2011-01-07 : zyGrib Version 3.9.9

    * Distribution for Mac (Intel): ready to use complete .dmg archive.
    * Bug fixed with Mac version (frequent crash after a download).
    * New module by Polaris (Tim Holtschneider) : curve plot (yet experimental).

# 2010-12-20 : zyGrib Version 3.9.8

    * Download high resolution data from Meteoblue (Switzerland and surroundings).
    * Plot isotherms (actually in Celcius degrees and at 2m above ground).
    * Reverse mouse wheel zoom (same behaviour than the excellent OpenCPN navigation software).
    * Freeze first column of meteotables (headers).
    * More proxy parameters.
    * New spanish translation by Luis Mederos.
    * Fix some old bugs... create some new bugs...
2011-01-22 09:53:46 +00:00
wiz
c8049da19b Update to 5.3.
2011-01-14 tim <gyunaev@ulduzsoft.com>
    - Version 5.3 released.
    - Fixed spelling error (thx Razvan Visan)
    - Changed encodings order for Chinese and Japanese languages
    (thanks Kai-Chieh Ku)
    - Added Ukrainian localization (thanks Olexander Yatsenko)
    - Added Brazilian localization (thanks Márcio Moraes)
    - Fixed some grammatical errors (thanks Robin 'cheese' Lee)
    - Fixed webkit engine for buggy CHMs which do not have all
    content, as well as cases when external references cannot be
    loaded. Thanks to Kai-Chieh Ku
    - Added Mac support (thanks Serge Weinstock)
2011-01-21 22:30:46 +00:00
tonnerre
2bebd933c8 Import the commander Ruby gem, version 4.0.2.
Commander is a framework for Ruby command-line executables. It bridges the
gap between other terminal related libraries (OptionParser, HighLine), while
providing many new features.
2011-01-20 14:33:24 +00:00
markd
6854a9877f PLIST additions for Linux 2011-01-20 12:23:36 +00:00
markd
8a511aefd9 Some other programs are installed on Linux. 2011-01-20 12:10:23 +00:00
markd
1585910d56 fix build with gcc4.4.
explicitly dont compile kdat (otherwise PLIST wont match on linux)
2011-01-20 12:05:56 +00:00
markd
10da2a6f46 fix build with gcc4.4 2011-01-20 11:56:51 +00:00
jmmv
cf1612360f Update to 1.4:
* Window bell reporting fixed.
* Show which pane is active in the list-panes output.
* Backoff reworked.
* Prevent the server from dying when switching into copy mode when already
  in a different mode.
* Reset running jobs when the status line is enabled or disabled.
* Simplify xterm modifier detection.
* Avoid crashing in copy mode if the screen size is too small for the
  indicator.
* Flags -n and -p added to switch-client.
* Use UTF-8 line drawing characters on UTF-8 terminals, thus fixing some
  terminals (eg putty) which disable the vt100 ACS mode switching sequences
  in UTF-8 mode. On terminals without ACS, use ASCII equivalents.
* New server option exit-unattached added.
* New session option destroy-unattached added.
* Fall back on normal session choice method if $TMUX exists but is invalid
  rather than rejecting.
* Mark repeating keys with "(repeat)" in the key list.
* When removing a pane, don't change the active pane unless the active pane
  is actually the one being removed.
* New command last-pane added.
* AIX fixes.
* Flag -a added to unbind-key.
* Add XAUTHORITY to update-environment.
* More info regarding window and pane flags is now shown in list-*.
* If VISUAL or EDITOR contains "vi" configure mode-keys and status-key to vi.
* New window option monitor-silence and session option visual-silence added.
* In the built-in layouts distribute the panes more evenly.
* Set the default value of main-pane-width to 80 instead of 81.
* Command-line flag -V added.
* Instead of keeping a per-client prompt history make it global.
* Fix rectangle copy to behave like emacs (the cursor is not part of the
  selection on the right edge but on the left it is).
* Flag -l added to switch-client.
* Retrieve environment variables from the global environment rather than
  getenv(3), thus allowing them to be updated during the configuration file.
* New window options other-pane-{height,width} added.
* More minor bugs fixed and manpage improvements.
2011-01-13 16:48:47 +00:00
wiz
af3596f984 png shlib name changed for png>=1.5.0, so bump PKGREVISIONs. 2011-01-13 13:36:05 +00:00
adam
bcdd6922f0 Fix building on Mac OS X 2011-01-12 07:22:38 +00:00
drochner
8bd2915ae5 update to 2.32.0
This switches to the gnome-2.32 release branch.
2011-01-11 19:37:56 +00:00
markd
bc7be91408 Fix build on DragonFly. PR#44351 from Peter Avalos 2011-01-10 11:16:34 +00:00
markd
caa929deae Fix build on DragonFly PR#44352 from Peter Avalos 2011-01-10 11:00:30 +00:00
drochner
e0b06da46a add Dragonfly support, from Tony Young per PR pkg/44345 2011-01-08 12:43:10 +00:00
obache
1f3904ba24 Fixes build on DragonFly-2.8.2. 2011-01-02 14:46:38 +00:00
obache
00932248ef Fixes build on DragonFly-i386. 2011-01-02 13:01:44 +00:00
obache
b65fa0cc3c This package is using GNU Configure script.
Changed to GNU_CONFIGURE=yes so that pksrc hooks for GNU Configure will be
invoked and fixes PR#44299.
2010-12-31 07:57:14 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
jmmv
4efe82d753 Update to 1.3. Tested on NetBSD-current/amd64 and Mac OS X 10.6.
CHANGES FROM 1.2 TO 1.3, 18 July 2010

* New input parser.
* Flags to move through panes -UDLR added to select-pane.
* Commands up-pane, and down-pane removed, since equivalent behaviour is now
  available through the target flag (-t:+ and -t:-).
* Jump-forward/backward in copy move (based on vi's F, and f commands).
* Make paste-buffer accept a pane as a target.
* Flag -a added to new-window to insert a window after an existing one, moving
  windows up if necessary.
* Merge more mode into copy mode.
* Run job commands explicitly in the global environment (which can be modified
  with setenv -g), rather than with the environment tmux started with.
* Use the machine's hostname as the default title, instead of an empty string.
* Prevent double free if the window option remain-on-exit is set.
* Key string conversions rewritten.
* Mark zombie windows as dead in the choose-window list.
* Tiled layout added.
* Signal handling reworked.
* Reset SIGCHLD after fork to fix problems with some shells.
* Select-prompt command removed. Therefore, bound ' to command-prompt -p index
  "select-window -t:%%" by default.
* Catch SIGHUP and terminate if running as a client, thus avoiding clients from
  being left hanging around when, for instance, a SSH session is disconnected.
* Solaris 9 fixes (such as adding compat {get,set}env(3) code).
* Accept none instead of default for attributes.
* Window options window-status-alert-{alert,bg,fg} added.
* Flag -s added to the paste-buffer command to specify a custom separator.
* Allow dragging to make a selection in copy mode if the mode-mouse option is
  set.
* Support the mouse scroll wheel.
* Make pipe-pane accept special character sequences (eg #I).
* Fix problems with window sizing when starting tmux from .xinitrc.
* Give tmux sockets (but not the containing folder) group permissions.
* Extend the target flags (ie -t) to accept an offset (for example -t:+2), and
  make it wrap windows, and panes.
* New command choose-buffer added.
* New server option detach-on-destroy to set what happens to a client when the
  session it is attached to is destroyed. If on (default), the client is
  detached. Otherwise, the client is switched to the most recently active of
  the remaining sessions.
* The commands load-buffer, and save-buffer now accept a dash (-) as the file
  to read from stdin, or write to stdout.
* Custom layouts added.
* Additional code reduction, bug fixes, and manpage enhancements.

CHANGES FROM 1.1 TO 1.2, 10 March 2010

* Switch to libevent.
* Emulate the ri (reverse index) capability, ergo allowing tmux to at least
  start on Sun consoles (TERM=sun, or sun-color).
* Assign each entry a number, or lowercase letter in choose mode, and accept
  that as a shortcut key.
* Permit top-bit-set characters to be entered in the status line.
* Mark no-prefix keys with (no prefix), rather than [] in list-keys.
* New command show-messages (alias showmsgs), and new session option
  message-limit, to show a per-client log of status lines messages up to the
  number defined by message-limit.
* Do not interpret #() for display-message to avoid leaking commands.
* New window options window-status-format, and window-status-current-format to
  control the format of each window in the status line.
* Add a -p flag to display-message to print the output, instead of displaying
  it in the status line.
* Emulate il1, dl1, ich1 to run with vt100 feature set.
* New command capture-pane (alias capturep) to copy the entire pane contents
  to a paste buffer.
* Avoid duplicating code by adding a -w flag to set-option, and show-options to
  set, and show window options. The commands set-window-option, and
  show-window-options are now aliases.
* Panes can now be referred to as top, bottom, top-left, etc.
* Add server-wide options, which can be set with set-option -s, and shown with
  show-options -s.
* New server option quiet (like -q from the command line).
* New server option escape-time to set the timeout used to detect if escapes
  are alone, part of a function key, or meta sequence.
* New session options pane-active-border-bg, pane-active-border-fg,
  pane-border-bg, and pane-border-fg to set pane colours.
* Make split-window accept a pane target, instead of a window.
* New command join-pane (alias joinp) to split, and move an existing pane into
  the space (the opposite of break-pane), thus simplifying calls to
  split-window, followed by move-window.
* Permit S- prefix on keys for shift when the terminal/terminfo supports them.
* Window targets (-t flag) can now refer to the last window (!), next (+), and
  previous (-) window by number.
* Mode keys to jump to the bottom/top of history, end of the next word, scroll
  up/down, and reverse search in copy mode.
* New session option display-panes-active-colour to display the active pane in
  a different colour with the display-panes command.
* Read the socket path from $TMUX if it's present, and -L, and -S are not
  given.
* Vi-style mode keys B, W, and E to navigate between words in copy mode.
* Start in more mode when configuration file errors are detected.
* Rectangle copy support added.
* If attach-session was specified with the -r flag, make the client read-only.
* Per-window alternate-screen option.
* Make load-buffer work with FIFOs.
* New window option word-separators to set the characters considered as word
  separators in copy mode.
* Permit keys in copy mode to be prefixed by a repeat count, entered with [1-9]
  in vi mode, or M-[1-9] in emacs mode.
* utf8 improvements.
* As usual, additional code reduction, bug fixes, and manpage enhancements.
2010-12-21 12:55:54 +00:00
obache
880707dc5b Bump PKGREVISION from icu shlib major bump. 2010-12-17 07:36:08 +00:00
wiz
c6a8460057 Update to 2.3.2:
The Tellico development team, namely me, is happy to announce that
version 2.3.2 is available from the download page. Tellico 2.3.2
includes several bug fixes, among them:

    * Fixed bug with list view settings not being saved between sessions (Bug 256373)
    * Fixed bug with updating groups for derived values (Bug 256374)
    * Made Nepomuk support optional
    * Added cover art support for MusicBrainz source
    * Fixed Google Scholar data source to properly fetch Bibtex
    * Fixed bug with FreeDB results not using track artists (Bug 258541)
    * Fixed bug with importing Bibtex file with keyword and keywords fields (Bug 258269)
    * Fixed sorting multiple numeric values in column view
    * Fixed sorting for numeric values in group view
    * Updated Allocine script to version 0.7.3 (Bug 258281)
    * Updated Bibtex importer to translate non-breaking spaces
2010-12-15 13:25:05 +00:00
wiz
08e4bdaff3 Update to 0.8.12:
goffice 0.8.12:

Andreas
	* Fix US 30/360 date calculations. [#631242][#630784]

Jean:
	* Fixed sorting with accentuated characters. [#631504]
	* Allow filled plots to be displayed behind the grids. [#632310]
	* Fixed patterns with cairo-1.10.
	* Fixed flawed exponential fit in graphs for small values. [#633735]
	* Fixed an infinite loop condition in cubic spline evaluation. [#633965]

Morten:
	* Fix GOImage-vs-cairo lifecycle issue.
	* Fix loading of weird themes.

--------------------------------------------------------------------------
goffice 0.8.11:

Jean:
	* Implement custom grids in xyz plots. [#624273]

Jon Nordby:
	* Update API documentation.

Morten:
	* Improve fractional days support for date axes.
	* Draw charset/locale selectors with "radio" buttons.

Yasuaki Taniguchi:
	* Fix charset problem for Japanese.  [#627829]
2010-12-12 11:55:42 +00:00
wiz
a8d688f4d7 Update to 2.1.3:
Fixed issues

    * All ‘null (FP)’ problems should be resolved
    * Post-end bid-counts should be correct again
    * eBay is testing a new ‘confirm’ page which broke sniping.
    * Update-All works again, and is reasonably efficient
    * Substantial performance tuning
2010-12-12 11:39:47 +00:00
adam
ee8b321706 Changes 0.10.6:
* New feature for installing landscapes from ZIP archives.
* New plugin: Solar System editor.
* New plugin: Time Zone manual override.
* New translatable strings: stars and nebulae.
* Selected plugins loaded by default.
* Fixed on change of sky culture.
* Fixed clearing of single constellation selection.
* Fixed constellation art engine, removing distortion of images.
* Changed GUI styles (all dialogs now use "Title Bar", the two different tabbed
  widget implementations are styled consistently).
* Changed Solar System engine, allowing "Comets" and "Minor planets" to be
  handled as classes of objects separate from "Planets".
* Translatable plugin names, descriptions and some other strings.
* Oculars plugin: now uses a configuration file instead of SQL.
* Oculars plugin: added manual override of keyboard shortcuts.
* Oculars plugin: CCD sensors formula fixed.
* Satellites plugin: added new orbit prediction engine.
* Satellites plugin: added trajectory visualization.
* Satellites plugin: fixed problems leaving satellite TLEs out of date.
* Satellites plugin: can now update TLEs from a local file.
* Satellites plugin: satellite visibility can now be saved from satellites
  dialog.
* Telescope control plugin: fixed bad serial port names on Windows.
* Telescope control plugin: fixed telescopes disappearance on startup.
* Telescope control plugin: added manual equinox/epoch override.
* Various rendering problems resolved.
* SQLite dependency dropped. The Qt SQLite driver no longer needs to be
  packaged with Stellarium.
2010-12-06 21:03:18 +00:00
markd
77db46e172 Find recent libwpd, but remove koffice-libwpd option from the default
build as currently doesn't build against it.  Bump PKGREVISION.
2010-12-06 11:56:44 +00:00
markd
c92ceaebe1 Update to KDE SC 4.5.4
4.5.4 brings bugfixes and translation updates
2010-12-06 11:43:38 +00:00
gson
018660120e Update misc/py-anita to 1.18. Changes from 1.17:
Deal with sysinst no longer asking for a password cipher.

Create the work directory in "test" mode so that it works without
running "install" first.

Fix incorrect description of the --workdir option in the man page, and
consistently use the term "work directory" throughout.

Reorganized the man page, adding a MODES section.

New mode "print-workdir".

Fix installation of historical versions of -current around
CVS date 2009.08.23.20.57.40.
2010-12-04 19:43:37 +00:00
taca
c2a322e374 Update ruby-configuration pacakge to 1.2.0.
Changes are unknown.
2010-12-04 04:12:18 +00:00
taca
2161440548 Update ruby-columnize package to 0.3.2.
0.3.2

- Mostly Administrivia.
  * Add .gemspec, correct description field and add a summary.
  * Add Columnize::VERSION
  * Simplify Rakefile
  * Add stub Makefiles
2010-12-04 04:11:29 +00:00
taca
d9e2dcee79 Update ruby-bundler package to 1.0.7.
## 1.0.7 (November 17, 2010)

Bugfixes:

  - Remove Bundler version from the lockfile because it broke
    backwards compatibility with 1.0.0-1.0.5. Sorry. :(

## 1.0.6 (November 16, 2010)

Bugfixes:

  - Fix regression in `update` that caused long/wrong results
  - Allow git gems on other platforms while installing (#579)

Features:

  - Speed up `install` command using various optimizations
  - Significantly increase performance of resolver
  - Use upcoming Rubygems performance improvements (@tmm1)
  - Warn if the lockfile was generated by a newer version
  - Set generated gems' homepage to "", so Rubygems will warn

## 1.0.5 (November 13, 2010)

Bugfixes:

  - Fix regression disabling all operations that employ sudo

## 1.0.4 (November 12, 2010)

Bugfixes:

  - Expand relative :paths from Bundler.root (eg ./foogem)
  - Allow git gems in --without groups while --frozen
  - Allow gem :ref to be a symbol as well as a string
  - Fix exception when Gemfile needs a newer Bundler version
  - Explanation when the current Bundler version conflicts
  - Explicit error message if Gemfile needs newer Bundler
  - Ignore an empty string BUNDLE_GEMFILE
  - Skeleton gemspec now works with older versions of git
  - Fix shell quoting and ref fetching in GemHelper
  - Disable colored output in --deployment
  - Preserve line endings in lock file

Features:

  - Add support for 'mingw32' platform (aka RubyInstaller)
  - Large speed increase when Gemfile.lock is already present
  - Huge speed increase when many (100+) system gems are present
  - Significant expansion of ISSUES, man pages, and docs site
  - Remove Open3 from GemHelper (now it works on Windows™®©©
  - Allow setting roles in built-in cap and vlad tasks

## 1.0.3 (October 15, 2010)

Bugfixes:

  - Use bitwise or in #hash to reduce the chance of overflow
  - `bundle update` now works with :git + :tag updates
  - Record relative :path options in the Gemfile.lock
  - :groups option on gem method in Gemfile now works
  - Add #platform method and :platform option to Gemfile DSL
  - --without now accepts a quoted, space-separated list
  - Installing after --deployment with no lock is now possible
  - Binstubs can now be symlinked
  - Print warning if cache for --local install is missing gems
  - Improve output when installing to a path
  - The tests all pass! Yay!

## 1.0.2 (October 2, 2010)

Bugfix:

  - Actually include the man pages in the gem, so help works
2010-12-04 04:10:55 +00:00
dholland
416c42c489 Requires gdk-pixbuf2-xlib for gtk plugin. From PR 44178. 2010-12-02 07:35:05 +00:00
drochner
544b5c1a3e update to 2.30.2
changes:
-minor fixes
-translation updates
2010-11-29 18:32:00 +00:00
dholland
61f60877b1 Fix PR 44163 by setting PREFIX correctly within the package. While
here, add patch comments and remove pkglint. PKGREVISION -> 7.
2010-11-28 20:52:44 +00:00
drochner
fe311bd267 update to 2.32.0
This switches to the gnome-2.32 release branch.
2010-11-28 13:23:06 +00:00
gson
3f5a7d7080 Update misc/py-anita from 1.15 to 1.17. Changes:
Update the discussion of Linux KVM virtualization compatibility in the
BUGS section, noting the --qemu-args -no-kvm-irqchip workaround and
including a reference to PR 44069.

New command line option "--sets".

Add a rudimentary INSTALL file.

The "misc" set is now installed by default, as it is required for
the ATF XML DTD, XSL files, and style sheets.

The "test" command now exports the raw and XML format ATF output
to the host, along with some auxiliary files needed for further
processing of the XML output.

Add support for FreeBSD hosts, from Kurt Lidl.
2010-11-25 14:44:20 +00:00
wiz
0f39b69ffb Bump PKGREVISION for libwpd shlib name change. 2010-11-25 10:28:34 +00:00
wiz
9c4d7c5c2c Update to 2.1.2:
o Fix some drag-and-drop issues caused by eBay’s new URL format
o Improve My eBay lookup
o Fix the display problems which made it look like completed items were gone.
o Try to make post-end auction updating work more smoothly
o A bunch of internal bugfixes
2010-11-23 22:55:52 +00:00
wiz
c7d3fe5f45 Update to 2.3.1:
* Released Tellico 2.3.1.
* Fixed edit dialog behavior when closing to be consistent with discarding data (Bug: 255938).
* Fixed error in Italian translation that caused HTML error and add workaround for future problems (Bug: 254863).
* Updated Freebase source for adapted /music/release schema.
* Updated IMDb data source for new layout (Bug: 253549).
* Added options in CSV importer and exporter for table delimiters.
* Changed URL field output to truncate link text to 30 letters (Bug: 250880).
* Increased max icon size to 256.
* Changed updating match algorithm to try to improve results when having multiple good matches (Bug: 250886).
* Updated GCstar plugin fetcher to use a separate thread.
* Fixed crash with z39.50 fetcher (Bug: 250795).
* Updated GCstar plugin fetcher to work with comic books.
* Fixed parsing for director and writer in IMDB fetcher (Bug: 249096).
* Updated DTD and added unit test for validation.
* Added GCstar import/export for comic book collections.
* Fixed bug with adding new fields during CSV import.
* Added GCstar export for wine collections.
* Improved GCstar import for wine collections.
* Fixed filter view to apply filter when item is selected (Bug: 248657).
* Improved exporter to add option for limiting exported fields (Bug 246390).
* Added data source fetcher for dvdfr.com.
2010-11-23 17:31:29 +00:00
mrg
63c1aceb24 add a "cups" options, default to on. 2010-11-19 08:29:30 +00:00
tnn
05b932f619 committed previous from the wrong tree, we should only bl3 gdk-pixbuf2-xlib
if the gtk2 option is enabled.
2010-11-17 10:15:53 +00:00
tnn
db4d449180 buildlink graphics/gdk-pixbuf2-xlib to fix
configure: error: requirements to build the gtk-plugin not met.
2010-11-17 10:13:47 +00:00
abs
9987fa4b3a PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome 2010-11-15 22:56:08 +00:00
obache
4df37b6c5f Shlib major bumped from 3 to 4 at update of ImageMagick-6.6.4.1.
Bump ABI_DEPENDS (and recursive bump).
2010-11-14 14:05:57 +00:00
markd
113e1423ce Make sure it uses the correct liblzma 2010-11-10 10:14:42 +00:00
plunky
88ec62d733 update to 3.9.7:
2010-10-28 : zyGrib Version 3.9.7

    * Fix a supid bug (oops) : crash when create animation.
2010-11-08 18:42:44 +00:00
markd
d219d2320d Update to KDE SC 4.5.3
4.5.3 brings a number of improvements:

    * KSharedDataCache has cache invalidation bug fixed that caused stability
           when daylight saving time changed.
    * Icon overlays in Dolphin are now positioned correctly after adjusting
      the zoom level.
    * Okular, KDE's universal document viewer has seen improvements in the
      DjVu and XPS backends.
2010-11-03 20:07:33 +00:00
wiz
d181a9e465 Reset maintainer. 2010-11-01 00:08:09 +00:00
plunky
7b6b584f0a update to 3.9.6
# 2010-10-25 : zyGrib Version 3.9.6

    * Fix a bug in version 3.9.5 : sometimes the progress bar was not hidden after the opening of a file.

# 2010-10-25 : zyGrib Version 3.9.5

    * New data (thank you NOAA !) : wind gust.
    * Animation when loading files.
    * Can interrupt the loading of big files.
    * Fix a bug : rare crash when manipulating meteotables.
2010-10-28 07:58:16 +00:00
markd
cb6e1b9309 Add a buildlink3.mk 2010-10-27 09:43:12 +00:00
markd
1dfd41696e hacks.mk was meant to go as part of the 4.5.2 update. 2010-10-27 05:43:33 +00:00
markd
547720d8ee Update to KDE SC 4.5.2
4.5.2
translation updates, performance and stability improvements and other
bugfixes.

4.5.0
new versions of the Plasma Workspaces, the KDE Applications and the KDE
Development Platform in version 4.5.0. While focus within this release
cycle lay on stability, the overall polish and performance gain is well
noticable. Features such as the reworked notification area, Marble's map
routing and support for WebKit in Konqueror round up this release.
2010-10-25 20:55:22 +00:00
markd
4098f807b7 Update to attica 0.2.0
- Update voting function (add overload) to take uint 0..100 according to
   ocs 1.6 spec
 - Add comments interface to request comments, add new comments and vote
   for comments
 - Add distribution interface to request distributions available in the
   server
 - Add homepagetype interface to request home page types from the server
 - Add methods to access home page entries in content
 - Add support of icons to content (OCS 1.6)
 - Add support of videos to content (OCS 1.6)
 - Add summary description to content (OCS 1.6)
 - Add size to download description (OCS 1.6)
 - Add fields to download item for package name, package repository, gpg
   fingerprint, mimetype (OCS 1.6)
2010-10-25 20:07:27 +00:00
wiz
97ed5045b9 If installing icons to share/icons/gnome, depend on gnome-icon-theme.
Bump PKGREVISION.
2010-10-20 20:26:29 +00:00
obache
a918a5905f Update m17n-contrib to 1.1.12.
* Changes in the m17n-contrib 1.1.12
** New input method:
im/be-kbd.mim (Belarusian)
2010-10-16 12:57:20 +00:00
obache
381862f911 Update m17n-db to 1.6.2.
* Changes in the m17n database 1.6.2
** New FLT file.
FLT/HEBR-OTF.flt
2010-10-16 12:53:11 +00:00
plunky
af4e667f09 update to zyGrib 3.9.4:
# 2010-10-06: zyGrib Version 3.9.4

    * Reduce flashing when resizing window.
    * Fixed a bug: the first image was not allways visible with
      some graphic cards.

# 2010-10-05: zyGrib Version 3.9.3

    * Supress a vicious bug (random crash).
    * New dutch translation.

# 2010-05-14: zyGrib Version 3.9.2

    * zyGrib uses the new GRIB file server, faster and more reliable.
    * Max file size is now 50 Mb (was 20).
    * New data in meteotables: geopotential altitude.
    * Can save data from meteotables in SYLK format, readable with a
      spreadsheet. Don't use a famous but stupid spreadsheet which do
      not understand correctly languages with beautiful accentued
      characters, but prefer OpenOffice.

# 2010-05-02: zyGrib Version 3.9.1

    * More complete information about data on the map.
    * Add relative humidity in altitude in meteotables.
    * Display if possible the wind arrows at the same altitude than the
      main data of the map.
    * Suppress a bug: area containing longitude 180° was sometimes not
      displayed when zooming.

# 2010-04-20: zyGrib Version 3.9.0

    * New altitude level: 200 hPa ( 11800 m).
    * New data: relative humidity at levels 850, 700, 500,300, 200 hPa.
    * Can choose altitude levels when downloading GRIB files.
    * Solve some bugs.

# 2010-04-03: zyGrib Version 3.8.6

    * Despite malformed file headers, zyGrib can now display corrupted GRIB
      files distributed by some suppliers, in particular Maxsee.  There are
      more explanation in the french news page and in the forum (also in
      french, sorry).

# 2010-03-15: zyGrib Version 3.8.5.3

    * New language: Czech (thanks Pavel Kalian).

# 2010-03-09: zyGrib Version 3.8.5.2

    * Suppress again the bug in the Windows version: saving images worked
      with XP, but not with Vista or Windows 7 (thanks a lot Microsoft for
      not being compatible with yourself).

# 2010-03-08: zyGrib Version 3.8.5.1

    * Suppress a bug in the Windows version: a dll was missing, so it was
      impossible to save images.

# 2010-03-08: zyGrib Version 3.8.5

    * Suppress an important bug: there was an unpredictable crash when reading
      certain GRIB files (rare, but it is not a reason).

# 2010-03-01: zyGrib Version 3.8.4

    * Save image (menu file or Ctrl+S).
    * Save all the images of an animation.
    * The trick red of the choice in the date moves when the mouse comes
      to titillate the date selector (sorry, automatic translation lose
      spoonerism !!!).
    * Dialog boxes more compact, so zyGrib is usable on low resolution
      screen (800x600).
    * Choose the language at the first start of the application.
    * Source sentences are now in english (bad :) ) to facilitate the
      translations.
    * Suppress a bug: geopotential altitudes very different from average
      value was not shown.

# 2010-01-31: zyGrib Version 3.8.3

    * Graphical date selector.
    * More complete information on meteorigical data shown on the map.

# 2010-01-28: zyGrib Version 3.8.2

    * Can choose the unit for the geopotential altitudes.
    * Show altitude data in meteotables.
    * suppress a bug in the Windows version: save file path was lost.

# 2010-01-25: zyGrib Version 3.8.1

    * Download and visualization of data in altitude (geopotential altitude,
      wind, temperature, theta-e) at 850, 700, 500 et 300 hPa (approx
      1460, 3000, 5600 and 9200 meters).
    * When opening a GRIB file, the displayed date is the closest date
      from now.
    * There was a lot of very important changes in the source code structure.
      It is now much easier to evoluate and to add new meteorological data.
    * Suppress a important bug when loading application in 3.8.0 version
      (in line only a few minutes).

# 2009-12-16: zyGrib Version 3.7.1

    * Update Dutch translation.
    * New Makefile in the source version for Linux.
      One can now do a make install to install all files in the directory
      $HOME/zyGrib (see the variable INSTALLDIR in the Makefile).
      Note: it's not a universal solution... but it's on the way...

# 2009-12-05: zyGrib Version 3.7.0

    * User can change the fonts used in the interface (Ctrl+E).
    * By default, zyGrib use and provide free fonts Liberation Fonts, for
      the interface and (more important) to assure the control of the size
      of the annotations on the maps.
    * Adaptive display of cities names, sorted by population.
    * Using cache memory for configuration parameters (significant speed
      improvment on slow support like USB key).
    * Important rewriting of source code to facilitate future evolutions.

# 2009-08-19: zyGrib Version 3.6.3

    * ZyGrib can now display Saildocs GRIB files.

# 2009-08-16: zyGrib Version 3.6.2

    * Updated translation files.

# 2009-08-15: zyGrib Version 3.6.1

    * Fixed a bug on the version number.
    * Meteotables a little dense for more data under the eyes.

# 2009-08-12: zyGrib Version 3.6.0

    * Transition to QT 4.5.
2010-10-16 06:50:52 +00:00
obache
0b460921a6 require some directories before installation. 2010-10-03 13:03:51 +00:00
obache
f8c4ad9dca Bump PKGREVISION by default mysql version changed from 5.0 to 5.1. 2010-09-30 10:49:10 +00:00
dsainty
c0b83e678e Force flush to be pipe-friendly (from ppower -m). Bump PKGREVISION. 2010-09-29 10:42:48 +00:00
taca
9e4978df82 Remove empty value of LICENSE. 2010-09-23 09:22:13 +00:00
obache
13479f49c6 Update gpriodic to 2.0.10.
Based on PR#43779 by Kamel Derouich, with some improvements by me.

2.0.10 : Minor code update & include translations
 * Use the standard gtk+ about window
 * Include the russian translation contributed by Michael Shigorin
2.0.9 : Minor code update & include translations
 * Several minor fixed contributed from the Debian project has been merged.
 * Italian and galician translations have been included.
2010-09-19 02:18:42 +00:00
taca
21de65014b * Remove patch of gemspec to allow depending to rubygems 1.3.5.
Bump PKGREVISION.
2010-09-16 12:05:27 +00:00
taca
a829c0f2f1 Update rubygems to 1.3.7.
o pkgsrc changes:

  * Add patches to keep output of specification sub-command as before.
  * Make sure to 'yaml is loaded in Gem::Specification::from_yaml().


=== 1.3.7 / 2010-05-13

NOTE:

http://rubygems.org is now the default source for downloading gems.

You may have sources set via ~/.gemrc, so you should replace
http://gems.rubyforge.org with http://rubygems.org

http://gems.rubyforge.org will continue to work for the forseeable future.

New features:

* `gem` commands
  * `gem install` and `gem fetch` now report alternate platforms when a
    matching one couldn't be found.
  * `gem contents` --prefix is now the default as specified in --help.  Bug
    #27211 by Mamoru Tasaka.
  * `gem fetch` can fetch of old versions again.  Bug #27960 by Eric Hankins.
  * `gem query` and friends output now lists platforms.  Bug #27856 by Greg
    Hazel.
  * `gem server` now allows specification of multiple gem dirs for
    documentation.  Bug #27573 by Yuki Sonoda.
  * `gem unpack` can unpack gems again.  Bug #27872 by Timothy Jones.
  * `gem unpack` now unpacks remote gems.
  * --user-install is no longer the default.  If you really liked it, see
    Gem::ConfigFile to learn how to set it by default.  (This change was made
    in 1.3.6)
* RubyGems now has platform support for IronRuby.  Patch #27951 by Will Green.

Bug fixes:

* Require rubygems/custom_require if --disable-gem was set.  Bug #27700 by
  Roger Pack.
* RubyGems now protects against exceptions being raised by plugins.
* rubygems/builder now requires user_interaction.  Ruby Bug #1040 by Phillip
  Toland.
* Gem::Dependency support #version_requirements= with a warning.  Fix for old
  Rails versions.  Bug #27868 by Wei Jen Lu.
* Gem::PackageTask depends on the package dir like the other rake package
  tasks so dependencies can be hooked up correctly.

=== 1.3.6 / 2010-02-17

New features:

* `gem` commands
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
    sources
  * `gem dep` now supports --prerelease.
  * `gem fetch` now supports --prerelease.
  * `gem server` now supports --bind.  Patch #27357 by Bruno Michel.
  * `gem rdoc` no longer overwrites built documentation.  Use --overwrite
    force rebuilding.  Patch #25982 by Akinori MUSHA.
* Captial letters are now allowed in prerelease versions.

Bug fixes:

* Development deps are no longer added to rubygems-update gem so older
  versions can update sucessfully.
* Installer bugs:
  * Prerelease gems can now depend on non-prerelease gems.
  * Development dependencies are ignored unless explicitly needed.  Bug #27608
    by Roger Pack.
* `gem` commands
  * `gem which` now fails if no paths were found.  Adapted patch #27681 by
    Caio Chassot.
  * `gem server` no longer has invalid markup.  Bug #27045 by Eric Young.
  * `gem list` and friends show both prerelease and regular gems when
    --prerelease --all is given
* Gem::Format no longer crashes on empty files.  Bug #27292 by Ian Ragsdale.
* Gem::GemPathSearcher handles nil require_paths. Patch #27334 by Roger Pack.
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
  Patch #27409 by Jakub Stastny.

Deprecation Notices:

* lib/rubygems/timer.rb has been removed.
* Gem::Dependency#version_requirements is deprecated and will be removed on or
  after August 2010.
* Bulk index update is no longer supported.
* Gem::manage_gems was removed in 1.3.3.
* Time::today was removed in 1.3.3.
2010-09-16 12:02:05 +00:00
wiz
4d24b9b8ad More PKGREVISION bumps for pixman update. 2010-09-14 11:13:10 +00:00
wiz
200e3c4a04 Bump dependency on pixman to 0.18.4 because cairo-1.10 needs that
version, and bump all depends.

Per discussion on pkgsrc-changes.
2010-09-14 11:00:44 +00:00
bad
d6d0db9f6d bump PKGREVISION for restricting JVMs to working ones in options.mk. 2010-09-13 22:38:38 +00:00
bad
12dfaed5be Fix JVM names. And remove openjdk7 as openoffice doesn't recognise it
as supported JVM.
2010-09-13 22:32:02 +00:00
wiz
b85c868148 Update to 0.8.10:
goffice 0.8.10:

Andreas:
	* Make sure the first rather than the last error is shown.
	* Plug leak.
	* Provide the opportunity of all errors to be shown.

Jean:
	* Always use real line width when evaluating dashes. [#442546]
	* Update x and y limits when data change for xyz plots. [#627288]
	* Do not crash when displaying cubic spline with no abscissa. [#627507]
	* Do not save image filling with no image. [#627690]
	* Don't use g_free instead of xmlFree. [#627700]
	* Optionnaly delete trendlines from legend. [#628031]
	* Fix critical in go_doc_finalize. [#628467]
	* Fixed a potential crasher in gog_styled_object_document_changed. [#628671]
	* Fixed GOImage references management. [#628732]

Morten:
	* Limit formats to sane number of decimals.  [#627066]
	* Fix minor go_string_replace issue.
	* Plug leaks.
	* Fix char-xmlChar confusion.
	* Fix graph crash.  [#628259]
	* Improve go_format_is_date.
	* Improve handling of date axes with time-of-day.
	* Fix FMR on image load.  [Part of #628467]
2010-09-13 10:58:43 +00:00
obache
0a1974f04b Marked as CONFLICTS with the previous pkgname (no ruby??- prefix). 2010-09-13 07:54:34 +00:00
taca
0dcddda4ec misc/rubygems/rubygem.mk has moved to lang/ruby/gem.mk. 2010-09-12 13:12:14 +00:00
taca
003b98181d Add and enable ruby-bundler. 2010-09-12 01:52:07 +00:00