summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid I. Lehn <dlehn@users.sourceforge.net>2003-07-10 04:27:47 +0000
committerDavid I. Lehn <dlehn@users.sourceforge.net>2003-07-10 04:27:47 +0000
commitc690aa3aa5d01c697a7820546164e5691ce6e998 (patch)
tree91993f0e315b9510faa7e99208ca2c0932398e59
parent578178bb24ddc8e1981152c3de7436820886c504 (diff)
distcheck and final release prep fixesgst-python-0.1.0
Original commit message from CVS: distcheck and final release prep fixes
-rw-r--r--AUTHORS1
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am4
-rw-r--r--NEWS1
-rw-r--r--README1
-rw-r--r--README-docs4
-rw-r--r--TODO1
-rw-r--r--configure.ac23
-rw-r--r--docs/Makefile.am2
-rw-r--r--docs/NEWS.xml3
-rw-r--r--docs/README.xml2
-rw-r--r--docs/RELNOTES.xml5
-rw-r--r--docs/gst-python.ent.in2
-rw-r--r--docs/notes/release1
14 files changed, 38 insertions, 19 deletions
diff --git a/AUTHORS b/AUTHORS
new file mode 100644
index 0000000000..92ffc66cfb
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1 @@
+This file will be autogenerated. Please read README-docs.
diff --git a/ChangeLog b/ChangeLog
index e464c34872..64c1aa5ac8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/Makefile.am b/Makefile.am
index 7fd5f37e3b..979536287a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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"`
diff --git a/NEWS b/NEWS
new file mode 100644
index 0000000000..92ffc66cfb
--- /dev/null
+++ b/NEWS
@@ -0,0 +1 @@
+This file will be autogenerated. Please read README-docs.
diff --git a/README b/README
new file mode 100644
index 0000000000..92ffc66cfb
--- /dev/null
+++ b/README
@@ -0,0 +1 @@
+This file will be autogenerated. Please read README-docs.
diff --git a/README-docs b/README-docs
index 0c9b087a43..ba3e32b54e 100644
--- a/README-docs
+++ b/README-docs
@@ -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.
diff --git a/TODO b/TODO
new file mode 100644
index 0000000000..92ffc66cfb
--- /dev/null
+++ b/TODO
@@ -0,0 +1 @@
+This file will be autogenerated. Please read README-docs.
diff --git a/configure.ac b/configure.ac
index 8d4b8660e1..427000faf5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 4366a28e6e..23d5cd4a3f 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -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
diff --git a/docs/NEWS.xml b/docs/NEWS.xml
index 5a5076f69b..466468a5db 100644
--- a/docs/NEWS.xml
+++ b/docs/NEWS.xml
@@ -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>
diff --git a/docs/README.xml b/docs/README.xml
index 0007b415c3..75e135703f 100644
--- a/docs/README.xml
+++ b/docs/README.xml
@@ -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>
diff --git a/docs/RELNOTES.xml b/docs/RELNOTES.xml
index ce9aeff91a..67f70e7aa9 100644
--- a/docs/RELNOTES.xml
+++ b/docs/RELNOTES.xml
@@ -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>
<!--=====================================================================-->
diff --git a/docs/gst-python.ent.in b/docs/gst-python.ent.in
index ea4fbf7ed7..994ce8e648 100644
--- a/docs/gst-python.ent.in
+++ b/docs/gst-python.ent.in
@@ -1,2 +1,2 @@
<!ENTITY version "@VERSION@">
-<!ENTITY pubdate "July 9, 2003">
+<!ENTITY pubdate "July 10, 2003">
diff --git a/docs/notes/release b/docs/notes/release
index c269fedb7c..9fffc9b5cc 100644
--- a/docs/notes/release
+++ b/docs/notes/release
@@ -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