Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds gnome-disk-utility to dependencies of securedrop-export package #158

Merged
merged 3 commits into from
Mar 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion scripts/build-debianpackage
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,9 @@ export SOURCE_DATE_EPOCH=`dpkg-parsechangelog -STimestamp`
dpkg-buildpackage -us -uc

# Tell the user the path of the files buillt
echo "Find the .deb and other build files at $TOP_BUILDDIR/$PKG_NAME"
pkg_path="$(find "$TOP_BUILDDIR" -type f -iname "${PKG_NAME}_${PKG_VERSION}*.deb" | head -n1)"
if [[ -f "$pkg_path" ]]; then
echo "Package location: $pkg_path"
else
echo "Could not find package, look in $TOP_BUILDDIR"
fi
6 changes: 6 additions & 0 deletions securedrop-export/debian/changelog-buster
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
securedrop-export (0.2.3+buster) unstable; urgency=medium

* See changelog.md

-- SecureDrop Team <[email protected]> Fri, 27 Mar 2020 17:26:30 -0400

securedrop-export (0.2.2+buster) unstable; urgency=medium

* See changelog.md
Expand Down
2 changes: 1 addition & 1 deletion securedrop-export/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ X-Python-3-Version: >= 3.5

Package: securedrop-export
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}, cryptsetup, cups, task-print-server, system-config-printer, xpp, libcups2-dev, python3-dev, libtool-bin, unoconv
Depends: ${python3:Depends}, ${misc:Depends}, cryptsetup, cups, task-print-server, system-config-printer, xpp, libcups2-dev, python3-dev, libtool-bin, unoconv, gnome-disk-utility
Description: Submission export scripts for SecureDrop Workstation
This package provides scripts used by the SecureDrop Qubes Workstation to
export submissions from the client to external storage, via the sd-export
Expand Down