Skip to content

Commit ce9d76e

Browse files
committed
⬆️ Bump the version
and add --no-guessing-deps to Debian packaging rules
1 parent 3d4b4d2 commit ce9d76e

File tree

8 files changed

+26
-11
lines changed

8 files changed

+26
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
4646
Download the [latest release](https://github.com/DragonComputer/Dragonfire/releases/latest) (the `.deb` file) and:
4747

4848
```Shell
49-
sudo dpkg -i dragonfire_1.0.1_amd64.deb
49+
sudo dpkg -i dragonfire_1.0.2_amd64.deb
5050
```
5151

5252
or with Docker: `docker pull dragoncomputer/dragonfire`

debian/changelog

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
dragonfire (1.0.2) unstable; urgency=medium
2+
3+
* libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added
4+
* The issue related to inactive lock in the speech recognizers is fixed
5+
* deepspeech Python package dependency is upgraded from 0.2.0a5 to 0.4.1
6+
* The DeepSpeech the model from 0.1.1 to 0.4.1
7+
* Time telling feature(a built-in command) is added
8+
* Several issues in built-in commands are fixed
9+
* Release version mismatch is fixed
10+
11+
-- Mehmet Mert Yildiran <[email protected]> Wed, 6 Mar 2019 04:27:54 +0300
12+
113
dragonfire (1.0.1) unstable; urgency=medium
214

315
* Dependency issues are fixed

debian/dragonfire.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Desktop Entry]
2-
Version=1.0.1
2+
Version=1.0.2
33
Type=Application
44
Name=Dragonfire
55
Comment=Virtual Assistant for Linux

debian/fire/dragonfire

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/python3
2-
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.0','console_scripts','dragonfire'
3-
__requires__ = 'dragonfire==1.0.0'
2+
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.2','console_scripts','dragonfire'
3+
__requires__ = 'dragonfire==1.0.2'
44
import re
55
import sys
66
from pkg_resources import load_entry_point
77

88
if __name__ == '__main__':
99
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
1010
sys.exit(
11-
load_entry_point('dragonfire==1.0.0', 'console_scripts', 'dragonfire')()
11+
load_entry_point('dragonfire==1.0.2', 'console_scripts', 'dragonfire')()
1212
)

debian/rules

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22

33
#export DH_VERBOSE = 1
44
export PYBUILD_NAME = foo
5-
export PYBUILD_DISABLE_python3=test
5+
export PYBUILD_DISABLE_python3 = test
66

77
%:
88
dh $@ --with python3 --buildsystem=pybuild
99

10+
override_dh_python3:
11+
dh_python3 --no-guessing-deps
12+
1013
override_dh_installman:
1114
dh_installman debian/dragonfire.1

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
# -- Project information -----------------------------------------------------
2626

2727
project = 'Dragonfire'
28-
copyright = '2018, Mehmet Mert Yıldıran'
28+
copyright = '2019, Mehmet Mert Yıldıran'
2929
author = 'Mehmet Mert Yıldıran'
3030

3131
# The short X.Y version
32-
version = '1.0.0'
32+
version = '1.0.2'
3333
# The full version, including alpha/beta/rc tags
34-
release = '1.0.0'
34+
release = '1.0.2'
3535

3636

3737
# -- General configuration ---------------------------------------------------

dragonfire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
from sqlalchemy.orm import sessionmaker # ORM submodule of SQLAlchemy
5353

5454

55-
__version__ = '1.0.0'
55+
__version__ = '1.0.2'
5656

5757
DRAGONFIRE_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
5858
FNULL = open(os.devnull, 'w')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def pkgconfig(*packages):
6464
# Versions should comply with PEP440. For a discussion on single-sourcing
6565
# the version across setup.py and the project code, see
6666
# https://packaging.python.org/en/latest/single_source_version.html
67-
version='1.0.1',
67+
version='1.0.2',
6868
description='Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions',
6969
long_description=long_description,
7070
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)