Resync with Ubuntu.

* Updates for Ubuntu MIR:
  - d/control,copyright: Update upstream location to jerasure.org.
  - d/control,rules: Add BD on gf-complete-tools, enable tests,
    set GF_COMPLETE_DIR.
  - d/rules: Enable parallel build.
  - d/control: Add Multi-Arch: same to libjerasure{2,-dev}.
* d/control: Bumped Standards-Version to 3.9.6, no changes.
* d/copyright: Switch BSD -> BSD-3-clause.
master
James Page 2015-09-16 12:20:18 +01:00
parent 8be5afe2ba
commit 3e82a16412
4 changed files with 29 additions and 12 deletions

14
debian/changelog vendored
View File

@ -1,3 +1,17 @@
jerasure (2.0.0-3) UNRELEASED; urgency=medium
* Resync with Ubuntu.
* Updates for Ubuntu MIR:
- d/control,copyright: Update upstream location to jerasure.org.
- d/control,rules: Add BD on gf-complete-tools, enable tests,
set GF_COMPLETE_DIR.
- d/rules: Enable parallel build.
- d/control: Add Multi-Arch: same to libjerasure{2,-dev}.
* d/control: Bumped Standards-Version to 3.9.6, no changes.
* d/copyright: Switch BSD -> BSD-3-clause.
-- James Page <james.page@ubuntu.com> Mon, 14 Sep 2015 14:17:12 +0100
jerasure (2.0.0-2) unstable; urgency=medium
* debian/control: add Depends on libgf-complete-dev for

14
debian/control vendored
View File

@ -5,9 +5,10 @@ Maintainer: Thomas Goirand <zigo@debian.org>
Build-Depends: autotools-dev,
debhelper (>= 9),
dh-autoreconf,
libgf-complete-dev
Standards-Version: 3.9.5
Homepage: https://bitbucket.org/jimplank/jerasure
gf-complete-tools,
libgf-complete-dev,
Standards-Version: 3.9.6
Homepage: http://jerasure.org/
Vcs-Git: git://anonscm.debian.org/openstack/jerasure.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/jerasure.git;a=summary
@ -17,7 +18,8 @@ Architecture: any
Depends: libgf-complete-dev,
libjerasure2 (= ${binary:Version}),
${misc:Depends},
${shlibs:Depends}
${shlibs:Depends},
Multi-Arch: same
Description: forward error correction erasure channel library - development files
In information theory, an erasure code is a forward error correction (FEC)
code for the binary erasure channel, which transforms a message of symbols
@ -33,7 +35,9 @@ Description: forward error correction erasure channel library - development file
Package: libjerasure2
Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends}
Depends: ${misc:Depends},
${shlibs:Depends},
Multi-Arch: same
Description: forward error correction erasure channel library - shared library
In information theory, an erasure code is a forward error correction (FEC)
code for the binary erasure channel, which transforms a message of symbols

8
debian/copyright vendored
View File

@ -1,19 +1,19 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jerasure
Source: https://bitbucket.org/jimplank/jerasure
Source: http://jerasure.org/
Files: debian/*
Copyright: (c) 2014, Thomas Goirand <zigo@debian.org>
License: BSD
License: BSD-3-clause
Files: *
Copyright: (c) 2013-2014, James S. Plank <plank@cs.utk.edu>
(c) 2013-2014, Kevin M. Greenan <kmgreen2@gmail.com>
(c) 2013-2014, Loic Dachary <loic@dachary.org>
(c) 2013-2014, Danny Al-Gaaf <danny.al-gaaf@bisect.de>
License: BSD
License: BSD-3-clause
License: BSD
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:
.

5
debian/rules vendored
View File

@ -9,11 +9,10 @@ DEBPKGNAME ?= $(shell dpkg-parsechangelog | grep -E ^Source: | cut -d" " -f
GIT_TAG ?= $(shell echo '$(VERSION)' | sed -e 's/~/_/')
%:
dh $@ --with autotools-dev,autoreconf
dh $@ --with autotools-dev,autoreconf --parallel
override_dh_auto_test:
#make check
echo "Not doing anything for now"
set -e; cd Examples; GF_COMPLETE_DIR=/usr/bin bash ./test_all_gfs.sh
############################################
### Below is to manage upstream Git repo ###