All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat
@ 2016-07-15  1:49 Chen Qi
  2016-07-15  1:49 ` [PATCH 1/5] at: upgrade to 3.1.20 Chen Qi
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit da7a2c7b00b40a8759dbe9f4ab6df3e337e3d6b6:

  useradd-staticids: use map() instead of imap() (2016-07-12 23:11:57 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib ChenQi/PU-20160715
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=ChenQi/PU-20160715

Chen Qi (5):
  at: upgrade to 3.1.20
  byacc: upgrade to 20160606
  cups: upgrade to 2.1.4
  sudo: upgrade to 1.8.17p1
  sysstat: upgrade to 11.3.5

 .../at/at/configure-fix-with-without-selinux.patch | 53 ----------------------
 .../at/{at_3.1.18.bb => at_3.1.20.bb}              |  7 ++-
 .../byacc/{byacc_20160324.bb => byacc_20160606.bb} |  4 +-
 meta/recipes-extended/cups/cups.inc                |  2 +-
 .../cups/{cups_2.1.3.bb => cups_2.1.4.bb}          |  4 +-
 .../sudo/{sudo_1.8.16.bb => sudo_1.8.17p1.bb}      |  4 +-
 .../{sysstat_11.3.4.bb => sysstat_11.3.5.bb}       |  4 +-
 7 files changed, 12 insertions(+), 66 deletions(-)
 delete mode 100644 meta/recipes-extended/at/at/configure-fix-with-without-selinux.patch
 rename meta/recipes-extended/at/{at_3.1.18.bb => at_3.1.20.bb} (89%)
 rename meta/recipes-extended/byacc/{byacc_20160324.bb => byacc_20160606.bb} (74%)
 rename meta/recipes-extended/cups/{cups_2.1.3.bb => cups_2.1.4.bb} (40%)
 rename meta/recipes-extended/sudo/{sudo_1.8.16.bb => sudo_1.8.17p1.bb} (90%)
 rename meta/recipes-extended/sysstat/{sysstat_11.3.4.bb => sysstat_11.3.5.bb} (53%)

-- 
1.9.1



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

* [PATCH 1/5] at: upgrade to 3.1.20
  2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
@ 2016-07-15  1:49 ` Chen Qi
  2016-07-15  1:49 ` [PATCH 2/5] byacc: upgrade to 20160606 Chen Qi
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

configure-fix-with-without-selinux.patch is removed as it has been merged.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 .../at/at/configure-fix-with-without-selinux.patch | 53 ----------------------
 .../at/{at_3.1.18.bb => at_3.1.20.bb}              |  7 ++-
 2 files changed, 3 insertions(+), 57 deletions(-)
 delete mode 100644 meta/recipes-extended/at/at/configure-fix-with-without-selinux.patch
 rename meta/recipes-extended/at/{at_3.1.18.bb => at_3.1.20.bb} (89%)

diff --git a/meta/recipes-extended/at/at/configure-fix-with-without-selinux.patch b/meta/recipes-extended/at/at/configure-fix-with-without-selinux.patch
deleted file mode 100644
index 389af1e..0000000
--- a/meta/recipes-extended/at/at/configure-fix-with-without-selinux.patch
+++ /dev/null
@@ -1,53 +0,0 @@
-From c02354af7f3d9426da31503abfae70952c699a9d Mon Sep 17 00:00:00 2001
-From: Wenzong Fan <wenzong.fan@windriver.com>
-Date: Fri, 18 Mar 2016 03:23:11 -0400
-Subject: [PATCH] configure: fix with/without selinux
-
-Problem:
-without-selinux doesn't work since WITH_SELINUX is always be defined no
-matter which option is given: with-selinux, without-selinux.
-
-Fix:
-Disable selinux support if without-selinux is given; otherwise check
-libselinux to determine if selinux support should be enabled.
-
-Upstream-Status: Submitted [at@packages.debian.org]
-
-Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com>
----
- configure.ac | 19 +++++++++++++++----
- 1 file changed, 15 insertions(+), 4 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 5a43419..8c9de62 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -240,10 +240,21 @@ AC_ARG_WITH(daemon_username,
- AC_SUBST(DAEMON_USERNAME)
- 
- AC_ARG_WITH(selinux,
--[ --with-selinux       Define to run with selinux],
--AC_DEFINE(WITH_SELINUX, 1, [Define if you are building with_selinux]),
--)
--AC_CHECK_LIB(selinux, is_selinux_enabled, SELINUXLIB=-lselinux)
-+[ --with-selinux       Define to run with selinux (default=check)],
-+[],
-+[with_selinux=check])
-+
-+if test "x$with_selinux" != xno; then
-+  AC_CHECK_LIB([selinux], [is_selinux_enabled],
-+    [SELINUXLIB=-lselinux
-+     AC_DEFINE(WITH_SELINUX, 1, [Define if you are building with_selinux])
-+    ],
-+    [if test "x$with_selinux" != xcheck; then
-+       AC_MSG_FAILURE([--with-selinux is given, but test for selinux failed])
-+     fi
-+    ]
-+  )
-+fi
- AC_SUBST(SELINUXLIB)
- AC_SUBST(WITH_SELINUX)
- 
--- 
-1.9.1
-
diff --git a/meta/recipes-extended/at/at_3.1.18.bb b/meta/recipes-extended/at/at_3.1.20.bb
similarity index 89%
rename from meta/recipes-extended/at/at_3.1.18.bb
rename to meta/recipes-extended/at/at_3.1.20.bb
index 93044f5..1c3eefc 100644
--- a/meta/recipes-extended/at/at_3.1.18.bb
+++ b/meta/recipes-extended/at/at_3.1.20.bb
@@ -15,7 +15,7 @@ PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits"
 RCONFLICTS_${PN} = "atd"
 RREPLACES_${PN} = "atd"
 
-SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz;subdir=${BP} \
+SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \
     file://fix_parallel_build_error.patch \
     file://posixtm.c \
     file://posixtm.h \
@@ -25,14 +25,13 @@ SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz;subdir=${BP} \
     ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)} \
     file://makefile-fix-parallel.patch \
     file://0001-remove-glibc-assumption.patch \
-    file://configure-fix-with-without-selinux.patch \
     "
 
 PAM_SRC_URI = "file://pam.conf.patch \
                file://configure-add-enable-pam.patch"
 
-SRC_URI[md5sum] = "f67a7aab557cd5b4a1311079a08acebe"
-SRC_URI[sha256sum] = "dbd5c8cb8edd53ef467363c3af0391c08769f1dbbd4d5002c59a4cd4cac11d52"
+SRC_URI[md5sum] = "e7bd7b785b2cbb17e133d6bdc0fb099e"
+SRC_URI[sha256sum] = "0871923cab73050b98ace020664eb2ddc1e669e4166b5abb64d864d02fcefab9"
 
 EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \
                  --with-daemon_username=root \
-- 
1.9.1



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

* [PATCH 2/5] byacc: upgrade to 20160606
  2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
  2016-07-15  1:49 ` [PATCH 1/5] at: upgrade to 3.1.20 Chen Qi
@ 2016-07-15  1:49 ` Chen Qi
  2016-07-15  1:49 ` [PATCH 3/5] cups: upgrade to 2.1.4 Chen Qi
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/recipes-extended/byacc/{byacc_20160324.bb => byacc_20160606.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/byacc/{byacc_20160324.bb => byacc_20160606.bb} (74%)

diff --git a/meta/recipes-extended/byacc/byacc_20160324.bb b/meta/recipes-extended/byacc/byacc_20160606.bb
similarity index 74%
rename from meta/recipes-extended/byacc/byacc_20160324.bb
rename to meta/recipes-extended/byacc/byacc_20160606.bb
index cf1576e..98129d0 100644
--- a/meta/recipes-extended/byacc/byacc_20160324.bb
+++ b/meta/recipes-extended/byacc/byacc_20160606.bb
@@ -7,6 +7,6 @@ LICENSE = "PD"
 LIC_FILES_CHKSUM = "file://package/debian/copyright;md5=74533d32ffd38bca4cbf1f1305f8bc60"
 require byacc.inc
 
-SRC_URI[md5sum] = "bde0463c6c03f059b1e6e9c5579cbe49"
-SRC_URI[sha256sum] = "178e08f7ab59edfb16d64902b7a9d78592d2d8d3ee30ab7a967188d969589b5a"
 
+SRC_URI[md5sum] = "d527c811b360f04a8c5f5a0a90625966"
+SRC_URI[sha256sum] = "cc8fdced486cb70cec7a7c9358de836bfd267d19d6456760bb4721ccfea5ac91"
-- 
1.9.1



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

* [PATCH 3/5] cups: upgrade to 2.1.4
  2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
  2016-07-15  1:49 ` [PATCH 1/5] at: upgrade to 3.1.20 Chen Qi
  2016-07-15  1:49 ` [PATCH 2/5] byacc: upgrade to 20160606 Chen Qi
@ 2016-07-15  1:49 ` Chen Qi
  2016-07-15  1:49 ` [PATCH 4/5] sudo: upgrade to 1.8.17p1 Chen Qi
  2016-07-15  1:49 ` [PATCH 5/5] sysstat: upgrade to 11.3.5 Chen Qi
  4 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/recipes-extended/cups/cups.inc                         | 2 +-
 meta/recipes-extended/cups/{cups_2.1.3.bb => cups_2.1.4.bb} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-extended/cups/{cups_2.1.3.bb => cups_2.1.4.bb} (40%)

diff --git a/meta/recipes-extended/cups/cups.inc b/meta/recipes-extended/cups/cups.inc
index 9a12a78..02b6358 100644
--- a/meta/recipes-extended/cups/cups.inc
+++ b/meta/recipes-extended/cups/cups.inc
@@ -3,7 +3,7 @@ SECTION = "console/utils"
 LICENSE = "GPLv2 & LGPLv2"
 DEPENDS = "gnutls libpng jpeg dbus dbus-glib zlib libusb"
 
-SRC_URI = "https://www.cups.org/software/${PV}/${BP}-source.tar.bz2 \
+SRC_URI = "https://github.com/apple/cups/releases/download/release-${PV}/${BP}-source.tar.gz \
            file://use_echo_only_in_init.patch \
            file://0001-don-t-try-to-run-generated-binaries.patch \
            file://cups_serverbin.patch \
diff --git a/meta/recipes-extended/cups/cups_2.1.3.bb b/meta/recipes-extended/cups/cups_2.1.4.bb
similarity index 40%
rename from meta/recipes-extended/cups/cups_2.1.3.bb
rename to meta/recipes-extended/cups/cups_2.1.4.bb
index aef211d..0fab806 100644
--- a/meta/recipes-extended/cups/cups_2.1.3.bb
+++ b/meta/recipes-extended/cups/cups_2.1.4.bb
@@ -2,5 +2,5 @@ require cups.inc
 
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=6c5a350596fba02754bd96eb6df3afd0"
 
-SRC_URI[md5sum] = "62b8fafd590e75f72316915790b0850a"
-SRC_URI[sha256sum] = "36a70d43584aea2617da914b9331e23341c3501a8254c4d2eae9c11ec01fd4d3"
+SRC_URI[md5sum] = "9f9bf6e3b9c20a3519b4dc409666d6e7"
+SRC_URI[sha256sum] = "4b14fd833180ac529ebebea766a09094c2568bf8426e219cb3a1715304ef728d"
-- 
1.9.1



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

* [PATCH 4/5] sudo: upgrade to 1.8.17p1
  2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
                   ` (2 preceding siblings ...)
  2016-07-15  1:49 ` [PATCH 3/5] cups: upgrade to 2.1.4 Chen Qi
@ 2016-07-15  1:49 ` Chen Qi
  2016-07-15  1:49 ` [PATCH 5/5] sysstat: upgrade to 11.3.5 Chen Qi
  4 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 meta/recipes-extended/sudo/{sudo_1.8.16.bb => sudo_1.8.17p1.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/sudo/{sudo_1.8.16.bb => sudo_1.8.17p1.bb} (90%)

diff --git a/meta/recipes-extended/sudo/sudo_1.8.16.bb b/meta/recipes-extended/sudo/sudo_1.8.17p1.bb
similarity index 90%
rename from meta/recipes-extended/sudo/sudo_1.8.16.bb
rename to meta/recipes-extended/sudo/sudo_1.8.17p1.bb
index 0981084..614ad5c 100644
--- a/meta/recipes-extended/sudo/sudo_1.8.16.bb
+++ b/meta/recipes-extended/sudo/sudo_1.8.17p1.bb
@@ -7,8 +7,8 @@ SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \
 
 PAM_SRC_URI = "file://sudo.pam"
 
-SRC_URI[md5sum] = "a977449587dc857e129bb20555b46af4"
-SRC_URI[sha256sum] = "2d83826fc5125bf073acc203dbda1cf2abeee017090ccc9dddb0431a53d5064d"
+SRC_URI[md5sum] = "50a840a688ceb6fa3ab24fc0adf4fa23"
+SRC_URI[sha256sum] = "c690d707fb561b3ecdf6a6de5563bc0b769388eff201c851edbace408bb155cc"
 
 DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
 RDEPENDS_${PN} += " ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}"
-- 
1.9.1



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

* [PATCH 5/5] sysstat: upgrade to 11.3.5
  2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
                   ` (3 preceding siblings ...)
  2016-07-15  1:49 ` [PATCH 4/5] sudo: upgrade to 1.8.17p1 Chen Qi
@ 2016-07-15  1:49 ` Chen Qi
  4 siblings, 0 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-15  1:49 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
 .../recipes-extended/sysstat/{sysstat_11.3.4.bb => sysstat_11.3.5.bb} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-extended/sysstat/{sysstat_11.3.4.bb => sysstat_11.3.5.bb} (53%)

diff --git a/meta/recipes-extended/sysstat/sysstat_11.3.4.bb b/meta/recipes-extended/sysstat/sysstat_11.3.5.bb
similarity index 53%
rename from meta/recipes-extended/sysstat/sysstat_11.3.4.bb
rename to meta/recipes-extended/sysstat/sysstat_11.3.5.bb
index 45cc0bd..0dfeea3 100644
--- a/meta/recipes-extended/sysstat/sysstat_11.3.4.bb
+++ b/meta/recipes-extended/sysstat/sysstat_11.3.5.bb
@@ -4,5 +4,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a23a74b3f4caf9616230789d94217acb"
 
 SRC_URI += "file://0001-Include-needed-headers-explicitly.patch"
 
-SRC_URI[md5sum] = "b92ea90a60eda2b16e2667e6237402b1"
-SRC_URI[sha256sum] = "84231474b243eaffaf4b83e5a801085144361a1c8a50e9ea8a5d52ad269d20b1"
+SRC_URI[md5sum] = "be990a83663e419e7d46eaf6e43103e9"
+SRC_URI[sha256sum] = "aa06ab8132d618ed7737346ac882732d54c9f2956f6ab3c9d36657c5e1923709"
-- 
1.9.1



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

end of thread, other threads:[~2016-07-15  1:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-15  1:49 [PATCH 0/5] Package Upgrade: at, byacc, cups, sudo, sysstat Chen Qi
2016-07-15  1:49 ` [PATCH 1/5] at: upgrade to 3.1.20 Chen Qi
2016-07-15  1:49 ` [PATCH 2/5] byacc: upgrade to 20160606 Chen Qi
2016-07-15  1:49 ` [PATCH 3/5] cups: upgrade to 2.1.4 Chen Qi
2016-07-15  1:49 ` [PATCH 4/5] sudo: upgrade to 1.8.17p1 Chen Qi
2016-07-15  1:49 ` [PATCH 5/5] sysstat: upgrade to 11.3.5 Chen Qi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.