From 12b520885b7d554650f0b6f6a2abee45e52eec6d Mon Sep 17 00:00:00 2001 From: "Rafael G. Martins" Date: Sun, 19 Nov 2017 02:25:12 +0100 Subject: app-text/blogc: Version bump Package-Manager: Portage-2.3.13, Repoman-2.3.3 --- app-text/blogc/Manifest | 2 +- app-text/blogc/blogc-0.12.0.ebuild | 57 ------------------------------------ app-text/blogc/blogc-0.13.0.ebuild | 59 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 58 deletions(-) delete mode 100644 app-text/blogc/blogc-0.12.0.ebuild create mode 100644 app-text/blogc/blogc-0.13.0.ebuild (limited to 'app-text') diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest index 07ca3150ed12..7506b789a5dc 100644 --- a/app-text/blogc/Manifest +++ b/app-text/blogc/Manifest @@ -1 +1 @@ -DIST blogc-0.12.0.tar.xz 290484 SHA256 85453c0184396f217ac95ae8ba70f0693b16f57321f82a09b7ff46d3a1d257ac SHA512 959610d6be23bbb011a881712deaa8100120a1a76c4cf4722716a915d55af7ca93ed416d3a39cb8fbad64e0693b64fbfe3055b1a7d012a003c05122a199a65b9 WHIRLPOOL 8ec096d2fbe537b29265dc92eea8b913e83396a6dc1629e9a86434e0e963ee4804183625c1a51b9730f7822175af77a0ad5297614518b86c25d22c9b54ef4300 +DIST blogc-0.13.0.tar.xz 314448 SHA256 e942648e6bd76b1fa51d3d9f4d5bffbc4fa2a6ce08d27e6f6fd09f4ce24a34af SHA512 bd18099503ff5c14218a4c8a56f0993c2df7d24a30f0e9e5db7fe324726c123335016ba4a19bff5daff3df3bdcb1d8cb032e3f328e5049141ea5fef534352aa9 WHIRLPOOL b5735b92bb40040b58989fc9bd9579197edab8d6339a6757ecde6971bf93c2f4d3153ef8f458cb3425e73e262b9e18acffb86584cebc1cb17b3a5fe03eafe81b diff --git a/app-text/blogc/blogc-0.12.0.ebuild b/app-text/blogc/blogc-0.12.0.ebuild deleted file mode 100644 index 8dfe5bbee967..000000000000 --- a/app-text/blogc/blogc-0.12.0.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="https://github.com/blogc/blogc.git" - inherit git-r3 autotools -fi - -DESCRIPTION="A blog compiler" -HOMEPAGE="https://blogc.rgm.io/" - -SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" -KEYWORDS="~amd64 ~x86" -if [[ ${PV} = *9999* ]]; then - SRC_URI="" - KEYWORDS="" - DEPEND="app-text/ronn" -fi - -LICENSE="BSD" -SLOT="0" -IUSE="git httpd test" - -RDEPEND=" - git? ( - dev-vcs/git ) - !dev-vcs/blogc-git-receiver - !www-servers/blogc-runserver" - -DEPEND="${DEPEND} - virtual/pkgconfig - test? ( - git? ( dev-vcs/git ) - dev-util/cmocka )" - -src_prepare() { - [[ ${PV} = *9999* ]] && eautoreconf - eapply_user - default -} - -src_configure() { - local myconf="" - if [[ ${PV} = *9999* ]]; then - myconf+="--enable-ronn" - else - myconf+="--disable-ronn" - fi - econf \ - $(use_enable test tests) \ - $(use_enable git git-receiver) \ - $(use_enable httpd runserver) \ - --disable-valgrind \ - ${myconf} -} diff --git a/app-text/blogc/blogc-0.13.0.ebuild b/app-text/blogc/blogc-0.13.0.ebuild new file mode 100644 index 000000000000..eab99becb995 --- /dev/null +++ b/app-text/blogc/blogc-0.13.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +if [[ ${PV} = *9999* ]]; then + EGIT_REPO_URI="https://github.com/blogc/blogc.git" + inherit git-r3 autotools +fi + +DESCRIPTION="A blog compiler" +HOMEPAGE="https://blogc.rgm.io/" + +SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz" +KEYWORDS="~amd64 ~x86" +if [[ ${PV} = *9999* ]]; then + SRC_URI="" + KEYWORDS="" + DEPEND="app-text/ronn" +fi + +LICENSE="BSD" +SLOT="0" +IUSE="git httpd make test" + +RDEPEND=" + git? ( + dev-vcs/git ) + !dev-vcs/blogc-git-receiver + !www-servers/blogc-runserver" + +DEPEND="${DEPEND} + virtual/pkgconfig + test? ( + git? ( dev-vcs/git ) + dev-util/cmocka )" + +src_prepare() { + [[ ${PV} = *9999* ]] && eautoreconf + eapply_user + default +} + +src_configure() { + local myconf="" + if [[ ${PV} = *9999* ]]; then + myconf+="--enable-ronn" + else + myconf+="--disable-ronn" + fi + econf \ + $(use_enable test tests) \ + $(use_enable git git-receiver) \ + $(use_enable make make) \ + $(use_enable httpd runserver) \ + --disable-make-embedded \ + --disable-valgrind \ + ${myconf} +} -- cgit v1.2.3-65-gdbad