ubuntu-extras-keyring-2010.09.17/0000755000000000000000000000000011450106364013275 5ustar ubuntu-extras-keyring-2010.09.17/debian/0000755000000000000000000000000011450106623014515 5ustar ubuntu-extras-keyring-2010.09.17/debian/control0000644000000000000000000000073711446057164016141 0ustar Source: ubuntu-extras-keyring Section: misc Priority: optional Maintainer: Michael Vogt Standards-Version: 3.9.1 Build-Depends: debhelper (>= 7.0.50~) Package: ubuntu-extras-keyring Priority: important Architecture: all Depends: ${misc:Depends}, apt, gnupg Description: GnuPG keys of the Ubuntu extras archive The Ubuntu project digitally signs its Release files. This package contains the archive keys used for the extras.ubuntu.com repository. ubuntu-extras-keyring-2010.09.17/debian/changelog0000644000000000000000000000064511450106620016371 0ustar ubuntu-extras-keyring (2010.09.27) maverick; urgency=low * debian/postinst: - Corrected a typo in the output message (LP: #648755) -- Lorenzo De Liso Mon, 27 Sep 2010 13:50:56 +0200 ubuntu-extras-keyring (2010.09.17) maverick; urgency=low * initial version that includes the signing key for extras.ubuntu.com -- Michael Vogt Tue, 21 Sep 2010 09:35:42 +0200 ubuntu-extras-keyring-2010.09.17/debian/rules0000755000000000000000000000047711446057164015617 0ustar #!/usr/bin/make -f # -*- makefile -*- #export DH_VERBOSE=1 #!/usr/bin/make -f %: dh $@ override_dh_auto_install: dh_install --sourcedir=. keyrings/ubuntu-extras-keyring.gpg usr/share/keyrings/ dh_install --sourcedir=. keyrings/ubuntu-extras-keyring-removed-keys.gpg usr/share/keyrings/ dh_auto_install -- installubuntu-extras-keyring-2010.09.17/debian/dirs0000644000000000000000000000002211446057164015405 0ustar usr/share/keyringsubuntu-extras-keyring-2010.09.17/debian/copyright0000644000000000000000000000233211446057164016462 0ustar This is Ubuntu GNU's GnuPG keyrings of archive keys. This package was originally put together by Michael Vogt The keys in the keyrings don't fall under any copyright. Everything else in the package is covered by the GNU GPL. Ubuntu support files Copyright (C) 2010 Michael Vogt based on the debian-keyring package maintained by James Troup Ubuntu support files for ubuntu-keyring are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. Ubuntu support files for ubuntu-keyring are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License with your Ubuntu system, in /usr/share/common-licenses/GPL, or with the Ubuntu GNU ubuntu-keyring source package as the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ubuntu-extras-keyring-2010.09.17/debian/compat0000644000000000000000000000000111446057164015724 0ustar 7ubuntu-extras-keyring-2010.09.17/debian/prerm0000644000000000000000000000050611446057640015577 0ustar #!/bin/sh set -e EXTRAS_KEY="3E5C1192" case "$1" in remove|purge) if [ -x /usr/bin/apt-key ]; then apt-key del "$EXTRAS_KEY" fi ;; upgrade|deconfigure) ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 ubuntu-extras-keyring-2010.09.17/debian/postinst0000644000000000000000000000246111450106360016324 0ustar #!/bin/sh set -e TRUSTEDFILE="/etc/apt/trusted.gpg" ARCHIVE_KEYRING="/usr/share/keyrings/ubuntu-extras-keyring.gpg" REMOVED_KEYS="/usr/share/keyrings/ubuntu-extras-keyring-removed-keys.gpg" GPG_CMD="gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /etc/apt/secring.gpg --trustdb-name /etc/apt/trustdb.gpg" GPG="$GPG_CMD --keyring $TRUSTEDFILE --primary-keyring $TRUSTEDFILE" process_remove_keyring() { REMOVED_KEYS="$1" if [ -r "$REMOVED_KEYS" ]; then # remove no-longer supported/used keys keys=`$GPG_CMD --keyring $REMOVED_KEYS --with-colons --list-keys | grep ^pub | cut -d: -f5` for key in $keys; do if $GPG --list-keys --with-colons | grep ^pub | cut -d: -f5 | grep -q $key; then $GPG --batch --delete-key --yes ${key} fi done fi } case "$1" in configure) if [ -x /usr/bin/apt-key ]; then echo "Importing extras.ubuntu.com keyring" apt-key add "$ARCHIVE_KEYRING" fi if [ -x /usr/bin/gpg ]; then echo "Processing extras.ubuntu.com removal keyring" process_remove_keyring "$REMOVED_KEYS" echo "OK" fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 ubuntu-extras-keyring-2010.09.17/debian/install0000644000000000000000000000000011446057164016106 0ustar ubuntu-extras-keyring-2010.09.17/keyrings/0000755000000000000000000000000011446060121015123 5ustar ubuntu-extras-keyring-2010.09.17/keyrings/ubuntu-extras-keyring.gpg0000644000000000000000000000111711446057372022134 0ustar LiRs3F޶u]`-0nF"cJ>XUS,D*lNrB06<^nV_+OΣ'~IN!&ǜXSj-=Ypc2vF~j'/3.Q<([km zrb +E}>*$ E _]V0u$G=cˆQUA` 2 H_rnWzo[! r,CS í(.@EY#D:9 2_fcVoj`BdǾ8 9pOvV=cwER =` Li  m:>\˂K--A8'! C=ƤЫubuntu-extras-keyring-2010.09.17/keyrings/ubuntu-extras-keyring-removed-keys.gpg0000644000000000000000000000000011446057164024531 0ustar ubuntu-extras-keyring-2010.09.17/README0000644000000000000000000000036711446057646014200 0ustar This package contains the keyring for extras.ubuntu.com. Its a seperate package from the main ubuntu-keyring to make it easy for sysadmins to remove it (or not install it in the first place). If keys gets added, make sure to update debian/prerm.