1
0
mirror of https://github.com/gryf/gryf-overlay.git synced 2025-12-24 07:02:27 +01:00

Added vimwiki2html ebuild

This commit is contained in:
2025-02-13 07:49:13 +01:00
parent 659e92a89a
commit 6f94b0ce24
3 changed files with 24 additions and 37 deletions

View File

@@ -0,0 +1 @@
EBUILD vimwiki2html-9999.ebuild 481 BLAKE2B 069fddcc9507f2bdba618f5b226dceaa2e656d6e4cc6058dcf8cc77b455385e1b49366743dfdc3b9ff0e99b91a9266277ef72d56dfb07d795c2d87f1c7757f0f SHA512 37f0ca6c66809fe1ba6436c90d98b699f2545a9122320ff22a284ffa249a3cc7dfaf4905072f5f058f4e20d953278b9c3402d56d1af6a813e332bb8a8857fc2d

View File

@@ -0,0 +1,22 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit git-r3
inherit distutils-r1
DESCRIPTION="Parse and generate html out of vimwiki source files"
HOMEPAGE="https://github.com/gryf/vimwiki2html"
EGIT_REPO_URI="https://github.com/gryf/vimwiki2html"
EGIT_BRANCH="master"
LICENSE="LGPL"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
DEPEND="${RDEPEND}"

View File

@@ -10,7 +10,7 @@ inherit git-r3 distutils-r1
DESCRIPTION="Camera controls for Linux "
HOMEPAGE="https://github.com/soyersoyer/cameractrls"
EGIT_REPO_URI="https://github.com/gryf/cameractrls"
IUSE="-daemon doc gtk3 -gtk4 ptz view"
IUSE="-daemon gtk3 -gtk4 ptz view"
LICENSE="LGPLv3+"
SLOT="0"
@@ -25,39 +25,3 @@ DEPEND="
"
RDEPEND="${DEPEND}"
BDEPEND=""
#python_compile(){
#}
#
#python_install() {
# if use gtk4; then
# python_newscript cameractrlsgtk4.py cameractrlsgtk4
# elif use gtk3; then
# python_newscript cameractrlsgtk.py cameractrlsgtk
# fi
#
# if use daemon; then
# python_newscript cameractrlsd.py cameractrlsd
# fi
#
# if use ptz; then
# python_newscript cameraptzgame.py cameraptzgame
# python_newscript cameraptzmidi.py cameraptzmidi
# python_newscript cameraptzspnav.py cameraptzspnav
# fi
#
# if use view; then
# python_newscript cameraview.py cameraview
# fi
#
# python_domodule pysvn
#}
#
#python_install_all() {
# use doc && local HTML_DOCS=( Docs/. )
# if use examples; then
# docinto examples
# dodoc -r Examples/Client/.
# docompress -x /usr/share/doc/${PF}/examples
# fi
#}