* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-04-13 21:20 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2017-04-13 21:20 UTC (permalink / raw
To: gentoo-commits
commit: 8ef0296fa0aaf5bcdc894349747f2dd42c980ca9
Author: Moritz Schlarb <schlarbm <AT> uni-mainz <DOT> de>
AuthorDate: Mon Mar 13 13:57:37 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Apr 13 21:20:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ef0296f
net-libs/ccnet: new ebuild.
Ccnet is a framework for writing networked applications in C
Gentoo-Bug: https://bugs.gentoo.org/499698
Closes: https://github.com/gentoo/gentoo/pull/4198
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.0.4.ebuild | 33 +++++++++++++++++++++++++++++++++
net-libs/ccnet/metadata.xml | 11 +++++++++++
3 files changed, 45 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
new file mode 100644
index 00000000000..dbf9c8dc957
--- /dev/null
+++ b/net-libs/ccnet/Manifest
@@ -0,0 +1 @@
+DIST ccnet-6.0.4.tar.gz 178939 SHA256 2156787fc9ae1e4293493f0ce398aa8b97d84b9f0201d2fd6986b736bd249b04 SHA512 be44b1654ee641fdbd48b288b1b04f9aeb6f441225ddc52532e5f81145657f79241555132b848a57a241eacc4bb7149ad27b930ca532ab74615d4babb4027c2c WHIRLPOOL f49294b8c819a69cbbc9878e32382e2f3f65bf5e0af3da7a8590f206a9dc98e45ef9360f8044d021975c8b67a2d2d7c5ebe3f383855e5d0a98a8b6da3e4baa3e
diff --git a/net-libs/ccnet/ccnet-6.0.4.ebuild b/net-libs/ccnet/ccnet-6.0.4.ebuild
new file mode 100644
index 00000000000..bb48a189883
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.0.4.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ >=dev-libs/glib-2.16.0:2
+ >=dev-libs/libevent-2.0
+ dev-libs/openssl:0=
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
diff --git a/net-libs/ccnet/metadata.xml b/net-libs/ccnet/metadata.xml
new file mode 100644
index 00000000000..5b95006282e
--- /dev/null
+++ b/net-libs/ccnet/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>moschlar@metalabs.de</email>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-04-17 0:20 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2017-04-17 0:20 UTC (permalink / raw
To: gentoo-commits
commit: 692cecaa034b6c794196b27a254e4b588821e9c8
Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 17 00:19:35 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Apr 17 00:20:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=692cecaa
net-libs/ccnet: fix license.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
net-libs/ccnet/ccnet-6.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-libs/ccnet/ccnet-6.0.4.ebuild b/net-libs/ccnet/ccnet-6.0.4.ebuild
index bb48a189883..e78f3357f6e 100644
--- a/net-libs/ccnet/ccnet-6.0.4.ebuild
+++ b/net-libs/ccnet/ccnet-6.0.4.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="Ccnet is a framework for writing networked applications in C"
HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-LICENSE="GPL-2"
+LICENSE="GPL-2+-with-openssl-exception"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-05-20 18:54 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2017-05-20 18:54 UTC (permalink / raw
To: gentoo-commits
commit: da805ef2041f4880d36cb9b637eff431f2ed8a01
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Wed May 10 19:51:43 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat May 20 18:54:53 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da805ef2
net-libs/ccnet: Version bump to 6.0.6
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.0.6.ebuild | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index dbf9c8dc957..92a316b89c4 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1 +1,2 @@
DIST ccnet-6.0.4.tar.gz 178939 SHA256 2156787fc9ae1e4293493f0ce398aa8b97d84b9f0201d2fd6986b736bd249b04 SHA512 be44b1654ee641fdbd48b288b1b04f9aeb6f441225ddc52532e5f81145657f79241555132b848a57a241eacc4bb7149ad27b930ca532ab74615d4babb4027c2c WHIRLPOOL f49294b8c819a69cbbc9878e32382e2f3f65bf5e0af3da7a8590f206a9dc98e45ef9360f8044d021975c8b67a2d2d7c5ebe3f383855e5d0a98a8b6da3e4baa3e
+DIST ccnet-6.0.6.tar.gz 179362 SHA256 6b3ac78f645929f6b8633fdd65c1e7b4066cf9038b4228c64f7f389c7c446f46 SHA512 76a2c289b7303cc174c5c351a85e91cc9cc94e798e4aea682e48bca2c869e8845b22112568678c87bf8f7461b9188d726eafa9d35766212dfbda5d3d915293da WHIRLPOOL 02af93c78567a8e0522b1ffe1c9a0de7c9e63c40beca4d631871ef9a46ad1ff6e612959b09888e4ce09f332dc3882ba571568e5a2061b5f8c932c377a0417269
diff --git a/net-libs/ccnet/ccnet-6.0.6.ebuild b/net-libs/ccnet/ccnet-6.0.6.ebuild
new file mode 100644
index 00000000000..e78f3357f6e
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.0.6.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ >=dev-libs/glib-2.16.0:2
+ >=dev-libs/libevent-2.0
+ dev-libs/openssl:0=
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-07-01 21:11 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2017-07-01 21:11 UTC (permalink / raw
To: gentoo-commits
commit: 2e3b015c919db5eb1342e371f9be2ccfc91281df
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Wed Jun 21 21:18:47 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jul 1 21:11:07 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e3b015c
net-libs/ccnet: Version bump to 6.0.7
net-libs/ccnet/Manifest | 3 +-
net-libs/ccnet/ccnet-6.0.6.ebuild | 33 ----------------------
.../{ccnet-6.0.4.ebuild => ccnet-6.0.7.ebuild} | 0
3 files changed, 1 insertion(+), 35 deletions(-)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 92a316b89c4..8807bad4c06 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1,2 +1 @@
-DIST ccnet-6.0.4.tar.gz 178939 SHA256 2156787fc9ae1e4293493f0ce398aa8b97d84b9f0201d2fd6986b736bd249b04 SHA512 be44b1654ee641fdbd48b288b1b04f9aeb6f441225ddc52532e5f81145657f79241555132b848a57a241eacc4bb7149ad27b930ca532ab74615d4babb4027c2c WHIRLPOOL f49294b8c819a69cbbc9878e32382e2f3f65bf5e0af3da7a8590f206a9dc98e45ef9360f8044d021975c8b67a2d2d7c5ebe3f383855e5d0a98a8b6da3e4baa3e
-DIST ccnet-6.0.6.tar.gz 179362 SHA256 6b3ac78f645929f6b8633fdd65c1e7b4066cf9038b4228c64f7f389c7c446f46 SHA512 76a2c289b7303cc174c5c351a85e91cc9cc94e798e4aea682e48bca2c869e8845b22112568678c87bf8f7461b9188d726eafa9d35766212dfbda5d3d915293da WHIRLPOOL 02af93c78567a8e0522b1ffe1c9a0de7c9e63c40beca4d631871ef9a46ad1ff6e612959b09888e4ce09f332dc3882ba571568e5a2061b5f8c932c377a0417269
+DIST ccnet-6.0.7.tar.gz 179356 SHA256 c4e02b5b77d774ffaa47235e6e265ecce00f656766a2f232397ce86eeb3162fa SHA512 66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd WHIRLPOOL 27022bcae05958ad34c3b26221f7278184068fba119b63bfb4b13fe1f74ac19b61a34deb2e8b9047e6005c95abb0191299e3c105058e3937d8b873f1c75df73f
diff --git a/net-libs/ccnet/ccnet-6.0.6.ebuild b/net-libs/ccnet/ccnet-6.0.6.ebuild
deleted file mode 100644
index e78f3357f6e..00000000000
--- a/net-libs/ccnet/ccnet-6.0.6.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit autotools python-single-r1 vala
-
-DESCRIPTION="Ccnet is a framework for writing networked applications in C"
-HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
-SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- net-libs/libsearpc[${PYTHON_USEDEP}]
- >=dev-libs/glib-2.16.0:2
- >=dev-libs/libevent-2.0
- dev-libs/openssl:0=
- dev-db/sqlite:3"
-DEPEND="${RDEPEND}
- $(vala_depend)"
-
-src_prepare() {
- default
- sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
- sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
- eautoreconf
- vala_src_prepare
-}
diff --git a/net-libs/ccnet/ccnet-6.0.4.ebuild b/net-libs/ccnet/ccnet-6.0.7.ebuild
similarity index 100%
rename from net-libs/ccnet/ccnet-6.0.4.ebuild
rename to net-libs/ccnet/ccnet-6.0.7.ebuild
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-08-06 11:55 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2017-08-06 11:55 UTC (permalink / raw
To: gentoo-commits
commit: ae73c14bfbeaa6d837b608c7f8dca3d55d161ac4
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Thu Aug 3 06:42:06 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug 6 11:54:53 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae73c14b
net-libs/ccnet: Version bump to 6.1.0
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.1.0.ebuild | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 8807bad4c06..521c335dc60 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1 +1,2 @@
DIST ccnet-6.0.7.tar.gz 179356 SHA256 c4e02b5b77d774ffaa47235e6e265ecce00f656766a2f232397ce86eeb3162fa SHA512 66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd WHIRLPOOL 27022bcae05958ad34c3b26221f7278184068fba119b63bfb4b13fe1f74ac19b61a34deb2e8b9047e6005c95abb0191299e3c105058e3937d8b873f1c75df73f
+DIST ccnet-6.1.0.tar.gz 179362 SHA256 6b91c1a1a00622a2a07669dae144dd7fcd8f11275912384aa65d33da05088a60 SHA512 0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018 WHIRLPOOL fd0a421fcd6433134520d7e9a667a3937af329b2761cc353095cc98814f7cd37b19b4b4593094f4e5d153ecbc632ccb569fb99c328c8c7c7cf547b33f19e4ad7
diff --git a/net-libs/ccnet/ccnet-6.1.0.ebuild b/net-libs/ccnet/ccnet-6.1.0.ebuild
new file mode 100644
index 00000000000..e78f3357f6e
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ >=dev-libs/glib-2.16.0:2
+ >=dev-libs/libevent-2.0
+ dev-libs/openssl:0=
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2017-11-15 22:13 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2017-11-15 22:13 UTC (permalink / raw
To: gentoo-commits
commit: cbbc43750c09bddd636d9e71eaae5d7832f4dc9a
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Fri Nov 3 09:10:29 2017 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Nov 15 22:13:28 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbbc4375
net-libs/ccnet: version bump to 6.1.3.
Also remove unnecessary .la files.
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.1.3.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 521c335dc60..9e6860ed23b 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1,2 +1,3 @@
DIST ccnet-6.0.7.tar.gz 179356 SHA256 c4e02b5b77d774ffaa47235e6e265ecce00f656766a2f232397ce86eeb3162fa SHA512 66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd WHIRLPOOL 27022bcae05958ad34c3b26221f7278184068fba119b63bfb4b13fe1f74ac19b61a34deb2e8b9047e6005c95abb0191299e3c105058e3937d8b873f1c75df73f
DIST ccnet-6.1.0.tar.gz 179362 SHA256 6b91c1a1a00622a2a07669dae144dd7fcd8f11275912384aa65d33da05088a60 SHA512 0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018 WHIRLPOOL fd0a421fcd6433134520d7e9a667a3937af329b2761cc353095cc98814f7cd37b19b4b4593094f4e5d153ecbc632ccb569fb99c328c8c7c7cf547b33f19e4ad7
+DIST ccnet-6.1.3.tar.gz 179321 SHA256 0ac3dcd86d22f6bb729027783da8ea14f832276982e36cc814fda0cf3ed78050 SHA512 1700237749dd250798b6bd3ea2d74bd09f72e3f5502520d413671c247eeeae05f92947a4a4429035f8ab6414c9c67353939025de046b00941956b6854f4cfcc3 WHIRLPOOL ce46693893056337c4411313f41589a28af1d46084bf2e51e0f4e4ad0d8ff45d760506b96fa4266fcf745e5322eac116cbc89d0a46629171201194c641eb2021
diff --git a/net-libs/ccnet/ccnet-6.1.3.ebuild b/net-libs/ccnet/ccnet-6.1.3.ebuild
new file mode 100644
index 00000000000..111ba410838
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.3.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ >=dev-libs/glib-2.16.0:2
+ >=dev-libs/libevent-2.0
+ dev-libs/openssl:0=
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
+
+src_install() {
+ default
+ # Remove unnecessary .la files, as recommended by ltprune.eclass
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2018-01-11 22:54 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2018-01-11 22:54 UTC (permalink / raw
To: gentoo-commits
commit: 1bf78530c6e388c4d0e6d330ad9f750b8657ba2a
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Mon Jan 8 14:22:10 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Thu Jan 11 22:51:25 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf78530
net-libs/ccnet: version bump to 6.1.4.
Closes: https://github.com/gentoo/gentoo/pull/6792
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.1.4.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 9aa6d1ff23b..e2eee348d1d 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1,3 +1,4 @@
DIST ccnet-6.0.7.tar.gz 179356 BLAKE2B cc7a3fb70013e575845c8fd638847f1fd9670b0ea1997d208fd89f917f1c4c60ed86064c31db118bf5969dda27bc055d5e3abf0bb1ad63bc00ad49ba5819dda6 SHA512 66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd
DIST ccnet-6.1.0.tar.gz 179362 BLAKE2B a7c10433a3af69456f15df75c02d92e203628f7f4d64a9f57849cc80e8d0913fccc7767b58e161551a2105cbffd79074144237fbacba5663972eadea661131d1 SHA512 0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018
DIST ccnet-6.1.3.tar.gz 179321 BLAKE2B 23f6877ee9e3d80d4413e7b059688d83f99e21f3b665abaf41389366cf99fcb841e730535808e6874f4c1ba09818f637bbf222858ebb1ec3473cd40b6b03d0b0 SHA512 1700237749dd250798b6bd3ea2d74bd09f72e3f5502520d413671c247eeeae05f92947a4a4429035f8ab6414c9c67353939025de046b00941956b6854f4cfcc3
+DIST ccnet-6.1.4.tar.gz 179357 BLAKE2B 5f0a83ef15f43394655c68d2b2a13ca91e0df93fb661f598814d8f0c4a31eddb26d0b8a0f0679d9c3babf7200f8ce1bb75818e0a6d445f41527358b4c6102d2c SHA512 99ec3f41ad1e6c06455ca1622b6e5219d76ce85014523db6bfd15cbbd9b54fd4027f87906fc47bd7bafcbabc9febdbccb6839c5b8fa10133ddb461dca4f46ce0
diff --git a/net-libs/ccnet/ccnet-6.1.4.ebuild b/net-libs/ccnet/ccnet-6.1.4.ebuild
new file mode 100644
index 00000000000..111ba410838
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ >=dev-libs/glib-2.16.0:2
+ >=dev-libs/libevent-2.0
+ dev-libs/openssl:0=
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
+
+src_install() {
+ default
+ # Remove unnecessary .la files, as recommended by ltprune.eclass
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2018-04-11 21:47 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2018-04-11 21:47 UTC (permalink / raw
To: gentoo-commits
commit: acb674ad2363ee286743dfef9ff73e8c3cc0eceb
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Tue Apr 10 08:45:48 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 21:47:13 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb674ad
net-libs/ccnet: version bump to 6.1.7.
Closes: https://github.com/gentoo/gentoo/pull/7925
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.1.7.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index e2eee348d1d..86f2e6e3ca5 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -2,3 +2,4 @@ DIST ccnet-6.0.7.tar.gz 179356 BLAKE2B cc7a3fb70013e575845c8fd638847f1fd9670b0ea
DIST ccnet-6.1.0.tar.gz 179362 BLAKE2B a7c10433a3af69456f15df75c02d92e203628f7f4d64a9f57849cc80e8d0913fccc7767b58e161551a2105cbffd79074144237fbacba5663972eadea661131d1 SHA512 0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018
DIST ccnet-6.1.3.tar.gz 179321 BLAKE2B 23f6877ee9e3d80d4413e7b059688d83f99e21f3b665abaf41389366cf99fcb841e730535808e6874f4c1ba09818f637bbf222858ebb1ec3473cd40b6b03d0b0 SHA512 1700237749dd250798b6bd3ea2d74bd09f72e3f5502520d413671c247eeeae05f92947a4a4429035f8ab6414c9c67353939025de046b00941956b6854f4cfcc3
DIST ccnet-6.1.4.tar.gz 179357 BLAKE2B 5f0a83ef15f43394655c68d2b2a13ca91e0df93fb661f598814d8f0c4a31eddb26d0b8a0f0679d9c3babf7200f8ce1bb75818e0a6d445f41527358b4c6102d2c SHA512 99ec3f41ad1e6c06455ca1622b6e5219d76ce85014523db6bfd15cbbd9b54fd4027f87906fc47bd7bafcbabc9febdbccb6839c5b8fa10133ddb461dca4f46ce0
+DIST ccnet-6.1.7.tar.gz 179364 BLAKE2B 214284a5b04ee2c8a51f8479bee5bcc3d5b044ed0cd622b56ae5caf4fb2757bf28191ffedca9f76fce80b5c6da5a489207e1bdef3436e44dbe1841a69a82c448 SHA512 bac93c9987f434915f9d5b5f0cfc44d88471ae27896e89059f3c924182255d938fb6c87dec31354f256807d5e4274b6af2e3325e753d06cd8a5ea91caba9490d
diff --git a/net-libs/ccnet/ccnet-6.1.7.ebuild b/net-libs/ccnet/ccnet-6.1.7.ebuild
new file mode 100644
index 00000000000..76149b4a86f
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ dev-libs/glib:2
+ dev-libs/libevent:0
+ dev-libs/openssl:0
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
+
+src_install() {
+ default
+ # Remove unnecessary .la files, as recommended by ltprune.eclass
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2018-04-11 21:47 Patrice Clement
0 siblings, 0 replies; 11+ messages in thread
From: Patrice Clement @ 2018-04-11 21:47 UTC (permalink / raw
To: gentoo-commits
commit: 3cc353e6bf9508adb27e28139018af924b484223
Author: Moritz Schlarb <moschlar <AT> metalabs <DOT> de>
AuthorDate: Tue Apr 10 09:06:37 2018 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Wed Apr 11 21:47:15 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cc353e6
net-libs/ccnet: clean old versions.
Package-Manager: Portage-2.3.28, Repoman-2.3.9
net-libs/ccnet/Manifest | 4 ----
net-libs/ccnet/ccnet-6.0.7.ebuild | 33 ---------------------------------
net-libs/ccnet/ccnet-6.1.0.ebuild | 33 ---------------------------------
net-libs/ccnet/ccnet-6.1.3.ebuild | 39 ---------------------------------------
net-libs/ccnet/ccnet-6.1.4.ebuild | 39 ---------------------------------------
5 files changed, 148 deletions(-)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 86f2e6e3ca5..3422d48f2f3 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1,5 +1 @@
-DIST ccnet-6.0.7.tar.gz 179356 BLAKE2B cc7a3fb70013e575845c8fd638847f1fd9670b0ea1997d208fd89f917f1c4c60ed86064c31db118bf5969dda27bc055d5e3abf0bb1ad63bc00ad49ba5819dda6 SHA512 66df998bb544ad614479d853820e3ee3119c2b08087d82a2a0633202c860447a7ac79f3639e587d531c2443def3cd58bf9ccdb2fed350c8bd7005737fb3d85fd
-DIST ccnet-6.1.0.tar.gz 179362 BLAKE2B a7c10433a3af69456f15df75c02d92e203628f7f4d64a9f57849cc80e8d0913fccc7767b58e161551a2105cbffd79074144237fbacba5663972eadea661131d1 SHA512 0053d342cf9256a37ca2ebf774794c791cb08caa7d608035c1b307a271e11719da1d4c272870ab51ad1cd8d8c0a84d22959b513865ddf98b4691cba35bc93018
-DIST ccnet-6.1.3.tar.gz 179321 BLAKE2B 23f6877ee9e3d80d4413e7b059688d83f99e21f3b665abaf41389366cf99fcb841e730535808e6874f4c1ba09818f637bbf222858ebb1ec3473cd40b6b03d0b0 SHA512 1700237749dd250798b6bd3ea2d74bd09f72e3f5502520d413671c247eeeae05f92947a4a4429035f8ab6414c9c67353939025de046b00941956b6854f4cfcc3
-DIST ccnet-6.1.4.tar.gz 179357 BLAKE2B 5f0a83ef15f43394655c68d2b2a13ca91e0df93fb661f598814d8f0c4a31eddb26d0b8a0f0679d9c3babf7200f8ce1bb75818e0a6d445f41527358b4c6102d2c SHA512 99ec3f41ad1e6c06455ca1622b6e5219d76ce85014523db6bfd15cbbd9b54fd4027f87906fc47bd7bafcbabc9febdbccb6839c5b8fa10133ddb461dca4f46ce0
DIST ccnet-6.1.7.tar.gz 179364 BLAKE2B 214284a5b04ee2c8a51f8479bee5bcc3d5b044ed0cd622b56ae5caf4fb2757bf28191ffedca9f76fce80b5c6da5a489207e1bdef3436e44dbe1841a69a82c448 SHA512 bac93c9987f434915f9d5b5f0cfc44d88471ae27896e89059f3c924182255d938fb6c87dec31354f256807d5e4274b6af2e3325e753d06cd8a5ea91caba9490d
diff --git a/net-libs/ccnet/ccnet-6.0.7.ebuild b/net-libs/ccnet/ccnet-6.0.7.ebuild
deleted file mode 100644
index e78f3357f6e..00000000000
--- a/net-libs/ccnet/ccnet-6.0.7.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit autotools python-single-r1 vala
-
-DESCRIPTION="Ccnet is a framework for writing networked applications in C"
-HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
-SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- net-libs/libsearpc[${PYTHON_USEDEP}]
- >=dev-libs/glib-2.16.0:2
- >=dev-libs/libevent-2.0
- dev-libs/openssl:0=
- dev-db/sqlite:3"
-DEPEND="${RDEPEND}
- $(vala_depend)"
-
-src_prepare() {
- default
- sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
- sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
- eautoreconf
- vala_src_prepare
-}
diff --git a/net-libs/ccnet/ccnet-6.1.0.ebuild b/net-libs/ccnet/ccnet-6.1.0.ebuild
deleted file mode 100644
index e78f3357f6e..00000000000
--- a/net-libs/ccnet/ccnet-6.1.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit autotools python-single-r1 vala
-
-DESCRIPTION="Ccnet is a framework for writing networked applications in C"
-HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
-SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- net-libs/libsearpc[${PYTHON_USEDEP}]
- >=dev-libs/glib-2.16.0:2
- >=dev-libs/libevent-2.0
- dev-libs/openssl:0=
- dev-db/sqlite:3"
-DEPEND="${RDEPEND}
- $(vala_depend)"
-
-src_prepare() {
- default
- sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
- sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
- eautoreconf
- vala_src_prepare
-}
diff --git a/net-libs/ccnet/ccnet-6.1.3.ebuild b/net-libs/ccnet/ccnet-6.1.3.ebuild
deleted file mode 100644
index 111ba410838..00000000000
--- a/net-libs/ccnet/ccnet-6.1.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit autotools python-single-r1 vala
-
-DESCRIPTION="Ccnet is a framework for writing networked applications in C"
-HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
-SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- net-libs/libsearpc[${PYTHON_USEDEP}]
- >=dev-libs/glib-2.16.0:2
- >=dev-libs/libevent-2.0
- dev-libs/openssl:0=
- dev-db/sqlite:3"
-DEPEND="${RDEPEND}
- $(vala_depend)"
-
-src_prepare() {
- default
- sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
- sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
- eautoreconf
- vala_src_prepare
-}
-
-src_install() {
- default
- # Remove unnecessary .la files, as recommended by ltprune.eclass
- find "${ED}" -name '*.la' -delete || die
-}
diff --git a/net-libs/ccnet/ccnet-6.1.4.ebuild b/net-libs/ccnet/ccnet-6.1.4.ebuild
deleted file mode 100644
index 111ba410838..00000000000
--- a/net-libs/ccnet/ccnet-6.1.4.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-inherit autotools python-single-r1 vala
-
-DESCRIPTION="Ccnet is a framework for writing networked applications in C"
-HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
-SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+-with-openssl-exception"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- net-libs/libsearpc[${PYTHON_USEDEP}]
- >=dev-libs/glib-2.16.0:2
- >=dev-libs/libevent-2.0
- dev-libs/openssl:0=
- dev-db/sqlite:3"
-DEPEND="${RDEPEND}
- $(vala_depend)"
-
-src_prepare() {
- default
- sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
- sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
- eautoreconf
- vala_src_prepare
-}
-
-src_install() {
- default
- # Remove unnecessary .la files, as recommended by ltprune.eclass
- find "${ED}" -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2019-07-01 1:24 Jonas Stein
0 siblings, 0 replies; 11+ messages in thread
From: Jonas Stein @ 2019-07-01 1:24 UTC (permalink / raw
To: gentoo-commits
commit: de0aa06b0ad22f1d3dbfa00b8c266e110a0a740a
Author: Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 1 01:17:28 2019 +0000
Commit: Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Jul 1 01:24:29 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de0aa06b
net-libs/ccnet: Maintainer retired
Maintainer asked for retirement.
Bug: https://bugs.gentoo.org/632804
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>
net-libs/ccnet/metadata.xml | 10 ++--------
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git a/net-libs/ccnet/metadata.xml b/net-libs/ccnet/metadata.xml
index d33b04603d3..e77d26910ef 100644
--- a/net-libs/ccnet/metadata.xml
+++ b/net-libs/ccnet/metadata.xml
@@ -1,13 +1,7 @@
-<?xml version='1.0' encoding='UTF-8'?>
+<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>moschlar@metalabs.de</email>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="github">haiwen/ccnet</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/
@ 2019-07-15 17:24 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-07-15 17:24 UTC (permalink / raw
To: gentoo-commits
commit: 642bd16ea2a851674532713bfac5c5e6b027bd2a
Author: Denis Efremov <efremov <AT> linux <DOT> com>
AuthorDate: Thu Jun 27 09:19:01 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Jul 15 17:24:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=642bd16e
net-libs/ccnet: version bump to 6.1.8
Package-Manager: Portage-2.3.66, Repoman-2.3.11
Signed-off-by: Denis Efremov <efremov <AT> linux.com>
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
net-libs/ccnet/Manifest | 1 +
net-libs/ccnet/ccnet-6.1.8.ebuild | 39 +++++++++++++++++++++++++++++++++++++++
2 files changed, 40 insertions(+)
diff --git a/net-libs/ccnet/Manifest b/net-libs/ccnet/Manifest
index 3422d48f2f3..ea49a378f65 100644
--- a/net-libs/ccnet/Manifest
+++ b/net-libs/ccnet/Manifest
@@ -1 +1,2 @@
DIST ccnet-6.1.7.tar.gz 179364 BLAKE2B 214284a5b04ee2c8a51f8479bee5bcc3d5b044ed0cd622b56ae5caf4fb2757bf28191ffedca9f76fce80b5c6da5a489207e1bdef3436e44dbe1841a69a82c448 SHA512 bac93c9987f434915f9d5b5f0cfc44d88471ae27896e89059f3c924182255d938fb6c87dec31354f256807d5e4274b6af2e3325e753d06cd8a5ea91caba9490d
+DIST ccnet-6.1.8.tar.gz 179374 BLAKE2B 8eb05a9d2c8830c501b63f939df56cb72a6b03f7dbdf511adf1a89eff86bdc85ad804de04a2ed57f235f76e95fe1a4ab317f415be0051024bfcd7d099e9e2cad SHA512 5eb3765969edd471a43575545f92f6317741a2099bb7af82851bfe726b0715420e5b946c63435c334c4447888f1454d7cd0703f29818571eaabc2250046c45f3
diff --git a/net-libs/ccnet/ccnet-6.1.8.ebuild b/net-libs/ccnet/ccnet-6.1.8.ebuild
new file mode 100644
index 00000000000..74947e965f5
--- /dev/null
+++ b/net-libs/ccnet/ccnet-6.1.8.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 )
+inherit autotools python-single-r1 vala
+
+DESCRIPTION="Ccnet is a framework for writing networked applications in C"
+HOMEPAGE="https://github.com/haiwen/ccnet http://seafile.com/"
+SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+-with-openssl-exception"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+ net-libs/libsearpc[${PYTHON_USEDEP}]
+ dev-libs/glib:2
+ dev-libs/libevent:0
+ dev-libs/openssl:0
+ dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+ $(vala_depend)"
+
+src_prepare() {
+ default
+ sed -i -e "s/(DESTDIR)//" libccnet.pc.in || die
+ sed -i -e 's/valac /${VALAC} /' lib/Makefile.am || die
+ eautoreconf
+ vala_src_prepare
+}
+
+src_install() {
+ default
+ # Remove unnecessary .la files, as recommended by ltprune.eclass
+ find "${ED}" -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2019-07-15 17:24 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-06 11:55 [gentoo-commits] repo/gentoo:master commit in: net-libs/ccnet/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2019-07-15 17:24 Michał Górny
2019-07-01 1:24 Jonas Stein
2018-04-11 21:47 Patrice Clement
2018-04-11 21:47 Patrice Clement
2018-01-11 22:54 Patrice Clement
2017-11-15 22:13 Patrice Clement
2017-07-01 21:11 Michał Górny
2017-05-20 18:54 Michał Górny
2017-04-17 0:20 Patrice Clement
2017-04-13 21:20 Patrice Clement
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox