├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README.md.asc ├── apt.go ├── configclient.png ├── debian ├── changelog ├── compat ├── control ├── copyright ├── gbp.conf ├── postinstall ├── rules ├── source │ └── format └── watch ├── etc └── apt-transport-i2p │ └── apt-transport-i2p.conf └── i2p.go /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .pc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/README.md -------------------------------------------------------------------------------- /README.md.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/README.md.asc -------------------------------------------------------------------------------- /apt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/apt.go -------------------------------------------------------------------------------- /configclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/configclient.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/gbp.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | pristine-tar = True 3 | -------------------------------------------------------------------------------- /debian/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/postinstall -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/debian/watch -------------------------------------------------------------------------------- /etc/apt-transport-i2p/apt-transport-i2p.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/etc/apt-transport-i2p/apt-transport-i2p.conf -------------------------------------------------------------------------------- /i2p.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eyedeekay/apt-transport-i2p/HEAD/i2p.go --------------------------------------------------------------------------------