X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail.cmpwn.com (mail.cmpwn.com [45.56.77.53]) by lists.alpinelinux.org (Postfix) with ESMTP id 66DC9F854B3 for ; Wed, 3 Apr 2019 19:13:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cmpwn.com; s=cmpwn; t=1554319001; bh=f91+pl8gB89+grQnJhXCX986emvqMRVCEXW8+uuXMvk=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=bdg2DzuEA/zsCr2B8x7o84FJHx9SbI5F686aE/LjWdo4DSW1CBJdiR7CjnMYk88Pd h/hBgz9v9ggiJtL3i0MqEybfIDf+Gf46NQJRHmpVyl+4gGZlciF86BDiD5Ql35/wFo y0myY6OFthNJ5ECdkzTJAUfa/Mt6VHKoOErigT1s= From: Drew DeVault To: alpine-aports@lists.alpinelinux.org Cc: Drew DeVault Subject: [alpine-aports] [PATCH 3/6] testing/py-tinycss: remove obsolte APKBUILD Date: Wed, 3 Apr 2019 15:11:07 -0400 Message-Id: <20190403191110.29266-4-sir@cmpwn.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190403191110.29266-1-sir@cmpwn.com> References: <20190403191110.29266-1-sir@cmpwn.com> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/py-tinycss/APKBUILD | 55 ------------------- .../py-tinycss/disable-styling-checks.patch | 33 ----------- 2 files changed, 88 deletions(-) delete mode 100644 testing/py-tinycss/APKBUILD delete mode 100644 testing/py-tinycss/disable-styling-checks.patch diff --git a/testing/py-tinycss/APKBUILD b/testing/py-tinycss/APKBUILD deleted file mode 100644 index 29ca919e3f..0000000000 --- a/testing/py-tinycss/APKBUILD +++ /dev/null @@ -1,55 +0,0 @@ -# Contributor: -# Contributor: Stefan Wagner -# Maintainer: -pkgname=py-tinycss -_pkgname=tinycss -pkgver=0.4 -pkgrel=0 -pkgdesc="tiny CSS parser for python" -url="https://pythonhosted.org/tinycss" -arch="all" -license="BSD" -makedepends="python2-dev python3-dev py-setuptools" -checkdepends="pytest-cov py-configparser py-futures" -subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" -source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz - disable-styling-checks.patch" -builddir="$srcdir"/$_pkgname-$pkgver - -build() { - cd "$builddir" - python2 setup.py build - python3 setup.py build -} - -check() { - cd "$builddir" - python2 setup.py test - python3 setup.py test -} - -package() { - mkdir -p "$pkgdir" -} - -_py2() { - replaces="$pkgname" - _py python2 -} - -_py3() { - _py python3 -} - -_py() { - local python="$1" - pkgdesc="$pkgdesc (for $python)" - depends="$depends $python" - install_if="$pkgname=$pkgver-r$pkgrel $python" - - cd "$builddir" - $python setup.py install --prefix=/usr --root="$subpkgdir" -} - -sha512sums="13a50332cddc28026fd7ecc007e14085976284e69de6ea93d1013502fd9791694092c010947b13dcd23f3a2df65f277f62410abd90d03eac16fa5af913673b0a tinycss-0.4.tar.gz -8265e4c9e52fb8ae3f3041333aea46c3702e3657892a957db2117615d16b446bcadb96601fe0b8197d921997433b1a0e06a77a10ce74095687c59ed00f766def disable-styling-checks.patch" diff --git a/testing/py-tinycss/disable-styling-checks.patch b/testing/py-tinycss/disable-styling-checks.patch deleted file mode 100644 index bcc039e2f5..0000000000 --- a/testing/py-tinycss/disable-styling-checks.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- a/setup.cfg -+++ b/setup.cfg -@@ -9,7 +9,7 @@ - test = pytest - - [tool:pytest] --addopts = --flake8 --isort --cov --ignore=test/cairosvg_reference -+addopts = --cov --ignore=test/cairosvg_reference - norecursedirs = dist .cache .git build *.egg-info .eggs venv cairosvg_reference - flake8-ignore = docs/conf.py ALL - isort_ignore = ---- a/setup.py -+++ b/setup.py -@@ -99,9 +99,9 @@ - ], - setup_requires=pytest_runner, - tests_require=[ -- 'pytest-cov', 'pytest-flake8', 'pytest-isort', 'pytest-runner'], -+ 'pytest-cov', 'pytest-runner'], - extras_require={'test': ( -- 'pytest-runner', 'pytest-cov', 'pytest-flake8', 'pytest-isort')}, -+ 'pytest-runner', 'pytest-cov')}, - packages=['tinycss', 'tinycss.tests'], - **kwargs - ) ---- a/tinycss.egg-info/requires.txt -+++ b/tinycss.egg-info/requires.txt -@@ -2,5 +2,3 @@ - [test] - pytest-runner - pytest-cov --pytest-flake8 --pytest-isort -- 2.21.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---