public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] RFC: fortran-2.eclass - Support for bin package system without compiler
@ 2013-07-18  7:07 Justin
  2013-07-18  7:12 ` Michał Górny
  0 siblings, 1 reply; 7+ messages in thread
From: Justin @ 2013-07-18  7:07 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 1787 bytes --]

Hello,

I would like to add support for MERGE_TYPE=binary. Therefore I like to
deprecate EAPI < 4 on long term and use MERGE_TYPE now for EAPIs which
support it.

Thanks
Justin

Index: fortran-2.eclass
===================================================================
RCS file: /var/cvsroot/gentoo-x86/eclass/fortran-2.eclass,v
retrieving revision 1.18
diff -u -B -b -u -p -r1.18 fortran-2.eclass
--- fortran-2.eclass  18 Jul 2013 07:03:33 -0000  1.18
+++ fortran-2.eclass  18 Jul 2013 07:06:41 -0000
@@ -203,11 +203,11 @@ _fortran_test_function() {
   fi
 }

-# @FUNCTION: fortran-2_pkg_setup
+# @FUNCTION: _fortran-2_pkg_setup
+# @INTERNAL
 # @DESCRIPTION:
-# Setup functionallity,
-# checks for a valid fortran compiler and optionally for its openmp
support.
-fortran-2_pkg_setup() {
+# _The_ fortran-2_pkg_setup()
+_fortran-2_pkg_setup() {
   for _f_use in ${FORTRAN_NEEDED}; do
       case ${_f_use} in
           always)
@@ -229,6 +229,29 @@ fortran-2_pkg_setup() {
   done
 }

+
+# @FUNCTION: fortran-2_pkg_setup
+# @DESCRIPTION:
+# Setup functionallity,
+# checks for a valid fortran compiler and optionally for its openmp
support.
+fortran-2_pkg_setup() {
+ if [[ ${EAPI:-0} -lt 4 ]]; then
+     eqawarn "The fortran-2.eclass is going to deprecate support for"
+     eqawarn "EAPI < 4. Please migrate your package to a higher EAPI"
+     eqawarn "or file a bug at https://bugs.gentoo.org"
+ fi
+
+ case ${EAPI:-0} in
+     0|1|2|3)
+         _fortran-2_pkg_setup ;;
+     4|5)
+         if [[ ${MERGE_TYPE} != binary ]]; then
+             _fortran-2_pkg_setup
+         fi
+         ;;
+ esac
+}
+
 case ${EAPI:-0} in
   0|1|2|3|4|5) EXPORT_FUNCTIONS pkg_setup ;;
   *) die "EAPI=${EAPI} is not supported" ;;


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 901 bytes --]

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

end of thread, other threads:[~2013-07-18 15:50 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-18  7:07 [gentoo-dev] RFC: fortran-2.eclass - Support for bin package system without compiler Justin
2013-07-18  7:12 ` Michał Górny
2013-07-18  7:28   ` Justin
2013-07-18  8:25     ` [gentoo-dev] " Duncan
2013-07-18  8:44       ` Justin
2013-07-18 15:39         ` Donnie Berkholz
2013-07-18 15:50           ` Justin

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