pkgsrc-WIP-changes archive

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

rawdog: update wip/rawdog to rawdog-2.22



Module Name:	pkgsrc-wip
Committed By:	Yorick Hardy <yorickhardy%gmail.com@localhost>
Pushed By:	yhardy
Date:		Thu Oct 13 09:48:34 2016 +0200
Changeset:	743fde8f705842c0276596099e7676d07e97ab68

Modified Files:
	rawdog/Makefile
	rawdog/distinfo
	rawdog/patches/patch-setup.py

Log Message:
rawdog: update wip/rawdog to rawdog-2.22

Changes:

- rawdog 2.22

When handling an HTTP 301 redirect response, check whether the new
location is an absolute URI (as the HTTP/1.1 specification says it
should be). Some broken servers return a relative path, or junk, and in
those cases rawdog shouldn't update the URL in the config file.

Fix some more style problems reported by pylint.

Specify the input and output character encodings for pytidylib
explicitly. tidylib 5 has changed the defaults from ASCII to UTF-8;
rawdog relies on it being ASCII in order to generate ASCII output
(reported by Lucas Nussbaum).

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=743fde8f705842c0276596099e7676d07e97ab68

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 rawdog/Makefile               |  2 +-
 rawdog/distinfo               | 10 +++++-----
 rawdog/patches/patch-setup.py | 18 +++++++++---------
 3 files changed, 15 insertions(+), 15 deletions(-)

diffs:
diff --git a/rawdog/Makefile b/rawdog/Makefile
index 8d33298..aa012cd 100644
--- a/rawdog/Makefile
+++ b/rawdog/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	rawdog-2.21
+DISTNAME=	rawdog-2.22
 CATEGORIES=	news
 MASTER_SITES=	http://offog.org/files/
 
diff --git a/rawdog/distinfo b/rawdog/distinfo
index 1f46a05..1fb775b 100644
--- a/rawdog/distinfo
+++ b/rawdog/distinfo
@@ -1,7 +1,7 @@
 $NetBSD$
 
-SHA1 (rawdog-2.21.tar.gz) = 4579cb91812bc76eec1a5b73a953d104a33939c7
-RMD160 (rawdog-2.21.tar.gz) = 7bd9aaf46981e26fade52a7714bb9be54ab5b5bc
-SHA512 (rawdog-2.21.tar.gz) = 99ad84ede4c9c807cfa8ca231b630ecf56dac2136d9989e14468e7ccf77f7b4fb3974d941b47b2dd26d1b2ecb42dc999b8146ae8ecc9a97bbdc888d30742727a
-Size (rawdog-2.21.tar.gz) = 67812 bytes
-SHA1 (patch-setup.py) = 6a00792bf7a63db7a513dbde83a010daa05c0171
+SHA1 (rawdog-2.22.tar.gz) = 024084f32102b047598a2034b5aad767a6093971
+RMD160 (rawdog-2.22.tar.gz) = 83005768f0d986572b5602b2ab01a1697d882040
+SHA512 (rawdog-2.22.tar.gz) = 27d4140713b0bc5fd6acf70e0377653266422e74201bb895b622a1abe03607704bf16e83a8135f9b0594b8f9566b84fc969c6f197f26d2e463dc5821fd5816d4
+Size (rawdog-2.22.tar.gz) = 68777 bytes
+SHA1 (patch-setup.py) = 819de407c40e2b5711aa0c474201bef600cef9dc
diff --git a/rawdog/patches/patch-setup.py b/rawdog/patches/patch-setup.py
index 64030fd..b50b240 100644
--- a/rawdog/patches/patch-setup.py
+++ b/rawdog/patches/patch-setup.py
@@ -2,7 +2,7 @@ $NetBSD$
 
 Fix manual page directory.
 
---- setup.py.orig	2015-07-18 23:07:59.000000000 +0000
+--- setup.py.orig	2016-10-11 18:38:08.000000000 +0000
 +++ setup.py
 @@ -1,7 +1,7 @@
  #!/usr/bin/env python
@@ -13,12 +13,12 @@ Fix manual page directory.
  
  if sys.version_info < (2, 6) or sys.version_info >= (3,):
  	print("rawdog requires Python 2.6 or later, and not Python 3.")
-@@ -14,7 +14,7 @@ setup(name = "rawdog",
- 	author_email = "ats%offog.org@localhost",
- 	url = "http://offog.org/code/rawdog/";,
- 	scripts = ['rawdog'],
--	data_files = [('share/man/man1', ['rawdog.1'])],
-+	data_files = [(os.getenv("PKGMANDIR")+'/man1', ['rawdog.1'])],
- 	packages = ['rawdoglib'],
- 	classifiers = [
+@@ -14,7 +14,7 @@ setup(name="rawdog",
+ 	author_email="ats%offog.org@localhost",
+ 	url="http://offog.org/code/rawdog/";,
+ 	scripts=['rawdog'],
+-	data_files=[('share/man/man1', ['rawdog.1'])],
++	data_files=[(os.getenv("PKGMANDIR")+'/man1', ['rawdog.1'])],
+ 	packages=['rawdoglib'],
+ 	classifiers=[
  		"Development Status :: 5 - Production/Stable",


Home | Main Index | Thread Index | Old Index