Skip to content

Commit 88b058f

Browse files
committed
Merge tag '1.1' into debian
2 parents 498eb5a + e96f64d commit 88b058f

8 files changed

Lines changed: 25 additions & 57 deletions

File tree

COPYING

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
python-networkmanager - Easy communication with NetworkManager
2-
Copyright (C) 2011-2015 Dennis Kaarsemaker <dennis@kaarsemaker.net>
2+
Copyright (C) 2011-2016 Dennis Kaarsemaker <dennis@kaarsemaker.net>
33

4-
This program is free software: you can redistribute it and/or modify
5-
it under the terms of the GNU General Public License as published by
6-
the Free Software Foundation, either version 3 of the License, or
7-
(at your option) any later version.
4+
This software is provided 'as-is', without any express or implied
5+
warranty. In no event will the authors be held liable for any damages
6+
arising from the use of this software.
87

9-
This program is distributed in the hope that it will be useful,
10-
but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
GNU General Public License for more details.
8+
Permission is granted to anyone to use this software for any purpose,
9+
including commercial applications, and to alter it and redistribute it
10+
freely, subject to the following restrictions:
1311

14-
You should have received a copy of the GNU General Public License
15-
along with this program. If not, see <http://www.gnu.org/licenses/>.
12+
1. The origin of this software must not be misrepresented; you must not
13+
claim that you wrote the original software. If you use this software
14+
in a product, an acknowledgement in the product documentation would be
15+
appreciated but is not required.
16+
2. Altered source versions must be plainly marked as such, and must not be
17+
misrepresented as being the original software.
18+
3. This notice may not be removed or altered from any source distribution.

HACKING

Lines changed: 0 additions & 15 deletions
This file was deleted.

NetworkManager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# NetworkManager - a library to make interacting with the NetworkManager daemon
22
# easier.
33
#
4-
# (C)2011-2015 Dennis Kaarsemaker
5-
# License: GPL3+
4+
# (C)2011-2016 Dennis Kaarsemaker
5+
# License: zlib
66

77
import dbus
88
import os

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Quick install instructions
1919

2020
Stable version:
2121

22-
$ sudo easy_install python-networkmanager
22+
$ pip install python-networkmanager
2323

2424
Latest code:
2525

2626
$ git clone http://github.com/seveas/python-networkmanager
2727
$ cd python-networkmanager
28-
$ sudo python setup.py install
28+
$ python setup.py install

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = u'python-networkmanager'
44-
copyright = u'2011-2015, Dennis Kaarsemaker'
44+
copyright = u'2011-2016, Dennis Kaarsemaker'
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '1.0'
51+
version = '1.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.0.1'
53+
release = '1.1'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docs/index.rst

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -169,22 +169,3 @@ A class that can be used to query VPN plugins.
169169

170170
.. toctree::
171171
:maxdepth: 2
172-
173-
The n-m utility
174-
---------------
175-
n-m is a command-line tool to interact with NetworkManager. With it, you can
176-
inspect various configuration items and (de-)activate connections.
177-
178-
Usage: [options] action [arguments]
179-
180-
Actions:
181-
list - List all defined and active connections
182-
activate - Activate a connection
183-
deactivate - Deactivate a connection
184-
offline - Deactivate all connections
185-
enable - Enable specific connection types
186-
disable - Disable specific connection types
187-
info - Information about a connection
188-
dump - Dump a python hash of connection information, suitable for
189-
creating new connections
190-

n-m renamed to examples/n-m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Command-line tool to interact with NetworkManager. With this tool, you can
44
# inspect various configuration items and (de-)activate connections.
55
#
6-
# (C) 2011-2015 Dennis Kaarsemaker
7-
# License: GPL3+
6+
# (C) 2011-2016 Dennis Kaarsemaker
7+
# License: zlib
88

99
from __future__ import print_function
1010

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@
33
from distutils.core import setup
44

55
setup(name = "python-networkmanager",
6-
version = "1.0.1",
6+
version = "1.1",
77
author = "Dennis Kaarsemaker",
88
author_email = "dennis@kaarsemaker.net",
99
url = "http://github.com/seveas/python-networkmanager",
1010
description = "Easy communication with NetworkManager",
1111
py_modules = ["NetworkManager"],
12-
scripts = ["n-m"],
1312
classifiers = [
1413
'Development Status :: 5 - Production/Stable',
1514
'Intended Audience :: Developers',
16-
'License :: OSI Approved :: GNU General Public License (GPL)',
15+
'License :: OSI Approved :: zlib/libpng License',
1716
'Operating System :: POSIX :: Linux',
1817
'Programming Language :: Python',
1918
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)