Bug 478468

Summary: guile-1.8.6-1 packaging does not account for emacs packages
Product: [Fedora] Fedora Reporter: R P Herrold <herrold>
Component: guileAssignee: Miroslav Lichvar <mlichvar>
Status: CLOSED RAWHIDE QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: medium Docs Contact:
Priority: low    
Version: rawhideCC: mlichvar
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2009-01-08 11:34:00 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description R P Herrold 2008-12-30 17:59:02 UTC
Description of problem:
current guile packaging does not account for emacs packages

Version-Release number of selected component (if applicable):
guile-1.8.6-1.fc11.src.rpm

How reproducible:
rpmbuild --rebuild guile-1.8.6-1.fc11.src.rpm

Steps to Reproduce:
simple rpmbuild with emacs in the build environment

 ...
   /usr/share/emacs/site-lisp/gds-scheme.el
   /usr/share/emacs/site-lisp/gds-server.el
   /usr/share/emacs/site-lisp/gds.el
[herrold@centos-5 guile]$ rpmbuild --rebuild guile-1.8.6-1.fc11.src.rpm

Build env contains emacs

[herrold@centos-5 guile]$ rpm -qa emacs\*
emacs-21.4-20.el5
emacs-common-21.4-20.el5
emacs-el-21.4-20.el5
  
Actual results:
Build failure when emacs is present

Expected results:
A %files stanza which handles these emacs realted files

Additional info:
Please ask if you need more information
-- Russ herrold

Comment 1 R P Herrold 2008-12-30 18:08:09 UTC
local fix was this:

[herrold@centos-5 guile]$ diff -u guile.spec guile-1.8.6.spec
--- guile.spec  2008-12-30 13:01:50.000000000 -0500
+++ guile-1.8.6.spec    2008-12-30 13:03:33.000000000 -0500
@@ -2,7 +2,7 @@
 Name: guile
 %define mver 1.8
 Version: 1.8.6
-Release: 1%{?dist}
+Release: 2%{?dist}
 Source: ftp://ftp.gnu.org/pub/gnu/guile/guile-%{version}.tar.gz
 URL: http://www.gnu.org/software/guile/
 Patch1: guile-1.8.4-multilib.patch
@@ -150,6 +150,7 @@
 %dir %{_datadir}/guile/site
 %{_infodir}/*
 %{_mandir}/man1/guile.1*
+%{_datadir}/emacs/site-lisp/*.el

 %files devel
 %defattr(-,root,root,-)
@@ -163,6 +164,9 @@
 %{_includedir}/libguile.h

 %changelog
+* Tue Dec 30 2008 R P Herrold <info> 5:1.8.6-2orc
+- account for emacs files (RH 478468)
+
 * Tue Dec 09 2008 Miroslav Lichvar <mlichvar> - 5:1.8.6-1
 - update to 1.8.6

[herrold@centos-5 guile]$

Comment 2 Miroslav Lichvar 2009-01-08 11:34:00 UTC
Fixed in guile-1.8.6-2.fc11. Thanks.