[Python-modules-commits] [dill] 03/07: imported debian directory

Josué Ortega noahfx-guest at moszumanska.debian.org
Sun Nov 1 19:43:26 UTC 2015


This is an automated email from the git hooks/post-receive script.

noahfx-guest pushed a commit to branch master
in repository dill.

commit cf39aae37edd116b9b55455bef24ec33107017ef
Author: Josue Ortega <josueortega at debian.org.gt>
Date:   Sun Nov 1 12:54:54 2015 -0600

    imported debian directory
---
 debian/changelog      | 24 +++++++++++++
 debian/compat         |  1 +
 debian/control        | 47 ++++++++++++++++++++++++
 debian/copyright      | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/docs           |  1 +
 debian/rules          |  8 +++++
 debian/source/options |  2 ++
 debian/watch          |  3 ++
 8 files changed, 184 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..f5512f4
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,24 @@
+dill (0.2.4-1) unstable; urgency=medium
+
+  * New upstream release:
+    - Updated debian/patches/*.
+  * debian/control:
+    - Changed VCS from collab-maint to python-modules repository.
+    - Removed unnecessary dependencies: python-setuptools, python3-setuptools.
+    - Removed version from python-all and python3-all
+ -- Josue Ortega <josueortega at debian.org.gt>  Thu, 20 Aug 2015 12:06:36 +0200
+
+dill (0.2.3-1) unstable; urgency=medium
+
+  * New upstream release:
+    - Updated debian/patches.
+  * debian/watch: Fixed versioning format, since upstream changed it.
+  * debian/control: Added missing dh-python dependency
+
+ -- Josue Ortega <josueortega at debian.org.gt>  Thu, 16 Jul 2015 23:42:46 -0600
+
+dill (0.2.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #771596).
+
+ -- Josue Ortega <josueortega at debian.org.gt>  Sun, 30 Nov 2014 16:38:44 -0600
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..f2b6386
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,47 @@
+Source: dill
+Section: python
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Josue Ortega <josueortega at debian.org.gt>
+Build-Depends: debhelper (>= 9),
+ dh-python,
+ python-all,
+ python3-all
+X-Python-Version: >= 2.7
+X-Python3-Version: >= 3.2
+Standards-Version: 3.9.6
+Homepage: https://github.com/uqfoundation/dill
+Vcs-Git: git://anonscm.debian.org/python-modules/packages/dill.git
+Vcs-Browser: http://anonscm.debian.org/cgit/python-modules/packages/dill.git
+
+Package: python-dill
+Architecture: all
+Depends: ${misc:Depends},
+ ${python:Depends},
+ python-ctypeslib (>= 0.0.0+svn20100125)
+Suggests: python-objgraph (>= 1.8.1)
+Description: Serialize all of Python (almost)
+ Dill extends Python's 'pickle' module for serializing and de-serializing Python
+ objects to the majority of the built-in Python types.
+ Dill provides the user the same interface as the 'pickle' module, and also
+ includes some additional features. In addition to pickling Python objects,
+ dill provides the ability to save the state of an interpreter session in a
+ single command.
+ Dill can be used to store Python objects to a file, but the primary usage is to
+ send Python objects across the network as a byte stream.
+
+Package: python3-dill
+Architecture: all
+Depends: ${misc:Depends},
+ ${python3:Depends},
+ python-ctypeslib (>= 0.0.0+svn20100125)
+Suggests: python3-objgraph (>= 1.8.1)
+Description: Serialize all of Python 3 (almost)
+ Dill extends Python 3's 'pickle' module for serializing and
+ de-serializing Python 3 objects to the majority of the built-in Python 3 types.
+ Dill provides the user the same interface as the 'pickle' module, and also
+ includes some additional features. In addition to pickling Python 3 objects,
+ dill provides the ability to save the state of an interpreter session in a
+ single command.
+ Dill can be used to store Python 3 objects to a file, but the primary usage is
+ to send Python 3 objects across the network as a byte stream.
\ No newline at end of file
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..4452633
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,98 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: dill
+Source: https://github.com/uqfoundation/dill
+
+Files: *
+Copyright: 2008-2014 California Institute of Technology.
+License: BSD-3
+
+Files: debian/*
+Copyright: 2014 Josue Ortega <josueortega at debian.org.gt>
+License: BSD-3
+
+Files: dill/pointers.py
+Copyright: 2008-2010 Marius Gedminas <marius at pov.lt>
+           2010 Stefano Rivera <stefano at rivera.za.net>
+License: MIT
+Comment: Upstream has commented in his code as follows:
+ "# more generic helper function (cut-n-paste from objgraph)
+  # Source at http://mg.pov.lt/objgraph/
+  # Copyright (c) 2008-2010 Marius Gedminas <marius at pov.lt>
+  # Copyright (c) 2010 Stefano Rivera <stefano at rivera.za.net>
+  # Released under the MIT licence (see objgraph/objgrah.py)"
+
+Files: dill/dill.py
+Copyright: 2011 science+computing ag
+License: Apache-2
+Comment: Upstream has commented in his code as follows:
+ "# The following two functions are based on 'saveCStringIoInput'
+  # and 'saveCStringIoOutput' from spickle
+  # Copyright (c) 2011 by science+computing ag
+  # License: http://www.apache.org/licenses/LICENSE-2."
+  The function names are:
+  - save_stringi
+  - save_stringo
+
+License: BSD-3
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+ .
+ Redistribution of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ .
+ Redistribution in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentations and/or other materials provided with the distribution.
+ .
+ Neither the name of the California Institute of Technology nor
+ the names of its contributors may be used to endorse or promote
+ products derived from this software without specific prior written
+ permission.
+ .
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
+ CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+ EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+License: Apache-2
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+ .
+ http://www.apache.org/licenses/LICENSE-2.0
+ .
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+ .
+ On Debian systems, the full text of the Apache License version 2 can be
+ found in the file '/usr/share/common-licenses/Apache-2.0'.
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..0aa0421
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+
+#DH_VERBOSE = 1
+
+export PYBUILD_NAME=dill
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild
diff --git a/debian/source/options b/debian/source/options
new file mode 100644
index 0000000..e2e7ca2
--- /dev/null
+++ b/debian/source/options
@@ -0,0 +1,2 @@
+# Don't store changes on autogenerated files
+extend-diff-ignore = "(^|/)(info\.py|README)$"
\ No newline at end of file
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..e739ff2
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/dill-$1\.tar\.gz/ \
+  https://github.com/uqfoundation/dill/tags .*/dill-*(\d\S*)\.tar\.gz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/dill.git



More information about the Python-modules-commits mailing list