pkgsrc/www
wiz 6179981bd8 Update to 7.19.5:
Version 7.19.5 (18 May 2009)

Daniel Stenberg (17 May 2009)
- James Bursa posted a patch to the mailing list that fixed a problem with
  no_proxy which made it not skip the proxy if the URL entered contained a
  user name. I added test case 1101 to verify.

Daniel Stenberg (11 May 2009)
- Balint Szilakszi reported a memory leak when libcurl did gzip decompression
  of streams that had some parts (legitimately) missing. We now provide and use
  a proper cleanup function for the content encoding submodule.
  http://curl.haxx.se/mail/lib-2009-05/0092.html

- Kamil Dudka provided a fix for libcurl-NSS reported by Michael Cronenworth
  at https://bugzilla.redhat.com/show_bug.cgi?id=453612#c12

  If an incorrect password is given while loading a private key, libcurl ends
  up in an infinite loop consuming memory. The bug is critical.

- I fixed the problem with doing NTLM, POST and then following a 302 redirect,
  as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on
  curl-library). The transfer was mistakenly marked to get more data to send
  but since it didn't actually have that, it just hung there...

Daniel Stenberg (10 May 2009)
- Andre Guibert de Bruet correctly pointed out an over-alloc with one wasted
  byte in the digest code.

Yang Tse (9 May 2009)
- Removed DOS and TPF package's subdirectory Makefile.am, it was only used
  to include some files in the distribution tarball serving no other purpose.
  Files from the DOS and TPF subdirectories are now included in the EXTRA_DIST
  of the Makefile in the parent subdirectory.

Yang Tse (8 May 2009)
- Changed host name literal in several tests to one under the haxx.se domain.

- Renamed vc6 workspace and project files to avoid filename clash when used
  for conversion to later VS versions.

Daniel Stenberg (8 May 2009)
- Constantine Sapuntzakis fixed bug report #2784055
  (http://curl.haxx.se/bug/view.cgi?id=2784055) identifying a problem to
  connect to SOCKS proxies when using the multi interface. It turned out to
  almost not work at all previously. We need to wait for the TCP connect to
  be properly verified before doing the SOCKS magic.

  There's still a flaw in the FTP code for this.

Daniel Stenberg (7 May 2009)
- Made the SO_SNDBUF setting for the data connection socket for ftp uploads as
  well. See change 28 Apr 2009.

Yang Tse (7 May 2009)
- Fixed an issue affecting FTP transfers, introduced with the transfer.c
  patch committed May 4.

Daniel Stenberg (7 May 2009)
- Man page *roff problems fixed thanks to input from Colin Watson. Problems
  reported in the Debian package.

- Vijay G filed bug report #2723236
  (http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with
  libcurl's TFTP code and its lack of dealing with the OACK packet.

Yang Tse (5 May 2009)
- Fixed the --ftp-port address of test #251 to the CLIENTIP address, and
  reverted the change affecting test suite harness committed 4 May.

Daniel Stenberg (5 May 2009)
- Inspired by Michael Smith's session id fix for OpenSSL, I did the
  corresponding fix in the GnuTLS code: make sure to store the new session id
  in case the previous re-used one is rejected.

Daniel Stenberg (4 May 2009)
- Michael Smith posted bug report #2786255
  (http://curl.haxx.se/bug/view.cgi?id=2786255) with a patch, identifying how
  libcurl did not deal with SSL session ids properly if the server rejected a
  re-use of one. Starting now, it will forget the rejected one and remember
  the new. This change was for OpenSSL only, it is likely that other SSL lib
  code needs similar fixes.

Yang Tse (4 May 2009)
- Applied David McCreedy's "transfer.c fixes for CURL_DO_LINEEND_CONV and
  non-ASCII platform HTTP requests" patch addressing two HTTP PUT problems:
  1) On non-ASCII platforms not all of the protocol portions of the PUT are
  being translated to ASCII.  2) On all platforms the line endings of part of
  the protocol portions are mangled from CRLF to CRCRLF if data->set.crlf or
  data->set.prefer_ascii are set (depending on CURL_DO_LINEEND_CONV).

- Applied David McCreedy's patch to fix test suite harness to allow test FTP
  server and client on different machines, providing FTP client address when
  running the FTP test server.

Daniel Fandrich (3 May 2009)
- Added and disabled test case 563 which shows KNOWN_BUGS #59.  The bug
  report failed to mention that a proxy must be used to reproduce it.

Yang Tse (2 May 2009)
- Use a build-time configured curl_socklen_t data type instead of socklen_t.

Yang Tse (1 May 2009)
- Applied David McCreedy's patches "TPF-platform specific changes to various
  files" and "http.c fix to Curl_proxyCONNECT for non-ASCII platforms", the
  former with minor edits.

Daniel Stenberg (30 Apr 2009)
- I was going to fix issue #59 in KNOWN_BUGS

  If the CURLOPT_PORT option is used on an FTP URL like
  "ftp://example.com/file;type=A" the ";type=A" is stripped off.

  I added test case 562 to verify, only to find out that I couldn't repeat
  this bug so I hereby consider it not a bug anymore!

Daniel Stenberg (29 Apr 2009)
- Based on bug report #2723219 (http://curl.haxx.se/bug/view.cgi?id=2723219)
  I've now made TFTP "connections" not being kept for re-use within libcurl.
  TFTP is UDP-based so the benefit was really low (if even existing) to begin
  with so instead of tracking down to fix this problem we instead removed the
  re-use. I also enabled test case 1099 that I wrote a few days ago to verify
  that this change fixes the reported problem.

Daniel Stenberg (28 Apr 2009)
- Constantine Sapuntzakis filed bug report #2783090
  (http://curl.haxx.se/bug/view.cgi?id=2783090) pointing out that on windows
  we need to grow the SO_SNDBUF buffer somewhat to get really good upload
  speeds. http://support.microsoft.com/kb/823764 has the details. Friends
  confirmed that simply adding 32 to CURL_MAX_WRITE_SIZE is enough.

- Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by Tim
  Chen pointed out how curl couldn't upload with resume when reading from a
  pipe.

  This ended up with the introduction of a new return code for the
  CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but
  that libcurl may try to resolve the situation anyway. In our case this means
  libcurl will attempt to instead read that much data from the stream instead
  of seeking and that way curl can now upload with resume when data is read
  from a stream!

Daniel Stenberg (26 Apr 2009)
- Bug report #2779733 (http://curl.haxx.se/bug/view.cgi?id=2779733) by Sven
  Wegener pointed out that CURLINFO_APPCONNECT_TIME didn't work with the multi
  interface and provided a patch that fixed the problem!

Daniel Stenberg (24 Apr 2009)
- Kamil Dudka fixed another NSS-related leak when client certs were used.

- Bug report #2779245 (http://curl.haxx.se/bug/view.cgi?id=2779245) by Rainer
  Koenig pointed out that the man page didn't tell that the *_proxy
  environment variables can be specified lower case or UPPER CASE and the
  lower case takes precedence,

Daniel Fandrich (21 Apr 2009)
- Added new libcurl source files to Amiga, RiscOS and VC6 build files.

Yang Tse (21 Apr 2009)
- Moved potential inclusion of system's malloc.h and memory.h header files to
  setup_once.h.  Inclusion of each header file is based on the definition of
  NEED_MALLOC_H and NEED_MEMORY_H respectively.

  Renamed libcurl's memory.h to curl_memory.h

Daniel Stenberg (20 Apr 2009)
- Leanic Lefever reported a crash and did some detailed research on why and
  how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The
  conclusion was that if an error is detected and Curl_done() is called for
  the connection, ftp_done() could at times return another error code that
  then would take precedence and that new code confused existing logic that
  works for the first error code (CURLE_SEND_ERROR) only.

- Gisle Vanem noticed that --libtool would produce bogus strings at times for
  OBJECTPOINT options. Now we've introduced a new function - my_setopt_str -
  within the app for setting plain string options to avoid the risk of this
  mistake happening.

Daniel Stenberg (17 Apr 2009)
- Pramod Sharma reported and tracked down a bug when doing FTP over a HTTP
  proxy. libcurl would then wrongly close the connection after each
  request. In his case it had the weird side-effect that it killed NTLM auth
  for the proxy causing an inifinite loop!

  I added test case 1098 to verify this fix. The test case does however not
  properly verify that the transfers are done persistently - as I couldn't
  think of a clever way to achieve it right now - but you need to read the
  stderr output after a test run to see that it truly did the right thing.

Daniel Stenberg (13 Apr 2009)
- bug report #2727981 (http://curl.haxx.se/bug/view.cgi?id=2727981) by Martin
  Storsj
  confusing as it set the method to either GET or HEAD. The example he showed
  looked like:

   curl_easy_setopt(curl, CURLOPT_PUT, 1);
   curl_easy_setopt(curl, CURLOPT_NOBODY, 0);

  The new way doesn't alter the method until the request is about to start. If
  CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is
  0 and the request happens to have been set to HEAD, it will then instead be
  set to GET. I believe this will be less surprising to users, and hopefully
  not hit any existing users badly.

- Toshio Kuratomi reported a memory leak problem with libcurl+NSS that turned
  out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue
  is found in Redhat's bug tracker:
  https://bugzilla.redhat.com/show_bug.cgi?id=453612

  There are still memory leaks present, but they seem to have other reasons.

Daniel Fandrich (11 Apr 2009)
- Added new libcurl source files to Symbian OS build files.
- Improved Symbian support for SSL.

Yang Tse (10 Apr 2009)
- Daniel Johnson improved the MacOSX-Framework shell script to now perform all
  the steps required to build a Mac OS X four way fat ppc/i386/ppc64/x86_64
  libcurl.framework.  Four way fat framework requires OS X 10.5 SDK or later.

Yang Tse (8 Apr 2009)
- Removed Sun compilers preprocessor block from curlbuild.h.dist, this also
  removes it from the curlbuild.h file originally distributed by the cURL
  project as this file is intended for systems not capable of running the
  configure script.  For those who have been building curl out of the source
  code curl distribution tarball provided by curl.haxx.se the change implies
  nothing.  Previous change in this area committed 2 Apr becomes irrelevant.

Daniel Stenberg (6 Apr 2009)
- I clarified in the docs that CURLOPT_SEEKFUNCTION should return 0 on success
  and 1 on fatal errors. Previously it only mentioned non-zero on fatal
  errors. This is a slight change in meaning, but it follows what we've done
  elsewhere before and it opens up for LOTS of more useful return codes
  whenever we can think of them...

Yang Tse (2 Apr 2009)
- Fix curl_off_t definition for builds done using Sun compilers and a
  non-configured libcurl. In this case curl_off_t data type was gated
  to the off_t data type which depends on the _FILE_OFFSET_BITS. This
  configuration is exactly the unwanted configuration for our curl_off_t
  data type which must not depend on such setting. This breaks ABI for
  libcurl libraries built with Sun compilers which were built without
  having run the configure script with _FILE_OFFSET_BITS different than
  64 and using the ILP32 data model.

Daniel Stenberg (1 Apr 2009)
- Andre Guibert de Bruet fixed a NULL pointer use in an infof() call if a
  strdup() call failed.

Daniel Fandrich (31 Mar 2009)
- Properly return an error code in curl_easy_recv (reported by Jim Freeman).

Daniel Stenberg (18 Mar 2009)
- Kamil Dudka brought a patch that enables 6 additional crypto algorithms when
  NSS is used. These ciphers were added in NSS 3.4 and require to be enabled
  explicitly.

Daniel Stenberg (13 Mar 2009)
- Use libssh2_version() to present the libssh2 version in case the libssh2
  library is found to support it.

Yang Tse (12 Mar 2009)
- Added missing Curl_read() return code checking in TELNET transfers.

- Pierre Brico found and fixed TELNET transfers not being aborted upon
  a write callback failure.

Daniel Stenberg (11 Mar 2009)
- Kamil Dudka made the curl tool properly call curl_global_init() before any
  other libcurl function.

Yang Tse (11 Mar 2009)
- Added missing TELNET timeout support for Windows builds. This issue was
  reported by Pierre Brico.

Daniel Stenberg (9 Mar 2009)
- Frank Hempel found out a bug and provided the fix:

  curl_easy_duphandle did not necessarily duplicate the CURLOPT_COOKIEFILE
  option. It only enabled the cookie engine in the destination handle if
  data->cookies is not NULL (where data is the source handle). In case of a
  newly initialized handle which just had the cookie support enabled by a
  curl_easy_setopt(handle, CURL_COOKIEFILE, "")-call, handle->cookies was
  still NULL because the setopt-call only appends the value to
  data->change.cookielist, hence duplicating this handle would not have the
  cookie engine switched on.

  We also concluded that the slist-functionality would be suitable for being
  put in its own module rather than simply hanging out in lib/sendf.c so I
  created lib/slist.[ch] for them.

- Andreas Farber made the 'buildconf' script check for the presence of m4
  scripts to make it detect a bad checkout earlier. People with older
  checkouts who don't do cvs update with the -d option won't get the new dirs
  and then will get funny outputs that can be a bit hard to understand and
  fix.

Daniel Stenberg (8 Mar 2009)
- Andre Guibert de Bruet found and fixed a code segment in ssluse.c where the
  allocation of the memory BIO was not being properly checked.

- Andre Guibert de Bruet fixed the gnutls-using code: There are a few places
  in the gnutls code where we were checking for negative values for errors,
  when the man pages state that GNUTLS_E_SUCCESS is returned on success and
  other values indicate error conditions.

- Bill Egert pointed out (http://curl.haxx.se/bug/view.cgi?id=2671602) that
  curl didn't use sprintf() in a way that is documented to work in POSIX but
  since we use our own printf() code (from libcurl) that shouldn't be a
  problem. Nonetheless I modified the code to not rely on such particular
  features and to not cause further raised eyebrowse with no good reason.

Daniel Fandrich (5 Mar 2009)
- Expanded the security section of the libcurl-tutorial man page to cover
  more issues for authors to consider when writing robust libcurl-using
  applications.

Yang Tse (5 Mar 2009)
- Fixed NTLM authentication memory leak on SSPI enabled Windows builds. This
  issue was noticed by Chris Deidun.

Daniel Fandrich (4 Mar 2009)
- Fixed a problem with m4 quoting in the OpenSSL configure check reported
  by Daniel Johnson.

Daniel Stenberg (3 Mar 2009)
- David James brought a patch that make libcurl close (all) dead connections
  whenever you attempt to open a new connection.

  1. After cleaning up a dead connection, "continue" instead of
     returning FALSE. This ensures that we clean up all dead connections,
     rather than just cleaning up the first dead connection.
  2. Move up the cleanup for dead connections so that it occurs for
     all connections, rather than just the connections which have the same
     preferences as our current new connection.
2009-06-09 18:31:35 +00:00
..
adzap Update to version 20080508. Only changes are to ad patterns. 2008-10-30 01:28:53 +00:00
album Add DESTDIR support. 2008-06-12 02:14:13 +00:00
album_themes Add DESTDIR support. 2008-06-12 02:14:13 +00:00
amaya s/LOCALBASE/PREFIX/ 2008-09-19 19:08:10 +00:00
analog update mirrors. 2009-05-01 15:09:17 +00:00
ap-access-referer
ap-auth-cookie
ap-auth-external Split out Apache 2.x code into ap2-auth-external. Fixes pkg/37362 2007-12-20 14:31:52 +00:00
ap-auth-kerb
ap-auth-ldap Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ap-auth-mysql Fix installation with Apache 2.2. 2008-07-27 18:54:21 +00:00
ap-auth-ntlm Make it build on DragonFly. 2009-06-05 08:13:48 +00:00
ap-auth-pam
ap-auth-pgsql Change MAINTAINER email address at their request. 2009-03-21 22:16:53 +00:00
ap-auth-postgresql Make PostgreSQL 8.2 the default version. Bump all packages using it. 2008-03-13 17:38:48 +00:00
ap-auth-radius Leave over maintainership to pkgsrc-users 2009-03-22 04:53:38 +00:00
ap-auth-script
ap-bandwidth
ap-dav Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap-dtcl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap-Embperl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
ap-fastcgi Update ap-fastcgi and ap2-fastcgi to 2.4.6. 2008-10-01 10:03:11 +00:00
ap-gzip
ap-jk
ap-layout update master sites. 2009-06-06 22:37:22 +00:00
ap-mono update to mono 2.4 2009-04-07 11:32:01 +00:00
ap-mp3 Remove unresolvable hosts from MASTER_SITES. 2008-08-23 07:46:59 +00:00
ap-perl Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ap-php Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap-python Remove Python 2.1 support. 2009-02-09 21:09:20 +00:00
ap-rivet Fix shell quoting to unbreak build on NetBSD/current. 2008-07-27 16:35:07 +00:00
ap-rpaf
ap-ruby - Switch to use vendor_dir with Ruby 1.8.7. 2008-06-19 15:02:17 +00:00
ap-scgi fix invalid dependency patterns 2009-03-07 16:26:16 +00:00
ap-ssl Update ap-ssl to 2.8.31. 2008-02-24 05:29:21 +00:00
ap-throttle
ap-xslt Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ap2-auth-external Import apache 2.x portion after splitting ap-auth-external into 1.x and 2.x. 2007-12-20 14:59:14 +00:00
ap2-auth-ldap Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ap2-auth-mellon Update to 0.2.1: 2009-06-06 10:27:30 +00:00
ap2-auth-mysql Shut up pkglint about $(...). What do I care about Solaris, though? 2009-02-24 17:53:03 +00:00
ap2-auth-ntlm Fix patch to not contain RCS IDs. 2009-02-09 18:26:46 +00:00
ap2-auth-pgsql Make PostgreSQL 8.2 the default version. Bump all packages using it. 2008-03-13 17:38:48 +00:00
ap2-auth-radius Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ap2-auth-xradius Fix build on OpenSolaris 2009-02-20 23:21:26 +00:00
ap2-bw
ap2-chroot
ap2-fastcgi Update ap-fastcgi and ap2-fastcgi to 2.4.6. 2008-10-01 10:03:11 +00:00
ap2-fcgid Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap2-jk
ap2-perl The recent security patch to www/apache22 removed OPT_INCNOEXEC. 2009-06-07 20:25:00 +00:00
ap2-python Updated www/ap2-python to 3.3.1 2008-09-15 21:20:23 +00:00
ap2-subversion PKGREVISION++ for build-outputs.mk change 2009-06-01 19:11:58 +00:00
ap2-suphp Update ap2-suphp to 0.6.3. 2008-05-17 02:37:24 +00:00
ap2-transform
ap2-wsgi Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
ap2-xslt2 Revert previous, wrong Makefile committed. 2008-07-27 18:53:40 +00:00
ap22-authn-sasl This module provides the mod_auth_basic authentication front-end a way to 2008-11-12 09:10:00 +00:00
ap22-authnz-external Update to 3.2.3 2009-03-01 01:28:17 +00:00
ap22-dnssd Needs libtool. 2009-01-29 16:41:34 +00:00
ap22-vhost-ldap mod-vhost-ldap is an Apache 2.2 module for storing and configuring 2009-02-21 15:59:20 +00:00
apache Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
apache-roller Use ${MASTER_SITE_APACHE} 2009-02-13 20:21:28 +00:00
apache-tomcat6 Update from .18->.20 2009-06-06 17:34:08 +00:00
apache-tomcat55 Updated www/apache-tomcat55 to 5.5.27 2008-09-10 09:53:31 +00:00
apache2 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
apache22 Add patches from the Apache SVN repository to fix the security bypass 2009-06-04 08:51:52 +00:00
apachetop update master site. 2009-05-22 18:07:09 +00:00
apc-gui Bump PKGREVISION for infrastructure fix affecting /dev/null as CONF_FILES 2008-09-25 14:02:08 +00:00
asp2php Add DESTDIR support. 2008-06-20 01:09:05 +00:00
august Add DESTDIR support. 2008-06-20 01:09:05 +00:00
awstats Changes 6.9: 2009-01-15 12:12:04 +00:00
bannerfilter Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bins Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bkedit Drop maintainership. 2009-02-24 16:15:22 +00:00
bluefish Add DESTDIR support. 2008-06-12 02:14:13 +00:00
blur6ex Add DESTDIR support. 2008-06-20 01:09:05 +00:00
bozohttpd update to bozohttpd 20090522. change include: 2009-05-23 03:58:16 +00:00
browser-bookmarks-menu Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
cadaver Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
calamaris Add DESTDIR support. 2008-06-20 01:09:05 +00:00
camping Initial import of camping-1.5 as www/camping. 2008-04-04 15:22:40 +00:00
cgic Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
cgicc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
cgilib Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
checkbot Replacing some dependencies to choose perl core first, because desired 2009-06-01 19:38:56 +00:00
cherokee It needs flex, not lex. 2008-05-22 13:31:40 +00:00
chimera Bump PKGREVISION for libXaw API depends bump due to libXaw8 removal. 2008-11-10 17:21:33 +00:00
clearsilver Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
clearsilver-base Cast ne_crc to int32_t as expected by the regression tests. On LP64 2009-02-13 15:06:24 +00:00
cocoon Mark this BROKEN -- it can't build cleanly with recent JDK 2008-11-08 17:36:36 +00:00
communicator Recent flash player is not compatible with netscape navigator/communicator 2007-10-27 13:35:26 +00:00
crawl Bump PKGREVISION for libevent ABI bump. 2009-02-27 22:53:46 +00:00
cronolog Back out previous. Pointed out by uebayasi@ and martti@. 2007-09-25 10:07:06 +00:00
curl Update to 7.19.5: 2009-06-09 18:31:35 +00:00
cvsweb
dansguardian Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
dillo Update to 2.0, which is a major overhaul. Change dillo-ssl option to 2008-10-31 02:02:44 +00:00
drivel Use mk/omf-scrollkeeper.mk instead of textproc/rarian/omf.mk. 2009-03-08 15:56:43 +00:00
drraw Update www/drraw to 2.2b2. 2009-03-04 13:19:36 +00:00
drupal 5.18 2009-05-14 19:37:02 +00:00
drupal6 6.12 2009-05-14 19:38:02 +00:00
drupal6-translations Update drupal6-translation package to 20090113. 2009-01-21 14:03:44 +00:00
elinks Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
emacs-w3m Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
epiphany Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
epiphany-extensions Update epiphany-extensions to 2.26.0. 2009-03-15 19:16:58 +00:00
erubis Update erubis to version 2.5.0. Changes from version 2.3.1 include: 2008-04-04 15:22:47 +00:00
fcgi Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
ffproxy Fix parameters to setsockop() calls. Bump PKGREVISION. 2008-10-16 20:28:06 +00:00
firefox Don't try to link against libc_r on DragonFly. 2009-05-02 07:51:02 +00:00
firefox-bin Update firefox-bin to 2.0.0.20. 2009-06-06 14:08:38 +00:00
firefox-bin-acroread Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
firefox-bin-acroread5
firefox-bin-acroread7
firefox-bin-flash Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
firefox-bin-java Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
firefox-bin-nightly Mark as broken, distfile doesn't exist. 2008-12-17 15:57:32 +00:00
firefox-bin-realplayer Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
firefox3 Don't address Firefox as "lightweight" in the description. 2009-06-08 23:19:12 +00:00
firefox3-bin Don't address Firefox as "lightweight" in the description. 2009-06-08 23:19:12 +00:00
galeon Add DESTDIR support. 2008-06-12 02:14:13 +00:00
galway Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
ganglia-webfrontend Fix Maintainer. DESTDIR support 2009-02-16 13:53:45 +00:00
geeklog Update geeklog package from 1.4.1nb4 to 1.5.2.4 (1.5.2sr4). 2009-05-26 14:19:29 +00:00
gitweb Update gitweb to version 1.6.0.6, fixing a privilege escalation vulnerability. 2009-01-09 13:56:24 +00:00
gtkasp2php Reset maintainer -- shell@ is inactive. 2007-09-30 17:45:23 +00:00
gtkhtml314 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
haskell-cgi
heel Update www/heel to 1.0.0. Changes from version 0.6.0 include converting 2008-04-21 16:24:14 +00:00
hiawatha Fix install on platforms not using pax tar. Bump PKGREVISION. 2009-05-13 07:53:49 +00:00
horde The major changes compared to Horde version 3.3.2 are: 2009-01-30 22:22:26 +00:00
htdig Remove Ex-MASTER_SITEs. From Zafer Aydogan. 2007-12-02 12:32:40 +00:00
htdig-devel Fix build on systems not having ETIME. 2009-05-30 04:25:34 +00:00
htmldoc Add missing portability fix patch. 2009-01-08 11:58:31 +00:00
htmldoc-x11 Update htmldoc to 1.8.27. 2009-01-08 11:57:24 +00:00
htmlfix Add PKG_DESTDIR_SUPPORT 2009-02-13 22:24:14 +00:00
htmllint
http_load Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ies4linux Switch to using INSTALLATION_DIRS 2009-02-13 22:00:12 +00:00
ijb Add PKG_DESTDIR_SUPPORT, relinquish maintainership 2009-02-13 21:38:17 +00:00
ikiwiki Update to 3.13. From the changelog: 2009-06-01 20:24:42 +00:00
instiki use more INSTALLATION_DIRS. There should be no functional change. 2008-06-19 15:24:04 +00:00
ja-trac Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
jakarta-tomcat4 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
jakarta-tomcat5 Second round of explicit pax dependencies. As reminded by tnn@, 2008-05-26 02:13:14 +00:00
jalbum Activated LICENSE=... 2009-05-12 12:27:19 +00:00
kahua Don't hard-code /var. 2007-09-29 16:19:09 +00:00
kannel Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kazehakase Mark as destdir ready. 2008-07-14 12:55:56 +00:00
kdewebdev3 Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib 2009-05-20 00:58:05 +00:00
lhs Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
libghttp Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libgtkhtml Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libproxy Pull in lang/python/extension.mk when buildlinking. 2009-04-07 03:14:07 +00:00
libwww Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
liferea add an option to use webkit as html renderer 2009-04-08 16:44:23 +00:00
liferea-current update to liferea-1.6.0rc4 2009-06-08 10:22:10 +00:00
lighttpd lighttpd-1.4.22: 2009-03-23 00:37:41 +00:00
links Remove leftover "enable-javascript"; code was removed. 2009-06-03 10:13:26 +00:00
links-gui Patch no longer needed, besides failing for some boundary conditions. 2008-08-20 09:26:44 +00:00
loggerhead Update to 1.10, changes include: 2008-12-26 19:51:55 +00:00
lynx update mirrors. remove non-working ones. 2009-05-01 15:16:12 +00:00
make_album
mediawiki +PKG_DESTDIR_SUPPORT 2009-05-18 21:14:50 +00:00
merb Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-action-args Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-activerecord Initial import of merb-activerecord-0.9.2 as www/merb-activerecord. 2008-04-04 15:23:15 +00:00
merb-assets Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-builder Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-cache Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-core Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-datamapper Initial import of merb-datamapper-0.9.2 as www/merb-datamapper. 2008-04-04 15:23:53 +00:00
merb-gen Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-haml Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-has-flash Initial import of merb-has-flash-0.9.2 as www/merb-has-flash. 2008-04-04 15:24:15 +00:00
merb-helpers Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-mailer Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-more Initial import of merb-more-0.9.2 as www/merb-more. 2008-04-04 15:24:38 +00:00
merb-param-protection Initial import of merb-param-protection-0.9.2 as www/merb-param-protection. 2008-04-04 15:24:45 +00:00
merb-parts Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-sequel Fix commit involving Makefile:1.2 that bumped the PKGREVISION of 2008-04-14 20:21:20 +00:00
merb-stories Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merb-test-unit Removed references to a non-existent patch-aa file. I wonder how these 2009-05-16 07:30:41 +00:00
merbful-authentication Add RubyForge's project page as HOMEPAGE. 2008-08-15 16:06:44 +00:00
micro_httpd
midori Update to v0.1.7: 2009-06-08 21:17:04 +00:00
mimetex Update mimetex to 0.70. 2008-11-05 13:25:12 +00:00
mini_httpd Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
mknmz-wwwoffle Mark as destdir ready. 2008-07-14 12:55:56 +00:00
mMosaic Reset maintainer on his request. 2007-12-12 20:42:28 +00:00
mongrel Update mongrel to 1.1.5. 2008-10-07 05:28:33 +00:00
mongrel-cluster Initial import of mongrel-cluster-1.0.5 as www/mongrel-cluster. 2008-04-04 15:25:31 +00:00
mongrel-config Initial import of mongrel-config-0.3.1 as www/mongrel-config. 2008-04-04 15:25:38 +00:00
mongrel-console Initial import of mongrel-console-0.2.1 as www/mongrel-console. 2008-04-04 15:25:46 +00:00
mongrel-upload-progress Initial import of mongrel-upload-progress-0.2.2 as 2008-04-04 15:25:54 +00:00
mono-xsp The continuing story of mono 2.4 update 2009-04-07 11:29:52 +00:00
navigator Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
neon Update neon to 0.28.3 2009-04-06 12:54:06 +00:00
netscape Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
netsurf Dont bother buidling on <4.0. 2008-09-02 13:12:43 +00:00
nginx Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
ns-plugger-common Fix a long standing bug where PKG_INFO was used before it was defined. 2007-10-10 15:27:15 +00:00
ns-plugger-communicator
ns-plugger-navigator
ns-remote Update ns-remote to 1.12: 2009-02-10 12:39:57 +00:00
nspluginwrapper Add PKG_DESTDIR_SUPPORT 2009-02-10 12:44:24 +00:00
nvu Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
ocsigen Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
opera Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
opera-acroread Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
opera-acroread5 Fix Maintainer. DESTDIR support 2009-02-16 13:53:45 +00:00
opera-acroread7 Fix Maintainer. DESTDIR support 2009-02-16 13:53:45 +00:00
opera-plugins Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
p5-Alien-GvaScript Update from version 1.10 to 1.11. 2009-01-11 18:21:06 +00:00
p5-Apache-ASP PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-Apache-AuthCookie Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-AuthCookieDBI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-DBILogConfig Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-DBILogger Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Filter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Gallery Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Reload Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Session pkgsrc changes: 2009-05-21 11:28:14 +00:00
p5-Apache-Session-Wrapper Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-SSI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache-Test Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache2-AuthCASSimple Initial import of p5-Apache2-AuthCASSimple version 0.10 in the 2009-06-01 21:41:39 +00:00
p5-Apache2-AuthCookie Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Apache2-AuthCookieDBI Update from version 2.03nb1 to 2.04. 2008-12-12 21:23:00 +00:00
p5-App-Nopaste Module::Pluggable is a core module since perl-5.10 -> Updating dependency 2009-04-24 08:17:24 +00:00
p5-Captcha-reCAPTCHA Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Captcha-reCAPTCHA-Mailhide Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Action-RenderView Patch out auto_install - this will be handled by pkgsrc 2009-05-23 21:45:45 +00:00
p5-Catalyst-Authentication-Store-DBIx-Class - updated to 0.1082 2008-11-10 22:41:10 +00:00
p5-Catalyst-Component-ACCEPT_CONTEXT PkgSrc changes: 2009-04-30 20:06:37 +00:00
p5-Catalyst-Component-InstancePerContext Modify dependencies to perl-modules which are deployed with the perl-core, 2009-04-24 17:15:21 +00:00
p5-Catalyst-Controller-BindLex Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Controller-FormBuilder pkgsrc changes: 2009-05-19 22:41:30 +00:00
p5-Catalyst-Devel pkgsrc changes: 2009-05-19 22:25:55 +00:00
p5-Catalyst-Engine-JobQueue-POE Added www/p5-Catalyst-Engine-JobQueue-POE version 0.0.3 2009-02-17 15:07:42 +00:00
p5-Catalyst-Manual comment out autoinstall so this can build without a configured CPAN - need to handle this automatically 2009-05-25 17:06:50 +00:00
p5-Catalyst-Model-Adaptor Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Plugin-Authentication PkgSrc changes: 2009-05-01 13:34:27 +00:00
p5-Catalyst-Plugin-Authentication-Store-DBIC Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Plugin-Authentication-Store-RDBO Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Plugin-Authorization-Roles Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-Plugin-AutoRestart Added www/p5-Catalyst-Plugin-AutoRestart version 0.92 2008-10-31 11:50:42 +00:00
p5-Catalyst-Plugin-ConfigLoader PkgSrc changes: 2009-05-01 12:05:59 +00:00
p5-Catalyst-Plugin-I18N PkgSrc changes: 2009-05-01 20:42:48 +00:00
p5-Catalyst-Plugin-RequireSSL Added www/p5-Catalyst-Plugin-RequireSSL version 0.06 2009-01-03 18:15:00 +00:00
p5-Catalyst-Plugin-Server Fix RPC-XML version DEPEND 2009-02-13 16:57:11 +00:00
p5-Catalyst-Plugin-Session PkgSrc changes: 2009-05-17 19:26:00 +00:00
p5-Catalyst-Plugin-Session-State-Cookie PkgSrc changes: 2009-05-17 19:34:17 +00:00
p5-Catalyst-Plugin-Session-Store-DBIC PkgSrc changes: 2009-05-01 17:47:36 +00:00
p5-Catalyst-Plugin-Session-Store-Delegate PkgSrc changes: 2009-05-17 19:41:14 +00:00
p5-Catalyst-Plugin-Session-Store-FastMmap pkgsrc changes: 2009-05-19 06:43:41 +00:00
p5-Catalyst-Plugin-Session-Store-File pkgsrc changes: 2009-05-19 06:49:30 +00:00
p5-Catalyst-Plugin-StackTrace PkgSrc changes: 2009-05-01 12:14:54 +00:00
p5-Catalyst-Plugin-Static-Simple PkgSrc changes: 2009-05-01 12:22:47 +00:00
p5-Catalyst-Runtime pkgsrc changes: 2009-05-20 22:07:42 +00:00
p5-Catalyst-View-Excel-Template-Plus Import p5-Catalyst-View-Excel-Template-Plus version 0.01. 2008-10-20 23:12:02 +00:00
p5-Catalyst-View-Jemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Catalyst-View-JSON PkgSrc changes: 2009-05-01 18:14:52 +00:00
p5-Catalyst-View-Mason PkgSrc changes: 2009-04-29 22:38:35 +00:00
p5-Catalyst-View-TT PkgSrc changes: 2009-05-01 18:26:50 +00:00
p5-CatalystX-CRUD-Controller-RHTMLO Update from version 0.18 to version 0.19 2008-12-07 22:13:50 +00:00
p5-CatalystX-CRUD-View-Excel Import p5-CatalystX-CRUD-View-Excel version 0.06. 2008-10-20 23:20:24 +00:00
p5-CatalystX-CRUD-YUI pkgsrc changes: 2009-05-19 06:59:11 +00:00
p5-CGI +PKG_DESTDIR_SUPPORT= 2009-05-18 22:14:20 +00:00
p5-CGI-Ajax PkgSrc changes: 2009-04-24 06:41:27 +00:00
p5-CGI-Application - updated to 4.21 2009-03-09 20:29:24 +00:00
p5-CGI-Application-Plugin-DBH Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Application-Plugin-ValidateRM - updated to 2.3 2008-11-08 19:56:28 +00:00
p5-CGI-Cookie-Splitter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-FastTemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-FormBuilder Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Lite Add PREV_PKGPATH and/or SUPERSEDES for various packages that 2009-05-02 16:21:43 +00:00
p5-CGI-Minimal Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-ProgressBar Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CGI-Session PkgSrc changes: 2009-04-24 06:46:30 +00:00
p5-CGI-Simple PkgSrc changes: 2009-04-24 06:50:42 +00:00
p5-CSS Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-CSS-Squish Donate my Perl packages to the Great Five. (Don't worry, I'll try to take 2009-05-21 14:28:44 +00:00
p5-CSS-Tiny Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FCGI Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-FCGI-ProcManager Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Handel Modify dependencies to perl-modules which are deployed with the perl-core, 2009-04-24 17:15:21 +00:00
p5-HTML-Clean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Element-Extended Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Email-Obfuscate Import p5-HTML-Email-Obfuscate version 1.00. 2008-11-17 20:19:58 +00:00
p5-HTML-FillInForm Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-FixEntities Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Format Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-LinkExtractor Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Lint Update from version 2.04nb1 to 2.06. 2009-01-11 16:19:27 +00:00
p5-HTML-Mason PkgSrc changes: 2009-05-17 19:56:58 +00:00
p5-HTML-Parser Update to 3.60: 2009-02-21 14:00:02 +00:00
p5-HTML-PrettyPrinter Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Prototype Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Prototype-Useful Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-RewriteAttributes Donate my Perl packages to the Great Five. (Don't worry, I'll try to take 2009-05-21 14:28:44 +00:00
p5-HTML-Scrubber Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-SimpleParse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-StickyQuery Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Stream Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Strip Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-StripScripts Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-StripScripts-Parser Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Table Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-TableExtract Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tagset Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Template Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tiny pkgsrc changes: 2009-05-21 11:43:44 +00:00
p5-HTML-TokeParser-Simple Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-Tree Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTML-WikiConverter Update from version 0.62nb1 to 0.63. 2008-12-12 22:42:39 +00:00
p5-HTMLObject Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Async Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Body Update from version 1.04nb1 to 1.05. 2008-12-12 22:45:59 +00:00
p5-HTTP-Cache-Transparent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-DAV Update from version 0.31nb6 to 0.35. 2008-12-12 23:11:13 +00:00
p5-HTTP-GHTTP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Lite Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Proxy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Request-AsCGI PkgSrc changes: 2009-04-29 22:25:47 +00:00
p5-HTTP-Request-Form Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Response-Encoding Import p5-HTTP-Response-Encoding version 0.05. 2008-12-16 22:21:16 +00:00
p5-HTTP-Server-Simple Update from version 0.37 to version 0.38. 2009-01-19 22:16:19 +00:00
p5-HTTP-Server-Simple-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTP-Server-Simple-Mason Update from version 0.09nb1 to 0.11. 2008-12-15 22:51:01 +00:00
p5-HTTP-Server-Simple-Recorder Update from version 0.02nb1 to 0.03. 2008-12-15 22:55:53 +00:00
p5-HTTP-Server-Simple-Static Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-HTTPD-User-Manage Update to 1.66, convert to user-destdir. 2009-02-22 16:13:45 +00:00
p5-I18N-AcceptLanguage Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Jemplate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Archive-Cvs Updated from version 0.103nb1 to 0.104. 2008-12-15 23:53:07 +00:00
p5-Kwiki-Archive-Rcs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-BreadCrumbs Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Edit-RequireUserName Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Favorites Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-HtmlBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Icons-Gnome Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-ModPerl Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-NewPage Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Notify-Mail Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-PagePrivacy Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-ParagraphBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-PreformattedBlocks Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-RecentChanges Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Revisions Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Scode Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Search Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Simple-Server-HTTP Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-UserName Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-UserPreferences Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Users-Remote Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Weather Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Wikiwyg Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Kwiki-Zipcode Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-libapreq Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-libapreq2 Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-libwww Replacing some dependencies to choose perl core first, because desired 2009-06-01 19:38:56 +00:00
p5-LWP-Authen-Negotiate Remove calls to LWP::Debug as they have been deprecated in p5-libwww. 2009-02-24 10:53:02 +00:00
p5-LWP-Authen-Wsse Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-LWP-UserAgent-Determined pkgsrc changes: 2009-05-21 10:32:13 +00:00
p5-LWPx-ParanoidAgent Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-MasonX-Request-WithApacheSession Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-ParallelUserAgent Added www/p5-ParallelUserAgent version 2.57 2008-10-26 19:13:22 +00:00
p5-Pod-POM-Web Update from version 1.10 to version 1.11. 2008-11-15 14:01:06 +00:00
p5-Reaction Initial import of p5-Reaction version 0.2.0 in the NetBSD Packages 2009-05-09 16:30:59 +00:00
p5-Rose-HTML-Objects PkgSrc changes: 2009-05-17 18:48:22 +00:00
p5-Rose-HTMLx-Form-Field-Autocomplete Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Field-Boolean Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Field-PopUpMenuNumeric PkgSrc changes: 2009-05-01 19:28:51 +00:00
p5-Rose-HTMLx-Form-Field-Serial Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Rose-HTMLx-Form-Related PkgSrc changes: 2009-05-01 19:39:56 +00:00
p5-Rose-URI Update from version 0.022nb1 to 0.500 (upstream 0.50): 2008-12-16 21:44:06 +00:00
p5-SVN-Web Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Extract Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Generate Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Multilingual PkgSrc changes: 2009-05-01 20:49:35 +00:00
p5-Template-Provider-Encoding Update distinfo to match current DISTFILES. 2009-02-19 02:38:05 +00:00
p5-Template-Stash-EscapeHTML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Template-Stash-HTML-Entities Add PKG_DESTDIR_SUPPORT 2009-02-13 21:36:08 +00:00
p5-Template-Timer PkgSrc changes: 2009-05-01 18:31:58 +00:00
p5-Template-Toolkit +PKG_DESTDIR_SUPPORT 2009-05-18 22:16:14 +00:00
p5-Test-HTTP-Server-Simple PkgSrc changes: 2009-05-01 20:02:42 +00:00
p5-Test-WWW-Declare Update from version 0.01nb1 to 0.02. 2008-12-16 21:54:41 +00:00
p5-Test-WWW-Mechanize Update from version 1.22 to version 1.24. 2009-01-19 22:25:32 +00:00
p5-Test-WWW-Mechanize-Catalyst PkgSrc changes: 2009-05-01 13:12:11 +00:00
p5-URI pkgsrc changes: 2009-06-01 18:30:06 +00:00
p5-URI-Escape-XS Added PKG_DESTDIR_SUPPORT=user-destdir 2009-05-12 11:09:26 +00:00
p5-URI-Fetch PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-VRML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-WordPress-XMLRPC The Perl 5 module WordPress::XMLRPC provides an API to WordPress's XML-RPC 2009-02-23 20:57:49 +00:00
p5-WWW-Amazon-Wishlist Update from version 1.4nb1 to 1.6.1 (upstream 1.601). 2009-01-11 21:06:26 +00:00
p5-WWW-Curl Update to 4.07: 2009-06-09 12:49:20 +00:00
p5-WWW-Facebook-API Update from version 0.4.13nb1 to 0.4.14. 2008-12-16 23:53:54 +00:00
p5-WWW-Mechanize PkgSrc changes: 2009-05-01 13:22:57 +00:00
p5-WWW-Pastebin-PastebinCom-Create Update from version 0.001 to version 0.002. 2009-01-18 10:08:17 +00:00
p5-WWW-Pastebin-RafbNet-Create Initial import of p5-WWW-Pastebin-RafbNet-Create version 0.001 in 2009-01-17 15:42:56 +00:00
p5-WWW-Shorten Update from version 2.02 to version 2.03. 2009-03-19 19:46:28 +00:00
paros Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pear-HTML_Common Add DESTDIR support. 2008-06-12 02:14:13 +00:00
pear-HTML_Select Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
pear-HTML_TreeMenu Import PEAR::HTML_TreeMenu version 1.2.1: 2008-12-16 01:39:55 +00:00
pear-HTTP Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
pear-HTTP_Request Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk 2007-10-25 16:54:26 +00:00
php-apc Upgrade PHP PECL alternative PHP cache extension (apc) to version 3.0.19 2008-09-28 13:55:44 +00:00
php-curl Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-eaccelerator Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php-FastTemplate Add DESTDIR support. 2008-06-12 02:14:13 +00:00
php4 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
php4-apc Add DESTDIR support. 2008-06-12 02:14:13 +00:00
plone Update PLONE3_VERSION to 3.1.7. 2008-11-15 17:24:19 +00:00
plone3 Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
plone25 Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
pound Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
privoxy Squash one pkglint warning. 2009-04-07 14:02:06 +00:00
py-beautifulsoup Supports destdir installation. 2009-01-15 00:13:59 +00:00
py-clearsilver Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-ClientForm Supports DESTDIR 2009-02-16 19:38:27 +00:00
py-curl Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-django Add PREV_PKGPATH and/or SUPERSEDES for various packages that 2009-05-02 16:21:43 +00:00
py-flup
py-gdata Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
py-genshi Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
py-HTMLgen DESTDIR support. 2009-02-16 19:44:28 +00:00
py-jonpy Update PYTHON_VERSIONS_COMPATIBLE 2008-04-25 20:39:06 +00:00
py-mechanize Needs Python 2.5 yield. 2009-02-09 18:57:56 +00:00
py-moin Uses list comprehension. 2008-10-02 12:18:27 +00:00
py-nevow twisted is restricted to 2.4+, so restrict here as well. 2008-09-17 12:01:34 +00:00
py-paste Default EGG_NAME to ${DISTNAME} in egg.mk and drop EGG_NAME from packages that 2008-09-12 05:32:37 +00:00
py-rss2gen Remove PYBINMODULE. All it did was mark some packages as not available 2009-03-05 18:51:26 +00:00
py-scgi 26 is not valid for PYTHON_VERSIONS_ACCEPTED until Python 2.6 is added 2009-03-07 21:31:08 +00:00
py-simpletal Import py-SimpleTAL-4.1. 2008-09-04 16:53:58 +00:00
py-swish-e Remove trailing spaces. 2007-10-09 19:19:08 +00:00
py-webpy Upgrade to 0.23. Many fixes and features. See http://webpy.org/changes 2008-08-17 22:57:04 +00:00
qDecoder Update qDecoder to 9.0.1. Patches submitted by Jun-Yong Park. 2008-11-27 21:15:36 +00:00
raggle * Handle gracefuly Ruby iconv depends on, fix PR pkg/36474. 2008-09-14 13:58:57 +00:00
rails Update rails packages to 2.3.1. 2009-04-07 17:13:26 +00:00
ramaze Initial import of ramaze-0.3.9.1 as www/ramaze. 2008-04-04 15:26:03 +00:00
ruby-actionpack Update rails packages to 2.3.1. 2009-04-07 17:13:26 +00:00
ruby-activeresource Update rails packages to 2.3.1. 2009-04-07 17:13:26 +00:00
ruby-borges Add DESTDIR support. 2008-06-20 01:09:05 +00:00
ruby-clearsilver Update clearsilver packages to 0.10.5. 2008-10-06 01:04:28 +00:00
ruby-cssmin Update ruby-cssmin pacakge to 1.0.2. 2008-09-15 15:33:27 +00:00
ruby-fcgi Install as a gem using the pkgsrc rubygem.mk framework instead of 2008-04-04 15:30:00 +00:00
ruby-gnome2-gtkhtml2 Update ruby-gnome2 to 0.18.1. 2008-10-28 13:43:57 +00:00
ruby-gnome2-gtkmozembed Update ruby-gnome2 to 0.19.0. 2009-05-31 09:00:48 +00:00
ruby-htmlsplit Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ruby-jsmin Initial import of ruby18-jsmin-1.0.0 as www/ruby-jsmin. 2008-04-04 15:26:19 +00:00
ruby-mechanize Update ruby-mechanize to version 0.7.5. Changes from version 0.6.8 2008-04-04 15:26:25 +00:00
ruby-net-flickr Initial import of ruby18-net-flickr-0.0.1 as www/ruby-net-flickr. 2008-04-04 15:26:29 +00:00
ruby-rack Update ruby-rack package to 0.4.0. 2008-09-15 08:31:47 +00:00
ruby-tag Mark as destdir ready. 2008-07-14 12:55:56 +00:00
ruby-webunit Mark as destdir ready. 2008-07-14 12:55:56 +00:00
sarg I'm not using this package for a long time - please feel free to take 2008-08-01 10:10:26 +00:00
screws Fix broken amd64 build: 2008-08-17 20:09:12 +00:00
seamonkey Don't try to link against libc_r on DragonFly. 2009-05-02 07:51:02 +00:00
seamonkey-bin Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.16. 2009-04-11 09:14:11 +00:00
seamonkey-bin-flash Add DESTDIR support. 2008-06-20 01:09:05 +00:00
seamonkey-bin-java
seamonkey-bin-nightly Update versions of nightly binaries (older ones are unavailable on master site). 2009-01-04 18:48:47 +00:00
seamonkey-gtk1 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
serf Update to 0.3.0 from Thomas E. Spanjaard in private mail. No ABI 2009-04-07 16:59:40 +00:00
sitecopy update master site. 2009-05-22 18:07:09 +00:00
skipstone
snarf Add DESTDIR support. 2008-06-20 01:09:05 +00:00
snownews Update snownews to 1.5.11. 2009-06-01 11:56:43 +00:00
sope Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
SpeedyCGI Fix to work with new perl 2008-10-20 20:41:47 +00:00
squid Remove write permission from "libexec/pinger" because it is installed 2009-06-06 22:49:50 +00:00
squid27 Add share/squid to INSTALLATION_DIRS, so it gets created explicitly with 2009-03-08 11:39:23 +00:00
squid30 Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
squid31 Update "squid31" package to version 3.1.0.8. Changes since version 3.1.0.7: 2009-06-07 08:36:36 +00:00
squidGuard DESTDIR support 2009-02-16 19:03:18 +00:00
squidpurge
squirm Resign from maintaining a lot of packages, so everyone is free to update 2008-03-04 11:02:23 +00:00
surfraw Update to 2.2.5: 2009-06-06 22:07:43 +00:00
swiftsurf
swiggle +PKG_DESTDIR_SUPPORT= user-destdir 2009-03-06 00:06:28 +00:00
swill
swish-e Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tcl-cgi
thin Bump PKGREVISION of rubygem based packages which contain extention libraries. 2008-06-19 15:21:35 +00:00
thoth Update patch checksum 2008-04-21 16:35:05 +00:00
thoth-delicious Initial import of ruby18-thoth-delicious-0.1.0 as www/thoth-delicious. 2008-04-04 15:26:58 +00:00
thoth-flickr Initial import of ruby18-thoth-flickr-0.1.0 as www/thoth-flickr. 2008-04-04 15:27:05 +00:00
thttpd
thy DESTDIR support 2009-02-10 16:46:03 +00:00
tidy Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
tinyproxy Per the process outlined in revbump(1), perform a recursive revbump 2008-01-18 05:06:18 +00:00
trac Update to trac-0.11.4 2009-04-25 00:15:04 +00:00
typo3 Update www/typo3 package to 4.2.6. 2009-02-10 09:35:40 +00:00
typolight Add TL_DOCDIR support to PRINT_PLIST_AWK. 2009-05-30 16:51:06 +00:00
typolight26 * Correct path in MESSAGE. 2009-04-30 13:12:40 +00:00
typolight26-example Importing www/typolight26-example which was www/typolight-example 2009-04-26 03:53:53 +00:00
typolight26-translations Import www/typolight26-translations which was in www/typolight-translations 2009-04-26 03:54:57 +00:00
typolight27 Update TYPOlight webCMS to 2.7.1 (2.7 build 1). 2009-05-30 16:53:26 +00:00
typolight27-example Importing www/typolight27-example which provide example site data. 2009-04-26 04:00:12 +00:00
typolight27-translations Update typolight27-translations package to 20090605. 2009-06-07 01:16:41 +00:00
urlget
urlgrabber Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
varnish Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
viewvc Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
visitors Add DESTDIR support. 2008-06-20 01:09:05 +00:00
w3 Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
w3c-httpd Add DESTDIR support. 2008-06-20 01:09:05 +00:00
w3m Mark as not make-jobs-safe (at least not with -j16). 2009-06-03 10:56:01 +00:00
w3m-img Modular Xorg support should not in w3m-img/Makefile. 2008-12-13 04:21:28 +00:00
waplet Add DESTDIR support. 2008-06-20 01:09:05 +00:00
wApua Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
wdg-validate Add DESTDIR support. 2008-06-20 01:09:05 +00:00
webalizer add one more mirror. 2009-05-01 15:27:04 +00:00
webby Initial import of webby-0.8.2 as www/webby. 2008-04-04 15:27:12 +00:00
webkit-gtk Update to 1.1.8. 2009-06-09 13:08:14 +00:00
weblint Add DESTDIR support. 2008-06-20 01:09:05 +00:00
webnew Add DESTDIR support. 2008-06-20 01:09:05 +00:00
websvn Fix various cross-site scripting issues in websvn (CVE-2007-3056). 2008-07-13 11:15:27 +00:00
weex Assume for the moment that all modern platforms have va_copy, 2008-07-10 12:46:43 +00:00
whisker Change to my @NetBSD.org address 2009-03-21 20:01:11 +00:00
wiliki Mark as destdir ready. 2008-07-14 12:55:56 +00:00
wmd Initial import of WMD, a simple, lightweight HTML editor for blog 2009-05-04 22:48:26 +00:00
wml DynaLoader.a died with Perl 5.10, so don't try to link against it. 2009-03-26 18:19:31 +00:00
wordpress Import of wordpress 2.7.1 from pkgsrc-wip 2009-04-06 11:31:02 +00:00
www6to4
wwwcount MAKE_JOBS_SAFE=no 2009-01-12 16:09:22 +00:00
wwwoffle Add PKG_DESTDIR_SUPPORT - release maintainership 2009-02-13 22:37:02 +00:00
zope Comment out lines related to zope33 which dosen't exist package. 2009-02-21 15:26:47 +00:00
zope-ejsplitter Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
zope-jamailhost Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
zope3 Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
zope29 Drop maintainership. I have less interest and no time to maintain Zope. 2009-04-22 00:35:32 +00:00
zope210 Drop maintainership. I have less interest and no time to maintain Zope. 2009-04-22 00:35:32 +00:00
zope211 Drop maintainership. I have less interest and no time to maintain Zope. 2009-04-22 00:35:32 +00:00
zopeedit Switch to Python 2.5 as default. Bump revision of all packages that have 2009-02-09 22:56:21 +00:00
Makefile Add & enable p5-Apache2-AuthCASSimple 2009-06-01 21:42:32 +00:00