-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
and add --no-guessing-deps to Debian packaging rules
- Loading branch information
1 parent
3d4b4d2
commit ce9d76e
Showing
8 changed files
with
26 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
dragonfire (1.0.2) unstable; urgency=medium | ||
|
||
* libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added | ||
* The issue related to inactive lock in the speech recognizers is fixed | ||
* deepspeech Python package dependency is upgraded from 0.2.0a5 to 0.4.1 | ||
* The DeepSpeech the model from 0.1.1 to 0.4.1 | ||
* Time telling feature(a built-in command) is added | ||
* Several issues in built-in commands are fixed | ||
* Release version mismatch is fixed | ||
|
||
-- Mehmet Mert Yildiran <[email protected]> Wed, 6 Mar 2019 04:27:54 +0300 | ||
|
||
dragonfire (1.0.1) unstable; urgency=medium | ||
|
||
* Dependency issues are fixed | ||
|
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
#!/usr/bin/python3 | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.0','console_scripts','dragonfire' | ||
__requires__ = 'dragonfire==1.0.0' | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.2','console_scripts','dragonfire' | ||
__requires__ = 'dragonfire==1.0.2' | ||
import re | ||
import sys | ||
from pkg_resources import load_entry_point | ||
|
||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) | ||
sys.exit( | ||
load_entry_point('dragonfire==1.0.0', 'console_scripts', 'dragonfire')() | ||
load_entry_point('dragonfire==1.0.2', 'console_scripts', 'dragonfire')() | ||
) |
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
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