[Bps-public-commit] GnuPG-Interface branch, master, updated. 76b059c9dd179e0f3f308cc2e016e34cdf831bba

jesse jesse at bestpractical.com
Tue Apr 21 07:01:36 EDT 2009


The branch, master has been updated
       via  76b059c9dd179e0f3f308cc2e016e34cdf831bba (commit)
       via  b40d49c31025d4db324911dca6b12695bfbabaf3 (commit)
       via  5475e0df314fa6d941e1259793897e8b419f0a91 (commit)
       via  c9c4ccbf98f1cf1c3942fe34710a33af3caab7a4 (commit)
       via  a92c8b59c23d236ca6db923e4e4aca551597d94d (commit)
       via  ce473837fff5f46c17299308b2775d3de50d19ff (commit)
       via  00b7a96b8ff96c1bee10b49421998a78dc9dcf97 (commit)
      from  cfe5d97c62155f4761c3d14be6a501f2bdf44fe9 (commit)

Summary of changes:
 .gitignore             |    1 -
 .shipit                |   10 +++++
 ChangeLog              |    3 +-
 MANIFEST               |   61 +++++++++++++++++++++-----------
 MANIFEST.SKIP          |   12 ++++++
 Makefile.PL            |   24 ++++++-------
 SIGNATURE              |   91 ++++++++++++++++++++++++++++++++++++++++++++++++
 lib/GnuPG/Interface.pm |    2 +-
 8 files changed, 167 insertions(+), 37 deletions(-)
 create mode 100644 .shipit
 create mode 100644 MANIFEST.SKIP
 create mode 100644 SIGNATURE

- Log -----------------------------------------------------------------
commit 00b7a96b8ff96c1bee10b49421998a78dc9dcf97
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 18:48:09 2009 +0800

    Commit to Module::Install so we can use shipit

diff --git a/Makefile.PL b/Makefile.PL
index f14ec71..c46e091 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,23 +1,21 @@
 use strict;
 use warnings;
-
-use ExtUtils::MakeMaker;
+use inc::Module::Install;
 
 my $gpg_find = 'which gpg';
 print "$gpg_find ... ";
 system($gpg_find);
-if ($? != 0) {
+if ( $? != 0 ) {
     die "gpg (GnuPG) not found";
 }
 
-WriteMakefile
-  ( AUTHOR       => 'Frank J. Tobin',
-    ABSTRACT     => 'supply object methods for interacting with GnuPG',
-    NAME         => 'GnuPG::Interface',
-    VERSION_FROM => 'lib/GnuPG/Interface.pm',
-    PREREQ_PM    => {
-		     'Any::Moose' => '0.04',
-		    },
-    clean        => { FILES => "test/*-keys*/*.out test/random_seed test/trustdb.gpg test/temp" }
-  );
+author 'Frank J. Tobin';
+abstract 'supply object methods for interacting with GnuPG';
+name 'GnuPG-Interface';
+version_from 'lib/GnuPG/Interface.pm';
+requires 'Any::Moose' => '0.04';
+license 'perl';
+
 
+sign();
+WriteAll();

commit ce473837fff5f46c17299308b2775d3de50d19ff
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 18:48:47 2009 +0800

    .shipit releng

diff --git a/.shipit b/.shipit
new file mode 100644
index 0000000..44c02c1
--- /dev/null
+++ b/.shipit
@@ -0,0 +1,10 @@
+# auto-generated shipit config file.
+steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN, Twitter
+
+git.tagpattern = %v
+twitter.config = ~/.twitterrc
+
+# svn.tagpattern = MyProj-%v
+# svn.tagpattern = http://code.example.com/svn/tags/MyProj-%v
+
+# CheckChangeLog.files = ChangeLog, MyProj.CHANGES
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
new file mode 100644
index 0000000..3b88802
--- /dev/null
+++ b/MANIFEST.SKIP
@@ -0,0 +1,11 @@
+TODO
+Makefile
+blib
+pm_to_blib
+.swp$
+~$
+.tmp$
+.bak$
+.git/
+.gitignore$
+.shipit$

commit a92c8b59c23d236ca6db923e4e4aca551597d94d
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 19:51:42 2009 +0900

    releng

diff --git a/.gitignore b/.gitignore
index b4640b8..fc30299 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,7 +3,6 @@ MANIFEST.bak
 META.yml
 Makefile
 Makefile.old
-SIGNATURE
 blib/
 inc/
 pm_to_blib
diff --git a/ChangeLog b/ChangeLog
index 6b26a48..3faf6ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,5 @@
-0.40_3
+0.40_03 Tue Apr 21 19:50:12 JST 2009
+
     * Use Any::Moose instead of Moose for Mouse celerity (Sartak)
 
 0.40_1 Sat Nov 15 12:35:59 EST 2008
diff --git a/MANIFEST b/MANIFEST
index 382d53e..73f002f 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,6 +2,7 @@ SIGNATURE
 COPYING
 ChangeLog
 MANIFEST
+MANIFEST.SKIP
 Makefile.PL
 NEWS
 README
diff --git a/lib/GnuPG/Interface.pm b/lib/GnuPG/Interface.pm
index 65ab9a9..ecc0bd6 100644
--- a/lib/GnuPG/Interface.pm
+++ b/lib/GnuPG/Interface.pm
@@ -27,7 +27,7 @@ use IO::Handle;
 use GnuPG::Options;
 use GnuPG::Handles;
 
-$VERSION = '0.40_02';
+$VERSION = '0.40_03';
 
 has $_ => (
     isa     => 'Any',

commit c9c4ccbf98f1cf1c3942fe34710a33af3caab7a4
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 19:51:50 2009 +0900

    SIGNATURE for 0.40_03

diff --git a/SIGNATURE b/SIGNATURE
new file mode 100644
index 0000000..b55054a
--- /dev/null
+++ b/SIGNATURE
@@ -0,0 +1,91 @@
+This file contains message digests of all files listed in MANIFEST,
+signed via the Module::Signature module, version 0.55.
+
+To verify the content in this distribution, first make sure you have
+Module::Signature installed, then type:
+
+    % cpansign -v
+
+It will check each file's integrity, as well as the signature's
+validity.  If "==> Signature verified OK! <==" is not displayed,
+the distribution may already have been compromised, and you should
+not run its Makefile.PL or Build.PL.
+
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA1
+
+SHA1 187c2cfc1fc31d42c18d5b1653afa1a905bf266c COPYING
+SHA1 4d3c9e611bd5e943d883f14a7005c16a8f65215a ChangeLog
+SHA1 57351d1cf3abf9ce56c213bb399a476df3da167f MANIFEST
+SHA1 11ad5bffeb10be9ccf1378bdbd81fae84f678d1b MANIFEST.SKIP
+SHA1 f0366d59a14b2d5ff4c0fc8b389484af741ee1f1 Makefile.PL
+SHA1 d6e32c5128419cdbfe6e6f846ff7f64fc0adac2f NEWS
+SHA1 1047dc54823b1321e939274dd261d8e40febee24 README
+SHA1 df07bf5a2dd74ffe4b69dff3063f68879cf9e355 THANKS
+SHA1 ab92e0f4a0cb79eeead245e792fa02baccafb4fe lib/GnuPG/Fingerprint.pm
+SHA1 8852195e80823c93b6aed673e69433ae3ea46d26 lib/GnuPG/Handles.pm
+SHA1 779e6a921fa104e8f16fd4a6d38f670074592811 lib/GnuPG/HashInit.pm
+SHA1 11d4f80fde7182b9339b7f4926162c3cb9b5c77e lib/GnuPG/Interface.pm
+SHA1 2a0ccd5ef55b4f6dec5f7464c86e989674623ef1 lib/GnuPG/Key.pm
+SHA1 f233f9b250b603c5f1f056c85b5f034b3e4e1ef9 lib/GnuPG/Options.pm
+SHA1 f6cdea5f09b944e81a66a1f554db60c1b536d1d2 lib/GnuPG/PrimaryKey.pm
+SHA1 4473eeb91061fa09c2fe779ed2fb5c84bd7b4c05 lib/GnuPG/PublicKey.pm
+SHA1 1aa4521f22337b6a8d8c7980a97ea9f692528038 lib/GnuPG/SecretKey.pm
+SHA1 5e4721c2ba905a3e2e1583a540b72e0ffb5cd5e8 lib/GnuPG/Signature.pm
+SHA1 1cd30e5f429d1dbfb4b36ef3b3ab35013ca0a101 lib/GnuPG/SubKey.pm
+SHA1 298a897d30956e74a374f4e7d790680798811bf6 lib/GnuPG/UserId.pm
+SHA1 367fdb308292a9c005afffef49ff9096a20a4da3 t/Fingerprint.t
+SHA1 501ac69701ce51b3dd98f7f82a3c19a4fba6c3bd t/GnuPG/ComparableFingerprint.pm
+SHA1 ac3e4f640c0b7ffc2e6cc1a9d08546927614a456 t/GnuPG/ComparableKey.pm
+SHA1 e6902641f0e3300f8ecebb6c0ce07c47cb8978a9 t/GnuPG/ComparablePrimaryKey.pm
+SHA1 bc0131cf790f60fe21de67435516a78a18e5694c t/GnuPG/ComparablePublicKey.pm
+SHA1 ecee8534433307382b885eb19d0c6a74f0896e9b t/GnuPG/ComparableSecretKey.pm
+SHA1 7c0828fc937021847b5f1e857c4dd086169ceb72 t/GnuPG/ComparableSignature.pm
+SHA1 11224faf53b09044aa119fe40c09553a3bf4a091 t/GnuPG/ComparableSubKey.pm
+SHA1 69961a5efc193745729505e317db48cccd728cf0 t/GnuPG/ComparableUserId.pm
+SHA1 8791d014e4efd4cf11998386e1651cc4eb16dd26 t/Interface.t
+SHA1 698ec633be083b7e762331f1a5106c1618c74dd3 t/MyTest.pm
+SHA1 6fb9814ee5634f8c121ad4c38babb8f04334c6d9 t/MyTestSpecific.pm
+SHA1 ccd942d9f00627253d7eb9c011116dc5671639b8 t/UserId.t
+SHA1 16ac3a802f059cad9b7a0567eebe8b9599cc2551 t/clearsign.t
+SHA1 fab3deb7f60a0b5aae2f92b1c39804d1a4df2848 t/decrypt.t
+SHA1 67364d69fda2826735c8e39d50ea81a80d529a6c t/detach_sign.t
+SHA1 54d40d0d5233ad3097c5ca79032f38171334c7a4 t/encrypt.t
+SHA1 eeb2c355817cf641ad9e90e90f01007efce29cbe t/encrypt_symmetrically.t
+SHA1 a95b669219675ac2fadc8b5d3c49dcfd69609fe2 t/export_keys.t
+SHA1 f57e6d8b32fe81419244d3f38f5d9843ff0927c2 t/get_public_keys.t
+SHA1 43a2e400a6e38e7b64581d6863629de00e2752d9 t/get_secret_keys.t
+SHA1 a0f7dfa3778defadaf3600a7cfd69bfd027fdad2 t/import_keys.t
+SHA1 3355815cd188313a39116a661669ff92cebd701f t/list_public_keys.t
+SHA1 2ccb69c8a216e7f6db9faa2d6127561aeaa8130c t/list_secret_keys.t
+SHA1 17bccf75d6920c3d75dc3c8dbcdc0d0855275350 t/list_sigs.t
+SHA1 a8d213b81f23469460d8466520590bbeaee14aed t/passphrase_handling.t
+SHA1 1a20b9dac32bb1b40294e966de09eb89589a8891 t/sign.t
+SHA1 fa87a1405c58a951518003efd95700a9ca4b60ed t/sign_and_encrypt.t
+SHA1 6732202eb77e2d90af01f557d3e534812ec672af t/verify.t
+SHA1 09f7e2320231cfb923325fd474d76ff20d8c6c6b t/wrap_call.t
+SHA1 58f58338a2922798c59c5e852bd0110541f27e2d test/encrypted.1.gpg
+SHA1 b012a47f295ee9dcc955560b9a78c0ad3a61e137 test/key.1.asc
+SHA1 1290379acadab2cc713d659c7c3feff2b0923f75 test/options
+SHA1 4e1243bd22c66e76c2ba9eddc1f91394e57f9f83 test/passphrase
+SHA1 59c0e6436b38645144d17ce11ac4aabfdd43e960 test/plain.1.txt
+SHA1 7d94ea032bdbb0104c1dc73583ec64ade6294495 test/public-keys-sigs/1.0.test
+SHA1 63d93054decf9ff6c2dc99eb03f131b55af4ee43 test/public-keys-sigs/1.1.test
+SHA1 bd9892a93f802c68109b11b756f79f6b0292eb1a test/public-keys-sigs/2.0.test
+SHA1 73d90696020a01753cda984262a2831dcc6ac0d7 test/public-keys-sigs/2.1.test
+SHA1 82d483adc6d203c79856a70dd259370f6efdeef7 test/public-keys/1.0.test
+SHA1 86056ad37b8bb67d55ac61b5d5a27ac4bbd1cceb test/public-keys/1.1.test
+SHA1 a8e97a2439671dae0dd29a2404c321ccb686ba7a test/public-keys/2.0.test
+SHA1 54d2c13bf3b73b7582edef091175dfe3763ddf59 test/public-keys/2.1.test
+SHA1 5fa3777416ba09b8a396113dce6ddbf6a73b4b74 test/pubring.gpg
+SHA1 e740841597775e3da265ec14e411ed0432bae5e2 test/secret-keys/1.0.test
+SHA1 3bd6135279f9ae23e32680707c6170910421e5de test/secret-keys/2.0.test
+SHA1 4ae7541bb82abaef5573e61582c4dd4f96cc7f63 test/secring.gpg
+SHA1 981418a80bf7dab91b63608cfd1ddf5091f89ad7 test/signed.1.asc
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.9 (Darwin)
+
+iEYEARECAAYFAkntpSQACgkQEi9d9xCOQEZg+QCcDab+eoI7RV7WnOalCctw21qj
+T2EAnRfGPPCaROBiEe4IDlav2d0WQIWY
+=VWOd
+-----END PGP SIGNATURE-----

commit 5475e0df314fa6d941e1259793897e8b419f0a91
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 19:52:51 2009 +0900

    skip the test data directory

diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index 3b88802..a6b2973 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -9,3 +9,4 @@ pm_to_blib
 .git/
 .gitignore$
 .shipit$
+test/

commit b40d49c31025d4db324911dca6b12695bfbabaf3
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 19:54:10 2009 +0900

    clean up manifest

diff --git a/MANIFEST b/MANIFEST
index 73f002f..d4d7563 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -1,12 +1,12 @@
-SIGNATURE
-COPYING
 ChangeLog
-MANIFEST
-MANIFEST.SKIP
-Makefile.PL
-NEWS
-README
-THANKS
+COPYING
+inc/Module/Install.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
 lib/GnuPG/Fingerprint.pm
 lib/GnuPG/Handles.pm
 lib/GnuPG/HashInit.pm
@@ -15,55 +15,44 @@ lib/GnuPG/Key.pm
 lib/GnuPG/Options.pm
 lib/GnuPG/PrimaryKey.pm
 lib/GnuPG/PublicKey.pm
-lib/GnuPG/UserId.pm
 lib/GnuPG/SecretKey.pm
 lib/GnuPG/Signature.pm
 lib/GnuPG/SubKey.pm
-t/GnuPG/ComparableFingerprint.pm
-t/GnuPG/ComparableKey.pm
-t/GnuPG/ComparablePrimaryKey.pm
-t/GnuPG/ComparablePublicKey.pm
-t/GnuPG/ComparableSecretKey.pm
-t/GnuPG/ComparableSignature.pm
-t/GnuPG/ComparableSubKey.pm
-t/GnuPG/ComparableUserId.pm
-t/Fingerprint.t
-t/Interface.t
-t/MyTest.pm
-t/MyTestSpecific.pm
-t/UserId.t
+lib/GnuPG/UserId.pm
+MANIFEST
+MANIFEST.SKIP
+META.yml
+NEWS
+README
+SIGNATURE
 t/clearsign.t
 t/decrypt.t
 t/detach_sign.t
 t/encrypt.t
 t/encrypt_symmetrically.t
 t/export_keys.t
+t/Fingerprint.t
 t/get_public_keys.t
 t/get_secret_keys.t
+t/GnuPG/ComparableFingerprint.pm
+t/GnuPG/ComparableKey.pm
+t/GnuPG/ComparablePrimaryKey.pm
+t/GnuPG/ComparablePublicKey.pm
+t/GnuPG/ComparableSecretKey.pm
+t/GnuPG/ComparableSignature.pm
+t/GnuPG/ComparableSubKey.pm
+t/GnuPG/ComparableUserId.pm
 t/import_keys.t
+t/Interface.t
 t/list_public_keys.t
 t/list_secret_keys.t
 t/list_sigs.t
+t/MyTest.pm
+t/MyTestSpecific.pm
 t/passphrase_handling.t
 t/sign.t
 t/sign_and_encrypt.t
+t/UserId.t
 t/verify.t
 t/wrap_call.t
-test/encrypted.1.gpg
-test/key.1.asc
-test/options
-test/passphrase
-test/plain.1.txt
-test/public-keys-sigs/1.0.test
-test/public-keys-sigs/1.1.test
-test/public-keys-sigs/2.0.test
-test/public-keys-sigs/2.1.test
-test/public-keys/1.0.test
-test/public-keys/1.1.test
-test/public-keys/2.0.test
-test/public-keys/2.1.test
-test/pubring.gpg
-test/secret-keys/1.0.test
-test/secret-keys/2.0.test
-test/secring.gpg
-test/signed.1.asc
+THANKS

commit 76b059c9dd179e0f3f308cc2e016e34cdf831bba
Author: Jesse Vincent <jesse at bestpractical.com>
Date:   Tue Apr 21 19:59:26 2009 +0900

    still working on convering to M::I

diff --git a/ChangeLog b/ChangeLog
index 3faf6ec..23ab977 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,4 @@
-0.40_03 Tue Apr 21 19:50:12 JST 2009
+0.40_04 Tue Apr 21 19:50:12 JST 2009
 
     * Use Any::Moose instead of Moose for Mouse celerity (Sartak)
 
diff --git a/MANIFEST b/MANIFEST
index d4d7563..e461ac1 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4,6 +4,7 @@ inc/Module/Install.pm
 inc/Module/Install/Base.pm
 inc/Module/Install/Can.pm
 inc/Module/Install/Fetch.pm
+inc/Module/Install/Makefile.pm
 inc/Module/Install/Metadata.pm
 inc/Module/Install/Win32.pm
 inc/Module/Install/WriteAll.pm
@@ -19,7 +20,8 @@ lib/GnuPG/SecretKey.pm
 lib/GnuPG/Signature.pm
 lib/GnuPG/SubKey.pm
 lib/GnuPG/UserId.pm
-MANIFEST
+Makefile.PL
+MANIFEST			This list of files
 MANIFEST.SKIP
 META.yml
 NEWS
@@ -55,4 +57,31 @@ t/sign_and_encrypt.t
 t/UserId.t
 t/verify.t
 t/wrap_call.t
+test/encrypted.1.gpg
+test/key.1.asc
+test/options
+test/passphrase
+test/plain.1.txt
+test/public-keys-sigs/1.0.test
+test/public-keys-sigs/1.1.test
+test/public-keys-sigs/1.out
+test/public-keys-sigs/2.0.test
+test/public-keys-sigs/2.1.test
+test/public-keys-sigs/2.out
+test/public-keys/1.0.test
+test/public-keys/1.1.test
+test/public-keys/1.out
+test/public-keys/2.0.test
+test/public-keys/2.1.test
+test/public-keys/2.out
+test/pubring.gpg
+test/random_seed
+test/secret-keys/1.0.test
+test/secret-keys/1.out
+test/secret-keys/2.0.test
+test/secret-keys/2.out
+test/secring.gpg
+test/signed.1.asc
+test/temp
+test/trustdb.gpg
 THANKS
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index a6b2973..ae36ac8 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -1,5 +1,6 @@
 TODO
-Makefile
+Makefile$
+Makefile.old$
 blib
 pm_to_blib
 .swp$
@@ -9,4 +10,3 @@ pm_to_blib
 .git/
 .gitignore$
 .shipit$
-test/
diff --git a/lib/GnuPG/Interface.pm b/lib/GnuPG/Interface.pm
index ecc0bd6..1efb6b2 100644
--- a/lib/GnuPG/Interface.pm
+++ b/lib/GnuPG/Interface.pm
@@ -27,7 +27,7 @@ use IO::Handle;
 use GnuPG::Options;
 use GnuPG::Handles;
 
-$VERSION = '0.40_03';
+$VERSION = '0.40_04';
 
 has $_ => (
     isa     => 'Any',

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



More information about the Bps-public-commit mailing list