[med-svn] [cereal] 02/02: initial import
Michael Crusoe
misterc-guest at moszumanska.debian.org
Sat Sep 19 03:25:30 UTC 2015
This is an automated email from the git hooks/post-receive script.
misterc-guest pushed a commit to branch master
in repository cereal.
commit 88a27873d5e864f251fa4483421ceec0510a9d2c
Author: Michael R. Crusoe <crusoe at ucdavis.edu>
Date: Fri Sep 18 19:17:05 2015 -0700
initial import
---
debian/changelog | 5 +++
debian/compat | 1 +
debian/control | 22 ++++++++++++++
debian/copyright | 79 ++++++++++++++++++++++++++++++++++++++++++++++++
debian/install | 1 +
debian/rules | 22 ++++++++++++++
debian/source/format | 1 +
debian/upstream/metadata | 12 ++++++++
debian/watch | 9 ++++++
9 files changed, 152 insertions(+)
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..1437838
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+cereal (1.1.2-1) UNRELEASED; urgency=low
+
+ * Initial release (Closes: #<bug>)
+
+ -- Michael R. Crusoe <crusoe at ucdavis.edu> Fri, 18 Sep 2015 19:13:43 -0700
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..beecc57
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,22 @@
+Source: cereal
+Section: libdevel
+Priority: optional
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Michael R. Crusoe <crusoe at ucdavis.edu>
+Build-Depends: debhelper (>= 9),
+ libboost-serialization-dev,
+ libboost-test-dev
+Standards-Version: 3.9.6
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/<pkg>/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/<pkg>/trunk/
+Homepage: http://uscilab.github.io/cereal/
+
+Package: libcereal-dev
+Architecture: any
+Depends: ${misc:Depends}
+Description: C++11 library for serialization
+ cereal is a header-only C++11 serialization library. cereal takes arbitrary
+ data types and reversibly turns them into different representations, such as
+ compact binary encodings, XML, or JSON. cereal was designed to be fast,
+ light-weight, and easy to extend - it has no external dependencies and can be
+ easily bundled with other code or used standalone.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7d8987e
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,79 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: cereal
+Source: https://github.com/USCiLab/cereal
+
+Files: *
+Copyright: (c) 2014, Randolph Voorhies, Shane Grant
+License: bsd-3-clause
+
+Files: include/cereal/external/base64.hpp
+Copyright: (C) 2004-2008 René Nyffenegger
+License:
+ This source code is provided 'as-is', without any express or implied
+ warranty. In no event will the author be held liable for any damages
+ arising from the use of this software.
+ .
+ Permission is granted to anyone to use this software for any purpose,
+ including commercial applications, and to alter it and redistribute it
+ freely, subject to the following restrictions:
+ .
+ 1. The origin of this source code must not be misrepresented; you must not
+ claim that you wrote the original source code. If you use this source code
+ in a product, an acknowledgment in the product documentation would be
+ appreciated but is not required.
+ .
+ 2. Altered source versions must be plainly marked as such, and must not be
+ misrepresented as being the original source code.
+ .
+ 3. This notice may not be removed or altered from any source distribution.
+ .
+ René Nyffenegger rene.nyffenegger at adp-gmbh.ch
+
+Files: include/cereal/external/rapidjson/*
+Copyright: (C) 2011 Milo Yip
+License:
+ 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.
+
+Files: debian/*
+Copyright: © 2015 Michael R. Crusoe <crusoe at ucdavis.edu>
+License: bsd-3-clause
+
+License: bsd-3-clause
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+ * Neither the name of cereal 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 RANDOLPH VOORHIES OR SHANE GRANT 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.
+
diff --git a/debian/install b/debian/install
new file mode 100644
index 0000000..58915db
--- /dev/null
+++ b/debian/install
@@ -0,0 +1 @@
+include/cereal usr/include/
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..4c1584b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,22 @@
+#!/usr/bin/make -f
+
+# DH_VERBOSE := 1
+
+# some helpful variables - uncomment them if needed
+# shamelessly stolen from http://jmtd.net/log/awk/
+#DEBVERS := $(shell dpkg-parsechangelog | awk '/^Version:/ {print $$2}')
+#VERSION := $(shell echo '$(DEBVERS)' | sed -e 's/^[0-9]*://' -e 's/-.*//')
+#DEBFLAVOR := $(shell dpkg-parsechangelog | awk '/^Distribution:/ {print $$2}')
+#DEBPKGNAME := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
+#DEBIAN_BRANCH := $(shell awk 'BEGIN{FS="[= ]+"} /debian-branch/ {print $$2}' debian/gbp.conf)
+#GIT_TAG := $(subst ~,_,$(VERSION))
+
+# alternatively to manually set those variables, you can
+# include /usr/share/dpkg/default.mk
+# and use what is set there.
+
+%:
+ dh $@ --parallel
+
+override_dh_auto_build:
+ dh_auto_build -- all doc
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/upstream/metadata b/debian/upstream/metadata
new file mode 100644
index 0000000..d8b5812
--- /dev/null
+++ b/debian/upstream/metadata
@@ -0,0 +1,12 @@
+Reference:
+ Author:
+ Title:
+ Journal:
+ Year:
+ Volume:
+ Number:
+ Pages:
+ DOI:
+ PMID:
+ URL:
+ eprint:
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6034c23
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,9 @@
+version=3
+# Uncomment to find new files on Github
+# - when using releases:
+https://github.com/USCiLab/cereal/releases .*/archive/v(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)
+# Remark: frequently you can do s/#PREFIX#/v?/ since 'v' or nothing is quite common but there are other prefixes possible
+
+# if you need to repack and choose +dfsg prefix
+# opts=dversionmangle=s/[~\+]dfsg[0-9]*// \
+#
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/cereal.git
More information about the debian-med-commit
mailing list