Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 436226 - dev-util/checkstyle should install an ant task
Summary: dev-util/checkstyle should install an ant task
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Java (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Java team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-25 16:06 UTC by Sven
Modified: 2022-05-29 07:21 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Sven 2012-09-25 16:06:51 UTC
The checkstyle package includes an ant task.
Shouldn't the package install a file /usr/share/ant/tasks/checkstyle?

I'm currently using checkstyle 5.5.

Reproducible: Always

Steps to Reproduce:
1. emerge checksytle ant-core

Actual Results:  
Observe that <taskdef resource="checkstyletask.properties"> doesn't work.
Also checkstyle is not part of the "java.class.path" variable printed by <echoproperties/>

Expected Results:  
checkstyle ant tasks is available.
Comment 1 Ralph Sennhauser (RETIRED) gentoo-dev 2012-09-26 08:35:33 UTC
'ANT_TASKS="checkstyle" ant -f build.xml' will work, the issue with registering ant tasks which aren't part of ant itself, ie. ant-* ant tasks is they will be available by default (if unset ANT_TASKS is populated with all of them) if you develop your own project and so your build.xml might not work on others machines due to missing tasks or maybe more importantly, if there are multiply slots installed, it's not clear which will be used.

I talked about this with ali_bush maybe a year ago and he was clearly of the opinion to only register ant-* ant tasks and I agree by now. The only issue with this is that setting ANT_TASKS removes the ant-* ant tasks from the list of available tasks so they need to be listed again. As the build.xml should take care of extra ant tasks this is mostly a non issue though.

<taskdef/> should work, either use 'ant -lib checkstyle.jar' or make sure the taskdef sets an appropriate classpath itself. The latter is preferable actually.
Comment 2 Sven 2012-09-26 10:14:51 UTC
(In reply to comment #1)
> 'ANT_TASKS="checkstyle" ant -f build.xml' will work, the issue with
> registering ant tasks which aren't part of ant itself, ie. ant-* ant tasks
> is they will be available by default (if unset ANT_TASKS is populated with
> all of them) if you develop your own project and so your build.xml might not
> work on others machines due to missing tasks or maybe more importantly, if
> there are multiply slots installed, it's not clear which will be used.

I am aware of that.
Now consider this: my current ant build files (which apparently run fine on other machines) don't run on my gentoo machine, because checkstyle (the binary build available from the checkstyle homepage) seems to conflict with the is already in the classpath of ant. Anyhow, I get a ClassCastException somewhere and basically checkstype doesn't run.

Now with ANT_TASKS=checkstyle, it does run.

Also, if your statement is true, why do so many packages (like cpptasks) make their ant tasks available by default? Ant files using cpptasks also won't run on other machines, unless I write them carefully. For that argument it doesn't matter, whether checkstyle is a standalone program or not. Either no ant task is available by default, or everyone is. Having some available by default and others not is a strange thing.

Now there are several issues with making ant tasks available by default. One is about versions. Even if I tell ant where to find checkstyle 5.6, it will still use checkstyle 5.5 if that is emerged. But again, the same issue exists with cpptasks.

So beside the general discussion, the bottom line for me is:
checkstyle doesn't work, unless I emerge it. The usual way (<taskdef> with classpath to checkstyle-5.6-all.jar or even the inidivual JARS, excluding the antlr.jar that comes with checkstyle) result in weired ClassCastExceptions.
Comment 3 Larry the Git Cow gentoo-dev 2022-05-29 07:21:50 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=446785d0cb1fa2fc2838cc450189797e0de5aba0

commit 446785d0cb1fa2fc2838cc450189797e0de5aba0
Author:     Jakov Smolić <jsmolic@gentoo.org>
AuthorDate: 2022-05-29 07:20:57 +0000
Commit:     Jakov Smolić <jsmolic@gentoo.org>
CommitDate: 2022-05-29 07:20:57 +0000

    dev-util/checkstyle: treeclean
    
    Bug: https://bugs.gentoo.org/710750
    Closes: https://bugs.gentoo.org/828453
    Bug: https://bugs.gentoo.org/680516
    Closes: https://bugs.gentoo.org/436226
    Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>

 dev-util/checkstyle/Manifest                 |  1 -
 dev-util/checkstyle/checkstyle-7.2-r1.ebuild | 67 ----------------------------
 dev-util/checkstyle/metadata.xml             | 12 -----
 profiles/package.mask                        |  5 ---
 4 files changed, 85 deletions(-)