summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2008-07-14SUBDIR+= p5-Class-Baseabs1-1/+15
SUBDIR+= p5-Class-C3-Componentised SUBDIR+= p5-Class-Data-Accessor SUBDIR+= p5-Class-ISA SUBDIR+= p5-Config-Any SUBDIR+= p5-Data-Page SUBDIR+= p5-Data-Pageset SUBDIR+= p5-Data-Visitor SUBDIR+= p5-Devel-Caller SUBDIR+= p5-Devel-LexAlias SUBDIR+= p5-Module-Find SUBDIR+= p5-Object-Signature SUBDIR+= p5-PadWalker SUBDIR+= p5-Scope-Guard
2008-07-14Added devel/p5-Scope-Guard version 0.03abs3-0/+30
This module provides a convenient way to perform cleanup or other forms of resource management at the end of a scope. It is particularly useful when dealing with exceptions: the Scope::Guard constructor takes a reference to a subroutine that is guaranteed to be called even if the thread of execution is aborted prematurely. This effectively allows lexically-scoped "promises" to be made that are automatically honoured by perl's garbage collector.
2008-07-14Added devel/p5-PadWalker version 1.7abs3-0/+33
PadWalker is a module which allows you to inspect (and even change!) lexical variables in any subroutine which called you. It will only show those variables which are in scope at the point of the call. PadWalker is particularly useful for debugging. It's even used by Perl's built-in debugger. (It can also be used for evil, of course.) I wouldn't recommend using PadWalker directly in production code, but it's your call. Some of the modules that use PadWalker internally are certainly safe for and useful in production.
2008-07-14Added devel/p5-Object-Signature version 1.05abs3-0/+36
Object::Signature is an abstract base class that you can inherit from in order to allow your objects to generate unique cryptographic signatures. The method used to generate the signature is based on Storable and Digest::MD5. The object is fed to Storable::nfreeze to get a string, which is then passed to Digest::MD5::md5_hex to get a unique 32 character hexidecimal signature.
2008-07-14Added devel/p5-Module-Find version 0.06abs3-0/+29
Module::Find lets you find and use modules in categories. This can be very useful for auto-detecting driver or plugin modules. You can differentiate between looking in the category itself or in all subcategories.
2008-07-14Added devel/p5-Devel-LexAlias version 0.04abs3-0/+31
Devel::LexAlias provides the ability to alias a lexical variable in a subroutines scope to one of your choosing. If you don't know why you'd want to do this, I'd suggest that you skip this module. If you think you have a use for it, I'd insist on it.
2008-07-14Added devel/p5-Devel-Caller version 2.03abs3-0/+48
This provides a 'meatier' version of caller: caller_cv($level) caller_cv gives you the coderef of the subroutine being invoked at the call frame indicated by the value of $level caller_args($level) Returns the arguments passed into the caller at level $level caller_vars( $level, $names ) =item called_with($level, $names) called_with returns a list of references to the original arguments to the subroutine at $level. if $names is true, the names of the variables will be returned instead constants are returned as undef in both cases called_as_method($level) called_as_method returns true if the subroutine at $level was called as a method.
2008-07-14Added devel/p5-Data-Visitor version 0.15abs3-0/+32
This module is a simple visitor implementation for Perl values. It has a main dispatcher method, visit, which takes a single perl value and then calls the methods appropriate for that value.
2008-07-14Added devel/p5-Data-Pageset version 1.05abs3-0/+38
The object produced by Data::Pageset can be used to create page navigation, it inherits from Data::Page and has access to all methods from this object. In addition it also provides methods for dealing with set of pages, so that if there are too many pages you can easily break them into chunks for the user to browse through. You can even choose to view page numbers in your set in a 'sliding' fassion. The object can easily be passed to a templating system such as Template Toolkit or be used within a script.
2008-07-14Added devel/p5-Data-Page version 2.00abs3-0/+36
When searching through large amounts of data, it is often the case that a result set is returned that is larger than we want to display on one page. This results in wanting to page through various pages of data. The maths behind this is unfortunately fiddly, hence this module. The main concept is that you pass in the number of total entries, the number of entries per page, and the current page number. You can then call methods to find out how many pages of information there are, and what number the first and last entries on the current page really are.
2008-07-14Added devel/p5-Config-Any version 0.12abs3-0/+26
Load configuration from different file formats, transparently
2008-07-14Added devel/p5-Class-ISA version 0.33abs3-0/+28
This library, Class::ISA, provides functions that return the list (in order) of names of classes Perl would search to find a method, with no duplicates. WWW: http://search.cpan.org/dist/Class-ISA/
2008-07-14Added devel/p5-Class-Data-Accessor version 0.04002abs3-0/+31
Class::Data::Accessor is the marriage of Class::Accessor and Class::Data::Inheritable into a single module. It is used for creating accessors to class data that overridable in subclasses as well as in class instances. WWW: http://search.cpan.org/dist/Class-Data-Accessor/
2008-07-14Added devel/p5-Class-C3-Componentised version 1.0003abs3-0/+34
This will inject base classes to your module using the Class::C3 method resolution order. Please note: these are not plugins that can take precedence over methods declared in MyModule. If you want something like that, consider MooseX::Object::Pluggable. WWW: http://search.cpan.org/dist/Class-C3-Componentised/
2008-07-14Added devel/p5-Class-Base version 0.03abs3-0/+42
This module implements a simple base class from which other modules can be derived, thereby inheriting a number of useful methods such as new(), init(), params(), clone(), error() and debug(). For a number of years, I found myself re-writing this module for practically every Perl project of any significant size. Or rather, I would copy the module from the last project and perform a global search and replace to change the names. Each time it got a little more polished and eventually, I decided to Do The Right Thing and release it as a module in it's own right. It doesn't pretend to be an all-encompassing solution for every kind of object creation problem you might encounter. In fact, it only supports blessed hash references that are created using the popular, but by no means universal convention of calling new() with a list or reference to a hash array of named parameters. Constructor failure is indicated by returning undef and setting the $ERROR package variable in the module's class to contain a relevant message (which you can also fetch by calling error() as a class method).
2008-07-14Update to pango-1.20.5.tnn2-6/+6
Overview of changes between 1.20.4 and 1.20.5 ============================================== - Fix libtool versioning which was broken in 1.20.4 Overview of changes between 1.20.3 and 1.20.4 ============================================== - Fix OpenType GSUB lookup type 8 crash. - Bugs fixed in this release: Bug 540592 Crash in HB_GSUB_Apply_String with Linux-Libertine font
2008-07-14Update to glib2-2.16.4.tnn4-106/+73
Overview of Changes from GLib 2.16.3 to GLib 2.16.4 =================================================== * Bug fixes: 528752 Win32 build and SSL not working 539074 Cannot get exit status with g_spawn_command_line_sync() 316221 G_LOCK warns about breaking strict-aliasing rules 519137 g_slice_dup macro needs cast for 64-bit platform 536158 also bump GHashTable version when a node is removed via g_hash_table_iter_remove()/g_hash_table_iter_steal() 529321 make check fails in glib/pcre 314453 Nautilus crashes in Solaris when browsing the attached file 502511 g_assert_cmphex prints invalid message 538119 glib's mainloop leaks a pipe to sub-processes 540459 there are no way of getting the real number of bytes written in GMemoryOutputStream 540423 unrecoverable error after g_seekable_truncate(seekable,0,...) 530196 _g_local_file_has_trash_dir() doesn't handle st_dev == 0 528600 g_dummy_file_get_parent("scheme://example.com/") 536641 Filesystem querying in gio does not list AFS and autofs file systems 537392 Additional colon in xattr name 528433 gdesktopappinfo snafu ... 526320 should not list mounts that the user doesn't have permiss... 527132 nautilus crash when making ftp connection 532852 totem_pl_parser_parse_with_base: assertion `... 459905 Bug in wcwidth data 534085 g_unichar_iswide_cjk() has a totally wrong table
2008-07-14Update to version 1.6.1. The relevant ChangeLog entries follow:bjs3-8/+8
Bump BUILDLINK_ABI_DEPENDS according to library version. Changes between 1.6.1 and 1.6.2 (21-Feb-2008 to 04-Jul-2008) o Adjust "devtool.func" for latest GNU Libtool compatibility. [Ralf S. Engelschall] o Consistently annotate "RFC-XXXX" with "IETF" to clearly indicate from which standards body this comes from. [Ralf S. Engelschall] o Resolve namespace conflicts of recently introduced time_xxx() functions by using a propoer "uuid_" prefix. [Ralf S. Engelschall] o Remove unused "struct timezone" from time_gettimeofday() in order to simplify portability. [Ralf S. Engelschall] o Add support for POSIX clock_gettime(3) in case the Unix/POSIX gettimeofday(3) is not available. [Ralf S. Engelschall] o Upgrade build environment to GNU autoconf 2.62. [Ralf S. Engelschall] o Upgrade build environment to GNU libtool 2.2.4. [Ralf S. Engelschall] Changes between 1.6.0 and 1.6.1 (19-May-2007 to 21-Feb-2008) o Fix __VA_COPY_USE_{CSP,CPP} fallback macros for va_copy. [Mark A. Lindner <mark.a.lindner@gmail.com>] o PostgreSQL bindings: use SET_VARSIZE() instead of assigning to bytea->v_len under PostgreSQL >= 8.3 [Ralf S. Engelschall]
2008-07-13Update "libsmi" package to version 0.4.8. Changes since version 0.4.5:tron3-46/+96
- test/*: updated a couple of checks. - tools/*: fixed a couple of minor compiler warnings. - mibs/ietf/PKTC-IETF-SIG-MIB: added (RFC 5098). - mibs/ietf/MIDCOM-MIB: added (RFC 5190). - tools/Makefile.am: added missing files to the distribution. - mibs/ietf/URI-TC-MIB: added (RFC 5017). - mibs/ietf/PIM-STD-MIB: added (RFC 5060). - mibs/ietf/IF-CAP-STACK-MIB,EFM-CU-MIB: added (RFC 5066). - mibs/ietf/UDPLITE-MIB: added (RFC 5097). - mibs/ietf/LANGTAG-TC-MIB: added (RFC 5131). - mibs/ietf/IPMCAST-MIB: added (RFC 5132). - updated IANA MIBs. - mibs/ietf/T11-FC-RSCN-MIB: added (RFC 4983). - mibs/ietf/T11-FC-FABRIC-CONFIG-SERVER-MIB: added (RFC 4935). - mibs/ietf/T11-FC-FABRIC-LOCK-MIB,T11-FC-ZONE-SERVER-MIB: added (RFC 4936). - mibs/ietf/ISNS-MIB: added (RFC 4939). - mibs/ietf/DOT3-EPON-MIB: added (RFC 4837). - mibs/ietf/DOT3-OAM-MIB: added (RFC 4878). - mibs/ietf/TCP-ESTATS-MIB: added (RFC 4898). - mibs/ietf/SIP-{UA,TC,COMMON,SERVER}-MIB: added (RFC 4780). - mibs/ietf/MAU-MIB: updated (RFC 4836). - mibs/ietf/DS1-MIB: updated (RFC 4805). - mibs/ietf/IPSEC-SPD-MIB: added (RFC 4807). - mibs/iana/IANA-GMPLS-TC-MIB,IANA-IPPM-METRICS-REGISTRY-MIB, IANA-ITU-ALARM-TC-MIB,IANA-MAU-MIB: added. - mibs/iana/IANA-CHARSET-MIB,IANA-ADDRESS-FAMILY-NUMBERS-MIB, IANAifType-MIB: added. - mibs/ietf/GMPLS-TC-STD-MIB (RFC 4801): added. - mibs/ietf/GMPLS-TE-STD-MIB (RFC 4802): added. - mibs/ietf/GMPLS-LSR-STD-MIB,GMPLS-LABEL-STD-MIB (RFC 4803): added. - mibs/ietf/MSDP-MIB: added (RFC 4624). - mibs/ietf/PKTC-IETF-MTA-MIB: added (RFC 4682). - mibs/ietf/ADSL2-LINE-MIB,ADSL2-LINE-TC-MIB: added (RFC 4706). - mibs/ietf/RAQMON-MIB: added (RFC 4711). - mibs/ietf/T11-FC-VIRTUAL-FABRIC-MIB: added (RFC 4747). - mibs/ietf/DOCS-CABLE-DEVICE-MIB: updated (RFC 4639). - mibs/ietf/OSPF-MIB,OSPF-TRAP-MIB: updated (RFC 4750). - lib/scanner-smi.l: accept also \r as end-of-line. - mibs/ietf/T11-FC-ROUTE-MIB: added (RFC 4625). - mibs/ietf/T11-FC-FSPF-MIB: added (RFC 4626). - mibs/ietf/LMP-MIB: updated (RFC 4631). - mibs/ietf/RADIUS-DYNAUTH-CLIENT-MIB: added (RFC 4672). - mibs/ietf/RADIUS-DYNAUTH-SERVER-MIB: added (RFC 4673). - autogen.sh: Use glibtool instead of libtool on Darwin. - mibs/ietf/RADIUS-AUTH-CLIENT-MIB: updated (RFC 4668). - mibs/ietf/RADIUS-AUTH-SERVER-MIB: updated (RFC 4669). - mibs/ietf/RADIUS-ACC-CLIENT-MIB: updated (RFC 4670). - mibs/ietf/RADIUS-ACC-SERVER-MIB: updated (RFC 4671). - mibs/ietf/DOCS-IF-MIB: updated (RFC 4546). - mibs/ietf/DOCS-IETF-CABLE-DEVICE-NOTIFICATION-MIB: added (RFC 4547). - mibs/ietf/DISMAN-NSLOOKUP-MIB,DISMAN-PING-MIB,DISMAN-TRACEROUTE-MIB: updated (RFC 4560). - mibs/ietf/ISCSI-MIB: added (RFC 4544). - mibs/ietf/IPS-AUTH-MIB: added (RFC 4545). - mibs/ietf/SNMP-USM-AES-MIB: updated (RFC 3826).
2008-07-13- part of the fix for PR pkg/39128rhaen3-0/+25
DESCR of the package: Log::Log4perl lets you remote-control and fine-tune the logging behaviour of your system from the outside. It implements the widely popular (Java-based) Log4j logging package in pure Perl.
2008-07-13Added package p5-Log-Log4perl to SUBDIRsrhaen1-1/+2
2008-07-13- updated to version 2.75rhaen2-12/+8
- new maintainer - PKG_DESTDIR_SUPPORT support - verified with joerg - fixes unavailabilty of sources due to old version ChangeLog: 2.75 2008-05-18T03:38:11 - Removed the spelling test from the distribution, since it can fail on systems without a spell program or using a different locale. - All string command-line options are now decoded from whatever encoding is specified by the C<--encoding> option, defaulting to UTF-8. All string options are thus properly decoded, excepting those that define encodings and languages (which should alwyas be ASCII) and those that are specified as hashes (if someone runs into that bug, let me know). This fix includes all string options specified by subclasses and filters. Reported by Matthew Romaine (Bug #35884). 2.74 2008-05-15T03:29:11 - Updated copyright. - Changed the list example in the Trac sample output to use Greeking so that the indentation of wrapping lines can be seen in the output. - Improved the CSS for lists in the log message output by SVN::notify::HTML (and subclasses) so that bullets are properly hangling indents. - Removed a bit of redundant CSS from SVN::Notify::HTML. - Added a spelling test. This has the benefit of reducing the number of annoying spelling errors in the documentation. 2.73 2008-05-04T02:02:21 - Fixed another lame-ass test failure under Perl 5.6.2. Reported by David Cantrell via cpan-testers. 2.72 2008-04-29T17:17:29 - Fixed misdocumentation of the short version of the --set-sender option in C<svnnotify --help>: it's -E, not -S. Reported by Larry Shatzer, Jr. - Fixed encoding issue on Windows. Patch to fix a stupid oversight graciously provided by David Golden. - Added four new filter callbacks, "pre_prepare", "post_prepare", "pre_execute", and "post_execute". These are called at the begining and end of the execution of the prepare() and execute() methods. Suggestion and initial patch from Larry Shatzer. - Reorganized the table listing the types of filters in SVN::Notify::Filter so that they are listed in the order in which they execute. 2.71 2008-04-17T18:53:27 - Fixed test failure in t/filter.t when HTML::Entities is not installed. Reported by David Cantrell via CPAN-Testers. - Bumped version number for recommended module Text::Trac up to 0.10, since that version fixes the last of the bugs I found with its HTML output. - Adjusted the runnign of filters against log messages in SVN::Notify::HTML so that any linkizing (--linkize), revision URL parsing (--revision-url), and ticket reference parsing (--ticket-map) is run after the content has been filtered. In 2.70, none of those things happened if the message was filtered, even though they did if a log message was filtered by SVN::Notify (plain text). - Added references to SVN::Notify::Filter::Markdown, now on CPAN. - Attributes registered by a filter were not being properly registered and processing the command-line arguments when the filter was loaded by the --filter option to `svnnotify`. Thanks to Larry Shatzer, Jr. for the spot!
2008-07-13Fix serious problems in this package:tron1-12/+2
- Remove build fixes for NetBSD 1.2, 1.3 and 1.4 which were applied on every platform. - Don't overwrite the default MIBS search path. It breaks the package if the "net-snmp" package is not installed. It best case it introduces random behaviour if either the "net-snmp" or the "scotty" package are installed. Bump package revision because of these fixes. Approved by Thomas Klausner.
2008-07-13Fix overlong string DoS in pwlib's PString::vsprintf code (CVE-2007-4897).tonnerre3-3/+17
2008-07-11Don't force /bin/sh on Solaris, we want the bootstrap shell.joerg1-8/+2
Bump revision. From Dieter Baron.
2008-07-10cyrus-sasl should only be buildlinked if sasl option was used for build.joerg1-1/+3
2008-07-10Downgrade to destdir for now until GNUstep ownership logic is fixed.joerg1-2/+2
2008-07-09Fix a segfault on NetBSD/amd64 (at least):bjs6-38/+130
- Include standard headers (stdlib.h, string.h, stdio.h) in misc.h to avoid conflicts with built-in declarations of functions. - Change CFLAGS= in Makefile to CFLAGS+= to use pkgsrc-provided CFLAGS. - Include termcap.buildlink3.mk to handle termcap properly. - Add DESTDIR support, use AUTO_MKDIRS. - Bump PKGREVISION. Now I can actually use it! ;)
2008-07-05Fix spelling of PKG_DESTDIR_SUPPORT.joerg1-2/+2
2008-07-04Fix a potential buffer overflow in libpcre's compiler (CVE-2008-2371).tonnerre3-3/+17
2008-07-03Don't suggest SASL by default. Ride recent PKGREVISION bump.schmonz1-2/+2
2008-07-03Make the newly introduced cyrus-sasl dependency optional, on by default.schmonz2-7/+12
Approved during the freeze by agc@.
2008-07-03Remove BUILD_DEPENDS for p5-Test-More.bad1-2/+1
Test::More was added to the core modules with Perl 5.6.2 and 5.7.3. Fixes PR pkg/39087.
2008-07-03Disable bmake regression tests also on AIX. PR 39064.obache1-3/+3
2008-07-02Add java option, defaulting to off. Make the subversion metapackagegdt2-5/+9
not depend on java unless the option is selected. Resolves problem of default dependency on non-portable and non-Free code in a Free package. Approved in concept by epg. PKGREVISION++.
2008-07-01Fix typo. It is BUILD_DEPENDS.bad1-2/+2
2008-06-29In DESCR, make clear that this package installs four language bindings.gdt2-2/+5
2008-06-27Someone commented there was a missing p5-Compress-Zlib>=1.30 dependency,he1-1/+2
and they were right. Fix this. Should result in the same bits, so no revision bump.
2008-06-24While compiling devel/doxygen on NetBSD/sparc63 3.1_STABLE I getseb1-1/+2
g++ -c -Wall -W -O3 -I/usr/pkg/include -I/usr/pkg/include/freetype2 -I/usr/include -I/usr/pkg/include/python2.4 -I../qtools -o ../objects/config.o config.cpp cc1plus: out of memory allocating 10824496 bytes after a total of 123209640 bytes gmake[2]: *** [../objects/config.o] Error 1 Workaround by unlimiting "datasize". Approved by agc@ during freeze.
2008-06-24Added devel/p5-Class-Accessor-Grouped version 0.08001abs1-1/+6
Added devel/p5-Class-C3 version 0.19 Added devel/p5-Algorithm-C3 version 0.07 Added devel/p5-Class-C3-XS version 0.08 Added devel/p5-MRO-Compat version 0.09
2008-06-24import devel/p5-MRO-Compat-0.09 (needed by devel/p5-Class-Accessor-Grouped)abs3-0/+48
The "mro" namespace provides several utilities for dealing with method resolution order and method caching in general in Perl 5.9.5 and higher. This module provides those interfaces for earlier versions of Perl (back to 5.6.0 anyways). It is a harmless no-op to use this module on 5.9.5+. That is to say, code which properly uses MRO::Compat will work unmodified on both older Perls and 5.9.5+. If you're writing a piece of software that would like to use the parts of 5.9.5+'s mro:: interfaces that are supported here, and you want compatibility with older Perls, this is the module for you. Some parts of this code will work better and/or faster with Class::C3::XS installed (which is an optional prereq of Class::C3, which is in turn a prereq of this package), but it's not a requirement. This module never exports any functions. All calls must be fully qualified with the mro:: prefix.
2008-06-24Import p5-Class-C3-XS-0.08 - Needed by p5-Class-C3abs3-0/+24
This package contains XS performance enhancers for Class::C3.
2008-06-24Import p5-Algorithm-C3-0.07 - needed by p5-Class-C3abs3-0/+32
This module implements the C3 algorithm. I have broken this out into it's own module because I found myself copying and pasting it way too often for various needs. Most of the uses I have for C3 revolve around class building and metamodels, but it could also be used for things like dependency resolution as well since it tends to do such a nice job of preserving local precendence orderings.
2008-06-24Import Class-C3-0.19 (needed by p5-Class-Accessor-Grouped)abs3-0/+31
This is currently an experimental pragma to change Perl 5's standard method resolution order from depth-first left-to-right (a.k.a - pre-order) to the more sophisticated C3 method resolution order.
2008-06-24Add Class-Accessor-Grouped-0.08001 (needed by p5-Data-Currency)abs3-0/+29
This class lets you build groups of accessors that will call different getters and setters.
2008-06-24forgot one crucial file!bjs1-2/+2
2008-06-24Update to git-1.5.6.bjs7-24/+38
GIT v1.5.6 Release Notes ======================== Updates since v1.5.5 -------------------- (subsystems) * Comes with updated gitk and git-gui. (portability) * git will build on AIX better than before now. * core.ignorecase configuration variable can be used to work better on filesystems that are not case sensitive. * "git init" now autodetects the case sensitivity of the filesystem and sets core.ignorecase accordingly. * cpio is no longer used; neither "curl" binary (libcurl is still used). (documentation) * Many freestanding documentation pages have been converted and made available to "git help" (aka "man git<something>") as section 7 of the manual pages. This means bookmarks to some HTML documentation files may need to be updated (eg "tutorial.html" became "gittutorial.html"). (performance) * "git clone" was rewritten in C. This will hopefully help cloning a repository with insane number of refs. * "git rebase --onto $there $from $branch" used to switch to the tip of $branch only to immediately reset back to $from, smudging work tree files unnecessarily. This has been optimized. * Object creation codepath in "git-svn" has been optimized by enhancing plumbing commands git-cat-file and git-hash-object. (usability, bells and whistles) * "git add -p" (and the "patch" subcommand of "git add -i") can choose to apply (or not apply) mode changes independently from contents changes. * "git bisect help" gives longer and more helpful usage information. * "git bisect" does not use a special branch "bisect" anymore; instead, it does its work on a detached HEAD. * "git branch" (and "git checkout -b") can be told to set up branch.<name>.rebase automatically, so that later you can say "git pull" and magically cause "git pull --rebase" to happen. * "git branch --merged" and "git branch --no-merged" can be used to list branches that have already been merged (or not yet merged) to the current branch. * "git cherry-pick" and "git revert" can add a sign-off. * "git commit" mentions the author identity when you are committing somebody else's changes. * "git diff/log --dirstat" output is consistent between binary and textual changes. * "git filter-branch" rewrites signed tags by demoting them to annotated. * "git format-patch --no-binary" can produce a patch that lack binary changes (i.e. cannot be used to propagate the whole changes) meant only for reviewing. * "git init --bare" is a synonym for "git --bare init" now. * "git gc --auto" honors a new pre-auto-gc hook to temporarily disable it. * "git log --pretty=tformat:<custom format>" gives a LF after each entry, instead of giving a LF between each pair of entries which is how "git log --pretty=format:<custom format>" works. * "git log" and friends learned the "--graph" option to show the ancestry graph at the left margin of the output. * "git log" and friends can be told to use date format that is different from the default via 'log.date' configuration variable. * "git send-email" now can send out messages outside a git repository. * "git send-email --compose" was made aware of rfc2047 quoting. * "git status" can optionally include output from "git submodule summary". * "git svn" learned --add-author-from option to propagate the authorship by munging the commit log message. * new object creation and looking up in "git svn" has been optimized. * "gitweb" can read from a system-wide configuration file. (internal) * "git unpack-objects" and "git receive-pack" is now more strict about detecting breakage in the objects they receive over the wire.
2008-06-23update to 2.22.0drochner4-16/+14
This switches to the gnome-2.22 release branch.
2008-06-23update to 2.22.0drochner2-7/+7
This switches to the gnome-2.22 release branch.
2008-06-23update to 2.16.3drochner3-22/+10
changes: minor bugfixes