mirror of
https://github.com/dkmstr/openuds.git
synced 2025-01-21 18:03:54 +03:00
Upgraded debian actor to python 3
This commit is contained in:
parent
d5be31f1d9
commit
7f1a776f69
@ -10,7 +10,7 @@ Package: udsactor
|
||||
Section: admin
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: policykit-1(>=0.100), python3-requests (>=0.8.2), python3-qt4 (>=4.9), python3-six(>=1.1), python3-prctl(>=1.1.1), python3 (>=3.4), libxss1, xscreensaver, ${misc:Depends}
|
||||
Depends: policykit-1(>=0.100), python3-requests (>=0.8.2), python3-pyqt4 (>=4.9), python3-six(>=1.1), python3-prctl(>=1.1.1), python3 (>=3.4), libxss1, xscreensaver, ${misc:Depends}
|
||||
Description: Actor for Universal Desktop Services (UDS) Broker
|
||||
This package provides the required components to allow this machine to work on an environment managed by UDS Broker.
|
||||
|
||||
|
||||
|
@ -1,3 +1,9 @@
|
||||
udsclient (2.2.1) stable; urgency=medium
|
||||
|
||||
* Upgraded to 2.2.1 release
|
||||
|
||||
-- Adolfo Gómez García <agomez@virtualcable.es> Thu, 2 Oct 2018 12:44:12 +0200
|
||||
|
||||
udsclient (2.2.0) stable; urgency=medium
|
||||
|
||||
* Updated release
|
||||
|
@ -10,6 +10,6 @@ Package: udsclient
|
||||
Section: admin
|
||||
Priority: optional
|
||||
Architecture: all
|
||||
Depends: python-paramiko (>=0.8.2), python-qt4 (>=4.9), python-six(>=1.1), python (>=2.7), freerdp2-x11 | freerdp2-x11, desktop-file-utils, ${misc:Depends}
|
||||
Depends: python-paramiko (>=0.8.2), python-qt4 (>=4.9), python-six(>=1.1), python (>=2.7), freerdp2-x11 | freerdp-x11, desktop-file-utils, ${misc:Depends}
|
||||
Description: Client connector for Universal Desktop Services (UDS) Broker
|
||||
This package provides the required components to allow this machine to connect to services provided by UDS Broker.
|
||||
|
@ -1,2 +1,2 @@
|
||||
udsclient_2.2.0_all.deb admin optional
|
||||
udsclient_2.2.0_amd64.buildinfo admin optional
|
||||
udsclient_2.2.1_all.deb admin optional
|
||||
udsclient_2.2.1_amd64.buildinfo admin optional
|
||||
|
@ -39,5 +39,5 @@ from uds.core.Environment import Environmentable
|
||||
from uds.core.Serializable import Serializable
|
||||
from uds.core.BaseModule import Module
|
||||
|
||||
VERSION = '2.2.0-DEVEL'
|
||||
VERSION_STAMP = '20170901-DEVEL'
|
||||
VERSION = '2.2.1-DEVEL'
|
||||
VERSION_STAMP = '20180901-DEVEL'
|
||||
|
@ -46,7 +46,7 @@ OSManagersFactory.factory().insert(LinuxOsManager)
|
||||
OSManagersFactory.factory().insert(LinuxRandomPassManager)
|
||||
|
||||
DownloadsManager.manager().registerDownloadable('udsactor_{version}_all.deb'.format(version=VERSION),
|
||||
_('UDS Actor for Debian, Ubuntu, ... Linux machines <b>(Requires python 2.7)</b>'),
|
||||
_('UDS Actor for Debian, Ubuntu, ... Linux machines <b>(Requires python >= 3.5)</b>'),
|
||||
os.path.dirname(sys.modules[__package__].__file__) + '/files/udsactor_{version}_all.deb'.format(version=VERSION),
|
||||
'application/x-debian-package')
|
||||
|
||||
@ -59,3 +59,8 @@ DownloadsManager.manager().registerDownloadable('udsactor-opensuse-{version}-1.n
|
||||
_('UDS Actor for openSUSE, ... Linux machines <b>(Requires python 2.7)</b>'),
|
||||
os.path.dirname(sys.modules[__package__].__file__) + '/files/udsactor-opensuse-{version}-1.noarch.rpm'.format(version=VERSION),
|
||||
'application/x-redhat-package-manager')
|
||||
|
||||
DownloadsManager.manager().registerDownloadable('udsactor_2.2.0_legacy.deb'.format(version=VERSION),
|
||||
_('<b>Legacy</b> UDS Actor for Debian, Ubuntu, ... Linux machines <b>(Requires python 2.7)</b>'),
|
||||
os.path.dirname(sys.modules[__package__].__file__) + '/files/udsactor_2.2.0_legacy.deb'.format(version=VERSION),
|
||||
'application/x-debian-package')
|
||||
|
Loading…
x
Reference in New Issue
Block a user