Skip to content

Commit

Permalink
Import of ASCOPE/Net-Flickr-RDF-1.6 from CPAN.
Browse files Browse the repository at this point in the history
gitpan-cpan-distribution: Net-Flickr-RDF
gitpan-cpan-version:      1.6
gitpan-cpan-path:         ASCOPE/Net-Flickr-RDF-1.6.tar.gz
gitpan-cpan-author:       ASCOPE
gitpan-cpan-maturity:     released
  • Loading branch information
Aaron Straup Cope authored and Gitpan committed Oct 21, 2014
1 parent 124a410 commit f4e88fd
Show file tree
Hide file tree
Showing 8 changed files with 1,342 additions and 870 deletions.
14 changes: 7 additions & 7 deletions Build.PL
@@ -1,4 +1,4 @@
# $Id: Build.PL,v 1.4 2005/12/17 17:54:04 asc Exp $
# $Id: Build.PL,v 1.7 2006/03/10 08:55:19 asc Exp $

use strict;
use Module::Build;
Expand All @@ -9,12 +9,12 @@ my $build = Module::Build->new(module_name => 'Net::Flickr::RDF',
dist_version_from => 'lib/Net/Flickr/RDF.pm',
license => 'perl',
requires => {
'perl' => '>= 5.8.0',
'Net::Flickr::API' => '>= 1.2',
'RDF::Simple' => '>= 0.22',
'Date::Parse' => '>= 2.27',
'Date::Format' => '>= 2.22',
'Readonly' => '0',
'perl' => '>= 5.8.0',
'Net::Flickr::API' => '>= 1.2',
'RDF::Simple' => '>= 0.22',
'Date::Parse' => '>= 2.27',
'Date::Format' => '>= 2.22',
'Readonly' => '0',
},
build_requires => {
'Test::Simple' => '>= 0.47',
Expand Down
194 changes: 122 additions & 72 deletions Changes
@@ -1,72 +1,122 @@
# $Id: Changes,v 1.8 2005/12/18 04:32:20 asc Exp $

Changes for the Net::Flickr::RDF Perl library

1.5 Sat Dec 17 2005

- Fixed a bug looking for an element called 'descption' rather
than 'description'

1.4 Sat Dec 17 2005

- Require Net::Flickr::API 1.2.

- Fixed to return 1 like all good modules do.

- Fixed MANIFEST to, you know, point to the right files.

- Fixed t/00-load.t to, you know, load the right package.

1.3 Thu Oct 06 2005

- FIXED serialization methods to use STDOUT if no file handle
- is defined...just like the docs say

- ADDED 'make_tag_triples'; 'make_photoset_triples';
'make_group_triples'; 'make_grouppool_triples' object
methods

- ADDED 'serialise_triples' and 'serialize_triples' object
methods; these replace the private '_describe' method which
has been removed

- ADDED 'build_photoset_uri'; 'build_group_uri';
'build_grouppool_uri' package method

- ADDED caching for most 'collect_*_data' methods

- CHANGED all pre-existing 'build_*_uri' methods to be package
methods instead of object methods; this should not affect
backwards compatibility

- UPDATED make_user_triples; make_cc_triples object methods to
return a list if (wantarray)

1.2 Wed Oct 05 2005

- ADDED make_user_triples; make_cc_triples object methods

- ADDED proper CC RDF blobs. photos licensed under the CC now
reference a cc:License triple; photo with no license will
continue to use dc:license

- UPDATED collect_user_data to set a 'user_id' key

- UPDATED POD

1.1 Wed Sep 28 2005

- FIXED URI for (personal) tags

- FIXED POD

- FIXED Changes

- UPDATED uri_shortform to use 'namespaces' package method
when package has been subclassed

- ADDED build_user_uri; build_user_tag_uri; build_global_tag_uri

1.0 Fri Sep 22 2005

- Initial release.
# -*-n3-*-

@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix asc: <http://aaronland.info/ns/changefile/> .

<>
dc:identifier "$Id: Changes,v 1.13 2006/03/10 08:55:19 asc Exp $" ;
dc:description "Changes for Net::Flickr::RDF.pm" ;
dcterms:references <http://aaronland.info/perl/net/flickr/rdf/> .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.6.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.5.tar.gz>;

doap:Version [
doap:revision "1.6" ;
doap:created "2006-03-13" ;
];
asc:changes [
asc:addition "Add support for comments." ;
asc:addition "Add support for geotags by reading 'geo:lat' and 'geo:long' Flickr tags (experimental)." ;
asc:addition "Added 'build_photo_uri' package method." ;
asc:update "Updated POD." ;
asc:update "Updated Changes file to use RDF/N3." ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.5.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.4.tar.gz>;

doap:Version [
doap:revision "1.5" ;
doap:created "2005-12-17" ;
];
asc:changes [
asc:bugfix "Fixed a bug looking for an element called 'descption' rather than 'description'." ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.4.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.3.tar.gz>;

doap:Version [
doap:revision "1.4" ;
doap:created "2005-12-17" ;
];
asc:changes [
asc:update "Require Net::Flickr::API 1.2." ;
asc:bugfix "Fixed to return 1 like all good modules do." ;
asc:bugfix "Fixed MANIFEST to, you know, point to the right files." ;
asc:bugfix "Fixed t/00-load.t to, you know, load the right package." ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.3.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.2.tar.gz>;

doap:Version [
doap:revision "1.3" ;
doap:created "2005-10-06" ;
];
asc:changes [
asc:bugfix "Fixed serialization methods to use STDOUT if no file handle is defined...just like the docs say." ;
asc:addition "'make_tag_triples'; 'make_photoset_triples'; 'make_group_triples'; 'make_grouppool_triples' object methods." ;
asc:addition "'serialise_triples' and 'serialize_triples' object methods; these replace the private '_describe' method which has been removed." ;
asc:addition "'build_photoset_uri'; 'build_group_uri'; 'build_grouppool_uri' package method." ;
asc:addition "'prune_triples' package method." ;
asc:addition "Caching for most 'collect_*_data' methods." ;
asc:addition "rdf:type SPO for global tag URLs." ;
asc:update "Changed all pre-existing 'build_*_uri' methods to be package methods instead of object methods; this should not affect backwards compatibility." ;
asc:update "'make_user_triples'; 'make_cc_triples' object methods to return a list if (wantarray)" ;
asc:update "POD" ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.2.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.1.tar.gz>;

doap:Version [
doap:revision "1.2" ;
doap:created "2005-10-05" ;
];
asc:changes [
asc:addition "Make_user_triples; make_cc_triples object methods." ;
asc:addition "Proper CC RDF blobs. photos licensed under the CC now reference a cc:License triple; photo with no license will continue to use dc:license." ;
asc:update "Collect_user_data to set a 'user_id' key." ;
asc:update "Updated POD." ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.1.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;
dcterms:replaces <http://aaronland.info/perl/net/flickr/rdf/Net-Flickr-RDF-1.0.tar.gz>;

doap:Version [
doap:revision "1.1" ;
doap:created "2005-09-28" ;
];
asc:changes [
asc:bugfix "Fixed URI for (personal) tags." ;
asc:bugfix "Fixed POD." ;
asc:update "Updated POD." ;
asc:update "Updated uri_shortform to use 'namespaces' package method when package has been subclassed." ;
asc:addition "Build_user_uri; build_user_tag_uri; build_global_tag_uri" ;
] .

<http://aaronland.info/perl/net/delicious/Net-Flickr-RDF-1.0.tar.gz>
dcterms:isVersionOf <http://aaronland.info/perl/flickr/rdf/> ;

doap:Version [
doap:revision "1.0" ;
doap:created "2005-09-22" ;
];
asc:changes [
asc:comment "Initial release." ;
] .

<http://aaronland.info/perl/net/flickr/rdf/>
a doap:Project ;
doap:download-page "http://search.cpan.org/dist/Net-Flickr-RDF/" ;
doap:download-mirror "http://aaronland.info/perl/net/flickr/rdf/" .
3 changes: 2 additions & 1 deletion MANIFEST
@@ -1,9 +1,10 @@
# $Id: MANIFEST,v 1.4 2005/09/01 17:43:17 asc Exp $
# $Id: MANIFEST,v 1.2 2006/03/14 05:34:38 asc Exp $
Build.PL
Changes
lib/Net/Flickr/RDF.pm
Makefile.PL
MANIFEST
MANIFEST.SKIP
META.yml
README
t/00-load.t
14 changes: 14 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,14 @@
\bRCS\b
\bCVS\b
,v$
\B\.svn\b
^bin/
^blib/
^pm_to_blib
^MakeMaker-\d
Makefile$
Makefile.old$
\.db
t/TEST$
t/SMOKE$
^blibdirs\.ts
17 changes: 2 additions & 15 deletions META.yml
@@ -1,21 +1,8 @@
--- #YAML:1.0
name: Net-Flickr-RDF
version: 1.5
version: 1.6
author:
- Aaron Straup Cope E<lt>ascope@cpan.orgE<gt>
abstract: a.k.a RDF::Describes::Flickr
license: perl
requires:
Date::Format: '>= 2.22'
Date::Parse: '>= 2.27'
Net::Flickr::API: '>= 1.2'
RDF::Simple: '>= 0.22'
Readonly: 0
perl: '>= 5.8.0'
build_requires:
Test::Simple: '>= 0.47'
provides:
Net::Flickr::RDF:
file: lib/Net/Flickr/RDF.pm
version: 1.5
generated_by: Module::Build version 0.2604
generated_by: Module::Build version 0.2611, without YAML.pm

0 comments on commit f4e88fd

Please sign in to comment.