~ubuntu-branches/debian/squeeze/redland-bindings/squeeze

« back to all changes in this revision

Viewing changes to perl/lib/RDF/Redland.pm

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2009-04-07 00:24:21 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090407002421-dce2r4otm5vqtheg
Tags: 1.0.8.1-2
* Use new sections ruby, php for librdf-ruby and php5-librdf respectively.
* Merge features from ubuntu packaging.  Thanks to Matthias Klose
  (not taking linker -Wl,--as-needed since that makes dyloading fail
  to pull in raptor symbols):
  debian/rules:
  - get python lib dir from distutils
  - make dh_pycentral use symlinks
  debian/python-librdf.examples:
  - add data/dc.rdf to examples dir and adjust example.py
    to point to it (Closes: #402612)
* Patch python/Makefile.in so it can allow the include dir to be
  overridden by the particular python version build in debian/rules
  using PYTHON_INCLUDES

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#
3
3
# Redland.pm - Redland top level Perl module
4
4
#
5
 
# $Id: Redland.pm.in 10592 2006-03-05 08:28:27Z cmdjb $
6
 
#
7
 
# Copyright (C) 2000-2005 David Beckett - http://purl.org/net/dajobe/
 
5
# Copyright (C) 2000-2005 David Beckett - http://www.dajobe.org/
8
6
# Copyright (C) 2000-2005 University of Bristol - http://www.bristol.ac.uk/
9
7
10
8
# This package is Free Software or Open Source available under the
85
83
 
86
84
use vars qw($VERSION $Debug $World $Error_Sub $Warning_Sub);
87
85
 
88
 
$VERSION= eval sprintf("%s.%02d_%02d_%02d", split(/\./, "1.0.7.1"));
 
86
$VERSION= eval sprintf("%s.%02d_%02d_%02d", split(/\./, "1.0.8.1"));
89
87
 
90
88
$Debug=0;
91
89
 
233
231
 
234
232
=head1 AUTHOR
235
233
 
236
 
Dave Beckett - http://purl.org/net/dajobe/
 
234
Dave Beckett - http://www.dajobe.org/
237
235
 
238
236
=cut
239
237