public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Orlitzky" <mjo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/htmldoc/files/
Date: Sun,  3 Sep 2017 21:34:19 +0000 (UTC)	[thread overview]
Message-ID: <1504474449.013e029fbbd3a42dbb2c90512af276ab28754769.mjo@gentoo> (raw)

commit:     013e029fbbd3a42dbb2c90512af276ab28754769
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun Sep  3 21:26:37 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Sep  3 21:34:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=013e029f

app-text/htmldoc: remove unused patches.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-text/htmldoc/files/htmldoc-break.patch   | 30 ---------
 app-text/htmldoc/files/htmldoc-destdir.patch | 91 ----------------------------
 2 files changed, 121 deletions(-)

diff --git a/app-text/htmldoc/files/htmldoc-break.patch b/app-text/htmldoc/files/htmldoc-break.patch
deleted file mode 100644
index 33c4aaef544..00000000000
--- a/app-text/htmldoc/files/htmldoc-break.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff -Naur htmldoc-1.8.29b/Makefile.in htmldoc-1.8.29c/Makefile.in
---- htmldoc-1.8.29b/Makefile.in	2016-04-13 17:02:29.706811414 +0000
-+++ htmldoc-1.8.29c/Makefile.in	2016-04-13 17:03:37.713630261 +0000
-@@ -39,7 +39,7 @@
- all:	Makedefs Makefile config.h htmldoc.list
- 	for dir in $(DIRS); do\
- 		echo Making all in $$dir...;\
--		(cd $$dir; $(MAKE) -$(MAKEFLAGS)) || break;\
-+		(cd $$dir; $(MAKE) -$(MAKEFLAGS)) || exit 1;\
- 	done
- 
- 
-@@ -50,7 +50,7 @@
- clean:
- 	for dir in $(DIRS); do\
- 		echo Cleaning in $$dir...;\
--		(cd $$dir; $(MAKE) -$(MAKEFLAGS) clean) || break;\
-+		(cd $$dir; $(MAKE) -$(MAKEFLAGS) clean) || exit 1;\
- 	done
- 	$(RM) *.bak
- 	$(RM) *.bck
-@@ -77,7 +77,7 @@
- 	$(MAKE) all
- 	for dir in $(INSTALLDIRS); do\
- 		echo Installing in $$dir...;\
--		(cd $$dir; $(MAKE) -$(MAKEFLAGS) install) || break;\
-+		(cd $$dir; $(MAKE) -$(MAKEFLAGS) install) || exit 1;\
- 	done
- 
- 

diff --git a/app-text/htmldoc/files/htmldoc-destdir.patch b/app-text/htmldoc/files/htmldoc-destdir.patch
deleted file mode 100644
index 488bb0beb31..00000000000
--- a/app-text/htmldoc/files/htmldoc-destdir.patch
+++ /dev/null
@@ -1,91 +0,0 @@
-diff -Naur htmldoc-1.8.29/data/Makefile htmldoc-1.8.29b/data/Makefile
---- htmldoc-1.8.29/data/Makefile	2011-12-23 06:23:11.000000000 +0000
-+++ htmldoc-1.8.29b/data/Makefile	2016-04-13 16:59:35.074270457 +0000
-@@ -41,11 +41,11 @@
- #
- 
- install:
--	if [ ! -d $(datadir)/htmldoc/data ]; then\
--		$(MKDIR) $(datadir)/htmldoc/data;\
-+	if [ ! -d $(DESTDIR)$(datadir)/htmldoc/data ]; then\
-+		$(MKDIR) $(DESTDIR)$(datadir)/htmldoc/data;\
- 	fi
--	$(CP) $(FILES) $(datadir)/htmldoc/data
--	$(CHMOD) ugo+r $(datadir)/htmldoc/data/*
-+	$(CP) $(FILES) $(DESTDIR)$(datadir)/htmldoc/data
-+	$(CHMOD) ugo+r $(DESTDIR)$(datadir)/htmldoc/data/*
- 
- 
- #
-diff -Naur htmldoc-1.8.29/doc/Makefile htmldoc-1.8.29b/doc/Makefile
---- htmldoc-1.8.29/doc/Makefile	2016-01-02 22:58:41.000000000 +0000
-+++ htmldoc-1.8.29b/doc/Makefile	2016-04-13 16:57:46.628550948 +0000
-@@ -45,16 +45,16 @@
- #
- 
- install: $(DOCUMENTS)
--	if test ! -d $(datadir)/doc/htmldoc; then\
--		$(MKDIR) $(datadir)/doc/htmldoc;\
-+	if test ! -d $(DESTDIR)$(datadir)/doc/htmldoc; then\
-+		$(MKDIR) $(DESTDIR)$(datadir)/doc/htmldoc;\
- 	fi
--	$(CP) $(DOCFILES) $(datadir)/doc/htmldoc
--	$(CHMOD) ugo+r $(datadir)/doc/htmldoc/*
--	if test ! -d $(mandir)/man1; then\
--		$(MKDIR) $(mandir)/man1;\
-+	$(CP) $(DOCFILES) $(DESTDIR)$(datadir)/doc/htmldoc
-+	$(CHMOD) ugo+r $(DESTDIR)$(datadir)/doc/htmldoc/*
-+	if test ! -d $(DESTDIR)$(mandir)/man1; then\
-+		$(MKDIR) $(DESTDIR)$(mandir)/man1;\
- 	fi
--	$(CP) htmldoc.man $(mandir)/man1/htmldoc.1
--	$(CHMOD) ugo+r $(mandir)/man1/htmldoc.1
-+	$(CP) htmldoc.man $(DESTDIR)$(mandir)/man1/htmldoc.1
-+	$(CHMOD) ugo+r $(DESTDIR)$(mandir)/man1/htmldoc.1
- 
- 
- #
-diff -Naur htmldoc-1.8.29/fonts/Makefile htmldoc-1.8.29b/fonts/Makefile
---- htmldoc-1.8.29/fonts/Makefile	2011-12-23 06:23:11.000000000 +0000
-+++ htmldoc-1.8.29b/fonts/Makefile	2016-04-13 16:56:35.317733427 +0000
-@@ -62,15 +62,15 @@
- #
- 
- install:
--	echo "Installing font files in $(datadir)/htmldoc/fonts..."
--	if [ ! -d $(datadir)/htmldoc/fonts ]; then\
--		$(MKDIR) $(datadir)/htmldoc/fonts;\
-+	echo "Installing font files in $(DESTDIR)$(datadir)/htmldoc/fonts..."
-+	if [ ! -d $(DESTDIR)$(datadir)/htmldoc/fonts ]; then\
-+		$(MKDIR) $(DESTDIR)$(datadir)/htmldoc/fonts;\
- 	fi
- 	for font in $(FONTS); do \
--		$(CP) $$font.afm $(datadir)/htmldoc/fonts; \
--		$(CP) $$font.pfa $(datadir)/htmldoc/fonts; \
-+		$(CP) $$font.afm $(DESTDIR)$(datadir)/htmldoc/fonts; \
-+		$(CP) $$font.pfa $(DESTDIR)$(datadir)/htmldoc/fonts; \
- 	done
--	$(CHMOD) ugo+r $(datadir)/htmldoc/fonts/*
-+	$(CHMOD) ugo+r $(DESTDIR)$(datadir)/htmldoc/fonts/*
- 
- 
- #
-diff -Naur htmldoc-1.8.29/htmldoc/Makefile htmldoc-1.8.29b/htmldoc/Makefile
---- htmldoc-1.8.29/htmldoc/Makefile	2016-01-02 21:46:20.000000000 +0000
-+++ htmldoc-1.8.29b/htmldoc/Makefile	2016-04-13 16:56:35.318733424 +0000
-@@ -38,11 +38,11 @@
- #
- 
- install:	all
--	if [ ! -d $(bindir) ]; then\
--		$(MKDIR) $(bindir);\
-+	if [ ! -d $(DESTDIR)$(bindir) ]; then\
-+		$(MKDIR) $(DESTDIR)$(bindir);\
- 	fi
--	cp htmldoc$(EXEEXT) $(bindir)
--	chmod ugo+rx $(bindir)/htmldoc$(EXEEXT)
-+	cp htmldoc$(EXEEXT) $(DESTDIR)$(bindir)
-+	chmod ugo+rx $(DESTDIR)$(bindir)/htmldoc$(EXEEXT)
- 
- 
- #


             reply	other threads:[~2017-09-03 21:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-03 21:34 Michael Orlitzky [this message]
  -- strict thread matches above, loose matches on Subject: below --
2017-09-02 14:46 [gentoo-commits] repo/gentoo:master commit in: app-text/htmldoc/files/ Michael Palimaka

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=1504474449.013e029fbbd3a42dbb2c90512af276ab28754769.mjo@gentoo \
    --to=mjo@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