[arch-commits] Commit in e2fsprogs/repos (3 files)

2021-07-28 Thread Christian Hesse via arch-commits
Date: Wednesday, July 28, 2021 @ 20:55:29
  Author: eworm
Revision: 420587

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 420586, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 420586, e2fsprogs/trunk/PKGBUILD)

-+
 MIT-LICENSE |   25 +++
 PKGBUILD|   73 ++
 2 files changed, 98 insertions(+)

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 420586, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-07-28 20:55:29 UTC (rev 420587)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-x86_64/PKGBUILD (from rev 420586, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-07-28 20:55:29 UTC (rev 420587)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.46.3
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('sh' 'util-linux-libs')
+makedepends=('systemd' 'util-linux')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
+'MIT-LICENSE')
+sha256sums=('86d1580facdd49f2e0e6b027e26b1e6c48af538762dc40aeed2a87153c1f11b7'
+'SKIP'
+'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
+
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+  --prefix=/usr \
+  --with-root-prefix="" \
+  --libdir=/usr/lib \
+  --sbindir=/usr/bin \
+  --enable-elf-shlibs \
+  --disable-fsck \
+  --disable-uuidd \
+  --disable-libuuid \
+  --disable-libblkid
+
+  make
+
+  # regenerate locale files
+  find po/ -name '*.gmo' -delete
+  make -C po update-gmo
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # remove static libraries with a shared counterpart
+  rm "${pkgdir}"/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}



[arch-commits] Commit in e2fsprogs/repos (3 files)

2021-02-28 Thread Christian Hesse via arch-commits
Date: Monday, March 1, 2021 @ 07:10:26
  Author: eworm
Revision: 408937

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 408936, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 408936, e2fsprogs/trunk/PKGBUILD)

-+
 MIT-LICENSE |   25 +++
 PKGBUILD|   73 ++
 2 files changed, 98 insertions(+)

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 408936, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-03-01 07:10:26 UTC (rev 408937)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-x86_64/PKGBUILD (from rev 408936, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-03-01 07:10:26 UTC (rev 408937)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.46.2
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('sh' 'util-linux-libs')
+makedepends=('systemd' 'util-linux')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
+'MIT-LICENSE')
+sha256sums=('23aa093295c94e71ef1be490c4004871c5b01d216a8cb4d111fa6c0aac354168'
+'SKIP'
+'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
+
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+  --prefix=/usr \
+  --with-root-prefix="" \
+  --libdir=/usr/lib \
+  --sbindir=/usr/bin \
+  --enable-elf-shlibs \
+  --disable-fsck \
+  --disable-uuidd \
+  --disable-libuuid \
+  --disable-libblkid
+
+  make
+
+  # regenerate locale files
+  find po/ -name '*.gmo' -delete
+  make -C po update-gmo
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # remove static libraries with a shared counterpart
+  rm "${pkgdir}"/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}


[arch-commits] Commit in e2fsprogs/repos (3 files)

2021-02-09 Thread Christian Hesse via arch-commits
Date: Wednesday, February 10, 2021 @ 07:08:34
  Author: eworm
Revision: 407779

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 407778, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 407778, e2fsprogs/trunk/PKGBUILD)

-+
 MIT-LICENSE |   25 +++
 PKGBUILD|   73 ++
 2 files changed, 98 insertions(+)

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 407778, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-02-10 07:08:34 UTC (rev 407779)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-x86_64/PKGBUILD (from rev 407778, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-02-10 07:08:34 UTC (rev 407779)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.46.1
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('sh' 'util-linux-libs')
+makedepends=('systemd' 'util-linux')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
+'MIT-LICENSE')
+sha256sums=('bbe6af3b7bb7119556b6f57a78d41b330007738bca8530b2ba95d2ba35430151'
+'SKIP'
+'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
+
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+  --prefix=/usr \
+  --with-root-prefix="" \
+  --libdir=/usr/lib \
+  --sbindir=/usr/bin \
+  --enable-elf-shlibs \
+  --disable-fsck \
+  --disable-uuidd \
+  --disable-libuuid \
+  --disable-libblkid
+
+  make
+
+  # regenerate locale files
+  find po/ -name '*.gmo' -delete
+  make -C po update-gmo
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # remove static libraries with a shared counterpart
+  rm "${pkgdir}"/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}


[arch-commits] Commit in e2fsprogs/repos (3 files)

2021-01-31 Thread Christian Hesse via arch-commits
Date: Sunday, January 31, 2021 @ 20:35:04
  Author: eworm
Revision: 406975

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 406974, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 406974, e2fsprogs/trunk/PKGBUILD)

-+
 MIT-LICENSE |   25 +++
 PKGBUILD|   73 ++
 2 files changed, 98 insertions(+)

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 406974, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-01-31 20:35:04 UTC (rev 406975)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-x86_64/PKGBUILD (from rev 406974, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-01-31 20:35:04 UTC (rev 406975)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.46.0
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('sh' 'util-linux-libs')
+makedepends=('systemd' 'util-linux')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
+'MIT-LICENSE')
+sha256sums=('91d61cef9a251a18e49a700be0028a8d35b0549a25d2bc263af6fa5d9f7c7d13'
+'SKIP'
+'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
+
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+  --prefix=/usr \
+  --with-root-prefix="" \
+  --libdir=/usr/lib \
+  --sbindir=/usr/bin \
+  --enable-elf-shlibs \
+  --disable-fsck \
+  --disable-uuidd \
+  --disable-libuuid \
+  --disable-libblkid
+
+  make
+
+  # regenerate locale files
+  find po/ -name '*.gmo' -delete
+  make -C po update-gmo
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # remove static libraries with a shared counterpart
+  rm "${pkgdir}"/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}


[arch-commits] Commit in e2fsprogs/repos (3 files)

2021-01-29 Thread Christian Hesse via arch-commits
Date: Friday, January 29, 2021 @ 08:33:16
  Author: eworm
Revision: 406886

archrelease: copy trunk to testing-x86_64

Added:
  e2fsprogs/repos/testing-x86_64/
  e2fsprogs/repos/testing-x86_64/MIT-LICENSE
(from rev 406885, e2fsprogs/trunk/MIT-LICENSE)
  e2fsprogs/repos/testing-x86_64/PKGBUILD
(from rev 406885, e2fsprogs/trunk/PKGBUILD)

-+
 MIT-LICENSE |   25 +++
 PKGBUILD|   73 ++
 2 files changed, 98 insertions(+)

Copied: e2fsprogs/repos/testing-x86_64/MIT-LICENSE (from rev 406885, 
e2fsprogs/trunk/MIT-LICENSE)
===
--- testing-x86_64/MIT-LICENSE  (rev 0)
+++ testing-x86_64/MIT-LICENSE  2021-01-29 08:33:16 UTC (rev 406886)
@@ -0,0 +1,25 @@
+Copyright (c) 2003-2007 Theodore Ts'o 
+Copyright (c) 1997-2003 Yann Dirson 
+Copyright (c) 2001 Alcove 
+Copyright (c) 1997 Klee Dienes
+Copyright (c) 1995-1996 Michael Nonweiler 
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject
+to the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
+KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
+WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
+BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
+AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.

Copied: e2fsprogs/repos/testing-x86_64/PKGBUILD (from rev 406885, 
e2fsprogs/trunk/PKGBUILD)
===
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2021-01-29 08:33:16 UTC (rev 406886)
@@ -0,0 +1,73 @@
+# Maintainer: Ronald van Haren 
+# Contributor: judd 
+
+pkgname=e2fsprogs
+pkgver=1.45.7
+pkgrel=1
+pkgdesc="Ext2/3/4 filesystem utilities"
+arch=('x86_64')
+license=('GPL' 'LGPL' 'MIT')
+url="http://e2fsprogs.sourceforge.net;
+depends=('sh' 'util-linux-libs')
+makedepends=('systemd' 'util-linux')
+provides=('libcom_err.so'
+  'libe2p.so'
+  'libext2fs.so'
+  'libss.so')
+backup=('etc/mke2fs.conf')
+options=('staticlibs')
+validpgpkeys=('3AB057B7E78D945C8C5591FBD36F769BC11804F0') # Theodore Ts'o 

+source=("https://www.kernel.org/pub/linux/kernel/people/tytso/${pkgname}/v${pkgver}/${pkgname}-${pkgver}.tar."{xz,sign}
+'MIT-LICENSE')
+sha256sums=('62d49c86d9d4becf305093edd65464484dc9ea41c6ff9ae4f536e4a341b171a2'
+'SKIP'
+'cc45386c1d71f438ad648fd7971e49e3074ad9dbacf9dd3a5b4cb61fd294ecbb')
+
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  # Remove unnecessary init.d directory
+  sed -i '/init\.d/s|^|#|' misc/Makefile.in
+}
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  ./configure \
+  --prefix=/usr \
+  --with-root-prefix="" \
+  --libdir=/usr/lib \
+  --sbindir=/usr/bin \
+  --enable-elf-shlibs \
+  --disable-fsck \
+  --disable-uuidd \
+  --disable-libuuid \
+  --disable-libblkid
+
+  make
+
+  # regenerate locale files
+  find po/ -name '*.gmo' -delete
+  make -C po update-gmo
+}
+
+package() {
+  unset MAKEFLAGS
+
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install install-libs
+
+  sed -i -e 's/^AWK=.*/AWK=awk/' "${pkgdir}/usr/bin/compile_et"
+
+  # remove references to build directory
+  sed -i -e 's#^SS_DIR=.*#SS_DIR="/usr/share/ss"#' "${pkgdir}/usr/bin/mk_cmds"
+  sed -i -e 's#^ET_DIR=.*#ET_DIR="/usr/share/et"#' 
"${pkgdir}/usr/bin/compile_et"
+
+  # remove static libraries with a shared counterpart
+  rm "${pkgdir}"/usr/lib/lib{com_err,e2p,ext2fs,ss}.a
+
+  # install MIT license
+  install -Dm644 "${srcdir}/MIT-LICENSE" \
+"${pkgdir}/usr/share/licenses/${pkgname}/MIT-LICENSE"
+}