Remove outdated packages
This commit is contained in:
parent
91e7d4d978
commit
78dcf69caf
@ -1,2 +0,0 @@
|
||||
DIST Impressive-0.13.0-beta1a.tar.gz 213098 SHA256 a7f01d7d65b8ad595d8241216e95193c3584af897561c95990116060bd5bbc86 SHA512 5484f9764848129150d03233a9b270d2c31ec5f5083100662dd3cca85d3c7ead0000bd23b7d531ad45667410e1a1ea5d97ca1a2f4e8a2449dc730273144e56e8 WHIRLPOOL f9a5e4179e948163d897b0818c3bc4eed3acb654657068228fc560bb02cc306c3eee60f21b0ef4b512b84762adad22b7f2133ecac6f8af25ca23a8552d4e2f40
|
||||
EBUILD impressive-0.13.0_beta1-r1.ebuild 1293 SHA256 294827a705aca799cb03f84ad52c27f584f8ff64d835b085a1229814a9046565 SHA512 fb8ebe80716efd24280e9f79fe6067f1370ea1d883c5e8d6fdd9974e3eef82cc1bcbf352f33f95ebcee9fa5513e9cc20b3944d0783102e13c7bf8b5e09a97483 WHIRLPOOL 9632e74c5cc56974702561afedb2262b3e263435cfe7e76016f37ed644bb7ca3c1f7f577736f7e100940d91b08c38905b3349960610e9425b66576018b2296aa
|
||||
@ -1,55 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{6,7,8} )
|
||||
|
||||
inherit eutils python-r1
|
||||
|
||||
MY_PN="Impressive"
|
||||
|
||||
DESCRIPTION="Stylish way of giving presentations with Python"
|
||||
HOMEPAGE="http://impressive.sourceforge.net/"
|
||||
SRC_URI="mirror://sourceforge/${PN}/${MY_PN}/${PV/_/-}/${MY_PN}-${PV/_/-}a.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
|
||||
IUSE=""
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${PYTHON_DEPS}
|
||||
dev-python/pygame[${PYTHON_USEDEP}]
|
||||
dev-python/pillow[${PYTHON_USEDEP}]
|
||||
x11-apps/xrandr
|
||||
app-text/mupdf
|
||||
|| ( media-fonts/dejavu media-fonts/corefonts )
|
||||
"
|
||||
|
||||
DOCS=(
|
||||
changelog.txt
|
||||
demo.pdf
|
||||
)
|
||||
HTML_DOCS=(
|
||||
impressive.html
|
||||
)
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV/_/-}a"
|
||||
|
||||
src_install() {
|
||||
default
|
||||
python_foreach_impl python_doscript ${PN}.py
|
||||
doman impressive.1
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
elog "The experience with ${PN} can be enhanced by folowing packages:"
|
||||
optfeature "starting web or e-mail hyperlinks from PDF documents" x11-misc/xdg-utils
|
||||
optfeature "sound and video playback" media-video/ffmpeg
|
||||
optfeature "sound and video playback" media-video/mplayer
|
||||
optfeature "sound and video playback" media-video/mplayer2
|
||||
optfeature "extraction of PDF page titles" app-text/pdftk
|
||||
}
|
||||
@ -1,2 +0,0 @@
|
||||
DIST godot-2.1.4.tar.gz 14811915 SHA256 07cf3b01367d5ea53805f144bc60711bd79efb53f1f88d57d6a706e6944de8d7 SHA512 6557197b3aabc2dab5d583cab7a76fd5591c0a89347a10ec1cf370230e57fdbca792f99d69456a3d03ba6f22865464771e81505cb39c2b4e9f3c0b82ea9d2e5b WHIRLPOOL 84435db4a9ca758623bb9fbb7c43ba432f2c17e43ffdc49df5f72c77acc47bbf47ee0dec8872a4ecd86d75158fdd632d1bca1672e41a14616fab4f9ec3fcdc87
|
||||
EBUILD godot-2.1.4.ebuild 2713 SHA256 a9db6d0146fdf4d2bcd8daf1b9eeaf48d7eeeae907dca3bef1ca5656b7edb515 SHA512 8adc87f6c93951222cb82ec2457d11675533a148a545496dce1d2a5d90d201e373c796e1b51d8794afb1bb5ec61613c484a1d862c893b1dd40c5cc5fe976ebe2 WHIRLPOOL 0df0de90d0a7c117f7ae0a916314588c2a3f7b57ea88b73a27bc631f0820c95f6065c2614fe5b0e90b1314d0ae7f0b86578415d5a1c865cd16319879fd65e8b7
|
||||
@ -1,112 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
inherit eutils scons-utils
|
||||
|
||||
DESCRIPTION="A advanced, feature packed, multi-platform 2D and 3D game engine."
|
||||
HOMEPAGE="http://www.godotengine.org"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
|
||||
EGIT_REPO_URI="https://github.com/godotengine/godot.git"
|
||||
SRC_URI=""
|
||||
KEYWORDS=""
|
||||
else
|
||||
SRC_URI="https://github.com/godotengine/godot/archive/${PV}-stable.tar.gz -> ${P}.tar.gz"
|
||||
RESTRICT="primaryuri"
|
||||
KEYWORDS="amd64 x86"
|
||||
S="${WORKDIR}/${PN}-${PV}-stable"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="+freetype llvm +openssl +png pulseaudio theora udev +vorbis +xml"
|
||||
|
||||
DEPEND="
|
||||
>=app-arch/bzip2-1.0.6-r6
|
||||
>=app-arch/lz4-0_p120
|
||||
>=app-arch/xz-utils-5.0.8
|
||||
>=dev-libs/json-c-0.11-r1
|
||||
>=media-libs/alsa-lib-1.0.28
|
||||
>=media-libs/flac-1.3.1-r1
|
||||
>=media-libs/libogg-1.3.1
|
||||
>=media-libs/libsndfile-1.0.25-r1
|
||||
>=media-libs/mesa-10.2.8[gles2]
|
||||
>=net-libs/libasyncns-0.8-r3
|
||||
>=sys-apps/attr-2.4.47-r1
|
||||
>=sys-apps/tcp-wrappers-7.6.22-r1
|
||||
>=sys-apps/util-linux-2.25.2-r2
|
||||
>=sys-devel/gcc-4.6.4:*[cxx]
|
||||
>=sys-libs/gdbm-1.11
|
||||
>=sys-libs/glibc-2.20-r2
|
||||
>=sys-libs/glibc-2.20-r2
|
||||
>=sys-libs/libcap-2.22-r2
|
||||
>=sys-libs/zlib-1.2.8-r1
|
||||
>=x11-libs/libX11-1.6.2
|
||||
>=x11-libs/libXcursor-1.1.14
|
||||
>=x11-libs/libXinerama-1.1.3
|
||||
freetype? ( >=media-libs/freetype-2.5.3-r1:2 )
|
||||
llvm? ( >=sys-devel/llvm-3.6.0[clang] )
|
||||
openssl? ( >=dev-libs/openssl-1.0.1j:0 )
|
||||
png? ( >=media-libs/libpng-1.6.16:0= )
|
||||
pulseaudio? ( >=media-sound/pulseaudio-5.0-r7 )
|
||||
theora? ( media-libs/libtheora )
|
||||
udev? ( virtual/udev )
|
||||
virtual/glu
|
||||
vorbis? ( >=media-libs/libvorbis-1.3.4 )
|
||||
xml? ( >=dev-libs/expat-2.1.0-r3 )"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
MYSCONS=(
|
||||
CC="$(tc-getCC)"
|
||||
builtin_zlib=no
|
||||
colored=yes
|
||||
platform=x11
|
||||
freetype=$(usex freetype)
|
||||
openssl=$(usex openssl)
|
||||
png=$(usex png)
|
||||
pulseaudio=$(usex pulseaudio)
|
||||
theora=$(usex theora)
|
||||
udev=$(usex udev)
|
||||
use_llvm=$(usex llvm)
|
||||
vorbis=$(usex vorbis)
|
||||
xml=$(usex xml)
|
||||
)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
escons "${MYSCONS[@]}"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
newicon icon.svg ${PN}.svg
|
||||
dobin bin/godot.*
|
||||
if [[ "${ARCH}" == "amd64" ]]; then
|
||||
if use llvm; then
|
||||
make_desktop_entry godot.x11.tools.64.llvm Godot
|
||||
with_desktop_entry=1
|
||||
else
|
||||
make_desktop_entry godot.x11.tools.64 Godot
|
||||
with_desktop_entry=1
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ "${ARCH}" == "x86" ]]; then
|
||||
if use llvm; then
|
||||
make_desktop_entry godot.x11.tools.32.llvm Godot
|
||||
with_desktop_entry=1
|
||||
else
|
||||
make_desktop_entry godot.x11.tools.32 Godot
|
||||
with_desktop_entry=1
|
||||
fi
|
||||
fi
|
||||
|
||||
if ! [[ "${with_desktop_entry}" == "1" ]]; then
|
||||
elog "Couldn't detect running architecture to create a desktop file."
|
||||
fi
|
||||
}
|
||||
@ -1,2 +0,0 @@
|
||||
DIST tasklib-1.3.0.tar.gz 32757 SHA256 ac5137466f0a3e2940a1c973f9765afec4ec02cd1d42ac81e226dca95de35670 SHA512 bb3660b54c56572d9e9746be795d2b80cb414af0f1b9a430c4f9b15ce8c69322eb66cee1a6d035ec70a67e5974fbbe2fafbdd68a4a91cc78fcf3a6ad1c22e098 WHIRLPOOL 853d4bde5c60de840f37078ff7e0edffe148a621fb304081eb4d9bffdc1fa288f815e84d17662242903772bf15a7a88c6b6a6c9cd41a12eb55c9bf8f75b734db
|
||||
EBUILD tasklib-1.3.0.ebuild 489 SHA256 7a5a4a59b0403906bcb88bff2b810191826c66d9bb6bae59c47696fd0d2c61c7 SHA512 915a9d613ef4770718a14637708fc2211fc90100a690260096f79d5511580ddea1a1adb26b36501a23afcb1cf5e36ad1164f7d3448c2d726586436acee46dbc4 WHIRLPOOL deca542e80181b63a43d3c5ec7991c4bfea7ba6cf49a7d0ee73d5d35e9bcf40d90f8410d44de7b0facd966c92d64e061de38eee6eda739e483d06bc5e11c5777
|
||||
@ -1,20 +0,0 @@
|
||||
# Copyright 2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{5,6,7,8} )
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A python library for interacting with taskwarrior databases"
|
||||
HOMEPAGE="https://github.com/robgolding/tasklib"
|
||||
SRC_URI="https://github.com/robgolding/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=">app-misc/task-2.1.0"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
@ -1,2 +0,0 @@
|
||||
DIST urwid-2.1.0.tar.gz 630226 SHA256 0896f36060beb6bf3801cb554303fef336a79661401797551ba106d23ab4cd86 SHA512 c121c0e49ab9531f67bff8740d29fc716fb8c9203e1b2ddb7257f01095e0bf976f3f2131a3b1f95a3b5368ddeea6a09b9c867ab459b91e3e9be6cba4f18ec654 WHIRLPOOL 168319d548b033b20183f44726b6afc7e1d46d8a0782f5c24d26d9cbad0c994c651e1943c3f29f640234239874458b7152238ab847f0ffcf8b259a30b6504cdd
|
||||
EBUILD urwid-2.1.0.ebuild 1034 SHA256 c2d1af4a3a78dab0655d9e9409f167ef4619e7eb424274a3d7c8dfa226053288 SHA512 bd83356d92ecd7db9f7ec2ead643b1cff81d2c2c1e87c09de3b8133922ff8cd48ad88d7ca28d29241f2fdc730958641099bbf0b49a1d984c588d166bd2d131e1 WHIRLPOOL bb9e717c3d6c179486afdb824bd83cd4a50f0f763abe618d838ec360d33acfe5878ebdf7190fdbb36f8ef06e039b1e79d3b97a690c0e985e7c9f359e3171447b
|
||||
@ -1,49 +0,0 @@
|
||||
# Copyright 1999-2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
PYTHON_COMPAT=( python2_7 python3_{4,5,6,7,8} )
|
||||
PYTHON_REQ_USE="ncurses"
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Curses-based user interface library for Python"
|
||||
HOMEPAGE="http://urwid.org/ https://pypi.org/project/urwid/"
|
||||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
|
||||
IUSE="doc examples"
|
||||
|
||||
DEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
|
||||
"
|
||||
|
||||
python_compile_all() {
|
||||
if use doc; then
|
||||
sphinx-build docs _build/html || die
|
||||
fi
|
||||
}
|
||||
|
||||
python_compile() {
|
||||
if ! python_is_python3; then
|
||||
local CFLAGS="${CFLAGS} -fno-strict-aliasing"
|
||||
export CFLAGS
|
||||
fi
|
||||
|
||||
distutils-r1_python_compile
|
||||
}
|
||||
|
||||
python_test() {
|
||||
esetup.py test
|
||||
}
|
||||
|
||||
python_install_all() {
|
||||
use examples && dodoc -r examples
|
||||
use doc && local HTML_DOCS=( _build/html/. )
|
||||
|
||||
distutils-r1_python_install_all
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user