init
This commit is contained in:
5
wcmtools/mogilefs/api/perl/MANIFEST
Executable file
5
wcmtools/mogilefs/api/perl/MANIFEST
Executable file
@@ -0,0 +1,5 @@
|
||||
Makefile.PL
|
||||
MANIFEST
|
||||
MogileFS.pm
|
||||
META.yml Module meta-data (added by MakeMaker)
|
||||
t/00use.t
|
||||
14
wcmtools/mogilefs/api/perl/MANIFEST.SKIP
Executable file
14
wcmtools/mogilefs/api/perl/MANIFEST.SKIP
Executable file
@@ -0,0 +1,14 @@
|
||||
^#
|
||||
\bCVS\b
|
||||
^MANIFEST\.
|
||||
^Makefile$
|
||||
~$
|
||||
\.html$
|
||||
\.old$
|
||||
^blib/
|
||||
_blib$
|
||||
^MakeMaker-\d
|
||||
^\.exists
|
||||
\bdebian\b
|
||||
\btest\b
|
||||
|
||||
13
wcmtools/mogilefs/api/perl/META.yml
Executable file
13
wcmtools/mogilefs/api/perl/META.yml
Executable file
@@ -0,0 +1,13 @@
|
||||
# http://module-build.sourceforge.net/META-spec.html
|
||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
||||
name: MogileFS
|
||||
version: 1.00
|
||||
version_from:
|
||||
installdirs: site
|
||||
requires:
|
||||
fields: 0
|
||||
IO::WrapTie: 2.102
|
||||
LWP::Simple: 0
|
||||
|
||||
distribution_type: module
|
||||
generated_by: ExtUtils::MakeMaker version 6.17
|
||||
34
wcmtools/mogilefs/api/perl/Makefile.PL
Executable file
34
wcmtools/mogilefs/api/perl/Makefile.PL
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/usr/bin/perl
|
||||
#
|
||||
# Perl Makefile for Danga-Socket
|
||||
# $Id: Makefile.PL,v 1.2 2005/02/01 01:15:26 bradfitz Exp $
|
||||
#
|
||||
# Invoke with 'perl Makefile.PL'
|
||||
#
|
||||
# See ExtUtils::MakeMaker (3) for more information on how to influence
|
||||
# the contents of the Makefile that is written
|
||||
#
|
||||
|
||||
use ExtUtils::MakeMaker;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'MogileFS',
|
||||
VERSION => '1.00',
|
||||
AUTHOR => 'Brad Whitaker <whitaker@danga.com>',
|
||||
ABSTRACT => 'MogileFS client library',
|
||||
PREREQ_PM => {
|
||||
'IO::WrapTie' => '2.102',
|
||||
'LWP::Simple' => 0,
|
||||
fields => 0,
|
||||
'Test::More' => 0,
|
||||
},
|
||||
dist => {
|
||||
CI => "cvs commit",
|
||||
RCS_LABEL => 'cvs tag RELEASE_$(VERSION_SYM)',
|
||||
SUFFIX => ".gz",
|
||||
DIST_DEFAULT => 'all tardist',
|
||||
COMPRESS => "gzip",
|
||||
},
|
||||
|
||||
);
|
||||
|
||||
1317
wcmtools/mogilefs/api/perl/MogileFS.pm
Executable file
1317
wcmtools/mogilefs/api/perl/MogileFS.pm
Executable file
File diff suppressed because it is too large
Load Diff
5
wcmtools/mogilefs/api/perl/debian/changelog
Executable file
5
wcmtools/mogilefs/api/perl/debian/changelog
Executable file
@@ -0,0 +1,5 @@
|
||||
libmogilefs-perl (1.00-1) unstable; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Jay Bonci <jaybonci@debian.org> Fri, 14 Jan 2005 15:05:21 -0500
|
||||
1
wcmtools/mogilefs/api/perl/debian/compat
Executable file
1
wcmtools/mogilefs/api/perl/debian/compat
Executable file
@@ -0,0 +1 @@
|
||||
4
|
||||
13
wcmtools/mogilefs/api/perl/debian/control
Executable file
13
wcmtools/mogilefs/api/perl/debian/control
Executable file
@@ -0,0 +1,13 @@
|
||||
Source: libmogilefs-perl
|
||||
Section: perl
|
||||
Priority: optional
|
||||
Maintainer: Jay Bonci <jaybonci@debian.org>
|
||||
Build-Depends-Indep: debhelper (>= 4.1.40), perl (>= 5.6.0-16), libio-stringy-perl, libwww-perl
|
||||
Standards-Version: 3.6.1.0
|
||||
|
||||
Package: libmogilefs-perl
|
||||
Architecture: all
|
||||
Depends: ${perl:Depends}, libio-stringy-perl, libwww-perl
|
||||
Description: perl client for MogileFS
|
||||
MogileFS.pm provides a the perl client for the MogileFS application-level
|
||||
distributed filesystem.
|
||||
27
wcmtools/mogilefs/api/perl/debian/copyright
Executable file
27
wcmtools/mogilefs/api/perl/debian/copyright
Executable file
@@ -0,0 +1,27 @@
|
||||
This package was debianized by Jay Bonci <jay@bonci.com> on
|
||||
Fri Jan 14 15:08:23 EST 2005
|
||||
|
||||
It was downloaded from: http://www.danga.com/dist/MogileFS/client-perl/
|
||||
|
||||
Upstream Authors:
|
||||
|
||||
Brad Whitaker <whitaker@danga.com>
|
||||
Brad Fitzpatrick <brad@danga.com>
|
||||
|
||||
|
||||
Copyright:
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of either:
|
||||
|
||||
a) the GNU General Public License as published by the Free
|
||||
Software Foundation; either version 1, or (at your option) any
|
||||
later version, or
|
||||
|
||||
b) the "Artistic License"
|
||||
|
||||
See:
|
||||
|
||||
/usr/share/common-licenses/Artistic
|
||||
/usr/share/common-licenses/GPL
|
||||
|
||||
For more information regarding these licensing options
|
||||
53
wcmtools/mogilefs/api/perl/debian/rules
Executable file
53
wcmtools/mogilefs/api/perl/debian/rules
Executable file
@@ -0,0 +1,53 @@
|
||||
#!/usr/bin/make -f
|
||||
# Sample debian/rules that uses debhelper.
|
||||
# GNU copyright 1997 to 1999 by Joey Hess.
|
||||
|
||||
# Uncomment this to turn on verbose mode.
|
||||
#export DH_VERBOSE=1
|
||||
|
||||
# This is the debhelper compatibility version to use.
|
||||
# export DH_COMPAT=4
|
||||
|
||||
PACKAGE=`pwd | sed -e "s/.*\/\\(.*\\)-.*/\\1/"`
|
||||
|
||||
|
||||
build:
|
||||
dh_testdir
|
||||
# Add here commands to compile the package.
|
||||
perl Makefile.PL verbose INSTALLDIRS=vendor
|
||||
clean:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
|
||||
-$(MAKE) clean
|
||||
rm -f Makefile.old
|
||||
dh_clean
|
||||
|
||||
install:
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_clean -k
|
||||
dh_installdirs
|
||||
|
||||
$(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr OPTIMIZE="-O2 -g -Wall" test install
|
||||
-find $(CURDIR)/debian -type d | xargs rmdir -p --ignore-fail-on-non-empty
|
||||
|
||||
binary-arch:;
|
||||
binary-indep: build install
|
||||
dh_testdir
|
||||
dh_testroot
|
||||
dh_installdocs
|
||||
dh_installman
|
||||
dh_installchangelogs
|
||||
dh_link
|
||||
dh_strip
|
||||
dh_compress
|
||||
dh_fixperms
|
||||
dh_installdeb
|
||||
dh_perl
|
||||
dh_gencontrol
|
||||
dh_md5sums
|
||||
dh_builddeb
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
.PHONY: build clean binary-indep binary-arch binary install configure
|
||||
2
wcmtools/mogilefs/api/perl/debian/watch
Executable file
2
wcmtools/mogilefs/api/perl/debian/watch
Executable file
@@ -0,0 +1,2 @@
|
||||
version=2
|
||||
http://www.danga.com/dist/MogileFS/client-perl/MogileFS-([0-9].*)\.tar.gz
|
||||
8
wcmtools/mogilefs/api/perl/t/00use.t
Executable file
8
wcmtools/mogilefs/api/perl/t/00use.t
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
use strict;
|
||||
use Test::More tests => 1;
|
||||
|
||||
my $mod = "MogileFS";
|
||||
|
||||
use_ok($mod);
|
||||
Reference in New Issue
Block a user