Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F34601975
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
5 KB
Subscribers
None
View Options
diff --git a/.gitignore b/.gitignore
index 39c204b..fad1f93 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,8 +1,13 @@
+Makefile
+debian/qtpass*
+debian/files
+build-stamp
+qtpass
+QtPass.*
qtpass.pro.user
qtpass.xcodeproj/project.xcworkspace/xcuserdata/*
qtpass.xcodeproj/xcuserdata/*
qtpass.xcworkspace/xcuserdata/*
.DS_Store
.qmake.stash
-Makefile
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..44805c7
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+qtpass (0.8) git; urgency=low
+
+ * Initial Test Release
+
+ -- Anne Jan Brouwer <brouwer@annejan.com> Wed, 13 May 2015 16:51:09 +0200
+
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a9aae4e
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,26 @@
+Source: qtpass
+Section: utilities
+Priority: optional
+Maintainer: Anne Jan Brouwer <brouwer@annejan.com>
+Build-Depends: qt5-default, qt5-qmake
+Homepage: http://qtpass.org/
+Vcs-Browser: https://github.com/IJHack/qtpass
+Vcs-Git: git@github.com:IJHack/qtpass.git
+
+Package: qtpass
+Architecture: any
+Depends: ${shlibs:Depends}
+Suggests: pass
+Description: QtPass is a multi-platform GUI for pass, the standard unix password manager.
+ Features:
+ * Using pass or git and gpg2 directly
+ * Cross platform: Linux, BSD, OS X and Windows
+ * Reading pass password stores
+ * Decrypting and displaying the password and related info
+ * Editing and adding of passwords and information
+ * Updating to and from a git repository
+ * Per-folder user selection for multi recipient encryption
+ * Configuration options for backends and executable/folder locations
+ * Copying password to clipboard
+ * Configurable shoulder surfing protection options
+ * Experimental WebDAV support
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..ae34380
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,86 @@
+#!/usr/bin/make -f
+# Sample debian/rules that uses debhelper.
+# GNU copyright 1997 to 1999 by Joey Hess.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This is the debhelper compatibility version to use.
+export DH_COMPAT=4
+
+CFLAGS = -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+CFLAGS += -O0
+else
+CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ # Add here commands to compile the package.
+ qmake CONFIG+=release
+ make
+ # --- end custom part for compiling
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Add here commands to clean up after the build process.
+ make clean || true
+ # --- end custom part for cleaning up
+
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ # Add here commands to install the package
+ # The DESTDIR Has To Be Exactly /usr/src/packages/BUILD/debian/<nameOfPackage>
+ make install DESTDIR=/usr/src/packages/BUILD/debian/qtpass
+ # --- end custom part for installing
+
+# Build architecture-independent files here.
+binary-indep: build install
+ # We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+# dh_installdebconf
+ dh_installdocs
+ dh_installexamples
+ dh_installmenu
+# dh_installlogrotate
+# dh_installemacsen
+# dh_installpam
+# dh_installmime
+# dh_installinit
+ dh_installcron
+ dh_installman
+ dh_installinfo
+# dh_undocumented
+ dh_installchangelogs
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms
+# dh_makeshlibs
+ dh_installdeb
+# dh_perl
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
diff --git a/qtpass.pro b/qtpass.pro
index a844b8d..869f65a 100644
--- a/qtpass.pro
+++ b/qtpass.pro
@@ -1,77 +1,81 @@
#-------------------------------------------------
#
# Project created by QtCreator 2014-07-30T21:56:15
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
macx {
TARGET = QtPass
} else {
TARGET = qtpass
}
TEMPLATE = app
VERSION = 0.8.2
SOURCES += main.cpp\
mainwindow.cpp \
dialog.cpp \
storemodel.cpp \
util.cpp \
usersdialog.cpp
HEADERS += mainwindow.h \
dialog.h \
storemodel.h \
util.h \
usersdialog.h
FORMS += mainwindow.ui \
dialog.ui \
usersdialog.ui
+*-g++* {
+ QMAKE_CXXFLAGS += -std=c++11
+}
+
nosingleapp {
QMAKE_CXXFLAGS += -DSINGLE_APP=0
} else {
SOURCES += singleapplication.cpp
HEADERS += singleapplication.h
QT += network
QMAKE_CXXFLAGS += -DSINGLE_APP=1
}
TRANSLATIONS += localization/localization_nl_NL.ts \
localization/localization_de_DE.ts \
localization/localization_es_ES.ts \
localization/localization_gl_ES.ts \
localization/localization_hu_HU.ts \
localization/localization_sv_SE.ts \
localization/localization_pl_PL.ts \
localization/localization_ru_RU.ts
RESOURCES += resources.qrc
win32 {
RC_FILE = windows.rc
static {
QMAKE_LFLAGS += -static-libgcc -static-libstdc++
}
QMAKE_LFLAGS += -Wl,--dynamicbase -Wl,--nxcompat
LIBS += -lmpr
} else:macx {
ICON = artwork/icon.icns
QMAKE_INFO_PLIST = Info.plist
}
OTHER_FILES += LICENSE \
README.md
target.path = /usr/local/bin/
INSTALLS += target
DEFINES += "VERSION=\"\\\"$$VERSION\\\"\""
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sun, Jan 18, 4:22 PM (1 d, 18 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
3b/33/a430bd0065ba60a0beb116c5bbb2
Attached To
rGPGPASS GnuPG Password Manager
Event Timeline
Log In to Comment