[Bug 906007] New: Please revert the "unbundling" of "inc::Module::Install::DSL", at least when bootstrapping
by Red Hat Bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=906007
Bug ID: 906007
Summary: Please revert the "unbundling" of
"inc::Module::Install::DSL", at least when
bootstrapping
Product: Fedora
Version: rawhide
Component: perl-File-Remove
Severity: unspecified
Priority: unspecified
Reporter: paul(a)city-fan.org
A recent change to the perl-File-Remove package involved removing the bundled
Module::Install::DSL and adding a BuildRequires for it. A side-effect of this
is that perl-File-Remove and perl-Module-Install now BuildRequire each other,
which will prevent a clean bootstrapping of the next major perl release.
Please consider reverting this change, or conditionalizing it on not being a
bootstrap build (using the %{?perl_bootstrap} macro).
I can't understand why this was done in the first place, as it's not a library
bundling issue (the bundled module is not shipped in the built package), and
seems akin to deleting a "configure" script and re-running the autotools, which
goes contrary to upstream methodology.
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=zHGYSD1qi4&a=cc_unsubscribe
10 years, 4 months
[Bug 863303] missing dependency "clamav-server-sysvinit" required
by Red Hat Bugzilla
Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=863303
John Florian <jflorian(a)doubledog.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jflorian(a)doubledog.org
--- Comment #3 from John Florian <jflorian(a)doubledog.org> ---
I also ran into this bug. I had installed amavisd-new (on Fedora 18), which
pulled in several clam dependencies, but missed this one on
clamav-server-sysvinit. As a result amavis was throwing warnings like:
amavis[12756]: (12756-03) (!)connect to /var/spool/amavisd/clamd.sock failed,
attempt #1: Can't connect to UNIX socket /var/spool/amavisd/clamd.sock: No such
file or directory
With the large number of clam packages (and some with buggy package
descriptions), it was a challenge to figure out what was needed to resolve the
above error message. Fortunately I decided to check BZ before putting too much
work into the diagnosis as this bug report gave me just the answer I needed:
yum install clamav-server-sysvinit
systemctl start clamd.amavisd.service
With that simple task done, now amavis can talk to clamd successfully. Seems
like this should be an easy bug to fix that would make this common setup very
easy for people -- it's so close now, especially compared to what it used to
require!
--
You are receiving this mail because:
You are on the CC list for the bug.
Unsubscribe from this bug https://bugzilla.redhat.com/token.cgi?t=Zl5dm9uINx&a=cc_unsubscribe
10 years, 4 months
[perl-File-HomeDir] Use the Module::Install provided by upstream (#906007)
by Petr Sabata
commit 3d5ce3f59b3cfa13ae873b2bcbbf3dad7ca26a7e
Author: Petr Šabata <contyk(a)redhat.com>
Date: Thu Jan 31 17:29:02 2013 +0100
Use the Module::Install provided by upstream (#906007)
perl-File-HomeDir.spec | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/perl-File-HomeDir.spec b/perl-File-HomeDir.spec
index 3203372..4b051ab 100644
--- a/perl-File-HomeDir.spec
+++ b/perl-File-HomeDir.spec
@@ -1,6 +1,6 @@
Name: perl-File-HomeDir
Version: 1.00
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Find your home and other directories on any platform
Group: Development/Libraries
License: GPL+ or Artistic
@@ -11,12 +11,12 @@ BuildRequires: perl(Carp)
BuildRequires: perl(Cwd) >= 3.12
BuildRequires: perl(Exporter)
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.42
+BuildRequires: perl(ExtUtils::MM_Unix)
BuildRequires: perl(File::Path) >= 2.01
BuildRequires: perl(File::Spec) >= 3.12
BuilDrequires: perl(File::Spec::Functions)
BuildRequires: perl(File::Temp) >= 0.19
BuildRequires: perl(File::Which) >= 0.05
-BuildRequires: perl(inc::Module::Install)
%if !%{defined perl_bootstrap}
BuildRequires: perl(Test::More) >= 0.47
%endif
@@ -38,7 +38,6 @@ platforms.
%prep
%setup -q -n File-HomeDir-%{version}
-rm -rf inc
%build
perl Makefile.PL INSTALLDIRS=vendor
@@ -58,6 +57,9 @@ make test
%{_mandir}/man3/*.3pm*
%changelog
+* Thu Jan 31 2013 Petr Šabata <contyk(a)redhat.com> - 1.00-3
+- Use the Module::Install provided by upstream (#906007)
+
* Mon Nov 26 2012 Petr Šabata <contyk(a)redhat.com> - 1.00-2
- Re-enable the test suite
- Unbundle inc::Module::Install
10 years, 4 months