Remove old packages

This commit is contained in:
root 2022-10-25 10:57:02 -04:00
parent 34c83d44a4
commit 94b5d28f2f
15 changed files with 0 additions and 349 deletions

View File

@ -1,4 +0,0 @@
AUX wekan.confd 249 SHA256 22e97b05dfee376eb66ba3464b01d46a537bf2e358efed2c5bd7a1891b4a0057 SHA512 34aff1594385449a80cb97878fb2b7f4bfc73fd5a94cc315226544b5ed884a4b956491d791d1189ffe67bd7d4cd46dfe5027acb0f56b50d7d748c5e38179fe1a WHIRLPOOL 7d173196f28385148d491434d88731d687e67ee2117425947714242a63c8ed2d4211bae82cffeaa73c5c184934a069475de8a094d9138ee415f38561c47d6cb0
AUX wekan.initd-r1 893 SHA256 c13d0e8a28163848b0bdf4135a1d1f0d35800feaa583db8860ab020a8dfd51ef SHA512 02ef02a84197606931f7e56b0d9eae472354fb11aae4e06f86ce9c400b4a51b4854e57892a4daa8d0361a7d790e283be4f4da5ddee3c37ad5c409ac8e2ab6b56 WHIRLPOOL 398944873bd1f965120ae603e7b05cd1271c950a72e6c9b9ddec8fcacfba3fadb42e5c95ab7bef49716a708cf2793afc97dc5db919a9e6515194e7dc995e1789
DIST wekan-0.80.tar.gz 901486 SHA256 b6220c2d53dd09f647bf6f51509c7f7cf60ab8d5164e101258b7429079ac1722 SHA512 3c747b52d2162440db5c916d3c41a09fbc394ea9fd93545566da2a78dd85937c58ba1290f760aaaf340f2a2c043877fed537ef6308983dde715722278d69f47a WHIRLPOOL 04e277483150d5ee6f00d6738c18097c81109d894ac5037affbdb7f68b4c6f3113f06087ca5f44f57777daa78ec4ae02a7d58fd0784bf02fae1f04d3b1370d9b
EBUILD wekan-0.80.ebuild 2162 SHA256 369e7de2f26056f9c79b6af00b3b9eb22718cecb9af097ab2d9d487dadfd0e21 SHA512 bd744531ff4083e321553d720877193751f62b762944a29698bdb55b8fab4198714e99deab4039d87adb0708de5d87c7a71191d66f775f60ba81d7283b745e18 WHIRLPOOL fa06210d7a946ff8a2efb9e898f1b58440743be59b104b203e0f7e5fb1bbba042a178e6de732f8c09b67c7afba9f6bcc448b7fcc80c23848adfa6eb5f2b48831

View File

@ -1,7 +0,0 @@
# config file for /etc/init.d/wekan
WEKAN_MONGO_URL="mongodb://localhost:27017/wekan"
WEKAN_ROOT_URL="http://localhost:8080/"
WEKAN_PORT="8080"
WEKAN_MAIL_URL="smtp://user:pass@mailserver.examples.com:25/"
WEKAN_MAIL_FROM="wekan-admin@example.com"

View File

@ -1,31 +0,0 @@
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
: ${WEKAN_USER:=wekan}
: ${WEKAN_LOG_DIR:="/var/log/wekan"}
: ${WEKAN_LOG_APP:="${WEKAN_LOG_DIR}/app.log"}
: ${WEKAN_LOG_ERR:="${WEKAN_LOG_DIR}/err.log"}
: ${SSD_OPTS:="--wait 1000 -1 ${WEKAN_LOG_APP} -2 ${WEKAN_LOG_ERR}"}
command="/usr/libexec/wekan/npm/bin/node"
command_args="/usr/share/wekan/main.js"
command_user="${WEKAN_USER}"
command_background=true
pidfile="/run/${SVCNAME}.pid"
retry=${WEKAN_TERMTIMEOUT:-"TERM/60/KILL/5"}
start_stop_daemon_args="${SSD_OPTS} \
-e \"MONGO_URL=${WEKAN_MONGO_URL}\" \
-e \"ROOT_URL=${WEKAN_ROOT_URL}\" \
-e \"PORT=${WEKAN_PORT}\" \
-e \"MAIL_URL=${WEKAN_MAIL_URL}\" \
-e \"MAIL_FROM=${WEKAN_MAIL_FROM}\""
depend() {
need net
after mongodb
}
start_pre() {
checkpath -d -m 0750 -o ${WEKAN_USER} "${WEKAN_LOG_DIR}"
}

View File

@ -1,73 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="An open-source and collaborative kanban board application"
HOMEPAGE="https://wekan.github.io/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-libs/nodejs[npm]"
RDEPEND="${DEPEND}
>=dev-db/mongodb-3.2"
QA_PRESTRIPPED="usr/libexec/wekan/phantomjs"
#S="${WORKDIR}/bundle"
pkg_setup() {
# Unfortunately 'network-sandbox' needs to
# disabled because npm fetch a few dependencies.
if has network-sandbox $FEATURES; then
die "www-apps/wekan require 'network-sandbox' to be disabled in FEATURES"
fi
enewgroup wekan
enewuser wekan -1 -1 /usr/share/wekan wekan
}
src_prepare() {
default
export N_PREFIX="${WORKDIR}/npm"
local N_VERSION="4.8.4" PATH="${N_PREFIX}"/bin:$PATH
mkdir "${N_PREFIX}"{,-cache} || die
ebegin "Installing node ${N_VERSION}"
pushd "${N_PREFIX}" > /dev/null || die
npm install --cache "${WORKDIR}"/npm-cache n || die
./node_modules/n/bin/n -q ${N_VERSION} || die
popd > /dev/null || die
eend $?
ebegin "Using node $(node --version) to install wekan dependencies"
pushd "programs/server" > /dev/null || die
npm install --cache "${WORKDIR}"/npm-cache || die
# Remove useless fibers.node
rm -rf node_modules/fibers/bin/{darwin,linux-ia32,win-32}* || die
popd > /dev/null || die
eend $?
}
src_install() {
local PHANTOM_DIR="programs/server/npm/node_modules/meteor/rajit_bootstrap3-datepicker/lib/bootstrap-datepicker/node_modules/phantomjs/lib/phantom/bin"
mkdir -p "${D%/}"/usr/{libexec,share}/wekan || die
mv ${PHANTOM_DIR}/phantomjs "${D%/}"/usr/libexec/wekan || die
dosym ../../../../../../../../../../../../../../../libexec/wekan/phantomjs \
/usr/share/wekan/${PHANTOM_DIR}/phantomjs
cp -a "${N_PREFIX}" "${D%/}"/usr/libexec/wekan || die
cp -a . "${D%/}"/usr/share/wekan || die
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
diropts -o wekan -g wekan -m 0750
dodir /var/log/wekan
}

View File

@ -1,73 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="An open-source and collaborative kanban board application"
HOMEPAGE="https://wekan.github.io/"
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-libs/nodejs[npm]"
RDEPEND="${DEPEND}
>=dev-db/mongodb-3.2"
QA_PRESTRIPPED="usr/libexec/wekan/phantomjs"
#S="${WORKDIR}/bundle"
pkg_setup() {
# Unfortunately 'network-sandbox' needs to
# disabled because npm fetch a few dependencies.
if has network-sandbox $FEATURES; then
die "www-apps/wekan require 'network-sandbox' to be disabled in FEATURES"
fi
enewgroup wekan
enewuser wekan -1 -1 /usr/share/wekan wekan
}
src_prepare() {
default
export N_PREFIX="${WORKDIR}/npm"
local N_VERSION="4.8.4" PATH="${N_PREFIX}"/bin:$PATH
mkdir "${N_PREFIX}"{,-cache} || die
ebegin "Installing node ${N_VERSION}"
pushd "${N_PREFIX}" > /dev/null || die
npm install --cache "${WORKDIR}"/npm-cache n || die
./node_modules/n/bin/n -q ${N_VERSION} || die
popd > /dev/null || die
eend $?
ebegin "Using node $(node --version) to install wekan dependencies"
pushd "programs/server" > /dev/null || die
npm install --cache "${WORKDIR}"/npm-cache || die
# Remove useless fibers.node
rm -rf node_modules/fibers/bin/{darwin,linux-ia32,win-32}* || die
popd > /dev/null || die
eend $?
}
src_install() {
local PHANTOM_DIR="programs/server/npm/node_modules/meteor/rajit_bootstrap3-datepicker/lib/bootstrap-datepicker/node_modules/phantomjs/lib/phantom/bin"
mkdir -p "${D%/}"/usr/{libexec,share}/wekan || die
mv ${PHANTOM_DIR}/phantomjs "${D%/}"/usr/libexec/wekan || die
dosym ../../../../../../../../../../../../../../../libexec/wekan/phantomjs \
/usr/share/wekan/${PHANTOM_DIR}/phantomjs
cp -a "${N_PREFIX}" "${D%/}"/usr/libexec/wekan || die
cp -a . "${D%/}"/usr/share/wekan || die
newinitd "${FILESDIR}"/${PN}.initd-r1 ${PN}
newconfd "${FILESDIR}"/${PN}.confd ${PN}
systemd_dounit "${FILESDIR}"/${PN}.service
diropts -o wekan -g wekan -m 0750
dodir /var/log/wekan
}

View File

@ -1,27 +0,0 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit autotools
DESCRIPTION="ETL is a multi-platform class and template library"
HOMEPAGE="http://synfig.org"
SRC_URI="mirror://sourceforge/synfig/releases/0.64.2/source/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
sed -i -e 's/CXXFLAGS="`echo $CXXFLAGS | sed s:-g::` $debug_flags"//' \
-e 's/CFLAGS="`echo $CFLAGS | sed s:-g::` $debug_flags"//' \
m4/subs.m4
eautoreconf
}

View File

@ -1,2 +0,0 @@
DIST ETL-0.04.17.tar.gz 366176 SHA256 7a64a82214f3f8893510065b1eaadce684770e9c274d46bbc18158f5e6676965 SHA512 7316062e49ea4202f398efd756e3d6eb89377de4dc428ee1f838cd4c92a5b4e2df13240da126bd2b67b2e9df0f1ae2eaf8db6f18984a038cd60d93d8677c793c WHIRLPOOL 443b9448d6b0a74691ddc25ebd1535bd0cc386492ad550e69143b1bdff73dbb55de250ad8632e99e1257cdbadd0ea04c597cace92121339851fedb2ef22f4d8e
EBUILD ETL-0.04.17.ebuild 592 SHA256 da73a5829f5f9d82716d484bbb01b55840445d13c30c9c82bef74a465f336e3c SHA512 083b8020fafb540a351f4e042500173a2c1185993436fcc9e225dc07125263932f13a1f8bf2aa0275e8f1bfa70312366a870d6dec440147d30cd348c9a93c0b3 WHIRLPOOL 53b224ffa4525632476b9d9abc5fd3dc3e812d7b7135d12c157e1db6063b0e202f3ccd602502cb017366a0cb8f2fd326663a6d81426619ec9d80d21ef470f0b1

View File

@ -1,2 +0,0 @@
DIST 1.3.0.tar.gz 211662 SHA256 533e3c0ebd8869e70ac3605b071d489b5a354b37acc0d2e26cf2f6e22cab5cb7 SHA512 7de4b90a6e97117d01c6fe0899c48bfa2b9561337a8c76b90b12d13bbf8ec692a27cfbc7cc491c8549aa4b40f97af720f7bd3b0a7455e22dab8e4043c711576c WHIRLPOOL 1f31dc8f973bc372698c0fcf858ec69d6b25a85c2fef2eddb7658eea27bc96534fc16c8401252f184e2716012877590f3adf8ebca159f1cf9830aadbc1865b6c
EBUILD neo4j-python-driver-1.3.0.ebuild 524 SHA256 75eaa4723268a61c6ea0853404352720751c0a71e891c5633b164c279520b02c SHA512 f2c08d30d4a7fe4691c191c8425830db9de65090786b9824c8bdcf206cad551b52af0abc6a317a5b025cf2afcf74de00143abd5223827d4816d7dc1578bb21e1 WHIRLPOOL a329cb5b4bda3fe2c3cb9a4ea2a66ef3679e24a175e13507e59109d408bc6dcb29bfbaa04b3abf0ee15e1645640a90972a2aa3cb73d3375fbcc535be3818cacd

View File

@ -1,26 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_4 )
inherit distutils-r1
DESCRIPTION="Official library for accessing the Neo4j graph database"
HOMEPAGE="https://neo4j.com"
SRC_URI="https://github.com/neo4j/neo4j-python-driver/archive/${PV}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86 arm"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PF}"
#python_compile() {
# distutils-r1_python_compile
#}

View File

@ -1,2 +0,0 @@
DIST master.zip 11149 SHA256 102cf8aee422ea143e13631c115ae9ab69d748e6416f59908b2559bbe7087f7a SHA512 94254642c72fdf718a04ed141c28019124826fd480064e5925ad4d90a2c0f1a1aa7f92c74e93e2af215fac111600a6d43056d6e90e6e18a7c2e8266482cfa032 WHIRLPOOL 3ef59777ac790bb22e6348d8b715bae7a7b3cd7df6c54e3901337095478b721ff9b2a92e695ecdec79f9a2e74358e360a880f74e2abcc986b16a2fef6dfe9ada
EBUILD libpainter-9999.ebuild 558 SHA256 a0953646e7a028cf0533b16895b33f35ff2f6936ec7c8e937e043996343fe480 SHA512 90021527a44200d518d7100c778bae4a1570d0128e527545d8f689145d5c7a8a7053c0df80017717ff9ec3e9c464f9a9c174bdf0a4b21f850c37328d42acd297 WHIRLPOOL 64cbbb73d3300a9885362b67e6fa5c2030811b9f23b24b0d15ddccb137635a29b135e7c71cb363455a55088a87d80728a486fde4585e3e1bab5eba76580ab39b

View File

@ -1,32 +0,0 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit autotools eutils
DESCRIPTION="A graphics library used by xrdp"
HOMEPAGE="https://github.com/neutrinolabs/libpainter"
SRC_URI="https://github.com/neutrinolabs/libpainter/archive/master.zip"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-master"
src_prepare() {
epatch_user
eautoreconf
}
src_install() {
default
#prune_libtool_files --all
}

View File

@ -1,2 +0,0 @@
DIST qstopmotion-2.3.2-Source.tar.gz 4404581 SHA256 2eb3eb956df9cd645a6162a30826a3f5b779dcaefdd5dbc0c3b200e6b9fd71ed SHA512 50f10166402c552b94a0f7caf037a35079e780f649bd54470467415b3644b0afaaa02ee1332200050af17a4f784a2c5fc3cb907e0ac6beaa0cfceacfc590af93 WHIRLPOOL 787a1000db8dfafcd822bd0c433a41cbd5699b74444db7b0e1ce3b0699e7932015d19d606385e48a88e4acfaa6b80b5166184139dcb5a24c86cbf6dfa72ee06b
EBUILD qstopmotion-2.3.2.ebuild 683 SHA256 53ded29c569196e646ea5847d1956024c8994aabd8679f7ff18bcbab82102334 SHA512 9aaf3c6d6e09de99c976afcac997a4eb47dc22e6846ffa4e82476dae5dc05ace0c0ad99c345ccd00d9e0654fad0b338cf4e3f9f8f148e14b6f5e981a9ccc41a9 WHIRLPOOL e0a604f6238a97122e442b2a6355d700aa2747b496650e30d4e53bcdae19077d9dfa43f901e1249d48ff686a2f055276755d1e67f826bc21857626610a3feedf

View File

@ -1,30 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="QT based program for creating stop motion videos"
HOMEPAGE="http://www.qstopmotion.org"
SRC_URI="https://phoenixnap.dl.sourceforge.net/project/qstopmotion/Version_${PV//./_}/qstopmotion-${PV}-Source.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
S="${WORKDIR}/${P}-Source"
DEPEND="dev-qt/qtcore:5
media-video/ffmpeg
media-libs/gstreamer
media-libs/libgphoto2
media-libs/libv4l"
RDEPEND="${DEPEND}"
src_configure() {
local mycmakeargs=( '-DCMAKE_BUILD_TYPE=Release' )
cmake-utils_src_configure
}

View File

@ -1,2 +0,0 @@
DIST fish-irssi-1.5.tar.gz 19122 SHA256 3b0eaac1cb9f797a2b5879131b74f924f635952ae6d5890fd94ffbdeba872320 SHA512 e0db1cd38d6ce2113233ad4b3ee39ae5b18b3152258f3238ee1c51cadd75e707096c90b347f8c528eba9065366f5af7a43768118d1740fbc7dbee41bb1b0578a WHIRLPOOL c445f35eaffc70813cc8c15bef64a348e014f38c3a4f701f5ffaacfc5aa13226c30cd5f3786e7ebefca7d58cb8d2cbe6eb461e906a95da6e080ccdf1759a7721
EBUILD fish-irssi-1.5.ebuild 710 SHA256 4960a007f00f59d078fa304cf899dae85fad3eddcedca453999ee6f70f2305eb SHA512 80cf570e83b8ec3760b1ba71e5fa493b7c72fd928c0ccd135ac746e8f760127f242ab29f555a56fd90fb8278625746d50449752c7b67acfc9969db51c2b59735 WHIRLPOOL f6e9ed1a487b3f48b04af5e81165b6d14161471cab38adef4c2320f430c736ce5f389b6a2dacf29ac56bb9133ae8ae4beb2eb5dd3accdedbf3f4dcd50950ffc7

View File

@ -1,36 +0,0 @@
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="An encryption add-on for irssi, it's based on blowfish"
HOMEPAGE="https://github.com/falsovsky/fish-irssi"
if [[ ${PV} == *9999* ]]; then
EGIT_REPO_URI="https://github.com/falsovsky/fish-irssi"
inherit git-r3
KEYWORDS=""
else
SRC_URI="https://github.com/falsovsky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~x86"
S="${WORKDIR}/${P/fish/FiSH}"
fi
LICENSE=""
SLOT="0"
IUSE=""
DOCS=( README.md )
DEPEND="
dev-libs/glib:2
dev-libs/openssl
net-irc/irssi
"
RDEPEND="
${RDEPEND}
virtual/pkgconfig
"