Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] e2fsprogs: update to 1.45.2.
@ 2019-05-31  0:18 voidlinux-github
  2019-05-31 11:40 ` [PR PATCH] [Closed]: " voidlinux-github
  0 siblings, 1 reply; 2+ messages in thread
From: voidlinux-github @ 2019-05-31  0:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 477 bytes --]

There is a new pull request by daniel-eys against master on the void-packages repository

https://github.com/daniel-eys/void-packages e2fsprogs
https://github.com/void-linux/void-packages/pull/12047

e2fsprogs: update to 1.45.2.
* glibc-patch removed as this looks like to be resolved upstream since 1.44.5.
* `perl` and `diffutils` needed for the testsuite so added to `checkdepends`.

A patch file from https://github.com/void-linux/void-packages/pull/12047.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-e2fsprogs-12047.patch --]
[-- Type: application/text/x-diff, Size: 7808 bytes --]

From 996c2d630ecf033fd2e1260a05da4635f9187c6e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Ey=C3=9Fer?= <daniel.eysser@gmail.com>
Date: Fri, 31 May 2019 01:56:47 +0200
Subject: [PATCH] e2fsprogs: update to 1.45.2.

---
 srcpkgs/e2fsprogs/patches/fix-glibcism.patch | 243 -------------------
 srcpkgs/e2fsprogs/template                   |   5 +-
 2 files changed, 3 insertions(+), 245 deletions(-)
 delete mode 100644 srcpkgs/e2fsprogs/patches/fix-glibcism.patch

diff --git a/srcpkgs/e2fsprogs/patches/fix-glibcism.patch b/srcpkgs/e2fsprogs/patches/fix-glibcism.patch
deleted file mode 100644
index 7d02fa91d57..00000000000
--- a/srcpkgs/e2fsprogs/patches/fix-glibcism.patch
+++ /dev/null
@@ -1,243 +0,0 @@
---- lib/ext2fs/ext4_acl.h
-+++ lib/ext2fs/ext4_acl.h
-@@ -50,13 +50,17 @@ typedef struct {
- 
- typedef struct {
-         __le32                  a_version;
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpedantic"
-+#endif
- #endif
-         posix_acl_xattr_entry   a_entries[0];
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- } posix_acl_xattr_header;
- 
---- lib/ext2fs/fiemap.h
-+++ lib/ext2fs/fiemap.h
-@@ -31,14 +31,18 @@ struct fiemap {
- 	__u32 fm_mapped_extents;/* number of extents that were mapped (out) */
- 	__u32 fm_extent_count;  /* size of fm_extents array (in) */
- 	__u32 fm_reserved;
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpedantic"
-+#endif
- #endif
- 	struct fiemap_extent fm_extents[0]; /* array of mapped extents (out) */
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- };
- 
- #if defined(__linux__) && !defined(FS_IOC_FIEMAP)
---- lib/ext2fs/mmp.c
-+++ lib/ext2fs/mmp.c
-@@ -34,8 +34,10 @@
- #define O_DIRECT 0
- #endif
- 
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic push
-+#endif
- #ifndef CONFIG_MMP
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
-@@ -467,6 +469,8 @@ mmp_error:
- 	return EXT2_ET_OP_NOT_SUPPORTED;
- #endif
- }
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic pop
- #endif
-+#endif
---- lib/ext2fs/unix_io.c
-+++ lib/ext2fs/unix_io.c
-@@ -1127,10 +1127,12 @@ unimplemented:
- }
- 
- /* parameters might not be used if OS doesn't support zeroout */
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wunused-parameter"
- #endif
-+#endif
- static errcode_t unix_zeroout(io_channel channel, unsigned long long block,
- 			      unsigned long long count)
- {
-@@ -1197,9 +1199,11 @@ err:
- unimplemented:
- 	return EXT2_ET_UNIMPLEMENTED;
- }
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- 
- static struct struct_io_manager struct_unix_manager = {
- 	.magic		= EXT2_ET_MAGIC_IO_MANAGER,
---- lib/ext2fs/hashmap.h
-+++ lib/ext2fs/hashmap.h
-@@ -17,14 +17,18 @@ struct ext2fs_hashmap {
- 		struct ext2fs_hashmap_entry *next;
- 		struct ext2fs_hashmap_entry *list_next;
- 		struct ext2fs_hashmap_entry *list_prev;
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpedantic"
-+#endif
- #endif
- 	} *entries[0];
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- };
- 
- struct ext2fs_hashmap *ext2fs_hashmap_create(
---- lib/uuid/gen_uuid.c
-+++ lib/uuid/gen_uuid.c
-@@ -484,7 +484,9 @@ static void close_all_fds(void)
- }
- #endif /* defined(USE_UUIDD) && defined(HAVE_SYS_UN_H) */
- 
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
-+#endif
- #pragma GCC diagnostic push
- #if !defined(USE_UUIDD) || !defined(HAVE_SYS_UN_H)
- #pragma GCC diagnostic ignored "-Wunused-parameter"
-@@ -572,9 +574,11 @@ fail:
- #endif
- 	return -1;
- }
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- 
- void uuid__generate_time(uuid_t out, int *num)
- {
---- e2fsck/problem.c
-+++ e2fsck/problem.c
-@@ -99,10 +99,12 @@ static const char *preen_msg[] = {
- 	"",			/* 20 */
- };
- 
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wmissing-field-initializers"
- #endif
-+#endif
- 
- static struct e2fsck_problem problem_table[] = {
- 
-@@ -2094,9 +2096,11 @@ static struct latch_descr pr_latch_info[] = {
- 	{ PR_LATCH_OPTIMIZE_EXT, PR_1E_OPTIMIZE_EXT_HEADER, PR_1E_OPTIMIZE_EXT_END },
- 	{ -1, 0, 0 },
- };
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- 
- static struct e2fsck_problem *find_problem(problem_t code)
- {
---- misc/e2undo.c
-+++ misc/e2undo.c
-@@ -81,14 +81,18 @@ struct undo_key_block {
- 	__le32 magic;		/* KEYBLOCK_MAGIC number */
- 	__le32 crc;		/* block checksum */
- 	__le64 reserved;	/* zero */
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpedantic"
-+#endif
- #endif
- 	struct undo_key keys[0];	/* keys, which come immediately after */
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- };
- 
- struct undo_key_info {
---- misc/filefrag.c
-+++ misc/filefrag.c
-@@ -535,9 +535,11 @@ int main(int argc, char**argv)
- 				char *end;
- 				blocksize = strtoul(optarg, &end, 0);
- 				if (end) {
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (7, 0)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
-+#endif
- #endif
- 					switch (end[0]) {
- 					case 'g':
-@@ -555,8 +557,10 @@ int main(int argc, char**argv)
- 					default:
- 						break;
- 					}
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (7, 0)
- #pragma GCC diagnostic pop
-+#endif
- #endif
- 				}
- 			} else { /* Allow -b without argument for compat. Remove
---- misc/fuse2fs.c
-+++ misc/fuse2fs.c
-@@ -118,14 +118,18 @@ typedef struct {
- 
- typedef struct {
- 	u_int32_t	a_version;
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic push
- #pragma GCC diagnostic ignored "-Wpedantic"
-+#endif
- #endif
- 	acl_ea_entry	a_entries[0];
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 8)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- } acl_ea_header;
- 
- static inline size_t acl_ea_size(int count)
---- debugfs/set_fields.c
-+++ debugfs/set_fields.c
-@@ -291,9 +292,11 @@ static struct field_set_info mmp_fields[] = {
- 	{ "checksum", &set_mmp.mmp_checksum, NULL, 4, parse_uint },
- 	{ 0, 0, 0, 0 }
- };
-+#ifdef __GNUC_PREREQ
- #if __GNUC_PREREQ (4, 6)
- #pragma GCC diagnostic pop
- #endif
-+#endif
- 
- #ifdef UNITTEST
- 
diff --git a/srcpkgs/e2fsprogs/template b/srcpkgs/e2fsprogs/template
index 4875bc8e062..83d6e8e37c7 100644
--- a/srcpkgs/e2fsprogs/template
+++ b/srcpkgs/e2fsprogs/template
@@ -1,6 +1,6 @@
 # Template file for 'e2fsprogs'
 pkgname=e2fsprogs
-version=1.45.0
+version=1.45.2
 revision=1
 build_style=gnu-configure
 configure_args="--enable-elf-shlibs --disable-fsck
@@ -11,12 +11,13 @@ configure_args="--enable-elf-shlibs --disable-fsck
 make_install_args="install-libs"
 hostmakedepends="pkg-config"
 makedepends="libuuid-devel libblkid-devel"
+checkdepends="diffutils perl"
 short_desc="Ext2/3/4 Filesystem Utilities"
 maintainer="Juan RP <xtraeme@voidlinux.org>"
 license="GPL-2.0-or-later, LGPL-2.1-or-later"
 homepage="http://e2fsprogs.sourceforge.net/"
 distfiles="${KERNEL_SITE}/kernel/people/tytso/e2fsprogs/v${version}/e2fsprogs-${version}.tar.xz"
-checksum=1fa9d0e13f30f1cae9035fe74ed8ad01bfaae99c2c0b9b970318bdb5d738fcd4
+checksum=4952c9ae91e36d762e13cc5b9e8f7eeb5453e4aee4cd9b7402e73f2d4e65e009
 conf_files="/etc/mke2fs.conf /etc/e2scrub.conf"
 
 do_check() {

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PR PATCH] [Closed]: e2fsprogs: update to 1.45.2.
  2019-05-31  0:18 [PR PATCH] e2fsprogs: update to 1.45.2 voidlinux-github
@ 2019-05-31 11:40 ` voidlinux-github
  0 siblings, 0 replies; 2+ messages in thread
From: voidlinux-github @ 2019-05-31 11:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 317 bytes --]

There's a closed pull request on the void-packages repository

e2fsprogs: update to 1.45.2.
https://github.com/void-linux/void-packages/pull/12047
Description: * glibc-patch removed as this looks like to be resolved upstream since 1.44.5.
* `perl` and `diffutils` needed for the testsuite so added to `checkdepends`.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-05-31 11:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-31  0:18 [PR PATCH] e2fsprogs: update to 1.45.2 voidlinux-github
2019-05-31 11:40 ` [PR PATCH] [Closed]: " voidlinux-github

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).