Commit Graph

1153 Commits

Author SHA1 Message Date
Yarny0
4a42ca06c1 tsm-client: 8.1.13.0 -> 8.1.13.1
Link to Security Bulletin:
https://www.ibm.com/support/pages/node/6527080 (CVE-2021-44228)
2022-01-17 12:09:27 +01:00
Yarny0
66d068bf66 tsm-client: use rpm source instead of deb/Ubuntu
IBM publishes their IBM Spectrum Protect client
for Linux in two flavors:

* "Linux x86_64 client"
* "Linux x86_64 Ubuntu client"

Up to this commit, nixpkgs used the Ubuntu
flavor to build its `tsm-client` derivation.
However, the history of published archive files in

* https://public.dhe.ibm.com/storage/tivoli-storage-management/maintenance/client/v8r1/Linux/
* https://public.dhe.ibm.com/storage/tivoli-storage-management/patches/client/v8r1/Linux/

suggests that updates in the fourth level of
the version numbers (e.g. 8.1.13.0 -> 8.1.13.1)
do not get published as Ubuntu flavor.
It order to be able to always use the latest release,
this commit switches to the non-Ubuntu flavor.
The non-Ubuntu archive contains rpm files,
so this commit switches from `ar` to `rpmextract`.
Instead of unpacking all deb files,
the build recipe now unpacks all _but one_ rpm file:
The file `TIVsm-WEBGUI.x86_64.rpm` apparently
contains a plugin that is not included
in the Ubuntu version (see note below).
Comparing the old and the new derivation's output indicates
that this choice minimizes the difference between the results:

The output of the old (Ubuntu flavor) derivation contains:
* `commons-codec-1.6.jar`
* `share/` with changelog and copyright information
  for the packages `gskssl64` and `gskcrypt64`

The output of the new (non-Ubuntu flavor) derivation contains:
* `lib64`, symlink to `lib`
* `commons-codec-1.14.jar`
* `opt/tivoli/tsm/license/{api,baclient}/sm/`
  with license agreement files in many languages

Besides these differences, the outputs' file names are equal.

Note: I don't know what functionality
`TIVsm-WEBGUI.x86_64.rpm` actually provides.
Unpacking it with the other rpm files makes patchelf complain
about missing X11 libraries, so in order to include it here,
one would likely need to add those to `buildInputs`.
However, as the old (Ubuntu flavor) `tsm-client` package
did not contain this functionality and as I cannot test
or use it in any way, I opted to not include it now.
If we want to include this with a later commit,
we should add another package build option (like `enableGui`)
so that the default `tsm-client` package does not pull in
X11 libraries and its closure size therefore stays small.
2022-01-17 12:09:27 +01:00
Yarny0
f6dca95c5d tsm-client: add test derivation and a module test
The tsm-client needs a tsm-server to do anything useful.
Without a server, automated tests can just
check diagnostic outputs for plausibility.

The commit at hand adds two tests:

1.
The command line interface `dsmc` is called,
then it is verified that the program does

* report the correct client version,
* find its configuration file,
* report a connection error.

2.
To check the GUI (and the tsm-client nixos module), we add a
vm test which uses the module to install `tsm-client-withGui`.
To verify that the GUI's basic functionality is present,
we skip over all connection failure related error
messages and open the "Connection Information"
dialog from the main application window.
This dialog presents the node name and the client version;
both are verified by the test.

Note: Our `tsm-client` build recipe consists of two packages:
The "unwrapped" package and the final package.
This commit puts the unwrapped one into the final
package's `passthru` so that tests can access
the original version string that is needed to check
the client version reported by the application.
2022-01-17 12:09:27 +01:00
Yarny0
8fa6f90ad6 tsm-client: set mainProgram
The TSM command line client `dsmc` should be the
program that is usually invoked from this package.
However, if a user explicitely asks for the
package with GUI support (with `enableGui`,
available in the package `tsm-client-withGui`),
we set the mainProgram to the graphical application `dsmj`
as that's likely what the user is looking for.
2022-01-17 12:09:27 +01:00
Yarny0
7934926b2e tsm-client: makeWrapper buildInputs to nativeBuildInputs
Although I'm not sure if `tsm-client` will ever be
subject to cross-compiling, referencing makeWrapper
from native BuildInputs is The Right Thing.

This is a kind of follow-up of
https://github.com/NixOS/nixpkgs/pull/112276
2022-01-17 12:09:26 +01:00
Yarny0
5ad0ecb901 tsm-client: 8.1.8.0 -> 8.1.13.0
tsm-client now links against openssl;
patchelf complains without it.

Links to IBM's "Authorized Program Analysis Report"s
(something like release notes),
to READMEs, and to Security Bulletins,
for all updates between 8.1.8.0 and 8.1.13.0:

* 8.1.9.x
  * APARs: https://www.ibm.com/support/pages/node/1077159
  * READMEs: https://www.ibm.com/support/pages/node/1108473
  * https://www.ibm.com/support/pages/node/1107261 (CVE-2018-2025)
  * https://www.ibm.com/support/pages/node/1107777 (CVE-2019-4406)

* 8.1.10.x
  * APARs: https://www.ibm.com/support/pages/node/6223098
  * READMEs: https://www.ibm.com/support/pages/node/6223388
  * https://www.ibm.com/support/pages/node/6221448 (CVE-2020-4494, CVE-2020-4406)
  * https://www.ibm.com/support/pages/node/6245356 (CVE-2020-2654)
  * https://www.ibm.com/support/pages/node/6245366 (CVE-2015-4000)

* 8.1.11.x
  * APARs: https://www.ibm.com/support/pages/node/6367203
  * READMEs: https://www.ibm.com/support/pages/node/6367205
  * https://www.ibm.com/support/pages/node/6371646
  * https://www.ibm.com/support/pages/node/6371650
  * https://www.ibm.com/support/pages/node/6371652

* 8.1.12.x
  * APARs: https://www.ibm.com/support/pages/node/6429561
  * READMEs: https://www.ibm.com/support/pages/node/6443671
  * https://www.ibm.com/support/pages/node/6445503 (CVE-2021-20532)
  * https://www.ibm.com/support/pages/node/6445497 (CVE-2021-29672, CVE-2021-20546)
  * https://www.ibm.com/support/pages/node/6445489 (CVE-2020-1971, CVE-2021-23840, CVE-2021-23841)
  * https://www.ibm.com/support/pages/node/6445483 (CVE-2020-27221, CVE-2020-14782)

* 8.1.13.x
  * APARs: https://www.ibm.com/support/pages/node/6524936
  * READMEs: https://www.ibm.com/support/pages/node/6524938
  * https://www.ibm.com/support/pages/node/6524706 (CVE-2021-39048)
  * https://www.ibm.com/support/pages/node/6524712 (CVE-2021-3712, CVE-2021-3711)
2022-01-17 12:09:26 +01:00
Yarny0
517ae2a288 tsm-client: update URL structure
IBM has changed the URL structures of their support web pages.
The commit at hand updates most URLs and
in particular the package update instructions
so they follow the new structure.
It also calculates the source download URL from the
version number, so package updates no longer have to
update the URL in addition to the version string.
2022-01-17 12:09:26 +01:00
Yarny0
6d134acc4a tsm-client: use explicit package option for Java GUI
The tsm-client package comes in two flavours:
command line only (`tsm-client`) and with a
Java-backed GUI (`tsm-client-withGui`).
To control which package is built,
the build recipe simply used to check if the
`jdk8` package was provided as package input.
This commit changes this mechanism:
The build recipe now accepts the explicit option `enableGui`,
which is set to `false` by default.

As the commit at hand touches the build recipe arguments,
it also changes argument sorting following
https://nixos.org/manual/nixpkgs/stable/#sec-syntax
2022-01-17 12:09:26 +01:00
Yarny0
ce6eea6002 tsm-client: add gnugrep to PATH
While testing the new version, I observed that
`dsmc` prints an error "sh: grep: command not found"
when executed with empty PATH.
Apparently, `dsmc` needs `grep` in its PATH.
2022-01-17 12:09:26 +01:00
Yarny0
6e157a481a tsm-client: fix lvm2 support
lvm2 support was broken when lvm2 got
converted to a multiple-output derivation:

https://github.com/NixOS/nixpkgs/pull/93024
d3a991d410

The `runtimeDependencies` attribute doesn't specifically
look for a `lib` output, so it uses the main `out` output
which no longer contains the library object files.

Since TSM loads the `libdevmapper.so` library
dynamically (likely with `dlfcn.h` functions),
the breakage couldn't be detected at build time.

The commit at hand simply uses
`getLib` to pick the correct output.
2022-01-17 12:09:23 +01:00
Bobby Rong
407a866225
Merge pull request #153843 from Izorkin/update-dar
dar: 2.7.1 -> 2.7.3
2022-01-15 21:14:43 +08:00
Bruno Bigras
d50a512207 kopia: 0.9.8 -> 0.10.0 2022-01-14 11:26:14 -05:00
IvarWithoutBones
0c72fb355c discordchatexporter-cli: 2.30.1 -> 2.31.1 2022-01-12 01:15:22 +01:00
R. Ryantm
532fa984d5 autorestic: 1.5.0 -> 1.5.1 2022-01-11 01:36:05 +00:00
Izorkin
f5cd7567d3
dar: 2.7.1 -> 2.7.3 2022-01-07 15:53:18 +03:00
Renaud
944a2dc835
Treewide: fix some permanent redirects on homepages
(#153213)
Issue #60004
2022-01-03 16:53:12 +01:00
Florian Klink
440ffae503 kopia: 0.9.7 -> 0.9.8
Release notes: https://github.com/kopia/kopia/releases/tag/v0.9.8

The module started to depend on Go 1.17:

```
internal/scrubber/scrub_sensitive.go:28:16: sf.IsExported undefined (type reflect.StructField has no field or method IsExported)
note: module requires Go 1.17
```
2021-12-28 18:08:42 +01:00
R. Ryantm
a93f8908e2
autorestic: 1.3.0 -> 1.5.0 2021-12-25 20:08:08 +08:00
Felix Buehler
81eb599e8d nuget-to-nix: update to use pname instead of name 2021-12-23 22:47:34 +01:00
Bruno Bigras
c3a9fc66d6 kopia: 0.9.6 -> 0.9.7 2021-12-06 09:39:55 -05:00
Jörg Thalheim
d4e9aef6e1
Merge pull request #148733 from r-ryantm/auto-update/zfs-prune-snapshots
zfs-prune-snapshots: 1.1.0 -> 1.3.0
2021-12-05 19:23:24 +00:00
R. Ryantm
3cfab13751 zfs-prune-snapshots: 1.1.0 -> 1.3.0 2021-12-05 17:10:09 +00:00
markuskowa
ee2b48cbf1
Merge pull request #146135 from r-ryantm/auto-update/s3ql
s3ql: 3.7.3 -> 3.8.0
2021-12-05 14:46:49 +01:00
Mikael Voss
730fc9cae0
bakelite: init at unstable-2021-10-19 2021-11-28 15:57:29 +01:00
Faye Duxovni
41069d41dc
znapzend: 0.20.0 -> 0.21.0 (#141042) 2021-11-22 16:20:30 +01:00
Sergei Trofimovich
ec713fe238 burp: pull upstream fix for ncurses-6.3
Without the fix build on ncurses-6.3 fails as:

    src/client/monitor/status_client_ncurses.c:350:9:
      error: format not a string literal and no format arguments [-Werror=format-security]
      350 |         mvprintw(0, col-l-1, date);
          |         ^~~~~~~~
2021-11-22 10:03:11 +00:00
Bruno Bigras
fe15c4fd23 kopia: 0.9.5 -> 0.9.6 2021-11-21 03:01:07 -05:00
Sandro
51d5630687
Merge pull request #142826 from ivan/grab-site-2.2.2 2021-11-20 19:08:53 +01:00
Ivan Kozik
b5e87f5f2e grab-site: 2.2.0 -> 2.2.2; pythonPackages.ludios_wpull: 3.0.7 -> 3.0.9
Use SQLAlchemy 1.3 because ludios_wpull is incompatible with SQLAlchemy 1.4.

Use Python 3.8 instead of Python 3.7, as namedlist 1.8 fixed compatibility
with Python 3.8. We cannot use Python 3.9 until
https://github.com/ArchiveTeam/ludios_wpull/issues/20 is fixed.
2021-11-20 04:54:58 +00:00
Pavol Rusnak
1663708500
Merge pull request #142468 from prusnak/dotnet-update
dotnet-sdk_3: 3.1.19 -> 3.1.21 + dotnet-sdk_5: 5.0.10 -> 5.0.12
2021-11-16 16:27:23 +01:00
Claudio Bley
b3d87e4b17
discordchatexporter-cli: Update dependencies 2021-11-16 15:54:32 +01:00
Timothy DeHerrera
2808c51217
Merge pull request #144855 from c0deaddict/zhf/hpe-ltfs
hpe-ltfs: fix build
2021-11-15 18:33:50 -07:00
R. Ryantm
ef24ce42a5 s3ql: 3.7.3 -> 3.8.0 2021-11-15 13:28:49 +00:00
github-actions[bot]
40b71c3159
Merge master into staging-next 2021-11-08 12:01:24 +00:00
Bobby Rong
4770284dd9
Merge pull request #143762 from starcraft66/update-gb
gb-backup: unstable-2021-08-16 -> unstable-2021-10-27
2021-11-08 19:58:19 +08:00
github-actions[bot]
b92d47b0f5
Merge master into staging-next 2021-11-08 06:01:18 +00:00
figsoda
070f4b40a6
Merge pull request #145019 from bbigras/kopia
kopia: 0.9.4 -> 0.9.5
2021-11-07 20:50:32 -05:00
Bobby Rong
6ddd1ec052
Merge pull request #143517 from r-ryantm/auto-update/autorestic
autorestic: 1.2.0 -> 1.3.0
2021-11-08 09:40:37 +08:00
Bruno Bigras
ea33beda92 kopia: 0.9.4 -> 0.9.5 2021-11-07 17:18:38 -05:00
Jos van Bakel
4079374c60
hpe-ltfs: fix build 2021-11-07 18:22:52 +01:00
github-actions[bot]
eeb7e66e97
Merge master into staging-next 2021-11-06 18:01:01 +00:00
R. Ryantm
ad14fceae4 partclone: 0.3.17 -> 0.3.18 2021-11-03 19:27:09 +00:00
Sandro Jäckel
b5cfd8dd69
treewide: remove python39Packages.ruamel_yaml aliases 2021-11-03 11:10:50 +01:00
Tristan Gosselin-Hane
d63c063d8a gb-backup: unstable-2021-08-16 -> unstable-2021-10-27 2021-10-29 18:12:12 -04:00
Bobby Rong
99d9c8286f
Merge pull request #143614 from ZJvandeWeg/zj-update-duplicity-homepage
duplicity: Update homepage URL
2021-10-29 17:46:24 +08:00
ZJ van de Weg
e0ee3a830c duplicity: Update homepage URL
The URL was updated by the upstream project and the redirect wasn't
working on my browser. This change updates it to fix it.
2021-10-29 11:03:23 +02:00
R. Ryantm
ebaf71bc57 bupstash: 0.10.2 -> 0.10.3 2021-10-29 05:02:18 +00:00
R. Ryantm
fdc681b8b9 autorestic: 1.2.0 -> 1.3.0 2021-10-29 01:17:00 +00:00
Sandro
aaa66ba3ff
Merge pull request #134392 from babbaj/gb-update 2021-10-26 17:23:40 +02:00
Guillaume Girol
9ed177ac16
Merge pull request #142160 from hrhino/fix/zbackup
zbackup: fix
2021-10-25 19:49:06 +00:00
Babbaj
c81675bcac
gb-backup: 2021-04-07 -> 2021-08-16 2021-10-25 02:19:57 -04:00
Harrison Houghton
3b46f18b02 zbackup: fix
The upstream proposed fix doesn't apply cleanly, so here's a version
that does.
2021-10-24 15:06:20 -04:00
Bruno Bigras
747f040edc kopia: 0.9.3 -> 0.9.4 2021-10-23 14:03:22 -04:00
Bruno Bigras
34590eea1e
Merge pull request #142101 from bbigras/kopia
kopia: 0.9.2 -> 0.9.3
2021-10-19 15:37:41 +00:00
Pavol Rusnak
d31c9bd3f0
Merge pull request #139571 from prusnak/dotnet-cleanup
dotnet: cleanup; point dotnet-sdk alias to 5.0; remove unsupported SDKs
2021-10-19 09:16:11 +02:00
Pavol Rusnak
eca667180b
dotnet: cleanup; point dotnet-sdk alias to 5_0; remove unsupported SDKs 2021-10-18 23:46:17 +02:00
Bruno Bigras
d3725b3047 kopia: 0.9.2 -> 0.9.3 2021-10-18 12:09:57 -04:00
Sandro
f3df5ef25b
Merge pull request #99303 from woffs/btrbk-0.30.0 2021-10-18 16:01:11 +02:00
Artturi
2a42aa9029
Merge pull request #141618 from bbigras/kopia 2021-10-15 22:20:21 +03:00
Bruno Bigras
3ab9c20bb6 kopia: 0.9.0 -> 0.9.2 2021-10-15 09:30:04 -04:00
Peter Simons
476635afe1 Drop myself from meta.maintainers for most packages.
I'd like to reduce the number of Github notifications and
review requests I receive.
2021-10-14 11:01:27 +02:00
Sandro
c984e0beb0
Merge pull request #141326 from bbigras/kopia 2021-10-12 21:09:50 +02:00
Kevin Cox
f6e161d60a
Merge pull request #139222 from IvarWithoutBones/init/buildDotnet
buildDotnetModule: init
2021-10-12 09:13:44 -04:00
Bruno Bigras
bdd81fa056 kopia: 0.8.4 -> 0.9.0 2021-10-12 01:08:43 -04:00
Ryan Burns
41574158a0 libgpg-error: rename from libgpgerror
Matches pname and upstream project name
2021-10-06 18:23:43 -07:00
IvarWithoutBones
e93d52e69e discordchatexporter-cli: use buildDotnetModule 2021-10-06 22:14:24 +02:00
Felix Buehler
004822554c zbackup: switch to fetchFromGitHub 2021-09-22 17:54:09 +02:00
Felix Buehler
797843e42b wal-e: switch to fetchFromGitHub 2021-09-22 17:54:09 +02:00
Frank Doepper
f28de9c950 btrbk: 0.29.1 -> 0.31.3
- add updateScript
- work around non-working --argv0 when wrapping perl or shell scripts
- change license to gpl3Only
2021-09-21 11:50:37 +02:00
Artturi
b28a637bbe
Merge pull request #138089 from r-ryantm/auto-update/automysqlbackup 2021-09-20 21:06:25 +03:00
renesat
fd010f6ba6 autorestic: init at 1.2.0 2021-09-18 14:40:53 +03:00
Claudio Bley
8a02206cf5 discordchatexporter-cli: Update dependencies 2021-09-17 10:11:27 -07:00
R. RyanTM
b4e53b1517 automysqlbackup: 3.0.6 -> 3.0.7 2021-09-16 03:55:17 +00:00
Vladyslav M
5fb62e8513 rdedup: 3.1.1 -> 3.2.1 2021-09-15 20:18:41 +03:00
github-actions[bot]
6f038e8b11
Merge master into staging-next 2021-09-14 12:01:03 +00:00
R. RyanTM
bcfd20bf2d rsnapshot: 1.4.3 -> 1.4.4 2021-09-14 08:32:14 +00:00
github-actions[bot]
ac962ee61a
Merge master into staging-next 2021-09-13 00:01:41 +00:00
Sandro
e0bf12865c
Merge pull request #137463 from imlonghao/borgmatic/1.5.18 2021-09-13 00:35:18 +02:00
github-actions[bot]
a13bf1828b
Merge master into staging-next 2021-09-12 18:01:21 +00:00
Sandro
9442d8780e
Merge pull request #136847 from r-ryantm/auto-update/discordchatexporter-cli 2021-09-12 17:04:16 +02:00
Pavol Rusnak
a51701e3f3
android-backup-extractor: init at 20210909062443-4c55371 (#137516)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-09-12 16:02:56 +02:00
github-actions[bot]
acd45cb351
Merge master into staging-next 2021-09-12 12:01:10 +00:00
Maximilian Bosch
13d9d33375
Merge pull request #135206 from feijoas/zfs_autobackup
zfs-autobackup: init at 3.1
2021-09-12 12:27:07 +02:00
imlonghao
c8e07973c8
borgmatic: 1.5.13 -> 1.5.18 2021-09-10 23:34:56 +08:00
github-actions[bot]
31efc58eb0
Merge master into staging-next 2021-09-08 18:01:03 +00:00
github-actions[bot]
58f8f1f058
Merge master into staging-next 2021-09-08 00:01:42 +00:00
Ryan Mulligan
d90bafbcad mylvmbackup: remove meta.homepage from fetch url 2021-09-07 14:41:36 -07:00
R. RyanTM
daeb4e9e14 discordchatexporter-cli: 2.30 -> 2.30.1 2021-09-06 05:05:26 +00:00
Ryan Mulligan
4991aadefc mylvmbackup: init at 0.16 2021-09-02 12:52:55 -07:00
Alyssa Ross
c13cf1e76f
Merge remote-tracking branch 'nixpkgs/master' into staging-next 2021-09-01 07:47:01 +00:00
adisbladis
f7081230ab
Merge pull request #134694 from adisbladis/duplicati-2_0_6_3
duplicati: 2.0.6.1 -> 2.0.6.3
2021-08-31 10:10:12 -05:00
github-actions[bot]
b13b005f0e
Merge master into staging-next 2021-08-26 12:01:09 +00:00
zowoq
13ea123c74 treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
Vladimír Čunát
70e05c1003
Merge branch 'master' into staging-next 2021-08-25 19:42:15 +02:00
Markus Schneider
cb2d0338dc zfs-autobackup: init at 3.1
added zfs-autobackup to all-packages.nix
2021-08-25 16:30:43 +02:00
Fabian Affolter
76a5135b8e tarsnapper: add meta 2021-08-24 09:18:18 +02:00
Jan Tojnar
7a04c2ad68 Merge branch 'staging-next' into staging
- boost 171 removed on staging-next
- re-generated node-packages.nix

; Conflicts:
;	pkgs/development/java-modules/m2install.nix
;	pkgs/development/node-packages/node-packages.nix
;	pkgs/top-level/all-packages.nix
2021-08-22 01:13:41 +02:00
ajs124
9000cd88c6
Merge pull request #132916 from helsinki-systems/upd/mariadb
mariadb: 10.5.11 -> 10.6.3, mariadb-galera: 26.4.8 -> 26.4.9, libmysqlclient: 3.1.13 -> 3.2.3
2021-08-19 17:09:35 +02:00
Mario Rodas
1f78eae9bd wal-g: 1.0 -> 1.1
https://github.com/wal-g/wal-g/releases/tag/v1.1
2021-08-18 21:50:31 -05:00
adisbladis
aa2dfca483
duplicati: 2.0.6.1 -> 2.0.6.3 2021-08-18 14:12:24 -05:00
Ben Siraphob
382f9cfb9d
Merge pull request #134550 from r-ryantm/auto-update/s3ql
s3ql: 3.7.2 -> 3.7.3
2021-08-17 17:38:38 -05:00
R. RyanTM
7bec753807 s3ql: 3.7.2 -> 3.7.3 2021-08-17 22:03:17 +00:00
Artturi
06a41b9c51
Merge pull request #134051 from r-ryantm/auto-update/monolith
monolith: 2.4.1 -> 2.6.1
2021-08-17 22:04:04 +03:00
Sandro
a9f42d5907
Merge pull request #133651 from Stunkymonkey/tools-pname-version
tools: replace name with pname&version
2021-08-16 22:25:32 +02:00
R. RyanTM
0daff52e70 monolith: 2.4.1 -> 2.6.1 2021-08-14 16:22:48 +00:00
Zhaofeng Li
809dc67e52 discordchatexporter-cli: Use nuget-to-nix in updater script 2021-08-13 22:50:20 -07:00
Felix Buehler
7cd5d178fc tools: replace name with pname&version 2021-08-12 21:47:47 +02:00
ajs124
5d1b3c9159 automysqlbackup: update and switch to fork
last release on sourceforge is from 10 years ago and the test fails now
2021-08-12 13:22:40 +02:00
Sandro
50cdd41e93
Merge pull request #131507 from rhoriguchi/gphotos-sync
gphotos-sync: add recommended package
2021-08-11 15:44:02 +02:00
Sandro Jäckel
19be7f9c3e
sanoid: format 2021-08-10 10:32:45 +02:00
R. RyanTM
8f31366a8c discordchatexporter-cli: 2.29 -> 2.30 2021-08-09 17:30:15 +00:00
zowoq
bdae2bcc6a wal-g: buildFlagsArray -> ldflags, tags 2021-08-07 12:30:19 +10:00
Serg Nesterov
c69f341a05
restic: 0.12.0 -> 0.12.1 2021-08-03 21:44:33 +03:00
R. RyanTM
128d3d1ad7 bupstash: 0.10.0 -> 0.10.2 2021-08-03 02:44:07 +00:00
R. RyanTM
b9c66d1b74 bupstash: 0.9.1 -> 0.10.0 2021-08-02 01:41:24 +00:00
Sandro Jäckel
14af34c2f4
treewide: remove lib.{lists,string}.optional* 2021-07-29 14:15:12 +02:00
Elis Hirwing
bf36e52f64
sanoid: Passthru sanoid tests 2021-07-26 11:05:55 +02:00
Ryan Horiguchi
4f91b61192
gphotos-sync: add recommended package 2021-07-25 20:56:50 +02:00
Alyssa Ross
7368fa12c4
btar: clean up 2021-07-24 22:22:42 +00:00
Alyssa Ross
0271807d6f
btar: fix build with librsync 1.x
The patch from OpenSUSE fixes the build with a more recent librsync.
I haven't tested that it runs, but the patch is very simple, and if it
works for OpenSUSE, it should work for us too.
2021-07-24 22:21:24 +00:00
Guillaume Girol
2d18ed2ec5
Merge pull request #130923 from dotlambda/duplicity-python39
duplicity: use python39
2021-07-23 19:44:47 +00:00
R. RyanTM
6846ce94a1 discordchatexporter-cli: 2.28 -> 2.29 2021-07-22 09:59:14 -07:00
Sandro Jäckel
9bfdf57e13
pythonPackages: deprecate pytestrunner alias 2021-07-21 13:32:49 +02:00
Sandro Jäckel
4209fed914
pythonPackages: deprecate pytestcov alias 2021-07-21 13:32:17 +02:00
Robert Schütz
71426dabfe duplicity: use python39 2021-07-21 12:52:00 +02:00
Martin Weinelt
12e2b98017
Merge branch 'master' into staging-next 2021-07-19 23:16:25 +02:00
Guillaume Girol
15f8884390
Merge pull request #129957 from symphorien/duplicity-udpte
duplicity: 0.8.17 -> 0.8.20
2021-07-19 19:11:46 +00:00
github-actions[bot]
dc802b2e19
Merge master into staging-next 2021-07-19 00:01:36 +00:00
Sandro
d5bd34ebf2
treewide: convert phases that contain ":" to dont* = true (#130500) 2021-07-18 23:42:48 +02:00
Guillaume Girol
2060a251fe duplicity: 0.8.17 -> 0.8.20 2021-07-18 12:00:00 +00:00
github-actions[bot]
382fdc7ad3
Merge master into staging-next 2021-07-18 00:01:24 +00:00
Felix Buehler
82cb33a0ae treewide: remove meta.version 2021-07-18 00:07:38 +02:00
Felix Buehler
0222f420c2 lvmsync: deprecate phases 2021-07-17 22:20:18 +02:00
github-actions[bot]
f0bb8c9a78
Merge master into staging-next 2021-07-14 18:01:12 +00:00
Guillaume Girol
76df22f462
Merge pull request #129992 from peterhoeg/u/rdiff-backup
rdiff-backup: 1.3.3 -> 2.0.5
2021-07-14 14:30:50 +00:00
Jörg Thalheim
7afa51c2bd Merge remote-tracking branch 'upstream/master' into HEAD 2021-07-14 15:45:51 +02:00
Martin Weinelt
090638e14e
borgbackup: only include pyfuse3 when not on darwin
It includes the fuse package which does not eval on darwin.
2021-07-14 14:41:19 +02:00
Peter Hoeg
aab4b6b493 rdiff-backup: 1.3.3 -> 2.0.5 2021-07-14 09:54:12 +08:00
Martin Weinelt
3848948f77
borgbackup: enable tests, clean up 2021-07-13 01:38:38 +02:00
Martin Weinelt
0e6e4d4276
borgbackup: 1.1.16 -> 1.1.17
https://github.com/borgbackup/borg/blob/1.1.17/docs/changes.rst#version-1117-2021-07-12
2021-07-12 23:41:03 +02:00
github-actions[bot]
c786eaf612
Merge master into staging-next 2021-07-09 18:01:06 +00:00
Cole Helbling
7078db04e0
zrepl: wrap with ssh in PATH
This allows the ssh+stdinserver connection type function properly.
2021-07-08 16:18:36 -07:00
github-actions[bot]
eb5ca96424
Merge staging-next into staging 2021-07-06 12:01:39 +00:00
Fabian Affolter
68d0c4fc9c
Merge pull request #129363 from fabaff/bump-partclone
partclone: 0.3.11 -> 0.3.17
2021-07-06 08:50:03 +02:00
Fabian Affolter
2a78c51fc6 partclone: 0.3.11 -> 0.3.17 2021-07-05 22:01:55 +02:00
Robert Schütz
4a6f6ab9c9 duplicity: use python38
Its dependency boto does not support Python 3.9.
2021-07-05 12:34:02 -07:00
Sandro
8723bd8119
Merge pull request #129122 from dotlambda/dateutil-alias 2021-07-04 02:53:34 +02:00
Guillaume Girol
c6ba881c8d btrbk: add nixos test to passthru.tests 2021-07-03 17:22:36 +02:00
Robert Schütz
1ec5651913 treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutil 2021-07-03 13:45:57 +02:00
Robert Schütz
1821fb4513 rotate-backups: 6.0 -> 8.1 2021-07-01 14:35:12 -07:00