Commit graph

76 commits

Author SHA1 Message Date
Sandro Jäckel dcb501f993
kerberos: deprecate alias 2021-04-04 03:18:56 +02:00
Pacman99 428411b75d evolution-data-server: enable phone number support 2021-03-05 08:16:21 -08:00
R. RyanTM c27538ee3f evolution-data-server: 3.38.3 -> 3.38.4 2021-02-14 20:21:40 +01:00
Jan Tojnar 40ed7748db evolution-data-server: 3.38.2 → 3.38.3 2021-02-01 17:36:48 +01:00
Ben Siraphob 5fffcef915 pkgs/desktops: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
Ben Siraphob badf51221d treewide: stdenv.lib -> lib 2021-01-16 17:58:11 +07:00
Profpatsch 4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
R. RyanTM 7f5dfd2b84 evolution-data-server: 3.38.1 -> 3.38.2 2020-11-25 02:33:58 +01:00
Jan Tojnar bf7a38f6e4
gnome3.evolution-data-server: 3.38.0 → 3.38.1
https://ftp.gnome.org/pub/GNOME/sources/evolution-data-server/3.38/evolution-data-server-3.38.1.news
2020-10-24 01:17:53 +02:00
Piotr Bogdan 920b91d760
gnome3.evolution-data-server: 3.36.5 -> 3.38.0
https://gitlab.gnome.org/GNOME/evolution-data-server/-/blob/3.38.0/NEWS
2020-10-24 01:14:25 +02:00
Daniel Șerbănescu 863e3a65d3 evolution-data-server: 3.36.4 -> 3.36.5 2020-08-09 14:29:35 +02:00
Daniel Șerbănescu bedd68acf0 evolution-data-server: 3.36.3 -> 3.36.4 2020-07-04 07:32:29 +02:00
R. RyanTM 735e22d1f9 evolution-data-server: 3.36.2 -> 3.36.3 2020-06-09 14:43:23 +00:00
Tor Hedin Brønner 688587cd8f evolution-data-server: 3.36.1 -> 3.36.2 2020-05-03 17:42:29 +02:00
Jan Tojnar a04625379a
Merge branch 'master' into staging-next 2020-04-13 18:50:35 +02:00
Michael Reilly 84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
Jan Tojnar 1ab03c3a76
Merge branch 'master' into staging-next 2020-04-10 12:12:56 +02:00
Tor Hedin Brønner a59daedc5c
evolution-data-server: 3.36.0 -> 3.36.1 2020-04-09 10:24:02 +02:00
Jan Tojnar 15002f1cfd
tree-wide: Switch from gnome3.maintainers to lib.teams.gnome 2020-04-01 14:41:43 +02:00
Tor Hedin Brønner f0e68c887e
evolution-data-server: 3.34.4 -> 3.36.0 2020-03-24 07:10:44 +01:00
worldofpeace a5000f07a6 gnome3.evolution-data-server: 3.34.3 -> 3.34.4 2020-02-18 07:25:06 -05:00
R. RyanTM 0c890f635a evolution-data-server: 3.34.2 -> 3.34.3 (#77058) 2020-01-07 12:28:13 +01:00
R. RyanTM 817069e8f9 evolution-data-server: 3.34.1 -> 3.34.2 2019-11-25 16:30:40 -08:00
Tor Hedin Brønner ae35a341fe evolution-data-server: 3.34.0 → 3.34.1 2019-10-08 12:08:49 +02:00
Tor Hedin Brønner 91fed91d8b evolution-data-server: 3.32.4 → 3.34.0 2019-09-30 19:39:38 +02:00
worldofpeace 7bb8f05f12 treewide: use glib.{getSchemaPath, makeSchemaPath} 2019-08-26 21:28:17 -04:00
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Jan Tojnar 80cb87971e
gnome3.evolution-data-server: Fix gsettings-desktop-schemas path 2019-08-12 18:32:12 +02:00
Jan Tojnar b18215bd6f
gnome3.evolution-data-server: Hardcode more GSettings schemas
I used Coccinelle to create a base patch:

spatch --sp-file hardcode-gsettings.cocci --dir src/ --in-place

```cocci
@@
expression GSETTINGS_SCHEMA;
expression settings;
@@
- settings = g_settings_new (GSETTINGS_SCHEMA);
+ {
+ GSettingsSchemaSource *schema_source;
+ GSettingsSchema *schema;
+ schema_source = g_settings_schema_source_new_from_directory ("@ESD_GSETTINGS_PATH@",  g_settings_schema_source_get_default (), TRUE, NULL);
+ schema = g_settings_schema_source_lookup (schema_source, GSETTINGS_SCHEMA, FALSE);
+ settings = g_settings_new_full (schema, NULL, NULL);
+ g_settings_schema_source_unref (schema_source);
+ g_settings_schema_unref (schema);
+ }
```
2019-08-12 18:31:09 +02:00
worldofpeace 3267c5792f gnome3.evolution-data-server: 3.32.3 -> 3.32.4
https://gitlab.gnome.org/GNOME/evolution-data-server/blob/3.32.4/NEWS
2019-07-19 19:01:14 -04:00
worldofpeace 183989f5d6 gnome3.evolution-data-server: 3.32.2 -> 3.32.3
https://gitlab.gnome.org/GNOME/evolution-data-server/blob/3.32.3/NEWS
2019-06-30 23:54:54 -04:00
R. RyanTM 3e146be2ea evolution-data-server: 3.32.1 -> 3.32.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/evolution-data-server/versions
2019-05-12 20:28:27 +02:00
Tor Hedin Brønner 6f69b60a6b evolution-data-server: 3.32.0 -> 3.32.1
https://download.gnome.org/sources/evolution-data-server/3.32/evolution-data-server-3.32.1.news
2019-04-13 14:49:18 +02:00
Tor Hedin Brønner 9e5ac89a77
evolution-data-server: 3.30.5 -> 3.32.0 2019-04-05 11:40:04 +02:00
Jan Tojnar 025960d229
evolution-data-server: propagate libsoup
It is required by libedataserver-1.2
2019-03-05 21:46:36 +01:00
Frederik Rietdijk fd48a94b62 Merge staging-next into staging 2019-02-16 09:30:46 +01:00
Frederik Rietdijk 6fe10d2779 Merge master into staging-next 2019-02-16 09:29:54 +01:00
Jan Tojnar 606ceda352
gnome3: stop using aliases 2019-02-14 02:31:15 +01:00
Will Dietz 210175a50f evolution-data-server: 3.30.4 -> 3.30.5 2019-02-11 18:02:02 -06:00
worldofpeace 2530372351 gnome3.evolution-data-server: hardcode for DefaultSources gschema 2019-01-24 20:54:14 +00:00
R. RyanTM d0d372536b evolution-data-server: 3.30.3 -> 3.30.4 (#54222)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/evolution-data-server/versions
2019-01-18 11:48:49 +01:00
worldofpeace c1599d29d9 gcr: rename from gnome3.gcr 2018-12-25 20:14:28 -05:00
Jan Tojnar e77a8a5e74
evolution-data-server: 3.30.2 → 3.30.3 2018-12-12 20:00:58 +01:00
Jan Tojnar a51a99c690
gobject-introspection: rename package
camelCase package name was a huge inconsistency in GNOME package set.
2018-12-02 12:42:29 +01:00
Jan Tojnar 36f9685aee
evolution-data-server: 3.28.5 → 3.30.2 2018-11-30 21:33:56 +01:00
Jan Tojnar 5cc18c4781
gnome3: remove versionBranch attribute
Standard library now contains stdenv.lib.versions.majorMinor,
which does the same.
2018-10-05 02:17:19 +02:00
Jan Tojnar 6cefc9c1b0
Revert "treewide: remove placeholder usage"
This reverts commit 025881c236.
2018-08-30 18:18:30 +02:00
Jan Tojnar 69a17c7a19
Revert "treewide: remove placeholder usage"
This reverts commit 82f6267023.
2018-08-30 18:18:29 +02:00
Jan Tojnar ca565a3015
evolution-data-server: 3.28.3 → 3.28.5 2018-07-31 23:01:02 +02:00
Jan Tojnar 48fd0e6f20
evolution-data-server: 3.28.2 → 3.28.3 2018-06-20 02:06:47 +02:00