Use the HTTPS-enabled URL of the project website and a small update to
the Python client library description.
This commit is contained in:
parent
c8b2e1a619
commit
c91689cfcd
|
@ -1,7 +1,7 @@
|
|||
Pod::Spec.new do |spec|
|
||||
spec.name = "miniupnp"
|
||||
spec.summary = "Mini UPnP client"
|
||||
spec.homepage = 'http://miniupnp.free.fr/'
|
||||
spec.summary = "MiniUPnP IGD client"
|
||||
spec.homepage = 'https://miniupnp.tuxfamily.org/'
|
||||
spec.authors = "The MiniUPnP Authors"
|
||||
spec.license = { type: "BSD", file: "miniupnpc/LICENSE" }
|
||||
|
||||
|
|
|
@ -25,8 +25,8 @@ setup(name="miniupnpc",
|
|||
author='Thomas BERNARD',
|
||||
author_email='miniupnp@free.fr',
|
||||
license=open('LICENSE').read(),
|
||||
url='http://miniupnp.free.fr/',
|
||||
description='miniUPnP client',
|
||||
url='https://miniupnp.tuxfamily.org/',
|
||||
description='MiniUPnP IGD client',
|
||||
cmdclass={'build_ext': make_then_build_ext},
|
||||
ext_modules=[
|
||||
Extension(name="miniupnpc", sources=["src/miniupnpcmodule.c"],
|
||||
|
|
|
@ -25,8 +25,8 @@ setup(name="miniupnpc",
|
|||
author='Thomas BERNARD',
|
||||
author_email='miniupnp@free.fr',
|
||||
license=open('LICENSE').read(),
|
||||
url='http://miniupnp.free.fr/',
|
||||
description='miniUPnP client',
|
||||
url='https://miniupnp.tuxfamily.org/',
|
||||
description='MiniUPnP IGD client',
|
||||
ext_modules=[
|
||||
Extension(name="miniupnpc", sources=["src/miniupnpcmodule.c"],
|
||||
libraries=["ws2_32", "iphlpapi"] + compat_lib,
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
|
||||
#define WANDEV_FRIENDLYNAME "WANDevice"
|
||||
#define WANDEV_MANUFACTURER "MiniUPnP"
|
||||
#define WANDEV_MANUFACTURERURL "http://miniupnp.free.fr/"
|
||||
#define WANDEV_MANUFACTURERURL "https://miniupnp.tuxfamily.org/"
|
||||
#define WANDEV_MODELNAME "WAN Device"
|
||||
#define WANDEV_MODELDESCRIPTION "WAN Device"
|
||||
#define WANDEV_MODELNUMBER MINIUPNPD_DATE
|
||||
#define WANDEV_MODELURL "http://miniupnp.free.fr/"
|
||||
#define WANDEV_MODELURL "https://miniupnp.tuxfamily.org/"
|
||||
#define WANDEV_UPC "000000000000"
|
||||
/* UPC is 12 digit (barcode) */
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
|||
#define WANCDEV_MODELNAME "MiniUPnPd"
|
||||
#define WANCDEV_MODELDESCRIPTION "MiniUPnP daemon"
|
||||
#define WANCDEV_MODELNUMBER MINIUPNPD_DATE
|
||||
#define WANCDEV_MODELURL "http://miniupnp.free.fr/"
|
||||
#define WANCDEV_MODELURL "https://miniupnp.tuxfamily.org/"
|
||||
#define WANCDEV_UPC "000000000000"
|
||||
/* UPC is 12 digit (barcode) */
|
||||
|
||||
|
|
Loading…
Reference in New Issue