Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make changes required to be packaged for debian #9

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
524 changes: 143 additions & 381 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "regolith-powerd"
version = "0.3.3"
version = "0.3.9"
edition = "2021"
license = "GPL-3.0+"
authors = ["Soumya Ranjan Patniak <[email protected]>", "Ken Gilmer <[email protected]>"]
authors = ["Soumya Ranjan Patnaik <[email protected]>", "Ken Gilmer <[email protected]>"]
description = "Power Settings Daemeon for Regolith Wayland Session"
repository = "https://github.com/regolith-linux/regolith-powerd"

Expand All @@ -13,6 +13,6 @@ repository = "https://github.com/regolith-linux/regolith-powerd"
async-channel = "2.1.1"
gio = "0.18.4"
glib = "0.18.5"
gsettings-macro = "0.1.20"
gsettings-macro = "0.2.1"
swayipc = "3.0.1"
zbus = "3.15.2"
zbus = "4.4.0"
50 changes: 0 additions & 50 deletions debian/changelog

This file was deleted.

28 changes: 0 additions & 28 deletions debian/control

This file was deleted.

43 changes: 0 additions & 43 deletions debian/copyright

This file was deleted.

2 changes: 0 additions & 2 deletions debian/install

This file was deleted.

26 changes: 0 additions & 26 deletions debian/rules

This file was deleted.

1 change: 0 additions & 1 deletion debian/source/format

This file was deleted.

4 changes: 2 additions & 2 deletions src/logind.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use zbus::blocking::Connection;
use zbus::zvariant::OwnedFd;
use zbus::{dbus_proxy, Result};
use zbus::{proxy, Result};

#[dbus_proxy(
#[proxy(
interface = "org.freedesktop.login1.Manager",
default_service = "org.freedesktop.login1",
default_path = "/org/freedesktop/login1"
Expand Down