From a86b289c370fd468a495ff74b753745d770c069d Mon Sep 17 00:00:00 2001 From: David Gasaway Date: Sat, 13 Mar 2021 11:33:19 -0800 Subject: [PATCH] Update for github. --- .hgignore | 2 +- CHANGES.txt | 3 +++ README.rst | 9 +++++---- copypl/_version.py | 2 +- copypl/copypl.py | 2 +- setup.py | 4 ++-- 6 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.hgignore b/.hgignore index 0fc5118..e9bc58a 100644 --- a/.hgignore +++ b/.hgignore @@ -2,4 +2,4 @@ syntax: regexp \.pyc$ ^build$ ^dist$ -^copypl.egg-info$ +\.egg-info$ diff --git a/CHANGES.txt b/CHANGES.txt index faa4b32..df2ffba 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,2 +1,5 @@ 2019-01-13, copypl v1.0.0 * Initial release. + +2021-03-13, copypl v1.0.1 + * Move to github and repackage. diff --git a/README.rst b/README.rst index b3db2a4..ee2c27a 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,8 @@ folder will get copied repeatedly. Installation ============ -.. warning:: +Warning +------- Some Linux distributions discourage installation of system-level python packages using ``pip`` or ``setup.py install``, due to collisions with the @@ -87,14 +88,14 @@ Installing from source ---------------------- Either download a release tarball from the -`Downloads `_ page, and +`Releases `_ page, and unpack:: $ tar zxvf copypl-1.0.0.tar.gz -Or get the latest source from the Mercurial repository:: +Or get the latest source from the git repository:: - $ hg clone https://bitbucket.org/dgasaway/copypl + $ git clone https://bitbucket.org/dgasaway/copypl If you have access to install software in the system packages, then it can be installed as administrator:: diff --git a/copypl/_version.py b/copypl/_version.py index 3be61d2..14f096b 100644 --- a/copypl/_version.py +++ b/copypl/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (1, 0, 0) +__version_info__ = (1, 0, 1) __version__ = '.'.join(map(str, __version_info__)) diff --git a/copypl/copypl.py b/copypl/copypl.py index 8c31217..e284f89 100644 --- a/copypl/copypl.py +++ b/copypl/copypl.py @@ -2,7 +2,7 @@ # copypl - Copies files referenced by an m3u/m3u8/pls playlist. # Copyright (C) 2019 David Gasaway -# https://bitbucket.org/dgasaway/copypl +# https://github.com/dgasaway/copypl # This program is free software; you can redistribute it and/or modify it under the terms of the GNU # General Public License as published by the Free Software Foundation; either version 2 of the diff --git a/setup.py b/setup.py index 2676daa..ef2ac03 100644 --- a/setup.py +++ b/setup.py @@ -16,8 +16,8 @@ long_description_content_type='text/x-rst', author='David Gasaway', author_email='dave@gasaway.org', - url='https://bitbucket.org/dgasaway/copypl', - download_url='https://bitbucket.org/dgasaway/copypl/downloads/', + url='https://github.com/dgasaway/copypl', + download_url='https://github.com/dgasaway/copypl/releases', license='GNU GPL v2', py_modules=['copypl/copypl', 'copypl/_version'], entry_points={