diff options
author | Ultrabug <ultrabug@gentoo.org> | 2020-09-04 17:50:53 +0200 |
---|---|---|
committer | Ultrabug <ultrabug@gentoo.org> | 2020-09-04 17:50:53 +0200 |
commit | deb8dbd0e8236a0b84734f985c8fff33c305f45c (patch) | |
tree | 285e8ebfbf4443977562b909de2a3db13ae35046 /dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild | |
parent | dev-db/scylla-bin: add 3.3 version (diff) | |
download | ultrabug-deb8dbd0e8236a0b84734f985c8fff33c305f45c.tar.gz ultrabug-deb8dbd0e8236a0b84734f985c8fff33c305f45c.tar.bz2 ultrabug-deb8dbd0e8236a0b84734f985c8fff33c305f45c.zip |
dev-db/scylla-bin: drop osbolete ebuilds
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Manifest-Sign-Key: 34FCB257983BA23A8CEC5EB7EB9E6405C24BFAE5
Signed-off-by: Alexys Jacob <ultrabug@gentoo.org>
Diffstat (limited to 'dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild')
-rw-r--r-- | dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild | 112 |
1 files changed, 0 insertions, 112 deletions
diff --git a/dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild b/dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild deleted file mode 100644 index e12b428..0000000 --- a/dev-db/scylla-bin/scylla-bin-3.2_p202002221144.ebuild +++ /dev/null @@ -1,112 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PV="${PV/_p//}" - -inherit linux-info user - -DESCRIPTION="NoSQL data store using the seastar framework, compatible with Apache Cassandra" -HOMEPAGE="https://scylladb.com/" -SRC_URI="http://downloads.scylladb.com/relocatable/unstable/branch-${MY_PV}/scylla-package.tar.gz -> ${P}-package.tar.gz http://downloads.scylladb.com/relocatable/unstable/branch-${MY_PV}/scylla-python3-package.tar.gz -> ${P}-python3.tar.gz" - -KEYWORDS="~amd64" -LICENSE="AGPL-3" -SLOT="0" -IUSE="doc" -RESTRICT="strip test" - -RDEPEND=" - !dev-db/scylla - >=app-admin/scylla-jmx-3.2 - >=app-admin/scylla-tools-3.2 -" -DEPEND="${RDEPEND} - >=sys-kernel/linux-headers-3.5 -" - -# Discussion about kernel configuration: -# https://groups.google.com/forum/#!topic/scylladb-dev/qJu2zrryv-s -CONFIG_CHECK="~NUMA_BALANCING ~SYN_COOKIES ~TRANSPARENT_HUGEPAGE" -ERROR_NUMA_BALANCING="${PN} recommends support for Memory placement aware NUMA scheduler (NUMA_BALANCING)." -ERROR_SYN_COOKIES="${PN} recommends support for TCP syncookie (SYN_COOKIES)." -ERROR_TRANSPARENT_HUGEPAGE="${PN} recommends support for Transparent Hugepage (TRANSPARENT_HUGEPAGE)." - -# NOTE: maybe later depending on upstream energy, support DPDK -# For DPDK, removed HUGETLBFS PROC_PAGE_MONITOR UIO_PCI_GENERIC in favor of VFIO -# CONFIG_CHECK="~NUMA_BALANCING ~SYN_COOKIES ~TRANSPARENT_HUGEPAGE ~VFIO" -# ERROR_VFIO="${PN} running with DPDK recommends support for Non-Privileged userspace driver framework (VFIO)." - -DOCS=( README.md NOTICE.txt SCYLLA-PRODUCT-FILE SCYLLA-RELEASE-FILE SCYLLA-RELOCATABLE-FILE SCYLLA-VERSION-FILE ) -PATCHES=( ) -S=${WORKDIR} - -pkg_setup() { - linux-info_pkg_setup - enewgroup scylla - enewuser scylla -1 -1 /var/lib/${PN} scylla -} - -src_unpack() { - for pkg in package python3; - do - mkdir "${pkg}" || die - pushd "${pkg}" || die - unpack ${P}-${pkg}.tar.gz || die - find . -type f -name "*.pyc" -delete - popd || die - done -} - -install_package() { - pushd package - - bash install.sh --root "${D}" --sysconfdir /etc/default || die - - for x in /var/lib/scylla /var/lib/scylla/{data,commitlog,hints,coredump,hints,view_hints} /var/lib/scylla-housekeeping /var/log/scylla; do - keepdir "${x}" - fowners scylla:scylla "${x}" - done - - insinto /etc/sudoers.d - newins "${FILESDIR}"/scylla.sudoers scylla - - insinto /etc/rsyslog.d - doins "${FILESDIR}/10-scylla.conf" - - newinitd "${FILESDIR}/scylla-server.initd" scylla-server - newconfd "${FILESDIR}/scylla-server.confd" scylla-server - - popd -} - -install_python3() { - pushd python3 - bash install.sh --root "${D}" || die - popd -} - -#install_jmx_package() { -# # TODO: not working with icedtea JVM -# pushd jmx-package -# bash install.sh --root "${D}" --sysconfdir /etc/default || die -# newinitd "${FILESDIR}/scylla-jmx.initd" scylla-jmx -# newconfd "${FILESDIR}/scylla-jmx.confd" scylla-jmx -# popd -#} - -src_install() { - install_package - install_python3 - #install_jmx_package -} - -pkg_postinst() { - elog "You should run 'emerge --config dev-db/scylla' to finalize your Scylla installation." -} - -pkg_config() { - elog "Running 'scylla_setup'..." - scylla_setup -} |