Result:
found 581 distributions and 1482 files matching your query ! ( run in 2.120 )


Search-Sitemap

 view release on metacpan or  search on metacpan

lib/Search/Sitemap.pm  view on Meta::CPAN

  $map->add( {
    loc        => "http://www.jasonkohles.com/$_/",
    changefreq => 'weekly',
    priority   => 0.9, # lower priority than the home page
  } ) for qw(
    software gpg hamradio photos scuba snippets tools
  );
  
  $map->write( 'sitemap.gz' );

=head1 DESCRIPTION

 view all matches for this distribution


Selenium-Remote-Driver

 view release on metacpan or  search on metacpan

t/mock-recordings/01-driver-mock.json  view on Meta::CPAN

   ],
   "POST session/7af611e2-d625-45fb-ab16-33688ff0d0b5/log {\"type\":\"server\"}" : [
      "HTTP/1.1 200 OK\nCache-Control: no-cache\nCache-Control: no-cache\nConnection: close\nDate: Thu, 25 May 2017 00:46:02 GMT\nServer: Jetty(9.4.3.v20170317)\nContent-Length: 2854\nContent-Type: application/json;charset=utf-8\nExpires: Thu, 01 Jan...
   ],
   "POST session/cd31e9f2-66b7-40d9-9597-355bfcef1cce/element {\"using\":\"id\",\"value\":\"element_that_doesnt_exist\"}" : [
      "HTTP/1.1 500 Server Error\nCache-Control: no-cache\nCache-Control: no-cache\nConnection: close\nDate: Thu, 25 May 2017 00:45:54 GMT\nServer: Jetty(9.4.3.v20170317)\nContent-Length: 387348\nContent-Type: application/json;charset=utf-8\nExpires:...
   ],
   "POST session/cd31e9f2-66b7-40d9-9597-355bfcef1cce/execute {\"args\":[],\"script\":\"\\n          var links = window.document.links\\n          var length = links.length\\n          var results = new Array(length)\\n          while(length--) resul...
      "HTTP/1.1 200 OK\nCache-Control: no-cache\nCache-Control: no-cache\nConnection: close\nDate: Thu, 25 May 2017 00:45:56 GMT\nServer: Jetty(9.4.3.v20170317)\nContent-Length: 170\nContent-Type: application/json;charset=utf-8\nExpires: Thu, 01 Jan ...
   ],
   "POST session/7af611e2-d625-45fb-ab16-33688ff0d0b5/log {\"type\":\"driver\"}" : [

 view all matches for this distribution


Slackware-Slackget

 view release on metacpan or  search on metacpan

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN

	SIG_UNKNOW => 'UNKNOW',
};

=head1 NOM

Slackware::Slackget::GPG - A simple wrapper class to the gpg binary

=head1 VERSION

Version 0.4

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN


our $VERSION = '0.4';

=head1 SYNOPSIS

A simple class to verify files signatures with gpg.

    use Slackware::Slackget::GPG;

    my $slackware_slackget_gpg_object = Slackware::Slackget::GPG->new();

=cut

=head1 CONSTRUCTOR

new() : The constructor take the followings arguments :

	- gpg_binary : where we can find a valid gpg binary (default: /usr/bin/gpg)



=cut

sub new
{
	my ($class,%args) = @_ ;
	my $self={};
	$self->{DATA}->{gpg_binary} = '/usr/bin/gpg' ;
	$self->{DATA}->{gpg_binary} = $args{gpg_binary} if(exists($args{gpg_binary}) && defined($args{gpg_binary}));
	bless($self,$class);
	return $self;
}

=head1 METHODS

=head2 verify_file

take a file and a signature as parameter and verify the signature of the file. Return a Slackware::Slackget::GPG::Signature object. If the status is UNKNOW, the warnings() accessor may return some interesting data.

	my $sig = $gpg->verify("/usr/local/slack-get-1.0.0-alpha1/update/signature-cache/gcc-g++-3.3.4-i486-1.tgz","/usr/local/slack-get-1.0.0-alpha1/update/package-cache/gcc-g++-3.3.4-i486-1.tgz.asc");
	die "Signature doesn't match.\n" if(!$sig->is_good) ;

=cut

sub verify_file
{
	my ($self,$file,$sig1) = @_;
	my @out = `2>&1 LC_ALL=C $self->{DATA}->{gpg_binary} --verify $sig1 $file`;
	
# 	gpg: CRC error; 040b69 - 24a901
# 	gpg: packet(3) with unknown version 3
# 
# 	gpg: Signature made Mon 14 Jun 2004 09:23:24 AM CEST using DSA key ID 40102233
# 	gpg: Good signature from "Slackware Linux Project <security@slackware.com>"
# 	gpg: WARNING: This key is not certified with a trusted signature!
# 	gpg:          There is no indication that the signature belongs to the owner.
	
# 	gpg: Signature made Mon 16 Feb 2004 07:53:35 AM CET using DSA key ID 40102233
# 	gpg: BAD signature from "Slackware Linux Project <security@slackware.com>"
	
	my $sig = new Slackware::Slackget::GPG::Signature;
	foreach (@out)
	{
# 		print "[DEBUG::GPG] $_\n";
		chomp;
		if($_ =~ /gpg: Signature made (.*) using DSA key ID (.*)/)
		{
			$sig->date($1);
			$sig->key_id($2);
		}
		if($_ =~ /gpg: CRC error;.*/)
		{
			$sig->status('BAD');
		}
		if($_ =~ /gpg: Good signature from "([^"]*)"/)
		{
			$sig->status('GOOD');
			$sig->emitter($1);
		}
		if($_ =~ /gpg: BAD signature/)
		{
			$sig->status('BAD');
		}
		if($_ =~ /gpg: BAD signature from "([^"]*)"/)
		{
			$sig->status('BAD');
			$sig->emitter($1);
		}
		if($_=~ /gpg: WARNING: (.*)/)
		{
			$sig->warnings([@{$sig->warnings()},$1]);
		}
		if($_=~ /Primary key fingerprint: ([0-9A-F\s]*)/)
		{
			$sig->fingerprint($1);
		}
		if($_=~ /gpg: verify signatures failed: (.*)/)
		{
			$sig->status('UNKNOW');
			$sig->warnings([@{$sig->warnings()},$1]);
		}
		if($_=~ /gpg: can't hash datafile: (.*)/)
		{
			$sig->status('UNKNOW');
			$sig->warnings([@{$sig->warnings()},"can't hash datafile",$1]);
		}
		

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN


=head2 import_key

Import a key file passed in parameter.

	$gpg->import_key('update/GPG-KEY') or die "unable to import official Slackware GnuPG key.\n";

Return a Slackware::Slackget::Signature object. 

The returned object is set with the status (which represent in this case, the status of the import).

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN

=cut

sub import_key
{
	my ($self,$key) = @_ ;
	my @out = `2>&1 LC_ALL=C $self->{DATA}->{gpg_binary} --import $key`;
	my $sig = new Slackware::Slackget::GPG::Signature;
	$sig->status('BAD');
	foreach (@out){
	# key 40102233: public key "Slackware Linux Project <security@slackware.com>" imported
		if(/gpg: key ([^:]+): public key "([^"]+)" imported/){
			$sig->status('GOOD');
			$sig->key_id($1);
			$sig->emitter($2);
		}
	}

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN


=head2 in_keyring

Return the number of keys in the keyring that match the given string.

    $gpg->in_keyring('Slackware Linux Project') or die "The GPG signature of the Slackware Linux project cannot be found in your keyring.\n";

=cut

sub in_keyring {
	my ($self, $string) = @_ ;

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN

# To retrieve all information for a given key, use the key_info() method.

sub list_keys {
	my $self = shift;
	my @list = ();
	my @out = `2>&1 LC_ALL=C $self->{DATA}->{gpg_binary} --list-keys`;
	#pub   1024D/61BD09B3 2005-07-02
	foreach (@out){
		chomp;
		if(/^pub\s+[^\/]+\/([^\s]+)\s+.*$/){
			push @list, {key => $1, uid => []};

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN

# To retrieve all information for a given key, use the sig_info() method.

sub list_sigs {
	my $self = shift;
	my @list = ();
	my @out = `2>&1 LC_ALL=C $self->{DATA}->{gpg_binary} --list-sigs`;
	foreach (@out){
		chomp;
		if(/^pub\s+[^\/]+\/([^\s]+)\s+.*$/){
			push @list, $1;
		}

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN

# 
# =cut
# # TODO: it sucks => list_* should return a list of key id and *_info return the rest of info !!
# sub sig_info {
# 	my ($self,$uid) = @_;
# 	my @out = `2>&1 LC_ALL=C $self->{DATA}->{gpg_binary} --list-sigs`;
# 	my $data = {};
# 	foreach (@out){
# 		chomp;
# 		if(/^uid\s+$uid/){
# 			$data->{uid} = $uid;

lib/Slackware/Slackget/GPG.pm  view on Meta::CPAN




=head1 ACCESSORS

=head2 gpg_binary

Get/set the path to the gpg binary.

	die "Cannot find gpg : $!\n" unless( -e $gpg->gpg_binary());

=cut

sub gpg_binary
{
	return $_[1] ? $_[0]->{DATA}->{gpg_binary}=$_[1] : $_[0]->{DATA}->{gpg_binary};
}



=head1 AUTHOR

 view all matches for this distribution


Soar-Production

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN

[ReadmeFromPod]                 ; create README file in build
[ReadmeAnyFromPod]              ; create markdown README file in the project root
type = markdown
location = root
[InstallGuide]                  ; create INSTALL file
; Windows: install gpg4win
[Signature]                     ; create SIGNATURE file whenever we create an archive
sign = archive
[Manifest]                      ; create the MANIFEST file

; -- pre-release

 view all matches for this distribution


Software-License-ISC

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 bdd52baa1a968cc0e1a577a7b073f046d563a317 t/release-kwalitee.t
SHA1 ca37d7b91c2299a98877a6f36d3fab51e8dd906f t/release-pod-coverage.t
SHA1 e7fc4d8f3f29ee522cb53914648393524fc7a6d4 t/release-pod-syntax.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
Comment: GPGTools - http://gpgtools.org

iQIcBAEBAgAGBQJVLMVIAAoJEHwWRyBU62lqi/kQAIm2Ay9zGmj8u5rtAezjJ9dz
YAA9ApTwH5x7KcmfIp0zY0fzOGVZlHwAz/8cf5CzUyWpj+xdLcRUJWBz2DcNklt4
QMSu8/YRyqlPmdd+opVZY+BEA+TiL0oHtAojs9HzE8tmeto6vLViLDXFuRTTGsYy
pC87bbXojzscmyycjhI2TDECQBrGxtqdaJbdl9YM3jqZ3BM9mPC4p/1faiak0JV6

 view all matches for this distribution


Solaris

 view release on metacpan or  search on metacpan

Kstat/Kstat_2_6.c  view on Meta::CPAN

SAVE_INT32(self, syswaitp, physio);

SAVE_UINT32(self, vminfop, pgrec);
SAVE_UINT32(self, vminfop, pgfrec);
SAVE_UINT32(self, vminfop, pgin);
SAVE_UINT32(self, vminfop, pgpgin);
SAVE_UINT32(self, vminfop, pgout);
SAVE_UINT32(self, vminfop, pgpgout);
SAVE_UINT32(self, vminfop, swapin);
SAVE_UINT32(self, vminfop, pgswapin);
SAVE_UINT32(self, vminfop, swapout);
SAVE_UINT32(self, vminfop, pgswapout);
SAVE_UINT32(self, vminfop, zfod);

 view all matches for this distribution


Statistics-Contingency

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 0584901c33a80373b474989b730d03b0003860fa lib/Statistics/Contingency.pm
SHA1 7003b69adf3459b676b70cb781d47bb9f3169aa0 t/01-basic.t
SHA1 fa45d6e6ab1cd421349dea4ef527bfd5cdc8a09e t/author-critic.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlGz+XkACgkQgrvMBLfvlHaeaQCfeOl8pRiOOORYrI3wLCP+ln3g
ZfIAnjLU3eEahUwFQCCTxLSsPc/CNTos
=j+74
-----END PGP SIGNATURE-----

 view all matches for this distribution


Stow

 view release on metacpan or  search on metacpan

ChangeLog  view on Meta::CPAN

    trusty InRelease [15.4 kB] Ign:5
    http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4
    InRelease Get:6 http://repo.mongodb.org/apt/ubuntu
    trusty/mongodb-org/3.4 Release [2,495 B] Get:7
    http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.4
    Release.gpg [801 B] Get:8 http://dl.hhvm.com/ubuntu trusty/main
    amd64 Packages [1,812 B] Get:9 http://security.ubuntu.com/ubuntu
    trusty-security/main Sources [220 kB] Get:10
    http://security.ubuntu.com/ubuntu trusty-security/restricted
    Sources [5,050 B] Get:11 http://security.ubuntu.com/ubuntu
    trusty-security/universe Sources [126 kB] Get:12

ChangeLog  view on Meta::CPAN

    i386 Packages [1,842 B] Get:36
    http://ppa.launchpad.net/chris-lea/redis-server/ubuntu trusty/main
    Translation-en [990 B] Get:37
    http://ppa.launchpad.net/couchdb/stable/ubuntu trusty Release
    [15.1 kB] Get:38 http://ppa.launchpad.net/couchdb/stable/ubuntu
    trusty Release.gpg [316 B] Ign:39
    http://dl.google.com/linux/chrome/deb stable InRelease Get:40
    http://dl.google.com/linux/chrome/deb stable Release [943 B] 
    Get:41 http://dl.google.com/linux/chrome/deb stable Release.gpg
    [819 B] Get:42 http://ppa.launchpad.net/git-core/ppa/ubuntu
    trusty/main amd64 Packages [3,494 B] Get:43
    http://ppa.launchpad.net/git-core/ppa/ubuntu trusty/main i386
    Packages [3,496 B] Get:44
    http://ppa.launchpad.net/git-core/ppa/ubuntu trusty/main

ChangeLog  view on Meta::CPAN

    https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu
    trusty/main amd64 Packages [7,866 B] Get:71
    https://packagecloud.io/rabbitmq/rabbitmq-server/ubuntu
    trusty/main i386 Packages [7,866 B] Fetched 4,218 kB in 15s (279
    kB/s) Reading package lists... W:
    http://ppa.launchpad.net/couchdb/stable/ubuntu/dists/trusty/Release.gpg:
    Signature by key 15866BAFD9BCC4F3C1E0DFC7D69548E1C17EAB57 uses
    weak digest algorithm (SHA1) W: GPG error:
    https://packagecloud.io/github/git-lfs/ubuntu trusty InRelease:
    The following signatures couldn't be verified because the public
    key is not available: NO_PUBKEY 6B05F25D762E3157 W: The repository

 view all matches for this distribution


Sys-Detect-Virtualization

 view release on metacpan or  search on metacpan

t/data/linux/vmware/dmesg.out  view on Meta::CPAN

[    4.056411] hda: ATAPI 1X CD-ROM drive, 32kB Cache
[    4.056411] Uniform CD-ROM driver Revision: 3.20
[    4.168075] kjournald starting.  Commit interval 5 seconds
[    4.168075] EXT3-fs: mounted filesystem with ordered data mode.
[    4.661677] udevd version 125 started
[    4.906273] Linux agpgart interface v0.103
[    4.919979] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    4.927983] agpgart: Detected an Intel 440BX Chipset.
[    4.927983] agpgart: AGP aperture is 256M @ 0x0
[    4.931980] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    4.957490] ACPI: AC Adapter [ACAD] (on-line)
[    4.964759] piix4_smbus 0000:00:07.3: Found 0000:00:07.3 device
[    4.964759] piix4_smbus 0000:00:07.3: Host SMBus controller not enabled!
[    5.136182] input: Power Button (FF) as /class/input/input1

 view all matches for this distribution


Sys-Statistics-Linux

 view release on metacpan or  search on metacpan

lib/Sys/Statistics/Linux.pm  view on Meta::CPAN


    #> cat /tmp/pgswstats.yml
    --- 
    pgfault: 397040955
    pgmajfault: 4611
    pgpgin: 21531693
    pgpgout: 49511043
    pswpin: 8
    pswpout: 272
    time: 1236783534.9328

Every time you call the script the initial statistics are loaded/stored from/to the file.

 view all matches for this distribution


TAP-SimpleOutput

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

                     "RSRCHBOY",
                     "RSRCHBOY's",
                     "codebase",
                     "coderef",
                     "formattable",
                     "gpg",
                     "implementers",
                     "ini",
                     "metaclass",
                     "metaclasses",
                     "parameterization",

 view all matches for this distribution


TBX-Checker

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN

[ReadmeFromPod]                 ; create README file in build
[ReadmeAnyFromPod]              ; create markdown README file in the project root
type = markdown
location = root
[InstallGuide]                  ; create INSTALL file
; Windows: install gpg4win
; [Signature]                     ; create SIGNATURE file whenever we create an archive
; sign = archive
[Manifest]                      ; create the MANIFEST file

; -- pre-release

 view all matches for this distribution


TBX-Min

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN

[ReadmeFromPod]                 ; create README file in build
[ReadmeAnyFromPod / ReadmeMkdnInRoot]   ; create markdown README file in the project root
type = markdown
location = root
[InstallGuide]                  ; create INSTALL file
; Windows: install gpg4win
; [Signature]                     ; create SIGNATURE file whenever we create an archive
sign = archive
[Manifest]                      ; create the MANIFEST file

; -- pre-release

 view all matches for this distribution


TBX-XCS

 view release on metacpan or  search on metacpan

dist.ini  view on Meta::CPAN

[ReadmeFromPod]                 ; create README file in build
[ReadmeAnyFromPod]              ; create markdown README file in the project root
type = markdown
location = root
[InstallGuide]                  ; create INSTALL file
; Windows: install gpg4win
; [Signature]                     ; create SIGNATURE file whenever we create an archive
; sign = archive
[Manifest]                      ; create the MANIFEST file

; -- pre-release

 view all matches for this distribution


TableDataBundle-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2007.csv  view on Meta::CPAN

Pod-POM-Web-1.03,2007-04-24T20:22:04,DAMI,backpan,released,1.03,,Pod-POM-Web,"HTML Perldoc server"
Perl-Repository-APC-1.244,2007-04-24T20:54:25,ANDK,backpan,released,1.244,,Perl-Repository-APC,"Class modelling ""All Perl Changes"" repository"
ShipIt-0.48,2007-04-24T21:17:46,BRADFITZ,cpan,released,0.48,,ShipIt,"Executable for ShipIt"
mogilefs-server-2.10,2007-04-24T21:19:29,BRADFITZ,cpan,released,2.10,,mogilefs-server,"automatically discover and mount MogileFS disks"
Mail-Karmasphere-Client-2.09,2007-04-24T21:34:59,SHEVEK,cpan,released,2.09,,Mail-Karmasphere-Client,"Test client for karmad"
Crypt-GpgME-0.01,2007-04-24T22:07:39,FLORA,cpan,released,0.01,1,Crypt-GpgME,"Perl interface to libgpgme"
Catalyst-Plugin-Log-Handler-0.01,2007-04-24T22:33:59,PEPE,backpan,released,0.01,1,Catalyst-Plugin-Log-Handler,"Catalyst Plugin for Log::Handler"
Geo-Coder-HostIP,2007-04-24T22:41:52,DODGER,cpan,released,0,1,Geo-Coder-HostIP,
Pad-Tie-0.002_01,2007-04-24T23:17:22,HDP,cpan,developer,0.002_01,,Pad-Tie,"tie an object to lexical contexts"
Pad-Tie-0.002_02,2007-04-24T23:22:13,HDP,cpan,developer,0.002_02,,Pad-Tie,"tie an object to lexical contexts"
Net-Pavatar-1.00,2007-04-24T23:23:56,KARJALA,backpan,released,1.00,,Net-Pavatar,"Pavatar client"

share/2007.csv  view on Meta::CPAN

WWW-Wow-RealmStatus-0.3,2007-04-29T17:58:45,SOCK,backpan,released,0.3,,WWW-Wow-RealmStatus,"The great new WWW::Wow::RealmStatus!"
Iterator-RoundRobin-0.1,2007-04-29T18:09:52,SOCK,cpan,released,0.1,1,Iterator-RoundRobin,"The great new Iterator::RoundRobin!"
Weed-0.0019,2007-04-29T18:20:54,HOOO,backpan,released,0.0019,,Weed,"Contains the Abstract that will be displayed on CPAN"
SVN-Web-0.53,2007-04-29T19:25:24,NIKC,cpan,released,0.53,,SVN-Web,"Subversion repository web frontend"
Statistics-ROC-0.04,2007-04-29T19:50:15,HAKESTLER,latest,released,0.01,1,Statistics-ROC,"receiver-operator-characteristic (ROC) curves with nonparametric confidence bounds"
Crypt-GpgME-0.02,2007-04-29T19:53:35,FLORA,cpan,released,0.02,,Crypt-GpgME,"Perl interface to libgpgme"
B-LintSubs-0.04,2007-04-29T21:18:03,PEVANS,backpan,released,0.04,,B-LintSubs,"Perl compiler backend to check sub linkage"
package-0.0019,2007-04-29T21:50:23,HOOO,backpan,released,0.0019,,package,"makes an alias of the current package"
WWW-Yahoo-KeywordExtractor-0.5,2007-04-29T22:30:28,SOCK,latest,released,0.5,,WWW-Yahoo-KeywordExtractor,"Get keywords from summary text via the Yahoo API"
Sprocket-0.05,2007-04-29T23:11:01,XANTUS,backpan,released,0.05,,Sprocket,"A pluggable POE based Client / Server Library"
DBIx-SimplePerl-1.70,2007-04-30T00:46:08,LANDMAN,cpan,released,1.70,,DBIx-SimplePerl,"Perlish access to DBI"

share/2007.csv  view on Meta::CPAN

Net-Proxy-0.09,2007-09-13T09:11:43,BOOK,backpan,released,0.09,,Net-Proxy,"Framework for proxying network connections in many ways"
Win32-GUIRobot-0.03,2007-09-13T10:35:00,KARASIK,backpan,released,0.03,,Win32-GUIRobot,"send keyboard and mouse input to win32, analyze graphical output"
html-table-2.07-beta,2007-09-13T10:50:24,AJPEACOCK,backpan,released,2.07-beta,1,html-table,"produces HTML tables"
XML-NewsML-0.4,2007-09-13T11:22:05,ANDY,backpan,released,0.4,1,XML-NewsML,"Simple interface for creating NewsML documents"
MojoMojo-0.999003,2007-09-13T11:28:37,MRAMBERG,backpan,released,0.05,1,MojoMojo,"Library to be used by DBIx::Class test scripts."
Crypt-GpgME-0.03,2007-09-13T12:15:26,FLORA,cpan,released,0.03,,Crypt-GpgME,"Perl interface to libgpgme"
Parse-Apache-ServerStatus-0.03,2007-09-13T12:29:31,BLOONIX,backpan,released,0.03,,Parse-Apache-ServerStatus,"Simple module to parse apache's server-status."
SVG-Convert-0.01,2007-09-13T13:01:12,ZIGOROU,backpan,released,0.01,1,SVG-Convert,"Convert from SVG to other format."
Sphinx-Config-0.01,2007-09-13T13:02:39,JJSCHUTZ,cpan,released,0.01,1,Sphinx-Config,"Sphinx search engine configuration file read/modify/write"
Crypt-GpgME-0.04,2007-09-13T13:06:32,FLORA,cpan,released,0.04,,Crypt-GpgME,"Perl interface to libgpgme"
Flickr-Upload-Dopplr-0.1,2007-09-13T14:48:41,ASCOPE,backpan,released,0.1,1,Flickr-Upload-Dopplr,"Flickr::Upload subclass to assign location information using Dopplr"
Parse-Eyapp-1.074,2007-09-13T14:57:45,CASIANO,backpan,released,1.074,,Parse-Eyapp,"Extensions for Parse::Yapp"
SVN-Hook-0.26,2007-09-13T14:57:57,CLKAO,cpan,released,0.26,1,SVN-Hook,"Managing subversion hooks"
Class-Dot-1.0.3,2007-09-13T15:02:01,ASKSH,backpan,released,1.0.3,,Class-Dot,"Simple way of creating accessor methods."
Pod-Coverage-0.19,2007-09-13T15:24:54,RCLAMP,cpan,released,0.19,,Pod-Coverage,"Checks if the documentation of a module is comprehensive"

 view all matches for this distribution


TableDataBundle-Perl-CPAN-Release-Static-Older

 view release on metacpan or  search on metacpan

share/2007.csv  view on Meta::CPAN

Pod-POM-Web-1.03,2007-04-24T20:22:04,DAMI,backpan,released,1.03,,Pod-POM-Web,"HTML Perldoc server"
Perl-Repository-APC-1.244,2007-04-24T20:54:25,ANDK,backpan,released,1.244,,Perl-Repository-APC,"Class modelling ""All Perl Changes"" repository"
ShipIt-0.48,2007-04-24T21:17:46,BRADFITZ,cpan,released,0.48,,ShipIt,"Executable for ShipIt"
mogilefs-server-2.10,2007-04-24T21:19:29,BRADFITZ,cpan,released,2.10,,mogilefs-server,"automatically discover and mount MogileFS disks"
Mail-Karmasphere-Client-2.09,2007-04-24T21:34:59,SHEVEK,cpan,released,2.09,,Mail-Karmasphere-Client,"Test client for karmad"
Crypt-GpgME-0.01,2007-04-24T22:07:39,FLORA,cpan,released,0.01,1,Crypt-GpgME,"Perl interface to libgpgme"
Catalyst-Plugin-Log-Handler-0.01,2007-04-24T22:33:59,PEPE,backpan,released,0.01,1,Catalyst-Plugin-Log-Handler,"Catalyst Plugin for Log::Handler"
Geo-Coder-HostIP,2007-04-24T22:41:52,DODGER,cpan,released,0,1,Geo-Coder-HostIP,
Pad-Tie-0.002_01,2007-04-24T23:17:22,HDP,cpan,developer,0.002_01,,Pad-Tie,"tie an object to lexical contexts"
Pad-Tie-0.002_02,2007-04-24T23:22:13,HDP,cpan,developer,0.002_02,,Pad-Tie,"tie an object to lexical contexts"
Net-Pavatar-1.00,2007-04-24T23:23:56,KARJALA,backpan,released,1.00,,Net-Pavatar,"Pavatar client"

share/2007.csv  view on Meta::CPAN

WWW-Wow-RealmStatus-0.3,2007-04-29T17:58:45,SOCK,backpan,released,0.3,,WWW-Wow-RealmStatus,"The great new WWW::Wow::RealmStatus!"
Iterator-RoundRobin-0.1,2007-04-29T18:09:52,SOCK,cpan,released,0.1,1,Iterator-RoundRobin,"The great new Iterator::RoundRobin!"
Weed-0.0019,2007-04-29T18:20:54,HOOO,backpan,released,0.0019,,Weed,"Contains the Abstract that will be displayed on CPAN"
SVN-Web-0.53,2007-04-29T19:25:24,NIKC,cpan,released,0.53,,SVN-Web,"Subversion repository web frontend"
Statistics-ROC-0.04,2007-04-29T19:50:15,HAKESTLER,latest,released,0.01,1,Statistics-ROC,"receiver-operator-characteristic (ROC) curves with nonparametric confidence bounds"
Crypt-GpgME-0.02,2007-04-29T19:53:35,FLORA,cpan,released,0.02,,Crypt-GpgME,"Perl interface to libgpgme"
B-LintSubs-0.04,2007-04-29T21:18:03,PEVANS,backpan,released,0.04,,B-LintSubs,"Perl compiler backend to check sub linkage"
package-0.0019,2007-04-29T21:50:23,HOOO,backpan,released,0.0019,,package,"makes an alias of the current package"
WWW-Yahoo-KeywordExtractor-0.5,2007-04-29T22:30:28,SOCK,latest,released,0.5,,WWW-Yahoo-KeywordExtractor,"Get keywords from summary text via the Yahoo API"
Sprocket-0.05,2007-04-29T23:11:01,XANTUS,backpan,released,0.05,,Sprocket,"A pluggable POE based Client / Server Library"
DBIx-SimplePerl-1.70,2007-04-30T00:46:08,LANDMAN,cpan,released,1.70,,DBIx-SimplePerl,"Perlish access to DBI"

share/2007.csv  view on Meta::CPAN

Net-Proxy-0.09,2007-09-13T09:11:43,BOOK,backpan,released,0.09,,Net-Proxy,"Framework for proxying network connections in many ways"
Win32-GUIRobot-0.03,2007-09-13T10:35:00,KARASIK,backpan,released,0.03,,Win32-GUIRobot,"send keyboard and mouse input to win32, analyze graphical output"
html-table-2.07-beta,2007-09-13T10:50:24,AJPEACOCK,backpan,released,2.07-beta,1,html-table,"produces HTML tables"
XML-NewsML-0.4,2007-09-13T11:22:05,ANDY,backpan,released,0.4,1,XML-NewsML,"Simple interface for creating NewsML documents"
MojoMojo-0.999003,2007-09-13T11:28:37,MRAMBERG,backpan,released,0.05,1,MojoMojo,"Library to be used by DBIx::Class test scripts."
Crypt-GpgME-0.03,2007-09-13T12:15:26,FLORA,cpan,released,0.03,,Crypt-GpgME,"Perl interface to libgpgme"
Parse-Apache-ServerStatus-0.03,2007-09-13T12:29:31,BLOONIX,backpan,released,0.03,,Parse-Apache-ServerStatus,"Simple module to parse apache's server-status."
SVG-Convert-0.01,2007-09-13T13:01:12,ZIGOROU,backpan,released,0.01,1,SVG-Convert,"Convert from SVG to other format."
Sphinx-Config-0.01,2007-09-13T13:02:39,JJSCHUTZ,cpan,released,0.01,1,Sphinx-Config,"Sphinx search engine configuration file read/modify/write"
Crypt-GpgME-0.04,2007-09-13T13:06:32,FLORA,cpan,released,0.04,,Crypt-GpgME,"Perl interface to libgpgme"
Flickr-Upload-Dopplr-0.1,2007-09-13T14:48:41,ASCOPE,backpan,released,0.1,1,Flickr-Upload-Dopplr,"Flickr::Upload subclass to assign location information using Dopplr"
Parse-Eyapp-1.074,2007-09-13T14:57:45,CASIANO,backpan,released,1.074,,Parse-Eyapp,"Extensions for Parse::Yapp"
SVN-Hook-0.26,2007-09-13T14:57:57,CLKAO,cpan,released,0.26,1,SVN-Hook,"Managing subversion hooks"
Class-Dot-1.0.3,2007-09-13T15:02:01,ASKSH,backpan,released,1.0.3,,Class-Dot,"Simple way of creating accessor methods."
Pod-Coverage-0.19,2007-09-13T15:24:54,RCLAMP,cpan,released,0.19,,Pod-Coverage,"Checks if the documentation of a module is comprehensive"

 view all matches for this distribution


Tapper-TAP-Harness

 view release on metacpan or  search on metacpan

t/backcompat/tap_archive_oprofile_reallive.tap  view on Meta::CPAN

##   CC      net/ipv4/ipconfig.o
##   CC      net/sunrpc/stats.o
##   CC      net/ipv6/inet6_hashtables.o
##   CC      drivers/cpufreq/cpufreq.o
##   CC      fs/nfs/unlink.o
##   LD      drivers/char/agp/agpgart.o
##   LD      drivers/char/agp/built-in.o
##   CC      net/ipv4/inet_diag.o
##   CC      drivers/acpi/acpica/nsnames.o
##   CC      net/sunrpc/sysctl.o
##   CC      fs/nfsd/auth.o

 view all matches for this distribution


Task-TravisCI-Cache

 view release on metacpan or  search on metacpan

xt/author/pod-spell.t  view on Meta::CPAN

__DATA__
AFAICT
ABEND
RSRCHBOY
RSRCHBOY's
gpg
ini
metaclass
metaclasses
parameterized
parameterization

 view all matches for this distribution


Template-Plugin-Filter-Minify-CSS-XS

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 5cf386f49901e8ccaad5ab271036754d67114081 t/release-pod-coverage.t
SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 61cea839dd94aaaeb301ccac9b83cde4c5c91b42 t/signature.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlM7AnoACgkQ+CqvSzp9LOx4UACgnimJ0kKyEbXanIeLzuXmBAcO
XmoAoJq4RoQJR3Nundp/vctM4T9f9zal
=UkuG
-----END PGP SIGNATURE-----

 view all matches for this distribution


Template-Plugin-Filter-Minify-CSS

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 5cf386f49901e8ccaad5ab271036754d67114081 t/release-pod-coverage.t
SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 61cea839dd94aaaeb301ccac9b83cde4c5c91b42 t/signature.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlM7Ai0ACgkQ+CqvSzp9LOwBrACcC0ydZ7X6nFhbuxXA4OyctMKA
VZYAoIyVxm0ZiidUvfeiq7q1LCl3jPhM
=aYDV
-----END PGP SIGNATURE-----

 view all matches for this distribution


Template-Plugin-Filter-Minify-JavaScript-XS

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 61cea839dd94aaaeb301ccac9b83cde4c5c91b42 t/signature.t
SHA1 b683e5354a6b991da17a94e51852513b95acb60b weaver.ini
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlM7AVIACgkQ+CqvSzp9LOx4GwCfQzoDETMF0YJpBeAvOwlqRwrS
qgoAoK3WzVJW/u56e19x4xwFqYTnh8Ya
=wR5o
-----END PGP SIGNATURE-----

 view all matches for this distribution


Template-Plugin-Filter-Minify-JavaScript

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 5cf386f49901e8ccaad5ab271036754d67114081 t/release-pod-coverage.t
SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 61cea839dd94aaaeb301ccac9b83cde4c5c91b42 t/signature.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlM7AeUACgkQ+CqvSzp9LOy9jQCgw9+sZJ52bes03NejCZ151yeT
3BQAnjxDW+m1CLOcN0dl5nvFb3zVeARn
=BMsk
-----END PGP SIGNATURE-----

 view all matches for this distribution


Template-Plugin-Filter-String-Truncate

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 df2bd55aa7b3db0c3f9d43b3a16c97922ad14f5b t/signature.t
SHA1 dc5577d84d6015589321fed7ab730d17a80d4410 weaver.ini
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org

iEYEARECAAYFAlM7AsMACgkQ+CqvSzp9LOwSqwCgx7i3w0pL20I9Dt6X2zqSh7mr
l0oAn0QPOwkvSV+ZUbrPYbA7TcZSv/fj
=I/Kt
-----END PGP SIGNATURE-----

 view all matches for this distribution


Template-Plugin-GnuPG

 view release on metacpan or  search on metacpan

lib/Template/Plugin/GnuPG.pm  view on Meta::CPAN

use GnuPG;
use IO::File;
use File::Temp qw(tempfile);

# ----------------------------------------------------------------------
# init(\%gpg_config)
#
# Create the GnuPG object, based on the configuration params passed to
# the plugin.
# ----------------------------------------------------------------------
sub init {

lib/Template/Plugin/GnuPG.pm  view on Meta::CPAN

#
# Encrypt the filtered text to KEY, modified by OPTIONS
# ----------------------------------------------------------------------
sub filter {
    my ($self, $text, $args, $conf) = @_;
    my $gpg = $self->{ _GNUPG };
    my ($in_fh, $in_file) = tempfile("gpgXXXXX", UNLINK => 0);
    my ($out_fh, $out_file) = tempfile("gpgXXXXX", UNLINK => 0);
    my $ciphertext;

    print $in_fh $text or die "Can't write to '$in_fh': $!";
    close $in_fh or die "Can't close tempfile '$in_fh': $!";

lib/Template/Plugin/GnuPG.pm  view on Meta::CPAN

    # keyid, and use it in preference to a key => value pair
    $conf = $self->merge_config($conf);
    $conf->{ recipient } = $args->[0] if ($args && @$args);
    $conf->{ armor } = 1 unless defined $conf->{ armor };

    $gpg->encrypt(
        %$conf,
        plaintext   => $in_file, 
        output      => $out_fh,
    );
    close $out_fh;

lib/Template/Plugin/GnuPG.pm  view on Meta::CPAN

C<Template::Plugin::GnuPG> takes all of the configuration parameters
that C<GnuPG> takes; pass constructor parameters as C<name = value>
pairs to the C<USE> line, and all other parameters as C<name = value>
pairs to the C<FILTER> call:

    [% USE GnuPG gnupg_path = '/opt/bin/gpg' trace = 1 %]

    [% FILTER $GnuPG recipient = "mom@example.com" armor = 1 %]
    The recipe for Neiman-Marcus cookies is:
    [% recipe %]
    [% END %]

 view all matches for this distribution


Template-Plugin-Transformator

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 bdd52baa1a968cc0e1a577a7b073f046d563a317 t/release-kwalitee.t
SHA1 ca37d7b91c2299a98877a6f36d3fab51e8dd906f t/release-pod-coverage.t
SHA1 e7fc4d8f3f29ee522cb53914648393524fc7a6d4 t/release-pod-syntax.t
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
Comment: GPGTools - http://gpgtools.org

iQIcBAEBAgAGBQJUg1XLAAoJEHwWRyBU62lqw7QQAI637WqwhcmO0ubSo5Nf1e+B
Mw51whDgVJkYWPa1FgqmLtl8XdrRt+mhFxKnS+JbZMB2boifekLNeyrsBkuWbsN0
KyhyTlBI32Ge+yBonshvX7KNprJXATCxoAbXraBgq0Ry8QmbOw8CnmMkT9KuDc6w
4bf6Xgnde/N0RuIiYnTHaE0NvEaNEIEC9CCVSIEKNu0qNgmQCCK4N9kxVA4DlCAE

 view all matches for this distribution


Template-Provider-PerContextDBIC

 view release on metacpan or  search on metacpan

SIGNATURE  view on Meta::CPAN

SHA1 4f2933df3566db6f337817aa885889deb213960b t/release-pod-linkcheck.t
SHA1 dc3eefcab3399f9a70861c332bb4a81ddcbb45e4 t/release-pod-syntax.t
SHA1 17514255b5ff5f46ac8ce9e9e3c887c9a205c8ba t/release-unused-vars.t
SHA1 cd0d37469e1761a4f309a80bdb39aa31f47adae3 weaver.ini
-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - http://gpgtools.org

iD8DBQFVLb+Ylp+7gMsE0ucRAnEsAKCodNgP+u5PP8hJMaM2sI59rVf3dACdHZWw
Sl7AxeCmhOwepctfkAl/UwY=
=wG0U
-----END PGP SIGNATURE-----

 view all matches for this distribution


Term-Menus

 view release on metacpan or  search on metacpan

ChangeLog  view on Meta::CPAN


2010-09-04  Brian M. Kelly  <Brian.Kelly@fullauto.com>

        * Version 1.47 released.

        * 'Finally' got the gpg signature going again


2010-08-31  Brian M. Kelly  <Brian.Kelly@fullauto.com>

        * Version 1.46 released.

 view all matches for this distribution


Termbox

 view release on metacpan or  search on metacpan

termbox2/tests/Dockerfile  view on Meta::CPAN

FROM debian:11-slim
ARG cflags=""
RUN export DEBIAN_FRONTEND=noninteractive \
 && apt-get -y update >/dev/null \
 && apt-get -y install lsb-release apt-transport-https ca-certificates wget >/dev/null \
 && wget -qO /etc/apt/trusted.gpg.d/php.gpg 'https://packages.sury.org/php/apt.gpg' \
 && echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | \
    tee /etc/apt/sources.list.d/php.list \
 && apt-get -y update >/dev/null \
 && apt-get -y install make gcc php8.0-cli xvfb xterm xvkbd locales locales-all >/dev/null
ENV LC_ALL=en_US.UTF-8 \

 view all matches for this distribution


Test-Apocalypse

 view release on metacpan or  search on metacpan

lib/Test/Apocalypse.pm  view on Meta::CPAN

		}

		# run it!
		subtest $plugin => sub {
			eval {
				# TODO ignore annoying gpg warnings like 'WARNING: This key is not certified with a trusted signature!' at /usr/local/share/perl/5.18.2/Module/Signature.pm line 265.
				no warnings qw(once);
				local @Test::FailWarnings::ALLOW_FROM = ( 'Module::Signature' );

				local $SIG{__WARN__} = \&Test::FailWarnings::handler;
				$t->do_test();

 view all matches for this distribution


Test-MockTime-DateCalc

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

with Test-MockTime-DateCalc.  If not, see <http://www.gnu.org/licenses/>.



Version 7, August 2019
    - new email, bigger gpg key

Version 6, October 2010
    - tests don't worry about warning messages loading Test::MockTime

Version 5, September 2010

 view all matches for this distribution


( run in 2.120 seconds using v1.01-cache-2.11-cpan-df04353d9ac )