Changeset 7081
- Timestamp:
- Mar 21, 2018, 1:29:57 PM (3 years ago)
- Location:
- lliurex-gdrive/trunk/fuentes
- Files:
-
- 2 added
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
lliurex-gdrive/trunk/fuentes/debian/control
r6337 r7081 34 34 Package: lliurex-gdrive-indicator 35 35 Architecture: all 36 Depends: ${shlibs:Depends}, ${misc:Depends}, lliurex-gdrive-core (= ${binary:Version}), lliurex-gdrive-gui (= ${binary:Version}), python, python-notify2 36 Depends: ${shlibs:Depends}, ${misc:Depends}, lliurex-gdrive-core (= ${binary:Version}), lliurex-gdrive-gui (= ${binary:Version}), python, python-notify2, gir1.2-appindicator3-0.1,python-tk 37 37 Description: Indicator menu to lliurex-google-drive 38 38 Indicator menu to lliurex-google-drive. -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-core.install/usr/bin/lliurex-gdrive-autostart
r6334 r7081 1 1 #!/usr/bin/env python 2 import lliurex .lliurexgdrive2 import lliurexgdrive 3 3 import os 4 4 import subprocess … … 24 24 def __init__(self): 25 25 26 self.LliurexGoogleDriveManager=lliurex .lliurexgdrive.LliurexGoogleDriveManager()26 self.LliurexGoogleDriveManager=lliurexgdrive.LliurexGoogleDriveManager() 27 27 self.disable_indicator=os.path.expanduser(DISABLE_INDICATOR) 28 28 self.profiles_path=os.path.expanduser(PROFILES_PATH) -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-gui.install/usr/share/lliurex-gdrive/Core.py
r3946 r7081 3 3 4 4 #import LliurexGoogleDriveManager 5 import lliurex .lliurexgdrive5 import lliurexgdrive 6 6 import LliurexGdrive 7 7 import ProfileBox … … 34 34 35 35 self.dprint("Creating Config...") 36 self.LliurexGoogleDriveManager=lliurex .lliurexgdrive.LliurexGoogleDriveManager()36 self.LliurexGoogleDriveManager=lliurexgdrive.LliurexGoogleDriveManager() 37 37 self.dprint("Creating ProfileBox...") 38 38 self.profile_box=ProfileBox.ProfileBox() -
lliurex-gdrive/trunk/fuentes/lliurex-gdrive-indicator.install/usr/bin/lliurexGdriveIndicator
r6556 r7081 28 28 signal.signal(signal.SIGINT, signal.SIG_DFL) 29 29 30 import lliurex .lliurexgdrive30 import lliurexgdrive 31 31 32 32 import gettext … … 60 60 self.lock_indicator=os.path.expanduser(LOCK_INDICATOR) 61 61 62 self.LliurexGoogleDriveManager=lliurex .lliurexgdrive.LliurexGoogleDriveManager()62 self.LliurexGoogleDriveManager=lliurexgdrive.LliurexGoogleDriveManager() 63 63 self.app_indicator=appindicator.Indicator.new("lliurex-gdrive",icon_name,appindicator.IndicatorCategory.APPLICATION_STATUS) 64 64 self.app_indicator.set_status(appindicator.IndicatorStatus.ACTIVE) -
lliurex-gdrive/trunk/fuentes/setup.py
r3943 r7081 24 24 url='http://lliurex.net', 25 25 package_dir={'': 'python-lliurex-gdrive'}, 26 packages=['lliurex .lliurexgdrive'],26 packages=['lliurexgdrive'], 27 27 maintainer='Juan Ramon Pelegrina', 28 28 maintainer_email='juapesai@hotmail.com',
Note: See TracChangeset
for help on using the changeset viewer.