From cc4caeae4d522e9f270ceba6a4a99e7ce1b6da26 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 21 Dec 2013 16:21:29 +0100 Subject: add apt-vendor for raspbian. Closes: #732749 --- vendor/raspbian/apt-vendor.ent | 7 +++++++ vendor/raspbian/makefile | 11 +++++++++++ vendor/raspbian/sources.list.in | 6 ++++++ 3 files changed, 24 insertions(+) create mode 100644 vendor/raspbian/apt-vendor.ent create mode 100644 vendor/raspbian/makefile create mode 100644 vendor/raspbian/sources.list.in (limited to 'vendor') diff --git a/vendor/raspbian/apt-vendor.ent b/vendor/raspbian/apt-vendor.ent new file mode 100644 index 000000000..e359d2001 --- /dev/null +++ b/vendor/raspbian/apt-vendor.ent @@ -0,0 +1,7 @@ + + +raspbian-archive-keyring"> +/usr/share/keyrings/raspbian-archive-keyring.gpg"> +/usr/share/keyrings/raspbian-archive-removed-keys.gpg"> + + diff --git a/vendor/raspbian/makefile b/vendor/raspbian/makefile new file mode 100644 index 000000000..ced566c30 --- /dev/null +++ b/vendor/raspbian/makefile @@ -0,0 +1,11 @@ +# -*- make -*- +BASE=../.. +SUBDIR=vendor/raspbian + +# Bring in the default rules +include ../../buildlib/defaults.mak + +doc binary manpages: sources.list + +sources.list: sources.list.in ../../doc/apt-verbatim.ent + sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< > $@ diff --git a/vendor/raspbian/sources.list.in b/vendor/raspbian/sources.list.in new file mode 100644 index 000000000..29ddcc4d6 --- /dev/null +++ b/vendor/raspbian/sources.list.in @@ -0,0 +1,6 @@ +# See sources.list(5) manpage for more information +# Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. +deb http://mirrordirector.raspbian.org/raspbian &stable-codename; main contrib non-free + +# Uncomment if you want the apt-get source function to work +#deb-src http://mirrordirector.raspbian.org/raspbian &stable-codename; main contrib non-free -- cgit v1.2.3 From 6de58cbf6b78506898ef23ca26b068eedf8ed97f Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 21 Dec 2013 17:56:32 +0100 Subject: vendor/getinfo: * vendor/getinfo: - fix ubuntu-codename --- vendor/getinfo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vendor') diff --git a/vendor/getinfo b/vendor/getinfo index ac816e10e..992b30cf4 100755 --- a/vendor/getinfo +++ b/vendor/getinfo @@ -24,7 +24,7 @@ debian-stable-codename) getrawfield 'stable-codename' "${BASEDIR}/../doc/apt-verbatim.ent" ;; ubuntu-codename) - getrawfield 'stable-codename' "${BASEDIR}/../doc/apt-verbatim.ent" + getrawfield 'ubuntu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" ;; keyring-package|keyring-filename|keyring-master-filename|keyring-removed-filename|keyring-uri) getfield "$1" -- cgit v1.2.3 From 62f6ecbf2f204d95e98fc5480c5a0db43b52d2be Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sat, 21 Dec 2013 18:18:51 +0100 Subject: vendor/steamos/*: * vendor/steamos/*: - add steamos support --- vendor/getinfo | 2 +- vendor/steamos/apt-vendor.ent | 8 ++++++++ vendor/steamos/makefile | 11 +++++++++++ vendor/steamos/sources.list.in | 7 +++++++ 4 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 vendor/steamos/apt-vendor.ent create mode 100644 vendor/steamos/makefile create mode 100644 vendor/steamos/sources.list.in (limited to 'vendor') diff --git a/vendor/getinfo b/vendor/getinfo index 992b30cf4..861fd3d17 100755 --- a/vendor/getinfo +++ b/vendor/getinfo @@ -26,7 +26,7 @@ debian-stable-codename) ubuntu-codename) getrawfield 'ubuntu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" ;; -keyring-package|keyring-filename|keyring-master-filename|keyring-removed-filename|keyring-uri) +keyring-package|keyring-filename|keyring-master-filename|keyring-removed-filename|keyring-uri|current-distro-codename) getfield "$1" ;; *) diff --git a/vendor/steamos/apt-vendor.ent b/vendor/steamos/apt-vendor.ent new file mode 100644 index 000000000..69bb254ef --- /dev/null +++ b/vendor/steamos/apt-vendor.ent @@ -0,0 +1,8 @@ + + +valve-archive-keyring"> +/usr/share/keyrings/valve-archive-keyring.gpg"> +/usr/share/keyrings/valve-archive-removed-keys.gpg"> + + + diff --git a/vendor/steamos/makefile b/vendor/steamos/makefile new file mode 100644 index 000000000..c27494587 --- /dev/null +++ b/vendor/steamos/makefile @@ -0,0 +1,11 @@ +# -*- make -*- +BASE=../.. +SUBDIR=vendor/steamos + +# Bring in the default rules +include ../../buildlib/defaults.mak + +doc binary manpages: sources.list + +sources.list: sources.list.in ../../doc/apt-verbatim.ent + sed -e 's#&stable-codename;#$(shell ../getinfo debian-stable-codename)#g' $< | sed -e 's#&steamos-codename;#$(shell ../getinfo current-distro-codename)#g' > $@ diff --git a/vendor/steamos/sources.list.in b/vendor/steamos/sources.list.in new file mode 100644 index 000000000..f3790c550 --- /dev/null +++ b/vendor/steamos/sources.list.in @@ -0,0 +1,7 @@ +# See sources.list(5) manpage for more information +# Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. + +deb http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free +deb-src http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free + +deb http://cdn.debian.net/debian &stable-codename; main -- cgit v1.2.3 From a127de147900050d3dbc3644ed468428749c46fd Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 27 Dec 2013 09:34:34 +0100 Subject: remove debian entry from default steamos sources.list --- vendor/steamos/sources.list.in | 2 -- 1 file changed, 2 deletions(-) (limited to 'vendor') diff --git a/vendor/steamos/sources.list.in b/vendor/steamos/sources.list.in index f3790c550..fed6c3818 100644 --- a/vendor/steamos/sources.list.in +++ b/vendor/steamos/sources.list.in @@ -3,5 +3,3 @@ deb http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free deb-src http://repo.steampowered.com/steamos &steamos-codename; main contrib non-free - -deb http://cdn.debian.net/debian &stable-codename; main -- cgit v1.2.3 From 0e2d81b5b4e6ec4117f38fc546ed3324ba4fa5cc Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Sun, 29 Dec 2013 16:40:49 +0100 Subject: vendor/ubuntu/sources.list.in: whitespace fix --- vendor/ubuntu/sources.list.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vendor') diff --git a/vendor/ubuntu/sources.list.in b/vendor/ubuntu/sources.list.in index b9aa8c3d0..00db2f8cd 100644 --- a/vendor/ubuntu/sources.list.in +++ b/vendor/ubuntu/sources.list.in @@ -1,5 +1,5 @@ - # See sources.list(5) manpage for more information - # Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. +# See sources.list(5) manpage for more information +# Remember that CD-ROMs, DVDs and such are managed through the apt-cdrom tool. deb http://us.archive.ubuntu.com/ubuntu &ubuntu-codename; main restricted deb-src http://us.archive.ubuntu.com/ubuntu &ubuntu-codename; main restricted -- cgit v1.2.3