mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-01-08 10:15:23 +01:00
GParted 1.2.0 (2021-01-25)
Release Notes
This release of GParted includes enhancements, bug fixes and language translation updates.
Key changes include:
Add exFAT support using exfatprogs
Wait for udev change on /dev/DISK when erasing signatures
Don't try to mask non-existent Systemd \xe2\x97\x8f.service
Bug Fixes
Add exFAT support using exfatprogs (!30)
Fix gparted not launching when PS_FORMAT environment variable set (!54)
Wait for udev change on /dev/DISK when erasing signatures(#83, !55)
Raise minimum supported dosfstools to 3.0.18 (!57)
Fix formatting directive in it.po (!58)
Fix GNOME GitLab CI test job failures because of missing /dev entries (!59)
Fix GitLab CI job failures following Ubuntu docker image updates (!60)
Fix CentOS 7 CI test job fails because of zero sized /etc/machine-id (!62)
Set default alignment to cylinder for amiga partition table (#116, !63)
Don't try to mask non-existent Systemd \xe2\x97\x8f.service (#129, !64)
Code Credits
Code enhancements are courtesy of Mike Fleetwood, Antoine Viallon and Curtis Gedak.
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
39 lines
1004 B
BlitzBasic
39 lines
1004 B
BlitzBasic
SUMMARY = "A partition editor to graphically manage disk partitions "
|
|
HOMEPAGE = "http://gparted.org/index.php"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
inherit features_check autotools pkgconfig python3native gnome-help gtk-icon-cache
|
|
|
|
REQUIRED_DISTRO_FEATURES = "x11"
|
|
|
|
SRC_URI = " \
|
|
${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.gz \
|
|
file://0001-Install-polkit-action-unconditionally-executable-pke.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "6c90715d254d7a7ec0208b29007b64160dd9fb7df4c4aa7f8ec2c9d23114c719"
|
|
|
|
DEPENDS += " \
|
|
glib-2.0-native \
|
|
yelp-tools-native \
|
|
intltool-native \
|
|
glib-2.0 \
|
|
gtkmm3 \
|
|
parted \
|
|
"
|
|
|
|
FILES_${PN} += " \
|
|
${datadir}/appdata \
|
|
${datadir}/icons \
|
|
"
|
|
|
|
PACKAGES += "${PN}-polkit"
|
|
FILES_${PN}-polkit = "${datadir}/polkit-1"
|
|
|
|
RDEPENDS_${PN} = " \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'polkit', '${PN}-polkit', '', d)} \
|
|
dosfstools \
|
|
mtools \
|
|
e2fsprogs \
|
|
"
|