├── .gitignore ├── .travis.yml ├── CHANGES.md ├── COPYING ├── Cask ├── Makefile ├── README.md ├── pkg-info.el └── test ├── elpa └── pkg-info-dummy-package-3.4.2.1 │ ├── pkg-info-dummy-original-version.el │ ├── pkg-info-dummy-package-autoloads.el │ ├── pkg-info-dummy-package-pkg.el │ └── pkg-info-dummy-package.el ├── pkg-info-test.el └── test-helper.el /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | 3 | /.cask/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/CHANGES.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/COPYING -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/README.md -------------------------------------------------------------------------------- /pkg-info.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/pkg-info.el -------------------------------------------------------------------------------- /test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-original-version.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-original-version.el -------------------------------------------------------------------------------- /test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-package-autoloads.el: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-package-pkg.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-package-pkg.el -------------------------------------------------------------------------------- /test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-package.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/test/elpa/pkg-info-dummy-package-3.4.2.1/pkg-info-dummy-package.el -------------------------------------------------------------------------------- /test/pkg-info-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/test/pkg-info-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/pkg-info/HEAD/test/test-helper.el --------------------------------------------------------------------------------