R. RyanTM
29b2c507b8
goreleaser: 0.168.0 -> 0.172.0
2021-06-27 18:41:04 +00:00
Sandro
fcc061ae7f
Merge pull request #128137 from bbigras/neofetch
...
neofetch: add options for optional dependency
2021-06-26 18:49:28 +02:00
Robert Schütz
ff5542ccef
Merge pull request #128177 from dotlambda/ytfzf-1.2.0
...
ytfzf: 1.1.6 -> 1.2.0
2021-06-26 16:25:36 +02:00
maralorn
867c0f8540
Merge pull request #128158 from felixsinger/coreboot/fix-typo
...
coreboot-utils: Fix typo
2021-06-26 15:36:49 +02:00
Robert Schütz
ab1141d5f0
ytfzf: 1.1.6 -> 1.2.0
...
https://github.com/pystardust/ytfzf/releases/tag/v1.2.0
2021-06-26 11:25:04 +02:00
Felix Singer
55c0a6584f
coreboot-utils: Fix typo
...
Write `coreboot` lowercase.
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2021-06-26 02:50:29 +02:00
Robert Schütz
d6234c2165
Merge branch 'master' into staging-next
2021-06-26 00:33:58 +02:00
Bruno Bigras
16dc11399d
neofetch: add option for optional dependency
2021-06-25 15:59:52 -04:00
Sandro
54cccb99de
Merge pull request #127941 from liff/libwnck/3-is-default
2021-06-25 15:53:01 +02:00
Sandro
57f5a1bcf2
Merge pull request #110220 from r-ryantm/auto-update/profile-sync-daemon
...
profile-sync-daemon: 6.42 -> 6.44
2021-06-25 15:45:16 +02:00
Robert Schütz
c1dca92daf
Merge branch 'master' into staging-next
2021-06-25 10:02:10 +02:00
Olli Helenius
8609f3fd20
libwnck: make 3.36.0 default
2021-06-24 18:04:30 +03:00
Sandro
44b3822c78
Merge pull request #127964 from Artturin/add-fsearch
...
fsearch: init at unstable-2021-06-23
2021-06-24 12:48:16 +02:00
Sandro
3ac4ca6ebc
Merge pull request #127974 from mweinelt/esphome
...
esphome: 1.19.3 -> 1.19.4
2021-06-24 12:31:24 +02:00
Jan Tojnar
a01a771740
Merge pull request #127243 from maxeaubrey/vala_cleanup
...
vala: drop 0.36, 0.44
2021-06-24 11:16:12 +02:00
Sandro
c6c2a2da8b
Merge pull request #127936 from orthros/fix-bun
2021-06-24 10:51:24 +02:00
Martin Weinelt
0ed028bdd1
esphome: 1.19.3 -> 1.19.4
2021-06-24 03:47:51 +02:00
github-actions[bot]
d437a6cac2
Merge master into staging-next
2021-06-24 00:06:27 +00:00
Artturin
cf7e051ede
fsearch: init at unstable-2021-06-23
2021-06-24 02:23:37 +03:00
Martin Weinelt
c11c97d90c
Merge pull request #127888 from mweinelt/esphome
...
esphome: 1.19.2 -> 1.19.3
2021-06-23 21:16:05 +02:00
Colin Nelson
74e4ba987e
bunnyfetch: unstable-2021-05-24 -> unstable-2021-06-19
2021-06-23 11:52:59 -07:00
github-actions[bot]
b68a0d2f5e
Merge master into staging-next
2021-06-23 18:04:30 +00:00
R. RyanTM
fe9682427b
go-rice: 1.0.0 -> 1.0.2
2021-06-23 09:48:55 -07:00
R. RyanTM
fa34624701
gh-ost: 1.1.1 -> 1.1.2
2021-06-23 09:47:34 -07:00
R. RyanTM
7936eaa3a6
disfetch: 1.22 -> 1.24
2021-06-23 09:38:02 -07:00
Sandro
f39a2230c3
Merge pull request #127834 from dotlambda/dnspython_1-drop
2021-06-23 17:55:42 +02:00
Sandro
8bd3ae2e84
Merge pull request #127891 from SuperSandro2000/du-dust
2021-06-23 15:38:23 +02:00
github-actions[bot]
b59d049598
Merge master into staging-next
2021-06-23 12:04:25 +00:00
Sandro Jäckel
3a2215d1d5
du-dust: 0.5.4 -> 0.6.0
2021-06-23 13:35:10 +02:00
Martin Weinelt
6d7451d728
esphome: 1.19.2 -> 1.19.3
2021-06-23 13:15:37 +02:00
Robert Schütz
b128806d99
pythonPackages.dns: move alias to python-aliases.nix
2021-06-23 11:48:22 +02:00
Martin Weinelt
06d92ba195
esphome: fix permissions on src file before modifying them
...
We store esphome in the nix store, which results in its file permissions
being 0444. Esphome, when compiling a firmware image, will copy these
files from the nix store to a working directory. When updating between
versions it will notice these files changed and try to copy the new
version over, which would break, because the user had no write
permissions on the files.
❯ esphome compile 01e4ac.yml
INFO Reading configuration 01e4ac.yml...
INFO Detected timezone 'CET' with UTC offset 1 and daylight saving time from 27 March 02:00:00 to 30 October 03:00:00
INFO Generating C++ source...
ERROR Error copying file /nix/store/lmzrgl1arqfd98jcss4rsmmy6dbffddn-esphome-1.19.2/lib/python3.8/site-packages/esphome/components/api/api_connection.cpp to 01e4ac/src/esphome/components/api/api_connection.cpp: [Errno 13] Permission denied: '01e4ac/src/esphome/components/api/api_connection.cpp'
To fix this we modify chmod to 0644 just before esphome tries a copy
operation, which will fix permissions on existing working directories
just in time.
2021-06-23 05:07:11 +02:00
Martin Weinelt
b607aadaac
Merge branch 'master' into staging-next
2021-06-22 23:55:21 +02:00
Sandro
b6c99a1986
Merge pull request #127802 from fortuneteller2k/elfcat
...
elfcat: init at 0.1.3
2021-06-22 17:14:00 +02:00
Martin Weinelt
ec12eaec34
Merge pull request #127735 from mweinelt/esphome
2021-06-22 16:59:24 +02:00
Martin Weinelt
c8db4ba116
esphome: 1.19.0 -> 1.19.2
2021-06-22 16:29:26 +02:00
fortuneteller2k
dc24124ec6
elfcat: init at 0.1.3
2021-06-22 22:19:17 +08:00
Sandro
db67c0493d
Merge pull request #127774 from HanEmile/submit/add-notify-package
2021-06-22 15:12:44 +02:00
Sandro
df1ec730c3
Merge pull request #127782 from malbarbo/tmux-static
2021-06-22 15:10:55 +02:00
github-actions[bot]
c7bb5a79c8
Merge master into staging-next
2021-06-22 12:05:00 +00:00
Marco A L Barbosa
767b0a628d
tmux: fix cross compiling
2021-06-22 08:13:36 -03:00
Emile
c118430db0
notify: init at 0.0.2
2021-06-22 11:24:57 +02:00
Yuka
1bbdca36d2
maintainers: add yuka ( #127773 )
...
If this seems strange to you, or you are a maintainer of one of these
packages, please contact me on Matrix: @yuka:yuka.dev
2021-06-22 11:17:00 +02:00
Mario Rodas
52a56d3910
Merge pull request #127733 from marsam/fix-entr-darwin
...
entr: fix segfault on darwin
2021-06-22 02:44:16 -05:00
Fabian Affolter
a95eebd1cd
Merge pull request #127676 from j0hax/beats
...
beats: init at 1.0
2021-06-22 08:31:24 +02:00
Peter Hoeg
2473f4eba4
plocate: init at 1.1.7 ( #124259 )
...
* plocate: init at 1.1.7
2021-06-22 14:13:11 +08:00
github-actions[bot]
6f3d57cba9
Merge master into staging-next
2021-06-22 06:04:24 +00:00
Sandro
3dca1e4c2c
Merge pull request #127701 from fabaff/bump-osm2pgsql
...
osm2pgsql: 1.4.2 -> 1.5.0
2021-06-22 02:41:37 +02:00
Sandro
1249563b7c
Merge pull request #127670 from fgaz/cht-sh/2021-04-25
...
cht-sh: unstable-2021-01-31 -> unstable-2021-04-25
2021-06-22 02:39:07 +02:00
Sandro
6527d3ec20
Merge pull request #127625 from ethancedwards8/gitlint
...
gitlint: init at 0.15.1
2021-06-22 02:30:19 +02:00