2012-11-07 08:47:27 +00:00
|
|
|
# Tests require accessible syslog
|
|
|
|
%bcond_with test
|
|
|
|
|
2004-11-08 05:11:44 +00:00
|
|
|
Name: perl-Unix-Syslog
|
2008-05-31 17:58:18 +00:00
|
|
|
Version: 1.1
|
2024-08-08 11:30:49 +00:00
|
|
|
Release: 52%{?dist}
|
2005-09-06 01:47:04 +00:00
|
|
|
Summary: Perl interface to the UNIX syslog(3) calls
|
2023-05-18 08:15:20 +00:00
|
|
|
License: Artistic-2.0
|
2018-06-04 12:57:32 +00:00
|
|
|
URL: https://metacpan.org/release/Unix-Syslog
|
2020-04-06 15:42:59 +00:00
|
|
|
Source0: https://cpan.metacpan.org/modules/by-module/Unix/Unix-Syslog-%{version}.tar.gz
|
2016-04-19 16:11:09 +00:00
|
|
|
# Module Build
|
|
|
|
BuildRequires: coreutils
|
|
|
|
BuildRequires: findutils
|
|
|
|
BuildRequires: gcc
|
|
|
|
BuildRequires: make
|
|
|
|
BuildRequires: perl-devel
|
2016-06-24 07:25:38 +00:00
|
|
|
BuildRequires: perl-generators
|
2020-04-06 15:42:59 +00:00
|
|
|
BuildRequires: perl-interpreter
|
2024-07-11 16:20:53 +00:00
|
|
|
BuildRequires: perl(Config)
|
2020-02-06 06:09:36 +00:00
|
|
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
|
2016-04-19 16:11:09 +00:00
|
|
|
# Module Runtime
|
2012-11-07 08:25:50 +00:00
|
|
|
BuildRequires: perl(DynaLoader)
|
|
|
|
BuildRequires: perl(Exporter)
|
2016-04-19 16:11:09 +00:00
|
|
|
BuildRequires: perl(strict)
|
|
|
|
BuildRequires: perl(vars)
|
|
|
|
# Test Suite
|
|
|
|
%if %{with test}
|
2012-11-07 08:47:27 +00:00
|
|
|
BuildRequires: syslog
|
|
|
|
%endif
|
2016-04-19 16:11:09 +00:00
|
|
|
# Dependencies
|
2012-11-07 08:47:27 +00:00
|
|
|
Requires: syslog
|
2004-11-08 05:11:44 +00:00
|
|
|
|
2016-04-19 16:11:09 +00:00
|
|
|
# Don't "provide" private Perl libs
|
2012-11-07 08:27:22 +00:00
|
|
|
%{?perl_default_filter}
|
|
|
|
|
2004-11-08 05:11:44 +00:00
|
|
|
%description
|
|
|
|
This module provides an interface to the system logger syslogd(8) via
|
2016-04-19 16:11:09 +00:00
|
|
|
Perl's XSUBs. The implementation attempts to resemble the native
|
|
|
|
libc-functions of your system, so that anyone being familiar with
|
|
|
|
syslog.h should be able to use this module right away.
|
2004-11-08 05:11:44 +00:00
|
|
|
|
2024-07-11 16:20:53 +00:00
|
|
|
%package tests
|
|
|
|
Summary: Tests for %{name}
|
|
|
|
Requires: %{name} = %{?epoch:%{epoch}:}%{version}-%{release}
|
|
|
|
Requires: perl-Test-Harness
|
|
|
|
|
|
|
|
%description tests
|
|
|
|
Tests from %{name}. Execute them
|
|
|
|
with "%{_libexecdir}/%{name}/test".
|
|
|
|
|
2004-11-08 05:11:44 +00:00
|
|
|
%prep
|
|
|
|
%setup -q -n Unix-Syslog-%{version}
|
2024-07-11 16:20:53 +00:00
|
|
|
# Help generators to recognize Perl scripts
|
|
|
|
perl -i -MConfig -ple 'print $Config{startperl} if $. == 1 && !s{\A#!.*perl\b}{$Config{startperl}}' "test.pl"
|
|
|
|
chmod +x "test.pl"
|
2004-11-08 05:11:44 +00:00
|
|
|
|
|
|
|
%build
|
2020-02-06 06:09:36 +00:00
|
|
|
perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 OPTIMIZE="%{optflags}"
|
|
|
|
%{make_build}
|
2004-11-08 05:11:44 +00:00
|
|
|
|
|
|
|
%install
|
2020-02-06 06:09:36 +00:00
|
|
|
%{make_install}
|
2020-04-06 15:42:59 +00:00
|
|
|
find %{buildroot} -type f -name '*.bs' -empty -delete
|
|
|
|
%{_fixperms} -c %{buildroot}
|
2024-07-11 16:20:53 +00:00
|
|
|
# Install tests
|
|
|
|
mkdir -p %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cp -a test.pl %{buildroot}%{_libexecdir}/%{name}
|
|
|
|
cat > %{buildroot}%{_libexecdir}/%{name}/test << 'EOF'
|
|
|
|
#!/bin/sh
|
|
|
|
T2_HARNESS_JOB_COUNT="$(getconf _NPROCESSORS_ONLN)" %{_libexecdir}/%{name}/test.pl
|
|
|
|
EOF
|
|
|
|
chmod +x %{buildroot}%{_libexecdir}/%{name}/test
|
2004-11-08 05:11:44 +00:00
|
|
|
|
2005-09-06 01:47:04 +00:00
|
|
|
%check
|
2012-11-07 08:47:27 +00:00
|
|
|
%if %{with test}
|
|
|
|
make test
|
|
|
|
%endif
|
2004-11-08 05:11:44 +00:00
|
|
|
|
|
|
|
%files
|
2016-04-19 16:11:09 +00:00
|
|
|
%license Artistic
|
|
|
|
%doc README Changes
|
|
|
|
%{perl_vendorarch}/Unix/
|
|
|
|
%{perl_vendorarch}/auto/Unix/
|
|
|
|
%{_mandir}/man3/Unix::Syslog.3*
|
2004-11-08 05:11:44 +00:00
|
|
|
|
2024-07-11 16:20:53 +00:00
|
|
|
%files tests
|
|
|
|
%{_libexecdir}/%{name}
|
|
|
|
|
2004-11-08 05:11:44 +00:00
|
|
|
%changelog
|
2024-08-08 11:30:49 +00:00
|
|
|
* Thu Aug 08 2024 Troy Dawson <tdawson@redhat.com> - 1.1-52
|
|
|
|
- Bump release for Aug 2024 java mass rebuild
|
|
|
|
|
2024-07-11 16:20:53 +00:00
|
|
|
* Thu Jul 11 2024 Michal Josef Špaček <mspacek@redhat.com> - 1.1-51
|
|
|
|
- Package tests
|
|
|
|
|
2024-06-24 16:14:09 +00:00
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.1-50
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
2024-01-25 21:45:26 +00:00
|
|
|
* Thu Jan 25 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-49
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2024-01-21 20:01:34 +00:00
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-48
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
2023-07-21 03:17:53 +00:00
|
|
|
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-47
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
2023-07-11 12:44:06 +00:00
|
|
|
* Tue Jul 11 2023 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-46
|
|
|
|
- Perl 5.38 rebuild
|
|
|
|
|
2023-01-20 07:33:20 +00:00
|
|
|
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-45
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-22 12:25:58 +00:00
|
|
|
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-44
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-05-30 17:34:25 +00:00
|
|
|
* Mon May 30 2022 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-43
|
|
|
|
- Perl 5.36 rebuild
|
|
|
|
|
2022-01-21 06:32:23 +00:00
|
|
|
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-42
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-27 07:17:19 +00:00
|
|
|
* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-41
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-21 10:01:44 +00:00
|
|
|
* Fri May 21 2021 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-40
|
|
|
|
- Perl 5.34 rebuild
|
|
|
|
|
2021-01-27 05:45:26 +00:00
|
|
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-39
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-07-28 20:00:09 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-38
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-06-22 16:01:29 +00:00
|
|
|
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-37
|
|
|
|
- Perl 5.32 rebuild
|
|
|
|
|
2020-02-06 06:09:36 +00:00
|
|
|
* Thu Feb 06 2020 Tom Stellard <tstellar@redhat.com> - 1.1-36
|
|
|
|
- Spec file cleanups: Use make_build, make_install macros, and use NO_PACKLIST=1
|
|
|
|
- https://docs.fedoraproject.org/en-US/packaging-guidelines/#_parallel_make
|
|
|
|
- https://fedoraproject.org/wiki/Perl/Tips#ExtUtils::MakeMaker
|
|
|
|
|
2020-01-30 05:59:55 +00:00
|
|
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-35
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-26 07:57:13 +00:00
|
|
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-34
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-05-30 12:16:52 +00:00
|
|
|
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-33
|
|
|
|
- Perl 5.30 rebuild
|
|
|
|
|
2019-02-02 01:28:26 +00:00
|
|
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-32
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 20:41:29 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-31
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 20:14:30 +00:00
|
|
|
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-30
|
|
|
|
- Perl 5.28 rebuild
|
|
|
|
|
2018-02-09 02:13:49 +00:00
|
|
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-29
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-03 05:46:27 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-28
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-27 06:57:17 +00:00
|
|
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-27
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-06-04 13:56:41 +00:00
|
|
|
* Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-26
|
|
|
|
- Perl 5.26 rebuild
|
|
|
|
|
2017-02-11 05:57:54 +00:00
|
|
|
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-05-15 00:55:40 +00:00
|
|
|
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-24
|
|
|
|
- Perl 5.24 rebuild
|
|
|
|
|
2016-04-19 16:11:09 +00:00
|
|
|
* Tue Apr 19 2016 Paul Howarth <paul@city-fan.org> - 1.1-23
|
|
|
|
- Fix FTBFS due to missing buildreq perl-devel
|
|
|
|
- Simplify find commands using -empty and -delete
|
|
|
|
- Make %%files list more explicit
|
|
|
|
|
2016-02-04 16:32:53 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.1-22
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-18 13:22:31 +00:00
|
|
|
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-03 12:15:08 +00:00
|
|
|
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-20
|
|
|
|
- Perl 5.22 rebuild
|
|
|
|
|
2014-08-27 10:11:12 +00:00
|
|
|
* Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 1.1-19
|
|
|
|
- Perl 5.20 rebuild
|
|
|
|
|
2014-08-17 17:52:45 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 12:07:27 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-04 01:53:56 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-07-18 03:12:06 +00:00
|
|
|
* Thu Jul 18 2013 Petr Pisar <ppisar@redhat.com> - 1.1-15
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
2013-02-14 16:10:23 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-11-07 08:47:27 +00:00
|
|
|
* Wed Nov 07 2012 Petr Pisar <ppisar@redhat.com> - 1.1-13
|
|
|
|
- Conditionalize test dependencies
|
|
|
|
|
2012-11-07 08:25:50 +00:00
|
|
|
* Wed Nov 07 2012 Petr Pisar <ppisar@redhat.com> - 1.1-12
|
|
|
|
- Specify all dependencies
|
2012-11-07 08:27:22 +00:00
|
|
|
- Do not export private library
|
2012-11-07 08:25:50 +00:00
|
|
|
|
2012-07-20 22:20:01 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-11 15:42:50 +00:00
|
|
|
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 1.1-10
|
|
|
|
- Perl 5.16 rebuild
|
|
|
|
|
2012-01-13 20:23:33 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-06-17 20:18:21 +00:00
|
|
|
* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.1-8
|
|
|
|
- Perl mass rebuild
|
|
|
|
|
2011-02-09 10:08:42 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-12-23 05:23:39 +00:00
|
|
|
* Thu Dec 23 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.1-6
|
|
|
|
- 661697 rebuild for fixing problems with vendorach/lib
|
|
|
|
|
2010-05-07 07:55:18 +00:00
|
|
|
* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.1-5
|
|
|
|
- Mass rebuild with perl-5.12.0
|
|
|
|
|
2009-12-07 09:04:42 +00:00
|
|
|
* Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.1-4
|
|
|
|
- rebuild against perl 5.10.1
|
|
|
|
|
2009-07-26 17:24:29 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-27 04:10:14 +00:00
|
|
|
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-05-31 17:58:18 +00:00
|
|
|
* Fri May 30 2008 Steven Pritchard <steve@kspei.com> 1.1-1
|
|
|
|
- Update to 1.1.
|
|
|
|
|
2008-03-07 02:20:52 +00:00
|
|
|
* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0-3
|
2008-05-31 17:58:18 +00:00
|
|
|
- Rebuild for new perl
|
2008-03-07 02:20:52 +00:00
|
|
|
|
2008-02-20 03:05:03 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-10-16 00:49:55 +00:00
|
|
|
* Mon Oct 15 2007 Steven Pritchard <steve@kspei.com> 1.0-1
|
|
|
|
- Update to 1.0.
|
|
|
|
- Update License.
|
|
|
|
- Reformat a little to match cpanspec output.
|
|
|
|
|
2007-04-16 22:12:51 +00:00
|
|
|
* Mon Apr 16 2007 Steven Pritchard <steve@kspei.com> 0.100-9
|
|
|
|
- Use fixperms macro instead of our own chmod incantation.
|
|
|
|
- BR ExtUtils::MakeMaker.
|
|
|
|
|
2006-08-28 20:36:27 +00:00
|
|
|
* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.100-8
|
|
|
|
- Rebuild.
|
|
|
|
- Fix find option order.
|
|
|
|
- Minor cleanup to more closely match cpanspec output.
|
|
|
|
|
2006-02-19 00:18:12 +00:00
|
|
|
* Sat Feb 18 2006 Steven Pritchard <steve@kspei.com> 0.100-7
|
|
|
|
- Rebuild.
|
|
|
|
|
2005-09-06 01:47:04 +00:00
|
|
|
* Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 0.100-6
|
|
|
|
- Spec cleanup.
|
|
|
|
- Disable "make test" by default (spams console).
|
|
|
|
|
2016-04-19 16:11:09 +00:00
|
|
|
* Wed Apr 6 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
2005-04-06 22:13:09 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2004-11-08 05:11:44 +00:00
|
|
|
* Mon Apr 26 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.100-0.fdr.4
|
|
|
|
- Bring up to date with current fedora.us perl spec template.
|
|
|
|
- Require perl(:MODULE_COMPAT_*).
|
|
|
|
|
|
|
|
* Thu Oct 2 2003 Michael Schwendt <rh0212ms[AT]arcor.de> 0:0.100-0.fdr.3
|
|
|
|
- Vendor install
|
|
|
|
- Removing some files instead of excluding them
|
2016-04-19 16:11:09 +00:00
|
|
|
- Own two additional directories to work around perl package bug
|
2004-11-08 05:11:44 +00:00
|
|
|
|
|
|
|
* Fri Jul 11 2003 Dams <anvil[AT]livna.org> 0:0.100-0.fdr.2
|
|
|
|
- Excluding empty Syslog.bs file
|
|
|
|
- Chmoding Syslog.so in install section to allow it to be stripped
|
|
|
|
- Changed Group tag value
|
|
|
|
- Added missing unowned directories
|
|
|
|
|
2005-03-05 21:10:23 +00:00
|
|
|
* Sun Jun 15 2003 Dams <anvil[AT]livna.org>
|
2004-11-08 05:11:44 +00:00
|
|
|
- Initial build.
|