]> git.pld-linux.org Git - packages/perl-Net-RBLClient.git/blob - perl-Net-RBLClient.spec
8bab86ceb050a439a3c7f5c2d55221eabcff917b
[packages/perl-Net-RBLClient.git] / perl-Net-RBLClient.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %include        /usr/lib/rpm/macros.perl
6 %define pdir    Net
7 %define pnam    RBLClient
8 Summary:        Net::RBLClient - Queries multiple Realtime Blackhole Lists in parallel
9 Summary(pl.UTF-8):      Net::RBLClient - odpytywanie wielu list RBL równolegle
10 Name:           perl-Net-RBLClient
11 Version:        0.2
12 Release:        1
13 # same as perl
14 License:        GPL v1+ or Artistic
15 Group:          Development/Languages/Perl
16 Source0:        http://www.cpan.org/modules/by-module/%{pdir}/%{pdir}-%{pnam}-%{version}.tar.gz
17 # Source0-md5:  4691f4a80b31c83491dcbc53fc4c1e02
18 URL:            http://search.cpan.org/dist/Net-RBLClient/
19 BuildRequires:  perl-devel >= 1:5.8.0
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 BuildArch:      noarch
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 This module is used to discover what RBLs are listing a particular
26 IP address. It parallelizes requests for fast response.
27
28 An RBL, or Realtime Blackhole List, is a list of IP addresses meeting
29 some criteria such as involvement in Unsolicited Bulk Email. Each RBL
30 has its own criteria for addition and removal of addresses. If you
31 want to block email or other traffic to/from your network based on one
32 or more RBL's, you should carefully study the behavior of those RBL's
33 before and during such blocking.
34
35 %description -l pl.UTF-8
36 Ten moduł służy do ustalania, które RBL zawierają dany adres IP.
37 Zrównolegla on zapytania w celu otrzymania odpowiedzi szybciej.
38
39 RBL (Realtime Blackhole List) to lista adresów IP spełniających pewne
40 kryteria, takie jak udział w wysyłaniu spamu. Każdy RBL ma własne
41 kryteria dodawania i usuwania adresów. Aby zablokować pocztę lub inny
42 ruch z/do własnej sieci w oparciu o jeden lub więcej RBL, należy
43 uważnie zaznajomić się z zachowaniem danego RBL przed i w czasie
44 takiego blokowania.
45
46 %prep
47 %setup -q -n RBLCLient-%{version}
48
49 %build
50 %{__perl} Makefile.PL \
51         INSTALLDIRS=vendor
52 %{__make}
53
54 %{?with_tests:%{__make} test}
55
56 %install
57 rm -rf $RPM_BUILD_ROOT
58
59 %{__make} install \
60         DESTDIR=$RPM_BUILD_ROOT
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc README
68 %{perl_vendorlib}/Net/*.pm
69 %{_mandir}/man3/*
This page took 0.048737 seconds and 2 git commands to generate.