<various>: reassign package ownership from kulinacs to maldridge
@kulinacs has requested to orphan all currently owned packages in #9542. This commit reassigns all packages affected to @the-maldridge. [skip ci] Closes: #9544 [via git-merge-pr]
This commit is contained in:
parent
63d425d4a7
commit
902807f15e
|
@ -12,7 +12,7 @@ system_accounts="_chronograf"
|
|||
_chronograf_homedir="/var/lib/${pkgname}"
|
||||
make_dirs="${_chronograf_homedir} 0755 _chronograf _chronograf"
|
||||
short_desc="Open source monitoring and visualization UI for the TICK stack"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="MIT"
|
||||
homepage="https://www.influxdata.com/time-series-platform/chronograf/"
|
||||
distfiles="https://github.com/influxdata/${pkgname}/archive/${version}.tar.gz"
|
||||
|
|
|
@ -8,7 +8,7 @@ go_import_path="github.com/git-lfs/git-lfs"
|
|||
hostmakedepends="go"
|
||||
depends="git"
|
||||
short_desc="Git extension for versioning large files"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="MIT"
|
||||
homepage="https://git-lfs.github.com/"
|
||||
distfiles="https://github.com/git-lfs/${pkgname}/archive/v${version}.tar.gz"
|
||||
|
|
|
@ -5,7 +5,7 @@ revision=2
|
|||
build_style=go
|
||||
hostmakedepends="git"
|
||||
short_desc="Go dependency manager - gdm"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="Unlicense"
|
||||
go_import_path="github.com/sparrc/gdm"
|
||||
homepage="https://${go_import_path}"
|
||||
|
|
|
@ -15,7 +15,7 @@ _influxdb_homedir="/var/lib/${pkgname}"
|
|||
make_dirs="${_influxdb_homedir} 0755 _influxdb _influxdb"
|
||||
conf_files="/etc/${pkgname}/${pkgname}.conf"
|
||||
short_desc="Scalable datastore for metrics, events, and real-time analytics"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="MIT"
|
||||
homepage="https://influxdata.com/time-series-platform/influxdb/"
|
||||
distfiles="https://${go_import_path}/archive/v${version}.tar.gz"
|
||||
|
|
|
@ -12,7 +12,7 @@ _kapacitor_homedir="/var/lib/kapacitor"
|
|||
make_dirs="/var/lib/kapacitor 0755 _kapacitor _kapacitor"
|
||||
conf_files="/etc/${pkgname}/${pkgname}.conf"
|
||||
short_desc="Open source framework for alerting on time series data"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="MIT"
|
||||
homepage="https://www.influxdata.com/time-series-platform/kapacitor/"
|
||||
distfiles="https://github.com/influxdata/${pkgname}/archive/v${version}.tar.gz"
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
../opencv/template
|
|
@ -0,0 +1,62 @@
|
|||
# Template file for 'opencv'
|
||||
pkgname=opencv
|
||||
version=3.3.1
|
||||
revision=1
|
||||
build_style=cmake
|
||||
configure_args="-DENABLE_PRECOMPILED_HEADERS=OFF -DWITH_OPENMP=ON
|
||||
-DWITH_OPENCL=ON -DENABLE_CXX11=ON"
|
||||
hostmakedepends="pkg-config eigen"
|
||||
makedepends="ffmpeg-devel libpng-devel libjpeg-turbo-devel tiff-devel
|
||||
jasper-devel ocl-icd-devel libgomp-devel libopenexr-devel gtk+3-devel
|
||||
libgphoto2-devel gst-plugins-base1-devel openblas-devel"
|
||||
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
||||
homepage="http://opencv.org"
|
||||
license="3-clause-BSD"
|
||||
short_desc="Computer vision and machine learning software library"
|
||||
distfiles="https://github.com/opencv/${pkgname}/archive/${version}.tar.gz"
|
||||
checksum=5dca3bb0d661af311e25a72b04a7e4c22c47c1aa86eb73e70063cd378a2aa6ee
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE
|
||||
}
|
||||
|
||||
libopencv_package() {
|
||||
short_desc+=" - library files"
|
||||
pkg_install() {
|
||||
vmove usr/lib/*.so.*
|
||||
}
|
||||
}
|
||||
|
||||
libopencv-devel_package() {
|
||||
short_desc+=" - development files"
|
||||
depends="libopencv>=${version}_${revision}"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove usr/lib/*.so
|
||||
vmove usr/share/OpenCV
|
||||
}
|
||||
}
|
||||
|
||||
if [ -z "$CROSS_BUILD" ]; then
|
||||
# because python-numpy cannot be cross compiled
|
||||
hostmakedepends+=" python-devel python3-devel"
|
||||
makedepends+=" python-numpy python3-numpy"
|
||||
|
||||
libopencv-python_package() {
|
||||
short_desc+=" - Python2 bindings"
|
||||
depends="python-numpy"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python2.7
|
||||
}
|
||||
}
|
||||
|
||||
libopencv-python3_package() {
|
||||
short_desc+=" - Python3 bindings"
|
||||
depends="python3-numpy"
|
||||
pkg_install() {
|
||||
vmove usr/lib/python3*
|
||||
}
|
||||
}
|
||||
fi
|
||||
|
|
@ -4,7 +4,7 @@ version=0.32
|
|||
revision=1
|
||||
build_style=gnu-configure
|
||||
short_desc="A PGP packet visualizer"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="3-cause-BSD"
|
||||
homepage="https://github.com/kazu-yamamoto/${pkgname}"
|
||||
distfiles="${homepage}/archive/v${version}.tar.gz"
|
||||
|
|
|
@ -5,7 +5,7 @@ revision=1
|
|||
wrksrc="${pkgname}-${version##*.}"
|
||||
build_style=gnu-makefile
|
||||
short_desc="A small C program calculating sunrise and sunset"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="GPL-2"
|
||||
homepage="http://www.risacher.org/sunwait/"
|
||||
distfiles="${homepage}${pkgname}-${version##*.}.tar.gz"
|
||||
|
|
|
@ -11,7 +11,7 @@ build_wrksrc="_build-${pkgname}-xbps/src/${go_import_path}"
|
|||
hostmakedepends="go-gdm git"
|
||||
system_accounts="_telegraf"
|
||||
short_desc="The plugin-driven server agent for collecting & reporting metrics"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="MIT"
|
||||
homepage="https://www.influxdata.com/time-series-platform/telegraf/"
|
||||
distfiles="https://github.com/influxdata/${pkgname}/archive/${version}.tar.gz"
|
||||
|
|
|
@ -8,7 +8,7 @@ makedepends="zlib-devel libressl-devel libidn-devel ncurses-devel pcre-devel
|
|||
postgresql-libs-devel libmysqlclient-devel libssh-devel"
|
||||
make_install_args="MANDIR=/share/man/man1"
|
||||
short_desc="A tool to guess/crack valid login/password pairs"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="AGPL-3"
|
||||
homepage="https://github.com/vanhauser-thc/${pkgname}"
|
||||
distfiles="${homepage}/archive/${version}.tar.gz"
|
||||
|
|
|
@ -4,7 +4,7 @@ version=1.3.2
|
|||
revision=1
|
||||
depends="nodejs"
|
||||
short_desc="Fast, reliable, and secure dependency management - precompiled binaries"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="2-cause-BSD"
|
||||
homepage="https://yarnpkg.com/"
|
||||
distfiles="https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"
|
||||
|
|
|
@ -5,7 +5,7 @@ revision=1
|
|||
hostmakedepends="yarn-bin"
|
||||
depends="nodejs"
|
||||
short_desc="Fast, reliable, and secure dependency management"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="2-cause-BSD"
|
||||
homepage="https://yarnpkg.com/"
|
||||
distfiles="https://github.com/yarnpkg/${pkgname}/archive/v${version}.tar.gz"
|
||||
|
|
|
@ -5,7 +5,7 @@ revision=1
|
|||
hostmakedepends="openjdk apache-ant"
|
||||
depends="virtual?java-runtime"
|
||||
short_desc="Web application vulnerability scanner"
|
||||
maintainer="Nicklaus McClendon <nicklaus@kulinacs.com>"
|
||||
maintainer="Michael Aldridge <maldridge@VoidLinux.eu>"
|
||||
license="Apache-2.0"
|
||||
homepage="https://www.owasp.org/index.php/ZAP"
|
||||
distfiles="https://github.com/zaproxy/zaproxy/archive/${version}.tar.gz"
|
||||
|
|
Loading…
Reference in New Issue