Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] rmilter: de-vendor most of dependencies
@ 2021-03-27  8:14 sgn
  2021-03-27  8:14 ` sgn
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: sgn @ 2021-03-27  8:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/sgn/void-packages rmilter-de-vendoring
https://github.com/void-linux/void-packages/pull/29774

rmilter: de-vendor most of dependencies
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rmilter-de-vendoring-29774.patch --]
[-- Type: text/x-diff, Size: 5651 bytes --]

From e0fd00d002bd765448c8792929a10a18516a094b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Sat, 27 Mar 2021 15:13:24 +0700
Subject: [PATCH] rmilter: de-vendor most of dependencies

---
 srcpkgs/rmilter/patches/de-vendor.patch  | 58 ++++++++++++++++++++++++
 srcpkgs/rmilter/patches/fix-cflags.patch | 24 ++++++++++
 srcpkgs/rmilter/template                 | 15 ++++--
 3 files changed, 92 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/rmilter/patches/de-vendor.patch
 create mode 100644 srcpkgs/rmilter/patches/fix-cflags.patch

diff --git a/srcpkgs/rmilter/patches/de-vendor.patch b/srcpkgs/rmilter/patches/de-vendor.patch
new file mode 100644
index 000000000000..078b15d4e661
--- /dev/null
+++ b/srcpkgs/rmilter/patches/de-vendor.patch
@@ -0,0 +1,58 @@
+Index: CMakeLists.txt
+===================================================================
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -240,10 +240,7 @@ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}
+ 					"${CMAKE_BINARY_DIR}/src"
+ 					"${CMAKE_BINARY_DIR}/"
+ 					"${CMAKE_SOURCE_DIR}/compat"
+-					"${CMAKE_SOURCE_DIR}/uthash"
+-					"${CMAKE_SOURCE_DIR}/contrib/libucl"
+-					"${CMAKE_SOURCE_DIR}/contrib/http-parser"
+-					"${CMAKE_SOURCE_DIR}/contrib/xxhash")
++					)
+ 
+ BISON_TARGET(CfgParser src/cfg_file.y ${CMAKE_CURRENT_BINARY_DIR}/cfg_yacc.c)
+ FLEX_TARGET(CfgScanner src/cfg_file.l  ${CMAKE_CURRENT_BINARY_DIR}/cfg_lex.c)
+@@ -376,16 +373,17 @@ IF(ENABLE_MEMCACHED MATCHES "ON")
+ 		MODULES libmemcached)
+ ENDIF()
+ 
++pkg_check_modules(hiredis REQUIRED hiredis)
++pkg_check_modules(libucl REQUIRED libucl)
++pkg_check_modules(libzstd REQUIRED libzstd)
++
+ ################################ SOURCES SECTION ###########################
+-ADD_SUBDIRECTORY(hiredis)
+-INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/hiredis")
++INCLUDE_DIRECTORIES(${hiredis_INCLUDE_DIRS})
++INCLUDE_DIRECTORIES(${libucl_INCLUDE_DIRS})
++INCLUDE_DIRECTORIES(${libzstd_INCLUDE_DIRS})
+ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/contrib/lc-btrie")
+ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/")
+-ADD_SUBDIRECTORY(contrib/libucl)
+-ADD_SUBDIRECTORY(contrib/http-parser)
+-ADD_SUBDIRECTORY(contrib/xxhash)
+ ADD_SUBDIRECTORY(contrib/lc-btrie)
+-ADD_SUBDIRECTORY(contrib/zstd)
+ 
+ SET(RMILTERSRC
+                 compat/blake2b-ref.c
+@@ -410,12 +408,12 @@ CONFIGURE_FILE(config.h.in config.h)
+ ADD_EXECUTABLE(rmilter ${RMILTERSRC})
+ SET_TARGET_PROPERTIES(rmilter PROPERTIES LINKER_LANGUAGE C)
+ TARGET_LINK_LIBRARIES(rmilter ${RMILTER_REQUIRED_LIBRARIES})
+-TARGET_LINK_LIBRARIES(rmilter rmilter-hiredis)
+-TARGET_LINK_LIBRARIES(rmilter ucl)
+-TARGET_LINK_LIBRARIES(rmilter xxhash)
+-TARGET_LINK_LIBRARIES(rmilter rmilter-http-parser)
++TARGET_LINK_LIBRARIES(rmilter ${hiredis_LINK_LIBRARIES})
++TARGET_LINK_LIBRARIES(rmilter ${libucl_LINK_LIBRARIES})
++TARGET_LINK_LIBRARIES(rmilter -lxxhash)
++TARGET_LINK_LIBRARIES(rmilter -lhttp_parser)
+ TARGET_LINK_LIBRARIES(rmilter lcbtrie)
+-TARGET_LINK_LIBRARIES(rmilter rmilter-zstd)
++TARGET_LINK_LIBRARIES(rmilter ${libzstd_LINK_LIBRARIES})
+ 
+ ##################### INSTALLATION ##########################################
+ 
diff --git a/srcpkgs/rmilter/patches/fix-cflags.patch b/srcpkgs/rmilter/patches/fix-cflags.patch
new file mode 100644
index 000000000000..7983764ecf94
--- /dev/null
+++ b/srcpkgs/rmilter/patches/fix-cflags.patch
@@ -0,0 +1,24 @@
+Index: CMakeLists.txt
+===================================================================
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -296,18 +296,7 @@ IF(SUPPORT_STD_FLAG)
+ ENDIF(SUPPORT_STD_FLAG)
+ 
+ # Optimization flags
+-IF(NOT CMAKE_C_OPT_FLAGS)
+-	IF(ENABLE_OPTIMIZATION MATCHES "ON")
+-		SET(CMAKE_C_OPT_FLAGS "-O3 -fstrict-aliasing")
+-	ELSE(ENABLE_OPTIMIZATION MATCHES "ON")
+-		SET(CMAKE_C_OPT_FLAGS "-g -O2 -fstrict-aliasing")
+-	ENDIF(ENABLE_OPTIMIZATION MATCHES "ON")
+-ENDIF(NOT CMAKE_C_OPT_FLAGS)
+-
+-IF(ENABLE_DEBUG MATCHES "ON")
+-	SET(CMAKE_BUILD_TYPE "Debug")
+-    SET(WITH_DEBUG 1)
+-ENDIF(ENABLE_DEBUG MATCHES "ON")
++SET(CMAKE_C_OPT_FLAGS "-fstrict-aliasing")
+ 
+ SET(CMAKE_C_FLAGS "${CMAKE_C_OPT_FLAGS} ${CMAKE_C_FLAGS} ${CMAKE_C_WARN_FLAGS}")
+ 
diff --git a/srcpkgs/rmilter/template b/srcpkgs/rmilter/template
index a131af6c7f07..9c4f131aaa5c 100644
--- a/srcpkgs/rmilter/template
+++ b/srcpkgs/rmilter/template
@@ -3,21 +3,26 @@ pkgname=rmilter
 version=1.10.0
 revision=1
 build_style=cmake
-configure_args="-DMILTER_USER=rmilter -DSBINDIR=/usr/bin"
+configure_args="-DMILTER_USER=rmilter -DMILTER_GROUP=_rmilter -DSBINDIR=/usr/bin"
 hostmakedepends="pkg-config bison flex"
-makedepends="openssl-devel pcre-devel libmilter-devel opendkim-devel libsasl-devel libmemcached-devel glib-devel"
+makedepends="openssl-devel pcre-devel libmilter-devel opendkim-devel
+ libsasl-devel libmemcached-devel glib-devel xxHash-devel libzstd-devel
+ http-parser-devel hiredis-devel libucl-devel uthash"
 short_desc="Postfix/sendmail integration for rspamd"
 maintainer="John Regan <john@jrjrtech.com>"
-license="BSD"
+license="BSD-2-Clause, BSD-3-Clause"
 homepage="https://github.com/vstakhov/rmilter"
 distfiles="$homepage/archive/${version}.tar.gz"
 checksum=ea80563fa7636afed0b5fd9a29aa2300f15793ed85788e4ce69c187d341a7d54
-system_accounts="rmilter"
+system_accounts="rmilter:_rmilter"
 rmilter_homedir="/var/lib/rmilter"
 
 post_install() {
 	vdoc rmilter.conf.sample
 	vdoc rmilter-grey.conf
 	vsv rmilter
-	vlicense src/rmilter.c
+	head -26 src/rmilter.c >rmilter.LICENSE
+	head -38 contrib/lc-btrie/btrie.h >btrie.LICENSE
+	vlicense rmilter.LICENSE
+	vlicense btrie.LICENSE
 }

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

* Re: rmilter: de-vendor most of dependencies
  2021-03-27  8:14 [PR PATCH] rmilter: de-vendor most of dependencies sgn
@ 2021-03-27  8:14 ` sgn
  2021-04-04  5:50 ` [PR PATCH] [Updated] " sgn
  2021-04-04  6:36 ` [PR PATCH] [Merged]: " sgn
  2 siblings, 0 replies; 4+ messages in thread
From: sgn @ 2021-03-27  8:14 UTC (permalink / raw)
  To: ml

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

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/29774#issuecomment-808687975

Comment:
@jprjr 

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

* Re: [PR PATCH] [Updated] rmilter: de-vendor most of dependencies
  2021-03-27  8:14 [PR PATCH] rmilter: de-vendor most of dependencies sgn
  2021-03-27  8:14 ` sgn
@ 2021-04-04  5:50 ` sgn
  2021-04-04  6:36 ` [PR PATCH] [Merged]: " sgn
  2 siblings, 0 replies; 4+ messages in thread
From: sgn @ 2021-04-04  5:50 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by sgn against master on the void-packages repository

https://github.com/sgn/void-packages rmilter-de-vendoring
https://github.com/void-linux/void-packages/pull/29774

rmilter: de-vendor most of dependencies
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-rmilter-de-vendoring-29774.patch --]
[-- Type: text/x-diff, Size: 5688 bytes --]

From 906e28e7ebb1de70a680051267652d1e5165bc8f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C4=90o=C3=A0n=20Tr=E1=BA=A7n=20C=C3=B4ng=20Danh?=
 <congdanhqx@gmail.com>
Date: Sat, 27 Mar 2021 15:13:24 +0700
Subject: [PATCH] rmilter: de-vendor most of dependencies

While we're at it, set the group to _rmilter.
---
 srcpkgs/rmilter/patches/de-vendor.patch  | 58 ++++++++++++++++++++++++
 srcpkgs/rmilter/patches/fix-cflags.patch | 24 ++++++++++
 srcpkgs/rmilter/template                 | 14 ++++--
 3 files changed, 92 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/rmilter/patches/de-vendor.patch
 create mode 100644 srcpkgs/rmilter/patches/fix-cflags.patch

diff --git a/srcpkgs/rmilter/patches/de-vendor.patch b/srcpkgs/rmilter/patches/de-vendor.patch
new file mode 100644
index 000000000000..078b15d4e661
--- /dev/null
+++ b/srcpkgs/rmilter/patches/de-vendor.patch
@@ -0,0 +1,58 @@
+Index: CMakeLists.txt
+===================================================================
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -240,10 +240,7 @@ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}
+ 					"${CMAKE_BINARY_DIR}/src"
+ 					"${CMAKE_BINARY_DIR}/"
+ 					"${CMAKE_SOURCE_DIR}/compat"
+-					"${CMAKE_SOURCE_DIR}/uthash"
+-					"${CMAKE_SOURCE_DIR}/contrib/libucl"
+-					"${CMAKE_SOURCE_DIR}/contrib/http-parser"
+-					"${CMAKE_SOURCE_DIR}/contrib/xxhash")
++					)
+ 
+ BISON_TARGET(CfgParser src/cfg_file.y ${CMAKE_CURRENT_BINARY_DIR}/cfg_yacc.c)
+ FLEX_TARGET(CfgScanner src/cfg_file.l  ${CMAKE_CURRENT_BINARY_DIR}/cfg_lex.c)
+@@ -376,16 +373,17 @@ IF(ENABLE_MEMCACHED MATCHES "ON")
+ 		MODULES libmemcached)
+ ENDIF()
+ 
++pkg_check_modules(hiredis REQUIRED hiredis)
++pkg_check_modules(libucl REQUIRED libucl)
++pkg_check_modules(libzstd REQUIRED libzstd)
++
+ ################################ SOURCES SECTION ###########################
+-ADD_SUBDIRECTORY(hiredis)
+-INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/hiredis")
++INCLUDE_DIRECTORIES(${hiredis_INCLUDE_DIRS})
++INCLUDE_DIRECTORIES(${libucl_INCLUDE_DIRS})
++INCLUDE_DIRECTORIES(${libzstd_INCLUDE_DIRS})
+ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/contrib/lc-btrie")
+ INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/")
+-ADD_SUBDIRECTORY(contrib/libucl)
+-ADD_SUBDIRECTORY(contrib/http-parser)
+-ADD_SUBDIRECTORY(contrib/xxhash)
+ ADD_SUBDIRECTORY(contrib/lc-btrie)
+-ADD_SUBDIRECTORY(contrib/zstd)
+ 
+ SET(RMILTERSRC
+                 compat/blake2b-ref.c
+@@ -410,12 +408,12 @@ CONFIGURE_FILE(config.h.in config.h)
+ ADD_EXECUTABLE(rmilter ${RMILTERSRC})
+ SET_TARGET_PROPERTIES(rmilter PROPERTIES LINKER_LANGUAGE C)
+ TARGET_LINK_LIBRARIES(rmilter ${RMILTER_REQUIRED_LIBRARIES})
+-TARGET_LINK_LIBRARIES(rmilter rmilter-hiredis)
+-TARGET_LINK_LIBRARIES(rmilter ucl)
+-TARGET_LINK_LIBRARIES(rmilter xxhash)
+-TARGET_LINK_LIBRARIES(rmilter rmilter-http-parser)
++TARGET_LINK_LIBRARIES(rmilter ${hiredis_LINK_LIBRARIES})
++TARGET_LINK_LIBRARIES(rmilter ${libucl_LINK_LIBRARIES})
++TARGET_LINK_LIBRARIES(rmilter -lxxhash)
++TARGET_LINK_LIBRARIES(rmilter -lhttp_parser)
+ TARGET_LINK_LIBRARIES(rmilter lcbtrie)
+-TARGET_LINK_LIBRARIES(rmilter rmilter-zstd)
++TARGET_LINK_LIBRARIES(rmilter ${libzstd_LINK_LIBRARIES})
+ 
+ ##################### INSTALLATION ##########################################
+ 
diff --git a/srcpkgs/rmilter/patches/fix-cflags.patch b/srcpkgs/rmilter/patches/fix-cflags.patch
new file mode 100644
index 000000000000..7983764ecf94
--- /dev/null
+++ b/srcpkgs/rmilter/patches/fix-cflags.patch
@@ -0,0 +1,24 @@
+Index: CMakeLists.txt
+===================================================================
+--- CMakeLists.txt.orig
++++ CMakeLists.txt
+@@ -296,18 +296,7 @@ IF(SUPPORT_STD_FLAG)
+ ENDIF(SUPPORT_STD_FLAG)
+ 
+ # Optimization flags
+-IF(NOT CMAKE_C_OPT_FLAGS)
+-	IF(ENABLE_OPTIMIZATION MATCHES "ON")
+-		SET(CMAKE_C_OPT_FLAGS "-O3 -fstrict-aliasing")
+-	ELSE(ENABLE_OPTIMIZATION MATCHES "ON")
+-		SET(CMAKE_C_OPT_FLAGS "-g -O2 -fstrict-aliasing")
+-	ENDIF(ENABLE_OPTIMIZATION MATCHES "ON")
+-ENDIF(NOT CMAKE_C_OPT_FLAGS)
+-
+-IF(ENABLE_DEBUG MATCHES "ON")
+-	SET(CMAKE_BUILD_TYPE "Debug")
+-    SET(WITH_DEBUG 1)
+-ENDIF(ENABLE_DEBUG MATCHES "ON")
++SET(CMAKE_C_OPT_FLAGS "-fstrict-aliasing")
+ 
+ SET(CMAKE_C_FLAGS "${CMAKE_C_OPT_FLAGS} ${CMAKE_C_FLAGS} ${CMAKE_C_WARN_FLAGS}")
+ 
diff --git a/srcpkgs/rmilter/template b/srcpkgs/rmilter/template
index a131af6c7f07..0c2e00b5169d 100644
--- a/srcpkgs/rmilter/template
+++ b/srcpkgs/rmilter/template
@@ -3,21 +3,27 @@ pkgname=rmilter
 version=1.10.0
 revision=1
 build_style=cmake
-configure_args="-DMILTER_USER=rmilter -DSBINDIR=/usr/bin"
+configure_args="-DMILTER_USER=rmilter -DMILTER_GROUP=_rmilter -DSBINDIR=/usr/bin"
 hostmakedepends="pkg-config bison flex"
-makedepends="openssl-devel pcre-devel libmilter-devel opendkim-devel libsasl-devel libmemcached-devel glib-devel"
+makedepends="openssl-devel pcre-devel libmilter-devel opendkim-devel
+ libsasl-devel libmemcached-devel glib-devel xxHash-devel libzstd-devel
+ http-parser-devel hiredis-devel libucl-devel uthash"
 short_desc="Postfix/sendmail integration for rspamd"
 maintainer="John Regan <john@jrjrtech.com>"
-license="BSD"
+license="BSD-2-Clause, BSD-3-Clause"
 homepage="https://github.com/vstakhov/rmilter"
 distfiles="$homepage/archive/${version}.tar.gz"
 checksum=ea80563fa7636afed0b5fd9a29aa2300f15793ed85788e4ce69c187d341a7d54
 system_accounts="rmilter"
+rmilter_pgroup="_rmilter"
 rmilter_homedir="/var/lib/rmilter"
 
 post_install() {
 	vdoc rmilter.conf.sample
 	vdoc rmilter-grey.conf
 	vsv rmilter
-	vlicense src/rmilter.c
+	head -26 src/rmilter.c >rmilter.LICENSE
+	head -38 contrib/lc-btrie/btrie.h >btrie.LICENSE
+	vlicense rmilter.LICENSE
+	vlicense btrie.LICENSE
 }

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

* Re: [PR PATCH] [Merged]: rmilter: de-vendor most of dependencies
  2021-03-27  8:14 [PR PATCH] rmilter: de-vendor most of dependencies sgn
  2021-03-27  8:14 ` sgn
  2021-04-04  5:50 ` [PR PATCH] [Updated] " sgn
@ 2021-04-04  6:36 ` sgn
  2 siblings, 0 replies; 4+ messages in thread
From: sgn @ 2021-04-04  6:36 UTC (permalink / raw)
  To: ml

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

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

rmilter: de-vendor most of dependencies
https://github.com/void-linux/void-packages/pull/29774

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [ ] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [ ] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [ ] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->


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

end of thread, other threads:[~2021-04-04  6:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-27  8:14 [PR PATCH] rmilter: de-vendor most of dependencies sgn
2021-03-27  8:14 ` sgn
2021-04-04  5:50 ` [PR PATCH] [Updated] " sgn
2021-04-04  6:36 ` [PR PATCH] [Merged]: " sgn

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).