Codebase list libcaptcha-recaptcha-perl / 47f28b8
[svn-inject] Applying Debian modifications (0.94-1) to trunk Gregor Herrmann 12 years ago
6 changed file(s) with 153 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
0 libcaptcha-recaptcha-perl (0.94-1) unstable; urgency=low
1
2 * New Upstream release.
3 * Add Vcs-* control fields.
4 * Bump debhelper compat to 7.
5 * Relicense packaging under WTFPLv2.
6 * Replace dh_clean -k with dh_prep.
7 * Bump Standards-Version to 3.9.0.
8
9 -- Gerfried Fuchs <rhonda@debian.at> Fri, 16 Jul 2010 00:05:40 +0200
10
11 libcaptcha-recaptcha-perl (0.92-1) unstable; urgency=low
12
13 * Initial Release (closes: #478516)
14
15 -- Gerfried Fuchs <rhonda@debian.at> Tue, 29 Apr 2008 16:19:22 +0200
0 Source: libcaptcha-recaptcha-perl
1 Section: perl
2 Priority: optional
3 Build-Depends: debhelper (>= 7)
4 Build-Depends-Indep: perl (>= 5.6.10-12), libwww-perl, libhtml-tiny-perl,
5 libtest-pod-perl, libtest-pod-coverage-perl
6 Maintainer: Gerfried Fuchs <rhonda@debian.at>
7 Standards-Version: 3.9.0
8 Homepage: http://search.cpan.org/dist/Captcha-reCAPTCHA/
9 Vcs-Browser: http://git.deb.at/w/pkg/libcaptcha-recaptcha-perl.git
10 Vcs-Git: git://git.deb.at/pkg/libcaptcha-recaptcha-perl.git
11
12 Package: libcaptcha-recaptcha-perl
13 Architecture: all
14 Depends: ${perl:Depends}, ${misc:Depends}, libwww-perl, libhtml-tiny-perl (>= 0.904)
15 Description: perl implementation of the reCAPTCHA API
16 reCAPTCHA is a hybrid mechanical turk and captcha that allows visitors
17 who complete the captcha to assist in the digitization of books.
18 From http://recaptcha.net/learnmore.html:
19 .
20 reCAPTCHA improves the process of digitizing books by sending words that
21 cannot be read by computers to the Web in the form of CAPTCHAs for
22 humans to decipher. More specifically, each word that cannot be read
23 correctly by OCR is placed on an image and used as a CAPTCHA. This is
24 possible because most OCR programs alert you when a word cannot be read
25 correctly.
26 .
27 To use reCAPTCHA you need to register your site here:
28 https://admin.recaptcha.net/recaptcha/createsite/
0 This is the debian package for the Captcha-reCAPTCHA module.
1 It was created by Gerfried Fuchs <rhonda@debian.at> using dh-make-perl.
2
3 It was downloaded from http://search.cpan.org/dist/Captcha-reCAPTCHA/
4
5 The upstream author is: Andy Armstrong <andy@hexten.net>.
6
7 Copyright:
8
9 Copyright (c) 2007, Andy Armstrong <andy@hexten.net>. All rights reserved.
10
11 This module is free software; you can redistribute it and/or modify
12 it under the terms of either:
13
14 a) the GNU General Public License as published by the Free Software
15 Foundation; either version 1, or (at your option) any later
16 version, or
17
18 b) the "Artistic License" which comes with Perl.
19
20 On Debian GNU/Linux systems, the complete text of the GNU General
21 Public License version 2 can be found in `/usr/share/common-licenses/GPL-2',
22 newer versions can be found in the same directory. The Artistic Licence
23 is stored in `/usr/share/common-licenses/Artistic'.
24
25 The debianization of the package is licensed under the WTFPLv2:
26
27 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
28 Version 2, December 2004
29
30 Copyright (C) 2008-2010 Gerfried Fuchs
31
32 Everyone is permitted to copy and distribute verbatim or modified
33 copies of this license document, and changing it is allowed as long
34 as the name is changed.
35
36 DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
37 TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
38
39 0. You just DO WHAT THE FUCK YOU WANT TO.
0 #!/usr/bin/make -f
1 # debian/rules for libcaptcha-recaptcha-perl
2 # Copyright 2008-2010 by Gerfried Fuchs <rhonda@debian.at>
3 # Licenced under WTFPLv2
4
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7
8 # If set to a true value then MakeMaker's prompt function will
9 # always return the default without waiting for user input.
10 export PERL_MM_USE_DEFAULT=1
11
12 PERL ?= /usr/bin/perl
13 PACKAGE = $(shell dh_listpackages)
14 TMP = $(CURDIR)/debian/$(PACKAGE)
15
16 build: build-stamp
17 build-stamp:
18 dh_testdir
19 # Add commands to compile the package here
20 $(PERL) Makefile.PL INSTALLDIRS=vendor
21 $(MAKE)
22 $(MAKE) test
23 touch $@
24
25 clean:
26 dh_testdir
27 dh_testroot
28 dh_clean build-stamp install-stamp
29 # Add commands to clean up after the build process here
30 [ ! -f Makefile ] || $(MAKE) realclean
31
32 install: install-stamp
33 install-stamp: build-stamp
34 dh_testdir
35 dh_testroot
36 dh_prep
37 # Add commands to install the package into $(TMP) here
38 $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
39 [ ! -d $(TMP)/usr/lib/perl5 ] || \
40 rmdir --ignore-fail-on-non-empty --parents --verbose \
41 $(TMP)/usr/lib/perl5
42 touch $@
43
44 binary-arch:
45 # We have nothing to do here for an architecture-independent package
46
47 binary-indep: build install
48 dh_testdir
49 dh_testroot
50 dh_installexamples examples/*
51 dh_installdocs README
52 dh_installchangelogs Changes
53 dh_perl
54 dh_compress
55 dh_fixperms
56 dh_installdeb
57 dh_gencontrol
58 dh_md5sums
59 dh_builddeb
60
61 binary: binary-indep binary-arch
62 .PHONY: build clean binary-indep binary-arch binary install
0 # format version number, currently 3; this line is compulsory!
1 version=3
2 # URL to the package page followed by a regex to search
3 http://search.cpan.org/dist/Captcha-reCAPTCHA/ .*/Captcha-reCAPTCHA-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$