poezio: 0.8.1 -> 0.9
This commit is contained in:
parent
eda7843cab
commit
b867cc62a7
@ -1,11 +0,0 @@
|
|||||||
--- a/setup.py 2014-03-20 22:27:14.000000000 +0100
|
|
||||||
+++ b/setup.py 2015-07-10 21:18:30.156196111 +0200
|
|
||||||
@@ -49,7 +49,7 @@
|
|
||||||
scripts = ['scripts/poezio'],
|
|
||||||
data_files = [('share/man/man1/', ['data/poezio.1'])],
|
|
||||||
|
|
||||||
- install_requires = ['sleekxmpp==1.2.4',
|
|
||||||
+ install_requires = ['sleekxmpp==1.2.5',
|
|
||||||
'dnspython3>=1.11.1'],
|
|
||||||
extras_require = {'OTR plugin': 'python-potr>=1.0',
|
|
||||||
'Screen autoaway plugin': 'pyinotify==0.9.4'}
|
|
@ -1,15 +1,15 @@
|
|||||||
diff -ruN a/src/config.py b/src/config.py
|
diff -ruN a/src/config.py b/src/config.py
|
||||||
--- a/src/config.py 2014-03-20 22:27:05.000000000 +0100
|
--- a/src/config.py 2015-07-31 19:35:37.000000000 +0000
|
||||||
+++ b/src/config.py 2015-07-10 21:24:37.583136078 +0200
|
+++ b/src/config.py 2015-08-03 09:23:34.322098081 +0000
|
||||||
@@ -18,6 +18,7 @@
|
@@ -14,6 +14,7 @@
|
||||||
|
|
||||||
|
import logging.config
|
||||||
import os
|
import os
|
||||||
import logging
|
|
||||||
+import stat
|
+import stat
|
||||||
|
import sys
|
||||||
|
import pkg_resources
|
||||||
|
|
||||||
from configparser import RawConfigParser, NoOptionError, NoSectionError
|
@@ -563,6 +564,13 @@
|
||||||
from os import environ, makedirs, path, remove
|
|
||||||
@@ -279,6 +280,13 @@
|
|
||||||
copy2(default, options.filename)
|
copy2(default, options.filename)
|
||||||
elif path.isfile(other):
|
elif path.isfile(other):
|
||||||
copy2(other, options.filename)
|
copy2(other, options.filename)
|
||||||
@ -20,6 +20,6 @@ diff -ruN a/src/config.py b/src/config.py
|
|||||||
+ os.chmod(options.filename,
|
+ os.chmod(options.filename,
|
||||||
+ os.stat(options.filename).st_mode | stat.S_IWUSR)
|
+ os.stat(options.filename).st_mode | stat.S_IWUSR)
|
||||||
+
|
+
|
||||||
|
global firstrun
|
||||||
firstrun = True
|
firstrun = True
|
||||||
|
|
||||||
try:
|
|
||||||
|
@ -16822,21 +16822,20 @@ let
|
|||||||
|
|
||||||
poezio = buildPythonPackage rec {
|
poezio = buildPythonPackage rec {
|
||||||
name = "poezio-${version}";
|
name = "poezio-${version}";
|
||||||
version = "0.8.1";
|
version = "0.9";
|
||||||
|
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
disabled = (!isPy3k);
|
disabled = (!isPy34);
|
||||||
propagatedBuildInputs = with self ; [ dnspython3 sleekxmpp ];
|
propagatedBuildInputs = with self ; [ aiodns slixmpp ];
|
||||||
|
|
||||||
patches =
|
patches =
|
||||||
let patch_base = ../development/python-modules/poezio ;
|
let patch_base = ../development/python-modules/poezio ;
|
||||||
in [ "${patch_base}/make_default_config_writable.patch"
|
in [ "${patch_base}/make_default_config_writable.patch"
|
||||||
"${patch_base}/fix_requirements.patch"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = pkgs.fetchurl {
|
||||||
url = "http://dev.louiz.org/attachments/download/52/${name}.tar.xz";
|
url = "http://dev.louiz.org/attachments/download/91/${name}.tar.xz";
|
||||||
sha256 = "0n3phh3lc82609ssfvqvd4papvhykd1sf2bm88dggh2x4mypwjff";
|
sha256 = "1vc7zn4rp0ds0cdh1xcmbwx6w2qh4pnpzi5mdnj3rpl7xdr6jqzi";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
Reference in New Issue
Block a user