1
|
|
|
#!/usr/bin/env python |
2
|
|
|
# -*- coding: utf8 -*- |
3
|
|
|
# |
4
|
|
|
# versions.py : checks releases and versions of programs through RSS |
5
|
|
|
# or Atom feeds and tells you |
6
|
|
|
# |
7
|
|
|
# (C) Copyright 2016 - 2018 Olivier Delhomme |
8
|
|
|
# e-mail : [email protected] |
9
|
|
|
# |
10
|
|
|
# This program is free software; you can redistribute it and/or modify |
11
|
|
|
# it under the terms of the GNU General Public License as published by |
12
|
|
|
# the Free Software Foundation; either version 3, or (at your option) |
13
|
|
|
# any later version. |
14
|
|
|
# |
15
|
|
|
# This program is distributed in the hope that it will be useful, |
16
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
17
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18
|
|
|
# GNU General Public License for more details. |
19
|
|
|
# |
20
|
|
|
# You should have received a copy of the GNU General Public License |
21
|
|
|
# along with this program; if not, write to the Free Software Foundation, |
22
|
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
23
|
|
|
# |
24
|
1 |
|
import codecs |
25
|
1 |
|
import sys |
26
|
1 |
|
import locale |
27
|
1 |
|
import argparse |
28
|
1 |
|
import os |
29
|
1 |
|
import re |
30
|
1 |
|
import errno |
31
|
1 |
|
import time |
32
|
1 |
|
import doctest |
33
|
1 |
|
import feedparser |
34
|
1 |
|
import yaml |
35
|
1 |
|
import operator |
36
|
|
|
|
37
|
|
|
|
38
|
|
|
|
39
|
|
|
|
40
|
1 |
|
def print_project_version(project, version): |
41
|
|
|
""" |
42
|
|
|
Prints to the standard output project name and it's version. |
43
|
|
|
""" |
44
|
|
|
|
45
|
1 |
|
print(u'{} {}'.format(project, version)) |
46
|
|
|
|
47
|
|
|
# End of print_project_version() function |
48
|
|
|
|
49
|
|
|
|
50
|
1 |
|
def print_debug(debug, message): |
51
|
|
|
""" |
52
|
|
|
Prints 'message' if debug mode is True |
53
|
|
|
""" |
54
|
|
|
|
55
|
1 |
|
if debug: |
56
|
1 |
|
print(u'{}'.format(message)) |
57
|
|
|
|
58
|
|
|
# End of print_debug() function |
59
|
|
|
|