forked from hasufell/hasufell-repository
Compare commits
13 Commits
PR/add-cqu
...
armv8
| Author | SHA1 | Date | |
|---|---|---|---|
|
dbdd912967
|
|||
|
cbfe44c5be
|
|||
| 44fe707906 | |||
| 16ea3713b2 | |||
| 768adc4562 | |||
| e0958880e1 | |||
| 83386b0d6e | |||
| c7d218beda | |||
| 4925c7abf9 | |||
| 068d5d76dd | |||
| c56801c820 | |||
| 538aeffbfd | |||
| 24d056ae33 |
@@ -105,6 +105,12 @@ find_desktop_file_category() {
|
|||||||
local subcat=
|
local subcat=
|
||||||
|
|
||||||
case ${CATEGORY} in
|
case ${CATEGORY} in
|
||||||
|
app*) maincat="Utility"
|
||||||
|
case ${CATEGORY##*-} in
|
||||||
|
editors) subcat="TextEditor";;
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
|
;;
|
||||||
dev*) maincat="Development"
|
dev*) maincat="Development"
|
||||||
case ${CATEGORY##*-} in
|
case ${CATEGORY##*-} in
|
||||||
db) subcat="Database";;
|
db) subcat="Database";;
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ dev-libs
|
|||||||
dev-ocaml
|
dev-ocaml
|
||||||
dev-perl
|
dev-perl
|
||||||
dev-python
|
dev-python
|
||||||
|
dev-ruby
|
||||||
dev-tcl
|
dev-tcl
|
||||||
dev-util
|
dev-util
|
||||||
games-action
|
games-action
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
(
|
(
|
||||||
|
app-editors/neovim-gtk[~scm]
|
||||||
dev-lang/fsharp[~scm]
|
dev-lang/fsharp[~scm]
|
||||||
dev-lang/fstar[~scm]
|
dev-lang/fstar[~scm]
|
||||||
dev-python/pytype[~scm]
|
dev-python/pytype[~scm]
|
||||||
@@ -18,6 +19,7 @@
|
|||||||
net-im/lurch[~scm]
|
net-im/lurch[~scm]
|
||||||
net-im/pidgin-opensteamworks[~scm]
|
net-im/pidgin-opensteamworks[~scm]
|
||||||
net-misc/remmina[~scm]
|
net-misc/remmina[~scm]
|
||||||
|
net-misc/trickle[~scm]
|
||||||
x11-apps/terminator[~scm]
|
x11-apps/terminator[~scm]
|
||||||
x11-misc/cbatticon[~scm]
|
x11-misc/cbatticon[~scm]
|
||||||
x11-wm/i3[~scm]
|
x11-wm/i3[~scm]
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require neovim-gtk
|
||||||
|
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
|
||||||
|
DEPENDENCIES="
|
||||||
|
build+run:
|
||||||
|
app-editors/neovim
|
||||||
|
dev-libs/glib:2
|
||||||
|
x11-libs/cairo
|
||||||
|
x11-libs/gtk+:3[>=3.10.0]
|
||||||
|
x11-libs/pango
|
||||||
|
"
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
ecargo_install
|
||||||
|
|
||||||
|
insinto /usr/share/applications
|
||||||
|
doins desktop/*.desktop
|
||||||
|
|
||||||
|
insinto /usr/share/icons/hicolor/128x128/apps
|
||||||
|
doins desktop/nvim-gtk.png
|
||||||
|
}
|
||||||
38
packages/app-editors/neovim-gtk/neovim-gtk-scm.exheres-0
Normal file
38
packages/app-editors/neovim-gtk/neovim-gtk-scm.exheres-0
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require neovim-gtk
|
||||||
|
|
||||||
|
DOWNLOADS=""
|
||||||
|
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
|
||||||
|
DEPENDENCIES="
|
||||||
|
build+run:
|
||||||
|
app-editors/neovim
|
||||||
|
dev-libs/glib:2
|
||||||
|
x11-libs/cairo
|
||||||
|
x11-libs/gtk+:3[>=3.22.0]
|
||||||
|
x11-libs/pango[>=1.38]
|
||||||
|
"
|
||||||
|
|
||||||
|
src_unpack() {
|
||||||
|
cargo_src_unpack
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
ecargo_install
|
||||||
|
|
||||||
|
insinto /usr/share/nvim-gtk
|
||||||
|
doins -r runtime
|
||||||
|
|
||||||
|
insinto /usr/share/applications
|
||||||
|
doins desktop/*.desktop
|
||||||
|
|
||||||
|
insinto /usr/share/icons/hicolor/48x48/apps
|
||||||
|
doins desktop/org.daa.NeovimGtk.png
|
||||||
|
|
||||||
|
insinto /usr/share/icons/hicolor/scalable/apps
|
||||||
|
doins desktop/org.daa.NeovimGtk.svg
|
||||||
|
}
|
||||||
30
packages/app-editors/neovim-gtk/neovim-gtk.exlib
Normal file
30
packages/app-editors/neovim-gtk/neovim-gtk.exlib
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require freedesktop-desktop gtk-icon-cache
|
||||||
|
require cargo [ channel=stable ]
|
||||||
|
require github [ user=daa84 tag="v${PV}" ]
|
||||||
|
|
||||||
|
SUMMARY="Gtk ui for neovim"
|
||||||
|
HOMEPAGE="https://github.com/daa84/neovim-gtk ${HOMEPAGE}"
|
||||||
|
|
||||||
|
LICENCES="GPL-3.0"
|
||||||
|
MYOPTIONS=""
|
||||||
|
|
||||||
|
BUGS_TO="hasufell@posteo.de"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
default
|
||||||
|
export PREFIX=/usr
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postinst() {
|
||||||
|
freedesktop-desktop_update_desktop_database
|
||||||
|
gtk-icon-cache_pkg_postinst
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postrm() {
|
||||||
|
freedesktop-desktop_update_desktop_database
|
||||||
|
gtk-icon-cache_pkg_postrm
|
||||||
|
}
|
||||||
|
|
||||||
@@ -24,14 +24,25 @@ MYOPTIONS=""
|
|||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
build+run:
|
build+run:
|
||||||
dev-python/typed-ast[>=1.1.0&<1.2.0][python_abis:*(-)?]
|
dev-python/typed-ast[>=1.1.0&<1.2.0][python_abis:*(-)?]
|
||||||
dev-python/psutil[>=5.4.0&<5.5.0][python_abis:*(-)?]
|
|
||||||
python_abis:3.4? (
|
python_abis:3.4? (
|
||||||
dev-python/typing[>=3.5.3][python_abis:3.4]
|
dev-python/typing[>=3.5.3][python_abis:3.4]
|
||||||
)
|
)
|
||||||
|
test:
|
||||||
|
dev-python/py[>=1.5.2][python_abis:*(-)?]
|
||||||
|
dev-python/pytest[>=3.0][python_abis:*(-)?]
|
||||||
|
dev-python/pytest-cov[>=2.4.0][python_abis:*(-)?]
|
||||||
|
dev-python/pytest-xdist[>=1.18][python_abis:*(-)?]
|
||||||
|
suggestion:
|
||||||
|
dev-python/psutil[>=5.4.0&<5.5.0][python_abis:*(-)?] [[
|
||||||
|
description = [ Show memory stats in 'dmypy status -v' ] ]]
|
||||||
"
|
"
|
||||||
|
|
||||||
BUGS_TO="hasufell@posteo.de"
|
BUGS_TO="hasufell@posteo.de"
|
||||||
|
|
||||||
|
# Require upstream release with https://github.com/python/mypy/pull/5191 included
|
||||||
|
# Require unpackaged: flake8-bugbear, flake8-pyi
|
||||||
|
RESTRICT="test"
|
||||||
|
|
||||||
prepare_one_multibuild() {
|
prepare_one_multibuild() {
|
||||||
edo sed -i \
|
edo sed -i \
|
||||||
-e "/target = /s|lib|$(exhost --target)/lib|" \
|
-e "/target = /s|lib|$(exhost --target)/lib|" \
|
||||||
@@ -40,3 +51,7 @@ prepare_one_multibuild() {
|
|||||||
setup-py_prepare_one_multibuild
|
setup-py_prepare_one_multibuild
|
||||||
}
|
}
|
||||||
|
|
||||||
|
test_one_multibuild() {
|
||||||
|
PYTHONPATH="${PWD}" edo ${PYTHON} -B runtests.py -x lint
|
||||||
|
}
|
||||||
|
|
||||||
@@ -7,7 +7,7 @@ SUMMARY="OAuth 2.0 client library"
|
|||||||
|
|
||||||
LICENCES="Apache-2.0"
|
LICENCES="Apache-2.0"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
PLATFORMS="~amd64 ~armv7 ~x86"
|
PLATFORMS="~amd64 ~armv7 ~armv8 ~x86"
|
||||||
MYOPTIONS=""
|
MYOPTIONS=""
|
||||||
|
|
||||||
DEPENDENCIES="
|
DEPENDENCIES="
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ SUMMARY="Pure-Python RSA implementation"
|
|||||||
|
|
||||||
LICENCES="Apache-2.0"
|
LICENCES="Apache-2.0"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
PLATFORMS="~amd64 ~armv7 ~x86"
|
PLATFORMS="~amd64 ~armv7 ~armv8 ~x86"
|
||||||
MYOPTIONS=""
|
MYOPTIONS=""
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
15
packages/dev-ruby/msgpack/msgpack-1.2.4.exheres-0
Normal file
15
packages/dev-ruby/msgpack/msgpack-1.2.4.exheres-0
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require gem
|
||||||
|
|
||||||
|
SUMMARY="Binary-based efficient data interchange format for ruby binding"
|
||||||
|
HOMEPAGE="https://msgpack.org"
|
||||||
|
|
||||||
|
LICENCES="Apache-2.0"
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
MYOPTIONS=""
|
||||||
|
|
||||||
|
BUGS_TO="hasufell@posteo.de"
|
||||||
|
|
||||||
23
packages/dev-ruby/neovim-ruby/neovim-ruby-0.7.1.exheres-0
Normal file
23
packages/dev-ruby/neovim-ruby/neovim-ruby-0.7.1.exheres-0
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
# Copyright 2018 Julian Ospald <hasufell@posteo.de>
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
require gem [ pn=neovim ]
|
||||||
|
|
||||||
|
SUMMARY="Ruby bindings for Neovim"
|
||||||
|
HOMEPAGE="https://github.com/alexgenco/neovim-ruby"
|
||||||
|
|
||||||
|
LICENCES="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
PLATFORMS="~amd64 ~x86"
|
||||||
|
MYOPTIONS=""
|
||||||
|
|
||||||
|
DEPENDENCIES="
|
||||||
|
build+run:
|
||||||
|
dev-ruby/msgpack[~>1.1]
|
||||||
|
dev-ruby/multi_json[~>1.0]
|
||||||
|
"
|
||||||
|
|
||||||
|
BUGS_TO="hasufell@posteo.de"
|
||||||
|
|
||||||
|
REMOTE_IDS+=" github:alexgenco/neovim-ruby"
|
||||||
|
|
||||||
Reference in New Issue
Block a user