-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
98 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
pkg_name_upper: REMIR | ||
pkg_name_snake: remir | ||
source_name: remir | ||
|
||
clone_url: https://github.com/Kixunil/remir | ||
git_tag: v$(REMIR_VERSION) | ||
fingerprint: 3D9E81D3CA76CDCBE768C4B4DC6B4F8E60B8CF4C | ||
verify_tag: true | ||
build_system: python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
name = "python3-remir" | ||
architecture = "all" | ||
summary = "A simple server for controlling IR-enabled devices." | ||
depends = ["${python3:Depends}", "${misc:Depends}", "lirc"] | ||
recommends = ["remir"] | ||
add_files = ["/usr/bin/remir", "/usr/lib/python3.7/dist-packages/remir", "/usr/lib/python3.7/dist-packages/remir-0.1.0.egg-info"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
remir (0.1.0-1) buster; urgency=medium | ||
|
||
* Added Debian package | ||
|
||
-- Martin Habovstiak <[email protected]> Fri, 6 Nov 2020 14:40:50 +0100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name = "remir" | ||
summary = "A simple server for controlling IR-enabled devices. (service package)" | ||
bin_package = "python3-remir" | ||
binary = "/usr/bin/remir" | ||
conf_param = "--conf" | ||
user = { group = true, create = { home = false } } | ||
recommends = ["selfhost"] | ||
extra_triggers = ["/etc/lirc/lircd.conf.d"] | ||
extra_service_config = """ | ||
Restart=always | ||
RuntimeDirectory=remir | ||
""" | ||
|
||
[config."remir.toml"] | ||
format = "toml" | ||
|
||
[config."remir.toml".ivars.password] | ||
type = "string" | ||
default = "" | ||
priority = "high" | ||
summary = "Password to access remir (empty generates random)" | ||
ignore_empty = true | ||
|
||
[config."remir.toml".ivars.port] | ||
type = "bind_port" | ||
default = "8123" | ||
priority = "medium" | ||
summary = "Port for remir to listen on" | ||
|
||
[config."remir.toml".ivars.bind_address] | ||
type = "bind_host" | ||
default = "127.0.0.1" | ||
priority = "medium" | ||
summary = "Address for remir to listen on" | ||
ignore_empty = true | ||
|
||
[config."../selfhost/apps/remir.conf"] | ||
format = "yaml" | ||
external = true | ||
with_header = true | ||
|
||
[config."../selfhost/apps/remir.conf".ivars.root_path] | ||
type = "string" | ||
default = "/remir" | ||
priority = "medium" | ||
summary = "Web prefix of web path to remir" | ||
|
||
[config."../selfhost/apps/remir.conf".evars.remir.port] | ||
name = "port" | ||
|
||
[config."../selfhost/apps/remir.conf".hvars.rewrite] | ||
type = "bool" | ||
constant = "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
name = "remir" | ||
section = "net" | ||
build_depends = ["python3-all", "dh-python", "python3-setuptools", "python3-bottle", "python3-toml"] | ||
packages = ["python3-remir", "remir"] | ||
skip_debug_symbols = true | ||
with = ["python3"] | ||
buildsystem = "pybuild" |