parent
335ea31c7d
commit
4a73ac752c
@ -0,0 +1 @@
|
||||
../../../ubuntu/maverick/metapackages/trinity-keyring
|
@ -0,0 +1 @@
|
||||
../../../ubuntu/maverick/metapackages/trinity-keyring
|
@ -0,0 +1 @@
|
||||
../../../ubuntu/maverick/metapackages/trinity-keyring
|
@ -0,0 +1,5 @@
|
||||
debian-archive-keyring (2006.01.10) unstable; urgency=low
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Michael Vogt <mvo@debian.org> Tue, 10 Jan 2006 09:17:43 +0100
|
@ -0,0 +1,6 @@
|
||||
trinity-keyring (2011.11.01-1) maverick; urgency=low
|
||||
|
||||
* NIGHTLY BUILDS
|
||||
|
||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Oct 2011 11:39:00 -0600
|
||||
|
@ -0,0 +1,13 @@
|
||||
Source: trinity-keyring
|
||||
Section: misc
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: trinity-keyring
|
||||
Priority: important
|
||||
Architecture: all
|
||||
Depends: gnupg (>= 1.0.6-4)
|
||||
Description: GnuPG key of the Trinity Desktop Environment repository
|
||||
The Trinity repository digitally signs its Release files. This package
|
||||
contains the repository key used for that.
|
@ -0,0 +1,27 @@
|
||||
This is Debian GNU's GnuPG keyrings of archive keys.
|
||||
|
||||
This package was originally put together by Michael Vogt
|
||||
<mvo@debian.org>
|
||||
|
||||
The keys in the keyrings don't fall under any copyright. Everything
|
||||
else in the package is covered by the GNU GPL.
|
||||
|
||||
Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org>
|
||||
based on the debian-keyring package maintained by James Troup
|
||||
|
||||
Debian support files for debian-archive-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.
|
||||
|
||||
Debian support files for debian-archive-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 Debian system, in /usr/share/common-licenses/GPL, or with the
|
||||
Debian GNU debian-archive-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.
|
||||
|
@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ -x /usr/bin/apt-key ]; then
|
||||
/usr/bin/apt-key add /usr/share/keyrings/trinity-keyring.gpg
|
||||
fi
|
@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
case "$1" in
|
||||
remove|purge)
|
||||
if [ -x /usr/bin/apt-key ]; then
|
||||
/usr/bin/apt-key del 2B8638D0
|
||||
fi
|
||||
;;
|
||||
esac
|
@ -0,0 +1,63 @@
|
||||
#!/usr/bin/make -f
|
||||
# debian/rules file - for debian/keyring
|
||||
# Based on sample debian/rules file - for GNU Hello (1.3).
|
||||
# Copyright 1994,1995 by Ian Jackson.
|
||||
# Copyright 1998-2003 James Troup
|
||||
# I hereby give you perpetual unlimited permission to copy,
|
||||
# modify and relicense this file, provided that you do not remove
|
||||
# my name from the file itself. (I assert my moral right of
|
||||
# paternity under the Copyright, Designs and Patents Act 1988.)
|
||||
# This file may have to be extensively modified
|
||||
|
||||
install_dir=install -d -m 755
|
||||
install_file=install -m 644
|
||||
install_script=install -m 755
|
||||
install_binary=install -m 755 -s
|
||||
|
||||
VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
|
||||
DISTRIBUTION := $(shell dpkg-parsechangelog | grep ^Distribution: | cut -d' ' -f2)
|
||||
|
||||
build:
|
||||
|
||||
clean:
|
||||
$(checkdir)
|
||||
-rm -f foo foo.asc *.bak *~ */*~ debian/files* debian/*substvars
|
||||
-rm -rf debian/tmp
|
||||
|
||||
binary-indep: checkroot
|
||||
$(checkdir)
|
||||
-rm -rf debian/tmp
|
||||
$(install_dir) debian/tmp/DEBIAN/
|
||||
$(install_script) debian/postinst debian/tmp/DEBIAN/
|
||||
$(install_script) debian/prerm debian/tmp/DEBIAN/
|
||||
|
||||
$(install_dir) debian/tmp/usr/share/keyrings/
|
||||
$(install_file) keyrings/trinity-keyring.gpg debian/tmp/usr/share/keyrings/
|
||||
$(install_dir) debian/tmp/etc/apt/sources.list.d/
|
||||
$(install_file) repositories/trinity.list debian/tmp/etc/apt/sources.list.d/
|
||||
sed -i 's|ubuntu [^ ]* main|ubuntu ${DISTRIBUTION} main|g' debian/tmp/etc/apt/sources.list.d/trinity.list
|
||||
|
||||
$(install_dir) debian/tmp/usr/share/doc/trinity-keyring/
|
||||
$(install_file) debian/changelog debian/tmp/usr/share/doc/trinity-keyring/changelog
|
||||
$(install_file) debian/copyright debian/tmp/usr/share/doc/trinity-keyring/
|
||||
|
||||
dpkg-gencontrol -ptrinity-keyring -isp
|
||||
chown -R root.root debian/tmp
|
||||
chmod -R go=rX debian/tmp
|
||||
dpkg --build debian/tmp ..
|
||||
|
||||
binary-arch:
|
||||
|
||||
define checkdir
|
||||
test -f keyrings/trinity-keyring.gpg
|
||||
endef
|
||||
|
||||
# Below here is fairly generic really
|
||||
|
||||
binary: binary-indep binary-arch
|
||||
|
||||
checkroot:
|
||||
$(checkdir)
|
||||
test root = "`whoami`"
|
||||
|
||||
.PHONY: binary binary-arch binary-indep clean checkroot
|
@ -0,0 +1,13 @@
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
Version: GnuPG v1.4.10 (GNU/Linux)
|
||||
|
||||
mI0ETBb5vwEEANKouZGon6I/wxSh8LO49a/JRCsEI/wiXMBDw/eOa+AF6onugRs3
|
||||
9XYo0fPuSu5OzJW+Mjt7FD+IYBwrqWH8kqshXHEpiPfVh1uEa0lSDmDoEx6BEude
|
||||
CVvt/tc2x4YDzwxdChQ5X/Bwhq/kfTXCUXuNLmT1rifJiujeuISd+06VABEBAAG0
|
||||
JlF1aWNrQnVpbGQgVHJpbml0eSBEZXNrdG9wIEVudmlyb25tZW50iLgEEwECACIF
|
||||
AkwW+b8CGwMGCwkIBwMCBhUIAgkKCwQWAgMBAh4BAheAAAoJEEPx3E8rhjjQu30E
|
||||
AJpz2+fjYXvpQOGIN3w2BoKBF0jVROS+xPs1dZMzHhvdwQR6/2KI8RVZ7M+VnnJi
|
||||
Y0VaYf6jYd08S4SsX5LuDuiCxxkMkno7RRdEOdsnxfiqGnv2EjvQEM3trflQzIBi
|
||||
9wc+mh9XeI7OZNke/KryAqRTLMdYlTIlv2XNAy/bXFS4
|
||||
=qpbT
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
@ -0,0 +1,11 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA1
|
||||
|
||||
c92d44bfab485525f3078b6bcdafa0aa keyrings/kde3-maintainers-keyring.gpg
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.9 (GNU/Linux)
|
||||
|
||||
iEYEARECAAYFAknxzxAACgkQ1qe3DOI85pKjkgCeLm9YEGnuXOvhzuCQF2UDLLAn
|
||||
pC0AoMNmSPQt2+W0jStHxn7lnHHnoqHd
|
||||
=068G
|
||||
-----END PGP SIGNATURE-----
|
@ -0,0 +1,6 @@
|
||||
# Trinity repositories
|
||||
|
||||
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dependencies/ubuntu maverick main
|
||||
deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-build-dependencies/ubuntu maverick main
|
||||
deb http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/ubuntu maverick main
|
||||
deb-src http://ppa.quickbuild.pearsoncomputing.net/trinity/trinity-nightly-builds/ubuntu maverick main
|
@ -0,0 +1 @@
|
||||
../../maverick/metapackages/trinity-keyring
|
@ -0,0 +1 @@
|
||||
../../maverick/metapackages/trinity-keyring
|
Loading…
Reference in new issue