Go to file
Andrew Senetar 701e6d4bb2
Merge pull request #755 from glubsy/packaging
Fix Debian packaging issues
2020-12-30 14:41:34 -06:00
.github/ISSUE_TEMPLATE Remove Old Issue Template 2020-06-15 23:28:31 -05:00
.tx Pulled all locs from Transifex 2013-08-03 17:34:02 -04:00
core Fix exclude tests 2020-12-29 16:07:55 +01:00
help Remove RC from changelog version 2019-05-13 20:43:47 -05:00
hscommon Fix debian src package build 2020-12-29 23:45:15 +01:00
images Merge branch 'master' into exclude_list 2020-10-28 03:58:05 +01:00
locale Updated wrongly translated wording 2018-07-11 14:26:27 +08:00
pkg Fix incorrect path 2020-12-30 17:55:53 +01:00
qt Add missing translation hooks 2020-12-29 18:52:22 +01:00
qtlib Change windows to use ini in AppData 2020-12-30 12:43:10 -06:00
.ctags Add ctags config 2016-06-07 21:36:25 -04:00
.gitignore Add image comparison features to details dialog 2020-07-02 22:52:47 +02:00
.travis.yml Force correct python environment for tox on windows 2020-12-28 21:18:16 -06:00
CREDITS Remove icon credits from about box 2020-10-28 02:18:41 +01:00
LICENSE Change license from BSD to GPLv3 2015-01-04 09:59:08 -05:00
Makefile Clean up Makefile & unused files 2020-12-29 14:08:37 -06:00
README.md Update documentation & CI 2019-12-31 17:33:17 -06:00
Windows.md Minor cleanup to Windows.md 2020-12-29 14:56:37 -06:00
build.py Update Windows Requirements & CI 2020-12-28 20:59:01 -06:00
package.py Fix typo in error message 2020-07-24 03:50:08 +02:00
requirements-extra.txt Minor packaging cleanups 2020-12-28 22:51:09 -06:00
requirements.txt Update requirements.txt 2020-12-30 18:52:37 +01:00
run.py More Test and Flake8 Cleanup 2020-06-27 01:08:12 -05:00
setup.nsi Update Windows Build 2019-03-24 21:35:34 -05:00
tox.ini Update Windows Requirements & CI 2020-12-28 20:59:01 -06:00
win_version_info.temp Update Windows Build 2019-03-24 21:35:34 -05:00

README.md

dupeGuru

dupeGuru is a cross-platform (Linux, OS X, Windows) GUI tool to find duplicate files in a system. It's written mostly in Python 3 and has the peculiarity of using multiple GUI toolkits, all using the same core Python code. On OS X, the UI layer is written in Objective-C and uses Cocoa. On Linux, it's written in Python and uses Qt5.

The Cocoa UI of dupeGuru is hosted in a separate repo: https://github.com/hsoft/dupeguru-cocoa

Current status

Development has been slow this past year, however very close to getting all the different 4.0.4 releases posted. Most of the work this past year (2019) has been towards packaging the application and issues related to that.

Still looking for additional help especially with regards to:

  • OSX maintenance (reproducing bugs & cocoa version)
  • Linux maintenance (reproducing bugs)

Contents of this folder

This folder contains the source for dupeGuru. Its documentation is in help, but is also available online in its built form. Here's how this source tree is organized:

  • core: Contains the core logic code for dupeGuru. It's Python code.
  • qt: UI code for the Qt toolkit. It's written in Python and uses PyQt.
  • images: Images used by the different UI codebases.
  • pkg: Skeleton files required to create different packages
  • help: Help document, written for Sphinx.
  • locale: .po files for localization.
  • hscommon: A collection of helpers used across HS applications.
  • qtlib: A collection of helpers used across Qt UI codebases of HS applications.

How to build dupeGuru from source

Windows

For windows instructions see the Windows Instructions.

Prerequisites

make

dupeGuru is built with "make":

$ make
$ make run

Generate Debian/Ubuntu package

$ bash -c "python3 -m venv --system-site-packages env && source env/bin/activate && pip install -r requirements.txt && python3 build.py --clean && python3 package.py"

Running tests

The complete test suite is run with Tox 1.7+. If you have it installed system-wide, you don't even need to set up a virtualenv. Just cd into the root project folder and run tox.

If you don't have Tox system-wide, install it in your virtualenv with pip install tox and then run tox.

You can also run automated tests without Tox. Extra requirements for running tests are in requirements-extra.txt. So, you can do pip install -r requirements-extra.txt inside your virtualenv and then py.test core hscommon