* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmissing/
@ 2019-08-19 18:30 Fabian Groffen
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen @ 2019-08-19 18:30 UTC (permalink / raw
To: gentoo-commits
commit: 097f3a38eec2ff00dbba3f890d5af00787db787b
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 18:30:06 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 18:30:46 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097f3a38
dev-libs/libmissing: initial ebuild by me
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
dev-libs/libmissing/Manifest | 1 +
dev-libs/libmissing/libmissing-1.0.0.ebuild | 122 ++++++++++++++++++++++++++++
dev-libs/libmissing/metadata.xml | 12 +++
3 files changed, 135 insertions(+)
diff --git a/dev-libs/libmissing/Manifest b/dev-libs/libmissing/Manifest
new file mode 100644
index 00000000000..39d4a175c2a
--- /dev/null
+++ b/dev-libs/libmissing/Manifest
@@ -0,0 +1 @@
+DIST gnulib-b451121ab45497e78cb6f612c8673a9705193391.tar.gz 6666079 BLAKE2B e7d3b9478697067b57ab198e044f3c854128d5fe390d30947829ce4f34c695a748668c33ae19690e9927fff6df3e194a3160cb4adb7cf47235c603241c66889a SHA512 f6e165cfc0a3999c778d9f43ffc90ff9b569a77ff1e54ff5c50b12b0eddf262c24da8cd2719548574e0397535bb0eb835eef603cc74769f7876ef9db101bebec
diff --git a/dev-libs/libmissing/libmissing-1.0.0.ebuild b/dev-libs/libmissing/libmissing-1.0.0.ebuild
new file mode 100644
index 00000000000..270db24a778
--- /dev/null
+++ b/dev-libs/libmissing/libmissing-1.0.0.ebuild
@@ -0,0 +1,122 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+# NOTE: PV is the libtool version number current:revision:age
+
+DESCRIPTION="Library with missing functions based on GNUlib"
+HOMEPAGE="https://prefix.gentoo.org"
+GIT_TAG="b451121ab45497e78cb6f612c8673a9705193391"
+SRC_URI="https://git.savannah.gnu.org/cgit/gnulib.git/snapshot/gnulib-${GIT_TAG}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~ppc-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+S="${WORKDIR}/gnulib-${GIT_TAG}"
+
+src_prepare() {
+ default
+
+ mkdir "${PN}" || die
+ cd "${PN}" || die
+ cat > configure.ac <<- EOS
+ AC_PREREQ([2.69])
+ AC_INIT([${PN}], [${PV}], [prefix@gentoo.org])
+ AM_INIT_AUTOMAKE
+ LT_INIT
+
+ AC_CONFIG_MACRO_DIR([m4])
+ AC_CONFIG_HEADER([config.h])
+
+ AC_PROG_CC
+ gl_INIT
+ gl_EARLY
+
+ AC_CONFIG_FILES([Makefile lib/Makefile])
+
+ AC_OUTPUT
+ EOS
+
+ cat > Makefile.am <<- EOS
+ SUBDIRS = lib
+ EOS
+
+ local modules
+ local platform
+ local rev
+
+ case "${CHOST}" in
+ *-apple-darwin*)
+ rev=${CHOST##*-darwin}
+ platform="Mac OS X 10.$((rev - 4))"
+ ;;
+ *-solaris2.*)
+ rev=${CHOST##*-solaris2.}
+ # we only support Solaris 10 (and perhaps 9) and up, so we
+ # don't have to bother about 2.x, just X
+ platform="Solaris ${rev}"
+ ;;
+ esac
+
+ # blacklist some modules that cause collisions
+ # iconv provided by virtual/iconv -> sys-libs/libiconv
+ modules=( $(
+ cd "${S}"/doc/posix-functions
+ grep -A1 "This function is missing" *.texi | \
+ grep "${platform}" | \
+ sed -e 's:^\(.[^-]*\)-.*$:\1:' | \
+ xargs sed -n 's/^Gnulib module: \([a-z].*\)$/\1/p' | \
+ sed -e 's: or .*$::' -e 's:, :\n:g' | \
+ sort -u | \
+ grep -v "iconv"
+ ) )
+
+ # get platform specific set of missing functions
+ einfo "Including sources for missing functions on ${platform}:"
+ einfo "${modules[*]}"
+ "${S}"/gnulib-tool \
+ --import \
+ --lib=libmissing \
+ --libtool \
+ --no-vc-files \
+ "${modules[@]}"
+
+ sed -i -e '/^noinst_LTLIBRARIES /s/noinst_/lib_/' lib/Makefile.am || die
+ echo "libmissing_la_LDFLAGS += version-info ${PV//./:}" >> lib/Makefile.am
+ cat >> lib/Makefile.am << 'EOS'
+install-data-local: $(BUILT_SOURCES)
+ @for hdr in $(BUILT_SOURCES); do \
+ $(mkinstalldirs) $(DESTDIR)$(includedir)/$${hdr%/*}; \
+ $(INSTALL_HEADER) "$$hdr" $(DESTDIR)$(includedir)/$${hdr}; \
+ done;
+EOS
+
+ eautoreconf
+}
+
+src_configure() {
+ cd "${PN}" || die
+ default
+}
+
+src_compile() {
+ cd "${PN}" || die
+ default
+}
+
+src_install() {
+ cd "${PN}" || die
+ default
+
+ rm "${ED}"/usr/lib/libmissing.la \
+ "$(use static-libs || echo "${ED}"/usr/lib/libmissing.a)" || die
+}
diff --git a/dev-libs/libmissing/metadata.xml b/dev-libs/libmissing/metadata.xml
new file mode 100644
index 00000000000..ac8fbe34045
--- /dev/null
+++ b/dev-libs/libmissing/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<maintainer type="project">
+ <email>prefix@gentoo.org</email>
+ <name>Prefix Project</name>
+</maintainer>
+<longdescription lang="en">
+ libmissing provides missing POSIX functions using the gnulib sources
+ as library and system headers.
+</longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmissing/
@ 2019-08-19 19:16 Fabian Groffen
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen @ 2019-08-19 19:16 UTC (permalink / raw
To: gentoo-commits
commit: e4ffa7d21697f5a2c0396f0354761bdfa7fe6d38
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 19 19:15:52 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Mon Aug 19 19:16:14 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4ffa7d2
dev-libs/libmissing: allow reinstalling itself
Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
.../{libmissing-1.0.0.ebuild => libmissing-1.0.0-r1.ebuild} | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/dev-libs/libmissing/libmissing-1.0.0.ebuild b/dev-libs/libmissing/libmissing-1.0.0-r1.ebuild
similarity index 88%
rename from dev-libs/libmissing/libmissing-1.0.0.ebuild
rename to dev-libs/libmissing/libmissing-1.0.0-r1.ebuild
index 270db24a778..c1371f6d4fa 100644
--- a/dev-libs/libmissing/libmissing-1.0.0.ebuild
+++ b/dev-libs/libmissing/libmissing-1.0.0-r1.ebuild
@@ -83,11 +83,12 @@ src_prepare() {
# get platform specific set of missing functions
einfo "Including sources for missing functions on ${platform}:"
einfo "${modules[*]}"
- "${S}"/gnulib-tool \
+ "${S}"/gnulib-tool -S \
--import \
--lib=libmissing \
--libtool \
--no-vc-files \
+ --no-cache-modules \
"${modules[@]}"
sed -i -e '/^noinst_LTLIBRARIES /s/noinst_/lib_/' lib/Makefile.am || die
@@ -95,8 +96,7 @@ src_prepare() {
cat >> lib/Makefile.am << 'EOS'
install-data-local: $(BUILT_SOURCES)
@for hdr in $(BUILT_SOURCES); do \
- $(mkinstalldirs) $(DESTDIR)$(includedir)/$${hdr%/*}; \
- $(INSTALL_HEADER) "$$hdr" $(DESTDIR)$(includedir)/$${hdr}; \
+ $(INSTALL_HEADER) -D "$$hdr" $(DESTDIR)$(includedir)/missing/$${hdr}; \
done;
EOS
@@ -105,6 +105,13 @@ EOS
src_configure() {
cd "${PN}" || die
+
+ # ensure we don't pick up installed libmissing
+ export CPPFLAGS="${CPPFLAGS/-I${EPREFIX}\/usr\/include\/missing/}"
+ export LIBS="${LIBS/-lmissing/}"
+ einfo "CPPFLAGS: ${CPPFLAGS}"
+ einfo "LIBS: ${LIBS}"
+
default
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmissing/
@ 2019-10-13 18:12 Fabian Groffen
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen @ 2019-10-13 18:12 UTC (permalink / raw
To: gentoo-commits
commit: badffc150a3131970425cc5a8fa86a7ef41e3b99
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 13 18:09:59 2019 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Sun Oct 13 18:12:46 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=badffc15
dev-libs/libmissing: revbump to install fixed headers and static lib
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
...ing-1.0.0-r1.ebuild => libmissing-1.1.0.ebuild} | 54 +++++++++++++++++++---
1 file changed, 48 insertions(+), 6 deletions(-)
diff --git a/dev-libs/libmissing/libmissing-1.0.0-r1.ebuild b/dev-libs/libmissing/libmissing-1.1.0.ebuild
similarity index 62%
rename from dev-libs/libmissing/libmissing-1.0.0-r1.ebuild
rename to dev-libs/libmissing/libmissing-1.1.0.ebuild
index c1371f6d4fa..b7099ebe777 100644
--- a/dev-libs/libmissing/libmissing-1.0.0-r1.ebuild
+++ b/dev-libs/libmissing/libmissing-1.1.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://git.savannah.gnu.org/cgit/gnulib.git/snapshot/gnulib-${GIT_TAG}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="static-libs"
+#IUSE="static-libs" # dynamic won't work :(
DEPEND=""
RDEPEND="${DEPEND}"
@@ -26,6 +26,25 @@ S="${WORKDIR}/gnulib-${GIT_TAG}"
src_prepare() {
default
+ # create a config file with just the definitions we need
+ mkdir extern-inline || die
+ cd extern-inline || die
+
+ cat > configure.ac <<- EOS
+ AC_PREREQ([2.69])
+ AC_INIT([${PN}], [${PV}], [prefix@gentoo.org])
+
+ AC_CONFIG_MACRO_DIR([../m4])
+ AC_CONFIG_HEADER([missing-include.h])
+
+ gl_EXTERN_INLINE
+ EOS
+
+ eautoreconf
+ sed -e '1,/PACKAGE_VERSION/d' missing-include.h.in \
+ > "${T}"/missing-include.h
+ cd .. || die
+
mkdir "${PN}" || die
cd "${PN}" || die
cat > configure.ac <<- EOS
@@ -92,11 +111,11 @@ src_prepare() {
"${modules[@]}"
sed -i -e '/^noinst_LTLIBRARIES /s/noinst_/lib_/' lib/Makefile.am || die
- echo "libmissing_la_LDFLAGS += version-info ${PV//./:}" >> lib/Makefile.am
+ echo "libmissing_la_LDFLAGS += -version-info ${PV//./:}" >> lib/Makefile.am
cat >> lib/Makefile.am << 'EOS'
install-data-local: $(BUILT_SOURCES)
@for hdr in $(BUILT_SOURCES); do \
- $(INSTALL_HEADER) -D "$$hdr" $(DESTDIR)$(includedir)/missing/$${hdr}; \
+ $(INSTALL_HEADER) -D "$$hdr" $(DESTDIR)$(includedir)/$${hdr}; \
done;
EOS
@@ -107,12 +126,16 @@ src_configure() {
cd "${PN}" || die
# ensure we don't pick up installed libmissing
+ export CPPFLAGS+="-DDISABLE_LIBMISSING" # disable libmissing headers
+ export BINUTILS_CONFIG_DISABLE_MISSING=1 # disable -lmissing from ldwrapper
export CPPFLAGS="${CPPFLAGS/-I${EPREFIX}\/usr\/include\/missing/}"
export LIBS="${LIBS/-lmissing/}"
einfo "CPPFLAGS: ${CPPFLAGS}"
einfo "LIBS: ${LIBS}"
- default
+ # gnulib cannot be used a shared library, doing so results in stack
+ # protector checks failing for reasons yet unknown to me
+ econf --disable-shared --enable-static || die
}
src_compile() {
@@ -122,8 +145,27 @@ src_compile() {
src_install() {
cd "${PN}" || die
+
default
- rm "${ED}"/usr/lib/libmissing.la \
- "$(use static-libs || echo "${ED}"/usr/lib/libmissing.a)" || die
+ rm -f "${ED}"/usr/lib/libmissing.la || die
+
+ cd "${ED}/usr/include" || die
+
+ # fix config.h dependency so we can can distribute it without
+ local f
+ for f in $(grep "_GL_INLINE_HEADER_BEGIN" -l *.h */*.h) ; do
+ cat "${T}"/missing-include.h "${f}" > "${f}.new"
+ [[ -s "${f}.new" ]] && mv "${f}.new" "${f}"
+ done
+
+ # modify all header-files so we can disable them and that they won't
+ # clash with gnulib-based packages
+ for f in *.h */*.h ; do
+ sed -i \
+ -e '1i#ifdef DISABLE_LIBMISSING\n# include_next <'"${f}"'>\n#else' \
+ -e '$a#endif /* DISABLE_LIBMISSING */' \
+ -e 's/_GL_/_LIBMISSING_/g' \
+ "${f}" || die
+ done
}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmissing/
@ 2020-12-23 8:35 Fabian Groffen
0 siblings, 0 replies; 4+ messages in thread
From: Fabian Groffen @ 2020-12-23 8:35 UTC (permalink / raw
To: gentoo-commits
commit: 7120c4900990f146ba3bc03d3447f1e20ac78fdc
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 23 08:32:41 2020 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Wed Dec 23 08:35:03 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7120c490
dev-libs/libmissing: remove last-rited package
Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org>
dev-libs/libmissing/Manifest | 1 -
dev-libs/libmissing/libmissing-1.1.0.ebuild | 171 ----------------------------
dev-libs/libmissing/metadata.xml | 8 --
3 files changed, 180 deletions(-)
diff --git a/dev-libs/libmissing/Manifest b/dev-libs/libmissing/Manifest
deleted file mode 100644
index 39d4a175c2a..00000000000
--- a/dev-libs/libmissing/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gnulib-b451121ab45497e78cb6f612c8673a9705193391.tar.gz 6666079 BLAKE2B e7d3b9478697067b57ab198e044f3c854128d5fe390d30947829ce4f34c695a748668c33ae19690e9927fff6df3e194a3160cb4adb7cf47235c603241c66889a SHA512 f6e165cfc0a3999c778d9f43ffc90ff9b569a77ff1e54ff5c50b12b0eddf262c24da8cd2719548574e0397535bb0eb835eef603cc74769f7876ef9db101bebec
diff --git a/dev-libs/libmissing/libmissing-1.1.0.ebuild b/dev-libs/libmissing/libmissing-1.1.0.ebuild
deleted file mode 100644
index a60e94ec453..00000000000
--- a/dev-libs/libmissing/libmissing-1.1.0.ebuild
+++ /dev/null
@@ -1,171 +0,0 @@
-# Copyright 2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-# NOTE: PV is the libtool version number current:revision:age
-
-DESCRIPTION="Library with missing functions based on GNUlib"
-HOMEPAGE="https://prefix.gentoo.org"
-GIT_TAG="b451121ab45497e78cb6f612c8673a9705193391"
-SRC_URI="https://git.savannah.gnu.org/cgit/gnulib.git/snapshot/gnulib-${GIT_TAG}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ppc-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-#IUSE="static-libs" # dynamic won't work :(
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}/gnulib-${GIT_TAG}"
-
-src_prepare() {
- default
-
- # create a config file with just the definitions we need
- mkdir extern-inline || die
- cd extern-inline || die
-
- cat > configure.ac <<- EOS
- AC_PREREQ([2.69])
- AC_INIT([${PN}], [${PV}], [prefix@gentoo.org])
-
- AC_CONFIG_MACRO_DIR([../m4])
- AC_CONFIG_HEADER([missing-include.h])
-
- gl_EXTERN_INLINE
- EOS
-
- eautoreconf
- sed -e '1,/PACKAGE_VERSION/d' missing-include.h.in \
- > "${T}"/missing-include.h
- cd .. || die
-
- mkdir "${PN}" || die
- cd "${PN}" || die
- cat > configure.ac <<- EOS
- AC_PREREQ([2.69])
- AC_INIT([${PN}], [${PV}], [prefix@gentoo.org])
- AM_INIT_AUTOMAKE
- LT_INIT
-
- AC_CONFIG_MACRO_DIR([m4])
- AC_CONFIG_HEADER([config.h])
-
- AC_PROG_CC
- gl_INIT
- gl_EARLY
-
- AC_CONFIG_FILES([Makefile lib/Makefile])
-
- AC_OUTPUT
- EOS
-
- cat > Makefile.am <<- EOS
- SUBDIRS = lib
- EOS
-
- local modules
- local platform
- local rev
-
- case "${CHOST}" in
- *-apple-darwin*)
- rev=${CHOST##*-darwin}
- platform="Mac OS X 10.$((rev - 4))"
- ;;
- *-solaris2.*)
- rev=${CHOST##*-solaris2.}
- # we only support Solaris 10 (and perhaps 9) and up, so we
- # don't have to bother about 2.x, just X
- platform="Solaris ${rev}"
- ;;
- esac
-
- # blacklist some modules that cause collisions
- # iconv provided by virtual/iconv -> sys-libs/libiconv
- modules=( $(
- cd "${S}"/doc/posix-functions
- grep -A1 "This function is missing" *.texi | \
- grep "${platform}" | \
- sed -e 's:^\(.[^-]*\)-.*$:\1:' | \
- xargs sed -n 's/^Gnulib module: \([a-z].*\)$/\1/p' | \
- sed -e 's: or .*$::' -e 's:, :\n:g' | \
- sort -u | \
- grep -v "iconv"
- ) )
-
- # get platform specific set of missing functions
- einfo "Including sources for missing functions on ${platform}:"
- einfo "${modules[*]}"
- "${S}"/gnulib-tool -S \
- --import \
- --lib=libmissing \
- --libtool \
- --no-vc-files \
- --no-cache-modules \
- "${modules[@]}"
-
- sed -i -e '/^noinst_LTLIBRARIES /s/noinst_/lib_/' lib/Makefile.am || die
- echo "libmissing_la_LDFLAGS += -version-info ${PV//./:}" >> lib/Makefile.am
- cat >> lib/Makefile.am << 'EOS'
-install-data-local: $(BUILT_SOURCES)
- @for hdr in $(BUILT_SOURCES); do \
- $(INSTALL_HEADER) -D "$$hdr" $(DESTDIR)$(includedir)/$${hdr}; \
- done;
-EOS
-
- eautoreconf
-}
-
-src_configure() {
- cd "${PN}" || die
-
- # ensure we don't pick up installed libmissing
- export CPPFLAGS+="-DDISABLE_LIBMISSING" # disable libmissing headers
- export BINUTILS_CONFIG_DISABLE_MISSING=1 # disable -lmissing from ldwrapper
- export CPPFLAGS="${CPPFLAGS/-I${EPREFIX}\/usr\/include\/missing/}"
- export LIBS="${LIBS/-lmissing/}"
- einfo "CPPFLAGS: ${CPPFLAGS}"
- einfo "LIBS: ${LIBS}"
-
- # gnulib cannot be used a shared library, doing so results in stack
- # protector checks failing for reasons yet unknown to me
- econf --disable-shared --enable-static
-}
-
-src_compile() {
- cd "${PN}" || die
- default
-}
-
-src_install() {
- cd "${PN}" || die
-
- default
-
- rm -f "${ED}"/usr/lib/libmissing.la || die
-
- cd "${ED}/usr/include" || die
-
- # fix config.h dependency so we can can distribute it without
- local f
- for f in $(grep "_GL_INLINE_HEADER_BEGIN" -l *.h */*.h) ; do
- cat "${T}"/missing-include.h "${f}" > "${f}.new"
- [[ -s "${f}.new" ]] && mv "${f}.new" "${f}"
- done
-
- # modify all header-files so we can disable them and that they won't
- # clash with gnulib-based packages
- for f in *.h */*.h ; do
- sed -i \
- -e '1i#ifdef DISABLE_LIBMISSING\n# include_next <'"${f}"'>\n#else' \
- -e '$a#endif /* DISABLE_LIBMISSING */' \
- -e 's/_GL_/_LIBMISSING_/g' \
- "${f}" || die
- done
-}
diff --git a/dev-libs/libmissing/metadata.xml b/dev-libs/libmissing/metadata.xml
deleted file mode 100644
index 5cee1da3a9e..00000000000
--- a/dev-libs/libmissing/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>prefix@gentoo.org</email>
- <name>Prefix Project</name>
-</maintainer>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-12-23 8:35 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-23 8:35 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmissing/ Fabian Groffen
-- strict thread matches above, loose matches on Subject: below --
2019-10-13 18:12 Fabian Groffen
2019-08-19 19:16 Fabian Groffen
2019-08-19 18:30 Fabian Groffen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox