summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2011-02-13 09:30:34 +0000
committerLars Wirzenius <liw@liw.fi>2011-02-13 09:30:34 +0000
commit8fa00e5e46d874767c5afab79060f42868f2ce06 (patch)
treeb9c4df719d15e9fffbf93b2152e5e19f4b612061
parent25936f0ccea8bfa7bfc6226f47ea0ef651a8ef7e (diff)
downloaddupfiles-version_5_3.tar.gz
Release version 5.3.version_5_3
-rw-r--r--NEWS6
-rw-r--r--debian/changelog6
-rwxr-xr-xdupfiles2
-rw-r--r--setup.py2
4 files changed, 15 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index f83612c..fe042cd 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
NEWS for dupfiles
=================
+Version 5.3, released 2011-02-13
+--------------------------------
+
+* Do not hardlink files with different owner, group, mode.
+* Install manual page.
+
Version 5.2, released 2011-01-30
--------------------------------
diff --git a/debian/changelog b/debian/changelog
index 2db22cf..fa61ee1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+dupfiles (5.3) squeeze; urgency=low
+
+ * New upstream release.
+
+ -- Lars Wirzenius <liw@liw.fi> Sun, 13 Feb 2011 09:30:13 +0000
+
dupfiles (5.2) squeeze; urgency=low
* New upstream release.
diff --git a/dupfiles b/dupfiles
index c2c7dc3..148aba4 100755
--- a/dupfiles
+++ b/dupfiles
@@ -29,7 +29,7 @@ import time
import ttystatus
-version = '5.2'
+version = '5.3'
class FileStats(object):
diff --git a/setup.py b/setup.py
index 11303ef..2456830 100644
--- a/setup.py
+++ b/setup.py
@@ -15,6 +15,7 @@
from distutils.core import setup
+import glob
import subprocess
p = subprocess.Popen(['./dupfiles', '--version'], stdout=subprocess.PIPE)
@@ -31,4 +32,5 @@ setup(
author_email='liw@liw.fi',
url='http://liw.fi/dupfiles/',
scripts=['dupfiles'],
+ data_files=[('share/man/man1', glob.glob('*.1'))],
)