Putting my Software Sustainability hat on I had a go as a little code archaeologist here - as I didn't believe anything was missing.
I downloaded from https://dist.apache.org/repos/dist/release/clerezza/ http://people.apache.org/~reto/clerezza-release-201407/ these: stain@biggie-utopic:/tmp/781$ sha1sum *zip 7d410f64ed443ca73e8bfa6eee30848b7ac6b837 reactor-0.3-source-release.zip 1e0f18fd3e534c05899f28452563bec74dc2cc0d release20130710-reactor-0.3-source-release.zip 6e3ba529dbad12187138ea5622f0210ba8cc7141 typehandlerspace-0.2-source-release.zip (why are there two "reactor-0.3" ..?) and downloaded all of http://repo1.maven.org/maven2/org/apache/clerezza/ using wget -e robots=off --mirror --no-parent http://repo1.maven.org/maven2/org/apache/clerezza/ I built using mvn --fail-at-end install -DskipTests=true I had to use OpenJDK7 to build release20130710 as the scala bits bailed out on OpenJDK8. I looked for *.jar in both cases, and stripped out anything historic with -incubator. find . -name '*jar' > ../release20130710-reactor-0.3.txt Except for -javadoc and -sources (which I guess is because I didn't use -Papache-release) the missing ones are just: stain@biggie-utopic:/tmp/781$ diff -u central.filenames.txt built.txt | grep -v javadoc | grep -v sources | grep ^- --- central.filenames.txt 2015-03-04 19:37:26.759314079 +0000 -clerezza-jar-resource-bundle-1.jar -jaxrs.utils-0.7.jar clerezza-jar-resource-bundle version 2 is included in reactor-0.3/clerezza-jar-resource-bundle but version 1 is not in release20130710-reactor-0.3 It is a boring meta-artifact which just contain assemblies/multimodule-source-release.xml and was released as part of clerezza-0.2-incubating. Then that remains only jaxrs.utils 0.7. jaxrs.utils 0.7 was version 0.6-incubating in clerezza-0.2-incubating, but 0.8 in release20130710-reactor-0.3 http://repo1.maven.org/maven2/org/apache/clerezza/jaxrs.utils/0.7/ dates this as 2013-04-10 The corresponding [VOTE] thread: http://mail-archives.apache.org/mod_mbox/clerezza-dev/201304.mbox/%3CCALvhUEV6p8nLPAqCbxBoz0HyEcaci5T6fgCTczs6Mai087Rtbw%40mail.gmail.com%3E http://mail-archives.apache.org/mod_mbox/clerezza-dev/201304.mbox/%3CCALvhUEUUwqCYX5CUX+0egiZAaSBmdm2ym-Poc8jtVqQ8W=p...@mail.gmail.com%3E identifying it as MD5: dd7f6a4b8c7c69acd33cf555dabf6291 jaxrs.utils-0.7-source-release.zip which matches http://central.maven.org/maven2/org/apache/clerezza/jaxrs.utils/0.7/jaxrs.utils-0.7-source-release.zip.md5 On 4 March 2015 at 19:39, Stian Soiland-Reyes <[email protected]> wrote: > I found that the release candidate that was voted on here: > > http://mail-archives.apache.org/mod_mbox/clerezza-dev/201407.mbox/%3ccalvhuexevzlmq6yypsple5fhacjgk3unwq76yscbdqekzux...@mail.gmail.com%3E > > http://mail-archives.apache.org/mod_mbox/clerezza-dev/201407.mbox/%3ccalvhueusemfwtjkaa1g8_aai-xf_aba4rnuw+kylopyewsk...@mail.gmail.com%3E > > is responsible for most of the Maven artifacts. That source code tar-ball > has however not been publicly released from > > http://people.apache.org/~reto/clerezza-release-201407/ > > onto > > https://dist.apache.org/repos/dist/release/clerezza/ > > > ..its checksum match what is in the vote mail. > > > I have not done a proper comparison to see if there are other > artifacts in http://repo1.maven.org/maven2/org/apache/clerezza/ > that don't come from those releases. > > > > Also http://clerezza.apache.org/downloads/ > needs to be updated as it points to now 404-ed paths > > (they are still there in http://archive.apache.org/dist/incubator/clerezza/ > but not in https://dist.apache.org/repos/dist/release/incubator/ ) > > > On 27 February 2015 at 07:14, Hasan <[email protected]> wrote: >> Hi all, >> >> Recently, Andy found out that our releases in dist are incomplete. >> This excerpt is from his email >> >> -- excerpt -- >> dist/release20130710-reactor-0.3/parent/pom.xml >> >> has version 0.4: >> >> <parent> >> <groupId>org.apache</groupId> >> <artifactId>apache</artifactId> >> <version>13</version> >> <relativePath /> >> </parent> >> <groupId>org.apache.clerezza</groupId> >> <artifactId>clerezza</artifactId> >> <packaging>pom</packaging> >> <name>Clerezza - Parent for all</name> >> <url>http://clerezza.apache.org/mvn-site/</url> >> <version>0.4</version> >> >> There is about 6M is dist after unzipping. >> >> Many artifacts are missing from anywhere in dist/ and archives. >> >> git is about 56M of source code. >> >> -- end of excerpt -- >> >> I haven't verified anything missing. If someone can do it, would be >> appreciated. >> >> My impression is that there may be some misunderstanding. >> Our release release20130710-reactor-0.3 does not release all modules afaik. >> But I think Andy expects the whole clerezza's modules to be there. >> >> The important point is here that all modules referred in this release >> should also really be in the zip >> and it can be compiled with a fresh .m2 repo >> >> A second issue is that Andy expects version 0.5 in the dist. >> Did we release version 0.5 around July 2014? >> >> Thanks for feedbacks >> >> Cheers >> Hasan > > > > -- > Stian Soiland-Reyes > Apache Taverna (incubating) > http://orcid.org/0000-0001-9842-9718 -- Stian Soiland-Reyes Apache Taverna (incubating) http://orcid.org/0000-0001-9842-9718
