Sync with portage [Tue Oct 13 12:45:41 MSK 2020].

akrasnyh 1785
Calculate Linux 4 years ago
parent 84ae78cac3
commit 945497ddc1

Binary file not shown.

Binary file not shown.

@ -1 +1,2 @@
DIST EdisonCore-1.3.2.1.tar.gz 82522 BLAKE2B 758e02e462d4f86b95a66792ce26dda6d1a00506a8071f3716f9a7484fc992af9e1709a9bbb958ee71175b2c51c4574493a35b6eaa7a1bfab415ed4ce7e2a8b4 SHA512 6812b04edb1abdfc2486d66bb86d6370b76667de1603ab421d92a6ecc17a25014e0ab97f53dd4f1e75cacf32c31611e8f2dd6c740c840e349c3c762ae00df65f
DIST edisoncore-1.3.2.1-ghc-8.8.patch 57508 BLAKE2B 0651b4be26461cfe2bd3a57742ee138863ec6b47940065754642bd6320d814dfc8cb63bd4b37131bb3135752d03cdab335c2f1ebf5ccd87bd9219bd39d43c3e3 SHA512 9e5b60ec6023f2be4af4ecae0fcf00f8b6f758ea6bbd21c3dea4d3dd9ff128736e743e9a020a445e27e4ff1fb6c43061427f042353fe84528f2d715b5784302b

@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@ -13,7 +13,10 @@ MY_P="${MY_PN}-${PV}"
DESCRIPTION="A library of efficent, purely-functional data structures (Core Implementations)"
HOMEPAGE="http://rwd.rdockins.name/edison/home/"
SRC_URI="https://hackage.haskell.org/package/${MY_P}/${MY_P}.tar.gz"
SRC_URI="
https://hackage.haskell.org/package/${MY_P}/${MY_P}.tar.gz
https://dev.gentoo.org/~slyfox/distfiles/edisoncore-1.3.2.1-ghc-8.8.patch
"
LICENSE="MIT"
SLOT="0/${PV}"
@ -32,4 +35,4 @@ DEPEND="${RDEPEND}
S="${WORKDIR}/${MY_P}"
PATCHES=( "${FILESDIR}/${PN}-1.3.2.1-ghc-8.8.patch" )
PATCHES=( "${DISTDIR}/${PN}-1.3.2.1-ghc-8.8.patch" )

Binary file not shown.

@ -1 +1,2 @@
DIST luadbi-0.7.2.tar.gz 36462 BLAKE2B 581c7353bfa36b3f6cabed2df78372f8810300bf4525bf8d370e61d469f9daa5a5c40c58916164a8d0a621a61e983e85c67b23ef03f51212be79f09ad8512047 SHA512 891f99cbc8f1b5327ef820641a1608abf41410f2f28584b975cc3cf65154b9bebf6f1b9ca7d1818b9c965738ad700dd17ae042dfd2a7146cf755871ebae535b9
DIST luadbi.0.5.tar.gz 22454 BLAKE2B 538fa935ece2a8e0f852cef33716570a6e85100ec26892d7a76c5b00a7fceb82411e2ebe29d25de42cf6ee6bdbfdf5102875bb4d04d65f86dfdc9d79fecef359 SHA512 4ed641e113e90acc8a4f6b3b2d0f5d5044c0fbbef3b2fdfb84d15e17115e45c553a33b19bfb165e5af11a2adce501d66859963e3363d3ab1c6a39b0b2ae92e62

@ -0,0 +1,55 @@
From b72503cad0654878841172451b2ea860a59e30c1 Mon Sep 17 00:00:00 2001
From: Conrad Kostecki <conrad@kostecki.com>
Date: Tue, 13 Oct 2020 07:34:16 +0200
Subject: [PATCH] dbd/mysql/statement.c: fix compilation with mysql-8
Signed-off-by: Conrad Kostecki <conrad@kostecki.com>
---
dbd/mysql/dbd_mysql.h | 2 +-
dbd/mysql/statement.c | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dbd/mysql/dbd_mysql.h b/dbd/mysql/dbd_mysql.h
index 233bc35..4777289 100644
--- a/dbd/mysql/dbd_mysql.h
+++ b/dbd/mysql/dbd_mysql.h
@@ -3,7 +3,7 @@
#endif
-#include <mysql.h>
+#include <mysql/mysql.h>
#include <dbd/common.h>
#define DBD_MYSQL_CONNECTION "DBD.MySQL.Connection"
diff --git a/dbd/mysql/statement.c b/dbd/mysql/statement.c
index aca865a..6af4c39 100644
--- a/dbd/mysql/statement.c
+++ b/dbd/mysql/statement.c
@@ -424,7 +424,7 @@ static int statement_fetch_impl(lua_State *L, statement_t *statement, int named_
if (fields[i].type == MYSQL_TYPE_TIMESTAMP || fields[i].type == MYSQL_TYPE_DATETIME) {
char str[20];
- struct st_mysql_time *t = bind[i].buffer;
+ MYSQL_TIME *t = bind[i].buffer;
snprintf(str, 20, "%d-%02d-%02d %02d:%02d:%02d", t->year, t->month, t->day, t->hour, t->minute, t->second);
@@ -435,7 +435,7 @@ static int statement_fetch_impl(lua_State *L, statement_t *statement, int named_
}
} else if (fields[i].type == MYSQL_TYPE_TIME) {
char str[9];
- struct st_mysql_time *t = bind[i].buffer;
+ MYSQL_TIME *t = bind[i].buffer;
snprintf(str, 9, "%02d:%02d:%02d", t->hour, t->minute, t->second);
@@ -446,7 +446,7 @@ static int statement_fetch_impl(lua_State *L, statement_t *statement, int named_
}
} else if (fields[i].type == MYSQL_TYPE_DATE) {
char str[20];
- struct st_mysql_time *t = bind[i].buffer;
+ MYSQL_TIME *t = bind[i].buffer;
snprintf(str, 11, "%d-%02d-%02d", t->year, t->month, t->day);

@ -0,0 +1,60 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="A database interface library for Lua"
HOMEPAGE="https://github.com/mwild1/luadbi"
SRC_URI="https://github.com/mwild1/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE="mysql postgres +sqlite"
REQUIRED_USE="|| ( mysql postgres sqlite )"
RDEPEND="
>=dev-lang/lua-5.1:=
mysql? ( dev-db/mysql-connector-c:0= )
postgres? ( dev-db/postgresql:= )
sqlite? ( dev-db/sqlite )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
PATCHES=( "${FILESDIR}/${PN}-0.7.2-mysql-8.patch" )
src_prepare() {
default
# Respect users CFLAGS
sed -e 's/-g //' -e 's/-O2 //g' -i Makefile || die
}
src_compile() {
tc-export AR CC
local myemakeargs=(
"LUA_INC=-I$($(tc-getPKG_CONFIG) --variable INSTALL_INC lua)/lua5.1"
)
use mysql && emake ${myemakeargs} MYSQL_INC="-I$(mariadb_config --libs)" mysql
use postgres && emake ${myemakeargs} PSQL_INC="-I$(pg_config --libdir)" psql
use sqlite emake ${myemakeargs} SQLITE3_INC="-I/usr/include" sqlite
}
src_install() {
local myemakeargs=(
DESTDIR="${ED}"
LUA_CDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_CMOD lua)"
LUA_LDIR="$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"
)
use mysql && emake ${myemakeargs[@]} install_mysql
use postgres && emake ${myemakeargs[@]} install_psql
use sqlite && emake ${myemakeargs[@]} install_sqlite3
}

Binary file not shown.

@ -23,6 +23,7 @@ BDEPEND="
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/pylama[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
dev-vcs/git
)
"

Binary file not shown.

@ -1,4 +1,4 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@ -66,6 +66,7 @@ src_compile() {
CC="$(tc-getCC) -c" \
CXX="$(tc-getCXX) -c" \
LD="$(tc-getLD)" \
LDOUT="${LDFLAGS} -o" \
${CONFIG_PLUGIN}
}

Binary file not shown.

@ -1 +1 @@
Tue, 13 Oct 2020 06:38:23 +0000
Tue, 13 Oct 2020 09:08:22 +0000

@ -1 +1 @@
Tue, 13 Oct 2020 06:38:23 +0000
Tue, 13 Oct 2020 09:08:22 +0000

Binary file not shown.

@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86
LICENSE=MIT
RDEPEND=>=dev-haskell/edisonapi-1.3:=[profile?] <dev-haskell/edisonapi-1.4:=[profile?] dev-haskell/mtl:=[profile?] >=dev-haskell/quickcheck-2.8.2:2=[profile?] <dev-haskell/quickcheck-3:2=[profile?] >=dev-haskell/semigroups-0.18:=[profile?] <dev-haskell/semigroups-0.19:=[profile?] >=dev-lang/ghc-7.4.1:=
SLOT=0/1.3.2.1
SRC_URI=https://hackage.haskell.org/package/EdisonCore-1.3.2.1/EdisonCore-1.3.2.1.tar.gz
SRC_URI=https://hackage.haskell.org/package/EdisonCore-1.3.2.1/EdisonCore-1.3.2.1.tar.gz https://dev.gentoo.org/~slyfox/distfiles/edisoncore-1.3.2.1-ghc-8.8.patch
_eclasses_=edos2unix 33e347e171066657f91f8b0c72ec8773 eutils 2d5b3f4b315094768576b6799e4f926e ghc-package e3a4a688accbd5f1226e46b379cc1c3e haskell-cabal 433b5153bec6b0ffe21c7be2210e8396 l10n 8cdd85e169b835d518bc2fd59f780d8e multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb wrapper 4251d4c84c25f59094fd557e0063a974
_md5_=7b06b29c3fd82b81214c2998d02f4523
_md5_=73b5f632c1a1cc6d435d52b203754afa

@ -0,0 +1,15 @@
BDEPEND=virtual/pkgconfig
DEFINED_PHASES=compile install prepare
DEPEND=>=dev-lang/lua-5.1:= mysql? ( dev-db/mysql-connector-c:0= ) postgres? ( dev-db/postgresql:= ) sqlite? ( dev-db/sqlite )
DESCRIPTION=A database interface library for Lua
EAPI=7
HOMEPAGE=https://github.com/mwild1/luadbi
IUSE=mysql postgres +sqlite
KEYWORDS=~amd64 ~arm ~arm64 ~x86
LICENSE=MIT
RDEPEND=>=dev-lang/lua-5.1:= mysql? ( dev-db/mysql-connector-c:0= ) postgres? ( dev-db/postgresql:= ) sqlite? ( dev-db/sqlite )
REQUIRED_USE=|| ( mysql postgres sqlite )
SLOT=0
SRC_URI=https://github.com/mwild1/luadbi/archive/v0.7.2.tar.gz -> luadbi-0.7.2.tar.gz
_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb
_md5_=baf139884cb5975853a38af3870e768a

@ -1,4 +1,4 @@
BDEPEND=test? ( dev-python/black[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/colorama[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/hypothesis[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pylama[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-mock[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) test? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)]
BDEPEND=test? ( dev-python/black[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/colorama[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/hypothesis[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pylama[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-python/pytest-mock[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] dev-vcs/git ) test? ( >=dev-python/pytest-4.5.0[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] ) python_targets_python3_7? ( dev-lang/python:3.7 ) python_targets_python3_8? ( dev-lang/python:3.8 ) python_targets_python3_9? ( dev-lang/python:3.9 ) >=dev-lang/python-exec-2:=[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)] >=dev-python/setuptools-42.0.2[python_targets_python3_7(-)?,python_targets_python3_8(-)?,python_targets_python3_9(-)?,-python_single_target_python3_7(-),-python_single_target_python3_8(-),-python_single_target_python3_9(-)]
DEFINED_PHASES=compile configure install prepare test
DESCRIPTION=A python utility/library to sort imports
EAPI=7
@ -12,4 +12,4 @@ RESTRICT=!test? ( test )
SLOT=0
SRC_URI=mirror://pypi/i/isort/isort-5.6.3.tar.gz
_eclasses_=distutils-r1 409cd1220f9f980d21980293a50e2a8e multibuild b2c915190b051f55a23b9354b9849847 multilib 98584e405e2b0264d37e8f728327fed1 multiprocessing cac3169468f893670dac3e7cb940e045 python-r1 8d03325e7e3cf3e1465d9c32031e2517 python-utils-r1 e41e32d357e5bdd388b5be2ce24f3883 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb
_md5_=4f08ee090f8ddc9d98e55bbfe160019b
_md5_=d9be91175bbb90424cf9806f85a37d8f

@ -10,4 +10,4 @@ RDEPEND=dev-lang/tcl:0= dev-lang/tk:0= x11-libs/libXi x11-libs/libXmu virtual/op
SLOT=0
SRC_URI=http://www.tcl3d.org/download/tcl3d-0.5.0.distrib/tcl3d-src-0.5.0.zip
_eclasses_=desktop 7fd20552ce4cc97e8acb132a499a7dd8 edos2unix 33e347e171066657f91f8b0c72ec8773 epatch ed88001f77c6dd0d5f09e45c1a5b480e estack 686eaab303305a908fd57b2fd7617800 eutils 2d5b3f4b315094768576b6799e4f926e flag-o-matic 09a8beb8e6a8e02dc1e1bd83ac353741 l10n 8cdd85e169b835d518bc2fd59f780d8e ltprune db8b7ce9d0e663594bcb4a4e72131a79 multilib 98584e405e2b0264d37e8f728327fed1 preserve-libs ef207dc62baddfddfd39a164d9797648 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb vcs-clean 2a0f74a496fa2b1552c4f3398258b7bf wrapper 4251d4c84c25f59094fd557e0063a974
_md5_=e8eacf93ec6856c5dea7f4456481fa72
_md5_=17202b0d8026414fbd0e7ac94181664f

@ -9,4 +9,4 @@ RESTRICT=bindist mirror strip
SLOT=stable
SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_86.0.4240.75-1_amd64.deb
_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4
_md5_=7f234fc06525712a546b072b4c50509f
_md5_=3259de859b5903477401255248b093eb

@ -9,4 +9,4 @@ RESTRICT=bindist mirror strip
SLOT=beta
SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_86.0.4240.75-1_amd64.deb
_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4
_md5_=fa4ad51e7a151139019e9e894db010f1
_md5_=3259de859b5903477401255248b093eb

@ -9,4 +9,4 @@ RESTRICT=bindist mirror strip
SLOT=unstable
SRC_URI=https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_87.0.4280.11-1_amd64.deb
_eclasses_=multilib 98584e405e2b0264d37e8f728327fed1 toolchain-funcs 605c126bed8d87e4378d5ff1645330cb unpacker 8ee8c1a2f31437d1766aac890d07a7f4
_md5_=fa4ad51e7a151139019e9e894db010f1
_md5_=3259de859b5903477401255248b093eb

@ -1 +1 @@
Tue, 13 Oct 2020 06:38:23 +0000
Tue, 13 Oct 2020 09:08:22 +0000

@ -1 +1 @@
Tue 13 Oct 2020 06:38:22 AM UTC
Tue 13 Oct 2020 09:08:22 AM UTC

@ -1 +1 @@
Tue, 13 Oct 2020 07:00:01 +0000
Tue, 13 Oct 2020 09:30:01 +0000

@ -1 +1 @@
8bbc138c88743356486ac68aa630305c7bc43d24 1602569177 2020-10-13T06:06:17+00:00
eb5cb74c880d460faf36db7a3204d04800b7c326 1602579684 2020-10-13T09:01:24+00:00

@ -1 +1 @@
1602570901 Tue 13 Oct 2020 06:35:01 AM UTC
1602579901 Tue 13 Oct 2020 09:05:01 AM UTC

@ -1 +1 @@
Tue, 13 Oct 2020 06:38:23 +0000
Tue, 13 Oct 2020 09:08:22 +0000

Binary file not shown.

@ -13,16 +13,19 @@ case ${PV} in
SLOT="unstable"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_alpha}-1
KEYWORDS="-* ~amd64"
;;
*_beta*)
SLOT="beta"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_beta}-1
KEYWORDS="-* ~amd64"
;;
*)
SLOT="stable"
CHROMEDIR="opt/google/chrome"
MY_PV=${PV}-1
KEYWORDS="-* amd64"
;;
esac
@ -30,7 +33,6 @@ MY_PN="google-chrome-${SLOT}"
MY_P="${MY_PN}_${MY_PV}"
SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb"
KEYWORDS="-* amd64"
LICENSE="google-chrome"
RESTRICT="bindist mirror strip"

@ -13,16 +13,19 @@ case ${PV} in
SLOT="unstable"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_alpha}-1
KEYWORDS="-* ~amd64"
;;
*_beta*)
SLOT="beta"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_beta}-1
KEYWORDS="-* ~amd64"
;;
*)
SLOT="stable"
CHROMEDIR="opt/google/chrome"
MY_PV=${PV}-1
KEYWORDS="-* amd64"
;;
esac
@ -30,7 +33,6 @@ MY_PN="google-chrome-${SLOT}"
MY_P="${MY_PN}_${MY_PV}"
SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb"
KEYWORDS="-* ~amd64"
LICENSE="google-chrome"
RESTRICT="bindist mirror strip"

@ -13,16 +13,19 @@ case ${PV} in
SLOT="unstable"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_alpha}-1
KEYWORDS="-* ~amd64"
;;
*_beta*)
SLOT="beta"
CHROMEDIR="opt/google/chrome-${SLOT}"
MY_PV=${PV%_beta}-1
KEYWORDS="-* ~amd64"
;;
*)
SLOT="stable"
CHROMEDIR="opt/google/chrome"
MY_PV=${PV}-1
KEYWORDS="-* amd64"
;;
esac
@ -30,7 +33,6 @@ MY_PN="google-chrome-${SLOT}"
MY_P="${MY_PN}_${MY_PV}"
SRC_URI="https://dl.google.com/linux/chrome/deb/pool/main/g/${MY_PN}/${MY_P}_amd64.deb"
KEYWORDS="-* ~amd64"
LICENSE="google-chrome"
RESTRICT="bindist mirror strip"

Loading…
Cancel
Save