pkgsrc/www
wiz b7789ee748 Update to 7.20.0:
Version 7.20.0 (9 February 2010)

Daniel Stenberg (9 Feb 2010)
- When downloading compressed content over HTTP and the app asked libcurl to
  automatically uncompress it with the CURLOPT_ENCODING option, libcurl could
  wrongly provide the callback with more data than the maximum documented
  amount. An application could thus get tricked into badness if the maximum
  limit was trusted to be enforced by libcurl itself (as it is documented).

  This is further detailed and explained in the libcurl security advisory
  20100209 at

    http://curl.haxx.se/docs/adv_20100209.html

Daniel Fandrich (3 Feb 2010)
- Changed the Watcom makefiles to make them easier to keep in sync with
  Makefile.inc since that can't be included directly.

Yang Tse (2 Feb 2010)
- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,
  symbol will not be available when building with CURL_NO_OLDIES defined. Use
  of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0

Daniel Stenberg (1 Feb 2010)
- Using the multi_socket API, it turns out at times it seemed to "forget"
  connections (which caused a hang). It turned out to be an existing (7.19.7)
  bug in libcurl (that's been around for a long time) and it happened like
  this:

  The app calls curl_multi_add_handle() to add a new easy handle, libcurl will
  then set it to timeout in 1 millisecond so libcurl will tell the app about
  it.

  The app's timeout fires off that there's a timeout, the app calls libcurl as
  we so often document it:

  do {
   res = curl_multi_socket_action(... TIMEOUT ...);
  } while(CURLM_CALL_MULTI_PERFORM == res);

  And this is the problem number one:

  When curl_multi_socket_action() is called with no specific handle, but only
  a timeout-action, it will *only* perform actions within libcurl that are
  marked to run at this time. In this case, the request would go from INIT to
  CONNECT and return CURLM_CALL_MULTI_PERFORM. When the app then calls libcurl
  again, there's no timer set for this handle so it remains in the CONNECT
  state. The CONNECT state is a transitional state in libcurl so it reports no
  sockets there, and thus libcurl never tells the app anything more about that
  easy handle/connection.

  libcurl _does_ set a 1ms timeout for the handle at the end of
  multi_runsingle() if it returns CURLM_CALL_MULTI_PERFORM, but since the loop
  is instant the new job is not ready to run at that point (and there's no
  code that makes libcurl call the app to update the timout for this new
  timeout). It will simply rely on that some other timeout will trigger later
  on or that something else will update the timeout callback. This makes the
  bug fairly hard to repeat.

  The fix made to adress this issue:

  We introduce a loop in lib/multi.c around all calls to multi_runsingle() and
  simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added
  benefit that this goes in line with my long-term wishes to get rid of the
  CURLM_CALL_MULTI_PERFORM all together from the public API.

  The downside of this fix, is that the counter we return in 'running_handles'
  in several of our public functions then gets a slightly new and possibly
  confusing behavior during times:

  If an app adds a handle that fails to connect (very quickly) it may just
  as well never appear as a 'running_handle' with this fix. Previously it
  would first bump the counter only to get it decreased again at next call.
  Even I have used that change in handle counter to signal "end of a
  transfer". The only *good* way to find the end of a individual transfer
  is calling curl_multi_info_read() to see if it returns one.

  Of course, if the app previously did the looping before it checked the
  counter, it really shouldn't be any new effect.

Yang Tse (26 Jan 2010)
- Constantine Sapuntzakis' and Joshua Kwan's work done in the last four months
  relative to the asynchronous DNS lookups, along with with some integration
  adjustments I have done are finally committed to CVS.

  Currently these enhancements will benefit builds done using c-ares on any
  platform as well as Windows builds using the default threaded resolver.

  This release does not make generally available POSIX threaded DNS lookups
  yet. There is no configure option to enable this feature yet. It is possible
  to experimantally try this feature running configure with compiler flags that
  make simultaneous definition of preprocessor symbols USE_THREADS_POSIX and
  HAVE_PTHREAD_H, as well as whatever reentrancy compiler flags and linker ones
  are required to link and properly use pthread_* functions on each platform.

Daniel Stenberg (26 Jan 2010)
- Mike Crowe made libcurl return CURLE_COULDNT_RESOLVE_PROXY when it is the
  proxy that cannot be resolved when using c-ares. This matches the behaviour
  when not using c-ares.

Bj
- Added a new flag: -J/--remote-header-name. This option tells the
  -O/--remote-name option to use the server-specified Content-Disposition
  filename instead of extracting a filename from the URL.

Daniel Stenberg (21 Jan 2010)
- Chris Conroy brought support for RTSP transfers, and with it comes 8(!) new
  libcurl options for controlling what to get and how to receive posssibly
  interleaved RTP data.

Daniel Stenberg (20 Jan 2010)
- As was pointed out on the http-state mailing list, the order of cookies in a
  HTTP Cookie: header _needs_ to be sorted on the path length in the cases
  where two cookies using the same name are set more than once using
  (overlapping) paths. Realizing this, identically named cookies must be
  sorted correctly. But detecting only identically named cookies and take care
  of them individually is harder than just to blindly and unconditionally sort
  all cookies based on their path lengths. All major browsers also already do
  this, so this makes our behavior one step closer to them in the cookie area.

  Test case 8 was the only one that broke due to this change and I updated it
  accordingly.

Daniel Stenberg (19 Jan 2010)
- David McCreedy brought a fix and a new test case (129) to make libcurl work
  again when downloading files over FTP using ASCII and it turns out that the
  final size of the file is not the same as the initial size the server
  reported. This is very common since servers don't take the newline
  conversions into account.

Kamil Dudka (14 Jan 2010)
- Suppressed side effect of OpenSSL configure checks, which prevented NSS from
  being properly detected under certain circumstances. It had been caused by
  strange behavior of pkg-config when handling PKG_CONFIG_LIBDIR. pkg-config
  distinguishes among empty and non-existent environment variable in that case.

Daniel Stenberg (12 Jan 2010)
- Gil Weber reported a peculiar flaw with the multi interface when doing SFTP
  transfers: curl_multi_fdset() would return -1 and not set and file
  descriptors several times during a transfer of a single file. It turned out
  to be due to two different flaws now fixed. Gil's excellent recipe helped me
  nail this.

Daniel Stenberg (11 Jan 2010)
- Made sure that the progress callback is repeatedly called at a regular
  interval even during very slow connects.

- The tests/runtests.pl script now checks to see if the test case that runs is
  present in the tests/data/Makefile.am and outputs a notice message on the
  screen if not. Each test file has to be included in that Makefile.am to get
  included in release archives and forgetting to add files there is a common
  mistake. This is an attempt to make it harder to forget.

Daniel Stenberg (9 Jan 2010)
- Johan van Selst found and fixed a OpenSSL session ref count leak:

  ossl_connect_step3() increments an SSL session handle reference counter on
  each call. When sessions are re-used this reference counter may be
  incremented many times, but it will be decremented only once when done (by
  Curl_ossl_session_free()); and the internal OpenSSL data will not be freed
  if this reference count remains positive. When a session is re-used the
  reference counter should be corrected by explicitly calling
  SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid
  introducing a memory leak.

  (http://curl.haxx.se/bug/view.cgi?id=2926284)

Daniel Stenberg (7 Jan 2010)
- Make sure the progress callback is called repeatedly even during very slow
  name resolves when c-ares is used for resolving.

Claes Jakobsson (6 Jan 2010)
- Julien Chaffraix fixed so that the fragment part in an URL is not sent
  to the server anymore.

Kamil Dudka (3 Jan 2010)
- Julien Chaffraix eliminated a duplicated initialization in singlesocket().

Daniel Stenberg (2 Jan 2010)
- Make curl support --ssl and --ssl-reqd instead of the previous FTP-specific
  versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to
  control SSL/TLS for IMAP, POP3 and SMTP as well in addition to FTP. The old
  option names are still working but the new ones are the ones listed and
  documented.

Daniel Stenberg (1 Jan 2010)
- Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. This
  command is a special "hack" used by the drftpd server, but even though it is
  a custom extension I've deemed it fine to add to libcurl since this server
  seems to survive and people keep using it and want libcurl to support
  it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also
  usable from the curl tool with --ftp-pret. Using this option on a server
  that doesn't support this command will make libcurl fail.

  I added test cases 1107 and 1108 to verify the functionality.

  The PRET command is documented at
  http://www.drftpd.org/index.php/Distributed_PASV

Yang Tse (30 Dec 2009)
- Steven M. Schweda improved VMS build system, and Craig A. Berry helped
  with the patch and testing.

Daniel Stenberg (26 Dec 2009)
- Renato Botelho and Peter Pentchev brought a patch that makes the libcurl
  headers work correctly even on FreeBSD systems before v8.

  (http://curl.haxx.se/bug/view.cgi?id=2916915)

Daniel Stenberg (17 Dec 2009)
- David Byron fixed Curl_ossl_cleanup to actually call ENGINE_cleanup when
  available.

- Follow-up fix for the proxy fix I did for Jon Nelson's bug. It turned out I
  was a bit too quick and broke test case 1101 with that change. The order of
  some of the setups is sensitive. I now changed it slightly again to make
  sure we do them in this order:

  1 - parse URL and figure out what protocol is used in the URL
  2 - prepend protocol:// to URL if missing
  3 - parse name+password off URL, which needs to know what protocol is used
      (since only some allows for name+password in the URL)
  4 - figure out if a proxy should be used set by an option
  5 - if no proxy option, check proxy environment variables
  6 - run the protocol-specific setup function, which needs to have the proxy
      already set

Daniel Stenberg (15 Dec 2009)
- Jon Nelson found a regression that turned out to be a flaw in how libcurl
  detects and uses proxies based on the environment variables. If the proxy
  was given as an explicit option it worked, but due to the setup order
  mistake proxies would not be used fine for a few protocols when picked up
  from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added
  test case 1106 that verifies this functionality.

  (http://curl.haxx.se/bug/view.cgi?id=2913886)

Daniel Stenberg (12 Dec 2009)
- IMAP, POP3 and SMTP support and their TLS versions (including IMAPS, POP3S
  and SMTPS) are now supported. The current state may not yet be solid, but
  the foundation is in place and the test suite has some initial support for
  these protocols. Work will now persue to make them nice libcurl citizens
  until release.

  The work with supporting these new protocols was sponsored by
  networking4all.com - thanks!

Daniel Stenberg (10 Dec 2009)
- Siegfried Gyuricsko found out that the curl manual said --retry would retry
  on FTP errors in the transient 5xx range. Transient FTP errors are in the
  4xx range. The code itself only tried on 5xx errors that occured _at login_.
  Now the retry code retries on all FTP transfer failures that ended with a
  4xx response.

  (http://curl.haxx.se/bug/view.cgi?id=2911279)

- Constantine Sapuntzakis figured out a case which would lead to libcurl
  accessing alredy freed memory and thus crash when using HTTPS (with
  OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order
  of cleaning things up. I fixed it.

  (http://curl.haxx.se/bug/view.cgi?id=2905220)

Daniel Stenberg (7 Dec 2009)
- Martin Storsjo made libcurl use the Expect: 100-continue header for posts
  with unknown size. Previously it was only used for posts with a known size
  larger than 1024 bytes.

Daniel Stenberg (1 Dec 2009)
- If the Expect: 100-continue header has been set by the application through
  curl_easy_setopt with CURLOPT_HTTPHEADER, the library should set
  data->state.expect100header accordingly - the current code (in 7.19.7 at
  least) doesn't handle this properly. Martin Storsjo provided the fix!

Yang Tse (28 Nov 2009)
- Added Diffie-Hellman parameters to several test harness certificate files in
  PEM format. Required by several stunnel versions used by our test harness.

Daniel Stenberg (28 Nov 2009)
- Markus Koetter provided a polished and updated version of Chad Monroe's TFTP
  rework patch that now integrates TFTP properly into libcurl so that it can
  be used non-blocking with the multi interface and more. BLKSIZE also works.

  The --tftp-blksize option was added to allow setting the TFTP BLKSIZE from
  the command line.

Daniel Stenberg (26 Nov 2009)
- Extended and fixed the change I did on Dec 11 for the the progress
  meter/callback during FTP command/response sequences. It turned out it was
  really lame before and now the progress meter SHOULD get called at least
  once per second.

Daniel Stenberg (23 Nov 2009)
- Bjorn Augustsson reported a bug which made curl not report any problems even
  though it failed to write a very small download to disk (done in a single
  fwrite call). It turned out to be because fwrite() returned success, but
  there was insufficient error-checking for the fclose() call which tricked
  curl to believe things were fine.

Yang Tse (23 Nov 2009)
- David Byron modified Makefile.dist vc8 and vc9 targets in order to allow
  finer granularity control when generating src and lib makefiles.

Yang Tse (22 Nov 2009)
- I modified configure to force removal of the curlbuild.h file included in
  distribution tarballs for use by non-configure systems. As intended, this
  would get overwriten when doing in-tree builds. But VPATH builds would end
  having two curlbuild.h files, one in the source tree and another in the
  build tree. With the modification I introduced 5 Nov 2009 this could become
  an issue when running libcurl's test suite.

Daniel Stenberg (20 Nov 2009)
- Constantine Sapuntzakis identified a write after close, as the sockets were
  closed by libcurl before the SSL lib were shutdown and they may write to its
  socket. Detected to at least happen with OpenSSL builds.

- Jad Chamcham pointed out a bug with connection re-use. If a connection had
  CURLOPT_HTTPPROXYTUNNEL enabled over a proxy, a subsequent request using the
  same proxy with the tunnel option disabled would still wrongly re-use that
  previous connection and the outcome would only be badness.

Yang Tse (18 Nov 2009)
- I modified the memory tracking system to make it intolerant with zero sized
  malloc(), calloc() and realloc() function calls.

Daniel Stenberg (17 Nov 2009)
- Constantine Sapuntzakis provided another fix for the DNS cache that could
  end up with entries that wouldn't time-out:

  1. Set up a first web server that redirects (307) to a http://server:port
     that's down
  2. Have curl connect to the first web server using curl multi

  After the curl_easy_cleanup call, there will be curl dns entries hanging
  around with in_use != 0.

  (http://curl.haxx.se/bug/view.cgi?id=2891591)

- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
  its pkg-config file.  So -Wl stuff ended up in the .pc file, which is really
  bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in
  PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)

Kamil Dudka (15 Nov 2009)
- David Byron improved the configure script to use pkg-config to find OpenSSL
  (and in particular the list of required libraries) even if a path is given
  as argument to --with-ssl

Yang Tse (15 Nov 2009)
- I removed enable-thread / disable-thread configure option. These were only
  placebo options. The library is always built as thread safe as possible on
  every system.

Claes Jakobsson (14 Nov 2009)
- curl-config now accepts '--configure' to see what arguments was
  passed to the configure script when building curl.

Daniel Stenberg (14 Nov 2009)
- Claes Jakobsson restored the configure functionality to detect NSS when
  --with-nss is set but not "yes".

  I think we can still improve that to check for pkg-config in that path etc,
  but at least this patch brings back the same functionality we had before.

- Camille Moncelier added support for the file type SSL_FILETYPE_ENGINE for
  the client certificate. It also disable the key name test as some engines
  can select a private key/cert automatically (When there is only one key
  and/or certificate on the hardware device used by the engine)

Yang Tse (14 Nov 2009)
- Constantine Sapuntzakis provided the fix that ensures that an SSL connection
  won't be reused unless protection level for peer and host verification match.

  I refactored how preprocessor symbol _THREAD_SAFE definition is done.

Kamil Dudka (12 Nov 2009)
- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
  closed NSPR descriptor. The issue was hard to find, reported several times
  before and always closed unresolved. More info at the RH bug:
  https://bugzilla.redhat.com/534176

- libcurl-NSS now tries to reconnect with TLS disabled in case it detects
  a broken TLS server. However it does not happen if SSL version is selected
  manually. The approach was originally taken from PSM. Kaspar Brand helped me
  to complete the patch. Original bug reports:
  https://bugzilla.redhat.com/525496
  https://bugzilla.redhat.com/527771

Yang Tse (12 Nov 2009)
- I modified configure script to make the getaddrinfo function check also
  verify if the function is thread safe.

Yang Tse (11 Nov 2009)
- Marco Maggi reported that compilation failed when configured --with-gssapi
  and GNU GSS installed due to a missing mutual exclusion of header files in
  the Kerberos 5 code path. He also verified that my patch worked for him.

Daniel Stenberg (11 Nov 2009)
- Constantine Sapuntzakis posted bug #2891595
  (http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry
  in the DNS cache would linger too long if the request that added it was in
  use that long. He also provided the patch that now makes libcurl capable of
  still doing a request while the DNS hash entry may get timed out.

- Christian Schmitz noticed that the progress meter/callback was not properly
  used during the FTP connection phase (after the actual TCP connect), while
  it of course should be. I also made the speed check get called correctly so
  that really slow servers will trigger that properly too.

Kamil Dudka (5 Nov 2009)
- Dropped misleading timeouts in libcurl-NSS and made sure the SSL socket works
  in non-blocking mode.

Yang Tse (5 Nov 2009)
- I removed leading 'curl' path on the 'curlbuild.h' include statement in
  curl.h, adjusting auto-makefiles include path, to enhance portability to
  OS's without an orthogonal directory tree structure such as OS/400.

Daniel Stenberg (4 Nov 2009)
- I fixed several problems with the transfer progress meter. It showed the
  wrong percentage for small files, most notable for <1000 bytes and could
  easily end up showing more than 100% at the end. It also didn't show any
  percentage, transfer size or estimated transfer times when transferring
  less than 100 bytes.
2010-02-16 12:51:43 +00:00
..
adzap Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
album Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
album_themes Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
amaya Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
analog Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-access-referer DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-cookie DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-external DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-kerb DESTDIR support 2010-02-12 20:56:54 +00:00
ap-auth-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap-auth-mysql Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-ntlm Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-pam Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-auth-pgsql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
ap-auth-postgresql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +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 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-dtcl Give up maintainership of packages where I am still listed as MAINTAINER. 2009-08-20 15:24:58 +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 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-jk
ap-layout Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-mono recursive bump for icu shlib version change except already done. 2009-08-12 02:31:18 +00:00
ap-mp3 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-perl Update from version 1.29nb1 to 1.29nb2. 2009-06-15 17:42:04 +00:00
ap-php Add DESTDIR support. 2008-06-12 02:14:13 +00:00
ap-python Update ap-python to 2.7.11. 2009-08-30 03:08:40 +00:00
ap-rivet Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-rpaf
ap-ruby Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap-scgi Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
ap-ssl Hack this to build against Apache 1.3.42. As 1.3.42 doesn't change 2010-02-10 03:55:18 +00:00
ap-throttle
ap-xslt Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-external DESTDIR support 2010-02-12 20:56:54 +00:00
ap2-auth-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-mellon Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-mysql Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-auth-ntlm DESTDIR support 2010-02-12 20:56:54 +00:00
ap2-auth-pgsql Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
ap2-auth-radius Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-auth-xradius Use ${APXS} intead of manually constructed one. 2009-12-11 12:02:59 +00:00
ap2-bw
ap2-cband Fix DESTDIR build. 2009-12-03 17:12:42 +00:00
ap2-chroot Fix the do-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:38:14 +00:00
ap2-fastcgi Update ap-fastcgi and ap2-fastcgi to 2.4.6. 2008-10-01 10:03:11 +00:00
ap2-fcgid Updated mod_fcgid to 2.3.5. 2010-02-15 11:38:44 +00:00
ap2-jk
ap2-perl Update from version 2.04nb4 to 2.04nb5. 2009-06-15 17:38:21 +00:00
ap2-python Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-subversion Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ap2-suphp Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ap2-transform
ap2-wsgi Update to 2.5. 2009-08-31 12:42:19 +00:00
ap2-xslt2 Do not depend on the *-config unwrap phase to not leak the .buildlink 2009-11-30 18:52:33 +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 Fix HOMEPAGE and MASTER_SITES. 2009-12-24 13:18:31 +00:00
ap22-dnssd bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
ap22-vhost-ldap Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apache Update to 1.3.42, fixing CVE-2010-0010. Note: this package is now EOL 2010-02-09 07:22:06 +00:00
apache-roller Give up MAINTAINER 2009-07-17 18:00:13 +00:00
apache-tomcat6 update to the fresh release 2010-01-28 12:16:45 +00:00
apache-tomcat55 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
apache2 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apache22 Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
apachetop update master site. 2009-05-22 18:07:09 +00:00
asp2php Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
august Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
awstats Updated awstats to 6.96. 2010-02-02 11:20:29 +00:00
bannerfilter Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bins Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bkedit Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
bluefish Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
blur6ex Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
bozohttpd Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
browser-bookmarks-menu Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
cadaver Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
calamaris Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
camping Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgic Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgicc Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
cgilib Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
checkbot Replacing some dependencies to choose perl core first, because desired 2009-06-01 19:38:56 +00:00
cherokee Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
chimera Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
clearsilver Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
clearsilver-base Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
crawl Bump PKGREVISION for libevent ABI bump. 2009-08-16 15:35:43 +00:00
cronolog
curl Update to 7.20.0: 2010-02-16 12:51:43 +00:00
cvsweb Fix typo in SUBST_MESSAGE. 2009-07-25 17:29:13 +00:00
dansguardian Make it build on DragonFly. 2009-07-21 05:31:46 +00:00
dillo Update dillo to 2.2. Changes: 2010-02-14 20:19:24 +00:00
drivel Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
drraw user-destdir support 2009-07-07 16:49:05 +00:00
drupal Update www/drupal package to 5.21, fixing security problem. 2009-12-19 09:20:23 +00:00
drupal6 Update www/drupal6 package to 6.15, fixing security problem. 2009-12-19 09:29:22 +00:00
drupal6-translations Update www/drupal6-translations package to 20090926. 2009-09-29 13:47:03 +00:00
elinks Drop dependency on getext-lib. 2009-10-06 10:23:45 +00:00
emacs-w3m Convert second line of EMACS_VERSIONS_ACCEPTED to acceptable syntax. 2009-08-09 19:35:12 +00:00
emacs-w3m-snapshot Let emacs-w3m-snapshot require w3m>=0.5.2nb3 because earlier versions 2009-08-19 06:01:37 +00:00
epiphany Remove file that should have disappeared with 2.28.2 update. 2010-02-04 07:18:11 +00:00
epiphany-extensions Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
erubis Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
fcgi Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
fengoffice Update fengoffice to 1.6.2. 2010-01-26 15:36:24 +00:00
ffproxy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
firefox Don't record an exact version dependency on xulrunner. 2010-01-31 21:02:48 +00:00
firefox-bin Add checksums for Solaris 10 binary, package still doesn't build but at 2009-09-30 09:35:56 +00:00
firefox-bin-acroread Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-acroread5 Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-acroread7 Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
firefox-bin-flash Use standard location for LICENSE line (in MAINTAINER/HOMEPAGE/COMMENT 2009-05-19 08:59:00 +00:00
firefox-bin-java Pick something non-ancient for the JRE (v6 for now). 2010-02-10 22:30:51 +00:00
firefox-bin-realplayer Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
galeon Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
galway Recursive bump for libltdl 2009-12-15 21:54:17 +00:00
ganglia-webfrontend Fix version number. 2009-11-11 07:59:26 +00:00
geeklog Update www/geeklog package to 1.6.1. 2009-11-30 15:44:45 +00:00
gitweb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
gtkasp2php DESTDIR support 2010-02-12 19:37:50 +00:00
gtkhtml314 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
haskell-cgi Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
heel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
hiawatha Get rid of now unnecessary EXTRACT_OPTS_ZIP. 2009-08-25 11:57:44 +00:00
horde DESTDIR support. XXX horrible, abusive package 2010-02-15 17:52:01 +00:00
htdig +PKG_DESTDIR_SUPPORT 2009-12-17 19:35:03 +00:00
htdig-devel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
htmldoc Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
htmldoc-x11 More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
htmlfix Add PKG_DESTDIR_SUPPORT 2009-02-13 22:24:14 +00:00
htmllint Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
http_load Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ies4linux Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
ijb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ikiwiki Update to 3.20100212. From the changelog: 2010-02-13 05:53:36 +00:00
instiki user-destdir support 2009-07-07 19:10:37 +00:00
ja-trac Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
jakarta-tomcat4 user-destdir support 2009-07-07 19:07:35 +00:00
jakarta-tomcat5 Fix bash reference. Bump revision. 2010-01-08 18:53:12 +00:00
jalbum Updated www/jalbum to 8.5.3 2009-12-16 20:02:01 +00:00
kahua Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
kannel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
kazehakase Switch from gecko to webkit-gtk. (still doesn't work, but at least builds..) 2010-02-13 13:36:08 +00:00
kdewebdev3 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
kdewebdev4 Update to kde4 4.3.5 2010-01-27 10:38:38 +00:00
konq-plugins Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
lhs Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
libghttp Simply and speed up buildlink3.mk files and processing. 2009-03-20 19:23:50 +00:00
libgtkhtml bump revision because of graphics/jpeg update 2009-08-26 19:56:37 +00:00
libproxy Update to 0.3.0. Set LICENSE. Since python .py file is not installed 2009-12-15 11:00:11 +00:00
libwww apply expat patch to bundled version: 2010-01-26 18:38:26 +00:00
liferea Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
liferea-current update to 1.6.2 2010-01-22 20:59:41 +00:00
lighttpd Update to lighttpd-1.4.26: 2010-02-08 14:47:54 +00:00
links Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
links-gui Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
loggerhead Add PasteDeploy dependency. 2009-11-10 17:20:38 +00:00
lynx Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
make_album user-destdir support 2009-07-07 19:05:20 +00:00
mediawiki Added short upgrade instructions. 2009-12-07 13:03:43 +00:00
merb Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-action-args Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-activerecord Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-assets Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-builder Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-cache Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-core Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-datamapper Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-gen Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-haml Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-has-flash Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-helpers Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-mailer Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-more Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-param-protection Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-parts Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-sequel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-stories Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merb-test-unit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
merbful-authentication Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
micro_httpd user-destdir support 2009-07-07 19:05:20 +00:00
midori Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
mimetex Update mimetex to 0.70. 2008-11-05 13:25:12 +00:00
mini_httpd Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
mknmz-wwwoffle Remove kei as maintainer, he resigned. 2009-09-02 08:34:13 +00:00
mMosaic Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
mongrel Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-cluster Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-config Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-console Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mongrel-upload-progress Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
mono-xsp Mark as destdir-ready. 2009-08-29 13:49:20 +00:00
mserv-php Nuke a spurious CHMOD in do-install 2009-12-16 21:44:13 +00:00
neon Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
netscape Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions. 2009-04-09 00:48:06 +00:00
netsurf Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
nginx No negative form of --with-ipv6. 2010-02-09 21:15:34 +00:00
ns-plugger-common PKG_DESTDIR_SUPPORT 2009-12-17 19:18:35 +00:00
ns-remote Update ns-remote to 1.12: 2009-02-10 12:39:57 +00:00
nspluginwrapper Added LICENSE information. 2010-01-30 23:08:00 +00:00
nvu Remove BROKEN_IN variable. It was no maintained, and there was no 2009-08-25 12:32:54 +00:00
ocsigen Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
openjdk7-icedtea-plugin Update to openjdk7 b78 snapshot. 2010-01-15 19:18:42 +00:00
opera Add user-destdir support. 2009-08-29 13:15:54 +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.11 to version 1.21 2010-02-03 22:34:58 +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 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +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 update to use the new Module::Install infrastructure 2009-06-11 12:06:10 +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 Updating package www/p5-Apache2-AuthCookieDBI from 2.04 to 2.05 2009-08-20 18:01:58 +00:00
p5-App-Nopaste Updating www/p5-App-Nopaste from 0.17 to 0.18 2010-01-16 18:02:53 +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 Updating www/p5-Catalyst-Action-RenderView from 0.13 to 0.14 2010-02-02 15:46:27 +00:00
p5-Catalyst-Action-REST Updating www/p5-Catalyst-Action-REST from 0.78 to 0.81 2010-02-02 11:43:13 +00:00
p5-Catalyst-Authentication-Credential-HTTP Importing www/p5-Catalyst-Authentication-Credential-HTTP version 1.011 as 2010-01-27 09:25:56 +00:00
p5-Catalyst-Authentication-Credential-HTTP-Proxy Importing www/p5-Catalyst-Authentication-Credential-HTTP-Proxy version 0.06. 2010-01-27 09:39:11 +00:00
p5-Catalyst-Authentication-Store-DBIx-Class Adding license and PERL5_MODULE_TYPE to avoid AutoInstall tries installing 2010-01-27 08:47:25 +00:00
p5-Catalyst-Authentication-Store-Htpasswd Importing www/p5-Catalyst-Authentication-Store-Htpasswd version 1.003 as 2010-01-27 10:43:46 +00:00
p5-Catalyst-Component-ACCEPT_CONTEXT Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Component-InstancePerContext Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-BindLex Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-FormBuilder Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Controller-HTML-FormFu Importing www/p5-Catalyst-Controller-HTML-FormFu version 0.06001 as indirect 2010-01-26 16:06:12 +00:00
p5-Catalyst-Devel Updating www/p5-Catalyst-Devel from 1.21 to 1.26 2010-01-16 18:17:37 +00:00
p5-Catalyst-Engine-JobQueue-POE Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Manual Updating www/p5-Catalyst-Manual from 5.8001 to 5.8003 2010-01-16 21:52:03 +00:00
p5-Catalyst-Model-Adaptor Updating www/p5-Catalyst-Model-Adaptor from 0.05nb1 to 0.06 2010-02-02 11:17:08 +00:00
p5-Catalyst-Model-File Importing www/p5-Catalyst-Model-File version 0.08 as dependency of scheduled 2010-01-27 11:08:14 +00:00
p5-Catalyst-Plugin-Authentication Updating www/p5-Catalyst-Plugin-Authentication from 0.10015nb1 to 0.10016 2010-01-26 09:41:47 +00:00
p5-Catalyst-Plugin-Authentication-Store-DBIC Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Authentication-Store-RDBO Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Authorization-ACL Importing www/p5-Catalyst-Plugin-Authorization-ACL as indirect dependency 2010-01-26 11:37:33 +00:00
p5-Catalyst-Plugin-Authorization-Roles Updating www/p5-Catalyst-Plugin-Authorization-Roles from 0.07nb2 to 0.08 2009-11-21 14:19:20 +00:00
p5-Catalyst-Plugin-AutoRestart Updating www/p5-Catalyst-Plugin-AutoRestart from 0.92nb1 to 0.93 2010-02-02 11:28:01 +00:00
p5-Catalyst-Plugin-ConfigLoader Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-I18N Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-RequireSSL Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-Plugin-Server avoid pbulk dependency fallout (BROKEN alone will suffice) 2010-02-03 08:37:02 +00:00
p5-Catalyst-Plugin-Session Updating www/p5-Catalyst-Plugin-Session from 0.27 to 0.29 2009-11-21 14:22:50 +00:00
p5-Catalyst-Plugin-Session-State-Cookie Updating www/p5-Catalyst-Plugin-Session-State-Cookie from 0.14nb1 to 0.17 2009-10-24 14:50:28 +00:00
p5-Catalyst-Plugin-Session-Store-DBIC Updating www/p5-Catalyst-Plugin-Session-Store-DBIC from 0.10nb1 to 0.11 2009-10-24 14:59:46 +00:00
p5-Catalyst-Plugin-Session-Store-Delegate Updating www/p5-Catalyst-Plugin-Session-Store-Delegate from 0.04nb1 to 0.05 2009-10-24 14:58:29 +00:00
p5-Catalyst-Plugin-Session-Store-FastMmap Add missing reference to p5-Class-Data-Inheritable 2009-11-02 19:21:19 +00:00
p5-Catalyst-Plugin-Session-Store-File Updating www/p5-Catalyst-Plugin-Session-Store-File from 0.17nb1 to 0.18 2009-10-24 15:08:18 +00:00
p5-Catalyst-Plugin-StackTrace Updating www/p5-Catalyst-Plugin-StackTrace from 0.10nb1 to 0.11 2009-10-24 15:53:35 +00:00
p5-Catalyst-Plugin-Static-Simple Updating www/p5-Catalyst-Plugin-Static-Simple from 0.28 to 0.29 2010-02-02 11:46:44 +00:00
p5-Catalyst-Runtime Updating www/p5-Catalyst-Runtime from 5.80018 to 5.80019 2010-02-02 11:11:30 +00:00
p5-Catalyst-View-Excel-Template-Plus Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-Jemplate Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-JSON Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-Mason Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Catalyst-View-TT Update p5-Catalyst-View-TT from version 0.30nb1 to version 0.31. 2009-11-19 20:50:42 +00:00
p5-CatalystX-Component-Traits Updating www/p5-CatalystX-Component-Traits from 0.10nb1 to 0.14 2009-11-21 14:29:33 +00:00
p5-CatalystX-CRUD-Controller-RHTMLO Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-CRUD-View-Excel Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-CRUD-YUI Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-CatalystX-LeakChecker Updating www/p5-CatalystX-LeakChecker from 0.04nb1 to 0.05 2010-01-16 18:14:36 +00:00
p5-CGI Update to 3.49: 2010-02-07 16:02:20 +00:00
p5-CGI-Ajax PkgSrc changes: 2009-04-24 06:41:27 +00:00
p5-CGI-Application Updating package www/p5-CGI-Application from 4.21 to 4.31 2009-08-20 18:28:40 +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 Remove empty PLIST. 2009-07-22 09:34:54 +00:00
p5-CGI-Session Updating www/p5-CGI-Session from 4.41 to 4.42 2009-09-12 21:48:59 +00:00
p5-CGI-Simple pkgsrc changes: 2009-06-12 07:45:56 +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 Updating www/p5-FCGI from 0.67nb3 to 0.68 2010-01-16 22:53:54 +00:00
p5-FCGI-ProcManager Updating package www/p5-FCGI-ProcManager from 0.18nb1 to 0.19 2009-08-19 19:11:48 +00:00
p5-Handel Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +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-FormFu Importing www/p5-HTML-FormFu 0.06001 as indirect dependency of 2010-01-26 15:43:38 +00:00
p5-HTML-LinkExtractor Give up MAINTAINER 2009-07-17 18:00:13 +00:00
p5-HTML-Lint Update from version 2.04nb1 to 2.06. 2009-01-11 16:19:27 +00:00
p5-HTML-Mason Updating www/p5-HTML-Mason from 1.42nb1 to 1.44 2010-01-16 22:49:47 +00:00
p5-HTML-Parser Updating www/p5-HTML-Parser from 3.63 to 3.64 2009-11-14 12:27:12 +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-Selector-XPath Initial import of p5-HTML-Selector-XPath version 0.03 in the NetBSD 2010-02-07 06:04:23 +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 Updating www/p5-HTML-StripScripts from 1.04nb1 to 1.05 2009-11-14 12:33:38 +00:00
p5-HTML-StripScripts-Parser Updating package www/p5-HTML-StripScripts-Parser from 1.02nb1 to 1.03 2009-11-14 12:35:28 +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-TreeBuilder-LibXML Initial import of p5-HTML-TreeBuilder-LibXML version 0.11 in the 2010-02-08 20:56:44 +00:00
p5-HTML-TreeBuilder-XPath Initial import of p5-HTML-TreeBuilder-XPath version 0.11 in the 2010-02-07 16:38:49 +00:00
p5-HTML-WikiConverter Updating www/p5-HTML-WikiConverter from 0.63 to 0.68 2009-09-19 22:45:38 +00:00
p5-HTML-WikiConverter-DokuWiki DokuWiki dialect module for p5-HTML-WikiConverter 2009-07-07 08:56:50 +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 Updating www/p5-HTTP-Body from 1.05 to 1.06 2010-01-17 00:31:27 +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 pkgsrc changes: 2009-06-14 20:25:50 +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 Updating www/p5-HTTP-Lite from 2.1.6nb1 to 2.2 2009-11-21 14:36:37 +00:00
p5-HTTP-Proxy Updating package www/p5-HTTP-Proxy from 0.23 to 0.24 2009-08-19 18:48:25 +00:00
p5-HTTP-Request-AsCGI Updating www/p5-HTTP-Request-AsCGI from 0.9 to 1.2 2010-01-16 16:32:16 +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 Updating package for p5 module HTTP::Response::Encoding from 0.05 to 0.06 2009-08-09 13:06:46 +00:00
p5-HTTP-Server-Simple Updating www/p5-HTTP-Server-Simple from 0.40 to 0.41 2009-11-21 14:39:49 +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 Updating www/p5-HTTP-Server-Simple-Mason from 0.12 to 0.13 2009-11-21 14:42:41 +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 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +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 Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with 2009-06-30 00:07:09 +00:00
p5-libapreq2 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
p5-libwww Update to 5.834: 2009-12-15 13:41:44 +00:00
p5-LWP-Authen-Negotiate Updating www/p5-LWP-Authen-Negotiate from 0.06nb2 to 0.08 2009-11-21 15:03:05 +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-Online Importing www/p5-LWP-Online 1.07 as indirect dependency of upcoming 2010-01-16 15:58:53 +00:00
p5-LWP-UserAgent-Determined pkgsrc changes: 2009-05-21 10:32:13 +00:00
p5-LWPx-ParanoidAgent Updating package www/p5-LWPx-ParanoidAgent from 1.03nb1 to 1.07 2009-08-19 19:00:31 +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-Mojo Initial import of p5-Mojo version 0.999.914 (upstream version 2010-01-24 22:53:45 +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.11 to version 1.13. 2010-02-05 00:09:41 +00:00
p5-Reaction Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-Rose-HTML-Objects Updating www/p5-Rose-HTML-Objects from 0.604 to 0.606.1 2010-02-02 11:58:15 +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 Updating www/p5-Rose-HTMLx-Form-Related from 0.17 to 0.19 2010-02-02 12:11:12 +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 - Updating dependency to p5-GD-Graph3d 2009-08-17 19:11:37 +00:00
p5-Task-Catalyst-Tutorial Importing www/p5-Task-Catalyst-Tutorial as a dependency of scheduled 2010-01-27 08:02:44 +00:00
p5-Task-CatInABox Importing www/p5-Task-CatInABox version 0.03 as a dependency of scheduled 2010-02-12 19:57:35 +00:00
p5-Template-Extract - Updating dependency to p5-GD-Graph3d 2009-08-17 19:13:59 +00:00
p5-Template-Generate - Updating dependency to p5-GD-Graph3d 2009-08-17 19:15:33 +00:00
p5-Template-Multilingual PkgSrc changes: 2009-05-01 20:49:35 +00:00
p5-Template-Plugin-Clickable Removed SVR4_PKGNAME 2009-08-17 18:39:08 +00:00
p5-Template-Plugin-Clickable-Email A value of "2-clause-bsd" is now valid for variable LICENSE. 2009-10-30 16:25:34 +00:00
p5-Template-Plugin-Subst A value of "2-clause-bsd" is now valid for variable LICENSE. 2009-10-30 16:25:34 +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 Adding a bug-fix which supresses same function is installed multiple times. 2009-08-26 17:39:01 +00:00
p5-Test-HTTP-Server-Simple Updating www/p5-Test-HTTP-Server-Simple from 0.10 to 0.11 2009-11-21 14:48:07 +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 Bumping revision of packages which depend direct or indirect on 2009-09-24 06:50:10 +00:00
p5-URI Updating www/p5-URI from 1.51 to 1.52. 2010-01-16 15:25:23 +00:00
p5-URI-Escape-XS Updating www/p5-URI-Escape-XS from 0.05 to 0.06 2009-10-24 16:06:07 +00:00
p5-URI-Fetch PkgSrc changes: 2009-04-11 23:15:19 +00:00
p5-URI-Find Needs newer Module::Build than Perl has included. 2009-09-11 17:12:13 +00:00
p5-URI-FromHash This Perl module is in fact using Module::Build. Setting the correct 2009-09-17 19:03:51 +00:00
p5-VRML Bump the PKGREVISION for all packages which depend directly on perl, 2008-10-19 19:17:40 +00:00
p5-Web-Scraper Initial import of p5-Web-Scraper version 0.32 in the NetBSD Packages 2010-02-08 22:05:31 +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 Updating www/p5-WWW-Amazon-Wishlist from 2.001 to 2.006 2009-09-12 21:56:42 +00:00
p5-WWW-Curl Update to 4.11, set LICENSE. 2010-01-20 14:48:51 +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 Updating package www/p5-WWW-Mechanize from 1.58 to 1.60 2009-08-19 18:37:41 +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 Fix PLIST after unzip default flags change. Bump PKGREVISION. 2009-09-29 17:06:15 +00:00
pear-HTML_Common Update pear-HTML_Common from 1.2.3 to 1.2.5. 2010-02-06 16:07:15 +00:00
pear-HTML_Select Mark PEAR packages as DESTDIR ready. Thanks to obache@ for the backend 2010-02-04 16:36:05 +00:00
pear-HTML_TreeMenu Import PEAR::HTML_TreeMenu version 1.2.1: 2008-12-16 01:39:55 +00:00
pear-HTTP Update pear-HTTP from 1.4.0 to 1.4.1. 2010-02-06 16:07:58 +00:00
pear-HTTP_Request Update pear-HTTP_Request package from 1.3.0 to 1.4.4. 2010-02-06 16:08:48 +00:00
php-apc Update www/php-apc to latest 3.1.2 2009-07-10 19:48:32 +00:00
php-curl Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
php-eaccelerator Update eaccelerator to version 0.9.5.3. 2009-07-26 18:05:03 +00:00
plone Remove @dirrm related logic. 2009-06-14 22:57:58 +00:00
plone3 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
plone25 Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
pound Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
privoxy Fix overcomplicated install rules. Make sure to create the logfile at 2010-02-09 20:18:43 +00:00
py-beautifulsoup Add missing patches for beautifulsoup-3.1.0.1 2009-10-19 11:07:41 +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 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-curl Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
py-django Add an option for the oracle backend. 2010-02-11 13:37:44 +00:00
py-django-registration Added www/py-django-registration version 0.8a1 2010-01-16 10:53:26 +00:00
py-flup Update to flup-1.0.2: 2009-10-19 11:12:08 +00:00
py-gdata Update to 1.2.4. Set LICENSE. Replace lots of python interpreters. 2009-08-16 16:17:01 +00:00
py-genshi DEPENDS should be right after MAINTAINER block, reorder. 2010-01-27 08:46:23 +00:00
py-HTMLgen DESTDIR support. 2009-02-16 19:44:28 +00:00
py-jonpy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-mechanize Update to 0.1.11: 2009-10-11 08:32:04 +00:00
py-moin DEPENDS should be right after MAINTAINER block, reorder. 2010-01-27 08:46:23 +00:00
py-nevow Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-paste Update to 1.7.2 2009-11-10 17:08:24 +00:00
py-PasteDeploy Import PasteDeploy-1.3.3 2009-11-10 17:13:00 +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 Allow all python versions. 2010-02-10 21:10:25 +00:00
py-simpletal Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
py-swish-e Update to new master site. 2010-01-23 23:05:14 +00:00
py-uwsgi Disallow Python 2.4, it doesn't have python-config. 2010-02-15 16:19:09 +00:00
py-webpy Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
qDecoder user-destdir support 2009-07-07 19:01:16 +00:00
raggle Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
rails Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ramaze Updated to version 2009.10 2009-11-19 14:11:03 +00:00
ruby-actionpack Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ruby-activeresource Update rails packages to 2.3.5. This fixes a cross-site scripting 2009-12-01 23:24:24 +00:00
ruby-borges Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-clearsilver Update clearsilver packages to 0.10.5. 2008-10-06 01:04:28 +00:00
ruby-compass Initial import of ruby-compass version 0.8.17 in the NetBSD 2009-10-31 19:40:17 +00:00
ruby-compass-susy-plugin Initial import of ruby-compass-susy-plugin version 0.6.3 in the 2009-11-01 23:44:45 +00:00
ruby-cssmin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-fcgi Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-gnome2-gtkhtml2 Update ruby-gnome2 to 0.19.3. 2009-10-12 03:09:30 +00:00
ruby-gnome2-gtkmozembed Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
ruby-htmlsplit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-innate Imported from wip/ruby-innate 2009-11-19 14:06:44 +00:00
ruby-jsmin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-mechanize Updated ruby-mechanize to 0.9.3. 2009-12-02 14:04:22 +00:00
ruby-net-flickr Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-patron Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
ruby-rack Update ruby-rack to 1.0.1. 2009-12-02 12:44:43 +00:00
ruby-staticmatic Initial import of ruby-staticmatic version 0.10.6 in the NetBSD 2009-11-01 03:16:58 +00:00
ruby-tag Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
ruby-webunit Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
sarg Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
screws Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
seamonkey Update to seamonkey-2.0.2. 2010-01-25 14:43:20 +00:00
seamonkey-bin Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.18. 2009-09-15 09:26:07 +00:00
seamonkey-bin-flash Add DESTDIR support. 2008-06-20 01:09:05 +00:00
seamonkey-bin-java
serf Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
sitecopy Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
skipstone Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
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 Bump revision for change of PostgreSQL default version. 2010-02-10 19:34:05 +00:00
spawn-fcgi Fix socket_mode option. Bump revision. 2010-02-14 19:03:51 +00:00
SpeedyCGI Give up MAINTAINER 2009-07-17 18:00:13 +00:00
squid Make MESSAGE_SRC settable by each squid* pacakge. 2009-11-02 15:43:20 +00:00
squid27 Add a security patch described security advisory SQUID-2010_2.txt, 2010-02-14 13:27:52 +00:00
squid30 Update squid to 3.0.24 (3.0.STABLE24). 2010-02-14 13:37:02 +00:00
squid31 Update "squid31" package to version 3.1.0.16. Changes since 3.1.0.15: 2010-02-02 13:57:49 +00:00
squidGuard Add official patch-20091015, quote from Readme.Patch-20091015. 2009-10-17 01:50:38 +00:00
squidpurge user-destdir support 2009-07-07 18:56:23 +00:00
squirm user-destdir support 2009-07-07 18:54:07 +00:00
surfraw Update to 2.2.6: 2009-11-26 15:22:55 +00:00
swiftsurf user-destdir support 2009-07-07 18:54:07 +00:00
swiggle Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
swill Update from 0.1 to 0.3 2009-07-17 12:35:12 +00:00
swish-e Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
tcl-cgi user-destdir support 2009-07-07 18:53:17 +00:00
thin Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth-delicious Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thoth-flickr Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:14 +00:00
thttpd Rename internal "getline" to unbreak build on NetBSD. 2009-12-13 17:42:36 +00:00
thy use libgnutls-config.mk and libgnutls-extra-config.mk to get back TLS 2009-07-03 11:01:01 +00:00
tidy Depend on doxygen-1.5.9, which causes different file names. Adapt 2009-08-17 11:24:39 +00:00
tinyproxy Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
trac Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
typo3 Update typo3 package to 4.3.1 2010-01-14 14:59:26 +00:00
typolight Add more "used by" comments. 2009-12-23 12:51:41 +00:00
typolight26 www/typolight* work with PHP 5.2 and lator. 2009-12-23 12:53:46 +00:00
typolight26-example o Explict set WWW_FILE in Makefile. 2009-11-29 06:45:01 +00:00
typolight26-translations Move LICENSE from typolight/Makefile.common to each Makefiles for 2009-11-22 16:17:59 +00:00
typolight27 www/typolight* work with PHP 5.2 and lator. 2009-12-23 12:53:46 +00:00
typolight27-example o Explict set WWW_FILE in Makefile. 2009-11-29 06:45:01 +00:00
typolight27-translations * Add missing language files which should be added: Bosnian, Croatian, 2010-02-08 15:41:41 +00:00
typolight28 Update typolight28 package to 2.8rc2. 2009-12-24 03:21:40 +00:00
typolight28-example Importing typolight28-example, sample website for TYPOlight 2.8.RC1. 2009-12-02 16:07:54 +00:00
typolight28-translations Update typolight28-translations package 20100210. 2010-02-14 12:23:36 +00:00
urlget Support PKGMANDIR 2009-10-29 22:29:16 +00:00
urlgrabber Update HOMEPAGE and MASTER_SITES to catch up rearrange of the site. 2010-01-12 01:34:18 +00:00
varnish Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
viewvc Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
visitors Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3c-httpd Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
w3m Recursive PKGREVISION bump for jpeg update to 8. 2010-01-17 12:02:03 +00:00
w3m-img More PKGREVISION bumps of jpeg dependencies. 2010-01-24 13:26:09 +00:00
waplet Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wApua Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wdg-validate Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webalizer Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
webby Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webkit-gtk Second try at jpeg-8 recursive PKGREVISION bump. 2010-01-18 09:58:37 +00:00
weblint Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
webnew Add DESTDIR support. 2008-06-20 01:09:05 +00:00
websvn make print-PLIST turned "applescript" into "{LOWER_VENDOR}script". 2009-07-25 20:14:42 +00:00
weex Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
whisker Give up MAINTAINER 2009-07-17 18:00:13 +00:00
wiliki Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wmd PKG_DESTDIR_SUPPORT 2009-12-17 19:13:39 +00:00
wml Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
wordpress Update to 2.8.6 2009-11-12 22:05:55 +00:00
www6to4 user-destdir support 2009-07-07 18:36:12 +00:00
wwwcount Fix the do-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:32:28 +00:00
wwwoffle update master_sites. 2009-12-21 01:01:15 +00:00
zope Provide PY_COMPILE_ALL and PY_COMPILE_O_ALL to compile all Python 2009-07-08 13:55:58 +00:00
zope-ejsplitter Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope-jamailhost Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope3 Fix the post-install to include DESTDIR references - not sufficient in itself so PKG_DESTDIR_SUPPORT not turned on 2009-12-17 19:31:55 +00:00
zope29 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope210 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zope211 Convert @exec/@unexec to @pkgdir or drop it. 2009-06-14 22:00:38 +00:00
zopeedit Bump revision for PYTHON_VERSION_DEFAULT change. 2010-02-10 19:17:31 +00:00
Makefile Added www/p5-Task-CatInABox version 0.03 2010-02-12 19:57:51 +00:00