aboutsummaryrefslogtreecommitdiffstats
path: root/scudcloud-1.0/debian
diff options
context:
space:
mode:
authorRael <rael.gc@gmail.com>2015-03-04 12:49:00 -0300
committerRael <rael.gc@gmail.com>2015-03-04 12:49:00 -0300
commit2acc63f46b90506f2ab79b9fd4d79ad27994c410 (patch)
treeced5c15b9d9c73e126e16c187d37aa9b1af0ab2f /scudcloud-1.0/debian
parente4dab6357b6c4ce06d353d627ce689b8cc2f8da0 (diff)
downloadscudcloud-2acc63f46b90506f2ab79b9fd4d79ad27994c410.zip
scudcloud-2acc63f46b90506f2ab79b9fd4d79ad27994c410.tar.gz
scudcloud-2acc63f46b90506f2ab79b9fd4d79ad27994c410.tar.bz2
Generating compiled files during install (#13)
Diffstat (limited to 'scudcloud-1.0/debian')
-rw-r--r--scudcloud-1.0/debian/changelog6
-rw-r--r--scudcloud-1.0/debian/control2
-rw-r--r--scudcloud-1.0/debian/install12
-rw-r--r--scudcloud-1.0/debian/postinst1
4 files changed, 14 insertions, 7 deletions
diff --git a/scudcloud-1.0/debian/changelog b/scudcloud-1.0/debian/changelog
index 092f7ac..e40a4e3 100644
--- a/scudcloud-1.0/debian/changelog
+++ b/scudcloud-1.0/debian/changelog
@@ -1,3 +1,9 @@
+scudcloud (1.0-4) trusty; urgency=low
+
+ * Removing compiled files from package source (#13)
+
+ -- Rael Gugelmin Cunha <rael.gc@gmail.com> Wed, 04 Mar 2015 10:55:30 -0300
+
scudcloud (1.0-3) trusty; urgency=low
* Adding support to other DEs (#12)
diff --git a/scudcloud-1.0/debian/control b/scudcloud-1.0/debian/control
index 8683683..76425bf 100644
--- a/scudcloud-1.0/debian/control
+++ b/scudcloud-1.0/debian/control
@@ -2,7 +2,7 @@ Source: scudcloud
Section: utils
Priority: optional
Maintainer: Rael Gugelmin Cunha <rael.gc@gmail.com>
-Build-Depends: debhelper (>= 9)
+Build-Depends: debhelper (>= 9), python3 | python3-all | python3-dev | python3-all-dev
Standards-Version: 3.9.5
Homepage: https://github.com/raelgc/scudcloud
diff --git a/scudcloud-1.0/debian/install b/scudcloud-1.0/debian/install
index 82eaea0..facd9c4 100644
--- a/scudcloud-1.0/debian/install
+++ b/scudcloud-1.0/debian/install
@@ -1,14 +1,14 @@
-lib/cookiejar.pyc opt/scudcloud/lib
-lib/launcher.pyc opt/scudcloud/lib
-lib/notify2.pyc opt/scudcloud/lib
-lib/systray.pyc opt/scudcloud/lib
-lib/wrapper.pyc opt/scudcloud/lib
+lib/cookiejar.py opt/scudcloud/lib
+lib/launcher.py opt/scudcloud/lib
+lib/notify2.py opt/scudcloud/lib
+lib/scudcloud.py opt/scudcloud/lib
+lib/systray.py opt/scudcloud/lib
+lib/wrapper.py opt/scudcloud/lib
LICENSE opt/scudcloud
resources/login.css opt/scudcloud/resources
resources/scudcloud.js opt/scudcloud/resources
resources/scudcloud.png opt/scudcloud/resources
scudcloud opt/scudcloud
-scudcloud.pyc opt/scudcloud
scudcloud.desktop usr/share/applications
systray/mono-dark/scudcloud.svg usr/share/icons/ubuntu-mono-dark/scalable/apps
systray/mono-dark/scudcloud-attention.svg usr/share/icons/ubuntu-dark-light/scalable/apps
diff --git a/scudcloud-1.0/debian/postinst b/scudcloud-1.0/debian/postinst
index 2da5fa6..82e802f 100644
--- a/scudcloud-1.0/debian/postinst
+++ b/scudcloud-1.0/debian/postinst
@@ -21,6 +21,7 @@ set -e
case "$1" in
configure)
xdg-icon-resource forceupdate
+ python3 -m compileall /opt/scudcloud/lib/
;;
abort-upgrade|abort-remove|abort-deconfigure)