* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-08-04 6:13 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-08-04 6:13 UTC (permalink / raw
To: gentoo-commits
commit: 21f647ecdc1612fdb8558d727d756c4bb5cfc540
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Aug 4 06:10:20 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Aug 4 06:11:59 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21f647ec
dev-vcs/got: initial import
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 1 +
dev-vcs/got/got-0_p20210217.ebuild | 56 ++++++++++++++++++++++++++++++++++++++
dev-vcs/got/metadata.xml | 26 ++++++++++++++++++
3 files changed, 83 insertions(+)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
new file mode 100644
index 000000000..3b345ce17
--- /dev/null
+++ b/dev-vcs/got/Manifest
@@ -0,0 +1 @@
+DIST got-0_p20210217.tar.gz 517647 BLAKE2B 4b4f5436c5804aa60038d737de883eb69ce4d4f0f705f7d310722222da38b917d577a09fb37b2317c1a34b1a0aa2b0fe00cf07dcbb350a901fe50dbb31ca6ede SHA512 fb3c60b5d1036d735e775e362c7349720bfeae62c1e8b830417b5edd57c86546a97113f6b10b742b1b3b6146d0a7e41906042c1008551b4d15e2bd0331c7ab2f
diff --git a/dev-vcs/got/got-0_p20210217.ebuild b/dev-vcs/got/got-0_p20210217.ebuild
new file mode 100644
index 000000000..941e6a683
--- /dev/null
+++ b/dev-vcs/got/got-0_p20210217.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_PN="${PN}-portable"
+COMMIT="36536ee0b0fb5108076d8238a4b78c59db9dac3d" # "linux" branch
+DESCRIPTION="Portable version of the Game of Trees version control system"
+HOMEPAGE="https://gameoftrees.org"
+SRC_URI="https://git.gameoftrees.org/gitweb/?p=${MY_PN}.git;a=snapshot;h=${COMMIT};sf=tgz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${COMMIT:0:7}"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+ app-crypt/libmd
+ dev-libs/openssl:=
+ sys-libs/ncurses:=
+ sys-libs/zlib:=
+ elibc_Darwin? ( sys-libs/native-uuid )
+ elibc_SunOS? ( sys-libs/libuuid )
+ !elibc_Darwin? (
+ dev-libs/libbsd
+ !elibc_SunOS? (
+ sys-apps/util-linux
+ )
+ )
+"
+RDEPEND="${DEPEND}
+ dev-vcs/git
+"
+BDEPEND="
+ virtual/pkgconfig
+ virtual/yacc
+"
+
+DOCS=( CHANGES README README.portable )
+
+src_prepare() {
+ default
+
+ # remove debugging flags (-Werror, -g, ...)
+ sed "s/\(GOT_RELEASE\)=No/\1=Yes/" -i configure.ac || die
+ sed "/AM_CFLAGS += -g/d" -i Makefile.am || die
+
+ eautoreconf
+}
+
+src_install() {
+ default
+ doman got/*.5
+}
diff --git a/dev-vcs/got/metadata.xml b/dev-vcs/got/metadata.xml
new file mode 100644
index 000000000..58f7b6133
--- /dev/null
+++ b/dev-vcs/got/metadata.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://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.
+
+ 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>
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-08-08 12:59 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-08-08 12:59 UTC (permalink / raw
To: gentoo-commits
commit: 9ce89d4622781ffe1e961fb65ef42d0e1a20d00b
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Aug 8 10:02:18 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Aug 8 10:02:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ce89d46
dev-vcs/got: fix AR
Closes: https://bugs.gentoo.org/807109
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/got-0_p20210217.ebuild | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/got-0_p20210217.ebuild b/dev-vcs/got/got-0_p20210217.ebuild
index 941e6a683..115529b51 100644
--- a/dev-vcs/got/got-0_p20210217.ebuild
+++ b/dev-vcs/got/got-0_p20210217.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-inherit autotools
+inherit autotools toolchain-funcs
MY_PN="${PN}-portable"
COMMIT="36536ee0b0fb5108076d8238a4b78c59db9dac3d" # "linux" branch
@@ -17,7 +17,6 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
- app-crypt/libmd
dev-libs/openssl:=
sys-libs/ncurses:=
sys-libs/zlib:=
@@ -26,6 +25,7 @@ DEPEND="
!elibc_Darwin? (
dev-libs/libbsd
!elibc_SunOS? (
+ app-crypt/libmd
sys-apps/util-linux
)
)
@@ -50,6 +50,10 @@ src_prepare() {
eautoreconf
}
+src_compile() {
+ emake AR=$(tc-getAR)
+}
+
src_install() {
default
doman got/*.5
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-09-23 14:19 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-09-23 14:19 UTC (permalink / raw
To: gentoo-commits
commit: 1edb9f16fd5c54f0bc5f6f7bb6278d60731beffd
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Sep 23 14:10:47 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Sep 23 14:17:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1edb9f16
dev-vcs/got: add 0.60
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 1 +
dev-vcs/got/got-0.60.ebuild | 40 ++++++++++++++++++++++++++++++++++++++++
dev-vcs/got/metadata.xml | 44 ++++++++++++++++++++++----------------------
3 files changed, 63 insertions(+), 22 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 3b345ce17..a16d3ea71 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -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
diff --git a/dev-vcs/got/got-0.60.ebuild b/dev-vcs/got/got-0.60.ebuild
new file mode 100644
index 000000000..d030d868f
--- /dev/null
+++ b/dev-vcs/got/got-0.60.ebuild
@@ -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
+}
diff --git a/dev-vcs/got/metadata.xml b/dev-vcs/got/metadata.xml
index 58f7b6133..cc7f2d574 100644
--- a/dev-vcs/got/metadata.xml
+++ b/dev-vcs/got/metadata.xml
@@ -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>
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-10-17 10:30 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-10-17 10:30 UTC (permalink / raw
To: gentoo-commits
commit: 27f426edb0017b58ba8c2fc0dffa3b2179db8ce9
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Oct 17 10:16:17 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Oct 17 10:30:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=27f426ed
dev-vcs/got: version bump to 0.61
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/got-0.61.ebuild | 39 +++++++++++++++++++++++++
dev-vcs/got/got-0_p20210217.ebuild | 60 --------------------------------------
3 files changed, 40 insertions(+), 61 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index a16d3ea71..f772a1b25 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +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
+DIST got-portable-0.61.tar.gz 672888 BLAKE2B 17a195e6717ef94c7de2ef70180a92af81fbac8a298d67db17e703045590b58bec85c276a95f3f8ad49ed47367acd9fc85afbf57d95de79adefb5f8d642b6a7c SHA512 3af662be0c6279c970bf2578bdbd6ca16118af2a5ce3aa49c0243c62051e0a7fc5fd8f78cc27e063ae639929f3b69c4efc01a7642ea76abfcd60f205b9a758a0
diff --git a/dev-vcs/got/got-0.61.ebuild b/dev-vcs/got/got-0.61.ebuild
new file mode 100644
index 000000000..a5501db1d
--- /dev/null
+++ b/dev-vcs/got/got-0.61.ebuild
@@ -0,0 +1,39 @@
+# 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="
+ 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
+}
diff --git a/dev-vcs/got/got-0_p20210217.ebuild b/dev-vcs/got/got-0_p20210217.ebuild
deleted file mode 100644
index 115529b51..000000000
--- a/dev-vcs/got/got-0_p20210217.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-MY_PN="${PN}-portable"
-COMMIT="36536ee0b0fb5108076d8238a4b78c59db9dac3d" # "linux" branch
-DESCRIPTION="Portable version of the Game of Trees version control system"
-HOMEPAGE="https://gameoftrees.org"
-SRC_URI="https://git.gameoftrees.org/gitweb/?p=${MY_PN}.git;a=snapshot;h=${COMMIT};sf=tgz -> ${P}.tar.gz"
-S="${WORKDIR}/${MY_PN}-${COMMIT:0:7}"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
- dev-libs/openssl:=
- sys-libs/ncurses:=
- sys-libs/zlib:=
- elibc_Darwin? ( sys-libs/native-uuid )
- elibc_SunOS? ( sys-libs/libuuid )
- !elibc_Darwin? (
- dev-libs/libbsd
- !elibc_SunOS? (
- app-crypt/libmd
- sys-apps/util-linux
- )
- )
-"
-RDEPEND="${DEPEND}
- dev-vcs/git
-"
-BDEPEND="
- virtual/pkgconfig
- virtual/yacc
-"
-
-DOCS=( CHANGES README README.portable )
-
-src_prepare() {
- default
-
- # remove debugging flags (-Werror, -g, ...)
- sed "s/\(GOT_RELEASE\)=No/\1=Yes/" -i configure.ac || die
- sed "/AM_CFLAGS += -g/d" -i Makefile.am || die
-
- eautoreconf
-}
-
-src_compile() {
- emake AR=$(tc-getAR)
-}
-
-src_install() {
- default
- doman got/*.5
-}
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-10-17 16:34 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-10-17 16:34 UTC (permalink / raw
To: gentoo-commits
commit: f15710a27c50acd6e0b7993d4a798240f799a35d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Oct 17 16:32:18 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Oct 17 16:32:18 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f15710a2
dev-vcs/got: add 0.62
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 1 +
dev-vcs/got/got-0.62.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index f772a1b25..a9569f164 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,3 @@
DIST got-portable-0.60.tar.gz 664189 BLAKE2B 2ea2c7680de2fde60d4c862ebb836c9809b686396d8ed9c250b14c5d874f393a30f97281fa601fd1e4a7a19c66d8c71f478fda7fea21f11017dbc2bea593900b SHA512 9139c4187914d3ac93880a1b242e14a4d93e3982251dd6eb346911e76f51cc7f0041b45af712633a1099b727580870572c8f590432e7f51abe3c682cba47b524
DIST got-portable-0.61.tar.gz 672888 BLAKE2B 17a195e6717ef94c7de2ef70180a92af81fbac8a298d67db17e703045590b58bec85c276a95f3f8ad49ed47367acd9fc85afbf57d95de79adefb5f8d642b6a7c SHA512 3af662be0c6279c970bf2578bdbd6ca16118af2a5ce3aa49c0243c62051e0a7fc5fd8f78cc27e063ae639929f3b69c4efc01a7642ea76abfcd60f205b9a758a0
+DIST got-portable-0.62.tar.gz 682360 BLAKE2B 3810aea7c909863a4acb519ecbd6898ac1bf29015e8afd6e7590fae667113fff6357d64f4e806870cf4a7d202415c97f14355b82784a2b9359147f5fb225d06c SHA512 e6776177705601950cd9d6472ae60110cf2a8ff8e3ae551a386d78a43743087239cdab8c33c3fb2255ba297d6b6f1da39748e2e2f5741d672c25b7ce3ce7caa1
diff --git a/dev-vcs/got/got-0.62.ebuild b/dev-vcs/got/got-0.62.ebuild
new file mode 100644
index 000000000..a5501db1d
--- /dev/null
+++ b/dev-vcs/got/got-0.62.ebuild
@@ -0,0 +1,39 @@
+# 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="
+ 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
+}
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2021-11-25 7:16 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2021-11-25 7:16 UTC (permalink / raw
To: gentoo-commits
commit: 8dc5d6e741db65df22ad586f7569ef06b4c572c5
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Nov 24 08:44:00 2021 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Nov 24 08:44:00 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8dc5d6e7
dev-vcs/got: add 0.64, drop 0.60 and 0.61
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 3 +-
dev-vcs/got/got-0.60.ebuild | 40 ------------------------
dev-vcs/got/{got-0.61.ebuild => got-0.64.ebuild} | 0
3 files changed, 1 insertion(+), 42 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index a9569f164..2e3cae26a 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,3 +1,2 @@
-DIST got-portable-0.60.tar.gz 664189 BLAKE2B 2ea2c7680de2fde60d4c862ebb836c9809b686396d8ed9c250b14c5d874f393a30f97281fa601fd1e4a7a19c66d8c71f478fda7fea21f11017dbc2bea593900b SHA512 9139c4187914d3ac93880a1b242e14a4d93e3982251dd6eb346911e76f51cc7f0041b45af712633a1099b727580870572c8f590432e7f51abe3c682cba47b524
-DIST got-portable-0.61.tar.gz 672888 BLAKE2B 17a195e6717ef94c7de2ef70180a92af81fbac8a298d67db17e703045590b58bec85c276a95f3f8ad49ed47367acd9fc85afbf57d95de79adefb5f8d642b6a7c SHA512 3af662be0c6279c970bf2578bdbd6ca16118af2a5ce3aa49c0243c62051e0a7fc5fd8f78cc27e063ae639929f3b69c4efc01a7642ea76abfcd60f205b9a758a0
DIST got-portable-0.62.tar.gz 682360 BLAKE2B 3810aea7c909863a4acb519ecbd6898ac1bf29015e8afd6e7590fae667113fff6357d64f4e806870cf4a7d202415c97f14355b82784a2b9359147f5fb225d06c SHA512 e6776177705601950cd9d6472ae60110cf2a8ff8e3ae551a386d78a43743087239cdab8c33c3fb2255ba297d6b6f1da39748e2e2f5741d672c25b7ce3ce7caa1
+DIST got-portable-0.64.tar.gz 685348 BLAKE2B 4ddd83a857511c18c9377ceccfeb6a308498b2fb3e7eb379ddc57800f3939d358512f08e33bf02b1dc43c5b511ad263c928545a4b9971ef6020ffdd5578dcb19 SHA512 0fb3ae356aaeea62d9e7b85088f7b33a9cc8c875bba521c9b1652919ac1f7d359041ef8ae0ed307637a7b205487e9c83e0c251dede8f2c3e2be64e3a212c82d9
diff --git a/dev-vcs/got/got-0.60.ebuild b/dev-vcs/got/got-0.60.ebuild
deleted file mode 100644
index d030d868f..000000000
--- a/dev-vcs/got/got-0.60.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# 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
-}
diff --git a/dev-vcs/got/got-0.61.ebuild b/dev-vcs/got/got-0.64.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.61.ebuild
rename to dev-vcs/got/got-0.64.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-01-07 15:18 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-01-07 15:18 UTC (permalink / raw
To: gentoo-commits
commit: 03a1b7d158de23e6c6877a646bd3272fe3714096
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Jan 7 15:17:29 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Jan 7 15:18:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03a1b7d1
dev-vcs/got: add 0.65, drop 0.62
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.62.ebuild => got-0.65.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 2e3cae26a..8a3f29303 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.62.tar.gz 682360 BLAKE2B 3810aea7c909863a4acb519ecbd6898ac1bf29015e8afd6e7590fae667113fff6357d64f4e806870cf4a7d202415c97f14355b82784a2b9359147f5fb225d06c SHA512 e6776177705601950cd9d6472ae60110cf2a8ff8e3ae551a386d78a43743087239cdab8c33c3fb2255ba297d6b6f1da39748e2e2f5741d672c25b7ce3ce7caa1
DIST got-portable-0.64.tar.gz 685348 BLAKE2B 4ddd83a857511c18c9377ceccfeb6a308498b2fb3e7eb379ddc57800f3939d358512f08e33bf02b1dc43c5b511ad263c928545a4b9971ef6020ffdd5578dcb19 SHA512 0fb3ae356aaeea62d9e7b85088f7b33a9cc8c875bba521c9b1652919ac1f7d359041ef8ae0ed307637a7b205487e9c83e0c251dede8f2c3e2be64e3a212c82d9
+DIST got-portable-0.65.tar.gz 688234 BLAKE2B 5868109ae04d018c93ed7d9bd0e30050c48f20663eac27812d75e141786f20f67c52d6850af9f119d9404bb45d04a372c106aa234609c24045e8d6c928f0d0b4 SHA512 82f96e7d0ec8a772ca528a5730a627636709fcebeabfa5be9915ed8a38fe04ef6ca55645edeb58654ee327a0e5de807e2c1279c898ea33159b4a869523612027
diff --git a/dev-vcs/got/got-0.62.ebuild b/dev-vcs/got/got-0.65.ebuild
similarity index 95%
rename from dev-vcs/got/got-0.62.ebuild
rename to dev-vcs/got/got-0.65.ebuild
index a5501db1d..58d9ba5ea 100644
--- a/dev-vcs/got/got-0.62.ebuild
+++ b/dev-vcs/got/got-0.65.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-01-16 17:58 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-01-16 17:58 UTC (permalink / raw
To: gentoo-commits
commit: 13876c4a6c054d1bda305f0d92428d21500f5774
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Jan 16 17:40:11 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Jan 16 17:52:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=13876c4a
dev-vcs/got: add 0.66, drop 0.64
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.64.ebuild => got-0.66.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 8a3f29303..6e0a02ca0 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.64.tar.gz 685348 BLAKE2B 4ddd83a857511c18c9377ceccfeb6a308498b2fb3e7eb379ddc57800f3939d358512f08e33bf02b1dc43c5b511ad263c928545a4b9971ef6020ffdd5578dcb19 SHA512 0fb3ae356aaeea62d9e7b85088f7b33a9cc8c875bba521c9b1652919ac1f7d359041ef8ae0ed307637a7b205487e9c83e0c251dede8f2c3e2be64e3a212c82d9
DIST got-portable-0.65.tar.gz 688234 BLAKE2B 5868109ae04d018c93ed7d9bd0e30050c48f20663eac27812d75e141786f20f67c52d6850af9f119d9404bb45d04a372c106aa234609c24045e8d6c928f0d0b4 SHA512 82f96e7d0ec8a772ca528a5730a627636709fcebeabfa5be9915ed8a38fe04ef6ca55645edeb58654ee327a0e5de807e2c1279c898ea33159b4a869523612027
+DIST got-portable-0.66.tar.gz 690456 BLAKE2B a3a753df2ed2d48c483d49de340ada76643a64587bd5ee102247006bb86b16eccfd526646e8d0e49018abb493610e09c77b085b261ff95015c17f5dcdea75f1b SHA512 801c39276e806114ebecb5c386ef68cdbd8083fa3a2e7cd3fcf10dbea118a19a1545b80909c94c988bf803c829dae039625addd51f08f53fe1cb7cccbce0ba17
diff --git a/dev-vcs/got/got-0.64.ebuild b/dev-vcs/got/got-0.66.ebuild
similarity index 95%
rename from dev-vcs/got/got-0.64.ebuild
rename to dev-vcs/got/got-0.66.ebuild
index a5501db1d..58d9ba5ea 100644
--- a/dev-vcs/got/got-0.64.ebuild
+++ b/dev-vcs/got/got-0.66.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-02-23 13:44 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-02-23 13:44 UTC (permalink / raw
To: gentoo-commits
commit: f14e55b8cfba241a6e26c1492c18222c882b2055
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Feb 23 13:39:26 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Feb 23 13:42:32 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f14e55b8
dev-vcs/got: add 0.67, drop 0.65
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.65.ebuild => got-0.67.ebuild} | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 6e0a02ca0..e4ddb96a3 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.65.tar.gz 688234 BLAKE2B 5868109ae04d018c93ed7d9bd0e30050c48f20663eac27812d75e141786f20f67c52d6850af9f119d9404bb45d04a372c106aa234609c24045e8d6c928f0d0b4 SHA512 82f96e7d0ec8a772ca528a5730a627636709fcebeabfa5be9915ed8a38fe04ef6ca55645edeb58654ee327a0e5de807e2c1279c898ea33159b4a869523612027
DIST got-portable-0.66.tar.gz 690456 BLAKE2B a3a753df2ed2d48c483d49de340ada76643a64587bd5ee102247006bb86b16eccfd526646e8d0e49018abb493610e09c77b085b261ff95015c17f5dcdea75f1b SHA512 801c39276e806114ebecb5c386ef68cdbd8083fa3a2e7cd3fcf10dbea118a19a1545b80909c94c988bf803c829dae039625addd51f08f53fe1cb7cccbce0ba17
+DIST got-portable-0.67.tar.gz 697480 BLAKE2B 2cf5a882cdefc48082368813893647877ae62a660d5dc4c884273e2458f1a1c82c91f4a2df8313547fe2d1e9861ecaad52e9378e50f3d3af4bfac13adeda5cca SHA512 468e6d570fe74cad1a15e719cf7fe217d622c38e77dc1cf115cdee7fb872960b619a2013733b34810a6726e48b6763b27e0723e4099dfaa882b93bd87f8b30c5
diff --git a/dev-vcs/got/got-0.65.ebuild b/dev-vcs/got/got-0.67.ebuild
similarity index 94%
rename from dev-vcs/got/got-0.65.ebuild
rename to dev-vcs/got/got-0.67.ebuild
index 58d9ba5ea..941cda53a 100644
--- a/dev-vcs/got/got-0.65.ebuild
+++ b/dev-vcs/got/got-0.67.ebuild
@@ -29,6 +29,7 @@ DEPEND="
BDEPEND="
virtual/pkgconfig
virtual/yacc
+ kernel_linux? ( sys-kernel/linux-headers )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-03-31 7:24 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-03-31 7:24 UTC (permalink / raw
To: gentoo-commits
commit: d852e92afaf4704cd8d1b76bb3cac6b8f446faa8
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Mar 31 02:04:37 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Mar 31 02:04:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d852e92a
dev-vcs/got: add 0.68.1, drop 0.66
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.66.ebuild => got-0.68.1.ebuild} | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index e4ddb96a3..4ca953cfd 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.66.tar.gz 690456 BLAKE2B a3a753df2ed2d48c483d49de340ada76643a64587bd5ee102247006bb86b16eccfd526646e8d0e49018abb493610e09c77b085b261ff95015c17f5dcdea75f1b SHA512 801c39276e806114ebecb5c386ef68cdbd8083fa3a2e7cd3fcf10dbea118a19a1545b80909c94c988bf803c829dae039625addd51f08f53fe1cb7cccbce0ba17
DIST got-portable-0.67.tar.gz 697480 BLAKE2B 2cf5a882cdefc48082368813893647877ae62a660d5dc4c884273e2458f1a1c82c91f4a2df8313547fe2d1e9861ecaad52e9378e50f3d3af4bfac13adeda5cca SHA512 468e6d570fe74cad1a15e719cf7fe217d622c38e77dc1cf115cdee7fb872960b619a2013733b34810a6726e48b6763b27e0723e4099dfaa882b93bd87f8b30c5
+DIST got-portable-0.68.1.tar.gz 699014 BLAKE2B 2dba0b1d7a4a715b3604676874a563338ecd189ce9c9a9a55b6e243c34302237ce192a3930e1be29cd6f968517816fc5703d352c4e50494d327149f63fdfa4e7 SHA512 6a7a66dc95d8b8e94de67f091b7871ba1b1a2c55c640a8b12a2f6cde376c8a7f6a8c8967d6b50fb8fab76bd324fad896145bdfee954936b21685f3a5e66184da
diff --git a/dev-vcs/got/got-0.66.ebuild b/dev-vcs/got/got-0.68.1.ebuild
similarity index 90%
rename from dev-vcs/got/got-0.66.ebuild
rename to dev-vcs/got/got-0.68.1.ebuild
index 58d9ba5ea..f8642b4cf 100644
--- a/dev-vcs/got/got-0.66.ebuild
+++ b/dev-vcs/got/got-0.68.1.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
DEPEND="
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
- elibc_Darwin? ( sys-libs/native-uuid )
+ elibc_Darwin? ( dev-libs/ossp-uuid )
elibc_SunOS? ( sys-libs/libuuid )
!elibc_Darwin? ( dev-libs/libbsd )
!elibc_Darwin? ( !elibc_SunOS? (
@@ -29,6 +29,7 @@ DEPEND="
BDEPEND="
virtual/pkgconfig
virtual/yacc
+ kernel_linux? ( sys-kernel/linux-headers )
"
RDEPEND="${DEPEND}"
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-05-30 19:26 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-05-30 19:26 UTC (permalink / raw
To: gentoo-commits
commit: faa3a16e5ede4bf9b894d7f99507c7f5044c3b18
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon May 30 19:14:06 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon May 30 19:25:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=faa3a16e
dev-vcs/got: add 0.70, drop 0.67
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.67.ebuild => got-0.70.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 4ca953cfd..46507c7ea 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.67.tar.gz 697480 BLAKE2B 2cf5a882cdefc48082368813893647877ae62a660d5dc4c884273e2458f1a1c82c91f4a2df8313547fe2d1e9861ecaad52e9378e50f3d3af4bfac13adeda5cca SHA512 468e6d570fe74cad1a15e719cf7fe217d622c38e77dc1cf115cdee7fb872960b619a2013733b34810a6726e48b6763b27e0723e4099dfaa882b93bd87f8b30c5
DIST got-portable-0.68.1.tar.gz 699014 BLAKE2B 2dba0b1d7a4a715b3604676874a563338ecd189ce9c9a9a55b6e243c34302237ce192a3930e1be29cd6f968517816fc5703d352c4e50494d327149f63fdfa4e7 SHA512 6a7a66dc95d8b8e94de67f091b7871ba1b1a2c55c640a8b12a2f6cde376c8a7f6a8c8967d6b50fb8fab76bd324fad896145bdfee954936b21685f3a5e66184da
+DIST got-portable-0.70.tar.gz 726825 BLAKE2B 63bc71246635fbbc00abd050e2f0f137664fa69cf43def964bc0073732cf89a48182d3bde747f7ec6c77e93f6c5e9b7820d22ba2130f7d4b4857c1f36f20ed8e SHA512 3f4b83964cf26dae717af653213bd698900b604d901bbcc1b382d73a7e6e3601eab233729d0be738cb624a970d2805256fbece5d7669ffb8f7be40fe3eabf8a1
diff --git a/dev-vcs/got/got-0.67.ebuild b/dev-vcs/got/got-0.70.ebuild
similarity index 95%
rename from dev-vcs/got/got-0.67.ebuild
rename to dev-vcs/got/got-0.70.ebuild
index 941cda53a..f8642b4cf 100644
--- a/dev-vcs/got/got-0.67.ebuild
+++ b/dev-vcs/got/got-0.70.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
DEPEND="
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
- elibc_Darwin? ( sys-libs/native-uuid )
+ elibc_Darwin? ( dev-libs/ossp-uuid )
elibc_SunOS? ( sys-libs/libuuid )
!elibc_Darwin? ( dev-libs/libbsd )
!elibc_Darwin? ( !elibc_SunOS? (
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-06-25 21:29 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-06-25 21:29 UTC (permalink / raw
To: gentoo-commits
commit: 2f2ca6868a3304f9d0e00bce08b55d4c81e6c981
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Jun 25 21:15:00 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Jun 25 21:15:00 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2f2ca686
dev-vcs/got: add 0.71, drop 0.68.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.68.1.ebuild => got-0.71.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 46507c7ea..17d3b1e2e 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.68.1.tar.gz 699014 BLAKE2B 2dba0b1d7a4a715b3604676874a563338ecd189ce9c9a9a55b6e243c34302237ce192a3930e1be29cd6f968517816fc5703d352c4e50494d327149f63fdfa4e7 SHA512 6a7a66dc95d8b8e94de67f091b7871ba1b1a2c55c640a8b12a2f6cde376c8a7f6a8c8967d6b50fb8fab76bd324fad896145bdfee954936b21685f3a5e66184da
DIST got-portable-0.70.tar.gz 726825 BLAKE2B 63bc71246635fbbc00abd050e2f0f137664fa69cf43def964bc0073732cf89a48182d3bde747f7ec6c77e93f6c5e9b7820d22ba2130f7d4b4857c1f36f20ed8e SHA512 3f4b83964cf26dae717af653213bd698900b604d901bbcc1b382d73a7e6e3601eab233729d0be738cb624a970d2805256fbece5d7669ffb8f7be40fe3eabf8a1
+DIST got-portable-0.71.tar.gz 736740 BLAKE2B f9788490881ae2b32b72139358f8bdd965b6c6c80009385db969d0305b3b5649feb4469048f247fbab1a7dcca1dd557165977af2a302ab31641e19328d1d8e2b SHA512 c48932b981ac6cc784fcc6e64b7d4a492840db43c6f0aec355474400ad3df0ea34620c0d4cf543b3583abb6f3908b6381752a235306b34cf81b00749ae19ada4
diff --git a/dev-vcs/got/got-0.68.1.ebuild b/dev-vcs/got/got-0.71.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.68.1.ebuild
rename to dev-vcs/got/got-0.71.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-07-07 2:57 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-07-07 2:57 UTC (permalink / raw
To: gentoo-commits
commit: d73db565feba64955209682fe672dfb51389a7cb
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jul 7 02:56:33 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Jul 7 02:56:52 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d73db565
dev-vcs/got: add 0.73, drop 0.70
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.70.ebuild => got-0.73.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 17d3b1e2e..724f53d97 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.70.tar.gz 726825 BLAKE2B 63bc71246635fbbc00abd050e2f0f137664fa69cf43def964bc0073732cf89a48182d3bde747f7ec6c77e93f6c5e9b7820d22ba2130f7d4b4857c1f36f20ed8e SHA512 3f4b83964cf26dae717af653213bd698900b604d901bbcc1b382d73a7e6e3601eab233729d0be738cb624a970d2805256fbece5d7669ffb8f7be40fe3eabf8a1
DIST got-portable-0.71.tar.gz 736740 BLAKE2B f9788490881ae2b32b72139358f8bdd965b6c6c80009385db969d0305b3b5649feb4469048f247fbab1a7dcca1dd557165977af2a302ab31641e19328d1d8e2b SHA512 c48932b981ac6cc784fcc6e64b7d4a492840db43c6f0aec355474400ad3df0ea34620c0d4cf543b3583abb6f3908b6381752a235306b34cf81b00749ae19ada4
+DIST got-portable-0.73.tar.gz 753204 BLAKE2B 577d4439002adf457a683509f77120f294bbfd75af38c8bee9aaefc9be7538c572956a3c00e7b1bff97f9908107e2f0edbf1d38dff9443dde24c7380d528ac25 SHA512 5cc4dde718910d5b44e238759673ede1b8f6630f801321ced0df0a4b8ff38afca1e77adb8c667f4c74f3e3c8949e460c089951380b54fd231e5b0c7aec03f36e
diff --git a/dev-vcs/got/got-0.70.ebuild b/dev-vcs/got/got-0.73.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.70.ebuild
rename to dev-vcs/got/got-0.73.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-08-04 13:10 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-08-04 13:10 UTC (permalink / raw
To: gentoo-commits
commit: 5075d38026ac756b8fc833279a933bf74035aeec
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Aug 4 13:09:42 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Aug 4 13:09:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5075d380
dev-vcs/got: add 0.74, drop 0.71
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.71.ebuild => got-0.74.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 724f53d97..f08457d28 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.71.tar.gz 736740 BLAKE2B f9788490881ae2b32b72139358f8bdd965b6c6c80009385db969d0305b3b5649feb4469048f247fbab1a7dcca1dd557165977af2a302ab31641e19328d1d8e2b SHA512 c48932b981ac6cc784fcc6e64b7d4a492840db43c6f0aec355474400ad3df0ea34620c0d4cf543b3583abb6f3908b6381752a235306b34cf81b00749ae19ada4
DIST got-portable-0.73.tar.gz 753204 BLAKE2B 577d4439002adf457a683509f77120f294bbfd75af38c8bee9aaefc9be7538c572956a3c00e7b1bff97f9908107e2f0edbf1d38dff9443dde24c7380d528ac25 SHA512 5cc4dde718910d5b44e238759673ede1b8f6630f801321ced0df0a4b8ff38afca1e77adb8c667f4c74f3e3c8949e460c089951380b54fd231e5b0c7aec03f36e
+DIST got-portable-0.74.tar.gz 756603 BLAKE2B 1ed8df3d792b125ad2c55618373f2d0456f86ccacb7c83446cab8a6c3f2ae30774e065d31e9bddb4ad0b9c5b0d65b0430be80b8c510d3132817bc0d95180f0ba SHA512 eb513783953871c6e76075ed15486ac91538248479844b6feec6c9282e520a6e1a052d39d379dd1ec8a760730e1110f997dc48be06e31c644054f3a6e873f9b8
diff --git a/dev-vcs/got/got-0.71.ebuild b/dev-vcs/got/got-0.74.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.71.ebuild
rename to dev-vcs/got/got-0.74.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-10-08 14:58 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-10-08 14:58 UTC (permalink / raw
To: gentoo-commits
commit: be66791d542b8f85468300bf823cfe1f283dcb06
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Oct 7 11:17:38 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Oct 8 14:58:21 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be66791d
dev-vcs/got: add 0.76, drop 0.73
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.73.ebuild => got-0.76.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index f08457d28..5f1c14916 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.73.tar.gz 753204 BLAKE2B 577d4439002adf457a683509f77120f294bbfd75af38c8bee9aaefc9be7538c572956a3c00e7b1bff97f9908107e2f0edbf1d38dff9443dde24c7380d528ac25 SHA512 5cc4dde718910d5b44e238759673ede1b8f6630f801321ced0df0a4b8ff38afca1e77adb8c667f4c74f3e3c8949e460c089951380b54fd231e5b0c7aec03f36e
DIST got-portable-0.74.tar.gz 756603 BLAKE2B 1ed8df3d792b125ad2c55618373f2d0456f86ccacb7c83446cab8a6c3f2ae30774e065d31e9bddb4ad0b9c5b0d65b0430be80b8c510d3132817bc0d95180f0ba SHA512 eb513783953871c6e76075ed15486ac91538248479844b6feec6c9282e520a6e1a052d39d379dd1ec8a760730e1110f997dc48be06e31c644054f3a6e873f9b8
+DIST got-portable-0.76.tar.gz 842394 BLAKE2B a2fa8ee75c7934f4b2dd901c95c54e7ba4c4ec36007fcd4912b7ae78cec83cc1baa0e9553ec13cd7e0aaaf884291d9087c544da7c7cb071c7bf90bdee4c7287f SHA512 c51bc6a6d537c12f9437e3dab44779157a56aea6dea4a3ad222c53406f3ea5f2215d9a1ccd75496fcf60fb3b69e50572e89b82024f1195b8a57993e92bbc068f
diff --git a/dev-vcs/got/got-0.73.ebuild b/dev-vcs/got/got-0.76.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.73.ebuild
rename to dev-vcs/got/got-0.76.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-10-30 8:38 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-10-30 8:38 UTC (permalink / raw
To: gentoo-commits
commit: 745ff57525a4e43fb8aa1192835db380f3d02ec8
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sun Oct 30 08:36:33 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sun Oct 30 08:38:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=745ff575
dev-vcs/got: add 0.77, drop 0.74
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.74.ebuild => got-0.77.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 5f1c14916..a48601857 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.74.tar.gz 756603 BLAKE2B 1ed8df3d792b125ad2c55618373f2d0456f86ccacb7c83446cab8a6c3f2ae30774e065d31e9bddb4ad0b9c5b0d65b0430be80b8c510d3132817bc0d95180f0ba SHA512 eb513783953871c6e76075ed15486ac91538248479844b6feec6c9282e520a6e1a052d39d379dd1ec8a760730e1110f997dc48be06e31c644054f3a6e873f9b8
DIST got-portable-0.76.tar.gz 842394 BLAKE2B a2fa8ee75c7934f4b2dd901c95c54e7ba4c4ec36007fcd4912b7ae78cec83cc1baa0e9553ec13cd7e0aaaf884291d9087c544da7c7cb071c7bf90bdee4c7287f SHA512 c51bc6a6d537c12f9437e3dab44779157a56aea6dea4a3ad222c53406f3ea5f2215d9a1ccd75496fcf60fb3b69e50572e89b82024f1195b8a57993e92bbc068f
+DIST got-portable-0.77.tar.gz 860031 BLAKE2B 51bcac0d7393a5620d542c23db0a25db6ebcc4ea32faa18f08d59b6567721a4611ee7dbc0fd7b718810ba5e694b91209f7e645c54328255364caff224efc2841 SHA512 7135d63077457abf8320924ba1ec3586f4ae9d32fce2fe9493325765934f2d8c023ea399ba875c8f27d3e95437d1940bc60b4df8669060c3171cbc4df8103ce8
diff --git a/dev-vcs/got/got-0.74.ebuild b/dev-vcs/got/got-0.77.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.74.ebuild
rename to dev-vcs/got/got-0.77.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-11-03 3:09 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-11-03 3:09 UTC (permalink / raw
To: gentoo-commits
commit: 84dce05a355e98a0d500d2f0b4d86ce8665d0545
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Nov 2 15:44:20 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 3 01:12:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=84dce05a
dev-vcs/got: add missing dep
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
.../got/{got-0.77.ebuild => got-0.77-r1.ebuild} | 25 +++++++++++++---------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/dev-vcs/got/got-0.77.ebuild b/dev-vcs/got/got-0.77-r1.ebuild
similarity index 71%
rename from dev-vcs/got/got-0.77.ebuild
rename to dev-vcs/got/got-0.77-r1.ebuild
index f8642b4cf..f7846ca77 100644
--- a/dev-vcs/got/got-0.77.ebuild
+++ b/dev-vcs/got/got-0.77-r1.ebuild
@@ -3,8 +3,6 @@
EAPI=8
-inherit toolchain-funcs
-
MY_PN="${PN}-portable"
DESCRIPTION="Portable version of the Game of Trees version control system"
HOMEPAGE="https://gameoftrees.org"
@@ -16,15 +14,22 @@ SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
+ dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
- elibc_Darwin? ( dev-libs/ossp-uuid )
- elibc_SunOS? ( sys-libs/libuuid )
- !elibc_Darwin? ( dev-libs/libbsd )
- !elibc_Darwin? ( !elibc_SunOS? (
- app-crypt/libmd
- sys-apps/util-linux
- ) )
+ elibc_Darwin? (
+ dev-libs/ossp-uuid
+ )
+ elibc_SunOS? (
+ sys-libs/libuuid
+ )
+ !elibc_Darwin? (
+ dev-libs/libbsd
+ !elibc_SunOS? (
+ app-crypt/libmd
+ sys-apps/util-linux
+ )
+ )
"
BDEPEND="
virtual/pkgconfig
@@ -36,5 +41,5 @@ RDEPEND="${DEPEND}"
DOCS=( CHANGELOG CHANGES README TODO )
src_compile() {
- emake AR=$(tc-getAR) GOT_RELEASE=Yes
+ emake GOT_RELEASE=Yes
}
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-11-04 15:24 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-11-04 15:24 UTC (permalink / raw
To: gentoo-commits
commit: 901c0f69430176e7886747c8f2d367181bf7574f
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Nov 4 15:23:50 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Nov 4 15:23:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=901c0f69
dev-vcs/got: add 0.78, drop 0.76
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.76.ebuild => got-0.78.ebuild} | 40 +++++++++++++-----------
2 files changed, 22 insertions(+), 20 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index a48601857..02fadc7b8 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.76.tar.gz 842394 BLAKE2B a2fa8ee75c7934f4b2dd901c95c54e7ba4c4ec36007fcd4912b7ae78cec83cc1baa0e9553ec13cd7e0aaaf884291d9087c544da7c7cb071c7bf90bdee4c7287f SHA512 c51bc6a6d537c12f9437e3dab44779157a56aea6dea4a3ad222c53406f3ea5f2215d9a1ccd75496fcf60fb3b69e50572e89b82024f1195b8a57993e92bbc068f
DIST got-portable-0.77.tar.gz 860031 BLAKE2B 51bcac0d7393a5620d542c23db0a25db6ebcc4ea32faa18f08d59b6567721a4611ee7dbc0fd7b718810ba5e694b91209f7e645c54328255364caff224efc2841 SHA512 7135d63077457abf8320924ba1ec3586f4ae9d32fce2fe9493325765934f2d8c023ea399ba875c8f27d3e95437d1940bc60b4df8669060c3171cbc4df8103ce8
+DIST got-portable-0.78.tar.gz 880783 BLAKE2B 363c19bba0b4fa29a80bc9fcd26cd69370b44894d905f3ccafc201ffcdf6d7e43b1dac74d004cb1b4ad7af07a751d3ac33160fed23fb4e7f57ec163589ae1ad1 SHA512 597d0c65ea2ed01e211a17e3ff11d5fa3792bda53cb60fd54124ef8bc2f6153102ad6eb6e8bf6686bc9abef4dace8997e35938b570429dc0077ca259ab57bef0
diff --git a/dev-vcs/got/got-0.76.ebuild b/dev-vcs/got/got-0.78.ebuild
similarity index 51%
rename from dev-vcs/got/got-0.76.ebuild
rename to dev-vcs/got/got-0.78.ebuild
index f8642b4cf..8224981b6 100644
--- a/dev-vcs/got/got-0.76.ebuild
+++ b/dev-vcs/got/got-0.78.ebuild
@@ -3,38 +3,40 @@
EAPI=8
-inherit toolchain-funcs
-
-MY_PN="${PN}-portable"
+MY_P="${PN}-portable-${PV}"
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}"
+SRC_URI="https://gameoftrees.org/releases/portable/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-DEPEND="
+RDEPEND="
+ dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
- elibc_Darwin? ( dev-libs/ossp-uuid )
- elibc_SunOS? ( sys-libs/libuuid )
- !elibc_Darwin? ( dev-libs/libbsd )
- !elibc_Darwin? ( !elibc_SunOS? (
- app-crypt/libmd
- sys-apps/util-linux
- ) )
+ elibc_Darwin? (
+ dev-libs/ossp-uuid
+ )
+ elibc_SunOS? (
+ sys-libs/libuuid
+ )
+ !elibc_Darwin? (
+ dev-libs/libbsd
+ !elibc_SunOS? (
+ app-crypt/libmd
+ sys-apps/util-linux
+ )
+ )
+"
+DEPEND="${RDEPEND}
+ kernel_linux? ( sys-kernel/linux-headers )
"
BDEPEND="
virtual/pkgconfig
virtual/yacc
- kernel_linux? ( sys-kernel/linux-headers )
"
-RDEPEND="${DEPEND}"
DOCS=( CHANGELOG CHANGES README TODO )
-
-src_compile() {
- emake AR=$(tc-getAR) GOT_RELEASE=Yes
-}
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2022-11-10 18:17 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2022-11-10 18:17 UTC (permalink / raw
To: gentoo-commits
commit: c54143c9dbc06cad3104fa4e628d173f314255c7
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Nov 10 14:45:09 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Nov 10 14:46:44 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c54143c9
dev-vcs/got: add 0.79, drop 0.77-r1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.77-r1.ebuild => got-0.79.ebuild} | 17 +++++++----------
2 files changed, 8 insertions(+), 11 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 02fadc7b8..b4e81f2ec 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.77.tar.gz 860031 BLAKE2B 51bcac0d7393a5620d542c23db0a25db6ebcc4ea32faa18f08d59b6567721a4611ee7dbc0fd7b718810ba5e694b91209f7e645c54328255364caff224efc2841 SHA512 7135d63077457abf8320924ba1ec3586f4ae9d32fce2fe9493325765934f2d8c023ea399ba875c8f27d3e95437d1940bc60b4df8669060c3171cbc4df8103ce8
DIST got-portable-0.78.tar.gz 880783 BLAKE2B 363c19bba0b4fa29a80bc9fcd26cd69370b44894d905f3ccafc201ffcdf6d7e43b1dac74d004cb1b4ad7af07a751d3ac33160fed23fb4e7f57ec163589ae1ad1 SHA512 597d0c65ea2ed01e211a17e3ff11d5fa3792bda53cb60fd54124ef8bc2f6153102ad6eb6e8bf6686bc9abef4dace8997e35938b570429dc0077ca259ab57bef0
+DIST got-portable-0.79.tar.gz 869926 BLAKE2B 272044ae77912e402d71e93699ffda0222f8fdb3bb0d1ce88d7e35e1027c0ea5ef7381b6ce924e96da7785ed1b8afaf29fcb838a7258a17911fb53d3bbfcd26f SHA512 842281a1f4de05efc8f6af94a6b05f6d9b84cb399a5088f00a243bc52b3b52e634495762fc49d8fd733afe9299e027451de8a6c797e743cf4e1085ebd394cce1
diff --git a/dev-vcs/got/got-0.77-r1.ebuild b/dev-vcs/got/got-0.79.ebuild
similarity index 76%
rename from dev-vcs/got/got-0.77-r1.ebuild
rename to dev-vcs/got/got-0.79.ebuild
index f7846ca77..8224981b6 100644
--- a/dev-vcs/got/got-0.77-r1.ebuild
+++ b/dev-vcs/got/got-0.79.ebuild
@@ -3,17 +3,17 @@
EAPI=8
-MY_PN="${PN}-portable"
+MY_P="${PN}-portable-${PV}"
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}"
+SRC_URI="https://gameoftrees.org/releases/portable/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-DEPEND="
+RDEPEND="
dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
sys-libs/zlib:=
@@ -31,15 +31,12 @@ DEPEND="
)
)
"
+DEPEND="${RDEPEND}
+ kernel_linux? ( sys-kernel/linux-headers )
+"
BDEPEND="
virtual/pkgconfig
virtual/yacc
- kernel_linux? ( sys-kernel/linux-headers )
"
-RDEPEND="${DEPEND}"
DOCS=( CHANGELOG CHANGES README TODO )
-
-src_compile() {
- emake GOT_RELEASE=Yes
-}
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-01-26 20:53 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-01-26 20:53 UTC (permalink / raw
To: gentoo-commits
commit: 3db791a9bbea3cb5cbd85638522e0cf2bdab7e81
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Jan 25 15:30:37 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Jan 26 20:52:04 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3db791a9
dev-vcs/got: add 0.82, drop 0.78
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.78.ebuild => got-0.82.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index b4e81f2ec..029b85e76 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.78.tar.gz 880783 BLAKE2B 363c19bba0b4fa29a80bc9fcd26cd69370b44894d905f3ccafc201ffcdf6d7e43b1dac74d004cb1b4ad7af07a751d3ac33160fed23fb4e7f57ec163589ae1ad1 SHA512 597d0c65ea2ed01e211a17e3ff11d5fa3792bda53cb60fd54124ef8bc2f6153102ad6eb6e8bf6686bc9abef4dace8997e35938b570429dc0077ca259ab57bef0
DIST got-portable-0.79.tar.gz 869926 BLAKE2B 272044ae77912e402d71e93699ffda0222f8fdb3bb0d1ce88d7e35e1027c0ea5ef7381b6ce924e96da7785ed1b8afaf29fcb838a7258a17911fb53d3bbfcd26f SHA512 842281a1f4de05efc8f6af94a6b05f6d9b84cb399a5088f00a243bc52b3b52e634495762fc49d8fd733afe9299e027451de8a6c797e743cf4e1085ebd394cce1
+DIST got-portable-0.82.tar.gz 987111 BLAKE2B bdab64bd70245473c830f360c44bceb9a4e4b819d3da355f5856c23638097eb50991f7a723c0fe0029cb4541719c696a2ed855de70281ad77fc72fb146140b63 SHA512 d165b95d2606cb923327527b7f88b830a115da20cee7496448159111889ef24aac65f21c623db2d4d507167381fc5d3c0827ff860a364a07026b6b03098204fd
diff --git a/dev-vcs/got/got-0.78.ebuild b/dev-vcs/got/got-0.82.ebuild
similarity index 95%
rename from dev-vcs/got/got-0.78.ebuild
rename to dev-vcs/got/got-0.82.ebuild
index 998462dd8..b052292b5 100644
--- a/dev-vcs/got/got-0.78.ebuild
+++ b/dev-vcs/got/got-0.82.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-02-15 13:56 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-02-15 13:56 UTC (permalink / raw
To: gentoo-commits
commit: 8a72ee2f1d1ec40d1c410582738b274d045fd850
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue Feb 14 23:40:02 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Feb 15 13:39:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8a72ee2f
dev-vcs/got: add 0.83, drop 0.79
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.79.ebuild => got-0.83.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 029b85e76..41a88c08c 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.79.tar.gz 869926 BLAKE2B 272044ae77912e402d71e93699ffda0222f8fdb3bb0d1ce88d7e35e1027c0ea5ef7381b6ce924e96da7785ed1b8afaf29fcb838a7258a17911fb53d3bbfcd26f SHA512 842281a1f4de05efc8f6af94a6b05f6d9b84cb399a5088f00a243bc52b3b52e634495762fc49d8fd733afe9299e027451de8a6c797e743cf4e1085ebd394cce1
DIST got-portable-0.82.tar.gz 987111 BLAKE2B bdab64bd70245473c830f360c44bceb9a4e4b819d3da355f5856c23638097eb50991f7a723c0fe0029cb4541719c696a2ed855de70281ad77fc72fb146140b63 SHA512 d165b95d2606cb923327527b7f88b830a115da20cee7496448159111889ef24aac65f21c623db2d4d507167381fc5d3c0827ff860a364a07026b6b03098204fd
+DIST got-portable-0.83.tar.gz 991652 BLAKE2B 753654ceba312feb3400922da13e81f0bac99024b126c7d33b7ff8eb2d7e54ff64c900cc7c1abebeca45bd2b3c785ae2670b6af2304ae0a906d7611d987e9662 SHA512 61532e2131e1a0a5e02e155e615e801900c824f58725b43319e3ff065065109ec45483036b13b90eb8dc1af884ce8cd86001ff18067cba2a46bef0e49f838981
diff --git a/dev-vcs/got/got-0.79.ebuild b/dev-vcs/got/got-0.83.ebuild
similarity index 95%
rename from dev-vcs/got/got-0.79.ebuild
rename to dev-vcs/got/got-0.83.ebuild
index 998462dd8..b052292b5 100644
--- a/dev-vcs/got/got-0.79.ebuild
+++ b/dev-vcs/got/got-0.83.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-02-24 21:31 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-02-24 21:31 UTC (permalink / raw
To: gentoo-commits
commit: 5129ca5c4e2d2253e1d44c20c8316029bc38813b
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Feb 24 21:27:27 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Feb 24 21:27:36 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5129ca5c
dev-vcs/got: add 0.84, drop 0.82
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.82.ebuild => got-0.84.ebuild} | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 41a88c08c..8ecd56957 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.82.tar.gz 987111 BLAKE2B bdab64bd70245473c830f360c44bceb9a4e4b819d3da355f5856c23638097eb50991f7a723c0fe0029cb4541719c696a2ed855de70281ad77fc72fb146140b63 SHA512 d165b95d2606cb923327527b7f88b830a115da20cee7496448159111889ef24aac65f21c623db2d4d507167381fc5d3c0827ff860a364a07026b6b03098204fd
DIST got-portable-0.83.tar.gz 991652 BLAKE2B 753654ceba312feb3400922da13e81f0bac99024b126c7d33b7ff8eb2d7e54ff64c900cc7c1abebeca45bd2b3c785ae2670b6af2304ae0a906d7611d987e9662 SHA512 61532e2131e1a0a5e02e155e615e801900c824f58725b43319e3ff065065109ec45483036b13b90eb8dc1af884ce8cd86001ff18067cba2a46bef0e49f838981
+DIST got-portable-0.84.tar.gz 971089 BLAKE2B 133d1481584a4339a36f5d9bb8e6c1ffd9b3e5adbd24809df84347ddc28b269e806910b90e18b21530bb15016650984070623d043a3674c0348787f36c437170 SHA512 6a3dcb6f1c19b59d197b2fb5df45a103403139a35b558785bb40862f3a031e40034dbec62edcccc653c5b5de7a19e0d3ef75e87f1eab7e05d7f074e996af3eb6
diff --git a/dev-vcs/got/got-0.82.ebuild b/dev-vcs/got/got-0.84.ebuild
similarity index 94%
rename from dev-vcs/got/got-0.82.ebuild
rename to dev-vcs/got/got-0.84.ebuild
index b052292b5..de221d84e 100644
--- a/dev-vcs/got/got-0.82.ebuild
+++ b/dev-vcs/got/got-0.84.ebuild
@@ -13,6 +13,9 @@ LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+# `make check` does nothing
+RESTRICT="test"
+
RDEPEND="
dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-02-24 21:31 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-02-24 21:31 UTC (permalink / raw
To: gentoo-commits
commit: f460ad0270e158c5eb71dd57cfe5b979559e5903
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Fri Feb 24 21:29:12 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Feb 24 21:30:40 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f460ad02
dev-vcs/got: add 0.84.1, drop 0.84
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.84.ebuild => got-0.84.1.ebuild} | 0
dev-vcs/got/metadata.xml | 2 +-
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 8ecd56957..a76723868 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
DIST got-portable-0.83.tar.gz 991652 BLAKE2B 753654ceba312feb3400922da13e81f0bac99024b126c7d33b7ff8eb2d7e54ff64c900cc7c1abebeca45bd2b3c785ae2670b6af2304ae0a906d7611d987e9662 SHA512 61532e2131e1a0a5e02e155e615e801900c824f58725b43319e3ff065065109ec45483036b13b90eb8dc1af884ce8cd86001ff18067cba2a46bef0e49f838981
-DIST got-portable-0.84.tar.gz 971089 BLAKE2B 133d1481584a4339a36f5d9bb8e6c1ffd9b3e5adbd24809df84347ddc28b269e806910b90e18b21530bb15016650984070623d043a3674c0348787f36c437170 SHA512 6a3dcb6f1c19b59d197b2fb5df45a103403139a35b558785bb40862f3a031e40034dbec62edcccc653c5b5de7a19e0d3ef75e87f1eab7e05d7f074e996af3eb6
+DIST got-portable-0.84.1.tar.gz 1009452 BLAKE2B 86154a2baa3543572be73eacbfc645c24f7c95bd5de14bc83da7aa0d8ef513bee8df83090c635dc2a73044149ccf9a0b769da42cd170f931bdd7d91c388ff15d SHA512 56431d8c096ab66219f9821d3ab7e9e222f893d5728dd2a551da9c54ca8d792f6aacef915cddd926cd0e3c7464bd147eaa3f33e1c48b14e97901507082ebfac5
diff --git a/dev-vcs/got/got-0.84.ebuild b/dev-vcs/got/got-0.84.1.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.84.ebuild
rename to dev-vcs/got/got-0.84.1.ebuild
diff --git a/dev-vcs/got/metadata.xml b/dev-vcs/got/metadata.xml
index cc7f2d574..a39de9612 100644
--- a/dev-vcs/got/metadata.xml
+++ b/dev-vcs/got/metadata.xml
@@ -21,6 +21,6 @@
</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>
+ <changelog>http://gameoftrees.org/releases/portable/CHANGELOG</changelog>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-03-08 17:27 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-03-08 17:27 UTC (permalink / raw
To: gentoo-commits
commit: 776418eeabe60403822a1716974497461beabeab
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Wed Mar 8 17:25:55 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Wed Mar 8 17:25:55 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=776418ee
dev-vcs/got: add 0.85, drop 0.83
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.83.ebuild => got-0.85.ebuild} | 3 +++
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index a76723868..c69b2b35e 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.83.tar.gz 991652 BLAKE2B 753654ceba312feb3400922da13e81f0bac99024b126c7d33b7ff8eb2d7e54ff64c900cc7c1abebeca45bd2b3c785ae2670b6af2304ae0a906d7611d987e9662 SHA512 61532e2131e1a0a5e02e155e615e801900c824f58725b43319e3ff065065109ec45483036b13b90eb8dc1af884ce8cd86001ff18067cba2a46bef0e49f838981
DIST got-portable-0.84.1.tar.gz 1009452 BLAKE2B 86154a2baa3543572be73eacbfc645c24f7c95bd5de14bc83da7aa0d8ef513bee8df83090c635dc2a73044149ccf9a0b769da42cd170f931bdd7d91c388ff15d SHA512 56431d8c096ab66219f9821d3ab7e9e222f893d5728dd2a551da9c54ca8d792f6aacef915cddd926cd0e3c7464bd147eaa3f33e1c48b14e97901507082ebfac5
+DIST got-portable-0.85.tar.gz 1033808 BLAKE2B e8912344933397fcd6c79df7a199f1208e51bd36b9df3311cc8d2f381db02114fa6bf01764b24b57b38dd0dfa2b8898a623de92a57f7751b0620507cce6861d8 SHA512 66ae168d961c1a8c19f9b18e3b71628adc988b68de19fb51f19b87855bd54612bd9c4f1753dc1e6f5cd85fa6bb42d4a165ab347608d95c8963707a4aea1c54d4
diff --git a/dev-vcs/got/got-0.83.ebuild b/dev-vcs/got/got-0.85.ebuild
similarity index 94%
rename from dev-vcs/got/got-0.83.ebuild
rename to dev-vcs/got/got-0.85.ebuild
index b052292b5..de221d84e 100644
--- a/dev-vcs/got/got-0.83.ebuild
+++ b/dev-vcs/got/got-0.85.ebuild
@@ -13,6 +13,9 @@ LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~x86"
+# `make check` does nothing
+RESTRICT="test"
+
RDEPEND="
dev-libs/libevent:=
sys-libs/ncurses:=[unicode(+)]
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-03-16 13:09 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-03-16 13:09 UTC (permalink / raw
To: gentoo-commits
commit: 7b8eaf0f235836e92ddcc04b3054908c7a4e9397
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Mar 16 13:09:01 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Mar 16 13:09:01 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7b8eaf0f
dev-vcs/got: add 0.86, drop 0.84.1
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.84.1.ebuild => got-0.86.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index c69b2b35e..8ac8f3b50 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.84.1.tar.gz 1009452 BLAKE2B 86154a2baa3543572be73eacbfc645c24f7c95bd5de14bc83da7aa0d8ef513bee8df83090c635dc2a73044149ccf9a0b769da42cd170f931bdd7d91c388ff15d SHA512 56431d8c096ab66219f9821d3ab7e9e222f893d5728dd2a551da9c54ca8d792f6aacef915cddd926cd0e3c7464bd147eaa3f33e1c48b14e97901507082ebfac5
DIST got-portable-0.85.tar.gz 1033808 BLAKE2B e8912344933397fcd6c79df7a199f1208e51bd36b9df3311cc8d2f381db02114fa6bf01764b24b57b38dd0dfa2b8898a623de92a57f7751b0620507cce6861d8 SHA512 66ae168d961c1a8c19f9b18e3b71628adc988b68de19fb51f19b87855bd54612bd9c4f1753dc1e6f5cd85fa6bb42d4a165ab347608d95c8963707a4aea1c54d4
+DIST got-portable-0.86.tar.gz 1034905 BLAKE2B f04eaa87fb3dfd0c2bf8e9d4557c5f7d5b75c601744fb6be2622e8d3ba67702ed5c9f45117f57c60fedb86dfb6c2ebb63596dc53182fa6410639e0a3a038c11b SHA512 adc40c9197b18cdb78bdd962e962ebe2b120552377ad3d9a92acae77182939c06e7cd386bc0b7f4b0970752a9ea9736eb4af98096be7062fa12630dd9f452b4b
diff --git a/dev-vcs/got/got-0.84.1.ebuild b/dev-vcs/got/got-0.86.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.84.1.ebuild
rename to dev-vcs/got/got-0.86.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-04-27 19:29 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-04-27 19:29 UTC (permalink / raw
To: gentoo-commits
commit: ef607b8bce428dc8038f7cf1d2d9e1ccde27b765
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Apr 27 19:08:51 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Apr 27 19:29:37 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ef607b8b
dev-vcs/got: add 0.87, drop 0.85
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.85.ebuild => got-0.87.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 8ac8f3b50..38cc72572 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.85.tar.gz 1033808 BLAKE2B e8912344933397fcd6c79df7a199f1208e51bd36b9df3311cc8d2f381db02114fa6bf01764b24b57b38dd0dfa2b8898a623de92a57f7751b0620507cce6861d8 SHA512 66ae168d961c1a8c19f9b18e3b71628adc988b68de19fb51f19b87855bd54612bd9c4f1753dc1e6f5cd85fa6bb42d4a165ab347608d95c8963707a4aea1c54d4
DIST got-portable-0.86.tar.gz 1034905 BLAKE2B f04eaa87fb3dfd0c2bf8e9d4557c5f7d5b75c601744fb6be2622e8d3ba67702ed5c9f45117f57c60fedb86dfb6c2ebb63596dc53182fa6410639e0a3a038c11b SHA512 adc40c9197b18cdb78bdd962e962ebe2b120552377ad3d9a92acae77182939c06e7cd386bc0b7f4b0970752a9ea9736eb4af98096be7062fa12630dd9f452b4b
+DIST got-portable-0.87.tar.gz 1047429 BLAKE2B 76be96d8fc1cecffe670401010ebb5454c8ed351b30623c66160605dda8b989237cc4a53f1f6233937a7a5c51b95771b2b207c0c57e6f45ce19cd5d1aa22d509 SHA512 a752830f22e484485b67178d2470a77852985bedb4df16c3dc9a0c2e1d07f4e2fddec854b1cb6ddd6427bc8d3d386c4e6b9b2b6c9e38dbe26718ef89190a5602
diff --git a/dev-vcs/got/got-0.85.ebuild b/dev-vcs/got/got-0.87.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.85.ebuild
rename to dev-vcs/got/got-0.87.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-05-08 16:45 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-05-08 16:45 UTC (permalink / raw
To: gentoo-commits
commit: e1d52cf49d898ffa3bb89f6ecfd053ab70fb3b3b
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Mon May 8 16:33:59 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Mon May 8 16:33:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e1d52cf4
dev-vcs/got: add 0.88, drop 0.86
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.86.ebuild => got-0.88.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 38cc72572..a58f200c5 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.86.tar.gz 1034905 BLAKE2B f04eaa87fb3dfd0c2bf8e9d4557c5f7d5b75c601744fb6be2622e8d3ba67702ed5c9f45117f57c60fedb86dfb6c2ebb63596dc53182fa6410639e0a3a038c11b SHA512 adc40c9197b18cdb78bdd962e962ebe2b120552377ad3d9a92acae77182939c06e7cd386bc0b7f4b0970752a9ea9736eb4af98096be7062fa12630dd9f452b4b
DIST got-portable-0.87.tar.gz 1047429 BLAKE2B 76be96d8fc1cecffe670401010ebb5454c8ed351b30623c66160605dda8b989237cc4a53f1f6233937a7a5c51b95771b2b207c0c57e6f45ce19cd5d1aa22d509 SHA512 a752830f22e484485b67178d2470a77852985bedb4df16c3dc9a0c2e1d07f4e2fddec854b1cb6ddd6427bc8d3d386c4e6b9b2b6c9e38dbe26718ef89190a5602
+DIST got-portable-0.88.tar.gz 1048477 BLAKE2B fde36ce7895d67010e07671666b549f51055215aa025c24b3f4652c3ecc039d04b316f7f751ea6e96a9a39907aac1abcaf98b4bd35f632011892443e998663cd SHA512 91d01043468304dbbafdcbf999fa234b0cf5b4e2bd4267728874910f71984b0f05de0cde90c8183f1e0634ee5815bd6ba842d595eaaabe95d84d23fc5706011c
diff --git a/dev-vcs/got/got-0.86.ebuild b/dev-vcs/got/got-0.88.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.86.ebuild
rename to dev-vcs/got/got-0.88.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-05-09 13:21 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-05-09 13:21 UTC (permalink / raw
To: gentoo-commits
commit: abee9440842ebb85ff256c2505fc1942bfd6732a
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Tue May 9 13:21:00 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Tue May 9 13:21:00 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=abee9440
dev-vcs/got: set QA_CONFIG_IMPL_DECL_SKIP=1
Closes: https://bugs.gentoo.org/900735
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/got-0.88.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-vcs/got/got-0.88.ebuild b/dev-vcs/got/got-0.88.ebuild
index de221d84e..4a0384cfc 100644
--- a/dev-vcs/got/got-0.88.ebuild
+++ b/dev-vcs/got/got-0.88.ebuild
@@ -43,3 +43,5 @@ BDEPEND="
"
DOCS=( CHANGELOG CHANGES README TODO )
+
+QA_CONFIG_IMPL_DECL_SKIP=1
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-06-10 10:35 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-06-10 10:35 UTC (permalink / raw
To: gentoo-commits
commit: 41c40d16ffad26aa11ce5c2b39e03fb40400e26d
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Sat Jun 10 10:34:56 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Sat Jun 10 10:34:56 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41c40d16
dev-vcs/got: add 0.89, drop 0.87
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.87.ebuild => got-0.89.ebuild} | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index a58f200c5..4aee781f4 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.87.tar.gz 1047429 BLAKE2B 76be96d8fc1cecffe670401010ebb5454c8ed351b30623c66160605dda8b989237cc4a53f1f6233937a7a5c51b95771b2b207c0c57e6f45ce19cd5d1aa22d509 SHA512 a752830f22e484485b67178d2470a77852985bedb4df16c3dc9a0c2e1d07f4e2fddec854b1cb6ddd6427bc8d3d386c4e6b9b2b6c9e38dbe26718ef89190a5602
DIST got-portable-0.88.tar.gz 1048477 BLAKE2B fde36ce7895d67010e07671666b549f51055215aa025c24b3f4652c3ecc039d04b316f7f751ea6e96a9a39907aac1abcaf98b4bd35f632011892443e998663cd SHA512 91d01043468304dbbafdcbf999fa234b0cf5b4e2bd4267728874910f71984b0f05de0cde90c8183f1e0634ee5815bd6ba842d595eaaabe95d84d23fc5706011c
+DIST got-portable-0.89.tar.gz 1049166 BLAKE2B 108188b2fbc658421335aa5f1bdd1bed5098fe1fecc0b045377429b52ed38257c2ccb5319e2f60306605e4ded8453a46ba75b94864004ae3878cbbe1fe0e6443 SHA512 17bbe49067c18ab34ceb7b25a66a187789aa2cc936f5f9375bece6583bb3e06c84c8e61bf4662d530f26aece29429baeddefd66b5184727710312d1203bc6b0a
diff --git a/dev-vcs/got/got-0.87.ebuild b/dev-vcs/got/got-0.89.ebuild
similarity index 96%
rename from dev-vcs/got/got-0.87.ebuild
rename to dev-vcs/got/got-0.89.ebuild
index de221d84e..4a0384cfc 100644
--- a/dev-vcs/got/got-0.87.ebuild
+++ b/dev-vcs/got/got-0.89.ebuild
@@ -43,3 +43,5 @@ BDEPEND="
"
DOCS=( CHANGELOG CHANGES README TODO )
+
+QA_CONFIG_IMPL_DECL_SKIP=1
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-06-30 16:28 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-06-30 16:28 UTC (permalink / raw
To: gentoo-commits
commit: 11f5ae625a1bedf7db8bb57ca2b83afb3a1f5f17
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jun 29 23:09:53 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Jun 30 16:12:42 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=11f5ae62
dev-vcs/got: add 0.90, drop 0.88
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.88.ebuild => got-0.90.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 4aee781f4..33cb94f43 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.88.tar.gz 1048477 BLAKE2B fde36ce7895d67010e07671666b549f51055215aa025c24b3f4652c3ecc039d04b316f7f751ea6e96a9a39907aac1abcaf98b4bd35f632011892443e998663cd SHA512 91d01043468304dbbafdcbf999fa234b0cf5b4e2bd4267728874910f71984b0f05de0cde90c8183f1e0634ee5815bd6ba842d595eaaabe95d84d23fc5706011c
DIST got-portable-0.89.tar.gz 1049166 BLAKE2B 108188b2fbc658421335aa5f1bdd1bed5098fe1fecc0b045377429b52ed38257c2ccb5319e2f60306605e4ded8453a46ba75b94864004ae3878cbbe1fe0e6443 SHA512 17bbe49067c18ab34ceb7b25a66a187789aa2cc936f5f9375bece6583bb3e06c84c8e61bf4662d530f26aece29429baeddefd66b5184727710312d1203bc6b0a
+DIST got-portable-0.90.tar.gz 1051534 BLAKE2B 01e0cf7cae89cf83884b1f74e17814209d1c98bd4361e87ccfeb77f0ac80c26df14d73519d87f4968bd0c2973ed2e26f5c249611beec2e7fa145f942526228e2 SHA512 0e7f219c7dda2798d2eb41379059e78520dc9ed53ec670d86f0d00dd82403ef02b9f940335e421852f819755e6937c9faf633df9ba955d014227fdcbe5b8d0f8
diff --git a/dev-vcs/got/got-0.88.ebuild b/dev-vcs/got/got-0.90.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.88.ebuild
rename to dev-vcs/got/got-0.90.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/
@ 2023-07-21 18:00 Anna Vyalkova
0 siblings, 0 replies; 31+ messages in thread
From: Anna Vyalkova @ 2023-07-21 18:00 UTC (permalink / raw
To: gentoo-commits
commit: a4063ca32ea851aabcd17ee6f1b45f632a03cb73
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Jul 20 21:05:30 2023 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Fri Jul 21 17:58:20 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a4063ca3
dev-vcs/got: add 0.91, drop 0.89
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
dev-vcs/got/Manifest | 2 +-
dev-vcs/got/{got-0.89.ebuild => got-0.91.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-vcs/got/Manifest b/dev-vcs/got/Manifest
index 33cb94f43..33076d918 100644
--- a/dev-vcs/got/Manifest
+++ b/dev-vcs/got/Manifest
@@ -1,2 +1,2 @@
-DIST got-portable-0.89.tar.gz 1049166 BLAKE2B 108188b2fbc658421335aa5f1bdd1bed5098fe1fecc0b045377429b52ed38257c2ccb5319e2f60306605e4ded8453a46ba75b94864004ae3878cbbe1fe0e6443 SHA512 17bbe49067c18ab34ceb7b25a66a187789aa2cc936f5f9375bece6583bb3e06c84c8e61bf4662d530f26aece29429baeddefd66b5184727710312d1203bc6b0a
DIST got-portable-0.90.tar.gz 1051534 BLAKE2B 01e0cf7cae89cf83884b1f74e17814209d1c98bd4361e87ccfeb77f0ac80c26df14d73519d87f4968bd0c2973ed2e26f5c249611beec2e7fa145f942526228e2 SHA512 0e7f219c7dda2798d2eb41379059e78520dc9ed53ec670d86f0d00dd82403ef02b9f940335e421852f819755e6937c9faf633df9ba955d014227fdcbe5b8d0f8
+DIST got-portable-0.91.tar.gz 1146628 BLAKE2B c4a543620e5b29ef038593dba98883dcca5bbbc8df5614b6cf1ca18e05120804a1350307bcd785942a31ed5aeabb634943c0ceb30c478d7dac67b7fc33201c36 SHA512 6bc22d8fd5287f9f172574e5c429535c4d75c95f6f6b0324d6d3b647a185e22035f378520b0a1ed5ee5ff5feb35f7bb1abed4f0a75928e0b430e22b5ba81f256
diff --git a/dev-vcs/got/got-0.89.ebuild b/dev-vcs/got/got-0.91.ebuild
similarity index 100%
rename from dev-vcs/got/got-0.89.ebuild
rename to dev-vcs/got/got-0.91.ebuild
^ permalink raw reply related [flat|nested] 31+ messages in thread
end of thread, other threads:[~2023-07-21 18:00 UTC | newest]
Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-10 18:17 [gentoo-commits] repo/proj/guru:dev commit in: dev-vcs/got/ Anna Vyalkova
-- strict thread matches above, loose matches on Subject: below --
2023-07-21 18:00 Anna Vyalkova
2023-06-30 16:28 Anna Vyalkova
2023-06-10 10:35 Anna Vyalkova
2023-05-09 13:21 Anna Vyalkova
2023-05-08 16:45 Anna Vyalkova
2023-04-27 19:29 Anna Vyalkova
2023-03-16 13:09 Anna Vyalkova
2023-03-08 17:27 Anna Vyalkova
2023-02-24 21:31 Anna Vyalkova
2023-02-24 21:31 Anna Vyalkova
2023-02-15 13:56 Anna Vyalkova
2023-01-26 20:53 Anna Vyalkova
2022-11-04 15:24 Anna Vyalkova
2022-11-03 3:09 Anna Vyalkova
2022-10-30 8:38 Anna Vyalkova
2022-10-08 14:58 Anna Vyalkova
2022-08-04 13:10 Anna Vyalkova
2022-07-07 2:57 Anna Vyalkova
2022-06-25 21:29 Anna Vyalkova
2022-05-30 19:26 Anna Vyalkova
2022-03-31 7:24 Anna Vyalkova
2022-02-23 13:44 Anna Vyalkova
2022-01-16 17:58 Anna Vyalkova
2022-01-07 15:18 Anna Vyalkova
2021-11-25 7:16 Anna Vyalkova
2021-10-17 16:34 Anna Vyalkova
2021-10-17 10:30 Anna Vyalkova
2021-09-23 14:19 Anna Vyalkova
2021-08-08 12:59 Anna Vyalkova
2021-08-04 6:13 Anna Vyalkova
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox