This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
21 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
qnotero (1.0.0-ubuntu1) trusty; urgency=medium | ||
qnotero (1.0.0-ubuntu7) trusty; urgency=medium | ||
|
||
* Ported to Python 3 | ||
* Add tag support | ||
* Do not treat editors as authors | ||
* Various bug-fixes | ||
|
||
-- Sebastiaan Mathot <[email protected]> Tue, 19 Aug 2014 16:43:29 +0200 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,18 @@ Section: science | |
Priority: extra | ||
Maintainer: Sebastiaan Mathot <[email protected]> | ||
Uploaders: Sebastiaan Mathot <[email protected]> | ||
Build-Depends: debhelper (>= 7.0.50~), python3-support, python3-all | ||
XS-Python-Version: >= 2.6 | ||
Build-Depends: debhelper (>= 7.0.50~), python3-all, python3-pyqt4 (>= 4.6.0) | ||
X-Python3-Version: >= 3.3 | ||
Standards-Version: 3.9.1 | ||
Homepage: http://www.cogsci.nl/ | ||
|
||
Package: qnotero | ||
Architecture: all | ||
XB-Python-Version: ${python:Versions} | ||
Depends: ${misc:Depends}, ${python:Depends}, python3-pyqt4 (>= 4.6.0), | ||
X-Python3-Version: ${python3:Versions} | ||
Depends: ${misc:Depends}, ${python3:Depends}, python3-pyqt4 (>= 4.6.0), | ||
python3-levenshtein | ||
Recommends: | ||
Suggests: xul-ext-zotero zotero-standalone | ||
Recommends: | ||
Suggests: xul-ext-zotero, zotero-standalone | ||
Description: Qnotero is a sidekick to Zotero, the open-source reference manager. | ||
Zotero is an excellent tool for managing your reference, but it lacks a simple | ||
and direct way to search your references and open attached PDFs at the click | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,5 @@ | ||
#!/usr/bin/make -f | ||
export DH_VERBOSE=1 | ||
export PYBUILD_NAME=qnotero | ||
|
||
srcpkg = $(shell LC_ALL=C dpkg-parsechangelog | grep '^Source:' | cut -d ' ' -f 2,2) | ||
debver = $(shell LC_ALL=C dpkg-parsechangelog | grep '^Version:' | cut -d ' ' -f 2,2 ) | ||
upstreamver = $(shell echo $(debver) | cut -d '-' -f 1,1 ) | ||
|
||
# this figures out the last merge point from 'master' into the Debian branch and | ||
# then described this commit relative to the last release tag (V...) | ||
# If this should make any sense the local master branch must track upstreams | ||
# master. | ||
gitver = $(shell [ -x /usr/bin/git ] && git describe --tags --match 'release/*' $$(git merge-base -a HEAD master) | sed -e 's,^release/,,' -e 's/-/+git/') | ||
|
||
# one ring to rule them all ... | ||
%: | ||
dh $@ | ||
|
||
override_dh_auto_clean: | ||
dh_auto_clean | ||
# restore old Qt wrappers | ||
[ -d debian/temp_store ] && cp debian/temp_store/* libqtopensesame/ || true | ||
-rm -rf debian/temp_store | ||
|
||
override_dh_auto_build: | ||
# move pre-generated Qt wrappers aside | ||
mkdir -p debian/temp_store | ||
cp -t debian/temp_store libqnotero/*Ui.py | ||
# update PyQt wrappers | ||
./scripts/compile_ui.sh | ||
dh_auto_build | ||
|
||
|
||
override_dh_install: | ||
dh_install | ||
# cleanups | ||
# no duplicate license info | ||
-rm debian/qnotero/usr/share/qnotero/COPYING | ||
|
||
# make orig tarball from repository content | ||
get-orig-source: | ||
# orig tarball, turn directory into something nicer | ||
git archive --format=tar --prefix=$(srcpkg)-$(gitver)/ HEAD | \ | ||
gzip -9 > $(srcpkg)_$(gitver).orig.tar.gz | ||
|
||
dh $@ --with python3 --buildsystem=pybuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters