1
0
Fork 0
mirror of https://github.com/Xetibo/ReSet.git synced 2025-04-06 22:02:01 +02:00

chore: change name to ReSet to avoid conflicts

This commit is contained in:
DashieTM 2024-06-07 00:28:40 +02:00
parent 8ddaea9a7d
commit b7151f1feb
6 changed files with 21 additions and 19 deletions

View file

@ -12,7 +12,9 @@ jobs:
profile: minimal
toolchain: nightly
- name: Build rust package
run: cargo build --release --verbose
run: |
cargo build --release --verbose
mv ./target/release/reset ./target/release/ReSet
- name: Build Flatpak
run: "cd flatpak\npython3 flatpak-generator.py ../Cargo.lock -o cargo-sources.json \nflatpak-builder build org.Xetibo.ReSet.json --force-clean \nflatpak build-export export build\nflatpak build-bundle export reset.flatpak org.Xetibo.ReSet\n"
- name: Build Ubuntu package
@ -22,15 +24,15 @@ jobs:
mkdir -p ./debian/usr/share
mkdir -p ./debian/usr/share/applications
mkdir -p ./debian/usr/share/pixmaps
cp ./target/release/reset ./debian/usr/bin/.
cp ./target/release/ReSet ./debian/usr/bin/ReSet
cp ./reset.desktop ./debian/usr/share/applications/.
cp ./src/resources/icons/ReSet.svg ./debian/usr/share/pixmaps/.
dpkg-deb --build debian
mv debian.deb reset.deb
mv debian.deb ReSet.deb
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
target/release/reset
target/release/ReSet
flatpak/reset.flatpak
reset.deb
ReSet.deb

View file

@ -14,7 +14,7 @@ build() {
package() {
cd ..
install -Dm755 target/release/"$pkgname" "$pkgdir"/usr/bin/"$pkgname"
install -Dm755 target/release/"$pkgname" "$pkgdir"/usr/bin/ReSet
install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
install -Dm644 "src/resources/icons/ReSet.svg" "$pkgdir/usr/share/pixmaps/ReSet.svg"
}

View file

@ -47,15 +47,15 @@
lockFile = ./Cargo.lock;
in
rec {
reset = pkgs.callPackage ./nix/default.nix { inherit inputs lockFile; };
default = reset;
ReSet = pkgs.callPackage ./nix/default.nix { inherit inputs lockFile; };
default = ReSet;
};
};
flake = _: rec {
nixosModules.home-manager = homeManagerModules.default;
homeManagerModules = rec {
reset = import ./nix/hm.nix inputs.self;
default = reset;
ReSet = import ./nix/hm.nix inputs.self;
default = ReSet;
};
};
};

View file

@ -19,7 +19,7 @@ let
cargoToml = builtins.fromTOML (builtins.readFile ../Cargo.toml);
in
rustPlatform.buildRustPackage rec {
pname = cargoToml.package.name;
pname = "ReSet";
version = cargoToml.package.version;
src = ../.;
@ -50,8 +50,8 @@ rustPlatform.buildRustPackage rec {
copyLibs = true;
postInstall = ''
install -D --mode=444 $src/${pname}.desktop $out/share/applications/${pname}.desktop
install -D --mode=444 $src/src/resources/icons/ReSet.svg $out/share/pixmaps/ReSet.svg
install -D --mode=444 $src/reset.desktop $out/share/applications/reset.desktop
install -D --mode=444 $src/src/resources/icons/${pname}.svg $out/share/pixmaps/${pname}.svg
'';
# test is broken in nix for some reason
@ -64,6 +64,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/Xetibo/ReSet/releases/tag/${version}";
license = licenses.gpl3;
maintainers = with maintainers; [ DashieTM ];
mainProgram = "reset";
mainProgram = "ReSet";
};
}

View file

@ -5,19 +5,19 @@ self: { config
, ...
}:
let
cfg = config.programs.reset;
cfg = config.programs.ReSet;
defaultPackage = self.packages.${pkgs.stdenv.hostPlatform.system}.default;
in
{
meta.maintainers = with lib.maintainers; [ DashieTM ];
options.programs.reset = with lib; {
enable = mkEnableOption "reset";
options.programs.ReSet = with lib; {
enable = mkEnableOption "ReSet";
package = mkOption {
type = with types; nullOr package;
default = defaultPackage;
defaultText = lib.literalExpression ''
reset.packages.''${pkgs.stdenv.hostPlatform.system}.default
ReSet.packages.''${pkgs.stdenv.hostPlatform.system}.default
'';
description = mdDoc ''
Package to run

View file

@ -2,7 +2,7 @@
Name=ReSet
GenericName=SettingsApplication
GenericName[de]=SettingsApplikation
Exec=reset
Exec=ReSet
Terminal=false
Type=Application
Keywords=settings;gtk;