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 jerasure (2.0.0-2) unstable; urgency=medium
* debian/control: add Depends on libgf-complete-dev for * 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, Build-Depends: autotools-dev,
debhelper (>= 9), debhelper (>= 9),
dh-autoreconf, dh-autoreconf,
libgf-complete-dev gf-complete-tools,
Standards-Version: 3.9.5 libgf-complete-dev,
Homepage: https://bitbucket.org/jimplank/jerasure Standards-Version: 3.9.6
Homepage: http://jerasure.org/
Vcs-Git: git://anonscm.debian.org/openstack/jerasure.git Vcs-Git: git://anonscm.debian.org/openstack/jerasure.git
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/jerasure.git;a=summary Vcs-Browser: http://anonscm.debian.org/gitweb/?p=openstack/jerasure.git;a=summary
@ -17,7 +18,8 @@ Architecture: any
Depends: libgf-complete-dev, Depends: libgf-complete-dev,
libjerasure2 (= ${binary:Version}), libjerasure2 (= ${binary:Version}),
${misc:Depends}, ${misc:Depends},
${shlibs:Depends} ${shlibs:Depends},
Multi-Arch: same
Description: forward error correction erasure channel library - development files Description: forward error correction erasure channel library - development files
In information theory, an erasure code is a forward error correction (FEC) In information theory, an erasure code is a forward error correction (FEC)
code for the binary erasure channel, which transforms a message of symbols 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 Package: libjerasure2
Architecture: any Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends} Depends: ${misc:Depends},
${shlibs:Depends},
Multi-Arch: same
Description: forward error correction erasure channel library - shared library Description: forward error correction erasure channel library - shared library
In information theory, an erasure code is a forward error correction (FEC) In information theory, an erasure code is a forward error correction (FEC)
code for the binary erasure channel, which transforms a message of symbols 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/ Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jerasure Upstream-Name: jerasure
Source: https://bitbucket.org/jimplank/jerasure Source: http://jerasure.org/
Files: debian/* Files: debian/*
Copyright: (c) 2014, Thomas Goirand <zigo@debian.org> Copyright: (c) 2014, Thomas Goirand <zigo@debian.org>
License: BSD License: BSD-3-clause
Files: * Files: *
Copyright: (c) 2013-2014, James S. Plank <plank@cs.utk.edu> Copyright: (c) 2013-2014, James S. Plank <plank@cs.utk.edu>
(c) 2013-2014, Kevin M. Greenan <kmgreen2@gmail.com> (c) 2013-2014, Kevin M. Greenan <kmgreen2@gmail.com>
(c) 2013-2014, Loic Dachary <loic@dachary.org> (c) 2013-2014, Loic Dachary <loic@dachary.org>
(c) 2013-2014, Danny Al-Gaaf <danny.al-gaaf@bisect.de> (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 Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: 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/~/_/') GIT_TAG ?= $(shell echo '$(VERSION)' | sed -e 's/~/_/')
%: %:
dh $@ --with autotools-dev,autoreconf dh $@ --with autotools-dev,autoreconf --parallel
override_dh_auto_test: override_dh_auto_test:
#make check set -e; cd Examples; GF_COMPLETE_DIR=/usr/bin bash ./test_all_gfs.sh
echo "Not doing anything for now"
############################################ ############################################
### Below is to manage upstream Git repo ### ### Below is to manage upstream Git repo ###