+1

signatures and hashes OK
build  tag log4j-2.12.4-rc1 OK

Apache Maven 3.6.2 (40f52333136460af0dc0d7232c0dc0bcf0d9e117;
2019-08-28T00:06:16+09:00)
Maven home: C:\apps\apache-maven-3.6.2\bin\..
Java version: 1.8.0_202, vendor: Oracle Corporation, runtime:
C:\apps\jdk1.8.0_202\jre
Default locale: en_GB, platform encoding: MS932
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"

---------------------------------------

by the way, this is what I do to workaround the inconvenient format of our
.sha* files:

# check sha1, sha256 and sha512 hashes
for a in 1 256 512; do
  for f in `find . -type f -name "*.sha${a}"`; do
    claim=`cat $f |cut -d' ' -f1`;
    actual=`shasum ${f%.sha*} -a ${a} |cut -d' ' -f1`;
    if [[ "$claim" == "$actual" ]]; then echo "$f OK"; else echo "$f FAIL";
fi;
  done
done

# check signatures
for f in `find . -type f -name "*.asc"`; do if gpg 2>&1 --verify $f |grep
-q "Good sig" ; then echo "$f OK" ; else echo "$f FAIL"; fi ; done



On Wed, Dec 29, 2021 at 11:45 AM Gary Gregory <[email protected]>
wrote:

> Note that the part about skipping the Cassandra module is to work out an
> odd failure that seems to happen only on my Mac Mini and maybe also on M1
> macs (not sure about that last one)
>
> Gary
>
> On Tue, Dec 28, 2021 at 9:43 PM Ron Grabowski
> <[email protected]> wrote:
>
> > +1
> >
> > "mvn clean install -pl '!log4j-cassandra'" ran correctly. Verified
> > hashes and asc files. RAT passed too.
> >
> > On 12/28/2021 7:46 PM, Gary Gregory wrote:
> > > +1
> > >
> > > SHA512 OK
> > > ASC OK
> > > RAT check OK
> > > mvn clean install -pl '!log4j-cassandra' OK
> > >
> > > openjdk version "1.8.0_312"
> > > OpenJDK Runtime Environment (build 1.8.0_312-bre_2021_10_20_23_15-b00)
> > > OpenJDK 64-Bit Server VM (build 25.312-b00, mixed mode)
> > > Apache Maven 3.8.4 (9b656c72d54e5bacbed989b64718c159fe39b537)
> > >
> > > Maven home: /usr/local/Cellar/maven/3.8.4/libexec
> > > Java version: 1.8.0_312, vendor: Homebrew, runtime:
> > > /usr/local/Cellar/openjdk@8
> > /1.8.0+312/libexec/openjdk.jdk/Contents/Home/jre
> > > Default locale: en_US, platform encoding: UTF-8
> > > OS name: "mac os x", version: "12.1", arch: "x86_64", family: "mac"
> > >
> > > Darwin *** 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 20:28:54 PST
> > > 2021; root:xnu-8019.61.5~1/RELEASE_X86_64 x86_64
> > >
> > > Gary
> > >
> > >
> > > On Tue, Dec 28, 2021 at 6:03 PM Ralph Goers <
> [email protected]>
> > > wrote:
> > >
> > >> This is a vote to release Log4j 2.12.4, a security release for Java 7
> > >> users.
> > >>
> > >> Please download, test, and cast your votes on the log4j developers
> list.
> > >> [] +1, release the artifacts
> > >> [] -1, don't release because…
> > >>
> > >> The vote will remain open for as short amount as time as required to
> vet
> > >> the release. All votes are welcome and we encourage everyone to test
> the
> > >> release, but only Logging PMC votes are “officially” counted. As
> > always, at
> > >> least 3 +1 votes and more positive than negative votes are required.
> > >>
> > >> Changes in this version include:
> > >>
> > >> Fixed Bugs
> > >>
> > >>          • LOG4J2-3293: JdbcAppender now uses JndiManager to access
> JNDI
> > >> resources. JNDI is only enabled when system property
> > log4j2.enableJndiJdbc
> > >> is set to true.
> > >>
> > >> Tag:
> > >> a)  for a new copy do "git clone
> > >> https://github.com/apache/logging-log4j2.git"; and then "git checkout
> > >> tags/log4j-2.12.4-rc1”  or just "git clone -b log4j-2.12.4-rc1
> > >> https://github.com/apache/logging-log4j2.git";
> > >> b) for an existing working copy to “git pull” and then “git checkout
> > >> tags/log4j-2.12.4-rc1”
> > >>
> > >> Web Site:
> > https://logging.staged.apache.org/log4j/log4j-2.12.4/index.html
> > >>
> > >> Maven Artifacts:
> > >>
> > https://repository.apache.org/content/repositories/orgapachelogging-1080
> > >>
> > >> Distribution archives:
> > >> https://dist.apache.org/repos/dist/dev/logging/log4j/
> > >>
> > >> You may download all the Maven artifacts by executing:
> > >> wget -e robots=off --cut-dirs=7 -nH -r -p -np --no-check-certificate
> > >>
> >
> https://repository.apache.org/content/repositories/orgapachelogging-1080/org/apache/logging/log4j/
> > >> .
> > >>
> > >> Ralph
> >
>

Reply via email to