diff --git a/PKG-INFO b/PKG-INFO index 1b87542..b47393b 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,10 +1,10 @@ Metadata-Version: 1.0 Name: swh.mirror.forge -Version: 0.0.4 +Version: 0.0.5 Summary: Mirror swhs forge to github Home-page: https://forge.softwareheritage.org/source/swh-mirror-forge/ Author: Software Heritage developers Author-email: swh-devel@inria.fr License: UNKNOWN Description: UNKNOWN Platform: UNKNOWN diff --git a/debian/changelog b/debian/changelog index bc7ca08..b438b99 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,42 +1,43 @@ -swh-mirror-forge (0.0.4-1~swh1~bpo9+1) stretch-swh; urgency=medium +swh-mirror-forge (0.0.5-1~swh1) unstable-swh; urgency=medium - * Rebuild for stretch-backports. + * Release swh.mirror.forge version 0.0.5 + * Update packaging runes - -- Antoine R. Dumont (@ardumont) Thu, 09 Feb 2017 16:15:42 +0100 + -- Nicolas Dandrimont Thu, 12 Oct 2017 18:07:59 +0200 swh-mirror-forge (0.0.4-1~swh1) unstable-swh; urgency=medium * v0.0.4 * Make explicit in github that the org's repositories are mirrors * Completely agnostify from softwareheritage (all is configured from * the configuration file). * Remove arcanist as runtime dependency (use pure python3 requests for * api call) * Unify configuration file * Open the possibility to update mirror information * Update 'requirements' scheme to the latest policy -- Antoine R. Dumont (@ardumont) Thu, 09 Feb 2017 16:15:42 +0100 swh-mirror-forge (0.0.3-1~swh1) unstable-swh; urgency=medium * v0.0.3 * Add the means to use forge's query to mirror repositories -- Antoine R. Dumont (@ardumont) Wed, 08 Feb 2017 17:21:45 +0100 swh-mirror-forge (0.0.2-1~swh1) unstable-swh; urgency=medium * v0.0.2 * Simplify command to mirror a repository, only a callsign and a * credential key is needed -- Antoine R. Dumont (@ardumont) Fri, 03 Feb 2017 16:28:01 +0100 swh-mirror-forge (0.0.1-1~swh1) unstable-swh; urgency=medium * Initial release * v0.0.1 * First implementation on a per repository basis -- Antoine R. Dumont (@ardumont) Fri, 03 Feb 2017 15:01:15 +0100 diff --git a/docs/.gitignore b/docs/.gitignore new file mode 100644 index 0000000..58a761e --- /dev/null +++ b/docs/.gitignore @@ -0,0 +1,3 @@ +_build/ +apidoc/ +*-stamp diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..c30c50a --- /dev/null +++ b/docs/Makefile @@ -0,0 +1 @@ +include ../../swh-docs/Makefile.sphinx diff --git a/docs/_static/.placeholder b/docs/_static/.placeholder new file mode 100644 index 0000000..e69de29 diff --git a/docs/_templates/.placeholder b/docs/_templates/.placeholder new file mode 100644 index 0000000..e69de29 diff --git a/docs/conf.py b/docs/conf.py new file mode 100644 index 0000000..190deb7 --- /dev/null +++ b/docs/conf.py @@ -0,0 +1 @@ +from swh.docs.sphinx.conf import * # NoQA diff --git a/docs/index.rst b/docs/index.rst new file mode 100644 index 0000000..8b64117 --- /dev/null +++ b/docs/index.rst @@ -0,0 +1,15 @@ +Software Heritage - Development Documentation +============================================= + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/setup.py b/setup.py index f12153c..c0a98ba 100644 --- a/setup.py +++ b/setup.py @@ -1,29 +1,29 @@ -from setuptools import setup +from setuptools import setup, find_packages def parse_requirements(): requirements = [] for reqf in ('requirements.txt', 'requirements-swh.txt'): with open(reqf) as f: for line in f.readlines(): line = line.strip() if not line or line.startswith('#'): continue requirements.append(line) return requirements setup( name='swh.mirror.forge', description='Mirror swh''s forge to github', author='Software Heritage developers', author_email='swh-devel@inria.fr', url='https://forge.softwareheritage.org/source/swh-mirror-forge/', - packages=['swh.mirror.forge'], + packages=find_packages(), scripts=[], install_requires=parse_requirements(), setup_requires=['vcversioner'], vcversioner={}, include_package_data=True, ) diff --git a/swh.mirror.forge.egg-info/PKG-INFO b/swh.mirror.forge.egg-info/PKG-INFO index 1b87542..b47393b 100644 --- a/swh.mirror.forge.egg-info/PKG-INFO +++ b/swh.mirror.forge.egg-info/PKG-INFO @@ -1,10 +1,10 @@ Metadata-Version: 1.0 Name: swh.mirror.forge -Version: 0.0.4 +Version: 0.0.5 Summary: Mirror swhs forge to github Home-page: https://forge.softwareheritage.org/source/swh-mirror-forge/ Author: Software Heritage developers Author-email: swh-devel@inria.fr License: UNKNOWN Description: UNKNOWN Platform: UNKNOWN diff --git a/swh.mirror.forge.egg-info/SOURCES.txt b/swh.mirror.forge.egg-info/SOURCES.txt index 5b5f1ea..c7a9748 100644 --- a/swh.mirror.forge.egg-info/SOURCES.txt +++ b/swh.mirror.forge.egg-info/SOURCES.txt @@ -1,23 +1,31 @@ .gitignore AUTHORS LICENSE MANIFEST.in Makefile README.md requirements-swh.txt requirements.txt setup.py version.txt debian/changelog debian/compat debian/control debian/copyright debian/rules debian/source/format +docs/.gitignore +docs/Makefile +docs/conf.py +docs/index.rst +docs/_static/.placeholder +docs/_templates/.placeholder +swh/__init__.py swh.mirror.forge.egg-info/PKG-INFO swh.mirror.forge.egg-info/SOURCES.txt swh.mirror.forge.egg-info/dependency_links.txt swh.mirror.forge.egg-info/requires.txt swh.mirror.forge.egg-info/top_level.txt +swh/mirror/__init__.py swh/mirror/forge/request.py swh/mirror/forge/sync.py \ No newline at end of file diff --git a/swh/__init__.py b/swh/__init__.py new file mode 100644 index 0000000..69e3be5 --- /dev/null +++ b/swh/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/swh/mirror/__init__.py b/swh/mirror/__init__.py new file mode 100644 index 0000000..69e3be5 --- /dev/null +++ b/swh/mirror/__init__.py @@ -0,0 +1 @@ +__path__ = __import__('pkgutil').extend_path(__path__, __name__) diff --git a/version.txt b/version.txt index 3baae10..a707c9a 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -v0.0.4-0-g665fa92 \ No newline at end of file +v0.0.5-0-g832c09d \ No newline at end of file