Codebase list orafce / 569e95d
Use lsb_release -is in tests to determine OS. Christoph Berg 9 years ago
6 changed file(s) with 15 addition(s) and 10 deletion(s). Raw diff Collapse all Expand all
0 orafce (3.0.6-3) UNRELEASED; urgency=medium
0 orafce (3.0.6-3) unstable; urgency=medium
11
22 * Set team as Maintainer.
3 * Use lsb_release -is in tests to determine OS.
4 * Don't install INSTALL.orafunc.
35
4 -- Christoph Berg <christoph.berg@credativ.de> Tue, 01 Jul 2014 14:30:48 +0200
6 -- Christoph Berg <christoph.berg@credativ.de> Thu, 03 Jul 2014 16:02:42 +0200
57
68 orafce (3.0.6-2) unstable; urgency=medium
79
44
55 Upstream authors: Pavel Stehule and others
66
7 Copyright notice:
7 Copyright notice: Copyright (C) 2008-2012 Orafce Global Development Group
88
99 Permission to use, copy, modify, and distribute this software and its
1010 documentation for any purpose, without fee, and without a written agreement
1111 rm -r $(CURDIR)/debian/*/usr/share/doc/postgresql-doc-*
1212
1313 override_dh_installdocs:
14 dh_installdocs -A INSTALL.orafunc README.asciidoc
14 dh_installdocs -A README.asciidoc
0 orafce source: changelog-should-mention-nmu
1 orafce source: source-nmu-has-incorrect-version-number
0 Depends: @, postgresql-server-dev-all, locales
0 Depends: @, postgresql-server-dev-all, locales, lsb-release
11 Tests: installcheck
22 Restrictions: needs-root allow-stderr
11
22 set -e
33
4 if [ -f /etc/locale.gen ]; then
5 # Debian
4 case $(lsb_release -is) in
5 Debian)
66 if ! grep -Fwq "en_US.UTF-8 UTF-8" /etc/locale.gen; then
77 echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen
88 locale-gen
99 fi
10 else
11 # Ubuntu
10 ;;
11 Ubuntu)
1212 locale-gen en_US.UTF-8
13 fi
13 ;;
14 esac
1415
1516 # to_multi_byte needs English, and UTF-8
1617 export LC_ALL=en_US.utf8