[med-svn] [Git][med-team/pynn][master] 8 commits: (Build-)Depends: python3-neo
Andreas Tille
gitlab at salsa.debian.org
Thu Mar 5 10:02:01 GMT 2020
Andreas Tille pushed to branch master at Debian Med / pynn
Commits:
3ddb05b3 by Andreas Tille at 2020-03-05T09:57:05+01:00
(Build-)Depends: python3-neo
- - - - -
67e6eb31 by Andreas Tille at 2020-03-05T10:37:30+01:00
Ignore test suite errors which are most probably caused by lazyarray
- - - - -
379ca5de by Andreas Tille at 2020-03-05T10:44:46+01:00
Fix installdocs
- - - - -
a2a46322 by Andreas Tille at 2020-03-05T10:45:31+01:00
Also install AUTHORS and CONTRIBUTING
- - - - -
7b7bb7fe by Andreas Tille at 2020-03-05T10:48:00+01:00
Fix typo
- - - - -
070d4524 by Andreas Tille at 2020-03-05T10:51:36+01:00
Fix permissions of *.mod files
- - - - -
18f54bdb by Andreas Tille at 2020-03-05T10:54:08+01:00
Fix copyright
- - - - -
baf47888 by Andreas Tille at 2020-03-05T11:01:40+01:00
Upload to new
- - - - -
5 changed files:
- debian/changelog
- debian/control
- debian/copyright
- debian/docs
- debian/rules
Changes:
=====================================
debian/changelog
=====================================
@@ -1,4 +1,4 @@
-pynn (0.9.5-1) UNRELEASED; urgency=medium
+pynn (0.9.5-1) unstable; urgency=medium
* Team upload.
* Take over package into Debian Med team maintenance
@@ -14,9 +14,13 @@ pynn (0.9.5-1) UNRELEASED; urgency=medium
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
Repository-Browse.
* New (Build-)Depends: python3-neuron, python3-quantities,
- python3-lazyarray
+ python3-lazyarray, python3-neo
+ * Ignore test suite errors which are most probably caused by lazyarray
+ (see https://bitbucket.org/apdavison/lazyarray/issues/6/test-failure)
+ * Fix permissions of *.mod files
+ * Fix copyright
- -- Andreas Tille <tille at debian.org> Thu, 05 Mar 2020 08:08:28 +0100
+ -- Andreas Tille <tille at debian.org> Thu, 05 Mar 2020 10:54:14 +0100
pynn (0.7.5-1) experimental; urgency=low
=====================================
debian/control
=====================================
@@ -15,7 +15,8 @@ Build-Depends: debhelper-compat (= 12),
python3-jinja2,
python3-neuron,
python3-quantities,
- python3-lazyarray
+ python3-lazyarray,
+ python3-neo
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/med-team/pynn
Vcs-Git: https://salsa.debian.org/med-team/pynn.git
@@ -25,9 +26,10 @@ Package: python3-pynn
Architecture: all
Depends: ${shlibs:Depends},
${misc:Depends},
- ${python3:Depends}
+ ${python3:Depends},
python3-neuron,
- python3-quantities
+ python3-quantities,
+ python3-neo
Recommends: python3-jinja2,
python3-cheetah,
python3-lazyarray
=====================================
debian/copyright
=====================================
@@ -8,40 +8,13 @@ X-References:
network simulators. Front. Neuroinform. doi:10.3389/neuro.11.011.2008
Files: *
-Copyright: PyNN Contributors
+Copyright: 2008-2019 PyNN Contributors
License: CeCILL-2
- This software is governed by the CeCILL license under French law and
- abiding by the rules of distribution of free software. You can use,
- modify and/ or redistribute the software under the terms of the CeCILL
- license as circulated by CEA, CNRS and INRIA at the following URL
- "http://www.cecill.info".
- .
- As a counterpart to the access to the source code and rights to copy,
- modify and redistribute granted by the license, users are provided only
- with a limited warranty and the software's author, the holder of the
- economic rights, and the successive licensors have only limited
- liability.
- .
- In this respect, the user's attention is drawn to the risks associated
- with loading, using, modifying and/or developing or reproducing the
- software by the user in light of its specific status of free software,
- that may mean that it is complicated to manipulate, and that also
- therefore means that it is reserved for developers and experienced
- professionals having in-depth computer knowledge. Users are therefore
- encouraged to load and test the software's suitability as regards their
- requirements in conditions enabling the security of their systems and/or
- data to be ensured and, more generally, to use and operate it in the
- same conditions as regards security.
- .
- The fact that you are presently reading this means that you have had
- knowledge of the CeCILL license and that you accept its terms.
- .
- Full version of CeCILL v.2 license is included below.
-
Files: debian/*
Copyright: 2010-2011, Yaroslav Halchenko <debian at onerussian.com>
2012, Michael Hanke <michael.hanke at gmail.com>
+ 2020, Andreas Tille <tille at debian.org>
License: GPL-3
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
@@ -60,7 +33,7 @@ License: GPL-3
can be found in `/usr/share/common-licenses/GPL-3'.
-License: CeCILL-2 (Full)
+License: CeCILL-2
FREE SOFTWARE LICENSE AGREEMENT
.
Notice
@@ -402,7 +375,7 @@ License: CeCILL-2 (Full)
terms and conditions of such technical assistance, and/or such
maintenance, shall be set forth in a separate instrument. Only the
Licensor offering said maintenance and/or technical assistance services
- shall incur liability therefor.
+ shall incur liability therefore.
.
7.2 Similarly, any Licensor is entitled to offer to its licensees, under
its sole responsibility, a warranty, that shall only be binding upon
=====================================
debian/docs
=====================================
@@ -1 +1,3 @@
-README
+README*
+AUTHORS*
+CONTRIBUTING*
=====================================
debian/rules
=====================================
@@ -5,3 +5,17 @@ export PYBUILD_NAME=pynn
%:
dh $@ --with python3 --buildsystem=pybuild
+
+# Ignore test suite errors which are most probably caused by lazyarray
+# see https://bitbucket.org/apdavison/lazyarray/issues/6/test-failure
+# At least the error message are exactly the same as for lazyarray and
+# even the different behaviour between Python3.7 and Python3.8 can be
+# observed
+override_dh_auto_test:
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ dh_auto_test || true
+endif
+
+override_dh_fixperms:
+ dh_fixperms
+ find debian -name "*.mod" -exec chmod -x \{\} \;
View it on GitLab: https://salsa.debian.org/med-team/pynn/-/compare/07ce2d9dd19dc6439829bff59c327dd2ea414603...baf47888674802c5fc6ebc7afcc02d6bcdd2e089
--
View it on GitLab: https://salsa.debian.org/med-team/pynn/-/compare/07ce2d9dd19dc6439829bff59c327dd2ea414603...baf47888674802c5fc6ebc7afcc02d6bcdd2e089
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20200305/b953908c/attachment-0001.html>
More information about the debian-med-commit
mailing list