[Python-modules-commits] r31783 - in packages/python-gitdb/trunk/debian (3 files)

yoh at users.alioth.debian.org yoh at users.alioth.debian.org
Fri Feb 6 03:08:19 UTC 2015


    Date: Friday, February 6, 2015 @ 03:08:18
  Author: yoh
Revision: 31783

extend test git repo, add smmap to bdepends

Modified:
  packages/python-gitdb/trunk/debian/changelog
  packages/python-gitdb/trunk/debian/control
  packages/python-gitdb/trunk/debian/rules

Modified: packages/python-gitdb/trunk/debian/changelog
===================================================================
--- packages/python-gitdb/trunk/debian/changelog	2015-02-06 03:08:12 UTC (rev 31782)
+++ packages/python-gitdb/trunk/debian/changelog	2015-02-06 03:08:18 UTC (rev 31783)
@@ -4,7 +4,8 @@
   * debian/{rules,control}
     - enable build-time testing although ignore failures
     - add git to build-depends to initiate a test repository
-    - python-nose to b-depends
+    - python-nose, python-smmap to b-depends
+    - removing python-async from depends (not used any longer)
 
  -- Yaroslav Halchenko <debian at onerussian.com>  Thu, 08 Jan 2015 09:34:34 -0500
 

Modified: packages/python-gitdb/trunk/debian/control
===================================================================
--- packages/python-gitdb/trunk/debian/control	2015-02-06 03:08:12 UTC (rev 31782)
+++ packages/python-gitdb/trunk/debian/control	2015-02-06 03:08:18 UTC (rev 31783)
@@ -8,6 +8,7 @@
 	,python-setuptools
 	,git
 	,python-nose
+	,python-smmap
 Standards-Version: 3.9.6
 Homepage: https://github.com/gitpython-developers/gitdb
 Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/python-gitdb/trunk/
@@ -15,7 +16,7 @@
 
 Package: python-gitdb
 Architecture: any
-Depends: python-async, python-smmap, ${python:Depends},
+Depends: python-smmap, ${python:Depends},
  ${shlibs:Depends}, ${misc:Depends}
 Provides: ${python:Provides}
 Description: pure-Python git object database

Modified: packages/python-gitdb/trunk/debian/rules
===================================================================
--- packages/python-gitdb/trunk/debian/rules	2015-02-06 03:08:12 UTC (rev 31782)
+++ packages/python-gitdb/trunk/debian/rules	2015-02-06 03:08:18 UTC (rev 31783)
@@ -18,6 +18,7 @@
      git init; \
      git config user.name "TESTING"; \
      git config user.email "TESTING at example.com"; \
-     for c in 1 2 3; do echo $$c >| 1; git add 1; git commit -m "commit $$c"; done
-	GITDB_TEST_GIT_REPO_BASE=$(CURDIR)/TESTGITDB/.git nosetests -s -v gitdb/test || echo "Tests failed but continuing..."
+     for c in {1..400}; do echo $$c >| $$c; git add $$c; git commit -m "commit $$c" > /dev/null; done; git gc
+	GITDB_TEST_GIT_REPO_BASE=$(CURDIR)/TESTGITDB/.git \
+     nosetests -s -v gitdb/test || echo "Tests failed but continuing..."
 	rm -rf TESTGITDB




More information about the Python-modules-commits mailing list