From 74f550caf049f7234b0f3e921fe3af2d643b3e8e Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 12 Jul 2005 13:27:32 +0000 Subject: [PATCH] Moved all examples up from examples/gst/ into examples/. Original commit message from CVS: 2005-07-12 Andy Wingo * configure.ac (AC_CONFIG_FILES): * examples/: Moved all examples up from examples/gst/ into examples/. --- ChangeLog | 4 ++++ configure.ac | 1 - examples/Makefile.am | 14 +++++++++++++- examples/{gst => }/audioconcat.py | 0 examples/{gst => }/bps.py | 0 examples/{gst => }/cp.py | 0 examples/{gst => }/f2f.py | 0 examples/{gst => }/filesrc.py | 0 examples/gst/.gitignore | 5 ----- examples/gst/Makefile.am | 13 ------------- examples/{gst => }/gst123 | 0 examples/{gst => }/gstfile.py | 0 examples/{gst => }/play.py | 0 examples/{gst => }/vorbisplay.py | 0 14 files changed, 17 insertions(+), 20 deletions(-) rename examples/{gst => }/audioconcat.py (100%) rename examples/{gst => }/bps.py (100%) rename examples/{gst => }/cp.py (100%) rename examples/{gst => }/f2f.py (100%) rename examples/{gst => }/filesrc.py (100%) delete mode 100644 examples/gst/.gitignore delete mode 100644 examples/gst/Makefile.am rename examples/{gst => }/gst123 (100%) rename examples/{gst => }/gstfile.py (100%) rename examples/{gst => }/play.py (100%) rename examples/{gst => }/vorbisplay.py (100%) diff --git a/ChangeLog b/ChangeLog index 396c913711..7f7a2f1c5d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2005-07-12 Andy Wingo + * configure.ac (AC_CONFIG_FILES): + * examples/: Moved all examples up from examples/gst/ into + examples/. + * examples/gstplay: Removed examples for old gstplay. 2005-07-12 Edward Hervey diff --git a/configure.ac b/configure.ac index 30efc54926..d1b26a4b07 100644 --- a/configure.ac +++ b/configure.ac @@ -165,7 +165,6 @@ changequote([,])dnl AC_OUTPUT([ Makefile examples/Makefile - examples/gst/Makefile gst/Makefile pkgconfig/Makefile pkgconfig/gst-python.pc diff --git a/examples/Makefile.am b/examples/Makefile.am index 062cb55aab..bb81a9e0a4 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -1 +1,13 @@ -SUBDIRS = gst +examplesdir = $(pkgdatadir)/examples +examples_DATA = \ + bps.py \ + cp.py \ + f2f.py \ + filesrc.py \ + gst123 \ + play.py \ + vorbisplay.py \ + gstfile.py \ + audioconcat.py + +EXTRA_DIST = $(examples_DATA) diff --git a/examples/gst/audioconcat.py b/examples/audioconcat.py similarity index 100% rename from examples/gst/audioconcat.py rename to examples/audioconcat.py diff --git a/examples/gst/bps.py b/examples/bps.py similarity index 100% rename from examples/gst/bps.py rename to examples/bps.py diff --git a/examples/gst/cp.py b/examples/cp.py similarity index 100% rename from examples/gst/cp.py rename to examples/cp.py diff --git a/examples/gst/f2f.py b/examples/f2f.py similarity index 100% rename from examples/gst/f2f.py rename to examples/f2f.py diff --git a/examples/gst/filesrc.py b/examples/filesrc.py similarity index 100% rename from examples/gst/filesrc.py rename to examples/filesrc.py diff --git a/examples/gst/.gitignore b/examples/gst/.gitignore deleted file mode 100644 index f25164d724..0000000000 --- a/examples/gst/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -Makefile.in -Makefile -*.pyc -*.pyo -*.swp diff --git a/examples/gst/Makefile.am b/examples/gst/Makefile.am deleted file mode 100644 index bb81a9e0a4..0000000000 --- a/examples/gst/Makefile.am +++ /dev/null @@ -1,13 +0,0 @@ -examplesdir = $(pkgdatadir)/examples -examples_DATA = \ - bps.py \ - cp.py \ - f2f.py \ - filesrc.py \ - gst123 \ - play.py \ - vorbisplay.py \ - gstfile.py \ - audioconcat.py - -EXTRA_DIST = $(examples_DATA) diff --git a/examples/gst/gst123 b/examples/gst123 similarity index 100% rename from examples/gst/gst123 rename to examples/gst123 diff --git a/examples/gst/gstfile.py b/examples/gstfile.py similarity index 100% rename from examples/gst/gstfile.py rename to examples/gstfile.py diff --git a/examples/gst/play.py b/examples/play.py similarity index 100% rename from examples/gst/play.py rename to examples/play.py diff --git a/examples/gst/vorbisplay.py b/examples/vorbisplay.py similarity index 100% rename from examples/gst/vorbisplay.py rename to examples/vorbisplay.py