Description of problem: Tracker bug for all the dependencies / problems with PuppetDB
We need Leiningen 2.x in Fedora to _compile_ PuppetDB. Currently 1.7 is available 1.7 came in from: https://bugzilla.redhat.com/show_bug.cgi?id=830784 Bug for 2.x is: https://bugzilla.redhat.com/show_bug.cgi?id=1072427 Original fedora feature is: https://fedoraproject.org/wiki/Features/Clojure Leiningen available from: https://github.com/technomancy/leiningen And no, nobody knows how to pronounce or spell "leiningen"...
I've reset to the component's default owner in order to some answers.
(In reply to Gilles Dubreuil from comment #4) > I've reset to the component's default owner in order to some answers. Okay, however you will probably more interested to have a look at: https://bugzilla.redhat.com/show_bug.cgi?id=1068867
This message is a reminder that Fedora 20 is nearing its end of life. Approximately 4 (four) weeks from now Fedora will stop maintaining and issuing updates for Fedora 20. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as EOL if it remains open with a Fedora 'version' of '20'. Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version. Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora 20 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged change the 'version' to a later Fedora version prior this bug is closed as described in the policy above. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete.
Fedora 20 changed to end-of-life (EOL) status on 2015-06-23. Fedora 20 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. If you experience problems, please add a comment to this bug. Thank you for reporting this bug and we are sorry it could not be fixed.
Reopening in case anyone is still interested.
There is no need for Leiningen. 3 maven plugins can do what Leiningen does. clojure-maven-plugin to build clojure source. maven-shade-plugin to create an 'uberjar', and maven-exec-plugin to set the clj file dates back a bit. Leiningen preserves file dates and maven-shade-plugin does not. clojure tries to recompile any clj file with a date equal to or newer than the class file, which breaks things badly. If soemone is able and willing to build all the dependencies using maven it can be packaged. <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> <version>1.3.2</version> <executions> <execution> <id>Clojure you make me so sad</id> <phase>verify</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>bash</executable> <arguments> <argument>-c</argument> <argument>set -x; pushd target; for i in $(ls -1 *.jar| grep -v original); do mkdir tmp-$i; pushd tmp-$i; jar xf ../$i; rm -f ../$i; find . -name "*.clj" -exec touch -d "$(date) - 6 hours" {} \;; jar cf ../$i *; popd; rm -rf tmp-$i; done; popd</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.theoryinpractise</groupId> <artifactId>clojure-maven-plugin</artifactId> <version>1.3.10</version> <extensions>true</extensions> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution> </executions> <configuration> <namespaces> <namespace>com.puppetlabs</namespace> </namespaces> <compileDeclaredNamespaceOnly>true</compileDeclaredNamespaceOnly> <sourceDirectories> <sourceDirectory>src</sourceDirectory> </sourceDirectories> <testSourceDirectories> <testSourceDirectory>test</testSourceDirectory> </testSourceDirectories> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.puppetlabs.puppetdb.core</mainClass> </transformer> </transformers> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins>
This message is a reminder that Fedora 23 is nearing its end of life. Approximately 4 (four) weeks from now Fedora will stop maintaining and issuing updates for Fedora 23. It is Fedora's policy to close all bug reports from releases that are no longer maintained. At that time this bug will be closed as EOL if it remains open with a Fedora 'version' of '23'. Package Maintainer: If you wish for this bug to remain open because you plan to fix it in a currently maintained version, simply change the 'version' to a later Fedora version. Thank you for reporting this issue and we are sorry that we were not able to fix it before Fedora 23 is end of life. If you would still like to see this bug fixed and are able to reproduce it against a later version of Fedora, you are encouraged change the 'version' to a later Fedora version prior this bug is closed as described in the policy above. Although we aim to fix as many bugs as possible during every release's lifetime, sometimes those efforts are overtaken by events. Often a more recent Fedora release includes newer upstream software that fixes bugs or makes them obsolete.
Fedora 23 changed to end-of-life (EOL) status on 2016-12-20. Fedora 23 is no longer maintained, which means that it will not receive any further security or bug fix updates. As a result we are closing this bug. If you can reproduce this bug against a currently maintained version of Fedora please feel free to reopen this bug against that version. If you are unable to reopen this bug, please file a new report against the current release. If you experience problems, please add a comment to this bug. Thank you for reporting this bug and we are sorry it could not be fixed.
The needinfo request[s] on this closed bug have been removed as they have been unresolved for 1000 days