Merge pull request #1053 from federico-terzi/dev

Version 2.1.5-beta
This commit is contained in:
Federico Terzi 2022-03-30 20:49:32 +02:00 committed by GitHub
commit 5df94b5031
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 59 additions and 24 deletions

2
Cargo.lock generated
View File

@ -589,7 +589,7 @@ dependencies = [
[[package]] [[package]]
name = "espanso" name = "espanso"
version = "2.1.4-beta" version = "2.1.5-beta"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"caps", "caps",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "espanso" name = "espanso"
version = "2.1.4-beta" version = "2.1.5-beta"
authors = ["Federico Terzi <federicoterzi96@gmail.com>"] authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
license = "GPL-3.0" license = "GPL-3.0"
description = "Cross-platform Text Expander written in Rust" description = "Cross-platform Text Expander written in Rust"

View File

@ -194,18 +194,21 @@ fn main() {
Arg::with_name("config_dir") Arg::with_name("config_dir")
.long("config_dir") .long("config_dir")
.takes_value(true) .takes_value(true)
.hidden(true)
.help("Specify a custom path from which espanso should read the configuration"), .help("Specify a custom path from which espanso should read the configuration"),
) )
.arg( .arg(
Arg::with_name("package_dir") Arg::with_name("package_dir")
.long("package_dir") .long("package_dir")
.takes_value(true) .takes_value(true)
.hidden(true)
.help("Specify a custom path for the espanso package directory"), .help("Specify a custom path for the espanso package directory"),
) )
.arg( .arg(
Arg::with_name("runtime_dir") Arg::with_name("runtime_dir")
.long("runtime_dir") .long("runtime_dir")
.takes_value(true) .takes_value(true)
.hidden(true)
.help("Specify a custom path for the espanso runtime directory"), .help("Specify a custom path for the espanso runtime directory"),
) )
.subcommand( .subcommand(

View File

@ -1,36 +1,17 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e set -e
TOOL_DIR=$(pwd)/target/linux/linuxdeploy
TARGET_DIR=$(pwd)/target/linux/AppImage TARGET_DIR=$(pwd)/target/linux/AppImage
BUILD_DIR=$TARGET_DIR/build BUILD_DIR=$TARGET_DIR/build
OUTPUT_DIR=$TARGET_DIR/out OUTPUT_DIR=$TARGET_DIR/out
BASE_DIR=$(pwd) BASE_DIR=$(pwd)
mkdir -p $TOOL_DIR
if ls $TOOL_DIR/linuxdeploy*.AppImage 1> /dev/null 2>&1; then
echo "Skipping download of linuxdeploy"
else
echo "Downloading linuxdeploy tool"
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage -P "$TOOL_DIR"
chmod +x $TOOL_DIR/linuxdeploy*.AppImage
fi
if ls $TOOL_DIR/appimagetool*.AppImage 1> /dev/null 2>&1; then
echo "Skipping download of appimagetool"
else
echo "Downloading appimagetool"
wget https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage -P "$TOOL_DIR"
chmod +x $TOOL_DIR/appimagetool*.AppImage
fi
rm -Rf "$TARGET_DIR" rm -Rf "$TARGET_DIR"
mkdir -p $OUTPUT_DIR mkdir -p $OUTPUT_DIR
mkdir -p $BUILD_DIR mkdir -p $BUILD_DIR
echo Building AppImage into $OUTPUT_DIR echo Building AppImage into $OUTPUT_DIR
pushd $OUTPUT_DIR pushd $OUTPUT_DIR
$TOOL_DIR/linuxdeploy*.AppImage --appimage-extract-and-run -e "$BASE_DIR/$EXEC_PATH" \ $BASE_DIR/scripts/vendor-app-image/linuxdeploy*.AppImage --appimage-extract-and-run -e "$BASE_DIR/$EXEC_PATH" \
-d "$BASE_DIR/espanso/src/res/linux/espanso.desktop" \ -d "$BASE_DIR/espanso/src/res/linux/espanso.desktop" \
-i "$BASE_DIR/espanso/src/res/linux/icon.png" \ -i "$BASE_DIR/espanso/src/res/linux/icon.png" \
--appdir $BUILD_DIR \ --appdir $BUILD_DIR \
@ -45,7 +26,7 @@ echo "Applying patch for libgmodule"
./Espanso*.AppImage --appimage-extract ./Espanso*.AppImage --appimage-extract
rm -Rf ./Espanso*.AppImage rm -Rf ./Espanso*.AppImage
rm -Rf squashfs-root/usr/lib/libgmodule* rm -Rf squashfs-root/usr/lib/libgmodule*
$TOOL_DIR/appimagetool*.AppImage --appimage-extract-and-run -v squashfs-root $BASE_DIR/scripts/vendor-app-image/appimagetool*.AppImage --appimage-extract-and-run -v squashfs-root
rm -Rf squashfs-root rm -Rf squashfs-root
popd popd

View File

@ -0,0 +1,28 @@
MIT License
If not stated otherwise within the individual file or subdirectory, the
original source code in this repository is licensed as below. This does not
necessarily apply for all dependencies. For the sake of clarity, this license
does NOT apply to the contents of AppImages that anyone may create.
Software contained inside an AppImage may be licensed under any license at the
discretion of the respecive rights holder(s).
Copyright (c) 2004-20 Simon Peter
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -0,0 +1,19 @@
Copyright 2018 TheAssassin
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@ -0,0 +1,4 @@
I'm vendoring these build tools here to have reproducible builds, otherwise
we might run into these issues again:
* https://github.com/federico-terzi/espanso/issues/900

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,5 @@
name: espanso name: espanso
version: 2.1.4-beta version: 2.1.5-beta
summary: A Cross-platform Text Expander written in Rust summary: A Cross-platform Text Expander written in Rust
description: | description: |
espanso is a Cross-platform, Text Expander written in Rust. espanso is a Cross-platform, Text Expander written in Rust.