You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@xmlgraphics.apache.org by Simon Steiner <si...@gmail.com> on 2017/07/25 13:22:26 UTC

[VOTE] Release XML Graphics Batik 1.9-build2 nexus only

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi,

The vote will end on 1/8/2017

+1 from me.

The batik 1.9 nexus release was built by hand and had a few errors due to
some poms having wrong info.

I have rebuilt batik maven artifacts using:
mvn clean javadoc:jar source:jar repository:bundle-create -B

Followed by signing using:
import os
def addasc(bundle, afile):
    os.system('jar xf ' + bundle + ' ' + afile)
    if os.path.exists(afile):
        os.remove(afile + '.asc')
        os.system('gpg --armor --detach-sign --force-v3-sigs --batch
--verbose ' + afile)
        os.system('jar uf ' + bundle + ' ' + afile + '.asc')
        os.remove(afile)
        os.remove(afile + '.asc')  

for bundle in os.listdir('.'):
    if bundle.endswith('bundle.jar'):
        addasc(bundle, 'pom.xml')
        addasc(bundle, bundle.replace('-bundle', ''))
        addasc(bundle, bundle.replace('-bundle', '-javadoc'))
        addasc(bundle, bundle.replace('-bundle', '-sources'))

Can be tested using in a pom:
   <dependency>
      <groupId>org.apache.xmlgraphics</groupId>
      <artifactId>batik-all</artifactId>
      <version>1.9-build2</version>
    </dependency>

And settings.xml:
<settings>
  <profiles>
    <profile>
      <id>myprofile</id>
      <repositories>
        <repository>
          <id>my-repo2</id>
          <name>your custom repo</name>
 
<url>https://repository.apache.org/content/repositories/staging</url>
        </repository>
      </repositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>myprofile</activeProfile>
  </activeProfiles>
</settings>

Thanks
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJZd0W9AAoJEFuT8d98223qKNkP/iznsXlYftrDHWtAqiG6mMZs
bjyCVv2wrYrQ4PF8YB1OxIEKk+27XndPif+4SqCipUhiHif+SldACWiwoYABdD8H
0GAjBylSGWUEukiR6zL59nWgA/ODZwGPq/PpTrGeM933EBiXEob/UtaUdxaU4R62
pu5RF3v9PgZVbwztIXuVlRB4Vcrlmpig5yygoUdf+BIy42v9BJn4ViI9KUdW2M9h
cc0DZCazLi2e/r9p9BAH0rIW8wmliupRafBj1z3rlcF/uUOEiBYF5IePspkg2z4m
NSCXYl6ciuEqHGXxcYSkEMhxTykKEI7DSOk/Q0dwATUj44UaJNvO3ARdXtbvVWXW
TAcVdvoWHLb7lTmjWNyqnt19goptkLUHNLUGAq3/ljf1jcBuofmRWw6JAwAMWBbR
xl43e2aWYubd5hc/VodV83yXh9nKZpxWq8kv+Mx1uevX5ddQThlidUoo+Ne3mBX2
p5We5lbKmmQcNQCKtyUs0VtQ67FvlsJZTSaQQ3cOIYP07BSGDIrMfhFTBtd4HSde
aOa9NhMG3NRiq669GJ/UDzRQHuAp4gR2hfkoJyKLD5uCA05eQeF5FKlJkfeQPHjL
EiAZVku3fLwdwnY+cSGbFKh8Rg8FR95xVH3pJmp+UniV5o2N6yrQpJAfqW9+fhE0
LXtDrTBthombwrYiE3s+
=3JIW
-----END PGP SIGNATURE-----


---------------------------------------------------------------------
To unsubscribe, e-mail: general-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: general-help@xmlgraphics.apache.org

Re: [VOTE] Release XML Graphics Batik 1.9-build2 nexus only

Posted by Glenn Adams <gl...@skynav.com>.
Please change the version number to a standard format, such as 1.9.1.

On Tue, Jul 25, 2017 at 7:22 AM, Simon Steiner <si...@gmail.com>
wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Hi,
>
> The vote will end on 1/8/2017
>
> +1 from me.
>
> The batik 1.9 nexus release was built by hand and had a few errors due to
> some poms having wrong info.
>
> I have rebuilt batik maven artifacts using:
> mvn clean javadoc:jar source:jar repository:bundle-create -B
>
> Followed by signing using:
> import os
> def addasc(bundle, afile):
>     os.system('jar xf ' + bundle + ' ' + afile)
>     if os.path.exists(afile):
>         os.remove(afile + '.asc')
>         os.system('gpg --armor --detach-sign --force-v3-sigs --batch
> --verbose ' + afile)
>         os.system('jar uf ' + bundle + ' ' + afile + '.asc')
>         os.remove(afile)
>         os.remove(afile + '.asc')
>
> for bundle in os.listdir('.'):
>     if bundle.endswith('bundle.jar'):
>         addasc(bundle, 'pom.xml')
>         addasc(bundle, bundle.replace('-bundle', ''))
>         addasc(bundle, bundle.replace('-bundle', '-javadoc'))
>         addasc(bundle, bundle.replace('-bundle', '-sources'))
>
> Can be tested using in a pom:
>    <dependency>
>       <groupId>org.apache.xmlgraphics</groupId>
>       <artifactId>batik-all</artifactId>
>       <version>1.9-build2</version>
>     </dependency>
>
> And settings.xml:
> <settings>
>   <profiles>
>     <profile>
>       <id>myprofile</id>
>       <repositories>
>         <repository>
>           <id>my-repo2</id>
>           <name>your custom repo</name>
>
> <url>https://repository.apache.org/content/repositories/staging</url>
>         </repository>
>       </repositories>
>     </profile>
>   </profiles>
>   <activeProfiles>
>     <activeProfile>myprofile</activeProfile>
>   </activeProfiles>
> </settings>
>
> Thanks
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1
>
> iQIcBAEBAgAGBQJZd0W9AAoJEFuT8d98223qKNkP/iznsXlYftrDHWtAqiG6mMZs
> bjyCVv2wrYrQ4PF8YB1OxIEKk+27XndPif+4SqCipUhiHif+SldACWiwoYABdD8H
> 0GAjBylSGWUEukiR6zL59nWgA/ODZwGPq/PpTrGeM933EBiXEob/UtaUdxaU4R62
> pu5RF3v9PgZVbwztIXuVlRB4Vcrlmpig5yygoUdf+BIy42v9BJn4ViI9KUdW2M9h
> cc0DZCazLi2e/r9p9BAH0rIW8wmliupRafBj1z3rlcF/uUOEiBYF5IePspkg2z4m
> NSCXYl6ciuEqHGXxcYSkEMhxTykKEI7DSOk/Q0dwATUj44UaJNvO3ARdXtbvVWXW
> TAcVdvoWHLb7lTmjWNyqnt19goptkLUHNLUGAq3/ljf1jcBuofmRWw6JAwAMWBbR
> xl43e2aWYubd5hc/VodV83yXh9nKZpxWq8kv+Mx1uevX5ddQThlidUoo+Ne3mBX2
> p5We5lbKmmQcNQCKtyUs0VtQ67FvlsJZTSaQQ3cOIYP07BSGDIrMfhFTBtd4HSde
> aOa9NhMG3NRiq669GJ/UDzRQHuAp4gR2hfkoJyKLD5uCA05eQeF5FKlJkfeQPHjL
> EiAZVku3fLwdwnY+cSGbFKh8Rg8FR95xVH3pJmp+UniV5o2N6yrQpJAfqW9+fhE0
> LXtDrTBthombwrYiE3s+
> =3JIW
> -----END PGP SIGNATURE-----
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: general-unsubscribe@xmlgraphics.apache.org
> For additional commands, e-mail: general-help@xmlgraphics.apache.org
>
>