pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/chat/gajim gajim: don't compress man pages.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/39206312047c
branches:  trunk
changeset: 312951:39206312047c
user:      nia <nia%pkgsrc.org@localhost>
date:      Thu Sep 20 10:30:16 2018 +0000

description:
gajim: don't compress man pages.

diffstat:

 chat/gajim/Makefile               |   4 ++--
 chat/gajim/distinfo               |   4 ++--
 chat/gajim/patches/patch-setup.py |  24 ++++++++++++++++++++----
 3 files changed, 24 insertions(+), 8 deletions(-)

diffs (65 lines):

diff -r 1f352ad2ef58 -r 39206312047c chat/gajim/Makefile
--- a/chat/gajim/Makefile       Thu Sep 20 10:14:05 2018 +0000
+++ b/chat/gajim/Makefile       Thu Sep 20 10:30:16 2018 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.39 2018/09/19 21:01:29 nia Exp $
+# $NetBSD: Makefile,v 1.40 2018/09/20 10:30:16 nia Exp $
 
 DISTNAME=      gajim-1.0.3
-PKGREVISION=   1
+PKGREVISION=   2
 CATEGORIES=    chat python
 MASTER_SITES=  https://www.gajim.org/downloads/1.0/
 
diff -r 1f352ad2ef58 -r 39206312047c chat/gajim/distinfo
--- a/chat/gajim/distinfo       Thu Sep 20 10:14:05 2018 +0000
+++ b/chat/gajim/distinfo       Thu Sep 20 10:30:16 2018 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.4 2018/09/19 16:18:32 nia Exp $
+$NetBSD: distinfo,v 1.5 2018/09/20 10:30:16 nia Exp $
 
 SHA1 (gajim-1.0.3.tar.gz) = 2f59e9eb6225144676718215d1f123b54e7b1ebb
 RMD160 (gajim-1.0.3.tar.gz) = 404c7ba2e6c7062762ca301f08aacae6969150aa
 SHA512 (gajim-1.0.3.tar.gz) = eb3ff2e4fe650fd98300d25b6a19eeb8101aaa5e88b6bd9f2fdabc9168d2211b3b69de82674dc861bb19a8e7e74eb6b1e1daa2e3a3ffe9a4099c557568512f4a
 Size (gajim-1.0.3.tar.gz) = 7520798 bytes
-SHA1 (patch-setup.py) = 1c64b35998ff51aa43d4097499d5539f21de772c
+SHA1 (patch-setup.py) = e6c0f220c42b642af28abb4bfa83ffba3ee4d27c
diff -r 1f352ad2ef58 -r 39206312047c chat/gajim/patches/patch-setup.py
--- a/chat/gajim/patches/patch-setup.py Thu Sep 20 10:14:05 2018 +0000
+++ b/chat/gajim/patches/patch-setup.py Thu Sep 20 10:30:16 2018 +0000
@@ -1,15 +1,31 @@
-$NetBSD: patch-setup.py,v 1.1 2018/09/19 16:18:32 nia Exp $
+$NetBSD: patch-setup.py,v 1.2 2018/09/20 10:30:16 nia Exp $
+
+Don't compress man pages.
 
 Fix man page install location.
 
 --- setup.py.orig      2018-05-19 09:02:48.000000000 +0000
 +++ setup.py
-@@ -113,7 +113,7 @@ def build_man(build_cmd):
+@@ -112,11 +112,11 @@ def build_man(build_cmd):
+ 
  def install_man(install_cmd):
      data_files = install_cmd.distribution.data_files
-     man_dir = os.path.join(build_dir, 'man')
+-    man_dir = os.path.join(build_dir, 'man')
 -    target = 'share/man/man1'
++    man_dir = 'data'
 +    target = 'man/man1'
  
      for man in MAN_FILES:
-         man_file_gz = os.path.join(man_dir, man + '.gz')
+-        man_file_gz = os.path.join(man_dir, man + '.gz')
++        man_file_gz = os.path.join(man_dir, man)
+         data_files.append((target, [man_file_gz]))
+ 
+ 
+@@ -164,7 +164,6 @@ class build(_build):
+     def run(self):
+         build_trans(self)
+         if sys.platform != 'win32':
+-            build_man(self)
+             build_intl(self)
+         _build.run(self)
+ 



Home | Main Index | Thread Index | Old Index