|
From: Carlo W. <li...@us...> - 2001-12-10 01:57:10
|
CVSROOT : /cvsroot/libcw
Module : src
Branch tags: branch-threading
Commit time: 2001-11-10 01:57:09 UTC
Modified files:
Tag: branch-threading
libcwd/libcwd.spec.in libcwd/maintMakefile.in
Log message:
Do not generate the .spec changelog anymore: too much junk in the cvs log.
---------------------- diff included ----------------------
Index: src/libcwd/libcwd.spec.in
diff -u src/libcwd/libcwd.spec.in:1.8.2.6 src/libcwd/libcwd.spec.in:1.8.2.7
--- src/libcwd/libcwd.spec.in:1.8.2.6 Sun Dec 9 17:31:45 2001
+++ src/libcwd/libcwd.spec.in Sun Dec 9 17:56:59 2001
@@ -59,5 +59,22 @@
%{__prefix}/lib/*
%{__prefix}/include/libcw/*
-%changelog@SPECCHANGELOG@
+%changelog
+* Sun Dec 09 2001 Carlo Wood <li...@al...>
+- Added a URL: and BuildPrereq: entry.
+- Added doxygen documentation to the rpm.
+
+* Wed Sep 13 2000 Carlo Wood <li...@al...>
+- Added example-project to doc/ and added a %post instruction echo.
+
+* Sat Sep 02 2000 Carlo Wood <li...@al...>
+- Still generate libcwd.lsm and libcwd.spec in config.status, but only
+ when initiated from maintMakefile according to Makefile rules.
+ Put them in $(srcdir) because they need to be put in the distribution.
+- Add file list to %files. Added a 'Requires:' and started to use macros for prefix and version.
+- Use '@@' instead of '!!' because now the spec file is generated from spec.in by config.status.
+
+* Thu Aug 31 2000 Carlo Wood <li...@al...>
+- Remove build root in %clean.
+- Initial version.
Index: src/libcwd/maintMakefile.in
diff -u src/libcwd/maintMakefile.in:1.13.2.11 src/libcwd/maintMakefile.in:1.13.2.12
--- src/libcwd/maintMakefile.in:1.13.2.11 Sun Dec 9 11:29:55 2001
+++ src/libcwd/maintMakefile.in Sun Dec 9 17:56:59 2001
@@ -81,42 +81,6 @@
$(top_builddir)/config.status --recheck
$(top_builddir)/config.status
-$(SPECFILE): $(srcdir)/$(SPECFILE).in $(srcdir)/configure.in
- if test $(CVSWRITEACCESS) = yes; then \
- (cd $(srcdir); cvs commit $(SPECFILE).in); \
- fi
- if test $(CVSREADACCESS) = yes; then \
- (cd $(srcdir); cvs log $(SPECFILE).in) | \
- grep -A2000 '^-----' | \
- egrep -v '^-----|^=====|^revision' | \
- $(AWK) -F'[ ;]' -v lastdate="" -v count=9999 \
- '{ \
- if ($$0~/^date: /) { \
- if (lastdate != $$2) { \
- if (lastdate != "") { \
- printf("%s/%04d\n", lastdate, count); \
- } \
- lastdate=$$2; \
- printf("%s/%04d", lastdate, count); \
- system("echo \"* \"`date --date \""$$2" "$$3"\" \"+%a %b %d %Y\"`\" Carlo Wood <li...@al...>\""); \
- } \
- } else if ($$0~/^branches: /) { \
- printf(""); \
- } else if ($$0~/^[A-Z]/) { \
- printf("%s/%04d- %s\n", lastdate, count, $$0); \
- } else if ($$0~/./) { \
- printf("%s/%04d %s\n", lastdate, count, $$0); \
- } else { \
- printf("%s/%04d\n", lastdate, count); \
- } \
- count = count - 1; \
- } END { printf("%s/%04d\n", lastdate, count); }' | sort -r | sed -e 's/^...............//' > spec.changelog; \
- else \
- touch spec.changelog; \
- fi
- CONFIG_FILES=$(SPECFILE) CONFIG_HEADERS= $(SHELL) ./config.status
- rm spec.changelog
-
$(srcdir)/$(LSMFILE): $(srcdir)/$(LSMFILE).in $(srcdir)/configure.in
CONFIG_FILES=$(LSMFILE) CONFIG_HEADERS= $(SHELL) ./config.status
----------------------- End of diff -----------------------
|