diff options
author | José Alburquerque <jaalburquerque@gmail.com> | 2013-06-10 18:39:14 -0400 |
---|---|---|
committer | José Alburquerque <jaalburquerque@gmail.com> | 2013-06-10 18:39:14 -0400 |
commit | 19609dd50df826942ea3d77a409749adab57445f (patch) | |
tree | a05398290bb4f60ed3e6fe1b4cb4084da3e07991 | |
parent | bcf1fbc13596efeaa3900bd56e35b89b9b261858 (diff) | |
download | glibmm-19609dd50df826942ea3d77a409749adab57445f.tar.gz |
Gen Scripts: Minor clean up of the description of the scripts.
* tools/gen_scripts/gio_generate_docs.sh:
* tools/gen_scripts/gio_generate_enums.sh:
* tools/gen_scripts/gio_generate_extra_defs.sh:
* tools/gen_scripts/gio_generate_methods.sh:
* tools/gen_scripts/glib_generate_docs.sh:
* tools/gen_scripts/glib_generate_enums.sh:
* tools/gen_scripts/glib_generate_extra_defs.sh:
* tools/gen_scripts/glib_generate_methods.sh:
-rw-r--r-- | ChangeLog | 13 | ||||
-rwxr-xr-x | tools/gen_scripts/gio_generate_docs.sh | 6 | ||||
-rwxr-xr-x | tools/gen_scripts/gio_generate_enums.sh | 6 | ||||
-rwxr-xr-x | tools/gen_scripts/gio_generate_extra_defs.sh | 4 | ||||
-rwxr-xr-x | tools/gen_scripts/gio_generate_methods.sh | 6 | ||||
-rwxr-xr-x | tools/gen_scripts/glib_generate_docs.sh | 6 | ||||
-rwxr-xr-x | tools/gen_scripts/glib_generate_enums.sh | 7 | ||||
-rwxr-xr-x | tools/gen_scripts/glib_generate_extra_defs.sh | 8 | ||||
-rwxr-xr-x | tools/gen_scripts/glib_generate_methods.sh | 6 |
9 files changed, 37 insertions, 25 deletions
@@ -1,3 +1,16 @@ +2013-06-10 José Alburquerque <jaalburquerque@gmail.com> + + Gen Scripts: Minor clean up of the description of the scripts. + + * tools/gen_scripts/gio_generate_docs.sh: + * tools/gen_scripts/gio_generate_enums.sh: + * tools/gen_scripts/gio_generate_extra_defs.sh: + * tools/gen_scripts/gio_generate_methods.sh: + * tools/gen_scripts/glib_generate_docs.sh: + * tools/gen_scripts/glib_generate_enums.sh: + * tools/gen_scripts/glib_generate_extra_defs.sh: + * tools/gen_scripts/glib_generate_methods.sh: + 2013-06-09 José Alburquerque <jaalburquerque@gmail.com> gmmproc: Use an environment variable for the return mismatches. diff --git a/tools/gen_scripts/gio_generate_docs.sh b/tools/gen_scripts/gio_generate_docs.sh index edad6821..7c815021 100755 --- a/tools/gen_scripts/gio_generate_docs.sh +++ b/tools/gen_scripts/gio_generate_docs.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The XML files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. Also the script assumes that it resides in the +# tools/gen_scripts directory and the XML file will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." diff --git a/tools/gen_scripts/gio_generate_enums.sh b/tools/gen_scripts/gio_generate_enums.sh index dd6d2a4f..e755bc6f 100755 --- a/tools/gen_scripts/gio_generate_enums.sh +++ b/tools/gen_scripts/gio_generate_enums.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The defs files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. The script assumes that it resides in the +# tools/gen_scripts directory and the defs file will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." diff --git a/tools/gen_scripts/gio_generate_extra_defs.sh b/tools/gen_scripts/gio_generate_extra_defs.sh index b6b77e2f..4e428bdb 100755 --- a/tools/gen_scripts/gio_generate_extra_defs.sh +++ b/tools/gen_scripts/gio_generate_extra_defs.sh @@ -1,7 +1,7 @@ #!/bin/bash -# This script assumes that it resides in the -# tools/gen_scripts directory and the defs files will be placed in gio/src. +# This script assumes that it resides in the tools/gen_scripts directory and +# the defs file will be placed in gio/src. ROOT_DIR="$(dirname "$0")/../.." GEN_DIR="$ROOT_DIR/tools/extra_defs_gen" diff --git a/tools/gen_scripts/gio_generate_methods.sh b/tools/gen_scripts/gio_generate_methods.sh index 711c9c56..16160370 100755 --- a/tools/gen_scripts/gio_generate_methods.sh +++ b/tools/gen_scripts/gio_generate_methods.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The defs files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. The script assumes that it resides in the +# tools/gen_scripts directory and the defs file will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." diff --git a/tools/gen_scripts/glib_generate_docs.sh b/tools/gen_scripts/glib_generate_docs.sh index cb841cbb..a77c04a7 100755 --- a/tools/gen_scripts/glib_generate_docs.sh +++ b/tools/gen_scripts/glib_generate_docs.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The XML files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. The script assumes that it resides in the +# tools/gen_scripts directory and the XML file will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." diff --git a/tools/gen_scripts/glib_generate_enums.sh b/tools/gen_scripts/glib_generate_enums.sh index c7bca214..c6ff6fe5 100755 --- a/tools/gen_scripts/glib_generate_enums.sh +++ b/tools/gen_scripts/glib_generate_enums.sh @@ -1,9 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The script assumes that it resides in the tools/gen_scripts -# directory and the defs files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. The script assumes that it resides in the +# tools/gen_scripts directory and the defs files will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." diff --git a/tools/gen_scripts/glib_generate_extra_defs.sh b/tools/gen_scripts/glib_generate_extra_defs.sh index 217d7e01..ae3f285b 100755 --- a/tools/gen_scripts/glib_generate_extra_defs.sh +++ b/tools/gen_scripts/glib_generate_extra_defs.sh @@ -1,10 +1,10 @@ #!/bin/bash -# This script assumes that it resides in the -# tools/gen_scripts directory and the defs files will be placed in glib/src. +# This script assumes that it resides in the tools/gen_scripts directory and +# the defs file will be placed in glib/src. ROOT_DIR="$(dirname "$0")/../.." -GEN_DIR="$ROOT_DIR/tools/extra_defs_gen" +GEN_DIR="../extra_defs_gen" OUT_DIR="$ROOT_DIR/glib/src" -"$GEN_DIR"/../extra_defs_gen/generate_defs_glib > "$OUT_DIR"/glib_signals.defs +"$GEN_DIR"/generate_defs_glib > "$OUT_DIR"/glib_signals.defs diff --git a/tools/gen_scripts/glib_generate_methods.sh b/tools/gen_scripts/glib_generate_methods.sh index e585b457..9813db0a 100755 --- a/tools/gen_scripts/glib_generate_methods.sh +++ b/tools/gen_scripts/glib_generate_methods.sh @@ -1,8 +1,8 @@ #!/bin/bash -# Note that -# JHBUILD_SOURCES should be defined to contain the path to the root of the -# jhbuild sources. The defs files will be placed in glib/src. +# Note that JHBUILD_SOURCES should be defined to contain the path to the root +# of the jhbuild sources. The script assumes it resides in the +# tools/gen_scripts directory and the defs files will be placed in glib/src. if [ -z "$JHBUILD_SOURCES" ]; then echo -e "JHBUILD_SOURCES must contain the path to the jhbuild sources." |