public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsync/
@ 2016-02-28  4:48 Mike Frysinger
  0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger @ 2016-02-28  4:48 UTC (permalink / raw
  To: gentoo-commits

commit:     b8e318c5074826b0f02e47393a80b8df8e25f4c5
Author:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 00:37:36 2016 +0000
Commit:     Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 04:46:04 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e318c5

dev-vcs/cvsync: initial pkg by me

 dev-vcs/cvsync/Manifest                        |  1 +
 dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild | 82 ++++++++++++++++++++++++++
 dev-vcs/cvsync/cvsync-9999.ebuild              | 82 ++++++++++++++++++++++++++
 dev-vcs/cvsync/metadata.xml                    | 16 +++++
 4 files changed, 181 insertions(+)

diff --git a/dev-vcs/cvsync/Manifest b/dev-vcs/cvsync/Manifest
new file mode 100644
index 0000000..f293824
--- /dev/null
+++ b/dev-vcs/cvsync/Manifest
@@ -0,0 +1 @@
+DIST cvsync-2014.08.24.014706.tar.xz 94820 SHA256 ddb753a03c2e80e9507cb971a1ff0c682e353eb36737189457d6e8e507a04467 SHA512 8aa05d3e2459a14e6abe48eb13b7130aa0bdba7bc9e3604b8406622541450349c233bf43f11804d3820567f882335e1079a9fb747e1d1b8a5d93325bf4e97158 WHIRLPOOL 23ad6ce402f4b3785b0c365b7cc181bf88ed118316e1217034e477b6637d019aee72b149e1cd6d5a1fc0b27773d021d15e202e67c7e76296a69f92ab45e7bb93

diff --git a/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild b/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild
new file mode 100644
index 0000000..7013e77
--- /dev/null
+++ b/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit toolchain-funcs
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/cvsync/cvsync.git"
+	inherit git-2
+else
+	SRC_URI="mirror://gentoo/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+fi
+
+DESCRIPTION="portable CVS repository synchronization utility"
+HOMEPAGE="https://github.com/cvsync/cvsync"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="gcrypt mhash +openssl"
+REQUIRED_USE="!openssl? ( ^^ ( gcrypt mhash ) )"
+
+RDEPEND="sys-libs/zlib
+	openssl? ( dev-libs/openssl:0= )
+	!openssl? (
+		gcrypt? ( dev-libs/libgcrypt:0= )
+		mhash? ( app-crypt/mhash )
+	)"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+maint_pkg_create() {
+	cd "${S}"
+	local ver=$(date --date="$(git log -n1 --pretty=format:%ci HEAD)" -u "+%Y.%m.%d.%H%M%S")
+	local tar="${T}/${PN}-${ver}.tar.xz"
+	git archive --prefix "${PN}/" HEAD | xz > "${tar}" || die "creating tar failed"
+	einfo "Packaged tar now available:"
+	einfo "$(du -b "${tar}")"
+}
+
+src_unpack() {
+	if [[ ${PV} == "9999" ]] ; then
+		git-2_src_unpack
+		maint_pkg_create
+	else
+		default
+	fi
+}
+
+_emake() {
+	# USE flag settings are enforced by REQUIRED_USE.
+	local hash=$(usex openssl openssl $(usex gcrypt gcrypt mhash))
+
+	# Probably want to expand this at some point.
+	local host_os="Linux"
+
+	emake \
+		CC="$(tc-getCC)" \
+		ECHO="echo" \
+		TEST="test" \
+		INSTALL="install" \
+		HASH_TYPE="${hash}" \
+		HOST_OS="${host_os}" \
+		BINOWN="$(id -u)" \
+		BINGRP="$(id -g)" \
+		BINDIR="\$(PREFIX)/usr/bin" \
+		MANDIR="\$(PREFIX)/usr/share/man" \
+		"$@"
+}
+
+src_compile() {
+	_emake PREFIX="${EPREFIX}"
+}
+
+src_install() {
+	dodir /usr/bin /usr/share/man/man1
+	_emake PREFIX="${ED}" install
+	dodoc samples/*.conf
+}

diff --git a/dev-vcs/cvsync/cvsync-9999.ebuild b/dev-vcs/cvsync/cvsync-9999.ebuild
new file mode 100644
index 0000000..7013e77
--- /dev/null
+++ b/dev-vcs/cvsync/cvsync-9999.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit toolchain-funcs
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/cvsync/cvsync.git"
+	inherit git-2
+else
+	SRC_URI="mirror://gentoo/${P}.tar.xz"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+fi
+
+DESCRIPTION="portable CVS repository synchronization utility"
+HOMEPAGE="https://github.com/cvsync/cvsync"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="gcrypt mhash +openssl"
+REQUIRED_USE="!openssl? ( ^^ ( gcrypt mhash ) )"
+
+RDEPEND="sys-libs/zlib
+	openssl? ( dev-libs/openssl:0= )
+	!openssl? (
+		gcrypt? ( dev-libs/libgcrypt:0= )
+		mhash? ( app-crypt/mhash )
+	)"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}"
+
+maint_pkg_create() {
+	cd "${S}"
+	local ver=$(date --date="$(git log -n1 --pretty=format:%ci HEAD)" -u "+%Y.%m.%d.%H%M%S")
+	local tar="${T}/${PN}-${ver}.tar.xz"
+	git archive --prefix "${PN}/" HEAD | xz > "${tar}" || die "creating tar failed"
+	einfo "Packaged tar now available:"
+	einfo "$(du -b "${tar}")"
+}
+
+src_unpack() {
+	if [[ ${PV} == "9999" ]] ; then
+		git-2_src_unpack
+		maint_pkg_create
+	else
+		default
+	fi
+}
+
+_emake() {
+	# USE flag settings are enforced by REQUIRED_USE.
+	local hash=$(usex openssl openssl $(usex gcrypt gcrypt mhash))
+
+	# Probably want to expand this at some point.
+	local host_os="Linux"
+
+	emake \
+		CC="$(tc-getCC)" \
+		ECHO="echo" \
+		TEST="test" \
+		INSTALL="install" \
+		HASH_TYPE="${hash}" \
+		HOST_OS="${host_os}" \
+		BINOWN="$(id -u)" \
+		BINGRP="$(id -g)" \
+		BINDIR="\$(PREFIX)/usr/bin" \
+		MANDIR="\$(PREFIX)/usr/share/man" \
+		"$@"
+}
+
+src_compile() {
+	_emake PREFIX="${EPREFIX}"
+}
+
+src_install() {
+	dodir /usr/bin /usr/share/man/man1
+	_emake PREFIX="${ED}" install
+	dodoc samples/*.conf
+}

diff --git a/dev-vcs/cvsync/metadata.xml b/dev-vcs/cvsync/metadata.xml
new file mode 100644
index 0000000..d32f150
--- /dev/null
+++ b/dev-vcs/cvsync/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="person">
+	<email>vapier@gentoo.org</email>
+	<description>feel free to update</description>
+</maintainer>
+<use>
+	<flag name="gcrypt">Use <pkg>dev-libs/libgcrypt</pkg> for hash functions.</flag>
+	<flag name="mhash">Use <pkg>app-crypt/mhash</pkg> for hash functions.</flag>
+	<flag name="openssl">Use <pkg>dev-libs/openssl</pkg> for hash functions.</flag>
+</use>
+<upstream>
+	<remote-id type="github">cvsync/cvsync</remote-id>
+</upstream>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsync/
@ 2018-05-27 21:59 Johannes Huber
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Huber @ 2018-05-27 21:59 UTC (permalink / raw
  To: gentoo-commits

commit:     7a18398debd78be2f7a19cf4420dac5ca182671d
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Sun May 20 23:18:33 2018 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Sun May 27 21:59:33 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a18398d

dev-vcs/cvsync: git-2->git-r3

Package-Manager: Portage-2.3.38, Repoman-2.3.9
Signed-off-by: Johannes Huber <johu <AT> gentoo.org>

 dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild | 11 +++++------
 dev-vcs/cvsync/cvsync-9999.ebuild              | 11 +++++------
 2 files changed, 10 insertions(+), 12 deletions(-)

diff --git a/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild b/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild
index cda6f4f1692..f638af4de21 100644
--- a/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild
+++ b/dev-vcs/cvsync/cvsync-2014.08.24.014706.ebuild
@@ -1,16 +1,17 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=6
 
 inherit toolchain-funcs
 
 if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/cvsync/cvsync.git"
-	inherit git-2
+	inherit git-r3
 else
 	SRC_URI="mirror://gentoo/${P}.tar.xz"
 	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+	S="${WORKDIR}/${PN}"
 fi
 
 DESCRIPTION="portable CVS repository synchronization utility"
@@ -29,8 +30,6 @@ RDEPEND="sys-libs/zlib
 	)"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${PN}"
-
 maint_pkg_create() {
 	cd "${S}"
 	local ver=$(date --date="$(git log -n1 --pretty=format:%ci HEAD)" -u "+%Y.%m.%d.%H%M%S")
@@ -42,7 +41,7 @@ maint_pkg_create() {
 
 src_unpack() {
 	if [[ ${PV} == "9999" ]] ; then
-		git-2_src_unpack
+		git-r3_src_unpack
 		maint_pkg_create
 	else
 		default

diff --git a/dev-vcs/cvsync/cvsync-9999.ebuild b/dev-vcs/cvsync/cvsync-9999.ebuild
index cda6f4f1692..f638af4de21 100644
--- a/dev-vcs/cvsync/cvsync-9999.ebuild
+++ b/dev-vcs/cvsync/cvsync-9999.ebuild
@@ -1,16 +1,17 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=6
 
 inherit toolchain-funcs
 
 if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/cvsync/cvsync.git"
-	inherit git-2
+	inherit git-r3
 else
 	SRC_URI="mirror://gentoo/${P}.tar.xz"
 	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+	S="${WORKDIR}/${PN}"
 fi
 
 DESCRIPTION="portable CVS repository synchronization utility"
@@ -29,8 +30,6 @@ RDEPEND="sys-libs/zlib
 	)"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${PN}"
-
 maint_pkg_create() {
 	cd "${S}"
 	local ver=$(date --date="$(git log -n1 --pretty=format:%ci HEAD)" -u "+%Y.%m.%d.%H%M%S")
@@ -42,7 +41,7 @@ maint_pkg_create() {
 
 src_unpack() {
 	if [[ ${PV} == "9999" ]] ; then
-		git-2_src_unpack
+		git-r3_src_unpack
 		maint_pkg_create
 	else
 		default


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-27 21:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-28  4:48 [gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvsync/ Mike Frysinger
  -- strict thread matches above, loose matches on Subject: below --
2018-05-27 21:59 Johannes Huber

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox