pkgsrc/www
ryoon e3b29bdf61 Update to 9.0.22
Changelog:
Tomcat 9.0.22 (markt)
Catalina

    Fix: Improve parsing of Range request headers. (markt)
    Fix: Range headers that specify a range unit Tomcat does not recognise should be ignored rather than triggering a 416 response. Based on a pull request by zhanhb. (markt)
    Fix: When comparing a date from a If-Range header, an exact match is required. Based on a pull request by zhanhb. (markt)
    Fix: Add an option to the default servlet to disable processing of PUT requests with Content-Range headers as partial PUTs. The default behaviour (processing as partial PUT) is unchanged. Based on a pull request by zhanhb. (markt)
    Fix: Improve parsing of Content-Range headers. (markt)
    Update: Update the recommended minimum Tomcat Native version to 1.2.23. (markt)

Coyote

    Fix: Remove a source of potential deadlocks when using HTTP/2 when the Connector is configured with useAsyncIO as true. (markt)
    Fix: 63523: Restore SSLUtilBase methods as protected to preserve compatibility. (remm)
    Fix: Fix typo in UTF-32LE charset name. Patch by zhanhb vi Github. (fschumacher)
    Fix: Once a URI is identified as invalid don't attempt to process it further. Based on a PR by Alex Repert. (markt)
    Fix: Fix to avoid the possibility of long poll times for individual pollers when using mutliple pollers with APR. (markt)
    Fix: Refactor the fix for 63205 so it only applies when using PKCS12 keystores as regressions have been reported with some other keystore types. (markt)

Jasper

    Add: Include file names if SMAP processor is unable to delete or rename a class file during SMAP generation. (markt)
    Update: Update to the Eclipse JDT compiler 4.12. (markt)

WebSocket

    Fix: 63521: As required by the WebSocket specification, if a POJO that is deployed as a result of the SCI scan for annotated POJOs is subsequently deployed via the programmatic API ignore the programmatic deployment. (markt)

Other

    Fix: Switch the check for terminal availability to test for stdin as using stdout does not work when output is piped to another process. Patch provided by Radosław Józwik. (markt)
    Add: Add user buildable optional modules for easier CDI 2 and JAX-RS support. Also include a new documentation page describing how to use it. (remm)

2019-06-07 Tomcat 9.0.21 (markt)
Catalina

    Add: 57287: Add file sorting to DefaultServlet (schultz)
    Fix: Fix --no-jmx flag processing, which was called after registry initialization. (remm)
    Fix: Ensure that a default request character encoding set on a ServletContext is used when calling ServletRequest#getReader(). (markt)
    Fix: Make a best efforts attempt to clean-up if a request fails during processing due to an OutOfMemoryException. (markt)
    Fix: Improve the BoM detection for static files handled by the default servlet for the rarely used UTF-32 encodings. Identified by Coverity Scan. (markt)
    Fix: Ensure that the default servlet reads the entire global XSLT file if one is defined. Identified by Coverity Scan. (markt)
    Fix: Avoid potential NullPointerException when generating an HTTP Allow header. Identified by Coverity Scan. (markt)
    Code: Add Context.createInstanceManager() for easier framework integration. (remm)
    Code: Add utility org.apache.catalina.core.FrameworkListener to allow replicating adding a Listener to context.xml in a programmatic way. (remm)
    Code: Move Container.ADD_CHILD_EVENT to before the child container start, and Container.REMOVE_CHILD_EVENT to before removal of the child from the internal child collection. (remm)
    Add: Remove any fragment included in the target path used to obtain a RequestDispatcher. The requested target path is logged as a warning since this is an application error. (markt)

Coyote

    Fix: NIO poller seems to create some unwanted concurrency, causing rare CI test failures. Add sync when processing async operation to avoid this. (remm)
    Fix: Fix concurrency issue that lead to incorrect HTTP/2 connection timeout. (remm/markt)
    Fix: Avoid useless exception wrapping in async IO. (remm)
    Fix: 63412: Security manager failure when using the async IO API from a webapp. (remm)
    Fix: Remove acceptorThreadCount Connector attribute, one accept thread is sufficient. As documented, value 2 was the only other sensible value, but without and impact beyond certain microbenchmarks. (remm)
    Fix: Avoid possible NPEs on connector stop. (remm)
    Update: Remove pollerThreadCount Connector attribute for NIO, one poller thread is sufficient. (remm)
    Add: Add async IO for APR connector for consistency, but disable it by default due to low performance. (remm)
    Fix: Avoid blocking write of internal buffer when using async IO. (remm)
    Code: Refactor async IO implementation to the SocketWrapperBase. (remm)
    Update: Refactor SocketWrapperBase close using an atomic boolean and a doClose method that subclasses will implement, with a guarantee that it will be run only once. (remm)
    Fix: Decouple the socket wrapper, which is not recycled, from the NIOx channel after close, and replace it with a dummy static object. (remm)
    Fix: Clear buffers on socket wrapper close. (remm)
    Fix: NIO2 failed to properly close sockets on connector stop. (remm)
    Update: Reduce the default for maxConcurrentStreams on the Http2Protocol from 200 to 100 to align with typical defaults for HTTP/2 implementations. (markt)
    Update: Reduce the default HTTP/2 header list size from 4GB to 32kB to align with typical HTTP/2 implementations. (markt)
    Add: Add support for same-site cookie attribute. Patch provided by John Kelly. (markt)
    Fix: Drop legacy NIO double socket close (close channel, then close socket). (remm)
    Fix: Fix HTTP/2 end of stream concurrency with async. (remm)
    Fix: Correct a bug in the stream flushing code that could lead to multiple threads processing the stream concurrently which in turn could cause errors processing the stream. (markt)

Cluster

    Fix: 62841: Refactor the DeltaRequest serialization to reduce the window during which the DeltaSession is locked and to remove a potential cause of deadlocks during serialization. (markt)
    Fix: 63441: Further streamline the processing of session creation messages in the DeltaManager to reduce the possibility of a session update message being processed before the session has been created. (markt)

WebSocket

   d: Expand the explanation of how deprecated TLS configuration attributes are converted to the new TLS configuration style. (markt)

Tribes

    Fix: Treat NoRouteToHostException the same way as SocketTimeoutException when checking the health of group membaven packaging. (remm)
    Fix: 63403: Fix TestHttp2InitialConnection test failures when running with a non-English locale. (kkolinko)
    Fix: Add Graal JreCompat, and use it to disable JMX and URL stream handlers. (remm)
    Add: Expand the coverage and Expand the coverage and quality of the Simplified Chinese translations provided with Apache Tomcat. Includes contributions by 諵. (markt)
    Fix: Use the test command to check for terminal availability rather than the tty command since the tty based te

    Fix: Fix some edge cases where the docBase was not being set using a canonical path which in turn meant resource URLs were not being constructed as expected. (markt)
    Fix: Fix a potential resource leak when executing CGI scripts from a WAR file. Identified by Coverity scan. (markt)
    Fix: Fix a potential concurrency issue in the StringCache identified by Coverity scan. (markt)
    Fix: Fix a potential concurrency issue in the main Sendfile thread of the APR connector. Identified by Coverity scan. (markt)
    Fix: Fix a potential resource leak when running a web application from a WAR file. Identified by Coverity scan. (markt)
    Fix: Fix a potential resource leak on some exception paths in the DataSourceRealm. Identified by Coverity scan. (markt)
    Fix: Fix a potential resource leak on an exception path when parsing JSP files. Identified by Coverity scan. (markt)
    Fix: Fix a potential resource leak when a JNDI lookup returns an object of an in compatible class. Identified by Coverity scan. (markt)
    Code: Refactor ManagerServlet to avoid loading classes when filtering JNDI resources for resources of a specified type. (markt)
    Fix: 63324: Refactor the CrawlerSessionManagerValve so that the object placed in the session is compatible with session serialization with mem-cached. Patch provided by Martin Lemanski. (markt)
    Add: 63358: Expand the throwOnFailure support in the Connector to include the adding of a Connector to a running Service. (markt)
    Add: 63361: Add a new method (Registry.disableRegistry()) that can be used to disable JMX registration of Tomcat components providing it is called before the first component is registered. (markt)
    Fix: Avoid OutOfMemoryErrors and ArrayIndexOutOfBoundsExceptions when accessing large files via the default servlet when resource caching has been disabled. (markt)
    Fix: Avoid a NullPointerException when a Context is defined in server.xml with a docBase but not the optional path. (markt)
    Fix: 63333: Override the isAvailable() method in the JAASRealm so that only login failures caused by invalid credentials trigger account lock out when the LockOutRealm is in use. Patch provided by jchobantonov. (markt)
    Fix: Add --no-jmx flag to allow disabling JMX in startup.Tomcat.main. (remm)

Coyote

    Fix: The useAsyncIO boolean attribute on the Connector element value now defaults to true. (remm)
    Fix: Possible HTTP/2 connection leak issue when using async with NIO. (remm)
    Fix: Fix socket close discrepancies for NIO, now the wrapper close is used everywhere except for socket accept problems. (remm)
    Fix: Implement poller timeout when using async IO with NIO. (remm)
    Fix: Avoid creating and using object caches when they are disabled. (remm)
    Fix: When running on newer JREs that don't support SSLv2Hello, don't warn that it is not available unless explicitly configured. (markt)
    Fix: Change default value of pollerThreadCount of NIO to 1. (remm)
    Fix: Associate BlockPoller thread name with its NIO connector for better readability. (remm)
    Fix: The async HTTP/2 frame parser should tolerate concurrency so clearing shared buffers before attempting a read is not possible. (remm)
    Update: Update the HTTP/2 connection preface and initial frame reading to be asynchronous instead of blocking IO. (remm)
    Code: Refactor Hostname validation to improve performance. Patch provided by Uwe Hees. (markt)
    Update: Add additional NIO2 style read and write methods closer to core NIO2, for possible use with an asynchronous workflow like CompletableFuture. (remm)
    Fix: Expand HTTP/2 timeout handling to include connection window exhaustion on write. This is the fix for CVE-2019-10072. (markt)

Jasper

    Fix: 63359: Ensure that the type conversions used when converting from strings for jsp:setProperty actions are correctly implemented as per section JSP.1.14.2.1 of the JSP 2.3 specification. (markt)

Other

    Fix: 63335: Ensure that stack traces written by the OneLineFormatter are fully indented. The entire stack trace is now indented by an additional TAB character. (markt)
    Fix: 63370: Message files (LocalStrings_*.properties) of the examples webapp not converted to ascii. (woonsan)
    Add: Expand the coverage and quality of the French translations provided with Apache Tomcat. (remm)
    Add: Expand the coverage and quality of the Japanese translations provided with Apache Tomcat. Includes contributions by motohashi.yuki. (markt)
    Add: Expand the coverage and quality of the Czech translations provided with Apache Tomcat. Includes contributions by Arnošt Havelka. (markt)
    Fix: When using the OneLineFormatter, don't print a blank line in the log after printing a stack trace. (markt)
    Update: Update the internal fork of Apache Commons FileUpload to 41e4047 (2019-04-24) pick up some enhancements. (markt)
    Update: Update the internal fork of Apache Commons DBCP 2 to dcdbc72 (2019-04-24) to pick up some clean-up and enhancements. (markt)
    Update: Update the internal fork of Apache Commons Pool 2 to 0664f4d (2019-04-30) to pick up some enhancements and bug fixes. (markt)

2019-04-13 Tomcat 9.0.19 (markt)
Catalina

    Fix: Fix wrong JMX registration regression in 9.0.18. (remm)

Coyote

    Update: Add vectoring for NIO in the base and SSL channels. (remm)
    Add: Add asynchronous IO from NIO2 to the NIO connector, with support for the async IO implementations for HTTP/2 and Websockets. The useAsyncIO boolean attribute on the Connector element allows enabling use of the asynchronous IO API. (remm)

Other

    Fix: Ensure that the correct files are included in the source distribution for javacc based parsers depending on whether jjtree is used or not. (markt)
    Fix: Ensure that text files in the source distribution have the correct line endings for the target platform. (markt)

not released Tomcat 9.0.18 (markt)
Catalina

    Fix: 63196: Provide a default (X-Forwarded-Proto) for the protocolHeader attribute of the RemoteIpFilter and RemoteIpValve. (markt)
    Fix: 63235: Refactor Charset cache to reduce start time. (markt)
    Fix: 63249: Use a consistent log level (WARN) when logging the failure to register or deregister a JMX Bean. (markt)
    Fix: 63249: Use a consistent log level (ERROR) when logging the LifecycleException associated with the failure to start or stop a component. (markt)
    Fix: When the SSI directive fsize is used with an invalid target, return a file size of - rather than 1k. (markt)
    Fix: 63251: Implement a work-around for a known JRE bug (JDK-8194653) that may cause a dead-lock when Tomcat starts. (markt)
    Fix: 63275: When using a RequestDispatcher ensure that HttpServletRequest.getContextPath() returns an encoded path in the dispatched request. (markt)
    Update: Add optional listeners for Server/Listener, as a slight variant of a standard listener. The difference is that loading is not fatal when it fails. This would allow adding example configuration to the standard server.xml if deemed useful. Storeconfig will not attempt to persist the new listener. (remm)
    Fix: 63286: Document the differences in behaviour between the LogFormat directive in httpd and the pattern attribute in the AccessLogValve for %D and %T. (markt)
    Fix: 63287: Make logging levels more consistent for similar issues of similar severity. (markt)
    Fix: 63311: Add support for https URLs to the local resolver within Tomcat used to resolve standard XML DTDs and schemas when Tomcat is configured to validate XML configuration files such as web.xml. (markt)
    Fix: Encode the output of the SSI printenv command. This is the fix for CVE-2019-0221. (markt)
    Code: Use constants for SSI encoding values. (markt)
    Add: When the CGI Servlet is configured with enableCmdLineArguments set to true, limit the encoded form of the individual command line arguments to those values allowed by RFC 3875. This restriction may be relaxed by the use of the new initialisation parameter cmdLineArgumentsEncoded. (markt)
    Add: When the CGI Servlet is configured with enableCmdLineArguments set to true, limit the decoded form of the individual command line arguments to known safe values when running on Windows. This restriction may be relaxed by the use of the new initialisation parameter cmdLineArgumentsDecoded. This is the fix for CVE-2019-0232. (markt)

Coyote

    Fix: Fix bad interaction between NIO2 async read API and the regular read. (remm)
    Fix: Refactor NIO2 write pending strategy for the classic IO API. (remm)
    Fix: Restore original maxConnections default for NIO2 as the underlying close issues have been fixed. (remm)
    Fix: Harmonize NIO2 isReadyForWrite with isReadyForRead code. (remm)
    Fix: When using a JSSE TLS connector that supported ALPN (Java 9 onwards) and a protocol was not negotiated, Tomcat failed to fallback to HTTP/1.1 and instead dropped the connection. (markt)
    Fix: Correct a regression in the TLS connector refactoring in Tomcat 9.0.17 that prevented the use of PKCS#8 private keys with OpenSSL based connectors. (markt)
    Fix: Fix NIO2 SSL edge cases. (remm)
    Fix: When performing an upgrade from HTTP/1.1 to HTTP/2, ensure that any query string present in the original HTTP/1.1 request is passed to the HTTP/2 request processing. (markt)
    Fix: When Tomcat writes a final response without reading all of an HTTP/2 request, reset the stream to inform the client that the remaining request body is not required. (markt)

Jasper

    Add: Add support for specifying Java 11 (with the value 11) as the compiler source and/or compiler target for JSP compilation. (markt)
    Add: Add support for specifying Java 12 (with the value 12) and Java 13 (with the value 13) as the compiler source and/or compiler target for JSP compilation. If used with an ECJ version that does not support these values, a warning will be logged and the latest supported version will used. Based on a patch by Thomas Collignon. (markt)

Web applications

    Fix: 63184: Expand the SSI documentation to provide more information on the supported directives and their attributes. Patch provided by nightwatchcyber. (markt)
    Add: Add a note to the documentation about the risk of DoS with poorly written regular expressions and the RewriteValve. Patch provided by salgattas. (markt)

jdbc-pool

    Fix: Improved maxAge handling. Add support for age check on idle connections. Connection that expired reconnects rather than closes it. Patch provided by toby1984. (kfujino)
    Fix: 63320: Ensure that StatementCache caches statements that include arrays in arguments. (kfujino)

Other

    Update: Update to the Eclipse JDT compiler 4.10. (markt)
    Add: Expand the coverage and quality of the Spanish translations provided with Apache Tomcat. Includes contributions by Ulises Gonzalez Horta. (markt)
    Add: Expand the coverage and quality of the Czech translations provided with Apache Tomcat. Includes contributions by Arnošt Havelka. (markt)
    Add: Expand the coverage and quality of the Chinese translations provided with Apache Tomcat. Includes contributions by winsonzhao and wjt. (markt)
    Add: Expand the coverage and quality of the Russian translations provided with Apache Tomcat. (kkolinko)
    Add: Expand the coverage and quality of the Japanese translations provided with Apache Tomcat. (kfujino)
    Add: Expand the coverage and quality of the Korean translations provided with Apache Tomcat. (woonsan)
    Add: Expand the coverage and quality of the German translations provided with Apache Tomcat. (fschumacher)
    Add: Expand the coverage and quality of the French translations provided with Apache Tomcat. (remm)
2019-07-15 14:32:15 +00:00
..
adzap adzap: depend on p5-Perl4-CoreLibs. 2018-11-20 09:26:11 +00:00
aipo
album Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
album_themes Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
analog Sort PLIST files. 2018-01-01 22:29:15 +00:00
ap-auth-kerb apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
ap-auth-mellon Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ap-authnz-crowd Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ap-mono Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
ap-php revbump after updating textproc/icu 2018-12-09 18:51:58 +00:00
ap-rpaf
ap2-auth-mellon Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ap2-encoding apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
ap2-fcgid apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
ap2-jk Updated www/ap2-jk to 1.2.43 2018-08-25 01:57:43 +00:00
ap2-limitipconn Follow some redirects. 2019-06-24 10:36:50 +00:00
ap2-mkdir Updated www/ap2-mkdir to 0.4 2018-05-09 12:19:13 +00:00
ap2-passenger Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ap2-perl Recursive bump for perl5-5.28.0 2018-08-22 09:42:51 +00:00
ap2-python apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
ap2-subversion Update to 1.12.0 2019-05-27 16:10:07 +00:00
ap2-upload Updated www/ap2-upload to 0.8 2018-01-08 09:04:50 +00:00
ap2-xsendfile *: update email for fhajny 2018-12-15 21:12:18 +00:00
ap22-auth-ofba apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
ap22-authz-ldap *: update email for fhajny 2018-12-15 21:12:18 +00:00
ap22-dnssd Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
ap24-authnz-external Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
apache-roller
apache-tomcat6
apache-tomcat7 Update to 7.0.93 2019-03-26 20:56:23 +00:00
apache-tomcat8 Update to 8.0.53 2018-07-25 21:20:02 +00:00
apache-tomcat9 Update to 9.0.22 2019-07-15 14:32:15 +00:00
apache-tomcat55
apache-tomcat85 Update to 8.5.43 2019-07-15 14:28:24 +00:00
apache24 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
apachetop Update to 0.18.4 2018-05-08 08:17:36 +00:00
asp2php
august
aws PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
aws-demos all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
awstats all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
bannerfilter all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
bins Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
bkedit
bluefish fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
blur6ex
bozohttpd update to bozohttpd 20190228. changes include: 2019-06-11 09:41:01 +00:00
browser-bookmarks-menu fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
c-icap Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
c-icap-modules
cadaver cadaver: comment out dead sites 2017-11-26 10:41:01 +00:00
caddy Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
calamaris Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
camping
cgic
cgicc
cgilib
cgit
checkbot Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cherokee fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
clearsilver Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
clearsilver-base Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
cliqz cliqz: update to 1.27.4 2019-06-29 13:42:18 +00:00
clisp-fastcgi Replaced $(ROUND) with ${CURLY} variable references. 2018-01-01 18:16:35 +00:00
contao www/contao: clean up 2019-04-09 13:07:42 +00:00
contao35 www/contao35: update to 3.5.40 2019-04-14 09:23:06 +00:00
cppcms PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
crawl *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
cronolog Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
cvsweb Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
dansguardian Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
davical Update www/davical to v1.1.8 2019-05-10 12:25:04 +00:00
deforaos-surfer Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
dillo Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
drivel *: recursive bump for gtkspell enchant -> enchant2 change. 2019-07-13 15:41:55 +00:00
drraw drraw: SUBST_SED -> SUBST_VARS. 2019-02-12 13:20:46 +00:00
drupal7 www/drupal7: update to 7.67 2019-05-11 06:48:43 +00:00
drupal8 www/drupal8: update to 8.6.16 2019-05-11 06:59:05 +00:00
e2guardian Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
elinks elinks: Support OpenSSL 1.1. Based on the FreeBSD Ports patches. 2019-07-04 12:15:04 +00:00
eliom Updated www/eliom to version 6.7.0. 2019-05-13 11:55:44 +00:00
emacs-w3m Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
emacs-w3m-snapshot emacs-w3m-snapshot: Don't quote ${EGREP}, it might be "grep -E". 2018-10-31 14:56:40 +00:00
epiphany Recursive rebvump from devel/nss 2019-05-05 22:49:45 +00:00
epiphany-extensions Recursive rebvump from devel/nss 2019-05-05 22:49:45 +00:00
fcgi Sort PLIST files. 2018-01-01 22:29:15 +00:00
fcgiwrap fcgiwrap: Appease -Werror=implicit-fallthrough. 2018-11-28 16:06:35 +00:00
fengoffice
ffproxy
firefox firefox: note new cbindgen and NSS minimum dependencies 2019-07-12 03:52:13 +00:00
firefox-l10n Update to 68.0 2019-07-11 11:34:31 +00:00
firefox52 firefox52: This gets a sun audio too. 2019-06-14 08:11:34 +00:00
firefox52-l10n update firefox HOMEPAGE (http -> https) 2019-05-25 20:17:04 +00:00
firefox60 Update to 60.7.2 2019-06-21 16:38:02 +00:00
firefox60-l10n Update to 60.7.2 2019-06-21 16:39:34 +00:00
gallery Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
gallery2 *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
ganglia-webfrontend www/ganglia-webfrontend: Fix bug in cluster view 2018-09-21 14:48:08 +00:00
geckodriver geckodriver: update to 0.23.0 2019-01-05 03:01:30 +00:00
geeklog all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
gitea gitea: Update to 1.8.3 2019-06-19 10:04:10 +00:00
gitweb git: updated to 2.19.0 2018-09-13 10:56:42 +00:00
gnurl www/gnurl: updated to 7.64.0 (from ng0@ in wip) 2019-03-05 00:40:37 +00:00
go-ace Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-cssmin Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-gogs-client Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-gohtml Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-libsass Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-minify Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-parse Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-spritewell Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-tocss Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-toml-burntsushi Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-toml-pelletier Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-urlesc Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
go-webhooks Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
goaccess goaccess: fix build on SunOS 2017-09-22 22:18:01 +00:00
grafana grafana: updated to 6.2.2 2019-06-06 16:09:19 +00:00
gtkasp2php
gtkhtml314 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
gwt
h2o Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
haskell-cgi
heel www/heel: update to 3.2.1 2018-12-17 15:11:47 +00:00
hiawatha Sort PLIST files. 2018-01-01 22:29:15 +00:00
horde all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
hs-HTTP
htdavlock Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
htdig htdig: Specify c++03 to avoid conflicts with std::bind. 2018-01-26 13:33:26 +00:00
htmlcxx
htmldoc Add p11-kit to gnutls/bl3.mk and bump dependencies. 2018-04-17 22:29:31 +00:00
htmldoc-x11
htmllint all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
http-parser http-parser: update to 2.9.2. 2019-04-17 09:42:45 +00:00
http_load
hugo Follow some http->https redirects. 2019-07-08 10:36:25 +00:00
ies4linux Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
ijb
ikiwiki As of 3.51, searchFile() is no longer provided in highlight's Perl 2019-05-27 03:53:31 +00:00
jalbum sun-jdk6, sun-jre6: remove 2019-05-02 08:36:09 +00:00
jetty7
jetty9 Sort PLIST files. 2018-01-01 22:29:15 +00:00
kahua
kannel Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
kdewebdev4 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
kdewebkit kde: update KDE Frameworks to 5.57.0 2019-04-25 21:10:45 +00:00
khtml kde: update KDE Frameworks to 5.57.0 2019-04-25 21:10:45 +00:00
kjs kde: update KDE Frameworks to 5.57.0 2019-04-25 21:10:45 +00:00
kjsembed kde: update KDE Frameworks to 5.57.0 2019-04-25 21:10:45 +00:00
lhs
libecap
libghttp Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libgtkhtml Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
libmediawiki Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
libmicrohttpd Update libmicrohttpd to 0.9.65. 2019-07-13 16:19:27 +00:00
libmrss Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
libproxy libproxy: Specify c++03 to avoid conflicts with std::bind. 2018-01-26 13:28:27 +00:00
libpsl PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
librest Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
librest07 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
libsass libsass: Seems to fail with gcc7 unless cmath is included 2019-07-09 20:31:33 +00:00
libwww libwww: unbreak on linux. 2018-09-13 12:33:28 +00:00
liferea Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
lighttpd lighttpd: Remove duplicate PLIST entry. 2019-05-29 11:02:22 +00:00
links links{,-gui}: Update to 2.19 2019-04-07 19:49:12 +00:00
links-gui links{,-gui}: Update to 2.19 2019-04-07 19:49:12 +00:00
litmus litmus: comment out dead sites. 2017-11-26 10:50:00 +00:00
llgal Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
loggerhead PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
logswan logswan: Update to 2.0.3 2019-01-17 21:56:09 +00:00
lua-curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
lynx Use https for all invisible-island.net HOMEPAGEs. 2019-06-22 11:37:13 +00:00
make_album Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
matcha-sns apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
mediawiki Update to 1.33.0 2019-07-06 14:57:07 +00:00
micro_httpd Updated www/micro_httpd to 20140814 2019-07-08 21:20:28 +00:00
midori Set USE_GCC_RUNTIME=yes, bump PKGREVISION 2019-06-11 15:09:00 +00:00
mimetex
mini_httpd Update to 1.27 2017-09-29 07:57:38 +00:00
mknmz-wwwoffle Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
mMosaic Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
mongrel Comment out dead sites. 2017-09-04 18:00:49 +00:00
mongrel-cluster Comment out dead sites. 2017-09-04 18:00:49 +00:00
mongrel-config Comment out dead sites. 2017-09-04 18:00:49 +00:00
mongrel-console Comment out dead sites. 2017-09-04 18:00:49 +00:00
mongrel-upload-progress Comment out dead sites. 2017-09-04 18:00:49 +00:00
mono-xsp Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
moodle Update to 3.7 2019-05-25 15:19:30 +00:00
mserv-php all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
nanoblogger
nanoblogger-extra
neon Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
netscape
netsurf Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
nghttp2 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
nginx nginx: updated to 1.16.0 2019-05-06 09:38:48 +00:00
nginx-devel nginx-devel: updated to 1.17.0 2019-06-06 16:33:19 +00:00
nostromo Nostromo aka nhttpd is a simple, fast and secure HTTP server. 2018-02-11 13:56:21 +00:00
ns-plugger-common
ns-remote
nspluginwrapper Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ocaml-cohttp Added package www/ocaml-cohttp, an OCaml http library. 2019-07-01 15:48:53 +00:00
ocaml-curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ocaml-http Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
ocaml-uri Added www/ocaml-uri, a URI/URL parsing library for OCaml. 2019-03-19 14:26:38 +00:00
ocsigen ocsigen: remove patches that are not in distinfo 2019-01-31 09:13:08 +00:00
ocsigen-i18n Updated www/ocsigen-i18n to version 3.4.0. 2019-05-13 17:18:43 +00:00
ocsigen-start Updated www/ocsigen-start to version 1.7.0. 2019-05-13 12:17:11 +00:00
ocsigen-toolkit Updated www/ocsigen-toolkit to version 2.1.0. 2019-05-13 11:59:04 +00:00
opera *: gd.tuwien.ac.at/ftp.tuwien.ac.at is gone, remove it from various mastersites 2018-04-21 13:38:04 +00:00
opera-plugins
otter-browser otter-browser: update to 1.0.01 2019-05-16 23:22:14 +00:00
p5-Alien-GvaScript Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Any-URI-Escape Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-AnyEvent-HTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-AnyEvent-HTTPD Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-AnyEvent-ReverseHTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-AnyEvent-SCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-ASP Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Apache-DBILogConfig Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-DBILogger Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Apache-Filter Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Apache-Gallery *: add SHA512 checksums to distinfo 2019-04-27 11:33:02 +00:00
p5-Apache-LogFormat-Compiler Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-Session Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-Session-SharedMem Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-Session-Wrapper Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-SSI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache-Test Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache2-AuthCASSimple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache2-AuthCookie Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Apache2-AuthCookieDBI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-App-Nopaste Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Captcha-reCAPTCHA Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Captcha-reCAPTCHA-Mailhide Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Action-RenderView Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Action-REST Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Authentication-Credential-HTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Authentication-Credential-HTTP-Proxy Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Authentication-Store-DBIx-Class Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Authentication-Store-Htpasswd Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Component-ACCEPT_CONTEXT Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Component-InstancePerContext Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Controller-BindLex Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Controller-FormBuilder Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Controller-HTML-FormFu Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Devel Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-DispatchType-Regex Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Engine-HTTP-Prefork Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Engine-JobQueue-POE Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Engine-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Manual Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Model-Adaptor Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Model-File Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Authentication Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Authentication-Store-RDBO Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Plugin-Authorization-ACL Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Authorization-Roles Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-AutoRestart Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-ConfigLoader Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-I18N Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Plugin-RequireSSL Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Plugin-Server Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Session Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Session-State-Cookie Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Session-Store-DBIC Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Plugin-Session-Store-Delegate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Session-Store-FastMmap Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Session-Store-File Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-Plugin-StackTrace Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-Static-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Plugin-StatusMessage Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-Runtime Update to 5.90123 2019-01-04 06:20:27 +00:00
p5-Catalyst-View-Excel-Template-Plus Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-View-Jemplate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-View-JSON Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Catalyst-View-Mason Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Catalyst-View-TT Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-Component-Traits Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-CRUD-Controller-REST Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-CRUD-Controller-RHTMLO Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-CRUD-View-Excel Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-CRUD-YUI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CatalystX-LeakChecker Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI p5-CGI: HOMEPAGE 404s rather than redirecting. fix it. 2019-07-01 22:01:19 +00:00
p5-CGI-Ajax Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Application Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Application-Plugin-DBH Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Application-Plugin-Session Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-CGI-Application-Plugin-ValidateRM Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Application-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Compile Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Cookie-Splitter Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Cookie-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Emulate-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Fast Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-FastTemplate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-FormBuilder Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-CGI-Kwiki Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-CGI-Lite Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Minimal Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-ProgressBar Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Session Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Session-Driver-memcached Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Session-Plugin-Redirect Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Session-Serialize-yaml Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CGI-Struct Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Cookie-Baker Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Cookie-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CSS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CSS-Minifier-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CSS-Squish Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-CSS-Tiny Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Dancer Update to 1.3512 2019-04-04 06:37:08 +00:00
p5-Dancer-Session-Cookie Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Dancer2 Update to 0.208000 2019-07-02 07:40:26 +00:00
p5-Data-URIEncode Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-FCGI Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-FCGI-Client Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-FCGI-ProcManager Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-File-Mork Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Handel Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Hijk Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-HTML-CalendarMonthSimple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Clean Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-Display Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Element-Extended Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Email-Obfuscate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Entities-Interpolate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Escape Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-FillInForm Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Form Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Format Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-FormFu Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-LinkExtractor Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Lint Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Mason Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-HTML-Mason-PSGIHandler Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Parser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-PrettyPrinter Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-Prototype Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Prototype-Useful Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Quoted Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Restrict Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-RewriteAttributes Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Scrubber Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-Selector-XPath Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-SimpleParse Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-StickyQuery Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-HTML-Stream Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Strip Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-StripScripts Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-StripScripts-Parser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Table Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-TableExtract Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Tagset Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Template Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTML-Template-Compiled Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Template-Expr Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Template-Pro Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Tiny Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-TokeParser-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-Tree Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-TreeBuilder-LibXML Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-TreeBuilder-XPath Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-WikiConverter Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTML-WikiConverter-DokuWiki Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-HTMLObject Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTTP-Async Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Body Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Cache-Transparent Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-CookieJar Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-HTTP-CookieMonster Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Cookies Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Daemon Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Date Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-DAV Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Entity-Parser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-GHTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-HeaderParser-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Headers-Fast Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Lite Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Message Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-MultiPartParser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Negotiate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-OAI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Parser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Parser-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Proxy Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Request-AsCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Request-Form Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Response-Encoding Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-EV Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-Authen Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-Kwiki Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-Mason Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-Recorder Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Server-Simple-Static Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Thin Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Tiny Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Tiny-Multipart Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTP-Tinyish Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-HTTPD-User-Manage Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-I18N-AcceptLanguage Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-JavaScript-Minifier-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-JavaScript-Value-Escape Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Jemplate Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-JSON-RPC Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Kwiki Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Archive-Cvs Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Archive-Rcs Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-BreadCrumbs Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Edit-RequireUserName Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Favorites Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-HtmlBlocks Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Icons-Gnome Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-ModPerl Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-NewPage Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Notify-Mail Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-PagePrivacy Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-ParagraphBlocks Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-PreformattedBlocks Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-RecentChanges Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Revisions Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Scode Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Search Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Simple-Server-HTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Kwiki-UserName Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-UserPreferences Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Users-Remote Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Weather Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Wikiwyg Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Kwiki-Zipcode Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-libapreq Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-libapreq2 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-libwww Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-Authen-Negotiate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-LWP-Authen-Wsse Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-ConsoleLogger Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-MediaTypes Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-Online Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-Protocol-https Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-Protocol-Net-Curl Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
p5-LWP-Protocol-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWP-UserAgent-Determined Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWPx-ParanoidAgent Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-LWPx-TimedHTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-MasonX-Request-WithApacheSession Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Mojolicious p5-Mojolicious: update to 7.94. 2018-09-02 07:55:30 +00:00
p5-Net-Curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
p5-Net-FastCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Net-HTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-ParallelUserAgent Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-App-Proxy Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Handler-AnyEvent-HTTPD Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Handler-AnyEvent-ReverseHTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Handler-AnyEvent-SCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Handler-SCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Auth-Digest Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-ConsoleLogger Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Debug Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Deflater Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-File-Sass Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-FixMissingBodyInRedirect Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Header Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-JSConcat Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-MethodOverride Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Plack-Middleware-RemoveRedundantBody Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-ReverseProxy Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Session Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Middleware-Test-StashWarnings Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Test-Agent Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Plack-Test-ExternalServer Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Pod-POM-Web Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-POE-Component-Server-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-POE-Component-Server-SimpleHTTP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-POE-Component-Server-SOAP Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-POE-Filter-HTTP-Parser Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Reaction Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Role-REST-Client Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Rose-HTML-Objects Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Rose-HTMLx-Form-Field-Autocomplete Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Rose-HTMLx-Form-Field-Boolean Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Rose-HTMLx-Form-Field-PopUpMenuNumeric Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Rose-HTMLx-Form-Field-Serial Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Rose-HTMLx-Form-Related Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Rose-URI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Router-Simple Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-SCGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Session-Storage-Secure Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Starlet Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Starman Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-SVN-Web Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Task-Catalyst-Tutorial Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Task-CatInABox Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Tatsumaki Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Extract Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Generate Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Template-Multilingual Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Plugin-Clickable Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Plugin-Clickable-Email Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Plugin-Subst Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Provider-Encoding Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Stash-EscapeHTML Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Template-Stash-HTML-Entities Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-Template-Timer Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Template-Toolkit Update to 2.28 2018-11-24 09:27:02 +00:00
p5-Template-Toolkit-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-HTTP-Server-Simple Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-LWP-UserAgent Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-WWW-Declare Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-WWW-Mechanize Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-WWW-Mechanize-Catalyst Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Test-WWW-Mechanize-PSGI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-Twiggy Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-db Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-Escape-XS Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-Fetch Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-Find Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-FromHash Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-Nested Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-URI-Query Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-URI-ws Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-VRML Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
p5-Web-Scraper Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WordPress-XMLRPC Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Amazon-Wishlist Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-CSRF Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
p5-WWW-Facebook-API Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Form-UrlEncoded Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Mechanize Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Mechanize-Cached Follow some remaining search.cpan.org redirects. 2019-07-01 21:35:32 +00:00
p5-WWW-Mechanize-FormFiller Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Mechanize-GZip Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Mechanize-Shell Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Mechanize-Timed Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Pastebin-PastebinCom-Create Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Pastebin-RafbNet-Create Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-RobotRules Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
p5-WWW-Shorten Update packages using a search.cpan.org HOMEPAGE to metacpan.org. 2019-06-30 20:14:13 +00:00
paros paros: fix HOMEPAGE, set LICENSE 2017-11-06 13:33:48 +00:00
passenger Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
pear-HTML_Common
pear-HTML_Select
pear-HTML_TreeMenu
pear-HTTP Use https for pear.php.net. 2019-07-03 07:28:21 +00:00
pear-HTTP_Request
pear-HTTP_Request2
php-apcu Update php-apcu to 5.1.16. From Michael Moll via Github pull request. 2019-02-05 18:58:02 +00:00
php-apcu4
php-apcu_bc Drop support for php70 2019-01-14 13:06:10 +00:00
php-basercms www/php-basercms: update to 3.0.16 2018-12-17 15:56:32 +00:00
php-concrete5 PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
php-curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
php-fpm *: update email for fhajny 2018-12-15 21:12:18 +00:00
php-glpi Update to GLPI v9.4.3, with security and bug fixes. 2019-07-02 12:23:41 +00:00
php-http Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
php-http3 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
php-ja-wordpress Follow some redirects. 2017-09-03 08:53:04 +00:00
php-nextcloud Update to 16.0.3 2019-07-11 12:05:34 +00:00
php-owncloud PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
php-phalcon PHP_VERSIONS_ACCEPTED clean up 2018-12-15 17:05:29 +00:00
php-phrasea2
php-piwigo Sorted PLIST. 2017-12-31 21:55:18 +00:00
php-propro Reset maintainer 2017-09-16 19:26:41 +00:00
php-propro2 Drop support for php70 2019-01-14 13:06:10 +00:00
php-soycms php-soycms: follow redirect 2018-01-14 10:19:38 +00:00
php-tidy pkgsrc: reset PKGREVISION 2017-10-27 08:49:00 +00:00
php-tiki6 apache22: remove, it was eol'd in June 2017 2018-01-01 10:23:04 +00:00
php-tt-rss Follow some redirects. 2017-09-03 08:53:04 +00:00
php-tt-rss-fever-plugin php-tt-rss-fever-plugin: update HOMEPAGE and MASTER_SITES 2017-10-09 08:21:24 +00:00
php-uploadprogress
phraseanet phraseanet: move PHP_VERSIONS_ACCEPTED before inclusion of phpversion.mk 2018-02-21 12:24:44 +00:00
phraseanet-indexer
pound Update to 2.8. From the changelog: 2018-08-26 22:35:45 +00:00
privoxy all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
pup Revbump all Go packages after go112 update. 2019-05-27 15:18:17 +00:00
py-aiohttp Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-asgiref py-asgiref: updated to 3.1.4 2019-07-08 07:36:57 +00:00
py-autobahn py-autobahn: updated to 19.7.1 2019-07-08 07:49:07 +00:00
py-beautifulsoup Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-beautifulsoup4 py-beautifulsoup4: updated to 4.7.1 2019-01-08 09:30:44 +00:00
py-betamax py-betamax: update to 0.8.1. 2018-04-17 10:45:05 +00:00
py-bleach py-bleach: updated to 3.1.0 2019-01-21 12:23:39 +00:00
py-blosxom Make sure the readmore plugin produces valid html - browsers are not 2019-05-07 14:26:06 +00:00
py-bottle py-bottle: updated to 0.12.17 2019-07-03 19:52:53 +00:00
py-cfscrape py-cfscrape: updated to 2.0.7 2019-06-17 21:03:11 +00:00
py-channels py-channels: updated to 2.2.0 2019-05-06 10:26:17 +00:00
py-cheroot py-cheroot: updated to 6.5.5 2019-05-21 08:36:32 +00:00
py-cherrypy py-cherrypy: updated to 18.1.2 2019-07-03 19:59:47 +00:00
py-cherrypy17 py-cherrypy17: updated to 17.4.0 2018-10-02 11:22:03 +00:00
py-clearsilver fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-ClientForm fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-cloudfiles Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-cookies Add py-cookies-2.2.1: 2017-09-29 14:33:38 +00:00
py-curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
py-daphne py-daphne: updated to 2.3.0 2019-05-06 10:24:25 +00:00
py-django py-django: updated to 1.11.22 2019-07-01 18:23:52 +00:00
py-django-admin-rangefilter py-django-admin-rangefilter: updated to 0.3.15 2019-04-29 07:49:45 +00:00
py-django-admin-sortable2 py-django-admin-sortable2: updated to 0.7.1 2019-04-29 07:51:24 +00:00
py-django-appconf
py-django-appmedia fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-django-celery-beat py-django-celery-beat: updated to 1.4.0 2019-01-07 12:59:35 +00:00
py-django-classy-tags
py-django-cms py-django-cms: updated to 3.5.3 2018-11-20 17:13:32 +00:00
py-django-cmsplugin_gallery py-django-cmsplugin_gallery: updated to 1.0.1 2018-04-07 20:09:37 +00:00
py-django-contrib-comments py-django-contrib-comments: updated to 1.9.1 2019-03-10 15:28:24 +00:00
py-django-cors-headers py-django-cors-headers: updated to 3.0.2 2019-05-29 21:07:14 +00:00
py-django-countries py-django-countries: updated to 5.3.3 2019-03-18 12:39:19 +00:00
py-django-easy-thumbnails py-django-easy-thumbnails: updated to 2.5 2018-01-11 13:50:39 +00:00
py-django-extensions py-django-extensions: updated to 2.1.9 2019-06-18 08:02:35 +00:00
py-django-filer py-django-filer: mark as not for python-2.7 2019-05-14 06:21:42 +00:00
py-django-filter py-django-filter: updated to 2.1.0 2019-01-22 09:37:49 +00:00
py-django-formtools Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-django-import-export py-django-import-export: updated to 1.2.0 2019-01-10 09:26:32 +00:00
py-django-inline-ordering
py-django-js-asset py-django-js-asset: updated to 1.2.2 2019-02-21 16:25:13 +00:00
py-django-kronos
py-django-mptt py-django-mptt: updated to 0.10.0 2019-05-13 15:58:44 +00:00
py-django-photologue Needs pip. 2018-09-25 20:22:54 +00:00
py-django-polymorphic py-django-polymorphic: updated to 2.0.3 2018-10-07 07:13:14 +00:00
py-django-registration py-django-registration: typo in DESCR 2018-10-30 07:13:54 +00:00
py-django-rest-framework-proxy Revert wrong import 2017-08-21 15:43:40 +00:00
py-django-reversion py-django-reversion: updated to 2.0.13 2018-02-02 08:08:10 +00:00
py-django-sekizai
py-django-sortedm2m py-django-sortedm2m: added version 1.5.0 2018-03-05 13:59:47 +00:00
py-django-south
py-django-sql-explorer py-django-sql-explorer: updated to 1.1.2 2018-10-03 10:47:20 +00:00
py-django-tagging
py-django-tastypie py-django-tastypie: updated to 0.14.2 2018-09-11 07:51:47 +00:00
py-django-timezone-field Use https for github. 2019-07-03 07:19:03 +00:00
py-django-treebeard py-django-treebeard: updated to 4.3 2018-04-17 07:19:00 +00:00
py-django2 py-django2: updated to 2.2.3 2019-07-01 18:26:22 +00:00
py-django14 Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-djangocms-admin-style py-djangocms-admin-style: updated to 1.3.0 2019-01-29 08:45:43 +00:00
py-djangocms-attributes-field py-djangocms-attributes-field: updated to 1.0.0 2018-12-13 21:20:38 +00:00
py-djangocms-audio Added PYTHON_VERSIONS_INCOMPATIBLE=27 2019-05-15 11:40:26 +00:00
py-djangocms-column py-djangocms-column: added version 1.9.0 2018-12-16 14:06:51 +00:00
py-djangocms-file Added PYTHON_VERSIONS_INCOMPATIBLE=27 2019-05-15 11:40:26 +00:00
py-djangocms-flash
py-djangocms-googlemap Added PYTHON_VERSIONS_INCOMPATIBLE=27 2019-05-15 11:40:26 +00:00
py-djangocms-icon py-djangocms-icon: added version 1.2.0 2018-12-16 14:05:36 +00:00
py-djangocms-inherit py-djangocms-inherit: updated to 0.2.2 2018-11-20 18:45:35 +00:00
py-djangocms-link py-djangocms-link: updated to 2.3.1 2018-12-22 09:16:33 +00:00
py-djangocms-picture Added PYTHON_VERSIONS_INCOMPATIBLE=27 2019-05-15 11:40:26 +00:00
py-djangocms-style py-djangocms-style: updated to 2.1.0 2018-11-20 18:48:56 +00:00
py-djangocms-teaser
py-djangocms-text-ckeditor py-djangocms-text-ckeditor: updated to 3.7.0 2018-12-13 21:34:34 +00:00
py-djangocms-video Added PYTHON_VERSIONS_INCOMPATIBLE=27 2019-05-15 11:40:26 +00:00
py-djangorestframework py-djangorestframework: updated to 3.9.4 2019-05-13 15:52:13 +00:00
py-drf-nested-routers py-drf-nested-routers: updated to 0.91 2018-10-11 10:23:32 +00:00
py-feedgen
py-feedgenerator
py-filebrowser_safe py-filebrowser_safe: updated to 0.5.0 2018-10-26 09:23:31 +00:00
py-flask py-flask: updated to 1.1.1 2019-07-13 09:28:58 +00:00
py-flask-admin py-flask-admin: updated to 1.5.3 2018-12-22 09:30:10 +00:00
py-flask-api py-flask-api: added version 1.1 2019-06-17 20:56:58 +00:00
py-flask-assets
py-flask-babel py-flask-babel: updated to 0.12.2 2018-12-14 08:52:22 +00:00
py-flask-babelex
py-flask-bootstrap py-flask-bootstrap: update to 3.3.7.1 2017-10-23 15:27:19 +00:00
py-flask-caching py-flask-caching: updated to 1.7.2 2019-05-29 20:40:56 +00:00
py-flask-common py-flask-common: updated to 0.3.0 2018-12-14 10:47:37 +00:00
py-flask-cors py-flask-cors: updated to 3.0.8 2019-06-10 08:55:42 +00:00
py-flask-debugtoolbar py-flask-debugtoolbar: updated to 0.10.1 2019-06-10 08:58:40 +00:00
py-flask-flatpages py-flask-flatpages: updated to 0.7.1 2019-05-19 08:05:47 +00:00
py-flask-frozen Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-flask-jwt-extended py-flask-jwt-extended: updated to 3.20.0 2019-07-05 07:57:02 +00:00
py-flask-limiter py-flask-limiter: updated to 1.0.1 2018-01-03 07:46:56 +00:00
py-flask-login py-flask-login: updated to 0.4.1 2017-12-12 09:38:54 +00:00
py-flask-mail Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-flask-principal Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-flask-rest py-flask-rest: updated to 1.3 2018-01-02 10:36:19 +00:00
py-flask-restful py-flask-restful: updated to 0.3.7 2018-12-21 21:06:30 +00:00
py-flask-restplus PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
py-flask-script py-flask-script: update to 2.0.6 2017-10-02 13:51:13 +00:00
py-flask-security Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-flask-sqlalchemy py-flask-sqlalchemy: updated to 2.4.0 2019-05-19 08:07:54 +00:00
py-flask-sslify Reset maintainer 2017-09-16 19:26:41 +00:00
py-flask-testing py-flask-testing: updated to 0.7.1 2018-01-05 08:22:32 +00:00
py-flask-uploads Update the Python HOMEPAGEs that I missed earlier. 2019-07-09 23:02:28 +00:00
py-flask-user py-flask-user: fix pasto in DEPENDS 2019-04-30 05:57:33 +00:00
py-flask-webpack
py-flask-wtf
py-flup py-flup: updated to 1.0.3 2018-09-05 08:18:23 +00:00
py-FormEncode py-FormEncode: updated to 1.3.1 2017-10-27 15:47:31 +00:00
py-furl py-furl: updated to 1.2.1 2018-09-24 10:10:31 +00:00
py-gdata fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-genshi py-genshi: updated to 0.7.1 2019-03-04 12:04:22 +00:00
py-google-api-python-client py-google-api-python-client: depend on py-google-auth; re-enable Python 2.7; use TEST_DEPENDS 2019-07-02 12:06:13 +00:00
py-google-apitools py-google-apitools: updated to 0.5.30 2019-07-02 10:08:19 +00:00
py-graphite-web Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-grappelli_safe py-grappelli_safe: updated to 0.5.2 2019-07-03 19:55:56 +00:00
py-gunicorn Follow some http->https redirects. 2019-07-08 10:36:25 +00:00
py-h2
py-h11 py-h11: updated to 0.9.0 2019-05-31 17:37:17 +00:00
py-HTMLgen Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-http-parser Reset maintainer 2017-09-16 19:26:41 +00:00
py-http_ece www/py-http_ece: Import http_ece-1.0.5 2018-07-31 16:44:21 +00:00
py-httpbin py-httpbin: updated to 0.7.0 2018-05-12 08:19:51 +00:00
py-httpie py-httpie: updated to 1.0.2 2018-11-30 11:28:55 +00:00
py-httplib2 py-httplib2: updated to 0.13.0 2019-06-10 08:34:04 +00:00
py-httptools py-httptools: updated to 0.0.13 2019-03-25 08:56:23 +00:00
py-hyperframe py-hyperframe: updated to 5.2.0 2019-05-02 08:37:52 +00:00
py-hyperlink py-hyperlink: updated to 19.0.0 2019-05-30 09:34:38 +00:00
py-idna py-idna: update to 2.8. 2018-12-10 11:03:10 +00:00
py-idna_ssl Unbreak scan stage. 2018-08-28 13:44:00 +00:00
py-jonpy fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-landslide py-landslide: updated to 1.1.6 2019-07-02 04:19:59 +00:00
py-livereload py-livereload: updated to 2.6.1 2019-05-31 17:34:34 +00:00
py-MechanicalSoup py-MechanicalSoup: updated to 0.11.0 2018-12-03 19:59:32 +00:00
py-mechanize py-mechanize: update to 0.4.2. 2019-04-17 09:48:23 +00:00
py-meinheld py-meinheld: Add upstream pull request link to patches. 2017-11-28 12:47:28 +00:00
py-meld3
py-mezzanine py-mezzanine: updated to 4.3.1 2018-10-26 09:27:09 +00:00
py-mod_wsgi py-mod_wsgi: updated to 4.6.7 2019-07-03 19:50:33 +00:00
py-model_mommy py-model_mommy: updated to 1.6.0 2018-07-04 09:07:45 +00:00
py-moin fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-nbconvert py-nbconvert: updated to 5.5.0 2019-06-14 14:49:12 +00:00
py-nbformat py-nbformat: update to 4.4.0 2017-10-17 18:30:02 +00:00
py-nevow py-nevow: updated to 0.14.4 2018-06-19 12:12:25 +00:00
py-notebook py-notebook: updated to 5.7.8 2019-04-25 13:19:48 +00:00
py-parsel py-parsel: updated to 1.5.1 2018-11-15 09:53:33 +00:00
py-paste py-paste: updated to 3.0.8 2019-03-10 13:54:40 +00:00
py-PasteDeploy py-PasteDeploy: updated to 2.0.1 2018-12-14 13:29:28 +00:00
py-PasteScript Comment out dead sites. 2017-09-04 18:00:49 +00:00
py-pelican Follow some redirects. 2017-09-03 08:53:04 +00:00
py-pylint-django py-pylint-django: updated to 2.0.10 2019-07-08 07:41:44 +00:00
py-pystache
py-python-digest Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-python-mimeparse Reset maintainer 2017-09-16 19:26:41 +00:00
py-python3-digest Reset maintainer 2017-09-16 19:26:41 +00:00
py-pywebdav fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-raven py-raven: updated to 6.10.0 2019-02-18 11:44:22 +00:00
py-recaptcha Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-robobrowser Use https for readthedocs.io. 2019-07-09 11:35:14 +00:00
py-Routes
py-rss2gen
py-sanic Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-scgi Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-scrapy py-scrapy: updated to 1.6.0 2019-01-31 09:07:46 +00:00
py-selenium py-selenium: Skip Linux shared libraries for SSP checks too. 2018-10-19 15:24:50 +00:00
py-simpletal Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-soupsieve py-soupsieve: updated to 1.9.2 2019-07-06 22:49:00 +00:00
py-sparqlwrapper py-sparqlwrapper: update to 1.8.0 2017-10-07 11:14:42 +00:00
py-static
py-swiftclient py-swiftclient: BUILD_DEPENDS on py-pbr 2018-09-27 22:29:32 +00:00
py-swish-e fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-terminado py-terminado: updated to 0.8.2 2019-04-04 07:26:25 +00:00
py-test-django py-test-django: updated to 3.5.1 2019-07-01 11:02:31 +00:00
py-test-httpbin py-test-httpbin: updated to 1.0.0 2019-02-18 11:47:11 +00:00
py-tornado Forget about Python 3.4 2019-05-02 09:27:09 +00:00
py-trytond-web-user Reset maintainer 2017-09-16 19:26:41 +00:00
py-trytond-webdav Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-twill Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-uliweb fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-urllib3 Use https for readthedocs.io. 2019-07-09 11:35:14 +00:00
py-URLObject py-URLObject: update to 2.4.3 2017-09-28 04:58:47 +00:00
py-uwsgi py-uwsgi: fix build on SunOS 2019-05-05 17:55:34 +00:00
py-uwsgitop py-uwsgitop: updated to 0.11 2019-01-15 22:15:37 +00:00
py-w3lib py-w3lib: updated to 1.20.0 2019-01-15 23:05:37 +00:00
py-waitress py-waitress: updated to 1.3.0 2019-07-03 20:36:51 +00:00
py-webassets
py-webcolors Comment out dead sites. 2017-09-04 18:00:49 +00:00
py-WebOb py-WebOb: updated to 1.8.5 2019-01-05 00:17:07 +00:00
py-webpy fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
py-websocket-client py-websocket-client: updated to 0.56.0 2019-03-21 10:18:14 +00:00
py-websockets py-websockets: updated to 7.0 2018-11-06 14:31:48 +00:00
py-WebTest py-WebTest: updated to 2.0.33 2019-02-15 13:01:22 +00:00
py-werkzeug py-werkzeug: updated to 0.15.4 2019-05-23 12:00:48 +00:00
py-werkzeug-docs py-werkzeug: updated to 0.15.4 2019-05-23 12:00:48 +00:00
py-whitenoise py-whitenoise: updated to 4.1.2 2018-12-03 19:31:52 +00:00
py-WSGIProxy2 py-WSGIProxy2: updated to 0.4.6 2019-02-26 11:27:17 +00:00
py-wsproto py-wsproto: updated to 0.14.1 2019-05-31 20:57:05 +00:00
py-wstools py-wstools: added version 0.4.8 2018-04-12 10:24:34 +00:00
py-wtforms py-wtforms: Update to 2.2.1. 2018-11-12 12:25:51 +00:00
py-wtforms-alchemy Reset maintainer 2017-09-16 19:26:41 +00:00
py-wtforms-components Reset maintainer 2017-09-16 19:26:41 +00:00
py-wtforms-recaptcha Reset maintainer 2017-09-16 19:26:41 +00:00
py-wtforms-test Reset maintainer 2017-09-16 19:26:41 +00:00
py-yarl Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
py-zope.proxy Use https for github. 2019-07-03 07:19:03 +00:00
qDecoder
R-curl Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
raggle
ramaze
rekonq Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ruby-actioncable51 www/ruby-actioncable51: update to 5.1.6.2 2019-04-14 10:23:18 +00:00
ruby-actioncable52 www/ruby-actioncable52: update to 5.2.3 2019-04-14 10:33:01 +00:00
ruby-actionpack42 www/ruby-actionpack42: update to 4.2.11.1 2019-04-14 10:14:25 +00:00
ruby-actionpack51 www/ruby-actionpack51: update to 5.1.6.2 2019-04-14 10:22:51 +00:00
ruby-actionpack52 www/ruby-actionpack52: update to 5.2.3 2019-04-14 10:32:37 +00:00
ruby-actionview42 www/ruby-actionview42: update to 4.2.11.1 2019-04-14 10:13:39 +00:00
ruby-actionview51 www/ruby-actionview51: update to 5.1.6.2 2019-04-14 10:22:11 +00:00
ruby-actionview52 www/ruby-actionview52: update to 5.2.3 2019-04-14 10:31:52 +00:00
ruby-borges Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-capybara *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-clearsilver Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
ruby-coffee-rails www/ruby-coffee-rails: add package version 4.2.2 2019-03-03 15:45:40 +00:00
ruby-compass www/ruby-compass: update dependencies 2019-03-16 14:17:20 +00:00
ruby-compass-core www/ruby-compass-core: update dependency to ruby-sass34 2019-02-24 16:24:55 +00:00
ruby-compass-import-once www/ruby-compass-import-once: update dependency to ruby-sass34 2019-02-24 16:26:21 +00:00
ruby-compass-susy-plugin
ruby-cookiejar
ruby-crass www/ruby-crass: update to 1.0.3 2018-05-06 02:25:43 +00:00
ruby-css-parser Update ruby-css-parser to 1.6.0. 2017-09-10 16:17:12 +00:00
ruby-cssmin
ruby-csspool
ruby-div
ruby-em-http-request
ruby-em-websocket www/ruby-em-websocket: add missing dependency 2018-03-21 14:14:49 +00:00
ruby-erubis
ruby-faraday www/ruby-faraday: update to 0.15.3 2018-09-23 16:51:55 +00:00
ruby-faraday_middleware www/ruby-faraday_middleware: update to 0.12.2 2017-09-18 01:07:42 +00:00
ruby-faye-websocket
ruby-fcgi
ruby-gnome2-webkit-gtk ruby-gnome2: update to 3.3.6. 2019-03-21 08:42:21 +00:00
ruby-gnome2-webkit-gtk2 ruby-gnome2: update to 3.3.6. 2019-03-21 08:42:21 +00:00
ruby-htmlsplit Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-http ruby-http: update to 3.3.0. 2018-04-29 14:58:29 +00:00
ruby-http-cookie
ruby-http-form_data www/ruby-http-form_data: update to 2.1.1 2018-09-23 16:52:58 +00:00
ruby-http_parser.rb
ruby-http_router cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTED 2017-09-19 16:36:07 +00:00
ruby-httpclient
ruby-innate
ruby-jekyll *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-jekyll-archives *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-jekyll-coffeescript www/ruby-jekyll-coffeescript: update to 1.1.1 2018-03-13 17:46:30 +00:00
ruby-jekyll-feed *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-jekyll-gist www/ruby-jekyll-gist: update to 1.5.0 2018-03-13 17:39:48 +00:00
ruby-jekyll-minima *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-jekyll-paginate
ruby-jekyll-sass-converter www/ruby-jekyll-sass-converter: update to 1.5.2 2018-03-13 17:08:37 +00:00
ruby-jekyll-seo-tag *: remove references to ruby 2.3 2019-04-15 06:11:32 +00:00
ruby-jekyll-watch www/ruby-jekyll-watch: update to 2.0.0 2018-03-13 17:14:44 +00:00
ruby-jquery-rails www/ruby-jquery-rails: fix DEPENDS format 2019-03-05 22:35:31 +00:00
ruby-jsmin
ruby-liquid
ruby-loofah www/ruby-loofah: update to 2.2.3 2018-11-01 16:11:45 +00:00
ruby-mechanize www/ruby-mechanize: update to 2.7.6 2018-09-23 16:53:58 +00:00
ruby-multipart-post
ruby-mustermann www/ruby-mustermann: update to 1.0.3 2018-09-23 16:55:04 +00:00
ruby-net-http-digest_auth
ruby-net-http-persistent ruby-net-http-persistent: Adjust ruby-connection_pool dependency pattern 2019-07-08 16:26:39 +00:00
ruby-ntlm-http Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-padrino www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-admin www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-cache www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-contrib cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTED 2017-09-19 16:36:07 +00:00
ruby-padrino-core www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-gen www/ruby-padrino-gen: switch to depends on ruby-bundler1 2019-03-05 07:52:19 +00:00
ruby-padrino-helpers www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-mailer www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-padrino-support www/ruby-padrino: update to 0.14.4 2019-02-06 15:03:07 +00:00
ruby-patron Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
ruby-puma www/ruby-puma: update to 3.12.0 2018-09-23 16:55:59 +00:00
ruby-pygments.rb Omit mentions of python 34 and 35, after those were removed. 2019-04-26 13:13:41 +00:00
ruby-rack www/ruby-rack: update to 2.0.6 2019-02-03 15:51:31 +00:00
ruby-rack-cache www/ruby-rack-cache: update to 1.8.0 2018-09-23 17:03:33 +00:00
ruby-rack-contrib www/ruby-rack-contrib: update to 2.1.0 2019-02-03 15:57:27 +00:00
ruby-rack-protection www/ruby-rack-protection: update to 2.0.4 2018-09-23 17:06:28 +00:00
ruby-rack-rewrite
ruby-rack-ssl
ruby-rack-test www/ruby-rack-test: fix dependency 2019-03-03 16:48:19 +00:00
ruby-rack-test06 www/ruby-rack-test06: re-add ruby-rack-test 0.6.3 2019-03-03 14:35:21 +00:00
ruby-rack14
ruby-rack16 www/ruby-rack16: update to 1.6.11 2019-02-03 15:53:03 +00:00
ruby-rails-deprecated_sanitizer lang/ruby: replace RUBY_RAILS_SUPPORTED to RUBY_RAILS_ACCEPTED 2018-03-18 14:21:19 +00:00
ruby-rails-html-sanitizer www/ruby-rails-html-sanitizer: update to 1.0.4 2018-03-23 14:06:32 +00:00
ruby-rails42 www/ruby-rails42: update to 4.2.11.1 2019-04-14 10:16:19 +00:00
ruby-rails51 www/ruby-rails51: update to 5.1.6.2 2019-04-14 10:25:59 +00:00
ruby-rails52 www/ruby-rails52: update to 5.2.3 2019-04-14 10:36:34 +00:00
ruby-raindrops Update ruby-raindrops to 0.19.0. 2017-09-10 16:20:33 +00:00
ruby-rest-client
ruby-robots Use https for github. 2019-07-03 07:19:03 +00:00
ruby-rouge www/ruby-rouge: update to 3.2.1 2018-09-23 16:57:00 +00:00
ruby-sass www/ruby-sass: update to 3.7.3 2019-02-24 16:18:52 +00:00
ruby-sass-listen www/ruby-sass-listen: update dependency to ruby-rb-inotify 2019-03-16 14:14:48 +00:00
ruby-sass-rails www/ruby-sass-rails: add package version 5.0.7 2019-02-24 16:03:44 +00:00
ruby-sass34 www/ruby-sass34: update to 3.4.25 2019-02-24 16:22:26 +00:00
ruby-sawyer
ruby-selenium-webdriver www/ruby-selenium-webdriver: update to 3.141.0 2019-01-20 14:59:32 +00:00
ruby-sinatra www/ruby-sinatra: update to 2.0.5 2019-02-06 14:54:35 +00:00
ruby-sinatra-contrib www/ruby-sinatra-contrib: drop dependency to activesupport 2019-03-03 17:36:06 +00:00
ruby-staticmatic
ruby-tag Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-unicorn www/ruby-unicorn: update to 5.4.1 2018-09-23 17:01:05 +00:00
ruby-url_mount www: allow use of ruby25 2018-01-08 22:09:48 +00:00
ruby-webrobots Follow some redirects. 2017-09-04 18:08:18 +00:00
ruby-websocket www/ruby-websocket: update to 1.2.8 2018-09-23 17:02:04 +00:00
ruby-websocket-driver www/ruby-websocket-driver: update to 0.7.0 2017-09-18 01:11:36 +00:00
ruby-websocket-extensions ruby-websocket-extensions: update to 0.1.3. 2018-02-18 05:46:58 +00:00
ruby-webunit Comment out dead sites. 2017-09-04 18:00:49 +00:00
sassc sassc: updated to 3.6.1 2019-07-01 19:15:02 +00:00
screws Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
seamonkey seamonkey: This gets the newer get_position too. 2019-06-14 13:26:18 +00:00
seamonkey-l10n Include xpi.mk from firefox52 directory 2018-11-18 07:16:48 +00:00
serf self: catch up with scons update; support building with python 3 2019-01-02 17:25:05 +00:00
shibboleth-sp Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
siege all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
sitecopy
snarf Follow some redirects. 2017-09-04 18:08:18 +00:00
snownews snownews: Support OpenSSL 1.1. 2019-07-07 18:13:23 +00:00
SOGo Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
SOGo3 Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
spawn-fcgi
spdylay
SpeedyCGI Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
sqtop Reset maintainer 2017-09-16 19:26:41 +00:00
squid3 Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
squidanalyzer Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
squidclamav Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
squidGuard Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
squidpurge Comment out dead sites. 2017-09-04 18:00:49 +00:00
squidview *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
squirm
stagit www/stagit: import stagit-0.9.2. 2019-06-19 10:04:58 +00:00
surfraw Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
swiftsurf Revbumps associated with update of lang/ocaml. 2018-11-12 16:10:16 +00:00
swiggle *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
swill
swish-e Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
tcl-cgi Sort PLIST files. 2018-01-01 22:29:15 +00:00
termtter Fix PLIST 2017-09-10 17:39:34 +00:00
thin Update thin to 1.7.2. 2017-09-10 16:19:05 +00:00
thoth
thoth-delicious
thttpd all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
tidy tidy: Backport a patch from upstream to address CVE-2017-17497 2018-10-13 11:14:38 +00:00
tinyproxy all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
trac trac: update to 1.2.3 2019-06-11 05:30:23 +00:00
trafficserver Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
tscrape tscrape: Update to 0.2 2019-05-10 09:19:37 +00:00
typo3_62 Follow some redirects. 2017-09-03 08:53:04 +00:00
uhttpmock Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
urlget
urlgrabber fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
varnish PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
viewvc all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
vimb vimb: Do not crash when opening a new tab via context menu 2019-05-26 20:25:13 +00:00
visitors Sort PLIST files. 2018-01-01 22:29:15 +00:00
w3 emacs22*, emacs23*, emacs24*: remove unmaintained emacs versions 2017-09-29 12:40:26 +00:00
w3c-httpd *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
w3m Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
w3m-img
waplet Sort PLIST files. 2018-01-01 22:29:15 +00:00
wApua Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
wdg-validate Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
webalizer all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
webby Comment out dead sites. 2017-09-04 18:00:49 +00:00
webkit-gtk webkit-gtk: Update to 2.24.3 2019-07-02 10:48:08 +00:00
webkit24-gtk fix some whitespace, mostly introduced in the previous 2019-04-26 14:12:31 +00:00
webkit24-gtk3 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
weblint Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
webnew Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
websvn all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
weex
whisker Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
wiliki
wmd
wml Recursive bump for perl5-5.28.0 2018-08-22 09:43:40 +00:00
wordpress all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
wslay wslay: updated to 1.1.0 2018-06-24 09:15:44 +00:00
www6to4 Comment out dead sites. 2017-09-06 10:40:25 +00:00
wwwcount Sort PLIST files. 2018-01-01 22:29:15 +00:00
wwwoffle all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
yahttp Recursive revbump from boost-1.70.0 2019-07-01 04:07:44 +00:00
yaws yaws: fix PLIST 2018-09-27 21:16:40 +00:00
z-push Add share/z-push to INSTALLATION_DIRS. Use REAL_ROOT_USER as pkglint suggests. 2019-01-28 14:33:52 +00:00
zopeedit PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
Makefile Added ocaml-cohttp to Makefile SUBDIRs 2019-07-01 15:49:47 +00:00