<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/devel/apache-ant, branch pkgsrc_2008Q2</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2008Q2</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2008Q2'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2008-05-25T21:42:20Z</updated>
<entry>
<title>Explicitly add pax dependency in those Makefiles that use it (or have</title>
<updated>2008-05-25T21:42:20Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2008-05-25T21:42:20Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=7622068693aac7291caeacb4e6c439b5b70d4984'/>
<id>urn:sha1:7622068693aac7291caeacb4e6c439b5b70d4984</id>
<content type='text'>
patches to add it). Drop pax from the default USE_TOOLS list.
Make bsdtar the default for those places that wanted gtar to extract
long links etc, as bsdtar can be built of the tree.
</content>
</entry>
<entry>
<title>Mechanical changes to add DESTDIR support to packages that install</title>
<updated>2008-03-03T17:45:33Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2008-03-03T17:45:33Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=7a1142123798f48c48fc2d1fe38690a6b94d1df7'/>
<id>urn:sha1:7a1142123798f48c48fc2d1fe38690a6b94d1df7</id>
<content type='text'>
their files via a custom do-install target.
</content>
</entry>
<entry>
<title>Fixed some pkglint warnings and some other stylistic things that are not</title>
<updated>2007-02-15T14:20:54Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2007-02-15T14:20:54Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=e28bfab4084baa0796282e5105c78e80e0c536dc'/>
<id>urn:sha1:e28bfab4084baa0796282e5105c78e80e0c536dc</id>
<content type='text'>
yet in pkglint.
</content>
</entry>
<entry>
<title>Update devel/apache-ant to 1.7.0</title>
<updated>2007-01-16T11:03:38Z</updated>
<author>
<name>tonio</name>
<email>tonio</email>
</author>
<published>2007-01-16T11:03:38Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=200347b69587305e92a53fe0e2a25a090818abd0'/>
<id>urn:sha1:200347b69587305e92a53fe0e2a25a090818abd0</id>
<content type='text'>
Changes that could break older environments:
-------------------------------------------

* Initial support for JDK 6 (JSR 223) scripting.
  &lt;*script*&gt; tasks will now use javax.scripting if BSF is
  not available, or if explicitly requested by using
  a "manager" attribute.
* The -noproxy option which was in the previous 1.7 alpha and beta
  releases has been removed. It is the default behavior and not needed.
* Removed launcher classes from nodeps jar.
* &lt;classconstants&gt; filter reader uses ISO-8859-1 encoding to read
  the java class file. Bugzilla report 33604.
* Defer reference process. Bugzilla 36955, 34458, 37688.
  This may break build files in which a reference was set in a target which was
  never executed. Historically, Ant would set the reference early on, during parse
  time, so the datatype would be defined. Now it requires the reference to have
  been in a bit of the build file which was actually executed. If you get
  an error about an undefined reference, locate the reference and move it somewhere
  where it is used, or fix the depends attribute of the target in question to
  depend on the target which defines the reference/datatype.
* &lt;script&gt; and &lt;scriptdef&gt; now set the current thread context.
* Unrestrict the dbvendor names in the websphere element of the ejbjar task.
* &lt;env&gt; nested element in &lt;java&gt;, &lt;exec&gt; and others is now case-insensitive
  for windows OS. Bugzilla Report 28874.
* Removed support for xalan1 completely. Users of Xalan1 for Ant builds will
  have to stay at ant 1.6.5 or upgrade to xalan2.
* Use org.apache.log4j.Logger instead of org.apache.log4j.Category.
  Category has been deprecated for ~2 years and has been removed from
  the log4j code.  Logger was introduced in log4j 1.2 so users of
  log4j 1.1 and log4j 1.0 need to upgrade to a newer version of log4j.
* build.sysclasspath now also affects the bootclasspath handling of
  spawned Java VMs.  If you set build.sysclasspath to anything other
  than "ignore" (or leave it unset, since "ignore" is the default when
  it comes to bootclasspath handling), then the bootclasspath of the
  VM running Ant will be added to the bootclasspath you've specified.
* The &lt;java fork="false"&gt; now as per default installs a security manager
  using the default permissions. This is now independent of the
  failonerror attribute.
* &lt;signjar&gt; now notices when the jar and signedjar are equal, and switches
  to the same dependency logic as when signedjar is omitted. This may break
  something that depended upon signing in this situation. However, since
  invoking the JDK jarsigner program with -signedjar set to the source jar
  actually crashes the JVM on our (Java1.5) systems, we don't think any
  build files which actually worked will be affected by the change.
* &lt;signjar&gt; used to ignore a nested fileset when a jar was also provided as an
  attribute, printing a warning message; now it signs files in the fileset.
* An improved method of handling timestamp granularity differences between
  client and server was added to the &lt;ftp&gt; task.  FTP servers typically
  have HH:mm timestamps whereas local filesystems have HH:mm:ss timestamps.
  Previously, this required tweaking with the timediffmillis attribute
  which also was used to handle timezone differences.  Now, there is a new
  timestampgranularity attribute.  The default value for get operations is 0
  since the user has the more powerful preservelastmodified attribute to work
  with.  Since this is not available on put operations the default value
  adds a minute to the server timestamp in order to account for this,
  Scripts which previously used timediffmillis to do this compensation may
  need to be rewritten.  timediffmillis has now been deprecated.
* On Java1.5+, Ant automatically sets the system property
  java.net.useSystemProxies to true, which gives it automatic use of the local
  IE (Windows) or Gnome2 (Unix/Linux) proxy settings. This may break any build
  file that somehow relied on content outside the firewall being unreachable:
  use the -noproxy command-line option to disable this new feature.
  Note that the Java1.5 proxy configuration system still does not
  appear to work reliably on Windows or Linux.
* Support for the XSL:P XML parser has been removed.
* Visual Age for Java optional tasks removed.
* Testlet (test) optional task removed.
* Icontract optional task removed.
* Metamata (maudit, mmetrics, and mparse tasks) removed.
* Sitraka (jpcoverage, jpcovmerge, jpcovreport) tasks suppressed.
* &lt;fixcrlf&gt; used \r (Mac) line endings on OS X, whose proper line separator
  is \n (Unix).
* &lt;scp&gt; now optionally supports the sftp protocol, you may need a
  newer jsch.jar.
* Ant launcher program prints errors to stderr, and exits with a 2 exit code
  value if, for any reason, it cannot actually start Ant proper. This will only
  affect programs/scripts that called the launcher and which did not want to
  receive an error if Ant itself would not start
* All .NET tasks are now deprecated in favor of the new .NET Antlib:
  http://ant.apache.org/antlibs/dotnet/index.html
</content>
</entry>
<entry>
<title>Ant hasn't depended on crimson in a very long time -- it has a built-in</title>
<updated>2006-04-26T15:02:19Z</updated>
<author>
<name>tv</name>
<email>tv</email>
</author>
<published>2006-04-26T15:02:19Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=1735fad7fe4ccc041029401f375d1ced9e77957a'/>
<id>urn:sha1:1735fad7fe4ccc041029401f375d1ced9e77957a</id>
<content type='text'>
Xerces copy in the distribution.  Remove DEPENDS and bump PKGREVISION.
</content>
</entry>
<entry>
<title>Recursive revision bump / recommended bump for gettext ABI change.</title>
<updated>2006-02-05T23:08:03Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2006-02-05T23:08:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=93e3b9e04264b93620166058e19ea42c856505b0'/>
<id>urn:sha1:93e3b9e04264b93620166058e19ea42c856505b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removing useless file, the ant package now patches the original script</title>
<updated>2005-09-08T17:48:26Z</updated>
<author>
<name>tonio</name>
<email>tonio</email>
</author>
<published>2005-09-08T17:48:26Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=691c3da499c9d968eb1e38180e9d7ecdbf3e7299'/>
<id>urn:sha1:691c3da499c9d968eb1e38180e9d7ecdbf3e7299</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update apache-ant to 1.6.5</title>
<updated>2005-09-03T22:59:25Z</updated>
<author>
<name>tonio</name>
<email>tonio</email>
</author>
<published>2005-09-03T22:59:25Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=cd9e30541fc959983a7be6d164bbf2676635051c'/>
<id>urn:sha1:cd9e30541fc959983a7be6d164bbf2676635051c</id>
<content type='text'>
Remove the files/ant script, by patching the bin/ant script, as ant people
worked on it.
I'm taking maintainership for this one

Fix PR 29038 and PR 29338, apache-ant now can use plugins
Fix PR 30332 (update to 1.6.5)

Approved by jwise@
</content>
</entry>
<entry>
<title>Create directories before installing files into them.</title>
<updated>2005-06-16T06:57:37Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2005-06-16T06:57:37Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=087b0988c7c2bfaa3823a225f61757e9256e11a3'/>
<id>urn:sha1:087b0988c7c2bfaa3823a225f61757e9256e11a3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.</title>
<updated>2005-04-11T21:44:48Z</updated>
<author>
<name>tv</name>
<email>tv</email>
</author>
<published>2005-04-11T21:44:48Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2560f48b2f5afa9fcb23e0718a2e2727ca7824cc'/>
<id>urn:sha1:2560f48b2f5afa9fcb23e0718a2e2727ca7824cc</id>
<content type='text'>
</content>
</entry>
</feed>
