~jderose/ubuntu/vivid/couchdb/fix-1457464

« back to all changes in this revision

Viewing changes to src/my-first-couchdb-plugin/test/my_first_couchdb_plugin_tests.erl

  • Committer: Package Import Robot
  • Author(s): Jason Gerard DeRose
  • Date: 2013-12-01 16:55:05 UTC
  • mfrom: (1.3.5)
  • Revision ID: package-import@ubuntu.com-20131201165505-for2toyl58mhzwj2
Tags: 1.5.0-0ubuntu1
* New upstream release (LP: #1254371)
* Don't include `couchdb` info page in `couchdb-bin` binary package as it
  provides no meaningful benefit over the `couchdb` man page (note this change
  means we don't need to add a Build-Depends on `install-info` for Trusty)
* Remove Build-Depends: texlive-latex-base, texlive-latex-recommended,
  texlive-latex-extra, texlive-fonts-recommended, texinfo (as documentation
  thus produced doesn't get included in the binary packages anyway)
* debian/rules: don't call ./configure with --enable-strictness as we dropped
  Build-Depends on `texlive-*`, `texinfo`, plus didn't add `install-info` 
* Add Build-Depends: lsb-release (used for [vendor] info in default.ini)
* debian/rules: insert proper [vendor] info in default.ini (note this should
  be improved once there is a better mechanism upstream)
* debian/couchdb.upstart: start on filesystem and static-network-up,
  stop on deconfiguring-networking, plus add "author" line

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
% Licensed under the Apache License, Version 2.0 (the "License"); you may not
 
2
% use this file except in compliance with the License. You may obtain a copy of
 
3
% the License at
 
4
%
 
5
%   http://www.apache.org/licenses/LICENSE-2.0
 
6
%
 
7
% Unless required by applicable law or agreed to in writing, software
 
8
% distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
9
% WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
10
% License for the specific language governing permissions and limitations under
 
11
% the License.
 
12
 
 
13
-module(my_first_couchdb_plugin_tests).
 
14
-include_lib("eunit/include/eunit.hrl").
 
15