Commit graph

129824 commits

Author SHA1 Message Date
obache
d3845f59fd Add and enable p5-Net-Twitter. 2008-08-20 07:59:00 +00:00
obache
a4b114e2f9 Added net/p5-Net-Twitter version 1.17 2008-08-20 07:58:18 +00:00
obache
ed949c510b Import p5-Net-Twitter-1.17 as net/p5-Net-Twitter.
Based on PPR 38486 by Peter Eisch.

http://www.twitter.com provides a web 2.0 type of ubiquitous presence.
This module allows you to set your status, as well as review the statuses of
your friends.
2008-08-20 07:57:43 +00:00
bjs
8a8e1e1893 + Updated devel/scmgit-base to 1.6.0 [bjs 2008-08-20]
Updated devel/scmgit-docs to 1.6.0 [bjs 2008-08-20]
	Updated devel/scmgit to 1.6.0 [bjs 2008-08-20]
2008-08-20 03:05:33 +00:00
bjs
4a27c47b98 +========================+
|GIT v1.6.0 Release Notes|
+========================+

User visible changes

 - Templates now installed in ${PREFIX}/share/examples/scmgit/templates
   and registered as REQD_FILES.  Template subdirectories are
   registered in MAKE_DIRS.
 - Installing the many git-foo binaries/scripts into libexec/git-core
   is now default and better supported.  If you've written any
   scripts or use any applications which expect the git-foo commands
   to be in ${PREFIX}/bin, please do update them accordingly.

+--------------------+
|Updates since v1.5.6|
+--------------------+

(subsystems)

* git-p4 in contrib learned "allowSubmit" configuration to control on
  which branch to allow "submit" subcommand.

* git-gui learned to stage changes per-line.

(portability)

* Changes for MinGW port have been merged, thanks to Johannes Sixt and
  gangs.

* Sample hook scripts shipped in templates/ are now suffixed with
  *.sample.

(documentation)

* Updated howto/update-hook-example

* Got rid of usage of "git-foo" from the tutorial and made typography
  more consistent.

* Disambiguating "--" between revs and paths is finally documented.

(performance, robustness, sanity etc.)

* index-pack used too much memory when dealing with a deep delta chain.
  This has been optimized.

* reduced excessive inlining to shrink size of the "git" binary.

* verify-pack checks the object CRC when using version 2 idx files.

* When an object is corrupt in a pack, the object became unusable even
  when the same object is available in a loose form,  We now try harder to
  fall back to these redundant objects when able.  In particular, "git
  repack -a -f" can be used to fix such a corruption as long as necessary
  objects are available.

* Performance of "git-blame -C -C" operation is vastly improved.

* git-clone does not create refs in loose form anymore (it behaves as
  if you immediately ran git-pack-refs after cloning).  This will help
  repositories with insanely large number of refs.

* core.fsyncobjectfiles configuration can be used to ensure that the loose
  objects created will be fsync'ed (this is only useful on filesystems
  that does not order data writes properly).

* "git commit-tree" plumbing can make Octopus with more than 16 parents.
  "git commit" has been capable of this for quite some time.

(usability, bells and whistles)

* even more documentation pages are now accessible via "man" and "git help".

* A new environment variable GIT_CEILING_DIRECTORIES can be used to stop
  the discovery process of the toplevel of working tree; this may be useful
  when you are working in a slow network disk and are outside any working
  tree, as bash-completion and "git help" may still need to run in these
  places.

* By default, stash entries never expire.  Set reflogexpire in [gc
  "refs/stash"] to a reasonable value to get traditional auto-expiration
  behaviour back

* Longstanding latency issue with bash completion script has been
  addressed.  This will need to be backmerged to 'maint' later.

* pager.<cmd> configuration variable can be used to enable/disable the
  default paging behaviour per command.

* "git-add -i" has a new action 'e/dit' to allow you edit the patch hunk
  manually.

* git-am records the original tip of the branch in ORIG_HEAD before it
  starts applying patches.

* git-apply can handle a patch that touches the same path more than once
  much better than before.

* git-apply can be told not to trust the line counts recorded in the input
  patch but recount, with the new --recount option.

* git-apply can be told to apply a patch to a path deeper than what the
  patch records with --directory option.

* git-archive can be told to omit certain paths from its output using
  export-ignore attributes.

* git-archive uses the zlib default compression level when creating
  zip archive.

* git-archive's command line options --exec and --remote can take their
  parameters as separate command line arguments, similar to other commands.
  IOW, both "--exec=path" and "--exec path" are now supported.

* With -v option, git-branch describes the remote tracking statistics
  similar to the way git-checkout reports by how many commits your branch
  is ahead/behind.

* git-branch's --contains option used to always require a commit parameter
  to limit the branches with; it now defaults to list branches that
  contains HEAD if this parameter is omitted.

* git-branch's --merged and --no-merged option used to always limit the
  branches relative to the HEAD, but they can now take an optional commit
  argument that is used in place of HEAD.

* git-bundle can read the revision arguments from the standard input.

* git-cherry-pick can replay a root commit now.

* git-clone can clone from a remote whose URL would be rewritten by
  configuration stored in $HOME/.gitconfig now.

* "git-clone --mirror" is a handy way to set up a bare mirror repository.

* git-cvsserver learned to respond to "cvs co -c".

* git-diff --check now checks leftover merge conflict markers.

* "git-diff -p" learned to grab a better hunk header lines in
  BibTex, Pascal/Delphi, and Ruby files and also pays attention to
  chapter and part boundary in TeX documents.

* When remote side used to have branch 'foo' and git-fetch finds that now
  it has branch 'foo/bar', it refuses to lose the existing remote tracking
  branch and its reflog.  The error message has been improved to suggest
  pruning the remote if the user wants to proceed and get the latest set
  of branches from the remote, including such 'foo/bar'.

* fast-export learned to export and import marks file; this can be used to
  interface with fast-import incrementally.

* fast-import and fast-export learned to export and import gitlinks.

* "gitk" left background process behind after being asked to dig very deep
  history and the user killed the UI; the process is killed when the UI
  goes away now.

* git-rebase records the original tip of branch in ORIG_HEAD before it is
  rewound.

* "git rerere" can be told to update the index with auto-reused resolution
  with rerere.autoupdate configuration variable.

* git-rev-parse learned $commit^! and $commit^@ notations used in "log"
  family.  These notations are available in gitk as well, because the gitk
  command internally uses rev-parse to interpret its arguments.

* git-rev-list learned --children option to show child commits it
  encountered during the traversal, instead of showing parent commits.

* git-send-mail can talk not just over SSL but over TLS now.

* git-shortlog honors custom output format specified with
  "--pretty=format:".

* "git-stash save" learned --keep-index option.  This lets you stash away
  the local changes and bring the changes staged in the index to your
  working tree for examination and testing.

* git-stash also learned branch subcommand to create a new branch out of
  stashed changes.

* git-status gives the remote tracking statistics similar to the way
  git-checkout reports by how many commits your branch is ahead/behind.

* "git-svn dcommit" is now aware of auto-props setting the subversion user
  has.

* You can tell "git status -u" to even more aggressively omit checking
  untracked files with --untracked-files=no.

* Original SHA-1 value for "update-ref -d" is optional now.

* Error codes from gitweb are made more descriptive where possible, rather
  than "403 forbidden" as we used to issue everywhere.

(internal)

* git-merge has been reimplemented in C.

+------------------+
|Fixes since v1.5.6|
+------------------+

All of the fixes in v1.5.6 maintenance series are included in
this release, unless otherwise noted.

 * git-clone ignored its -u option; the fix needs to be backported to
   'maint';

 * git-mv used to lose the distinction between changes that are staged
   and that are only in the working tree, by staging both in the index
   after moving such a path.

 * "git-rebase -i -p" rewrote the parents to wrong ones when amending
   (either edit or squash) was involved, and did not work correctly
   when fast forwarding.
2008-08-20 03:04:20 +00:00
bjs
fe7a0ff813 + Updated textproc/docbook-xsl to 1.74.0 [bjs 2008-08-20] 2008-08-20 02:53:13 +00:00
bjs
c53ecad6c1 +----------------------------------------------------------+
|              Update to docbook-xsl-1.74.0.               |
+----------------------------------------------------------+
pkgsrc-specific:
    - added shell code to Makefile to remove .gitignore
      found in every directory
    - added 'epub' and 'xhtml-1_1' to ${XSLMODS}.
    - use double-backslash in back-quoted shell code to
      appease pkglint

Release Notes for 1.74.0:

This release includes important bug fixes and adds the
following significant feature changes:

.epub target

    Paul Norton (Adobe) and Keith Fahlgren(O'Reilly Media)
    have donated code that generates .epub documents from
    DocBook input. An alpha- reference implementation in
    Ruby has also been provided.

    .epub is an open standard of the The International
    Digital Publishing Forum (IDPF), a the trade and
    standards association for the digital publishing
    industry.

    Read more about this target in epub/README

XHTML 1.1 target

    To support .epub output, a strict XHTML 1.1 target has
    been added. The stylesheets for this output are generated
    and are quite similar to the XHTML target.

Gentext updates

    A number of locales have been updated.

Roundtrip improvements

    Table, figure, template syncronization, and character
    style improvements have been made for WordML & Pages.
    Support added for OpenOffice.org.
2008-08-20 02:52:45 +00:00
epg
da6a0f026f Support user-destdir. 2008-08-19 23:41:05 +00:00
bjs
2cf4f664e1 Add jack-rack to audio/Makefile 2008-08-19 20:34:16 +00:00
bjs
76eb61c9d6 + Added audio/jack-rack version 1.4.7 [bjs 2008-08-19] 2008-08-19 20:33:12 +00:00
bjs
0ab7317830 Import jack-rack-1.4.7.
JACK Rack is a LADSPA effects rack for the JACK audio API.  It uses
GTK+ 2 (and optionally GNOME 2) for the GUI, and also understands LRDF
XML descriptions of LADSPA plugins.
2008-08-19 20:32:12 +00:00
seb
e2e15dac11 Note initial addition of p5-Sub-Override version 0.08 as
devel/p5-Sub-Override into The NetBSD Packages Collection.

The Perl 5 module Sub::Override provides a way to easily override
subroutines.
2008-08-19 19:30:51 +00:00
seb
3a459902d5 Add & enable p5-Sub-Override 2008-08-19 19:27:01 +00:00
seb
3a95581bf1 Initial import of p5-Sub-Override version 0.08 in the NetBSD Packages
Collection.

The Perl 5 module Sub::Override provides a way to easily override
subroutines.
2008-08-19 19:23:50 +00:00
epg
c6d4c8b076 Set MAKE_JOBS_SAFE =no. 2008-08-19 19:22:46 +00:00
bjs
56681cdaf4 Add buildlink3.mk. 2008-08-19 19:07:44 +00:00
heinz
9eac707be6 Greg Troxel removed games/blobwars and games/starfighter (upstream
author's request).
2008-08-19 18:51:19 +00:00
bjs
4fbf29d2d9 Updated chat/pidgin to 2.5.0 [bjs 2008-08-19]
Updated chat/libpurple to 2.5.0 [bjs 2008-08-19]
	Updated chat/finch to 2.5.0 [bjs 2008-08-19]
	Updated chat/pidgin-facebookchat to 1.27nb1 [bjs 2008-08-19]
	Updated chat/pidgin-icb to 20070505nb2 [bjs 2008-08-19]
	Updated chat/pidgin-latex to 1.2.1nb2 [bjs 2008-08-19]
	Updated chat/pidgin-otr to 3.2.0nb1 [bjs 2008-08-19]
	Updated chat/pidgin-sametime to 2.5.0 [bjs 2008-08-19]
	Updated chat/pidgin-silc to 2.5.0 [bjs 2008-08-19]
2008-08-19 18:21:31 +00:00
bjs
c67329ffbf Welcome to libpurple, finch, and pidgin version 2.5.0.
Bump PKGREVISION of non-bundled plug-ins.

Changes for 2.5.0 (08/17/2008) since 2.4.3:
	libpurple + pidgin:

 - Lots of bug fixes and improvements for the MSN protocol
   (MSNP15 support) and MSN "bunny icon" (?).
 - Miscellaneous bug fixes, a few new icons, etc.

 - The following API changes:

	libpurple:
  Added:
  * Connection flag PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY to indicate
    that the connection supports sending and receiving custom smileys.
  * PurpleSmiley and the Smiley API.
  * purple_serv_got_join_chat_failed
  * chat-join-failed signal (see conversation-signals.dox)
  * chat-invite-blocked and blocked-im-msg signals (see
    converation-signals.dox) (Thanks to Stefan Ott)
  * purple_blist_update_node_icon
  * purple_buddy_icons_node_has_custom_icon
  * purple_buddy_icons_node_find_custom_icon
  * purple_buddy_icons_node_set_custom_icon
  * purple_buddy_icons_node_set_custom_icon_from_file
  * purple_notify_user_info_prepend_section_break
  * purple_notify_user_info_prepend_section_header
  * "website" and "dev_website" items to the ui_info hash table
  * purple_cmds_get_handle, purple_cmds_init, purple_cmds_uninit
  * cmd-added and cmd-removed signals
  * purple_get_host_name
  * purple_util_fetch_url_len (temporary function overload to add max_len
    param)
  * purple_util_fetch_url_request_len
  * purple_prpl_send_attention
  * purple_prpl_got_attention
  * purple_prpl_got_attention_in_chat

  Deprecated:
  * purple_blist_update_buddy_icon
  * purple_buddy_icons_has_custom_icon
  * purple_buddy_icons_find_custom_icon
  * purple_buddy_icons_set_custom_icon
  * pidgin_set_custom_buddy_icon
  * purple_util_fetch_url_len
  * purple_util_fetch_url_request_len
  * serv_send_attention
  * serv_got_attention

  Changed:
  * xmlnode_copy now copies the prefix and namespace map for nodes.

	pidgin:
  Added:
  * gtk_imhtml_smiley_create, gtk_imhtml_smiley_reload and
    gtk_imhtml_smiley_destroy to deal with GtkIMHtmlSmiley's.
  * pidgin_pixbuf_from_imgstore to create a GdkPixbuf from a
    PurpleStoredImage.
  * pidgin_themes_smiley_themeize_custom to associate custom smileys to
    a GtkIMHtml widget.
  * GTK_IMHTML_CUSTOM_SMILEY flag for GtkIMHtml.
  * GTK+ Custom Smiley API.
2008-08-19 18:18:10 +00:00
tron
aec4f47919 Note update of the "pango" package to version 1.20.5nb1. 2008-08-19 18:11:51 +00:00
tron
98d037b9d8 Don't build the "atsui" backend under Mac OS X when we are building with
X11 support. It also doesn't work properly in the non-X11 case (at least
with XChat) but is essential for a non-X11 GTK+ 2.*.

Bump the package revision because of this change.
2008-08-19 18:10:22 +00:00
bjs
1a7aeb8ecf + Added graphics/babl version 0.0.22 [bjs 2008-08-19] 2008-08-19 17:52:20 +00:00
bjs
4ed2ff1ad5 Add 'babl' to graphics/Makefile. 2008-08-19 17:51:56 +00:00
bjs
aa889d4463 Import babl-0.0.22 (used in the development version of the GIMP).
--
babl is a dynamic, any to any, pixel format translation library.

It allows converting between different methods of storing pixels known
as pixel formats that have with different bitdepths and other data
representations, color models and component permutations.

A vocabulary to formulate new pixel formats from existing primitives is
provided as well as the framework to add new color models and data
types.
2008-08-19 17:51:14 +00:00
cegger
97134b4193 Install documentation files where they belong to and not into /usr/share/doc.
Patch from FUKAUMI Naoki per private mail.
2008-08-19 17:38:09 +00:00
agc
b8870d4b60 For no real reason, but per the "discussion" on tech-pkg, default the
creation of a symbolic link to the real work directory to "no".
2008-08-19 17:28:24 +00:00
tron
f21ccaeacc Revert "doxygen" package to its broken state as requested by
Joerg Sonnenberger and Dieter Baron.
2008-08-19 16:35:25 +00:00
joerg
68f3df2f1d Use pax instead of requiring GNU tar.
DESTDIR support
Fix unbalanced ' in configure.
2008-08-19 16:14:24 +00:00
taca
e41cce7659 s/ruby-rcairo-1.6.3/ruby-rcairo-1.7.0/
s/samba-3.2.1/samba-3.2.2/
2008-08-19 15:06:33 +00:00
bjs
1da54fe9e0 Updated net/aria2 to 0.15.2 [bjs 2008-08-19] 2008-08-19 14:43:16 +00:00
bjs
080caad503 + Updated net/aria2 to 0.15.2 [bjs 2008-08-19] 2008-08-19 14:42:19 +00:00
bjs
9c9154e58a Update to version 0.15.2. This release features extensive bug fixes and
significant feature enhancements; it also now builds on OpenSolaris
(tested with NexentaOS by development community).

I urge all users to upgrade.

A _partial_ list of changes:

- Added and/or updated Danish, Greek, Spanish, Catalan,
  Norwegian Nynorsk, Bulgarian, French, Catalan, and Japanese
  translations.
- Man page fixes.
- Fixed: numCommand is less than the value specified in -C option.
- Myriad bug fixes.
- Now uses name attribute in Metalink as local filename in
  BitTorrent downloads. BUG#2033999
- Fixed memory leaks in test code.
- Fixed wrong argument passing to BitfieldMan::isBitSet()
- Initialized _directIOAllowed
- Fixed memory leak in gzip decoder and metalink parser state
  machine.
- Plug many other memory leaks and fix unmatch malloc/free calls.
- Removed max chunk size check. This change fixes BUG#2040169
- Fixed the bug that causes segmentaion fault when resuming
  download using metalink without size tag. Reproducible only
  using HTTP URI.
- Removed writable check when socket's send buffer is full in
  BitTorrent downloads to lower CPU usage.
- Fixed broken gzip inflation.
  Turn off segmented downloading if gzip content is smaller than
  or equal to 1MiB and inflate the data on the fly, because HTTP
  response header doesn't contain the length of inflated
  file we can't determin where the chunk of data should be written.
  On the other hand, if gzip content is larger than 1MB, then
  turn off on the fly inflation, because some servers returns
  "content-type: gzip" for *.tgz, *.gz files.
 - Added gzip decompressor via libz.
 - Cache last calculated average download/upload speed.
 - Supported absolute/relative path in Location header field.
 - Use File::exists() instead of File::isFile() to allow non-
   regular file such as block special files.
 - Added a message "aria2 doesn't verify signature" to log message
   when signature file is saved.
 - Added the ability to save signature when download is completed
   if signature is available. The filename of signature file is
   the path to download file followed by ".sig". If it already
   exists, then signature will not be saved.
 - Improve accuracy of documentation and rename some options to be
    more descriptive of their functions/purposes.
 - Added the ability to retrieve signature from Metalink file.
    A retrieved signature is stored in Signature class and it is
    held by DownloadContext class. Note that aria2 doesn't
    verify signature.
 - Added --bt-seed option. If --bt-seed=true is given at the
    command-line, aria2 seeds previously downloaded files
    without validating piece hashes.
 - Fixed the compile error on Nexenta OS(GNU/Solaris OS).
    (Don't define `struct addrinfo' when __sun is defined)
 - Fixed the bug that UTF-8 encoded URL is not URL-encoded
 - Properly differentiate between ftp errors and actual zero-byte
   files (now supports ftp servers which do not recognize SIZE
   raw command).
2008-08-19 14:41:58 +00:00
joerg
c08aca2db2 Remove trailing ' to unbreak shell scripts. 2008-08-19 14:34:29 +00:00
bjs
9e8da69869 Add MAKE_JOBS_SAFE after noticing a the build wanted a library
it had yet to make.
2008-08-19 13:53:27 +00:00
joerg
ab708fa11c Catch up with PLIST changes due to dependency updates and bump revision. 2008-08-19 13:40:10 +00:00
obache
0b17b5530c - xclip-0.11 2008-08-19 13:40:05 +00:00
joerg
08010c1f60 Require 0.8.7 as the older versions map some icons differently. 2008-08-19 13:36:55 +00:00
obache
29d9bbdb03 Updated x11/xclip to 0.11 2008-08-19 13:33:25 +00:00
obache
5d1c58fd12 Update xclip to 0.11.
Patch provided by Leonardo Taccari via PR 39366.

Version 0.11
        xclip-copyfile is now compatible with recent tar versions.

        The Fedora UTF-8 patch has been applied.
2008-08-19 13:33:09 +00:00
joerg
deb64da246 It's x86_64... 2008-08-19 13:15:02 +00:00
joerg
b42fb9df16 It's x86_64, not amd64. 2008-08-19 13:13:28 +00:00
joerg
cde9cd7476 Needs perl for building the man pages. Add DESTDIR support. 2008-08-19 12:59:40 +00:00
ahoka
ef891727ab MAKE_JOBS_SAFE=no
Reported by Aleksej Saushev.
2008-08-19 11:04:52 +00:00
bjs
acb424feec + Updated fonts/terminus-font to 4.26 [bjs 2008-08-19] 2008-08-19 09:52:48 +00:00
bjs
701a8ad796 Update to version 4.26. Adds some new variants/sizes for various types. 2008-08-19 09:52:01 +00:00
bjs
6bcef83340 Update to yasm-0.7.1 has been done. 2008-08-18 23:35:14 +00:00
bjs
22d4dd6e95 + Updated devel/yasm to 0.7.1 [bjs 2008-08-18] 2008-08-18 23:34:31 +00:00
bjs
dfaa99bcdc Update to version 0.7.1.
Changes from 0.7.0 to 0.7.1:

	* AVX instruction bugfixes (0.7.0 errata)
	* Build fixes (crashes on some machines)
	* Minor CPU flags fixes
2008-08-18 23:33:56 +00:00
seb
4df1500d5b Note initial addition of p5-Email-LocalDelivery version 0.217 as
mail/p5-Email-LocalDelivery into The NetBSD Packages Collection.

The Perl 5 module Email::LocalDelivery delivers an email to a list
of mailboxes.
2008-08-18 22:30:25 +00:00
seb
ba87036c5f Add & enable p5-Email-LocalDelivery 2008-08-18 22:29:04 +00:00