mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
*/*: drop last-rited pkgs
Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
@@ -1 +0,0 @@
|
||||
DIST sync2cd-1.3.tar.gz 39663 BLAKE2B 79f5051155252dc820a2632feba048e5323aca94dc9f14afba39a3c5d7bf606540bdf7b479bd2e4663c78a4c0fff6ed41f2865d7c1711b87cadbfed2fdc1b343 SHA512 a80c00e4a5e1eccf12750e7c6bae606fb1befeba1ad6510e887c931e3bdecef28864053a9a8933f55073204577e173b8109456051e47bce5f26d35be24052c4a
|
||||
@@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<longdescription>
|
||||
sync2cd is an incremental archiving tool. It allows backing up complete filesystem hierarchies to multiple backup
|
||||
media (e.g. CD-R). Files are archived incrementally, i.e. only new or changed files are stored during an archive
|
||||
operation.
|
||||
|
||||
All entity types are supported: directories, files, symlinks, named pipes, sockets, block and character devices.
|
||||
(copyied off ref url)
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1,27 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="An incremental archiving tool to CD/DVD"
|
||||
HOMEPAGE="http://www.calins.ch/software/sync2cd.html"
|
||||
SRC_URI="http://www.calins.ch/download/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~ppc x86"
|
||||
IUSE="cdr dvdr"
|
||||
|
||||
RDEPEND="virtual/eject
|
||||
cdr? ( virtual/cdrtools )
|
||||
dvdr? ( app-cdr/dvd+rw-tools )"
|
||||
DEPEND=""
|
||||
|
||||
python_test() {
|
||||
cd tests || die
|
||||
"${PYTHON}" run.py || die "Unit tests failed for ${EPYTHON}"
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST getxbook-1.2.tar.xz 23776 BLAKE2B 327a35a73a5e29eefcf3f87cd8ba1237da5d045e3ef009d3ae708797fa78e6d844baa4cba2e8ff021d71951ca100e087d69a98dac3ddce953afa549b63e7e1f8 SHA512 fec397d4fd979421658f7ef9535f3c25369c8bd4ea2f9adcd719f760fd01265ed789f9eca34374b245c24acd485b951c91fa92a36d5b6401a0e0bf4db746788d
|
||||
@@ -1,35 +0,0 @@
|
||||
diff -r -U2 getxbook-1.2.orig/Makefile getxbook-1.2/Makefile
|
||||
--- getxbook-1.2.orig/Makefile 2015-07-28 21:52:40.000000000 +0600
|
||||
+++ getxbook-1.2/Makefile 2017-12-16 11:27:18.554822718 +0700
|
||||
@@ -1,4 +1,13 @@
|
||||
# See COPYING file for copyright and license details.
|
||||
-include config.mk
|
||||
+VERSION = 1.2
|
||||
+RELDATE = 2015-07-28
|
||||
+PREFIX = /usr
|
||||
+MANPREFIX = $(PREFIX)/share/man
|
||||
+CFLAGS += -std=c99 -pedantic -Wall -Wextra -Werror -g -D_POSIX_C_SOURCE=200112L \
|
||||
+ -DVERSION=\"$(VERSION)\"
|
||||
+CC ?= cc
|
||||
+LD = $(CC)
|
||||
+LIBS = -lssl -lcrypto
|
||||
+LDFLAGS += $(LIBS)
|
||||
|
||||
NAME = getxbook
|
||||
@@ -21,13 +30,13 @@
|
||||
.o:
|
||||
@echo LD $@
|
||||
- @$(LD) -o $@ $< util.a $(LDFLAGS)
|
||||
+ $(LD) -o $@ $< util.a $(LDFLAGS)
|
||||
|
||||
.c.o:
|
||||
@echo CC $<
|
||||
- @$(CC) -c $(CFLAGS) $<
|
||||
+ $(CC) -c $(CFLAGS) $<
|
||||
|
||||
util.a: $(LIB)
|
||||
@echo AR $@
|
||||
- @$(AR) -r -s -c $@ $(LIB)
|
||||
+ $(AR) -r -s -c $@ $(LIB)
|
||||
|
||||
install: all
|
||||
@@ -1,46 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eutils toolchain-funcs
|
||||
|
||||
DESCRIPTION="Download books from google, amazon, barnes and noble"
|
||||
HOMEPAGE="http://njw.me.uk/software/getxbook/"
|
||||
SRC_URI="http://njw.me.uk/software/getxbook/${P}.tar.xz"
|
||||
|
||||
LICENSE="ISC"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="pdf djvu ocr tk"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
djvu? ( app-text/djvu )
|
||||
pdf? ( media-gfx/imagemagick )
|
||||
ocr? (
|
||||
app-text/tesseract
|
||||
pdf? ( media-gfx/exact-image app-text/pdftk )
|
||||
)
|
||||
tk? ( dev-lang/tk:0= )"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eapply "${FILESDIR}"/${P}.patch
|
||||
tc-export CC AR
|
||||
}
|
||||
|
||||
src_install() {
|
||||
DOCS=( README LEGAL )
|
||||
default
|
||||
|
||||
use pdf && dobin extras/mkpdf.sh
|
||||
use djvu && dobin extras/mkdjvu.sh
|
||||
|
||||
if use ocr; then
|
||||
dobin extras/mkocrtxt.sh
|
||||
use pdf && dobin extras/mkocrpdf.sh
|
||||
use djvu && dobin extras/mkocrdjvu.sh
|
||||
fi
|
||||
use tk && dobin getxbookgui.tcl
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<longdescription lang="en">
|
||||
A collection of tools to download books from
|
||||
google books' "book preview",
|
||||
amazon's "look inside the book",
|
||||
barnes and noble's "book viewer",
|
||||
optionally using tesseract to produce OCRed pdf or djvu.
|
||||
</longdescription>
|
||||
<use>
|
||||
<flag name="ocr">Use <pkg>app-text/tesseract</pkg> for optical character recognition</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST YURL-0.13.tar.gz 16555 BLAKE2B e48dccea5e0affa59c65682bfaeb4d4eb2504e8f712aa02f428d1767d439ac25bb4edf84515575d5e24a8b655e48ccf4974f761bd36fb4a9797b21b35bd76501 SHA512 4eb6f12b266a8905ec56131fecf6d6c44a18258c3d76df4d2d758a2053065abe3695d7ed627da274e7a5aa30e9e1af49beee1a537b8f22aa8022ca926c78ab0b
|
||||
@@ -1,23 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Yurl is the replacement of built in python urlparse module"
|
||||
HOMEPAGE="https://pypi.org/project/YURL/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="pypi">YURL</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST assets-0.1.1.tar.gz 29938 BLAKE2B aeda3b0a3846227c8c0eedbec492511befe56c1ba062852998ad1524f0dc75a24f03af0855ec1b64f29e00ea060652520e6f767496fb8cf0cba53e605c707551 SHA512 373dfababd91bf28929dbc5562027c2bad14dac84d822c65e899137f5f5f9dfe3041b16dac08bc811be9b3fb2f553869643fc200ae9198eb046cd02b420714c8
|
||||
@@ -1,28 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Cache-friendly asset management via content-hash-naming"
|
||||
HOMEPAGE="https://launchpad.net/web-assets"
|
||||
SRC_URI="https://launchpad.net/web-assets/trunk/${PV}/+download/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="${RDEPEND}
|
||||
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
|
||||
|
||||
python_test() {
|
||||
# The package tests assert on '/tmp', bug #450540
|
||||
local -x TMPDIR=/tmp
|
||||
nosetests || die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>maksbotan@gentoo.org</email>
|
||||
<name>Maxim Koltsov</name>
|
||||
</maintainer>
|
||||
<maintainer type="project">
|
||||
<email>python@gentoo.org</email>
|
||||
<name>Python</name>
|
||||
</maintainer>
|
||||
<longdescription>
|
||||
The assets package does content-hash-naming (aka URL fingerprinting) so
|
||||
you can use aggressive caching headers without risking that a client might
|
||||
have an out-of-date version of an asset in its cache. If the content
|
||||
changes, the content-hash-name also changes, resulting in a different URL
|
||||
for each bytewise-unique version of an asset
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="launchpad">web-assets</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST bz2file-0.98.tar.gz 11333 BLAKE2B 4ec4687f609521a637c20a512b544cd99d7c334f7cffaeff71d2a893eefe131a10bd548b9f1e829c899cdcf181f5e877e092cf08d709bb3f1ba9901d3386b3e6 SHA512 2d28e71fe71b5fea4008d65a1fa91d5c6fafcacc09f891c5deaaa985661576bd97f2e33fe9f8c5943841f09c153f2079a2511329c066e57c775fb0b089b30b20
|
||||
@@ -1,22 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=no
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Replacement for bz2.BZ2File with features from newest CPython"
|
||||
HOMEPAGE="https://pypi.org/project/bz2file/ https://github.com/nvawda/bz2file"
|
||||
SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
python_test() {
|
||||
"${EPYTHON}" test_bz2file.py -v || die "Tests fail with ${EPYTHON}"
|
||||
}
|
||||
@@ -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>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">nvawda/bz2file</remote-id>
|
||||
<remote-id type="pypi">bz2file</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST jaxml-3.02.tar.gz 27718 BLAKE2B 283f07fb9e09a4141dc9e45d143e920153e587f6e521f3ac4ab7c85afd09ef29b0db412cac46caadd990937f656b304a0b66a3570e797c3dad78ef4e4ff0c4d6 SHA512 e23b4026dfb7b7d08cfa7ebdda11b66ad7dfd5a158495d90d73988e9b9d5ccb898cc7df112a78c6f3724dd04a0fdef24129e3c115b230e56b184acd28f844597
|
||||
@@ -1,19 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="5"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="XML generator written in Python"
|
||||
HOMEPAGE="http://www.librelogiciel.com/software/jaxml/action_Presentation https://pypi.org/project/jaxml/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 hppa ~ia64 ppc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
RDEPEND=""
|
||||
@@ -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="pypi">jaxml</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST kid-0.9.6.tar.gz 268602 BLAKE2B 8b0b6c1f290814c25865ee5dce624a2a1d53de0923ec10eb919e23d79bd603c8f2a1eef4d57dccf997783f721670d32dede4963b7073f571e279ae15e28d49f0 SHA512 56f87f5fdb9d692ced4b19c13705ee872058279084f49efd2e2515c28240e36833c7dfbecf084f504d6fef45f2cc60185decf0c9f18517d255ba469486aa3ae8
|
||||
@@ -1,43 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A simple and Pythonic XML template language"
|
||||
HOMEPAGE="http://www.kid-templating.org/ https://pypi.org/project/kid/"
|
||||
SRC_URI="http://www.kid-templating.org/dist/${PV}/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~ia64 x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
|
||||
IUSE="doc examples test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? ( dev-python/docutils[${PYTHON_USEDEP}] )"
|
||||
|
||||
DOCS=( README doc/{guide.txt,index.txt,notes.txt} )
|
||||
|
||||
python_compile_all() {
|
||||
use doc && emake -C doc
|
||||
}
|
||||
|
||||
python_test() {
|
||||
py.test -xl || die
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
# dobin bin/*
|
||||
|
||||
use doc && local HTML_DOCS=( doc/html/. )
|
||||
if use examples; then
|
||||
dodoc -r examples
|
||||
docompress -x /usr/share/doc/${PF}/examples
|
||||
fi
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
@@ -1,13 +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>
|
||||
<longdescription>
|
||||
Kid is a simple template language for XML based vocabularies written
|
||||
in Python. The syntax was inspired by a number of existing template
|
||||
languages, namely XSLT, TAL, and PHP.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST python-urljr-1.0.1.tar.gz 16570 BLAKE2B c1eab9bdda42a670b6c58fc21280c9904b6cf4786440b33693eb4154f6492f8f9438b2f88bbfce724281c51a7270707cfc948da7d35192cebc2f9b904540810c SHA512 fff9e5f557ff8fa88e122f535134320043f9a14fd8048234bef762af666f4c088d50c6bc8dd3d173154e80eb8e076f0fb6749e39dd9c6f88c7ab763314dad0ad
|
||||
@@ -1,11 +0,0 @@
|
||||
--- urljr/test/test_fetchers.py.orig 2007-05-31 09:16:31.000000000 -0700
|
||||
+++ urljr/test/test_fetchers.py 2007-05-31 09:17:47.000000000 -0700
|
||||
@@ -8,6 +8,8 @@
|
||||
# XXX: make these separate test cases
|
||||
|
||||
def failUnlessResponseExpected(expected, actual):
|
||||
+ expected.final_url = expected.final_url.replace("localhost", "127.0.0.1")
|
||||
+ actual.final_url = actual.final_url.replace("localhost", "127.0.0.1")
|
||||
assert expected.final_url == actual.final_url
|
||||
assert expected.status == actual.status
|
||||
assert expected.body == actual.body
|
||||
@@ -1,9 +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>
|
||||
<longdescription>JanRain's URL Utilities</longdescription>
|
||||
</pkgmetadata>
|
||||
@@ -1,28 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="JanRain's URL Utilities"
|
||||
HOMEPAGE="http://www.openidenabled.com/openid/libraries/python/"
|
||||
SRC_URI="http://www.openidenabled.com/resources/downloads/python-openid/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="curl test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="curl? ( >=dev-python/pycurl-7.15.1[${PYTHON_USEDEP}] )"
|
||||
DEPEND=""
|
||||
|
||||
REQUIRED_USE="test? ( curl )"
|
||||
# test fails if it finds 'localhost' instead of '127.0.0.1'
|
||||
PATCHES=( "${FILESDIR}/${P}-gentoo-test_fetchers.patch" )
|
||||
|
||||
python_test() {
|
||||
PYTHONPATH=. "${PYTHON}" admin/runtests || die "tests failed"
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
DIST selectors34-1.2.tar.gz 10145 BLAKE2B 6cf47acd1175de7b46dbf06d4358973740b84115bcb62bca695358ab761476f4ec527f4fe3afeae3c3129e4a68c7034b50ee4b317e7d85cc43e0125de81f5d16 SHA512 66fd545d5163ee3cf7e160e428a36f70d43c5a6a8a5adcd6a3028fe67ca818911bc3de934d862d06806dcf051516856baf34b99d9e2a062c214eca667fdff65d
|
||||
@@ -1,12 +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="pypi">selectors34</remote-id>
|
||||
<remote-id type="github">berkerpeksag/selectors34</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,20 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Backport of the selectors module from Python 3.4"
|
||||
HOMEPAGE="https://github.com/berkerpeksag/selectors34"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="PSF-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND=""
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
@@ -1 +0,0 @@
|
||||
DIST stomper-0.3.0.tar.gz 21051 BLAKE2B 79505d042933fe1127f151f209139c48d268d73ee443a21acabe5768b4ab627b60100dabd7116b62501fcdd5795acbc6bc400bbbdae370f46d8bde94dc0db3bc SHA512 ba6feef44bb33a9b63f789043b131a314b903fda847dbb3ad909614a2a6b2b39f2d98dcd5bf19b070f4de9cec9dbce9cd79eb135911f16c1e8dc6d5f52158516
|
||||
@@ -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="pypi">stomper</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,38 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
# Supports only py2 pypy
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Transport neutral client implementation of the STOMP protocol"
|
||||
HOMEPAGE="https://pypi.org/project/stomper/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 ~ppc ~ppc64 ~sparc x86"
|
||||
IUSE="examples"
|
||||
|
||||
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
||||
RDEPEND=""
|
||||
|
||||
python_prepare_all() {
|
||||
mv lib/${PN}/examples . || die
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
|
||||
python_test() {
|
||||
esetup.py test
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
if use examples; then
|
||||
dodoc -r examples
|
||||
docompress -x /usr/share/doc/${PF}/examples
|
||||
fi
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
@@ -103,20 +103,6 @@ net-nds/389-ds-base
|
||||
dev-libs/389-adminutil
|
||||
dev-libs/svrcore
|
||||
|
||||
# Aaron Bauman <bman@gentoo.org> (2020-06-03)
|
||||
# py2 only. dead upstream. m-n. rdep.
|
||||
# Masked for removal in 15 days
|
||||
app-cdr/sync2cd
|
||||
app-text/getxbook
|
||||
dev-python/assets
|
||||
dev-python/bz2file
|
||||
dev-python/kid
|
||||
dev-python/jaxml
|
||||
dev-python/python-urljr
|
||||
dev-python/selectors34
|
||||
dev-python/stomper
|
||||
dev-python/YURL
|
||||
|
||||
# Stefan Strogin <steils@gentoo.org> (2020-06-03)
|
||||
# Masked for testing
|
||||
>=dev-libs/libressl-3.2.0
|
||||
|
||||
Reference in New Issue
Block a user