20161130 (patches unapplied)

Imported using git-ubuntu import.
This commit is contained in:
Michael Shuler 2016-11-30 21:20:53 -06:00 committed by git-ubuntu importer
parent dd36605785
commit ecb7826d4f
Notes: git-ubuntu importer 2020-07-14 23:31:29 +00:00
  [ Philipp Kern ]
  * Add ca-certificates udeb package. Closes: #845456
  [ Michael Shuler ]
  * debian/{compat,control}:
    Update to compat level 10 and debhelper (>= 10)
    Shorten package description.
  * debian/po/id.po
    Update Indonesian debconf translation file for build time line reorder
8 changed files with 40 additions and 10 deletions

1
debian/ca-certificates-udeb.links vendored Normal file
View file

@ -0,0 +1 @@
etc/ssl/certs usr/lib/ssl/certs

14
debian/changelog vendored
View file

@ -1,3 +1,17 @@
ca-certificates (20161130) unstable; urgency=medium
[ Philipp Kern ]
* Add ca-certificates udeb package. Closes: #845456
[ Michael Shuler ]
* debian/{compat,control}:
Update to compat level 10 and debhelper (>= 10)
Shorten package description.
* debian/po/id.po
Update Indonesian debconf translation file for build time line reorder
-- Michael Shuler <michael@pbandjelly.org> Wed, 30 Nov 2016 21:20:53 -0600
ca-certificates (20161102) unstable; urgency=medium ca-certificates (20161102) unstable; urgency=medium
[ Michael Shuler ] [ Michael Shuler ]

2
debian/compat vendored
View file

@ -1 +1 @@
9 10

23
debian/control vendored
View file

@ -5,8 +5,8 @@ Maintainer: Michael Shuler <michael@pbandjelly.org>
Uploaders: Raphael Geissert <geissert@debian.org>, Uploaders: Raphael Geissert <geissert@debian.org>,
Thijs Kinkhorst <thijs@debian.org>, Thijs Kinkhorst <thijs@debian.org>,
Christian Perrier <bubulle@debian.org> Christian Perrier <bubulle@debian.org>
Build-Depends: debhelper (>= 9), po-debconf Build-Depends: debhelper (>= 10), po-debconf
Build-Depends-Indep: python Build-Depends-Indep: python, openssl
Standards-Version: 3.9.8 Standards-Version: 3.9.8
Vcs-Git: https://anonscm.debian.org/git/collab-maint/ca-certificates.git Vcs-Git: https://anonscm.debian.org/git/collab-maint/ca-certificates.git
Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/ca-certificates.git Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/ca-certificates.git
@ -18,14 +18,23 @@ Enhances: openssl
Multi-Arch: foreign Multi-Arch: foreign
Breaks: ca-certificates-java (<<20121112+nmu1) Breaks: ca-certificates-java (<<20121112+nmu1)
Description: Common CA certificates Description: Common CA certificates
This package includes PEM files of CA certificates to allow SSL-based Contains the certificate authorities shipped with Mozilla's browser to allow
applications to check for the authenticity of SSL connections. SSL-based applications to check for the authenticity of SSL connections.
.
It includes, among others, certificate authorities used by the Debian
infrastructure and those shipped with Mozilla's browsers.
. .
Please note that Debian can neither confirm nor deny whether the Please note that Debian can neither confirm nor deny whether the
certificate authorities whose certificates are included in this package certificate authorities whose certificates are included in this package
have in any way been audited for trustworthiness or RFC 3647 compliance. have in any way been audited for trustworthiness or RFC 3647 compliance.
Full responsibility to assess them belongs to the local system Full responsibility to assess them belongs to the local system
administrator. administrator.
Package: ca-certificates-udeb
Package-Type: udeb
Section: debian-installer
Architecture: all
Depends: ${misc:Depends}
Description: Common CA certificates - udeb
Contains the certificate authorities shipped with Mozilla's browser,
all enabled by default.
.
This package is for use in the installer environment only.
Do not install on a normal system.

10
debian/rules vendored
View file

@ -17,7 +17,7 @@ build-arch: build-stamp
build-indep: build-stamp build-indep: build-stamp
build-stamp: configure-stamp build-stamp: configure-stamp
dh_testdir dh_testdir
# Add here commands to compile the package. # Add here commands to compile the package.
@ -56,16 +56,22 @@ install: build
cd $(CURDIR)/debian; \ cd $(CURDIR)/debian; \
sed -e "s|#INITIAL_CERTS#|$$crts|" \ sed -e "s|#INITIAL_CERTS#|$$crts|" \
config.in > config) config.in > config)
# udeb handling
install -d -m 0755 "$(CURDIR)/debian/ca-certificates-udeb/etc/ssl/certs"
(cd mozilla; \
$(MAKE) install CERTSDIR="$(CURDIR)/debian/ca-certificates-udeb/etc/ssl/certs")
c_rehash -v "$(CURDIR)/debian/ca-certificates-udeb/etc/ssl/certs"
# Build architecture-independent files here. # Build architecture-independent files here.
binary-indep: build install binary-indep: build install
dh_testdir dh_testdir
dh_testroot dh_testroot
dh_link
dh_installdebconf -n dh_installdebconf -n
dh_installdocs dh_installdocs
dh_installexamples dh_installexamples
dh_installman sbin/update-ca-certificates.8 dh_installman sbin/update-ca-certificates.8
dh_installchangelogs dh_installchangelogs
dh_compress -X examples dh_compress -X examples
dh_fixperms dh_fixperms
dh_installdeb dh_installdeb