public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Amy Winston" <amynka@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/
Date: Sun,  2 Oct 2016 20:09:26 +0000 (UTC)	[thread overview]
Message-ID: <1475438313.4aaec36f0eb3afd0ce61d696016967d964a59db2.amynka@gentoo> (raw)

commit:     4aaec36f0eb3afd0ce61d696016967d964a59db2
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Sep 30 15:11:58 2016 +0000
Commit:     Amy Winston <amynka <AT> gentoo <DOT> org>
CommitDate: Sun Oct  2 19:58:33 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aaec36f

dev-tcltk/tdom: remove unused patches

 dev-tcltk/tdom/files/tdom-0.8.2-expat.patch  | 83 ----------------------------
 dev-tcltk/tdom/files/tdom-0.8.2-soname.patch | 26 ---------
 2 files changed, 109 deletions(-)

diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch b/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
deleted file mode 100644
index cdcbb10..00000000
--- a/dev-tcltk/tdom/files/tdom-0.8.2-expat.patch
+++ /dev/null
@@ -1,83 +0,0 @@
-Source: http://download.opensuse.org/repositories/openSUSE:/11.0/standard/src/tdom-0.8.2-50.1.src.rpm
-Index: Makefile.in
-================================================================================
---- configure.in
-+++ configure.in
-@@ -72,6 +72,7 @@
- #--------------------------------------------------------------------
- 
- TDOM_PATH_AOLSERVER
-+TDOM_PATH_EXPAT
- 
- #-----------------------------------------------------------------------
- # __CHANGE__
-@@ -83,10 +84,7 @@
- # and PKG_TCL_SOURCES.
- #-----------------------------------------------------------------------
- 
--TEA_ADD_SOURCES([expat/xmlrole.c     \
--                 expat/xmltok.c      \
--                 expat/xmlparse.c    \
--                 generic/xmlsimple.c \
-+TEA_ADD_SOURCES([generic/xmlsimple.c \
-                  generic/utf8conv.c  \
-                  generic/dom.c       \
-                  generic/domalloc.c  \
-@@ -100,7 +98,7 @@
-                  generic/tclexpat.c  \
-                  generic/tdomStubInit.c])
- TEA_ADD_HEADERS([generic/tdom.h])
--TEA_ADD_INCLUDES([-I${srcdir}/generic -I${srcdir}/expat ${AOL_INCLUDES}])
-+TEA_ADD_INCLUDES([-I${srcdir}/generic ${AOL_INCLUDES}])
- TEA_ADD_LIBS([${AOL_LIBS}])
- TEA_ADD_CFLAGS([])
- TEA_ADD_STUB_SOURCES([generic/tdomStubLib.c])
---- tdom.m4
-+++ tdom.m4
-@@ -215,6 +215,46 @@
-     fi
- ])
- 
-+
-+AC_DEFUN(TDOM_PATH_EXPAT, [
-+    AC_MSG_CHECKING([for expat])
-+    AC_ARG_WITH(expat, 
-+        AC_HELP_STRING([--with-expat],
-+            [directory with expat installation]), , [with_expat=no])
-+
-+    AC_CACHE_VAL(ac_cv_c_expat,[
-+    case $with_expat in
-+	no) ;;
-+	yes)
-+	    for f in /usr/local /usr; do
-+	        if test -f "$f/include/expat.h" ; then
-+		    ac_cv_c_expat=`(cd $f; pwd)`
-+		    break
-+		fi
-+	    done
-+	    ;;
-+	*)
-+	    if test -f "$with_expat/include/expat.h"; then
-+		ac_cv_c_expat=`(cd $with_expat; pwd)`
-+	    else
-+        	AC_MSG_ERROR([${with_expat} directory doesn't contain expat.h])
-+	    fi
-+    esac
-+    ])
-+    if test x"${ac_cv_c_expat}" = x ; then
-+        AC_MSG_RESULT([using local copy])
-+	TEA_ADD_SOURCES([expat/xmlrole.c     \
-+                 	 expat/xmltok.c      \
-+	                 expat/xmlparse.c])
-+	TEA_ADD_INCLUDES([-I${srcdir}/expat])
-+    else
-+        AC_MSG_RESULT([${ac_cv_c_expat}])
-+	TEA_ADD_INCLUDES(${ac_cv_c_expat}/include)
-+	TEA_ADD_LIBS([-lexpat])
-+    fi
-+])
-+
-+
- #------------------------------------------------------------------------
- # TDOM_PATH_CONFIG --
- #

diff --git a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch b/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
deleted file mode 100644
index 3f0bc7e..00000000
--- a/dev-tcltk/tdom/files/tdom-0.8.2-soname.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/Makefile.in b/Makefile.in
-index d995328..5c17e11 100644
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -108,7 +108,7 @@ CFLAGS_DEFAULT	= @CFLAGS_DEFAULT@
- CFLAGS_WARNING	= @CFLAGS_WARNING@
- CLEANFILES	= @CLEANFILES@
- EXEEXT		= @EXEEXT@
--LDFLAGS_DEFAULT	= @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT	= @LDFLAGS_DEFAULT@ -Wl,-soname,libdom$(PACKAGE_VERSION).so
- MAKE_LIB	= @MAKE_LIB@
- MAKE_SHARED_LIB	= @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB	= @MAKE_STATIC_LIB@
-diff --git a/extensions/tnc/Makefile.in b/extensions/tnc/Makefile.in
-index f8a332c..01e0ef0 100644
---- a/extensions/tnc/Makefile.in
-+++ b/extensions/tnc/Makefile.in
-@@ -98,7 +98,7 @@ CFLAGS_DEFAULT	= @CFLAGS_DEFAULT@
- CFLAGS_WARNING	= @CFLAGS_WARNING@
- CLEANFILES	= @CLEANFILES@
- EXEEXT		= @EXEEXT@
--LDFLAGS_DEFAULT	= @LDFLAGS_DEFAULT@
-+LDFLAGS_DEFAULT	= @LDFLAGS_DEFAULT@ -Wl,-soname,libtnc$(PACKAGE_VERSION).so
- MAKE_LIB	= @MAKE_LIB@
- MAKE_SHARED_LIB	= @MAKE_SHARED_LIB@
- MAKE_STATIC_LIB	= @MAKE_STATIC_LIB@


             reply	other threads:[~2016-10-02 20:09 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-02 20:09 Amy Winston [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-31 22:22 [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tdom/files/ Alfredo Tupone
2022-07-12 18:39 Alfredo Tupone

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1475438313.4aaec36f0eb3afd0ce61d696016967d964a59db2.amynka@gentoo \
    --to=amynka@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox