diff options
Diffstat (limited to 'vendor')
-rwxr-xr-x | vendor/getinfo | 3 | ||||
-rw-r--r-- | vendor/makefile | 2 | ||||
-rw-r--r-- | vendor/tanglu/apt-vendor.ent | 7 | ||||
-rw-r--r-- | vendor/tanglu/makefile | 11 | ||||
-rw-r--r-- | vendor/tanglu/sources.list.in | 7 |
5 files changed, 30 insertions, 0 deletions
diff --git a/vendor/getinfo b/vendor/getinfo index 861fd3d17..4422f5d78 100755 --- a/vendor/getinfo +++ b/vendor/getinfo @@ -23,6 +23,9 @@ case "$1" in debian-stable-codename) getrawfield 'stable-codename' "${BASEDIR}/../doc/apt-verbatim.ent" ;; +tanglu-codename) + getrawfield 'tanglu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" + ;; ubuntu-codename) getrawfield 'ubuntu-codename' "${BASEDIR}/../doc/apt-verbatim.ent" ;; diff --git a/vendor/makefile b/vendor/makefile index c05b516ef..619c603fb 100644 --- a/vendor/makefile +++ b/vendor/makefile @@ -32,9 +32,11 @@ current: # if we haven't found a specific, look for a deriving in hardcoded order test -e $@ || \ (dpkg-vendor --derives-from ubuntu && cp ln -s ubuntu $@ ) || \ + (dpkg-vendor --derives-from tanglu && cp ln -s tanglu $@ ) || \ ln -s debian $@ .PHONY: clean veryclean all binary vendor +.NOPARALLEL: clean: clean/current diff --git a/vendor/tanglu/apt-vendor.ent b/vendor/tanglu/apt-vendor.ent new file mode 100644 index 000000000..4b70a5f82 --- /dev/null +++ b/vendor/tanglu/apt-vendor.ent @@ -0,0 +1,7 @@ +<!-- details about the keys used by the distribution --> +<!ENTITY keyring-distro "Tanglu"> +<!ENTITY keyring-package "<package>tanglu-archive-keyring</package>"> +<!ENTITY keyring-filename "<filename>/usr/share/keyrings/tanglu-archive-keyring.gpg</filename>"> +<!ENTITY keyring-removed-filename "<filename>/usr/share/keyrings/tanglu-archive-removed-keys.gpg</filename>"> +<!ENTITY keyring-master-filename ""> +<!ENTITY keyring-uri ""> diff --git a/vendor/tanglu/makefile b/vendor/tanglu/makefile new file mode 100644 index 000000000..175db1a8c --- /dev/null +++ b/vendor/tanglu/makefile @@ -0,0 +1,11 @@ +# -*- make -*- +BASE=../.. +SUBDIR=vendor/tanglu + +# 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#&tanglu-codename;#$(shell ../getinfo tanglu-codename)#g' $< > $@ diff --git a/vendor/tanglu/sources.list.in b/vendor/tanglu/sources.list.in new file mode 100644 index 000000000..dfa219046 --- /dev/null +++ b/vendor/tanglu/sources.list.in @@ -0,0 +1,7 @@ +# See sources.list(5) manpage for more information + +deb http://archive.tanglu.org/tanglu &tanglu-codename; main contrib non-free +#deb-src http://archive.tanglu.org/tanglu &tanglu-codename; main contrib non-free + +#deb http://archive.tanglu.org/tanglu &tanglu-codename;-updates main contrib non-free +#deb-src http://archive.tanglu.org/tanglu &tanglu-codename;-updates main contrib non-free |