Hello list,
you might wonder why rebuild take so long. I'm using for rebuild
Fedora::Rebuild module, which is still under development. List of
packages for rebuild is based on requirements of each package. Also it
should be possible to build more packages in parallel.
There were some flaws, but I had major problems with our
infrastructure. I run into limitation of git and koji. I'm not sure
whether this is simply not possible or it's only setting of infrastructure.
You can run into these bugs of mock in koji:
https://fedorahosted.org/rel-eng/ticket/4791 -> missing requirements
doesn't stop build
https://fedorahosted.org/rel-eng/ticket/4786 -> current mock doesn't
work with tty tests, so I had to switch them off. I'll revert it after
update of mock in koji.
At the moment 1061 packages are done. So ~700 to go.
Another thing are filters. I suppose it isn't in Guidelines yet, but old
filters doesn't work, because they do not have support in rpm. You can
use something like this before prep section in your specfile.
%{?perl_default_filter}
%global __provides_exclude
%{?__provides_exclude}|perl\\(XML::SAX::PurePerl\\)
%global __requires_exclude
%{?__requires_exclude}|perl\\(XML::SAX::PurePerl::DTDDecls\\)
I believe next automatic rebuild will be faster, so please be patient.
Regards,
Marcela
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Missing dependency in perl-SVK package
https://bugzilla.redhat.com/show_bug.cgi?id=718870
Summary: Missing dependency in perl-SVK package
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: NEW
Severity: unspecified
Priority: unspecified
Component: perl-SVK
AssignedTo: ianburrell(a)gmail.com
ReportedBy: derrick_moser(a)yahoo.com
QAContact: extras-qa(a)fedoraproject.org
CC: ianburrell(a)gmail.com,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Story Points: ---
Description of problem:
The perl-ExtUtils-MakeMaker package should be automatically installed when
installing the perl-SVK package.
Version-Release number of selected component (if applicable):
How reproducible:
Always
Steps to Reproduce:
1. install SVK: yum install perl-SVK
2. initialise the depot map: svk depotmap --init
3. create some initial project files: mkdir /tmp/myproject; echo "Hello" >
/tmp/myproject/hello.txt
4. try importing the project: svk import --message "Initial import"
/tmp/myproject //myproject
Actual results:
The import fails after printing this:
Committed revision 1.
Import path //myproject initialized.
Can't locate ExtUtils/MakeMaker.pm in @INC (@INC contains: /usr/local/lib/perl5
/usr/local/share/perl5 /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl
/usr/lib/perl5 /usr/share/perl5 .) at /usr/share/perl5/vendor_perl/SVK/Util.pm
line 812.
Expected results:
The import should succeed and print this:
Committed revision 1.
Import path //myproject initialized.
Committed revision 2.
Directory /tmp/myproject imported to depotpath //myproject as revision 2.
Additional info:
The error disappears if you manually install the perl-ExtUtils-MakeMaker
package.
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: RPM doesn't create /var/run/amavisd
https://bugzilla.redhat.com/show_bug.cgi?id=696725
Summary: RPM doesn't create /var/run/amavisd
Product: Fedora
Version: 15
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: medium
Priority: unspecified
Component: amavisd-new
AssignedTo: steve(a)silug.org
ReportedBy: nightbox(a)hotmail.com
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, fedora-perl-devel-list(a)redhat.com,
kanarip(a)kanarip.com
Classification: Fedora
Story Points: ---
Description of problem:
The RPM doesn't create /var/run/amavisd, the amvaisd.pid file gets created here
at runtime. This directory needs to be created with g+w permissions with group
amavis for this package to work correctly.
Version-Release number of selected component (if applicable):
amavisd-new-2.6.4-3.fc15.noarch
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: amavisd-new does not work with systemd
https://bugzilla.redhat.com/show_bug.cgi?id=676430
Summary: amavisd-new does not work with systemd
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: unspecified
Priority: unspecified
Component: amavisd-new
AssignedTo: steve(a)silug.org
ReportedBy: nicolas.mailhot(a)laposte.net
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, fedora-perl-devel-list(a)redhat.com,
kanarip(a)kanarip.com
Classification: Fedora
Description of problem:
In fedora devel (just about to become F15alpha) :
# systemctl status amavisd.service
amavisd.service - LSB: amavisd is an interface between MTA and content checkers
Loaded: loaded (/etc/rc.d/init.d/amavisd)
Active: active (exited) since Wed, 09 Feb 2011 21:17:17 +0100; 8min ago
Process: 3202 ExecStop=/etc/rc.d/init.d/amavisd stop (code=exited,
status=2/INVALIDARGUMENT)
Process: 3229 ExecStart=/etc/rc.d/init.d/amavisd start (code=exited,
status=0/SUCCESS)
Main PID: 3234 (code=exited, status=0/SUCCESS)
CGroup: name=systemd:/system/amavisd.service
Probably due to
# rpm -V amavisd-new5S.T..... c /etc/amavisd/amavisd.conf
5S.T..... c /etc/clamd.d/amavisd.conf
missing /var/run/amavisd
# mount |grep run
tmpfs on /var/run type tmpfs
(rw,nosuid,nodev,noexec,relatime,rootcontext=system_u:object_r:var_run_t:s0,seclabel,mode=755)
Version-Release number of selected component (if applicable):
⇒ with systemd /var/run is a tmpfs so packages that need subdirs inside need to
be modified to tell systemd to create them
See also
http://fedoraproject.org/wiki/Tmpfiles.d_packaging_draft
How reproducible:
always
Additional info:
amavisd-new-2.6.4-2.fc15.noarch
systemd-units-17-3.fc15.x86_64
systemd-gtk-17-3.fc15.x86_64
systemd-17-3.fc15.x86_64
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: clamd.amavisd does not start without manual intervention
https://bugzilla.redhat.com/show_bug.cgi?id=710984
Summary: clamd.amavisd does not start without manual
intervention
Product: Fedora
Version: 15
Platform: i686
OS/Version: Linux
Status: NEW
Severity: medium
Priority: unspecified
Component: amavisd-new
AssignedTo: steve(a)silug.org
ReportedBy: fedora.jrg01(a)grifent.com
QAContact: extras-qa(a)fedoraproject.org
CC: steve(a)silug.org, fedora-perl-devel-list(a)redhat.com,
kanarip(a)kanarip.com
Classification: Fedora
Story Points: ---
Description of problem:
The /run/clamd.amavisd directory is not created at start and the
/var/spool/amavisd/clamd.sock is left behind on shutdown. So, on a reboot, this
bug along with Bug 696725 prevents email from being received by postfix in a
amavisd-new, clamd.amavid, and postfix email configuration.
Version-Release number of selected component (if applicable):
amavisd-new-2.6.4-3.fc15.noarch
How reproducible:
always at reboot
Steps to Reproduce:
1. Just configure a amavisd-new, clamd.amavid, and postfix email configuration.
2. reboot
3.
Actual results:
email system does not receive email since only postfix is running.
Expected results:
amavisd and clamd.amavisd should start without manual intervention.
Additional info:
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: perl-Test-NeedsDisplay-1.07 is available
https://bugzilla.redhat.com/show_bug.cgi?id=633752
Summary: perl-Test-NeedsDisplay-1.07 is available
Product: Fedora
Version: rawhide
Platform: All
OS/Version: Linux
Status: ASSIGNED
Keywords: FutureFeature, Triaged
Severity: medium
Priority: low
Component: perl-Test-NeedsDisplay
AssignedTo: mmaslano(a)redhat.com
ReportedBy: upstream-release-monitoring(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: fedora-perl-devel-list(a)redhat.com, mmaslano(a)redhat.com
Classification: Fedora
Latest upstream release: 1.07
Current version in Fedora Rawhide: 1.05
URL: http://search.cpan.org/dist/Test-NeedsDisplay/
Please consult the package update guidelines before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Package_update_guidelines
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_Release_Monitoring
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: perl-XML-Writer-0.612 is available
https://bugzilla.redhat.com/show_bug.cgi?id=719281
Summary: perl-XML-Writer-0.612 is available
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Keywords: FutureFeature, Triaged
Severity: unspecified
Priority: unspecified
Component: perl-XML-Writer
AssignedTo: alexl(a)users.sourceforge.net
ReportedBy: upstream-release-monitoring(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: alexl(a)users.sourceforge.net,
fedora-perl-devel-list(a)redhat.com
Classification: Fedora
Story Points: ---
Latest upstream release: 0.612
Current version in Fedora Rawhide: 0.606
URL: http://search.cpan.org/dist/XML-Writer/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: perl-Mojolicious-1.47 is available
https://bugzilla.redhat.com/show_bug.cgi?id=715559
Summary: perl-Mojolicious-1.47 is available
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Keywords: FutureFeature, Triaged
Severity: unspecified
Priority: unspecified
Component: perl-Mojolicious
AssignedTo: yaneti(a)declera.com
ReportedBy: upstream-release-monitoring(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: yaneti(a)declera.com, fedora-perl-devel-list(a)redhat.com,
robinlee.sysu(a)gmail.com
Classification: Fedora
Story Points: ---
Latest upstream release: 1.47
Current version in Fedora Rawhide: 1.46
URL: http://search.cpan.org/dist/Mojolicious/
Please consult the package updates policy before you issue an update to a
stable branch: https://fedoraproject.org/wiki/Updates_Policy
More information about the service that created this bug can be found at:
https://fedoraproject.org/wiki/Upstream_release_monitoring
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: Circular and missing dependecies
https://bugzilla.redhat.com/show_bug.cgi?id=689709
Summary: Circular and missing dependecies
Product: Fedora
Version: rawhide
Platform: Unspecified
OS/Version: Unspecified
Status: NEW
Severity: unspecified
Priority: unspecified
Component: perl-Perl-MinimumVersion
AssignedTo: rc040203(a)freenet.de
ReportedBy: mmaslano(a)redhat.com
QAContact: extras-qa(a)fedoraproject.org
CC: redhatbugs(a)provocation.se, rc040203(a)freenet.de,
fedora-perl-devel-list(a)redhat.com, ppisar(a)redhat.com,
psabata(a)redhat.com
Depends on: 688782
Classification: Fedora
Clone Of: 688782
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Please do not reply directly to this email. All additional
comments should be made in the comments box of this bug.
Summary: FTBFS perl-Class-DBI-AsForm-2.42-11.fc14
https://bugzilla.redhat.com/show_bug.cgi?id=660826
Summary: FTBFS perl-Class-DBI-AsForm-2.42-11.fc14
Product: Fedora
Version: rawhide
Platform: All
URL: http://linux.dell.com/files/fedora/FixBuildRequires/mo
ck-results/
OS/Version: Linux
Status: NEW
Keywords: Triaged
Severity: high
Priority: high
Component: perl-Class-DBI-AsForm
AssignedTo: tcallawa(a)redhat.com
ReportedBy: ftbfs(a)fedoraproject.org
QAContact: extras-qa(a)fedoraproject.org
CC: tcallawa(a)redhat.com, fedora-perl-devel-list(a)redhat.com
Blocks: 659965
Classification: Fedora
perl-Class-DBI-AsForm-2.42-11.fc14.src.rpm Failed To Build From Source against
the rawhide tree. See http://fedoraproject.org/wiki/FTBFS for more
information.
If you believe this is actually a bug in another package, do NOT change the
component in this bug or close this bug. Instead, add the appropriate bug
number from the other package to the "Depends on" line in this bug. If the
other package does not yet have a bug created that you think matches, please
create one. Doing so helps us properly track bugs and their dependencies, just
as we track package dependencies. (If you close this bug, and the other
package is not fixed before the next FTBFS run, a new bug will get created.
Please follow the above advice to avoid such duplication.)
--
Configure bugmail: https://bugzilla.redhat.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.