Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Backup your cygwin home directory to another media ||
  2. Append your public key to https://svn.apache.org/repos/asf/openjpa/KEYS and http://www.apache.org/dist/openjpa/KEYS. See the commands describe at the beginning of this KEYS file to perform this task. The gpg key-pair is used to sign the published artifacts for the releases.
    Code Block
    none
    none
    $ ( gpg --list-sigs <Real Name> && gpg --armor --export <Real Name> ) >> KEYS
    
    Info
    • The https://svn.apache.org/repos/asf/openjpa/KEYS file is updated via normal svn commit procedures.
      Code Block
      
      svn co https://svn.apache.org/repos/asf/openjpa --depth empty
      cd openjpa
      svn up KEYS
      ( gpg --list-sigs <Real Name> && gpg --armor --export <Real Name> ) >> KEYS
      svn commit KEYS --message "update gpg public key for ME."
      
    • The one under www.apache.org/dist/ has to be manually updated. Sign in to "ssh
      Code Block
      
      scp yourid@people.apache.org
      ", the KEYS file can be found in
      :/www/www.apache.org/dist/openjpa/KEYS
      .
       KEYS
      
  3. Submit your public key to a key server. E.g. http://pgp.surfnet.nl:11371/ or http://pgp.mit.edu/||
  4. Following the instructions in http://people.apache.org/~henkp/trust/ and ask multiple (at least 3) current Apache committers to sign your public key.

...