Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Release v130
· 212bf922
Mattia Rizzolo
authored
Nov 14, 2019
Signed-off-by:
Mattia Rizzolo
<
mattia@debian.org
>
212bf922
Use apt-get instead of apt in the Dockerfile
· a5c1364d
Mattia Rizzolo
authored
Nov 14, 2019
Signed-off-by:
Mattia Rizzolo
<
mattia@debian.org
>
a5c1364d
Hide whitespace changes
Inline
Side-by-side
Dockerfile
View file @
a5c1364d
...
...
@@ -2,14 +2,14 @@ FROM debian:sid
ENV
DEBIAN_FRONTEND noninteractive
RUN
apt update
&&
apt dist-upgrade
--yes
RUN
apt
install
--yes
--no-install-recommends
devscripts equivs
RUN
apt
-get
update
&&
apt
-get
dist-upgrade
--yes
RUN
apt
-get
install
--yes
--no-install-recommends
devscripts equivs
ADD
[".", "/srv/diffoscope"]
RUN
mk-build-deps
--install
--tool
'apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes'
/srv/diffoscope/debian/control
RUN
apt remove
--purge
--yes
devscripts equivs
RUN
apt autoremove
--purge
--yes
RUN
apt
-get
remove
--purge
--yes
devscripts equivs
RUN
apt
-get
autoremove
--purge
--yes
ENV
PATH="/srv/diffoscope/bin:${PATH}"
...
...
debian/changelog
View file @
a5c1364d
diffoscope (130)
UNRELEASED
; urgency=medium
diffoscope (130)
unstable
; urgency=medium
* WIP (generated upon release).
[ Chris Lamb ]
* debian/tests/basic-command-line:
Move from deprecated ADTTMP to AUTOPKGTEST_TMP.
* Correct the matching of R .rds files by also detecting newer versions
of this file format.
* Drop unused BASE_DIR global in the tests.
* Try and ensure that new test data files are generated dynamically, ie.
at least no new ones are added without "good" reasons.
* Truncate the tcpdump expected diff to 8KB (from ~600KB).
* Refresh OCaml test fixtures to support OCaml >= 4.08.1. Closes: #944709
* Correct reference to the ".rdx" extension in a comment.
* Update XML test for Python 3.8+.
* Don't use line-base dbuffering when communucating with subprocesses
in binary mode. (Closes: reproducible-builds/diffoscope#75)
[ Jelle van der Waa ]
* Add support for comparing .zst files are created by zstd.
(Closes: reproducible-builds/diffoscope!34)
--
Chris Lamb
<lamby
@
debian.org
>
Mon, 28 Oct
2019 11:2
8:49
+0
0
00
--
Mattia Rizzolo
<mattia
@
debian.org
>
Thu, 14 Nov
2019 11:2
2:20
+0
1
00
diffoscope (129) unstable; urgency=medium
...
...
diffoscope/__init__.py
View file @
a5c1364d
...
...
@@ -17,4 +17,4 @@
# You should have received a copy of the GNU General Public License
# along with diffoscope. If not, see <https://www.gnu.org/licenses/>.
VERSION
=
"
1
29
"
VERSION
=
"
1
30
"