public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-text/discount: discount-2.1.8a.ebuild ChangeLog
@ 2015-07-12  3:59 Nathan Phillip Brink (binki)
  0 siblings, 0 replies; 2+ messages in thread
From: Nathan Phillip Brink (binki) @ 2015-07-12  3:59 UTC (permalink / raw
  To: gentoo-commits

binki       15/07/12 03:59:23

  Modified:             ChangeLog
  Added:                discount-2.1.8a.ebuild
  Log:
  Bump to discount-2.1.8a and add DISCOUNT_EXTRA_CONFIGURE_SH support for bug #554322 and bug #554520.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)

Revision  Changes    Path
1.11                 app-text/discount/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	19 Jan 2014 20:05:54 -0000	1.10
+++ ChangeLog	12 Jul 2015 03:59:23 -0000	1.11
@@ -1,6 +1,12 @@
 # ChangeLog for app-text/discount
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v 1.10 2014/01/19 20:05:54 pacho Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v 1.11 2015/07/12 03:59:23 binki Exp $
+
+*discount-2.1.8a (12 Jul 2015)
+
+  12 Jul 2015; Nathan Phillip Brink <binki@gentoo.org> +discount-2.1.8a.ebuild:
+  Bump to discount-2.1.8a and add DISCOUNT_EXTRA_CONFIGURE_SH support for bug
+  #554322 and bug #554520.
 
   19 Jan 2014; Pacho Ramos <pacho@gentoo.org> discount-2.1.6-r1.ebuild:
   ia64 stable, bug #488810 (thanks to Emeric Maschino for testing)



1.1                  app-text/discount/discount-2.1.8a.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild?rev=1.1&content-type=text/plain

Index: discount-2.1.8a.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild,v 1.1 2015/07/12 03:59:23 binki Exp $

EAPI=5

inherit eutils multilib

DESCRIPTION="An implementation of John Gruber's Markdown text to html language written in C"
HOMEPAGE="http://www.pell.portland.or.us/~orc/Code/discount/"
SRC_URI="http://www.pell.portland.or.us/~orc/Code/${PN}/${P}.tar.bz2"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="minimal"

src_prepare() {
	# for QA, we remove the Makefile’s usage of install -s.
	# Drop ldconfig invocation.
	# Force “librarian.sh” to respect LDFLAGS ($FLAGS should have CFLAGS
	# at that point).
	sed -i \
		-e '/INSTALL_PROGRAM/s,-s ,,' \
		-e 's/\(LDCONFIG=\).*/\1:/' \
		-e 's/\(.\)\$FLAGS/& \1$LDFLAGS/' \
		configure.inc || die "sed configure.inc failed"

	# Add LDFLAGS and CPPFLAGS hackily.
	sed -i \
		-e 's/^CC[ \t]*=.*/& $(CPPFLAGS)/' \
		-e 's/^LFLAGS[ \t]*=.*/& $(LDFLAGS)/' \
		Makefile.in || die "Cannot fix LDFLAGS and CPPFLAGS"
}

src_configure() {
	# How econf() handles quoted whitespace. This should go away next
	# release of discount.
	eval "local -a DISCOUNT_EXTRA_CONFIGURE_SH=(${DISCOUNT_EXTRA_CONFIGURE_SH})"

	local configure_call=(
		./configure.sh
		--libdir="${EPREFIX}"usr/"$(get_libdir)"
		--prefix="${EPREFIX}"usr
		--mandir="${EPREFIX}"usr/share/man
		--shared
		$(usex minimal '' --enable-all-features)
		# Because a lot of discount features are exposed through
		# ./configure.sh flags that, in the future, won’t be, I will
		# respect DISCOUNT_EXTRA_CONFIGURE_SH as a workaround pending
		# upstream https://github.com/Orc/discount/issues/124 for bug
		# #554520.
		"${DISCOUNT_EXTRA_CONFIGURE_SH[@]}"
	)
	einfo "Running ${configure_call[@]} || die"
	"${configure_call[@]}" || die
}

src_install() {
	emake \
		DESTDIR="${D}" \
		$(usex minimal install install.everything) \
		SAMPLE_PFX="${PN}-"
}

pkg_postinst() {
	if ! use minimal; then
		elog "Sample binaries with overly-generic names have been"
		elog "prefixed with \"${PN}-\". Please see"
		elog "https://github.com/Orc/discount/issues/81 for discussion."
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in app-text/discount: discount-2.1.8a.ebuild ChangeLog
@ 2015-07-12  4:13 Nathan Phillip Brink (binki)
  0 siblings, 0 replies; 2+ messages in thread
From: Nathan Phillip Brink (binki) @ 2015-07-12  4:13 UTC (permalink / raw
  To: gentoo-commits

binki       15/07/12 04:13:36

  Modified:             discount-2.1.8a.ebuild ChangeLog
  Log:
  Add some requested elog() about DISCOUNT_EXTRA_CONFIGURE_SH for bug #554520.
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 743A52E86BA81050)

Revision  Changes    Path
1.2                  app-text/discount/discount-2.1.8a.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild?r1=1.1&r2=1.2

Index: discount-2.1.8a.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- discount-2.1.8a.ebuild	12 Jul 2015 03:59:23 -0000	1.1
+++ discount-2.1.8a.ebuild	12 Jul 2015 04:13:36 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild,v 1.1 2015/07/12 03:59:23 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/discount/discount-2.1.8a.ebuild,v 1.2 2015/07/12 04:13:36 binki Exp $
 
 EAPI=5
 
@@ -69,4 +69,7 @@
 		elog "prefixed with \"${PN}-\". Please see"
 		elog "https://github.com/Orc/discount/issues/81 for discussion."
 	fi
+	# This should also go away after 2.1.8a…
+	elog "To configure advanced options, use DISCOUNT_EXTRA_CONFIGURE_SH"
+	elog "and see https://bugs.gentoo.org/554520."
 }



1.12                 app-text/discount/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/discount/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	12 Jul 2015 03:59:23 -0000	1.11
+++ ChangeLog	12 Jul 2015 04:13:36 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for app-text/discount
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v 1.11 2015/07/12 03:59:23 binki Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/discount/ChangeLog,v 1.12 2015/07/12 04:13:36 binki Exp $
+
+  12 Jul 2015; Nathan Phillip Brink <binki@gentoo.org> discount-2.1.8a.ebuild:
+  Add some requested elog() about DISCOUNT_EXTRA_CONFIGURE_SH for bug #554520.
 
 *discount-2.1.8a (12 Jul 2015)
 





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

end of thread, other threads:[~2015-07-12  4:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-12  4:13 [gentoo-commits] gentoo-x86 commit in app-text/discount: discount-2.1.8a.ebuild ChangeLog Nathan Phillip Brink (binki)
  -- strict thread matches above, loose matches on Subject: below --
2015-07-12  3:59 Nathan Phillip Brink (binki)

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