Skip to content

Commit

Permalink
Fix some packaging issues and update manpage
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Manila committed Jun 23, 2019
1 parent e2834f7 commit e0d254a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ recursive-include src *.png
recursive-include src *.po
include src/weresync/resources/weresync.service
include src/weresync/resources/weresync-dbus.conf
include src/weresync/resources/weresync.desktop
include src/weresync/resources/weresync-gui.desktop
include src/weresync/resources/locale/weresync.pot
5 changes: 3 additions & 2 deletions docs/weresync.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ weresync [ options ] [**-g** *ROOT_PARTITION*] [**-B** *BOOT_PARTITION*]
source target

**weresync-gui**

**weresync-daemon**

DESCRIPTION
Expand All @@ -34,10 +35,10 @@ WereSync clones linux drives incrementally producing a bootable clone. Clones
produced by WereSync will have different UUIDs than the original drive, but
WereSync will update the fstab and bootloader to allow the clone to properly
boot. Clones can be created with one command or one button click, using
*weresync* or *weresync-gui* respectively, after the daemon in weresync-daemon
*weresync* or *weresync-gui* respectively, after the daemon in *weresync-daemon*
has been started as root.

OPTIONS
OPTIONS*
-------

The *weresync-gui* command takes no arguments. These arguments apply to the *weresync* command.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def read(fname):
if __name__ == "__main__":
setup(
name="WereSync",
version="1.1.4",
version="1.1.5",
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=["parse==1.6.6", "yapsy==1.11.223", "pydbus==0.6.0"],
Expand All @@ -60,7 +60,7 @@ def read(fname):
'gui_scripts': ["weresync-gui = weresync.interface.gui:start_gui"]
},
package_data={
"weresync.resources": ["*.svg", "*.png"] + create_mo_files()
"weresync.resources": ["*.svg", "*.png", "weresync*.*"] + create_mo_files()
},
data_files=[(target_icon_loc,
["src/weresync/resources/weresync.svg"])],
Expand Down
4 changes: 2 additions & 2 deletions src/weresync/resources/weresync-gui.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=WereSync
Exec=sudo weresync-gui
Exec=weresync-gui
Icon=weresync
Type=Application
Categories=Administration
Categories=System

0 comments on commit e0d254a

Please sign in to comment.