[Python-modules-commits] r23691 - in packages/python-mccabe/tags (5 files)
cjohnston-guest at users.alioth.debian.org
cjohnston-guest at users.alioth.debian.org
Sat Mar 9 04:50:16 UTC 2013
Date: Saturday, March 9, 2013 @ 04:50:10
Author: cjohnston-guest
Revision: 23691
[svn-buildpackage] Tagging python-mccabe 0.2-1
Added:
packages/python-mccabe/tags/0.2-1/
packages/python-mccabe/tags/0.2-1/debian/control
(from rev 23690, packages/python-mccabe/trunk/debian/control)
packages/python-mccabe/tags/0.2-1/debian/rules
(from rev 23640, packages/python-mccabe/trunk/debian/rules)
Deleted:
packages/python-mccabe/tags/0.2-1/debian/control
packages/python-mccabe/tags/0.2-1/debian/rules
Deleted: packages/python-mccabe/tags/0.2-1/debian/control
===================================================================
--- packages/python-mccabe/trunk/debian/control 2013-03-02 20:37:02 UTC (rev 23639)
+++ packages/python-mccabe/tags/0.2-1/debian/control 2013-03-09 04:50:10 UTC (rev 23691)
@@ -1,28 +0,0 @@
-Source: python-mccabe
-Section: python
-Priority: optional
-Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
-Uploaders: Chris Johnston <chrisjohnston at ubuntu.com>
-Build-Depends: debhelper (>= 9), python-all, python3-all, python-setuptools,
- python3-setuptools
-Standards-Version: 3.9.4
-Homepage: https://github.com/florentx/mccabe
-Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/mccabe/trunk/
-Vcs-Svn: http://anonscm.debian.org/viewvc/python-modules/packages/mccabe/
-X-Python-Version: >= 2.6
-X-Python3-Version: >= 3.1
-
-Package: python-mccabe
-Architecture: all
-Depends: ${misc:Depends}, ${python:Depends}
-Description: Python code complexity checker
- This module provides a plugin for the flake8 Python code checker to run the
- McCabe code complexity script against Python code.
-
-Package: python3-mccabe
-Architecture: all
-Depends: ${misc:Depends}, ${python3:Depends}
-Description: Python code complexity checker
- This module provides a plugin for the flake8 Python code checker to run the
- McCabe code complexity script against Python code.
-
Copied: packages/python-mccabe/tags/0.2-1/debian/control (from rev 23690, packages/python-mccabe/trunk/debian/control)
===================================================================
--- packages/python-mccabe/tags/0.2-1/debian/control (rev 0)
+++ packages/python-mccabe/tags/0.2-1/debian/control 2013-03-09 04:50:10 UTC (rev 23691)
@@ -0,0 +1,31 @@
+Source: python-mccabe
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Chris Johnston <chrisjohnston at ubuntu.com>
+Build-Depends: debhelper (>= 9), python-all, python3-all, python-setuptools,
+ python3-setuptools
+Standards-Version: 3.9.4
+Homepage: https://github.com/flintwork/mccabe
+Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-mccabe/trunk/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-mccabe/trunk/
+X-Python-Version: >= 2.6
+X-Python3-Version: >= 3.1
+
+Package: python-mccabe
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}
+Description: Python code complexity checker (Python 2)
+ This module provides a plugin for the flake8 Python code checker to run the
+ McCabe code complexity script against Python code.
+ .
+ This package provides Python 2 module bindings only.
+
+Package: python3-mccabe
+Architecture: all
+Depends: ${misc:Depends}, ${python3:Depends}
+Description: Python code complexity checker (Python 3)
+ This module provides a plugin for the flake8 Python code checker to run the
+ McCabe code complexity script against Python 3 code.
+ .
+ This package provides Python 3 module bindings only.
Deleted: packages/python-mccabe/tags/0.2-1/debian/rules
===================================================================
--- packages/python-mccabe/trunk/debian/rules 2013-03-02 20:37:02 UTC (rev 23639)
+++ packages/python-mccabe/tags/0.2-1/debian/rules 2013-03-09 04:50:10 UTC (rev 23691)
@@ -1,41 +0,0 @@
-#!/usr/bin/make -f
-PY2_PACKAGE_NAME=python-mccabe
-PY3_PACKAGE_NAME=python3-mccabe
-
-PYVERS=$(shell pyversions -r)
-PY3VERS=$(shell py3versions -r)
-
-%:
- dh $@ --with python2,python3
-
-override_dh_auto_clean:
- rm -rf mcabe.egg-info
- dh_auto_clean
-
-override_dh_auto_build:
- set -xe; \
- for py in $(PYVERS) $(PY3VERS); do \
- $$py setup.py build; \
- done
-
-override_dh_auto_install:
- set -xe; \
- for py in $(PYVERS); do \
- $$py setup.py install --skip-build --root debian/$(PY2_PACKAGE_NAME) \
- --install-layout deb; \
- done
- set -xe; \
- for py in $(PY3VERS); do \
- $$py setup.py install --skip-build --root debian/$(PY3_PACKAGE_NAME) \
- --install-layout deb; \
- done
-
- # Remove me when dh_python2 can handle this file
- rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt
-
-override_dh_python2:
- dh_python2 --shebang=/usr/bin/python
-
-override_dh_python3:
- dh_python3 --shebang=/usr/bin/python3
-
Copied: packages/python-mccabe/tags/0.2-1/debian/rules (from rev 23640, packages/python-mccabe/trunk/debian/rules)
===================================================================
--- packages/python-mccabe/tags/0.2-1/debian/rules (rev 0)
+++ packages/python-mccabe/tags/0.2-1/debian/rules 2013-03-09 04:50:10 UTC (rev 23691)
@@ -0,0 +1,43 @@
+#!/usr/bin/make -f
+PY2_PACKAGE_NAME=python-mccabe
+PY3_PACKAGE_NAME=python3-mccabe
+
+PYVERS=$(shell pyversions -r)
+PY3VERS=$(shell py3versions -r)
+
+%:
+ dh $@ --with python2,python3
+
+override_dh_auto_clean:
+ rm -rf mcabe.egg-info
+ dh_auto_clean
+
+override_dh_auto_build:
+ set -xe; \
+ for py in $(PYVERS) $(PY3VERS); do \
+ $$py setup.py build; \
+ done
+
+override_dh_auto_install:
+ set -xe; \
+ for py in $(PYVERS); do \
+ $$py setup.py install --skip-build --root debian/$(PY2_PACKAGE_NAME) \
+ --install-layout deb; \
+ done
+ set -xe; \
+ for py in $(PY3VERS); do \
+ $$py setup.py install --skip-build --root debian/$(PY3_PACKAGE_NAME) \
+ --install-layout deb; \
+ done
+
+ # Remove me when dh_python2 can handle this file
+ rm -vf debian/*/usr/lib/python*/*-packages/*.egg-info/SOURCES.txt
+
+override_dh_python2:
+ dh_python2 --shebang=/usr/bin/python
+
+override_dh_python3:
+ dh_python3 --shebang=/usr/bin/python3
+
+override_dh_installchangelogs:
+ dh_installchangelogs README.rst
More information about the Python-modules-commits
mailing list