[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/files/, dev-php/ming-php/, profiles/

2019-09-06 Thread Michał Górny
commit: 850ea70324772bee54e632ae8cfd8b60fa3a2046
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Sep  6 07:21:36 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Sep  6 07:23:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=850ea703

dev-php/ming-php: Remove last-rited pkg

Signed-off-by: Michał Górny  gentoo.org>

 dev-php/ming-php/Manifest|   1 -
 dev-php/ming-php/files/php_ext-config.m4 | 112 ---
 dev-php/ming-php/metadata.xml|  16 -
 dev-php/ming-php/ming-php-0.4.8.ebuild   |  47 -
 profiles/package.mask|   1 -
 5 files changed, 177 deletions(-)

diff --git a/dev-php/ming-php/Manifest b/dev-php/ming-php/Manifest
deleted file mode 100644
index 7bbefc2b77e..000
--- a/dev-php/ming-php/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ming-0_4_8.tar.gz 14908459 BLAKE2B 
df89beab98a7fbdcbefccad3a2fb013453405a7dba757131a61f06d9e40b7e1fe7beeadab42c113b12cff24b91cb1e76e9fabee0e1b4af58e2127eba13cc27bc
 SHA512 
e395acde9119ad32f4cedd500bcceee70bdd563222a41dda899cc318d5e34eb580abc38ac39c6dec7821913a0a70d2f953fc81f52255b623e34f7c3aaafbc9c0

diff --git a/dev-php/ming-php/files/php_ext-config.m4 
b/dev-php/ming-php/files/php_ext-config.m4
deleted file mode 100644
index 9f4cd19790b..000
--- a/dev-php/ming-php/files/php_ext-config.m4
+++ /dev/null
@@ -1,112 +0,0 @@
-PHP_LIBDIR=lib
-
-PHP_ARG_WITH(ming, for MING support,
-[  --with-ming[=DIR]   Include MING support])
-
-if test "$PHP_MING" != "no"; then
-  AC_CHECK_LIB(m, sin)
-
-  for i in $PHP_MING ../../src /usr/local /usr; do
-if test -f $i/$PHP_LIBDIR/libming.$SHLIB_SUFFIX_NAME || test -f 
$i/$PHP_LIBDIR/libming.a; then
-  MING_DIR=$i
-  break
-fi
-  done
-
-  if test -z "$MING_DIR"; then
-AC_MSG_ERROR(Please reinstall ming distribution. libming.(a|so) not found.)
-  fi
-
-  for i in ../../src $MING_DIR/include $MING_DIR/include/ming 
$MING_DIR/ming/include; do
-if test -f $i/ming.h; then
-  MING_INC_DIR=$i
-fi
-  done
-
-  if test -z "$MING_INC_DIR"; then
-AC_MSG_ERROR(Please reinstall ming distribution. ming.h not found.)
-  fi
-
-  PHP_CHECK_LIBRARY(ming, Ming_useSWFVersion, [
-AC_DEFINE(HAVE_MING,1,[ ])
-  ],[
-AC_MSG_ERROR([Ming library 0.2a or greater required.])
-  ],[
--L$MING_DIR/$PHP_LIBDIR
-  ])
-  
-  PHP_ADD_INCLUDE($MING_INC_DIR)
-  PHP_ADD_LIBRARY_WITH_PATH(ming, $MING_DIR/$PHP_LIBDIR, MING_SHARED_LIBADD)
-
-  old_CPPFLAGS=$CPPFLAGS
-  CPPFLAGS=-I$MING_INC_DIR
-  AC_MSG_CHECKING([for destroySWFBlock])
-  AC_TRY_RUN([
-#include "ming.h"
-int destroySWFBlock(int a, int b) {
-   return a+b;
-}
-int main() {
-   return destroySWFBlock(-1,1); /* returns 0 only if function is not yet 
defined */
-}
-  ],[
-AC_MSG_RESULT([missing])
-  ],[
-AC_DEFINE(HAVE_DESTROY_SWF_BLOCK,1,[ ])
-AC_MSG_RESULT([ok])
-  ],[
-AC_MSG_RESULT([unknown])
-  ]) 
-
-dnl Check Ming version (FIXME: if/when ming has some better way to detect the 
version..)
-  AC_EGREP_CPP(yes, [
-#include 
-#ifdef SWF_SOUND_COMPRESSION
-yes
-#endif
-  ], [
-AC_DEFINE(HAVE_NEW_MING,  1, [ ]) 
-dnl FIXME: This is now unconditional..better check coming later.
-  ])
-
-  dnl Check if SWFVideoStream_setFrameMode() is available
-  AC_TRY_COMPILE([
-#include 
-  ], [
-int main(void) { SWFVideoStream_setFrameMode(0, 0); return 0; }
-  ], [
-AC_DEFINE(HAVE_SWFVIDEOSTREAM_SETFRAMEMODE, 1, [Have 
SWFVideoStream_setFrameMode(SWFVideoStream, int)])
-  ], [])
-
-  dnl Check if SWFVideoStream_nextFrame() is available
-  AC_TRY_COMPILE([
-#include 
-  ], [
-int main(void) { SWFVideoStream_nextFrame(0); return 0; }
-  ], [
-AC_DEFINE(HAVE_SWFVIDEOSTREAM_NEXTFRAME, 1, [Have 
SWFVideoStream_nextFrame(SWFVideoStream)])
-  ], [])
-
-  dnl Check if SWFVideoStream_seek() is available
-  AC_TRY_COMPILE([
-#include 
-  ], [
-int main(void) { SWFVideoStream_seek(0, 0, 0); return 0; }
-  ], [
-AC_DEFINE(HAVE_SWFVIDEOSTREAM_SEEK, 1, [Have 
SWFVideoStream_seek(SWFVideoStream, int frame, int whence)])
-  ], [])
-
-
-  dnl Check if SWFMovie_output() accepts the 4th parameter
-  AC_TRY_COMPILE([
-#include 
-  ], [
-int main(void) { SWFMovie_output(NULL, NULL, NULL, 0); return 0; }
-  ], [
-AC_DEFINE(HAVE_MING_MOVIE_LEVEL, 1, [ ])
-  ], [])
-  CPPFLAGS=$old_CPPFLAGS
-
-  PHP_NEW_EXTENSION(ming, ming.c, $ext_shared)
-  PHP_SUBST(MING_SHARED_LIBADD)
-fi

diff --git a/dev-php/ming-php/metadata.xml b/dev-php/ming-php/metadata.xml
deleted file mode 100644
index 50367ee577f..000
--- a/dev-php/ming-php/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   grkni...@gentoo.org
-   Brian Evans
-   
-   
-   php-b...@gentoo.org
-   PHP
-   
-   
-   ming
-   libming/libming
-   
-

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 

[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/, dev-php/ming-php/files/

2019-06-07 Thread Brian Evans
commit: fee83c8bb54e1eb5de18293d18a31fe6c389a9ff
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Jun  7 16:41:36 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Jun  7 16:41:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee83c8b

dev-php/ming-php: Drop old

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Brian Evans  gentoo.org>

 dev-php/ming-php/Manifest|   1 -
 dev-php/ming-php/files/ming-php-54.patch | 479 ---
 dev-php/ming-php/ming-php-0.4.7.ebuild   |  46 ---
 3 files changed, 526 deletions(-)

diff --git a/dev-php/ming-php/Manifest b/dev-php/ming-php/Manifest
index 4b76d3849a3..7bbefc2b77e 100644
--- a/dev-php/ming-php/Manifest
+++ b/dev-php/ming-php/Manifest
@@ -1,2 +1 @@
-DIST ming-0_4_7.tar.gz 14903570 BLAKE2B 
48e7b3c2b8a81fa63da18dd140064c572efe563eb621f33b4bc57cdcad8d6cb828e8f62fc63b47144389b0eefa5b571c47e39013ec2724611d20e74928275213
 SHA512 
232cf45daabd7b60203c9382aa6568455a42ddcd1bd60eec9bfe3f5e80376fcc9ff6304efbafca1ac8a504e2e167bc394e4902e0d067303d9582551461e09d3c
 DIST ming-0_4_8.tar.gz 14908459 BLAKE2B 
df89beab98a7fbdcbefccad3a2fb013453405a7dba757131a61f06d9e40b7e1fe7beeadab42c113b12cff24b91cb1e76e9fabee0e1b4af58e2127eba13cc27bc
 SHA512 
e395acde9119ad32f4cedd500bcceee70bdd563222a41dda899cc318d5e34eb580abc38ac39c6dec7821913a0a70d2f953fc81f52255b623e34f7c3aaafbc9c0

diff --git a/dev-php/ming-php/files/ming-php-54.patch 
b/dev-php/ming-php/files/ming-php-54.patch
deleted file mode 100644
index 79e16740680..000
--- a/dev-php/ming-php/files/ming-php-54.patch
+++ /dev/null
@@ -1,479 +0,0 @@
 a/ming.c   2015-01-19 21:46:35.299042679 -0500
-+++ b/ming.c   2015-01-19 21:52:00.566380663 -0500
-@@ -370,7 +370,7 @@
- 
-   input = newSWFInput_file(file);
-   zend_list_addref(Z_LVAL_P(zfile));
--  zend_list_addref(zend_list_insert(input, le_swfinputp));
-+  zend_list_addref(zend_list_insert(input, le_swfinputp TSRMLS_CC));
-   return input;
- }
- /* }}} */
-@@ -410,7 +410,7 @@
- 
-   input = newSWFInput_bufferCopy((unsigned char *)data, data_len);
- 
--  ret = zend_list_insert(input, le_swfinputp);
-+  ret = zend_list_insert(input, le_swfinputp TSRMLS_CC);
-   object_init_ex(getThis(), input_class_entry_ptr);
-   add_property_resource(getThis(), "input", ret);
-   zend_list_addref(ret);
-@@ -449,7 +449,7 @@
- 
-   fc = newSWFFontCollection_fromFile(filename);
-   if(fc)  {
--  ret = zend_list_insert(fc, le_swffontcollectionp);
-+  ret = zend_list_insert(fc, le_swffontcollectionp TSRMLS_CC);
-   object_init_ex(getThis(), fontcollection_class_entry_ptr);
-   add_property_resource(getThis(), "fontcollection", ret);
-   zend_list_addref(ret);
-@@ -479,7 +479,7 @@
-   font = SWFFontCollection_getFont(getFontCollection(getThis() 
TSRMLS_CC), index);
- 
-   if(font != NULL) {
--  ret = zend_list_insert(font, le_swffontp);
-+  ret = zend_list_insert(font, le_swffontp TSRMLS_CC);
-   object_init_ex(return_value, font_class_entry_ptr);
-   add_property_resource(return_value, "font", ret);
-   zend_list_addref(ret);
-@@ -527,7 +527,7 @@
- 
-   font = newSWFBrowserFont(name);
-   if(font) {
--  ret = zend_list_insert(font, le_swfbrowserfontp);
-+  ret = zend_list_insert(font, le_swfbrowserfontp TSRMLS_CC);
-   object_init_ex(getThis(), browserfont_class_entry_ptr);
-   add_property_resource(getThis(), "browserfont", ret);
-   zend_list_addref(ret);
-@@ -573,7 +573,7 @@
-   WRONG_PARAM_COUNT;
-   }
- 
--  ret = zend_list_insert(cx, le_swfcxformp);
-+  ret = zend_list_insert(cx, le_swfcxformp TSRMLS_CC);
-   object_init_ex(getThis(), cxform_class_entry_ptr);
-   add_property_resource(getThis(), "cx", ret);
-   zend_list_addref(ret);
-@@ -736,7 +736,7 @@
-   init = newSWFInitAction_withId(getAction(zaction TSRMLS_CC), 
id);
-   }
- 
--  ret = zend_list_insert(init, le_swfinitactionp);
-+  ret = zend_list_insert(init, le_swfinitactionp TSRMLS_CC);
-   object_init_ex(getThis(), initaction_class_entry_ptr);
-   add_property_resource(getThis(), "initaction", ret);
-   zend_list_addref(ret);
-@@ -785,7 +785,7 @@
-   php_error_docref(NULL TSRMLS_CC, E_ERROR, "Couldn't compile 
actionscript");
-   }
-   
--  ret = zend_list_insert(action, le_swfactionp);
-+  ret = zend_list_insert(action, le_swfactionp TSRMLS_CC);
- 
-   object_init_ex(getThis(), action_class_entry_ptr);
-   add_property_resource(getThis(), "action", ret);
-@@ -863,7 +863,7 @@
-   input = newSWFInput_filename(Z_STRVAL_P(zfile));
-   if(input == NULL)
-   php_error(E_ERROR, "opening bitmap file failed");
--  

[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2019-06-07 Thread Thomas Deutschmann
commit: a32ed97e59703c5054c093d1208ff1b9b56dab70
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Jun  7 13:23:16 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Jun  7 14:08:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32ed97e

dev-php/ming-php: add PHP 7.3 support

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 656761cd0b1..91e42cafa68 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 PHP_EXT_NAME=ming
 MY_P="${PHP_EXT_NAME}-${PV//./_}"
-USE_PHP="php5-6 php7-0 php7-1 php7-2"
+USE_PHP="php5-6 php7-0 php7-1 php7-2 php7-3"
 PHP_EXT_S="${WORKDIR}/libming-${MY_P}/php_ext"
 inherit flag-o-matic php-ext-source-r3
 



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2019-03-03 Thread Sergei Trofimovich
commit: d93c6f81743446be882ae3515546ccbbb4f5b237
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Mar  3 09:29:21 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Mar  3 16:07:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93c6f81

dev-php/ming-php: stable 0.4.8 for hppa, bug #667074

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-php/ming-php/ming-php-0.4.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 9bee315bfb2..656761cd0b1 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-12-19 Thread Sergei Trofimovich
commit: 3b392a20cfa4fb1963880ee7c414b934dc46f367
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Dec 19 22:47:32 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Dec 19 22:47:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b392a20

dev-php/ming-php: stable 0.4.8 for ppc/ppc64, bug #667074

Tested-by: ernsteiswuerfel
Package-Manager: Portage-2.3.52, Repoman-2.3.12
RepoMan-Options: --include-arches="ppc ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index d1d6cf5f7eb..9bee315bfb2 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-10-23 Thread Markus Meier
commit: 7a530f371805c844678122e19a7e36a9fe42cc31
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Oct 23 18:47:08 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Oct 23 18:47:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a530f37

dev-php/ming-php: arm stable, bug #667074

Signed-off-by: Markus Meier  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="arm"

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 2a52fa37106..d1d6cf5f7eb 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-10-12 Thread Tobias Klausmann
commit: 17407d8020a11f0df6ba066ab0f100c1b21ca8d0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Oct 12 08:58:03 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Oct 12 08:58:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17407d80

dev-php/ming-php-0.4.8-r0: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/667074
Signed-off-by: Tobias Klausmann  gentoo.org>

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index c9c14810664..2a52fa37106 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-10-04 Thread Mikle Kolyada
commit: c564e12b167664272720eea9758e652ae408df06
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Thu Oct  4 08:07:26 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Thu Oct  4 08:07:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c564e12b

dev-php/ming-php: amd64 stable wrt bug #667074

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.11

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index cf00e72d61f..c9c14810664 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-09-30 Thread Sergei Trofimovich
commit: 9de6374f1811c4744be8f176028e806eaac94e42
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 30 21:32:03 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 30 21:37:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9de6374f

dev-php/ming-php: stable 0.4.8 for ia64, bug #667074

Signed-off-by: Sergei Trofimovich  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 dev-php/ming-php/ming-php-0.4.8.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 576b65bf172..8d485f465da 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-09-26 Thread Sergei Trofimovich
commit: 2d7c2c32f174405ce332b3bbf927d99a4c28756a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Sep 26 05:55:10 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Sep 26 06:22:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d7c2c32

dev-php/ming-php: stable 0.4.8 for sparc, bug #667074

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 dev-php/ming-php/ming-php-0.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 13db203b5ab..576b65bf172 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/, dev-php/ming-php/files/

2018-03-22 Thread Brian Evans
commit: d350f925022b7c5dfd657a41a142aa8b55bb8cf6
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Mar 22 17:02:54 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Mar 22 17:03:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d350f925

dev-php/ming-php: Fix errors on src_prepare wrt eclass changes

Closes: https://bugs.gentoo.org/651160
Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-php/ming-php/files/ming-php-54.patch |  4 ++--
 dev-php/ming-php/ming-php-0.4.7.ebuild   | 25 +++--
 dev-php/ming-php/ming-php-0.4.8.ebuild   | 23 ++-
 3 files changed, 23 insertions(+), 29 deletions(-)

diff --git a/dev-php/ming-php/files/ming-php-54.patch 
b/dev-php/ming-php/files/ming-php-54.patch
index 45036df73eb..79e16740680 100644
--- a/dev-php/ming-php/files/ming-php-54.patch
+++ b/dev-php/ming-php/files/ming-php-54.patch
@@ -1,5 +1,5 @@
 ming.c.orig2015-01-19 21:46:35.299042679 -0500
-+++ ming.c 2015-01-19 21:52:00.566380663 -0500
+--- a/ming.c   2015-01-19 21:46:35.299042679 -0500
 b/ming.c   2015-01-19 21:52:00.566380663 -0500
 @@ -370,7 +370,7 @@
  
input = newSWFInput_file(file);

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index 39946c8462e..3c335f1e51c 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 PHP_EXT_NAME=ming
 MY_P="${PHP_EXT_NAME}-${PV//./_}"
 USE_PHP="php5-6"
-PHP_EXT_S="libming-${MY_P}/php_ext"
+PHP_EXT_S="${WORKDIR}/libming-${MY_P}/php_ext"
 inherit flag-o-matic php-ext-source-r3
 
 DESCRIPTION="PHP extension for the ming Flash movie generation library"
@@ -22,22 +22,19 @@ RDEPEND="media-libs/ming"
 DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/libming-${MY_P}"
+PATCHES=( "${FILESDIR}/ming-php-54.patch" )
 
 src_prepare() {
-   local slot orig_s="${PHP_EXT_S}" libdir=$(get_libdir)
-   for slot in $(php_get_slots); do
-   cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
-   die "Failed to copy config.m4 to target"
-   rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
-   # Fix for SYMYLINK_LIB=no
-   [[ ${libdir} != 'lib' ]] && \
-   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${WORKDIR}/${slot}/config.m4" \
+   local libdir=$(get_libdir)
+   cp "${FILESDIR}/php_ext-config.m4" "${PHP_EXT_S}/config.m4" || \
+   die "Failed to copy config.m4 to target"
+   rm "${PHP_EXT_S}/Makefile.am" || die "Failed to remove Makefile.am for 
${slot}"
+   # Fix for SYMYLINK_LIB=no
+   if [[ ${libdir} != 'lib' ]] ; then
+   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${PHP_EXT_S}/config.m4" \
|| die "Failed to update lib directory"
-   php_init_slot_env ${slot}
-   eapply -p0 "${FILESDIR}/ming-php-54.patch"
-   eapply_user
-   php-ext-source-r3_phpize
-   done
+   fi
+   php-ext-source-r3_src_prepare
 }
 
 src_configure() {

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index b729af51dad..13db203b5ab 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 PHP_EXT_NAME=ming
 MY_P="${PHP_EXT_NAME}-${PV//./_}"
 USE_PHP="php5-6 php7-0 php7-1 php7-2"
-PHP_EXT_S="libming-${MY_P}/php_ext"
+PHP_EXT_S="${WORKDIR}/libming-${MY_P}/php_ext"
 inherit flag-o-matic php-ext-source-r3
 
 DESCRIPTION="PHP extension for the ming Flash movie generation library"
@@ -26,19 +26,16 @@ S="${WORKDIR}/libming-${MY_P}"
 DOCS=( )
 
 src_prepare() {
-   local slot orig_s="${PHP_EXT_S}" libdir=$(get_libdir)
-   for slot in $(php_get_slots); do
-   cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
-   die "Failed to copy config.m4 to target"
-   rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
-   # Fix for SYMYLINK_LIB=no
-   [[ ${libdir} != 'lib' ]] && \
-   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${WORKDIR}/${slot}/config.m4" \
+   local libdir=$(get_libdir)
+   cp "${FILESDIR}/php_ext-config.m4" "${PHP_EXT_S}/config.m4" || \
+   die "Failed to copy config.m4 to target"
+   rm "${PHP_EXT_S}/Makefile.am" || die "Failed to remove Makefile.am for 
${slot}"
+   # Fix for SYMYLINK_LIB=no
+   if [[ ${libdir} != 'lib' ]] ; then
+   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${PHP_EXT_S}/config.m4" \
|| die "Failed to update lib directory"
-   php_init_slot_env ${slot}
-   eapply_user
-   php-ext-source-r3_phpize
-   done
+   fi
+   

[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2018-01-10 Thread Brian Evans
commit: 16e807c417f55f10416e059a451d3183c7ba81ad
Author: Brian Evans  gentoo  org>
AuthorDate: Wed Jan 10 20:08:05 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Wed Jan 10 20:08:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16e807c4

dev-php/ming-php: Fix building with SYMLINK_LIB=no

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-php/ming-php/ming-php-0.4.7.ebuild | 8 ++--
 dev-php/ming-php/ming-php-0.4.8.ebuild | 6 +-
 2 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index e299530c8be..39946c8462e 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -24,11 +24,15 @@ DEPEND="${RDEPEND}"
 S="${WORKDIR}/libming-${MY_P}"
 
 src_prepare() {
-   local slot orig_s="${PHP_EXT_S}"
+   local slot orig_s="${PHP_EXT_S}" libdir=$(get_libdir)
for slot in $(php_get_slots); do
cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
die "Failed to copy config.m4 to target"
rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
+   # Fix for SYMYLINK_LIB=no
+   [[ ${libdir} != 'lib' ]] && \
+   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${WORKDIR}/${slot}/config.m4" \
+   || die "Failed to update lib directory"
php_init_slot_env ${slot}
eapply -p0 "${FILESDIR}/ming-php-54.patch"
eapply_user

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
index 12bf8ee1dcc..b729af51dad 100644
--- a/dev-php/ming-php/ming-php-0.4.8.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -26,11 +26,15 @@ S="${WORKDIR}/libming-${MY_P}"
 DOCS=( )
 
 src_prepare() {
-   local slot orig_s="${PHP_EXT_S}"
+   local slot orig_s="${PHP_EXT_S}" libdir=$(get_libdir)
for slot in $(php_get_slots); do
cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
die "Failed to copy config.m4 to target"
rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
+   # Fix for SYMYLINK_LIB=no
+   [[ ${libdir} != 'lib' ]] && \
+   sed -i -e "s~PHP_LIBDIR=lib~PHP_LIBDIR=${libdir}~" 
"${WORKDIR}/${slot}/config.m4" \
+   || die "Failed to update lib directory"
php_init_slot_env ${slot}
eapply_user
php-ext-source-r3_phpize



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-12-31 Thread Brian Evans
commit: 84dbf9fc45fd6e6eb486e844f659da9cb2f50a8a
Author: Brian Evans  gentoo  org>
AuthorDate: Mon Jan  1 03:58:26 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Mon Jan  1 03:58:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84dbf9fc

dev-php/ming-php: Version bump for 0.4.8

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 dev-php/ming-php/Manifest  |  1 +
 dev-php/ming-php/ming-php-0.4.8.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-php/ming-php/Manifest b/dev-php/ming-php/Manifest
index 0273343eeea..4b76d3849a3 100644
--- a/dev-php/ming-php/Manifest
+++ b/dev-php/ming-php/Manifest
@@ -1 +1,2 @@
 DIST ming-0_4_7.tar.gz 14903570 BLAKE2B 
48e7b3c2b8a81fa63da18dd140064c572efe563eb621f33b4bc57cdcad8d6cb828e8f62fc63b47144389b0eefa5b571c47e39013ec2724611d20e74928275213
 SHA512 
232cf45daabd7b60203c9382aa6568455a42ddcd1bd60eec9bfe3f5e80376fcc9ff6304efbafca1ac8a504e2e167bc394e4902e0d067303d9582551461e09d3c
+DIST ming-0_4_8.tar.gz 14908459 BLAKE2B 
df89beab98a7fbdcbefccad3a2fb013453405a7dba757131a61f06d9e40b7e1fe7beeadab42c113b12cff24b91cb1e76e9fabee0e1b4af58e2127eba13cc27bc
 SHA512 
e395acde9119ad32f4cedd500bcceee70bdd563222a41dda899cc318d5e34eb580abc38ac39c6dec7821913a0a70d2f953fc81f52255b623e34f7c3aaafbc9c0

diff --git a/dev-php/ming-php/ming-php-0.4.8.ebuild 
b/dev-php/ming-php/ming-php-0.4.8.ebuild
new file mode 100644
index 000..12bf8ee1dcc
--- /dev/null
+++ b/dev-php/ming-php/ming-php-0.4.8.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PHP_EXT_NAME=ming
+MY_P="${PHP_EXT_NAME}-${PV//./_}"
+USE_PHP="php5-6 php7-0 php7-1 php7-2"
+PHP_EXT_S="libming-${MY_P}/php_ext"
+inherit flag-o-matic php-ext-source-r3
+
+DESCRIPTION="PHP extension for the ming Flash movie generation library"
+HOMEPAGE="http://ming.sourceforge.net/;
+SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE=""
+
+RDEPEND="media-libs/ming"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/libming-${MY_P}"
+# Clear out near-empty README files which are not helpful to the user
+DOCS=( )
+
+src_prepare() {
+   local slot orig_s="${PHP_EXT_S}"
+   for slot in $(php_get_slots); do
+   cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
+   die "Failed to copy config.m4 to target"
+   rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
+   php_init_slot_env ${slot}
+   eapply_user
+   php-ext-source-r3_phpize
+   done
+}
+
+src_configure() {
+   # build is sensitive to -O3 (bug #297437)
+   replace-flags -O3 -O2
+
+   local PHP_EXT_EXTRA_ECONF="--with-ming=${S}"
+   php-ext-source-r3_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-03-28 Thread Michael Orlitzky
commit: ebb955c71652cc146659e44c8abe5cf11d31e5a8
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Mar 29 01:43:50 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Mar 29 01:45:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebb955c7

dev-php/ming-php: remove unused version 0.4.5.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-php/ming-php/Manifest  |  1 -
 dev-php/ming-php/ming-php-0.4.5.ebuild | 44 --
 2 files changed, 45 deletions(-)

diff --git a/dev-php/ming-php/Manifest b/dev-php/ming-php/Manifest
index ab75f7d7594..88c6ea1dba6 100644
--- a/dev-php/ming-php/Manifest
+++ b/dev-php/ming-php/Manifest
@@ -1,2 +1 @@
-DIST ming-0.4.5.tar.bz2 14234048 SHA256 
82da089bdfc3a7fcb732dc11c11a35003ee270d5102d4043d61ea69834239aeb SHA512 
9e5a2fb558841e72a072e2c29a0871dc7056ab57f1e6feca864b9b0961841334c4d2c6bc731bc4e043eb96b63fb946738cb1b8b54ef45679fcbf9bcf82adea31
 WHIRLPOOL 
2315adb1ed2b8878843ce5eef54f7c4386a69c809820aa4d2040fe4d94c0fa367cc57966a78e327f6a578c99b3ed4b1fa5d352106df9283f3b2d7f87a1178203
 DIST ming-0_4_7.tar.gz 14903570 SHA256 
118aa1338dd74b34dd2cd22bce286ca0571e8b9aa433999646d1c0157ea9a7dc SHA512 
232cf45daabd7b60203c9382aa6568455a42ddcd1bd60eec9bfe3f5e80376fcc9ff6304efbafca1ac8a504e2e167bc394e4902e0d067303d9582551461e09d3c
 WHIRLPOOL 
075794f170e7f529ba79a66af4504745da786d7cd73e9673ffd4c48e943fbc8bf1f952f1cc0b0b7b0ca1e26a3bdb255feeaaeb675032616d2060c40f19d4dbdd

diff --git a/dev-php/ming-php/ming-php-0.4.5.ebuild 
b/dev-php/ming-php/ming-php-0.4.5.ebuild
deleted file mode 100644
index 65e96b873b0..000
--- a/dev-php/ming-php/ming-php-0.4.5.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PHP_EXT_NAME=ming
-MY_P="${PHP_EXT_NAME}-${PV}"
-USE_PHP="php5-4 php5-5 php5-6"
-PHP_EXT_S="${MY_P}/php_ext"
-inherit flag-o-matic php-ext-source-r2
-
-DESCRIPTION="PHP extension for the ming Flash movie generation library"
-HOMEPAGE="http://ming.sourceforge.net/;
-SRC_URI="mirror://sourceforge/ming/${MY_P}.tar.bz2"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
-IUSE=""
-
-RDEPEND="media-libs/ming"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   local slot orig_s="${PHP_EXT_S}"
-   for slot in $(php_get_slots); do
-   cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
-   die "Failed to copy config.m4 to target"
-   rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
-   php_init_slot_env ${slot}
-   epatch "${FILESDIR}/ming-php-54.patch"
-   php-ext-source-r2_phpize
-   done
-}
-
-src_configure() {
-   # build is sensitive to -O3 (bug #297437)
-   replace-flags -O3 -O2
-
-   local my_conf="--with-ming=${S}"
-   php-ext-source-r2_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-03-28 Thread Jeroen Roovers
commit: 5dfc2d0b2fecafeeb813aae9b7f808baed6cf235
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Mar 29 01:41:11 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Mar 29 01:41:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dfc2d0b

dev-php/ming-php: Stable for HPPA (bug #606106).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches

 dev-php/ming-php/ming-php-0.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index 5ab165e7413..e299530c8be 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-02-21 Thread Markus Meier
commit: cf0c34920f4039e0163ce7c424a79c81ea9eefe5
Author: Markus Meier  gentoo  org>
AuthorDate: Tue Feb 21 20:40:41 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Tue Feb 21 20:40:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf0c3492

dev-php/ming-php: arm stable, bug #606106

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-php/ming-php/ming-php-0.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index fe1f1346c2..34437850df 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-01-25 Thread Tobias Klausmann
commit: 756afccdafedf89b023677049efc5626a5abcbb7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Wed Jan 25 08:59:56 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Wed Jan 25 08:59:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=756afccd

dev-php/ming-php-0.4.7-r0: stable on alpha

Gentoo-Bug: 606106

 dev-php/ming-php/ming-php-0.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index c382be1..fe1f134 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2017-01-18 Thread Agostino Sarubbo
commit: d2ae19b606e52be2652700e3e985ec22da30b072
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Jan 18 11:28:30 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Jan 18 11:28:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ae19b6

dev-php/ming-php: amd64 stable wrt bug #606106

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/ming-php/ming-php-0.4.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
index 5b99a6b..168774e 100644
--- a/dev-php/ming-php/ming-php-0.4.7.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2016-12-09 Thread Brian Evans
commit: c2d8f1d8c373967d2532ce31d51c24a1e9cfe188
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Dec  9 17:46:57 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Dec  9 17:46:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d8f1d8

dev-php/ming-php: Version bump to match upstream

The code has not been modified from 0.4.5 (and in fact for several years)

Package-Manager: portage-2.3.3

 dev-php/ming-php/Manifest  |  1 +
 dev-php/ming-php/ming-php-0.4.7.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-php/ming-php/Manifest b/dev-php/ming-php/Manifest
index 9ec5a39..ab75f7d 100644
--- a/dev-php/ming-php/Manifest
+++ b/dev-php/ming-php/Manifest
@@ -1 +1,2 @@
 DIST ming-0.4.5.tar.bz2 14234048 SHA256 
82da089bdfc3a7fcb732dc11c11a35003ee270d5102d4043d61ea69834239aeb SHA512 
9e5a2fb558841e72a072e2c29a0871dc7056ab57f1e6feca864b9b0961841334c4d2c6bc731bc4e043eb96b63fb946738cb1b8b54ef45679fcbf9bcf82adea31
 WHIRLPOOL 
2315adb1ed2b8878843ce5eef54f7c4386a69c809820aa4d2040fe4d94c0fa367cc57966a78e327f6a578c99b3ed4b1fa5d352106df9283f3b2d7f87a1178203
+DIST ming-0_4_7.tar.gz 14903570 SHA256 
118aa1338dd74b34dd2cd22bce286ca0571e8b9aa433999646d1c0157ea9a7dc SHA512 
232cf45daabd7b60203c9382aa6568455a42ddcd1bd60eec9bfe3f5e80376fcc9ff6304efbafca1ac8a504e2e167bc394e4902e0d067303d9582551461e09d3c
 WHIRLPOOL 
075794f170e7f529ba79a66af4504745da786d7cd73e9673ffd4c48e943fbc8bf1f952f1cc0b0b7b0ca1e26a3bdb255feeaaeb675032616d2060c40f19d4dbdd

diff --git a/dev-php/ming-php/ming-php-0.4.7.ebuild 
b/dev-php/ming-php/ming-php-0.4.7.ebuild
new file mode 100644
index ..5b99a6b
--- /dev/null
+++ b/dev-php/ming-php/ming-php-0.4.7.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PHP_EXT_NAME=ming
+MY_P="${PHP_EXT_NAME}-${PV//./_}"
+USE_PHP="php5-6"
+PHP_EXT_S="libming-${MY_P}/php_ext"
+inherit flag-o-matic php-ext-source-r3
+
+DESCRIPTION="PHP extension for the ming Flash movie generation library"
+HOMEPAGE="http://ming.sourceforge.net/;
+SRC_URI="https://github.com/libming/libming/archive/${MY_P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE=""
+
+RDEPEND="media-libs/ming"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/libming-${MY_P}"
+
+src_prepare() {
+   local slot orig_s="${PHP_EXT_S}"
+   for slot in $(php_get_slots); do
+   cp "${FILESDIR}/php_ext-config.m4" 
"${WORKDIR}/${slot}/config.m4" || \
+   die "Failed to copy config.m4 to target"
+   rm "${WORKDIR}/${slot}/Makefile.am" || die "Failed to remove 
Makefile.am for ${slot}"
+   php_init_slot_env ${slot}
+   eapply -p0 "${FILESDIR}/ming-php-54.patch"
+   eapply_user
+   php-ext-source-r3_phpize
+   done
+}
+
+src_configure() {
+   # build is sensitive to -O3 (bug #297437)
+   replace-flags -O3 -O2
+
+   local PHP_EXT_EXTRA_ECONF="--with-ming=${S}"
+   php-ext-source-r3_src_configure
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2016-11-03 Thread Pacho Ramos
commit: 8a908d4f4c7b75f11eb10b05c76d618da63edd04
Author: Pacho Ramos  gentoo  org>
AuthorDate: Thu Nov  3 11:41:35 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Thu Nov  3 12:07:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a908d4f

dev-php/ming-php: amd64/x86 stable, bug #544556

Package-Manager: portage-2.3.2

 dev-php/ming-php/ming-php-0.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.5.ebuild 
b/dev-php/ming-php/ming-php-0.4.5.ebuild
index 003a9ff..636da8e 100644
--- a/dev-php/ming-php/ming-php-0.4.5.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.5.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/ming/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2016-07-03 Thread Jeroen Roovers
commit: 9f04d05bd76fd9eed37dd07df4c48dc8c1230deb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Jul  3 10:40:44 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Jul  3 10:40:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f04d05b

dev-php/ming-php: Stable for HPPA PPC64 (bug #544556).

Package-Manager: portage-2.3.0
RepoMan-Options: --ignore-arches

 dev-php/ming-php/ming-php-0.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.5.ebuild 
b/dev-php/ming-php/ming-php-0.4.5.ebuild
index e58bf2b..003a9ff 100644
--- a/dev-php/ming-php/ming-php-0.4.5.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.5.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/ming/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2016-06-08 Thread Markus Meier
commit: a845e1293b8701cf7d10d2e96f832fc8e8321f2d
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Jun  8 20:08:42 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Jun  8 20:08:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a845e129

dev-php/ming-php: arm stable, bug #544556

Package-Manager: portage-2.3.0_rc1
RepoMan-Options: --include-arches="arm"

 dev-php/ming-php/ming-php-0.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/ming-php/ming-php-0.4.5.ebuild 
b/dev-php/ming-php/ming-php-0.4.5.ebuild
index 39cebb9..e58bf2b 100644
--- a/dev-php/ming-php/ming-php-0.4.5.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.5.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/ming/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"



[gentoo-commits] repo/gentoo:master commit in: dev-php/ming-php/

2016-05-23 Thread Tobias Klausmann
commit: 86d03018a11ed30fc926098cfb4d14434b35ebc4
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon May 23 08:54:14 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon May 23 08:54:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86d03018

dev-php/ming-php-0.4.5-r0: add alpha keyword

Gentoo-Bug: 544556

Package-Manager: portage-2.3.0_rc1

 dev-php/ming-php/ming-php-0.4.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-php/ming-php/ming-php-0.4.5.ebuild 
b/dev-php/ming-php/ming-php-0.4.5.ebuild
index db29ac7..39cebb9 100644
--- a/dev-php/ming-php/ming-php-0.4.5.ebuild
+++ b/dev-php/ming-php/ming-php-0.4.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ SRC_URI="mirror://sourceforge/ming/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="media-libs/ming"