Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rhx/swiftglib
A Swift wrapper around glib-2.x that is largely auto-generated from gobject-introspection
https://github.com/rhx/swiftglib
glib gnome gobject-introspection gtk linux macos swift xcode
Last synced: about 1 month ago
JSON representation
A Swift wrapper around glib-2.x that is largely auto-generated from gobject-introspection
- Host: GitHub
- URL: https://github.com/rhx/swiftglib
- Owner: rhx
- License: bsd-2-clause
- Created: 2016-05-15T07:55:08.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-06-15T06:38:08.000Z (7 months ago)
- Last Synced: 2024-06-15T11:02:30.083Z (7 months ago)
- Topics: glib, gnome, gobject-introspection, gtk, linux, macos, swift, xcode
- Language: Swift
- Homepage: https://rhx.github.io/SwiftGLib/
- Size: 81.2 MB
- Stars: 7
- Watchers: 3
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SwiftGLib
A Swift wrapper around glib-2.x that is largely auto-generated from gobject-introspection.
For up to date (auto-generated) reference documentation, see https://rhx.github.io/SwiftGLib/![macOS](https://github.com/rhx/SwiftGLib/actions/workflows/macOS.yml/badge.svg?branch=development)
![Linux](https://github.com/rhx/SwiftGLib/actions/workflows/Linux.yml/badge.svg?branch=development)
![DocC](https://github.com/rhx/SwiftGLib/actions/workflows/docc.yml/badge.svg?branch=development)## What is new?
* SwiftGLib 2.73 introduces typed convenience wrappers for GLib collection types such as `GArray`, `GByteArray`, `GList`, `GSList`, and `GSequence`.
* Version 15 of gir2swift provides a Package Manager Plugin. This requires Swift 5.6 or higher
(older versions can be used via the [swift52](https://github.com/rhx/SwiftGLib/tree/swift52) branch).## Prerequisites
### Swift 5.7 or higher
To build, download Swift from https://swift.org/download/ -- if you are using macOS, make sure you have the command line tools installed as well). Test that your compiler works using `swift --version`, which should give you something like
$ swift --version
swift-driver version: 1.90.11.1 Apple Swift version 5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)
Target: arm64-apple-macosx14.0on macOS, or on Linux you should get something like:
$ swift --version
Swift version 5.10 (swift-5.10-RELEASE)
Target: x86_64-unknown-linux-gnu### GLib 2.56 or higher
These Swift wrappers have been tested with glib-2.56, 2.58, 2.60, 2.62, 2.64, 2.66, 2.68, 2.70, 2.72, 2.73, 2.74, 2.76, 2.78, and 2.80. They should work with higher versions, but YMMV. Also make sure you have `gobject-introspection` and its `.gir` files installed.
#### Linux
##### Ubuntu
On Ubuntu 18.04, 20.04, and 22.04 you can use the glib that comes with the distribution. Just install with the `apt` package manager:
sudo apt update
sudo apt install libglib2.0-dev glib-networking gobject-introspection libgirepository1.0-dev libxml2-dev jq##### Fedora
On Fedora 29, you can use the gtk that comes with the distribution. Just install with the `dnf` package manager:
sudo dnf install glib2-devel gobject-introspection-devel libxml2-devel jq
#### macOS
On macOS, you can install glib using HomeBrew (for setup instructions, see http://brew.sh):
brew update
brew install glib glib-networking gobject-introspection pkg-config jq## Usage
Normally, you don't build this package directly (but for testing you can - see 'Building' below). Instead you need to embed SwiftGLib into your own project using the [Swift Package Manager](https://swift.org/package-manager/). After installing the prerequisites (see 'Prerequisites' below), add `SwiftGLib` as a dependency to your `Package.swift` file, e.g.:
```Swift
// swift-tools-version:5.7import PackageDescription
let package = Package(name: "MyPackage",
dependencies: [
.package(url: "https://github.com/rhx/gir2swift.git", branch: "main"),
.package(url: "https://github.com/rhx/SwiftGLib.git", branch: "main"),
],
targets: [
.target(name: "MyPackage",
dependencies: [
.product(name: "GLib", package: "SwiftGLib")
]
)
]
)
```## Building
Normally, you don't build this package directly, but you embed it into your own project (see 'Usage' above). However, you can build and test this module separately to ensure that everything works. Make sure you have all the prerequisites installed (see above). After that, you can simply clone this repository and build the command line executable (be patient, this will download all the required dependencies and take a while to compile) using
git clone https://github.com/rhx/SwiftGLib.git
cd SwiftGLib
swift build
swift test## Documentation
You can generate documentation using the [DocC plugin](https://apple.github.io/swift-docc-plugin/documentation/swiftdoccplugin/). To preview documentation matching your local installation, simply run
swift package --disable-sandbox preview-documentation
then navigate to the URL shown for the local preview server. Make sure you have JavaScript enabled in your browser.
Alternatively, you can create static documentation using [jazzy](https://github.com/realm/jazzy).
Make sure you have [sourcekitten](https://github.com/jpsim/SourceKitten) and [jazzy](https://github.com/realm/jazzy) installed, e.g. on macOS (x86_64):brew install ruby sourcekitten
/usr/local/opt/ruby/bin/gem install jazzy
./generate-jazzy.sh## Troubleshooting
Here are some common errors you might encounter and how to fix them.### Missing `.gir` Files
If you get an error such asGirs located at
Cannot open '/GLib-2.0.gir': No such file or directoryMake sure that you have the relevant `gobject-introspection` packages installed (as per the Pre-requisites section), including their `.gir` and `.pc` files.
### Old Swift toolchain or Xcode
If, when you run `swift build`, you get a `Segmentation fault (core dumped)` or circular dependency error such aswarning: circular dependency detected while parsing pangocairo: harfbuzz -> freetype2 -> harfbuzz
this probably means that your Swift toolchain is too old, particularly on Linux.
Make sure the latest toolchain is the one that is found when you run the Swift compiler (see above).If you get an older version, make sure that the right version of the swift compiler is found first in your `PATH`. On macOS, use xcode-select to select and install the latest version, e.g.:
sudo xcode-select -s /Applications/Xcode.app
xcode-select --install