Merge updates from master

This commit is contained in:
Repository mirror & CI
2021-09-24 08:36:15 +00:00
6 changed files with 81 additions and 26 deletions

View File

@@ -1 +1 @@
DIST libphonenumber-8.12.32.tar.gz 10993781 BLAKE2B 83a2c11f42146e48dbe3d08a910887176769bb53a08ef22872dd1fdfde27678b9e9a6ec798a7c3ecbeecd28a91cb62e28e35db9a64640703811d596a0b31c8d4 SHA512 5d248e999750f26ee18adb6961d2570193e89299d8529ba5323a07a1893548c5798d66d913be207dbe1f1677f0800bea485ffc63eb1c8955ed478acaf6a8d411
DIST libphonenumber-8.12.33.tar.gz 10997202 BLAKE2B 3c2fa20dd90dc544b2f26e2466a0909c532b69d7bc57e3a9fc8120fa2011513e6c36c0a235fc7ce0bb6922346c97052478547be81782b872699aea2097eab9c2 SHA512 71bb9cb0d83b8d9b23e6f9ad7eb9e7210d3c29287ae104b0cbd5abd3dbbf4a0d13310739760dd88356b45953993ead3c970d5db48e46e44fb71906deead6af22

View File

@@ -1 +1,2 @@
DIST got-0_p20210217.tar.gz 517647 BLAKE2B 4b4f5436c5804aa60038d737de883eb69ce4d4f0f705f7d310722222da38b917d577a09fb37b2317c1a34b1a0aa2b0fe00cf07dcbb350a901fe50dbb31ca6ede SHA512 fb3c60b5d1036d735e775e362c7349720bfeae62c1e8b830417b5edd57c86546a97113f6b10b742b1b3b6146d0a7e41906042c1008551b4d15e2bd0331c7ab2f
DIST got-portable-0.60.tar.gz 664189 BLAKE2B 2ea2c7680de2fde60d4c862ebb836c9809b686396d8ed9c250b14c5d874f393a30f97281fa601fd1e4a7a19c66d8c71f478fda7fea21f11017dbc2bea593900b SHA512 9139c4187914d3ac93880a1b242e14a4d93e3982251dd6eb346911e76f51cc7f0041b45af712633a1099b727580870572c8f590432e7f51abe3c682cba47b524

View File

@@ -0,0 +1,40 @@
# Copyright 2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_PN="${PN}-portable"
DESCRIPTION="Portable version of the Game of Trees version control system"
HOMEPAGE="https://gameoftrees.org"
SRC_URI="https://gameoftrees.org/releases/portable/${MY_PN}-${PV}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-libs/openssl:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
elibc_Darwin? ( sys-libs/native-uuid )
elibc_SunOS? ( sys-libs/libuuid )
!elibc_Darwin? ( dev-libs/libbsd )
!elibc_Darwin? ( !elibc_SunOS? (
app-crypt/libmd
sys-apps/util-linux
) )
"
BDEPEND="
virtual/pkgconfig
virtual/yacc
"
RDEPEND="${DEPEND}"
DOCS=( CHANGELOG CHANGES README TODO )
src_compile() {
emake AR=$(tc-getAR) GOT_RELEASE=Yes
}

View File

@@ -1,26 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<longdescription>
Game of Trees (Got) is a version control system which prioritizes
ease of use and simplicity over flexibility.
<maintainer type="person">
<email>cyber+gentoo@sysrq.in</email>
<name>Anna</name>
</maintainer>
<longdescription>
Game of Trees (Got) is a version control system which prioritizes ease
of use and simplicity over flexibility.
Got uses Git repositories to store versioned data. Git can be used
for any functionality which has not yet been implemented in Got.
It will always remain possible to work with both Got and Git on the
same repository.
</longdescription>
<upstream>
<maintainer>
<email>thomas@xteddy.org</email>
<name>Thomas Adam</name>
</maintainer>
<bugs-to>mailto:gameoftrees@openbsd.org</bugs-to>
<doc>https://gameoftrees.org/examples.html</doc>
<changelog>https://git.gameoftrees.org/gitweb/?p=got-portable.git;a=blob_plain;f=CHANGES</changelog>
</upstream>
Got uses Git repositories to store versioned data. Git can be used for
any functionality which has not yet been implemented in Got. It will
always remain possible to work with both Got and Git on the same
repository.
</longdescription>
<upstream>
<maintainer>
<email>thomas@xteddy.org</email>
<name>Thomas Adam</name>
</maintainer>
<bugs-to>mailto:gameoftrees@openbsd.org</bugs-to>
<doc>https://gameoftrees.org/examples.html</doc>
<changelog>https://git.gameoftrees.org/gitweb/?p=got-portable.git;a=blob_plain;f=CHANGES</changelog>
</upstream>
</pkgmetadata>

View File

@@ -3,7 +3,7 @@
EAPI=7
inherit desktop xdg-utils savedconfig toolchain-funcs
inherit desktop xdg-utils savedconfig toolchain-funcs linux-info
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/nsxiv/nsxiv.git"
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/nsxiv/nsxiv"
LICENSE="GPL-2"
SLOT="0"
IUSE="exif gif +jpeg +png webp tiff"
IUSE="exif +gif +jpeg +png webp tiff +inotify"
RDEPEND="
exif? ( media-libs/libexif )
@@ -29,6 +29,17 @@ RDEPEND="
"
DEPEND="${RDEPEND}"
pkg_setup() {
if use inotify; then
nsxiv_autoreload="inotify"
CONFIG_CHECK+=" ~INOTIFY_USER"
ERROR_INOTIFY_USER="${P} requires inotify in-kernel support."
linux-info_pkg_setup
else
nsxiv_autoreload="nop"
fi
}
src_prepare() {
default
@@ -44,7 +55,10 @@ src_configure() {
}
src_compile() {
emake CC="$(tc-getCC)" HAVE_LIBEXIF=$(usex exif 1 0) HAVE_LIBGIF=$(usex gif 1 0)
emake CC="$(tc-getCC)" \
HAVE_LIBEXIF=$(usex exif 1 0) \
HAVE_LIBGIF=$(usex gif 1 0) \
AUTORELOAD="${nsxiv_autoreload}"
}
src_install() {