Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--MANIFEST.in1
-rw-r--r--setup.py2
3 files changed, 5 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a4ac6e168..0ec6e97c8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -29,12 +29,11 @@ run-build:
- tar xzf $FN.gz
- rm $FN.gz
- export GF=$(find . -maxdepth 1 -type d -name 'gajim-*')
- - mkdir -p $GF/plugins/
- - cd $GF/plugins/
+ - cd $GF/gajim/plugins/
- curl -O https://ftp.gajim.org/plugins_1/plugin_installer.zip
- unzip plugin_installer.zip
- rm plugin_installer.zip
- - cd ../..
+ - cd ../../..
- tar czf ../$FN.gz gajim-*
- cd ..
- rm -rf tmp_add_plugins
diff --git a/MANIFEST.in b/MANIFEST.in
index 23bb08eaf..d47f8bf79 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,4 @@
include COPYING
recursive-include po *.po
recursive-include data *.1 *.in
+recursive-exclude * *.pyc
diff --git a/setup.py b/setup.py
index e9b7ee1e8..f21dc988b 100644
--- a/setup.py
+++ b/setup.py
@@ -157,12 +157,14 @@ package_data_gui = ['data/gui/*.ui']
package_data_icons = ['data/icons/hicolor/*/*/*.png']
package_data_iconsets = ['data/iconsets/*/*/*.png']
package_data_other = ['data/other/servers.xml']
+package_data_plugin = ['plugins/*/*']
package_data_style = ['data/style/gajim.css']
package_data = (package_data_emoticons
+ package_data_gui
+ package_data_icons
+ package_data_iconsets
+ package_data_other
+ + package_data_plugin
+ package_data_style)