This commit is contained in:
parent
14276ff80e
commit
06261d971d
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e6b2ffe8f79e9d01a930722472cddbe3e950559fe9314c2e40c7c1571f200a6b
|
||||
size 1007798
|
23
autogen-5.9.6.diff
Normal file
23
autogen-5.9.6.diff
Normal file
@ -0,0 +1,23 @@
|
||||
--- configure.in
|
||||
+++ configure.in
|
||||
@@ -1,7 +1,7 @@
|
||||
dnl --------------------------------------------------------------------
|
||||
dnl configure.in --- GNU autoconf source for toplevel directory.
|
||||
dnl
|
||||
-dnl Time-stamp: "2008-10-06 19:51:56 bkorb"
|
||||
+dnl Time-stamp: "2008-11-17 10:30:43 schwab"
|
||||
dnl Author: Bruce Korb <bkorb@gnu.org>
|
||||
dnl by: bkorb
|
||||
dnl
|
||||
@@ -242,9 +242,9 @@ AC_SUBST(INCLIST)
|
||||
test ${GUILE_VERSION} -ge 108000 && {
|
||||
case "${GCC}" in
|
||||
yes)
|
||||
- CFLAGS=`echo $CFLAGS -Wall -Werror -Wcast-align \
|
||||
+ CFLAGS=`echo $CFLAGS -Wall -Wcast-align \
|
||||
-Wmissing-prototypes -Wpointer-arith -Wshadow \
|
||||
- -Wstrict-prototypes -Wwrite-strings -fno-strict-aliasing`
|
||||
+ -Wstrict-prototypes -Wwrite-strings`
|
||||
;;
|
||||
esac
|
||||
}
|
3
autogen-5.9.6.tar.bz2
Normal file
3
autogen-5.9.6.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:49828493e40a3a3ce0181b27c855afcc5d0b2b5b7003a2af49b31842b930cdef
|
||||
size 1017716
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 17 10:09:53 CET 2008 - schwab@suse.de
|
||||
|
||||
- Update to autogen 5.9.6.
|
||||
* Hierarchically valued options can now be stored with ``--save-opt'' option
|
||||
* option state may now be "reset". This is indistinguishable from the
|
||||
compiled state. If option state is "saved" later, such an option will
|
||||
not appear in the save file.
|
||||
* there is a new option argument type: time. Its argument string
|
||||
represents years (?!), months, weeks, days, hours, minutes and seconds.
|
||||
The value seen by the program is an integer number of seconds.
|
||||
(This is not a date/time.) The duration of a year is always 365 days
|
||||
and the duration of a month is always 30 days.
|
||||
* various obscure cleanups.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 7 14:02:19 CET 2008 - schwab@suse.de
|
||||
|
||||
|
40
autogen.spec
40
autogen.spec
@ -1,26 +1,32 @@
|
||||
#
|
||||
# spec file for package autogen (Version 5.9.5)
|
||||
# spec file for package autogen (Version 5.9.6)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
Name: autogen
|
||||
BuildRequires: guile-devel libxml2-devel
|
||||
Summary: Automated Text File Generator
|
||||
Version: 5.9.5
|
||||
Version: 5.9.6
|
||||
Release: 1
|
||||
Group: Development/Tools/Building
|
||||
License: GPL v3 or later
|
||||
Url: http://autogen.sourceforge.net/
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
#Patch: %{name}-%{version}.diff
|
||||
Source: http://mesh.dl.sourceforge.net/sourceforge/autogen/%{name}-%{version}.tar.bz2
|
||||
Patch: %{name}-%{version}.diff
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
PreReq: %{install_info_prereq}
|
||||
|
||||
@ -39,11 +45,13 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
#%patch
|
||||
%patch
|
||||
|
||||
%build
|
||||
./configure CFLAGS="$RPM_OPT_FLAGS" --prefix=/usr --libdir=%{_libdir} \
|
||||
--infodir=%{_infodir} --mandir=%{_mandir}
|
||||
autoreconf -fi
|
||||
./configure CFLAGS="$RPM_OPT_FLAGS" \
|
||||
--prefix=/usr --libdir=%{_libdir} \
|
||||
--infodir=%{_infodir} --mandir=%{_mandir}
|
||||
make
|
||||
|
||||
%install
|
||||
@ -72,6 +80,18 @@ rm -fr $RPM_BUILD_ROOT
|
||||
%{_infodir}/*.gz
|
||||
|
||||
%changelog
|
||||
* Mon Nov 17 2008 schwab@suse.de
|
||||
- Update to autogen 5.9.6.
|
||||
* Hierarchically valued options can now be stored with ``--save-opt'' option
|
||||
* option state may now be "reset". This is indistinguishable from the
|
||||
compiled state. If option state is "saved" later, such an option will
|
||||
not appear in the save file.
|
||||
* there is a new option argument type: time. Its argument string
|
||||
represents years (?!), months, weeks, days, hours, minutes and seconds.
|
||||
The value seen by the program is an integer number of seconds.
|
||||
(This is not a date/time.) The duration of a year is always 365 days
|
||||
and the duration of a month is always 30 days.
|
||||
* various obscure cleanups.
|
||||
* Mon Jan 07 2008 schwab@suse.de
|
||||
- Update to autogen 5.9.5.
|
||||
* integer number arguments may now have their values suffixed with
|
||||
|
Loading…
x
Reference in New Issue
Block a user