summaryrefslogtreecommitdiff
path: root/dev-python/django-compressor
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-python/django-compressor
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-python/django-compressor')
-rw-r--r--dev-python/django-compressor/Manifest3
-rw-r--r--dev-python/django-compressor/django-compressor-1.5.ebuild61
-rw-r--r--dev-python/django-compressor/metadata.xml11
3 files changed, 0 insertions, 75 deletions
diff --git a/dev-python/django-compressor/Manifest b/dev-python/django-compressor/Manifest
deleted file mode 100644
index 7f15b1557e27..000000000000
--- a/dev-python/django-compressor/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-DIST django-compressor-1.5.tar.gz 105855 BLAKE2B 18cd7d664a683c44674d89f714e36dc4c7c8f9412567c12b31bc563a16340a11ffc3c4e686fa8d360a40553989ed41aa208e71aa31d0bb2c5fe31f5d7c3261e7 SHA512 d6c7a04263895a4195754a49bd4831053186c99d6fdd07977c26059eb931c982bd3b60848311e8469ad0e0298204a5fc3f0e63697a5af5608abf0b76e521c797
-EBUILD django-compressor-1.5.ebuild 1744 BLAKE2B a984c067edea8858402e4ad70edb7a3c7a52cd5d695258e75d73e2c29abbc563776e7a05aab83fc0a82d59b213746214b259855bed5d75f3de8e137ba4e73706 SHA512 b29320e332292c3822dce6536cd66f623c4d9f1ea10afc6b9e1835a96b9b31c7bf055422e6f636694fd1fc08b1714a59c5f1e1b14b5cba620cae664ddd8f91b3
-MISC metadata.xml 339 BLAKE2B f8fd408c82c6c7f9416a7bf9092555ddcf18c962ac83a379e95ef264d8e9a09837dc6527b0bb659dfb5565887348313d5fa4ef7a28e7e91e51d3f28a1afa2bed SHA512 41051f6aacf5ae785a36c1606b2df505fd6120b9d2d9a9864ec15a5c8e72a5350b81510b5aeac28267f62310e8c192b3338001ada21c4b8fbe183f80f1043bb2
diff --git a/dev-python/django-compressor/django-compressor-1.5.ebuild b/dev-python/django-compressor/django-compressor-1.5.ebuild
deleted file mode 100644
index 97c17be2b6d9..000000000000
--- a/dev-python/django-compressor/django-compressor-1.5.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/_}"
-
-DESCRIPTION="Compresses linked and inline javascript or CSS into a single cached file"
-HOMEPAGE="https://github.com/django-compressor/django-compressor"
-SRC_URI="https://github.com/jezdez/django_compressor/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="amd64 x86"
-IUSE="doc test"
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
- dev-python/django[${PYTHON_USEDEP}]
- >=dev-python/django-appconf-0.4[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/versiontools[${PYTHON_USEDEP}]
- test? (
- dev-python/django[${PYTHON_USEDEP}]
- dev-python/django-discover-runner[${PYTHON_USEDEP}]
- dev-python/unittest2[${PYTHON_USEDEP}]
- dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
- dev-python/html5lib[${PYTHON_USEDEP}]
- dev-python/mock[${PYTHON_USEDEP}]
- dev-python/jinja[${PYTHON_USEDEP}]
- dev-python/lxml[${PYTHON_USEDEP}]
- dev-python/Coffin[${PYTHON_USEDEP}]
- dev-python/jingo[${PYTHON_USEDEP}]
- )"
-DISTUTILS_IN_SOURCE_BUILD=1
-
-python_compile_all() {
- use doc && emake -C docs html
-}
-
-python_test() {
- # https://github.com/django-compressor/django-compressor/issues/531 532
- pushd "${BUILD_DIR}/lib" > /dev/null || die
- if python_is_python3; then
- sed -e s':test_cachekey:_&:' -e s':test_css:_&:g' \
- -i compressor/tests/test_base.py || die
- fi
- set -- django-admin.py test compressor --settings=compressor.test_settings
- echo "$@"
- "$@" || die "Tests failed with ${EPYTHON}"
- popd > /dev/null || die
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
- distutils-r1_python_install_all
-}
diff --git a/dev-python/django-compressor/metadata.xml b/dev-python/django-compressor/metadata.xml
deleted file mode 100644
index 6e566e0fb330..000000000000
--- a/dev-python/django-compressor/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>python@gentoo.org</email>
- <name>Python</name>
- </maintainer>
- <upstream>
- <remote-id type="github">jezdez/django_compressor</remote-id>
- </upstream>
-</pkgmetadata>