Skip to content

Commit e065e8d

Browse files
authored
change: update references from legacy gee-1.0 to gee-0.8 (#119)
1 parent 9b2e53a commit e065e8d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docs/developer-guides/documentation/vala-for-csharp-devs/33-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
C#: `System.Collections.Generic` namespace
44

5-
Vala: `Gee` namespace, `--pkg gee-1.0`,
5+
Vala: `Gee` namespace, `--pkg gee-0.8`,
66
[Libgee](https://wiki.gnome.org/Projects/Libgee)
77

88
Rough equivalents:

docs/tutorials/programming-language/main/06-00-libraries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ level of Vala specific information.
88
A "Vala library" is therefore, the system part:
99

1010
- A system library (e.g. *libgee.so*)
11-
- A *pkg-config* entry (e.g. *gee-1.0.pc*)
11+
- A *pkg-config* entry (e.g. *gee-0.8.pc*)
1212

1313
Both of which are installed in the standard locations. And the Vala
1414
specific files:
1515

16-
- A VAPI file (e.g. *gee-1.0.vapi*)
17-
- An optional dependency file (e.g. *gee-1.0.deps*)
16+
- A VAPI file (e.g. *gee-0.8.vapi*)
17+
- An optional dependency file (e.g. *gee-0.8.deps*)
1818

1919
These files are explained later in this section. It should be noted that
2020
the library names are the same in the Vala specific files as in the

docs/tutorials/programming-language/main/06-00-libraries/06-01-using-libraries.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ package. You tell the compiler that a package is needed by your program
66
as follows:
77

88
```shell
9-
valac --pkg gee-1.0 test.vala
9+
valac --pkg gee-0.8 test.vala
1010
```
1111

1212
This command means your program can use any of the definitions in the
13-
*gee-1.0.vapi* file, and also any in any of the packages that *gee-1.0*
14-
depends on. These dependencies would be listed in *gee-1.0.deps* if
13+
*gee-0.8.vapi* file, and also any in any of the packages that *gee-0.8*
14+
depends on. These dependencies would be listed in *gee-0.8.deps* if
1515
there were any. In this example *valac* is set to build all the way to
1616
binary, and will therefore incorporate information from *pkg-config* to
1717
link the correct libraries. This is why the *pkg-config* names are also

docs/tutorials/programming-language/main/06-00-libraries/06-06-using-autotools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ VALAFLAGS = \
6060
$(top_srcdir)/vapi/config.vapi \
6161
--vapidir=$(top_srcdir)/vapi \
6262
--pkg libxml-2.0 \
63-
--pkg gee-1.0 \
63+
--pkg gee-0.8 \
6464
--pkg gobject-2.0 \
6565
--pkg gio-2.0 \
6666
$(NULL)

docs/tutorials/programming-language/main/07-00-tools/07-01-valac.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ valac can also automate the entire build and link project in simple
3939
cases:
4040

4141
```shell
42-
valac -o appname --pkg gee-1.0 file_name_1.vala file_name_2.vala
42+
valac -o appname --pkg gee-0.8 file_name_1.vala file_name_2.vala
4343
```
4444

4545
The `-o` switch requests that an object file is created, rather than
4646
just outputting C source files. The `--pkg` option says that this build
47-
needs information from the *gee-1.0* package. You do not need to specify
47+
needs information from the *gee-0.8* package. You do not need to specify
4848
details about what libraries to link in, the package has this
4949
information internally. Finally, a list of source files is given. If you
5050
need a more complicated build process, use the `-C` switch to generate C

0 commit comments

Comments
 (0)