2007-08-06 19:12:28 +00:00
|
|
|
Name: Perlbal
|
2012-06-22 16:51:57 +00:00
|
|
|
Version: 1.80
|
|
|
|
Release: 1%{?dist}
|
2007-08-06 19:12:28 +00:00
|
|
|
Summary: Reverse-proxy load balancer and webserver
|
2008-02-08 01:26:12 +00:00
|
|
|
License: GPL+ or Artistic
|
2007-08-06 19:12:28 +00:00
|
|
|
Group: System Environment/Daemons
|
|
|
|
URL: http://search.cpan.org/dist/Perlbal/
|
2012-06-22 16:51:57 +00:00
|
|
|
Source0: http://www.laqee.unal.edu.co/CPAN/authors/id/D/DO/DORMANDO/%{name}-%{version}.tar.gz
|
2007-08-06 19:12:28 +00:00
|
|
|
Source1: perlbal.init
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
BuildRequires: perl(HTTP::Date)
|
|
|
|
BuildRequires: perl(HTTP::Response)
|
|
|
|
BuildRequires: perl(BSD::Resource)
|
|
|
|
BuildRequires: perl(Danga::Socket)
|
|
|
|
BuildRequires: perl(IO::AIO)
|
|
|
|
|
|
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
|
|
Requires: perl(IO::AIO)
|
|
|
|
Requires: perl(BSD::Resource)
|
2008-10-19 20:53:47 +00:00
|
|
|
Requires: perl(Perlbal::XS::HTTPHeaders)
|
2007-08-06 19:12:28 +00:00
|
|
|
|
|
|
|
Requires(post): /sbin/chkconfig
|
|
|
|
Requires(preun): /sbin/chkconfig, /sbin/service
|
|
|
|
Requires(postun): /sbin/service
|
|
|
|
|
|
|
|
%description
|
|
|
|
Perlbal is a single-threaded event-based server supporting HTTP load
|
|
|
|
balancing, web serving, and a mix of the two. Perlbal can act as either a web
|
|
|
|
server or a reverse proxy.
|
|
|
|
|
|
|
|
One of the defining things about Perlbal is that almost everything can be
|
|
|
|
configured or reconfigured on the fly without needing to restart the software.
|
|
|
|
A basic configuration file containing a management port enables you to easily
|
|
|
|
perform operations on a running instance of Perlbal.
|
|
|
|
|
|
|
|
Perlbal can also be extended by means of per-service (and global) plugins that
|
|
|
|
can override many parts of request handling and behavior.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n Perlbal-%{version}
|
|
|
|
|
|
|
|
%build
|
|
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
|
|
|
|
make pure_install PERL_INSTALL_ROOT=%{buildroot}
|
|
|
|
|
|
|
|
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
|
|
|
|
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
|
|
|
|
|
|
%{_fixperms} %{buildroot}/*
|
|
|
|
|
|
|
|
install -D -p -m 0644 conf/webserver.conf %{buildroot}%{_sysconfdir}/perlbal/perlbal.conf
|
|
|
|
install -D -p -m 0755 %{SOURCE1} %{buildroot}%{_initrddir}/perlbal
|
|
|
|
mkdir -p doc/examples
|
|
|
|
mv conf/* doc/examples
|
|
|
|
|
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
|
|
|
|
|
|
|
%post
|
|
|
|
/sbin/chkconfig --add perlbal
|
|
|
|
|
|
|
|
%preun
|
|
|
|
if [ $1 = 0 ]; then
|
|
|
|
/sbin/chkconfig --del perlbal
|
|
|
|
/sbin/service perlbal stop >/dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%postun
|
|
|
|
if [ $1 -ge 1 ] ; then
|
|
|
|
/sbin/service perlbal condrestart > /dev/null 2>&1 || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%dir %{_sysconfdir}/perlbal
|
|
|
|
%config(noreplace) %{_sysconfdir}/perlbal/perlbal.conf
|
|
|
|
%{_initrddir}/perlbal
|
|
|
|
%doc CHANGES doc/*
|
|
|
|
%{perl_vendorlib}/*
|
|
|
|
%{_bindir}/perlbal
|
|
|
|
%{_mandir}/man1/*
|
|
|
|
%{_mandir}/man3/*
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-06-22 16:51:57 +00:00
|
|
|
* Fri Jun 22 2012 Luis Bazan <lbazan@fedoraproject.org> - 1.80-1
|
|
|
|
- New Upstream Version
|
|
|
|
|
2011-07-21 03:39:28 +00:00
|
|
|
* Wed Jul 20 2011 Luis Bazan <lbazan@bakertillypanama.com> - 1.79-2
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Wed Jul 13 2011 Luis Bazan <bazanluis20@gmail.com> 1.79-1
|
|
|
|
- Upstream released new version: http://cpansearch.perl.org/src/DORMANDO/Perlbal-1.79/CHANGES
|
|
|
|
|
2010-04-06 14:22:22 +00:00
|
|
|
* Tue Apr 06 2010 Ruben Kerkhof <ruben@rubenkerkhof.com> 1.75-1
|
|
|
|
- Upstream released new version
|
|
|
|
|
2009-07-24 15:44:39 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.70-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-23 22:20:12 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.70-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-10-19 20:53:47 +00:00
|
|
|
* Sun Oct 19 2008 Ruben Kerkhof <ruben@rubenkerkhof.com> 1.70-2
|
|
|
|
- Use Perlbal::XS::HTTPHeaders to speed up header parsing
|
|
|
|
|
2008-03-09 13:43:42 +00:00
|
|
|
* Sun Mar 09 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.70-1
|
|
|
|
- 1.70 (fixes build for perl 5.10.0)
|
|
|
|
|
2008-02-08 05:04:59 +00:00
|
|
|
* Thu Feb 07 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.60-2
|
|
|
|
- don't need patch, merged with 1.60
|
|
|
|
|
2008-02-08 04:49:07 +00:00
|
|
|
* Thu Feb 07 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.60-1
|
|
|
|
- 1.60
|
|
|
|
|
2008-02-08 01:26:12 +00:00
|
|
|
* Thu Feb 07 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.59-2
|
|
|
|
- rebuild for new perl
|
|
|
|
|
2007-08-06 19:12:28 +00:00
|
|
|
* Wed Jun 20 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 1.59-1
|
|
|
|
- Upstream released new version
|
|
|
|
- Received patch from upstream for failing buffered upload test (240693)
|
|
|
|
* Sat May 12 2007 Ruben Kerkhof <ruben@rubenkerkhof.com> 1.58-1
|
|
|
|
- Initial import
|
|
|
|
|