distcheck and final release prep fixes

Original commit message from CVS:
distcheck and final release prep fixes
This commit is contained in:
David I. Lehn 2003-07-10 04:27:47 +00:00
parent 578178bb24
commit c690aa3aa5
14 changed files with 38 additions and 19 deletions

1
AUTHORS Normal file
View file

@ -0,0 +1 @@
This file will be autogenerated. Please read README-docs.

View file

@ -1,3 +1,10 @@
2003-07-10 David I. Lehn <dlehn@users.sourceforge.net>
* AUTHORS, NEWS, README, TODO, README-docs, Makefile.am, configure.ac,
docs/Makefile.am, docs/NEWS.xml, docs/README.xml, docs/RELNOTES.xml,
docs/gst-python.ent.in, docs/notes/release: distcheck and final
release prep fixes
2003-07-09 David I. Lehn <dlehn@users.sourceforge.net>
* configure.ac: check for xmlcatalog for docs build (probably not

View file

@ -9,9 +9,7 @@ SUBDIRS = gstreamer pkgconfig examples $(SUBDIRS_DOCS)
DIST_SUBDIRS = gstreamer pkgconfig examples docs
EXTRA_DIST = \
gst-python.spec.in gst-python.spec README.docs
CLEANFILES = README NEWS TODO AUTHORS
gst-python.spec.in gst-python.spec README-docs
snap:
$(MAKE) dist distdir=$(PACKAGE)-`date +"%Y%m%d"`

1
NEWS Normal file
View file

@ -0,0 +1 @@
This file will be autogenerated. Please read README-docs.

1
README Normal file
View file

@ -0,0 +1 @@
This file will be autogenerated. Please read README-docs.

View file

@ -1,2 +1,2 @@
The release documentation is generated from XML DocBook sources in docs/.
This currently includes README, NEWS, TODO, and AUTHORS.
Some documentation is generated from XML DocBook sources in docs/ when a new
release is created. This currently includes README, NEWS, TODO, and AUTHORS.

1
TODO Normal file
View file

@ -0,0 +1 @@
This file will be autogenerated. Please read README-docs.

View file

@ -40,22 +40,27 @@ else
fi
AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
dnl check for GStreamer
dnl start with 0.7
GST_MAJORMINOR=0.7
dnl Only support 0.6 in 0.1.0. Remove this and enable code below for 0.7.
GST_MAJORMINOR=0.6
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
dnl check for GStreamer
dnl start with 0.7
dnl GST_MAJORMINOR=0.7
dnl PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
dnl HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
dnl
dnl try 0.6
if test "x$HAVE_GSTREAMER" = "xno"; then
GST_MAJORMINOR=0.6
PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
fi
dnl if test "x$HAVE_GSTREAMER" = "xno"; then
dnl GST_MAJORMINOR=0.6
dnl PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ,
dnl HAVE_GSTREAMER=yes,HAVE_GSTREAMER=no)
dnl fi
dnl Give error and exit if we don't have gstreamer
if test "x$HAVE_GSTREAMER" = "xno"; then
AC_MSG_ERROR(you need gstreamer development packages installed !)
AC_MSG_ERROR(you need gstreamer development packages installed !)
fi
AC_SUBST(GST_LIBS)

View file

@ -40,7 +40,7 @@ dist-docs: $(TOPDOCS)
dist-hook: dist-docs
for d in $(TOPDOCS); do \
mv $$d ../`basename $$d .txt`; \
install -m 444 $$d $(distdir)/../`basename $$d .txt`; \
done
# full docs

View file

@ -29,10 +29,11 @@
<title>News</title>
<section role="notintoc" id="release-0.1.0">
<title>2003-07-09 - 0.1.0 - David I. Lehn <email>dlehn@users.sourceforge.net</email></title>
<title>2003-07-10 - 0.1.0 - David I. Lehn <email>dlehn@users.sourceforge.net</email></title>
<para>
<itemizedlist>
<listitem><para>First release</para></listitem>
<listitem><para>Supports <emphasis>only</emphasis> GStreamer 0.6.x (0.7.x support requires a few changes)</para></listitem>
</itemizedlist>
</para>
</section>

View file

@ -28,7 +28,7 @@
<revhistory>
<revision>
<revnumber>0.1.0</revnumber>
<date>2003-07-09</date>
<date>2003-07-10</date>
<authorinitials>dil</authorinitials>
<revremark>Initial version.</revremark>
</revision>

View file

@ -20,7 +20,10 @@
<!--=====================================================================-->
<para><ulink url="http://www.gstreamer.net/bindings/python/"/></para>
<section id="homepage">
<title>Gst-Python Homepage</title>
<para><ulink url="http://www.gstreamer.net/bindings/python/"/></para>
</section>
<!--=====================================================================-->

View file

@ -1,2 +1,2 @@
<!ENTITY version "@VERSION@">
<!ENTITY pubdate "July 9, 2003">
<!ENTITY pubdate "July 10, 2003">

View file

@ -5,6 +5,7 @@ Release Checklist
- update version in configure.ac
- update date in docs/gst-python.ent.in
- add revhistory revision in docs/README.xml if needed
- add entry for current version to docs/NEWS.xml
- 'make distcheck'
- fix problems and repeat as needed