1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
diff -rU2 dput.orig/dput/configfile.py dput/dput/configfile.py
--- dput.orig/dput/configfile.py 2022-07-01 15:15:28.000000000 -0700
+++ dput/dput/configfile.py 2022-10-27 10:42:36.104653583 -0700
@@ -12,5 +12,5 @@
import sys
-import xdg
+from xdg import BaseDirectory
@@ -23,5 +23,5 @@
('global', os.path.join(os.path.sep, "etc", "dput.cf")),
('user_xdg', os.path.join(
- xdg.xdg_config_home(), "dput", "dput.cf")),
+ BaseDirectory.xdg_config_home, 'dput', 'dput.cf')),
('user_home', os.path.join(
os.path.expanduser("~"), ".dput.cf")),
diff -rU2 dput.orig/setup.py dput/setup.py
--- dput.orig/setup.py 2022-07-01 15:15:28.000000000 -0700
+++ dput/setup.py 2022-10-27 10:36:34.862581758 -0700
@@ -75,5 +75,5 @@
"python-debian",
"gpg",
- "xdg",
+ "pyxdg",
],
install_requires=[
@@ -83,5 +83,5 @@
"python-debian",
"gpg",
- "xdg",
+ "pyxdg",
],
entry_points={
|