public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/musl:master commit in: /
@ 2016-02-28 16:42 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-02-28 16:42 UTC (permalink / raw
  To: gentoo-commits

commit:     7624e6242758f4c05818470421c7e56ad6dac0d8
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 16:51:48 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 16:51:48 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7624e624

Add travis.yml

 .travis.yml         | 27 +++++++++++++++++++++++++++
 README => README.md |  3 +++
 2 files changed, 30 insertions(+)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..6f693b2
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,27 @@
+language: python
+python:
+    - "3.4"
+notifications:
+  irc:
+    channels:
+      - "irc.freenode.org#gentoo-hardened"
+    on_success: change  # options: [always|never|change] default: always
+    on_failure: always  # options: [always|never|change] default: always
+before_script:
+    - mkdir travis-overlay
+    - mv !(travis-overlay) travis-overlay/
+    - mv .git travis-overlay/
+    - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.24.tar.bz2"
+    - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"
+    - sudo chmod 777 /etc/passwd /etc/group /etc /usr
+    - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
+    - echo "portage::250:portage,travis" >> /etc/group
+    - mkdir -p /etc/portage/ /usr/portage/distfiles
+    - tar xjf portage-2.2.24.tar.bz2
+    - tar xJf portage-latest.tar.xz -C /usr/
+    - cp portage-2.2.24/cnf/repos.conf /etc/portage/
+    - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage
+    - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
+    - cd travis-overlay
+script:
+    - "./../portage-2.2.24/bin/repoman full -i -d"

diff --git a/README b/README.md
similarity index 66%
rename from README
rename to README.md
index c078176..c58fcac 100644
--- a/README
+++ b/README.md
@@ -4,3 +4,6 @@ for information about the entire overlay.
 This overlay/branch is to set up a profile for musl based system.
 
 See: http://www.etalabs.net/musl/
+
+## Repoman status
+[![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-02-28 19:17 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-02-28 19:17 UTC (permalink / raw
  To: gentoo-commits

commit:     7242251d9a1268649ff6932d4e9a84807bfefc16
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 28 19:27:44 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Feb 28 19:27:44 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7242251d

travis.yml: use python3.2 for portage

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 6f693b2..1eef590 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
 language: python
 python:
-    - "3.4"
+    - "3.2"
 notifications:
   irc:
     channels:


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-04-02 22:02 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-04-02 22:02 UTC (permalink / raw
  To: gentoo-commits

commit:     1bb46912ca91c3183e1924c918fbf972ca9433c4
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  2 22:09:32 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Apr  2 22:09:32 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=1bb46912

Update README

 README.md | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index c58fcac..d0eb01b 100644
--- a/README.md
+++ b/README.md
@@ -1,9 +1,8 @@
-This is the README only for the musl branch.  See the README in main branch
-for information about the entire overlay.
+This is the overlay for Gentoo build with musl.  musl is a new C Standard Library
+which aims to be lightweight, fast, simple, free, and strives to be correct in the
+sense of standards-conformance and safety.
 
-This overlay/branch is to set up a profile for musl based system.
-
-See: http://www.etalabs.net/musl/
+http://www.musl-libc.org/
 
 ## Repoman status
 [![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-05-29  2:12 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-05-29  2:12 UTC (permalink / raw
  To: gentoo-commits

commit:     2b8de895e7c16314e7c927e2ad76050f5be8ed9e
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 02:14:27 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun May 29 02:14:27 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=2b8de895

travis.yml: bump portage to 2.2.28

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 1eef590..43ba3d9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -11,7 +11,7 @@ before_script:
     - mkdir travis-overlay
     - mv !(travis-overlay) travis-overlay/
     - mv .git travis-overlay/
-    - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.24.tar.bz2"
+    - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.28.tar.bz2"
     - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"
     - sudo chmod 777 /etc/passwd /etc/group /etc /usr
     - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-05-29  7:03 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-05-29  7:03 UTC (permalink / raw
  To: gentoo-commits

commit:     15c079c31d2701c39c4b00ab67539d881296de6a
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 07:04:45 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun May 29 07:04:45 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=15c079c3

travis.yml: fix portage version

 .travis.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 43ba3d9..822c1fc 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -17,11 +17,11 @@ before_script:
     - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
     - echo "portage::250:portage,travis" >> /etc/group
     - mkdir -p /etc/portage/ /usr/portage/distfiles
-    - tar xjf portage-2.2.24.tar.bz2
+    - tar xjf portage-2.2.28.tar.bz2
     - tar xJf portage-latest.tar.xz -C /usr/
-    - cp portage-2.2.24/cnf/repos.conf /etc/portage/
+    - cp portage-2.2.28/cnf/repos.conf /etc/portage/
     - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage
     - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
     - cd travis-overlay
 script:
-    - "./../portage-2.2.24/bin/repoman full -i -d"
+    - "./../portage-2.2.28/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-05-29 17:49 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-05-29 17:49 UTC (permalink / raw
  To: gentoo-commits

commit:     4f1d4bb799e6ec7ded5c914e251c803ab2260d26
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun May 29 17:50:59 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun May 29 17:50:59 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=4f1d4bb7

travis.yml: fix mysterious problem with ARCH

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 822c1fc..adb7122 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,4 +24,4 @@ before_script:
     - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
     - cd travis-overlay
 script:
-    - "./../portage-2.2.28/bin/repoman full -i -d"
+    - "ARCH=amd64 ./../portage-2.2.28/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-06-09  1:31 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-06-09  1:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a8c64876795a32eadb46777cb3246ba4dbe97c4e
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  9 01:33:17 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Jun  9 01:33:17 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=a8c64876

travis.yml: use default amd64 profile

 .travis.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index adb7122..99b822e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ before_script:
     - tar xJf portage-latest.tar.xz -C /usr/
     - cp portage-2.2.28/cnf/repos.conf /etc/portage/
     - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage
-    - ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
+    - ln -s /usr/portage/profiles/default/linux/amd64/13.0 /etc/portage/make.profile
     - cd travis-overlay
 script:
-    - "ARCH=amd64 ./../portage-2.2.28/bin/repoman full -i -d"
+    - ./../portage-2.2.28/bin/repoman full -i -d


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-10-01 14:41 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2016-10-01 14:41 UTC (permalink / raw
  To: gentoo-commits

commit:     726ded1d7433230416dabff0773a23ea5186fff9
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Oct  1 14:40:54 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Oct  1 14:40:54 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=726ded1d

README.md: add maintainer list

 README.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/README.md b/README.md
index d0eb01b..f6dafc8 100644
--- a/README.md
+++ b/README.md
@@ -4,5 +4,8 @@ sense of standards-conformance and safety.
 
 http://www.musl-libc.org/
 
+MAINTAINERS:
+Anthony G. Basile <blueness@gentoo.org>
+
 ## Repoman status
 [![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-10-01 19:09 Felix Janda
  0 siblings, 0 replies; 37+ messages in thread
From: Felix Janda @ 2016-10-01 19:09 UTC (permalink / raw
  To: gentoo-commits

commit:     a0c7e3a453ecc5e2419e2709685efddd6ff20e70
Author:     Felix Janda <felix.janda <AT> posteo <DOT> de>
AuthorDate: Sat Oct  1 19:03:29 2016 +0000
Commit:     Felix Janda <felix.janda <AT> posteo <DOT> de>
CommitDate: Sat Oct  1 19:03:29 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=a0c7e3a4

README.md: add myself as a maintainer

 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index f6dafc8..01a8bc5 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@ http://www.musl-libc.org/
 
 MAINTAINERS:
 Anthony G. Basile <blueness@gentoo.org>
+Felix Janda <felix.janda@posteo.de>
 
 ## Repoman status
 [![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2016-10-19  0:48 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2016-10-19  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     3e150addc2e8688cb8ff8058f12b89570154b9a4
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Wed Oct 19 00:45:47 2016 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Wed Oct 19 00:48:13 2016 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=3e150add

README.md: Add self as maintainer.

 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index 01a8bc5..1528104 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@ http://www.musl-libc.org/
 
 MAINTAINERS:
 Anthony G. Basile <blueness@gentoo.org>
+Aric Belsito <lluixhi@gmail.com>
 Felix Janda <felix.janda@posteo.de>
 
 ## Repoman status


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-01-03  3:44 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-01-03  3:44 UTC (permalink / raw
  To: gentoo-commits

commit:     9f0310c663b2a6964d8daf248c270a6e1d98d835
Author:     Anthony G. Basile <anthony.g.basile <AT> gmail <DOT> com>
AuthorDate: Mon Jan  2 13:04:34 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Mon Jan  2 13:04:34 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=9f0310c6

Merge pull request #18 from nemunaire/fix-watchdog

sys-apps/watchdog: fix with upstream patches

 sys-apps/watchdog/Manifest                         | 12 +++
 ...sl-Compile-with-musl-when-nfs-is-disabled.patch | 32 ++++++++
 ...d-issues-found-with-non-glibc-C-libraries.patch | 96 ++++++++++++++++++++++
 ...inux-param.h-for-EXEC_PAGESIZE-definition.patch | 28 +++++++
 sys-apps/watchdog/files/watchdog-conf.d            |  6 ++
 sys-apps/watchdog/files/watchdog-init.d            | 48 +++++++++++
 sys-apps/watchdog/files/watchdog-init.d-r1         | 44 ++++++++++
 sys-apps/watchdog/files/watchdog.service           | 10 +++
 .../dosfstools => sys-apps/watchdog}/metadata.xml  |  8 +-
 sys-apps/watchdog/watchdog-5.14.ebuild             | 43 ++++++++++
 sys-apps/watchdog/watchdog-5.15.ebuild             | 43 ++++++++++
 11 files changed, 366 insertions(+), 4 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-03-31 18:14 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-03-31 18:14 UTC (permalink / raw
  To: gentoo-commits

commit:     8c73be2209351900cc27739a16a98c9b2691faf4
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Fri Mar 31 17:09:24 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Fri Mar 31 17:09:24 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=8c73be22

app-admin/rsyslog: version bump to 8.25.0-r1

Close #38

 app-admin/rsyslog/Manifest                         |   3 +-
 ...yslog-8.24.0-fix-tcpflood-without-librelp.patch | 152 +++++++++++++++++++++
 ...slog-8.25.0.ebuild => rsyslog-8.25.0-r1.ebuild} |  12 +-
 3 files changed, 160 insertions(+), 7 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-05-06 21:30 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-05-06 21:30 UTC (permalink / raw
  To: gentoo-commits

commit:     c70ee316a8dd27e3d9b02133d61c4e702ec824d7
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sat May  6 21:29:48 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sat May  6 21:29:48 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=c70ee316

Merge remote-tracking branch 'github/pr/48'

 eclass/toolchain.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-05-06 21:32 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-05-06 21:32 UTC (permalink / raw
  To: gentoo-commits

commit:     884019231709190a93d3e00b8e658da422fe5ae0
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sat May  6 21:30:57 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sat May  6 21:31:39 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=88401923

Merge remote-tracking branch 'github/pr/47'

 sys-libs/compiler-rt-sanitizers/Manifest           |   5 +
 .../compiler-rt-sanitizers-4.0.0.ebuild            | 131 ++++++++
 ...compiler-rt-sanitizers-4.0.0-musl-patches.patch | 344 +++++++++++++++++++++
 .../{slang => compiler-rt-sanitizers}/metadata.xml |   3 +-
 4 files changed, 481 insertions(+), 2 deletions(-)

diff --cc sys-libs/compiler-rt-sanitizers/Manifest
index 0000000,fbdbf94..da4d48b
mode 000000,100644..100644
--- a/sys-libs/compiler-rt-sanitizers/Manifest
+++ b/sys-libs/compiler-rt-sanitizers/Manifest
@@@ -1,0 -1,25 +1,5 @@@
 ------BEGIN PGP SIGNED MESSAGE-----
 -Hash: SHA256
 -
+ AUX compiler-rt-sanitizers-4.0.0-musl-patches.patch 13666 SHA256 2c9db57b5cc466e898532e3ba2baee080e3997517b3fd96d9ab4c0350a28fda1 SHA512 9f2aec9e55f274267ffc1c5fc4fc3fdd9c5b901582048b7770d06a7b2be81b15ae6bc31d7b81c66b3e341898e586f1db0aaf12f17be696c651c03d5c520ee223 WHIRLPOOL 55953017aca6d0ebe167d9eaa4937f2e0fe4b45f7d3c577902c2c7d920752dcf17300fc47192bf2875b83f2ed537c728e46df3f1204fedd61fdca127b62091b8
+ DIST compiler-rt-4.0.0.src.tar.xz 1435104 SHA256 d3f25b23bef24c305137e6b44f7e81c51bbec764c119e01512a9bd2330be3115 SHA512 ed52436a2399ca82c1af46a523e89e88c23367f74cd110f0267af49a72aa4912ae8f48c6093e6b01c9ea68c48354a12201d26baf721d254fb017ddb98af2e3dd WHIRLPOOL ea5d6fbb34809067825306b1158979946c43c8aec458d946f8c853f3c0e0cd72a6c92a8e4ad8d1b35e10f9bd079a73dd26fde368f919937ad413bdfd83ab4018
+ DIST llvm-4.0.0.src.tar.xz 21016340 SHA256 8d10511df96e73b8ff9e7abbfb4d4d432edbdbe965f1f4f07afaf370b8a533be SHA512 cf681f0626ef6d568d951cdc3e143471a1d7715a0ba11e52aa273cf5d8d421e1357ef2645cc85879eaefcd577e99e74d07b01566825b3d0461171ef2cbfc7704 WHIRLPOOL 9783e8f47306c1deb2e114d4b46a7db9b0260b4965076345c88765413c5fc8e73fab5f88ae4903adbdea31406022948b16d32ae47d98f5def074509d5d794579
+ EBUILD compiler-rt-sanitizers-4.0.0.ebuild 3768 SHA256 038bdc72960f1fc571340ef966c65a4dd6ac6b4690744c50a72b16fb41c01b04 SHA512 26ccb79c169d8ac081c7044e03e285999c8542006145625400f4f473329680707f7e8809cf57553e6f53ea245a2c6f946e334510790f45d03fd566c62f2ec942 WHIRLPOOL d1898652fdbc53ae72e92b3f899f2aa87d2fb8a9e89e2a8aae18bed303c66fc84db7aaacd0376a279b04d6309905708c65d0f7f04ed19792922b9aba1ad6a2fe
+ MISC metadata.xml 216 SHA256 e94ba81dd2791908508a3993afdebf723cc617314c53c273b9bcca15a9c48327 SHA512 3485598147c953e72e1785693a489a7e7d73d59620b76054db9c0ce95d8bfa0e8ffec29da7f7a9d73a32e5b77eac07ca3306c56a972dc57fd89d477edaebf3d5 WHIRLPOOL 29145f5721e079e0548c5ef22424c65e6a5b2bfc4428918e923fcfdfc37e9b8749fb63e3c2eb5773c17fab276f7513dd66e326b906f1848911dceba7ae4b419a
 ------BEGIN PGP SIGNATURE-----
 -Version: GnuPG v2
 -
 -iQIzBAEBCAAdFiEE6t/5JjgpnbiQKMUluE7NiUruef8FAlkOF/0ACgkQuE7NiUru
 -ef/HuQ/+K1AoGBHa8yRpXfv/Ql4+SGp1ehCU+9TBNRS6jfoZEMaZFF+4JRPzXsVE
 -kZ2xYggoiC8ws9ps/2B+DN3FFQZdCzBeN6fJJk4XtwdMv/05i2AlYKNLShK8rCK0
 -VrSOh1qp55fPVND7SN+F9OYomH2LQtgYjLA3qJM+qoC9MdwsSNvMwKOhoicI0FDP
 -UxoYnjs7A8nmP2ExElfv0XRJkvmr/qZ2OdeASRHvuS1LsNBc87U0DbiitglQVFLy
 -zFwKwigtKVUCqy/toH+gKiSjfLsHBGG3+0y8RtRMYV0ZYq4fT0uHGCr2ecraw2D9
 -i9QdQ4/8ys43tgjscfH+b517/8dlhwOyNRJ6LPO8AzxuGH+mj7rbwYQjm2SIwMMW
 -Ktir8oyo8pmXLD2jUq6PxvfQJYKmo7zA6K2N3H/MSyBnlfKrNVmCxspgIsUZi4z5
 -42ZvNL4M/np4D9bgvGvnd/rxQYMCY14PCB0kBRGp+9unVIxKizHHXmPUhAFPGFPv
 -+0KwxEFt81pOrW8WSgVZxIWzSGdhdsvGdZuXB3+Qi7d1DjeAW+J68m9Z22ayfOzl
 -HLWyGvLwzaLJq7dsVrWP/JACKtFiirx3cN+BgMnEcuOyaZPKTtRwxDwoYsrJVAyA
 -0UfVZ/fpDSQY7Q+oytsLM1wHyLZbZ2HQM3j2vmBqegZnE0qXplE=
 -=4lL+
 ------END PGP SIGNATURE-----


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-06-06  1:22 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-06-06  1:22 UTC (permalink / raw
  To: gentoo-commits

commit:     bb8ce0dc8d9e72cbcd8ccd72d8c5809f041dbab5
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Tue Jun  6 01:21:24 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Tue Jun  6 01:22:21 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=bb8ce0dc

README.md: fix maintainer list.

 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/README.md b/README.md
index 1528104..c455f4f 100644
--- a/README.md
+++ b/README.md
@@ -4,10 +4,10 @@ sense of standards-conformance and safety.
 
 http://www.musl-libc.org/
 
-MAINTAINERS:
-Anthony G. Basile <blueness@gentoo.org>
-Aric Belsito <lluixhi@gmail.com>
-Felix Janda <felix.janda@posteo.de>
+### Maintainers
+* Anthony G. Basile <blueness@gentoo.org>
+* Aric Belsito <lluixhi@gmail.com>
+* Felix Janda <felix.janda@posteo.de>
 
-## Repoman status
+## Repoman Status
 [![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-07-02 14:54 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2017-07-02 14:54 UTC (permalink / raw
  To: gentoo-commits

commit:     609e9396cca5533c0183632967c819c327c10a21
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  2 14:54:11 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jul  2 14:54:11 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=609e9396

travis.yml: update

 .travis.yml | 27 ++++++++++++++++-----------
 1 file changed, 16 insertions(+), 11 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 99b822e..6011fc3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,27 +1,32 @@
 language: python
 python:
-    - "3.2"
+    - pypy
 notifications:
   irc:
     channels:
       - "irc.freenode.org#gentoo-hardened"
     on_success: change  # options: [always|never|change] default: always
     on_failure: always  # options: [always|never|change] default: always
+    on_start: false     # default: false
+env:
+    - PORTAGE_VER="2.3.6"
+before_install:
+    - sudo apt-get -qq update
+    - pip install lxml
 before_script:
-    - mkdir travis-overlay
+    - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
+    - mkdir -p travis-overlay /etc/portage/ /usr/portage/distfiles
     - mv !(travis-overlay) travis-overlay/
     - mv .git travis-overlay/
-    - wget "http://distfiles.gentoo.org/distfiles/portage-2.2.28.tar.bz2"
-    - wget "http://distfiles.gentoo.org/snapshots/portage-latest.tar.xz"
-    - sudo chmod 777 /etc/passwd /etc/group /etc /usr
+    - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
+    - wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz
+    - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /usr/portage --strip-components=1
+    - chmod a+rwx spinner.sh
     - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
     - echo "portage::250:portage,travis" >> /etc/group
-    - mkdir -p /etc/portage/ /usr/portage/distfiles
-    - tar xjf portage-2.2.28.tar.bz2
-    - tar xJf portage-latest.tar.xz -C /usr/
-    - cp portage-2.2.28/cnf/repos.conf /etc/portage/
-    - rsync --recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --checksum --quiet rsync://rsync.gentoo.org/gentoo-portage /usr/portage
+    - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
+    - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf
     - ln -s /usr/portage/profiles/default/linux/amd64/13.0 /etc/portage/make.profile
     - cd travis-overlay
 script:
-    - ./../portage-2.2.28/bin/repoman full -i -d
+    - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-11-02  1:42 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2017-11-02  1:42 UTC (permalink / raw
  To: gentoo-commits

commit:     16ff497813e3767d2e490d7740badb4d2d734498
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Nov  2 01:42:35 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Nov  2 01:42:35 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=16ff4978

travis.yml: update portage to 2.3.8

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 6011fc3..76be5f7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.6"
+    - PORTAGE_VER="2.3.8"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2017-12-15  0:16 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2017-12-15  0:16 UTC (permalink / raw
  To: gentoo-commits

commit:     3b7a6182b50f5d751f477919b9afa7bedbbc7d29
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Fri Dec 15 00:15:28 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Fri Dec 15 00:15:28 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=3b7a6182

Merge #76

 sys-devel/gcc/gcc-4.9.4-r100.ebuild | 2 +-
 sys-devel/gcc/gcc-4.9.4-r99.ebuild  | 2 +-
 sys-devel/gcc/gcc-5.4.0-r3.ebuild   | 2 +-
 sys-devel/gcc/gcc-6.4.0.ebuild      | 2 +-
 sys-devel/gcc/gcc-7.2.0.ebuild      | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-01-03 18:43 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-01-03 18:43 UTC (permalink / raw
  To: gentoo-commits

commit:     5359daa8b78be8eab0d3bc8a04af5e3a1694f5ae
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Wed Jan  3 18:41:35 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Wed Jan  3 18:42:23 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=5359daa8

Merge #78

Thanks @stefson!

 .../files/pax-utils-1.2.2-linux-2.6.32.patch       |  65 ++++++++
 app-misc/pax-utils/pax-utils-1.2.2-r1.ebuild       |  61 --------
 app-misc/pax-utils/pax-utils-1.2.2-r2.ebuild       |   1 +
 app-misc/pax-utils/pax-utils-1.2.2.ebuild          |  60 --------
 .../kbuild/kbuild-0.1.9998_pre20131130-r1.ebuild   |   4 +-
 dev-util/kbuild/kbuild-0.1.9998_pre20131130.ebuild |  61 --------
 media-gfx/fontforge/Manifest                       |   1 -
 ...fontforge-20150430-intelligent-execinfo_h.patch |  34 -----
 media-gfx/fontforge/fontforge-20150612-r1.ebuild   | 127 ----------------
 media-gfx/fontforge/metadata.xml                   |  25 ----
 net-misc/iputils/Manifest                          |   2 -
 .../files/021109-uclibc-no-ether_ntohost.patch     |  24 ---
 .../files/iputils-20071127-nonroot-floodping.patch |  11 --
 .../files/iputils-20121221-add-bits_types_h.patch  |  94 ------------
 .../files/iputils-20121221-fix-header-order.patch  |  18 ---
 .../files/iputils-20121221-fix-init-elemnt.patch   |  23 ---
 .../files/iputils-20121221-fix-musl-headers.patch  |  89 -----------
 .../iputils/files/iputils-20121221-makefile.patch  |  61 --------
 .../iputils-20121221-missing-AI_IDN-NI_IDN.patch   |  34 -----
 .../files/iputils-20121221-parallel-doc.patch      |  74 ---------
 ...ls-20121221-remove-rdisc-glibc-assumption.patch |  30 ----
 .../iputils/files/iputils-20121221-strtod.patch    |  45 ------
 .../iputils/files/iputils-99999999-openssl.patch   |  97 ------------
 .../files/iputils-99999999-tftpd-syslog.patch      |  38 -----
 net-misc/iputils/files/rarpd.conf.d                |   8 -
 net-misc/iputils/files/rarpd.init.d                |  19 ---
 net-misc/iputils/iputils-20151218.ebuild           | 166 ---------------------
 net-misc/iputils/metadata.xml                      |  23 ---
 .../networkmanager/networkmanager-1.8.4.ebuild     |   2 +-
 sys-devel/gcc/Manifest                             |   4 +-
 .../{gcc-5.4.0-r3.ebuild => gcc-5.4.0-r4.ebuild}   |   4 +-
 sys-devel/gcc/gcc-6.4.0.ebuild                     |   2 +-
 x11-base/xorg-server/Manifest                      |   2 +-
 .../files/xorg-server-1.18-sysmacros.patch         |  59 --------
 .../files/xorg-server-1.19.4-sysmacros.patch       |  36 +++++
 ...ver-1.19.3.ebuild => xorg-server-1.19.5.ebuild} |   4 +-
 36 files changed, 113 insertions(+), 1295 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-01-24 21:19 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-01-24 21:19 UTC (permalink / raw
  To: gentoo-commits

commit:     c51de9723bbb982dec57b08b3e91575a958c5701
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Wed Jan 24 21:16:39 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Wed Jan 24 21:16:39 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=c51de972

Merge remote-tracking branch 'github/pr/87'

 sys-apps/iucode_tool/files/iucode_tool-2.2-argp.patch | 13 +++++++++++++
 sys-apps/iucode_tool/iucode_tool-2.2.ebuild           | 14 +++++++++++++-
 2 files changed, 26 insertions(+), 1 deletion(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-01-25  1:34 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2018-01-25  1:34 UTC (permalink / raw
  To: gentoo-commits

commit:     bb247cbf167b2afdd145ffbc9eac719613381ccc
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 25 01:34:25 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Thu Jan 25 01:34:25 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=bb247cbf

travis.yml: bump portage version to 2.3.20

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 76be5f7..aac6fe3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.8"
+    - PORTAGE_VER="2.3.20"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-01-29 19:12 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-01-29 19:12 UTC (permalink / raw
  To: gentoo-commits

commit:     c9e3f685dcd6cb0dc0f0c9ec17abbf4f7f47a939
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Mon Jan 29 19:09:40 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Mon Jan 29 19:09:40 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=c9e3f685

Merge remote-tracking branch 'github/pr/92'

 net-misc/rsync/Manifest                            |   1 +
 net-misc/rsync/files/rsync-fix-musl-ipv6.patch     | 605 +++++++++++++++++++++
 net-misc/rsync/files/rsyncd.conf-3.0.9-r1          |  15 +
 net-misc/rsync/files/rsyncd.conf.d                 |   5 +
 .../rsync/files/rsyncd.init.d-r1                   |   9 +-
 net-misc/rsync/files/rsyncd.logrotate              |   9 +
 net-misc/rsync/files/rsyncd.service                |  12 +
 net-misc/rsync/files/rsyncd.xinetd-3.0.9-r1        |  10 +
 net-misc/rsync/rsync-3.1.2-r2.ebuild               |  89 +++
 9 files changed, 750 insertions(+), 5 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-01-29 19:12 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-01-29 19:12 UTC (permalink / raw
  To: gentoo-commits

commit:     29bddcb9efbec7116869ab025ffbcdd09d6fb8b6
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Mon Jan 29 19:09:03 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Mon Jan 29 19:09:03 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=29bddcb9

Merge remote-tracking branch 'github/pr/93'

 mail-mta/postfix/Manifest                                       | 3 ++-
 mail-mta/postfix/{postfix-3.1.6.ebuild => postfix-3.2.4.ebuild} | 8 ++++----
 2 files changed, 6 insertions(+), 5 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-02-01  0:04 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-02-01  0:04 UTC (permalink / raw
  To: gentoo-commits

commit:     4374e078762f8fb4c1370f8be3a127b17b18bf73
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Thu Feb  1 00:03:47 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Thu Feb  1 00:03:47 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=4374e078

Merge remote-tracking branch 'github/pr/94'

 net-misc/iperf/Manifest                            |   1 +
 net-misc/iperf/files/iperf-3.0.5-flags.patch       |  31 ++++
 net-misc/iperf/files/iperf-3.1.3-musl.patch        | 184 +++++++++++++++++++++
 .../iperf/files/iperf.confd                        |   5 +-
 net-misc/iperf/files/iperf.initd-r1                |  14 ++
 net-misc/iperf/files/iperf3.initd                  |  10 ++
 net-misc/iperf/iperf-3.1.3.ebuild                  |  41 +++++
 {dev-libs/libnl => net-misc/iperf}/metadata.xml    |   7 +-
 8 files changed, 285 insertions(+), 8 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-02-06  1:11 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-02-06  1:11 UTC (permalink / raw
  To: gentoo-commits

commit:     7a49fe1b07709802afe3d1dff3f19d323606c211
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Tue Feb  6 01:06:46 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Tue Feb  6 01:06:46 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7a49fe1b

Merge remote-tracking branch 'github/pr/97'

 net-analyzer/wireshark/Manifest                    |   1 +
 .../files/wireshark-1.99.8-qtchooser.patch         |  10 +
 .../files/wireshark-2.1.0-sse4_2-r1.patch          |  21 ++
 .../files/wireshark-2.4-androiddump.patch          |  27 ++
 .../wireshark/files/wireshark-2.4.3-libsmi.patch   | 233 ++++++++++++++++
 .../files/wireshark-99999999-androiddump.patch     |  10 +
 .../files/wireshark-includes-fix-musl.patch        |  15 ++
 net-analyzer/wireshark/wireshark-2.4.4.ebuild      | 294 +++++++++++++++++++++
 8 files changed, 611 insertions(+)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-02-06  1:11 Aric Belsito
  0 siblings, 0 replies; 37+ messages in thread
From: Aric Belsito @ 2018-02-06  1:11 UTC (permalink / raw
  To: gentoo-commits

commit:     84bf3839de44aecb7112dca27ebe4af1f39d3017
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Tue Feb  6 01:11:27 2018 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Tue Feb  6 01:11:27 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=84bf3839

Merge remote-tracking branch 'github/pr/95'

 dev-lang/rust/rust-1.21.0.ebuild      | 6 +++---
 dev-lang/rust/rust-1.23.0-r1.ebuild   | 6 +++---
 dev-lang/rust/rust-1.23.0.ebuild      | 6 +++---
 dev-util/cargo/cargo-0.22.0-r1.ebuild | 4 ++--
 dev-util/cargo/cargo-0.23.0.ebuild    | 4 ++--
 dev-util/cargo/cargo-0.24.0.ebuild    | 4 ++--
 6 files changed, 15 insertions(+), 15 deletions(-)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-03-17 23:43 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2018-03-17 23:43 UTC (permalink / raw
  To: gentoo-commits

commit:     c92afd1d8790b4c9f1a78a7fdb87be3cdcfd9205
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 17 23:43:28 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Mar 17 23:43:28 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=c92afd1d

.travis.yml: fix broken lxml

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index aac6fe3..f8e2d13 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ env:
     - PORTAGE_VER="2.3.20"
 before_install:
     - sudo apt-get -qq update
-    - pip install lxml
+    - pip install lxml==4.1.1
 before_script:
     - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
     - mkdir -p travis-overlay /etc/portage/ /usr/portage/distfiles


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-03-21  0:14 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2018-03-21  0:14 UTC (permalink / raw
  To: gentoo-commits

commit:     b8791b613da9e5c1ac780ed81702111d3aa3b26e
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 21 00:14:32 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Mar 21 00:14:32 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=b8791b61

.travis.yml: update the profile

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index f8e2d13..6e6cfef 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,7 +26,7 @@ before_script:
     - echo "portage::250:portage,travis" >> /etc/group
     - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
     - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf
-    - ln -s /usr/portage/profiles/default/linux/amd64/13.0 /etc/portage/make.profile
+    - ln -s /usr/portage/profiles/default/linux/amd64/17.0/musl /etc/portage/make.profile
     - cd travis-overlay
 script:
     - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-06-17 11:46 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2018-06-17 11:46 UTC (permalink / raw
  To: gentoo-commits

commit:     f447bdfaf9fb4e7a45f76023011e5f3ebd757c40
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 11:46:47 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 11:46:47 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=f447bdfa

.travis.yml: bump portage to 2.3.40

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 6e6cfef..1184dff 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.20"
+    - PORTAGE_VER="2.3.40"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml==4.1.1


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2018-06-17 12:29 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2018-06-17 12:29 UTC (permalink / raw
  To: gentoo-commits

commit:     f260201be44c83e6bc9b316bc7dfdf4bfffdf522
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 17 12:28:54 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jun 17 12:28:54 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=f260201b

.travis.yml: we need pyyaml

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 1184dff..3556b5c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -12,7 +12,7 @@ env:
     - PORTAGE_VER="2.3.40"
 before_install:
     - sudo apt-get -qq update
-    - pip install lxml==4.1.1
+    - pip install lxml pyyaml
 before_script:
     - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
     - mkdir -p travis-overlay /etc/portage/ /usr/portage/distfiles


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2019-08-28  3:11 Jory Pratt
  0 siblings, 0 replies; 37+ messages in thread
From: Jory Pratt @ 2019-08-28  3:11 UTC (permalink / raw
  To: gentoo-commits

commit:     7032d6e583c83c0457d3a3cfaf0a1edae76cde8e
Author:     Jory Pratt <anarchy <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 03:11:20 2019 +0000
Commit:     Jory Pratt <anarchy <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 03:11:20 2019 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7032d6e5

Add myself as a maintainer

Signed-off-by: Jory Pratt <anarchy <AT> gentoo.org>

 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index c455f4f..518d55a 100644
--- a/README.md
+++ b/README.md
@@ -6,6 +6,7 @@ http://www.musl-libc.org/
 
 ### Maintainers
 * Anthony G. Basile <blueness@gentoo.org>
+* Jory A. Pratt <anarchy@gentoo.org>
 * Aric Belsito <lluixhi@gmail.com>
 * Felix Janda <felix.janda@posteo.de>
 


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2020-03-09 16:16 Anthony G. Basile
  0 siblings, 0 replies; 37+ messages in thread
From: Anthony G. Basile @ 2020-03-09 16:16 UTC (permalink / raw
  To: gentoo-commits

commit:     db31f793ba4f50504c568ea82a76aeaa85ef3c5f
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  9 02:19:00 2020 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Mar  9 16:16:31 2020 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=db31f793

.travis.yml: update to new portage and python 3.7

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>

 .travis.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 3556b5c..f868dd1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,6 @@
 language: python
 python:
-    - pypy
+    - "3.7"
 notifications:
   irc:
     channels:
@@ -9,24 +9,24 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.40"
+    - PORTAGE_VER="2.3.93"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml pyyaml
 before_script:
-    - sudo chmod a+rwX /etc/passwd /etc/group /etc /usr
-    - mkdir -p travis-overlay /etc/portage/ /usr/portage/distfiles
+    - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache
+    - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo
     - mv !(travis-overlay) travis-overlay/
     - mv .git travis-overlay/
     - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
     - wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz
-    - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /usr/portage --strip-components=1
+    - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1
     - chmod a+rwx spinner.sh
     - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
     - echo "portage::250:portage,travis" >> /etc/group
-    - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /usr/portage/distfiles/metadata.dtd
+    - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd
     - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf
-    - ln -s /usr/portage/profiles/default/linux/amd64/17.0/musl /etc/portage/make.profile
+    - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0/musl /etc/portage/make.profile
     - cd travis-overlay
 script:
     - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2020-06-29  5:12 Georgy Yakovlev
  0 siblings, 0 replies; 37+ messages in thread
From: Georgy Yakovlev @ 2020-06-29  5:12 UTC (permalink / raw
  To: gentoo-commits

commit:     a5d36cc51c7f9599696029efe10e82326856576b
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Mon Jun 29 05:11:27 2020 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Mon Jun 29 05:11:27 2020 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=a5d36cc5

.travis.yml: update to portage 2.3.103

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index f868dd1..a8a655b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.93"
+    - PORTAGE_VER="2.3.103"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml pyyaml


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2020-10-08  2:58 Georgy Yakovlev
  0 siblings, 0 replies; 37+ messages in thread
From: Georgy Yakovlev @ 2020-10-08  2:58 UTC (permalink / raw
  To: gentoo-commits

commit:     6ebb2a6834c425b2c8791cbccd02d74431f24ac0
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Thu Oct  8 02:56:58 2020 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Thu Oct  8 02:57:25 2020 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=6ebb2a68

.travis.yml: bump portage to latest one (faster)

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index a8a655b..a4af6c6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,7 @@ notifications:
     on_failure: always  # options: [always|never|change] default: always
     on_start: false     # default: false
 env:
-    - PORTAGE_VER="2.3.103"
+    - PORTAGE_VER="3.0.8"
 before_install:
     - sudo apt-get -qq update
     - pip install lxml pyyaml


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2021-03-12 18:45 Sam James
  0 siblings, 0 replies; 37+ messages in thread
From: Sam James @ 2021-03-12 18:45 UTC (permalink / raw
  To: gentoo-commits

commit:     0b288b6b436ca6b57dedf2add0c8fe438b248c2b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 12 18:44:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 12 18:44:04 2021 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=0b288b6b

*: Remove Travis (obsoleted by Actions)

Signed-off-by: Sam James <sam <AT> gentoo.org>

 .travis.yml | 32 --------------------------------
 1 file changed, 32 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index a4af6c6..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-language: python
-python:
-    - "3.7"
-notifications:
-  irc:
-    channels:
-      - "irc.freenode.org#gentoo-hardened"
-    on_success: change  # options: [always|never|change] default: always
-    on_failure: always  # options: [always|never|change] default: always
-    on_start: false     # default: false
-env:
-    - PORTAGE_VER="3.0.8"
-before_install:
-    - sudo apt-get -qq update
-    - pip install lxml pyyaml
-before_script:
-    - sudo chmod a+rwX /etc/passwd /etc/group /etc /var /var/cache
-    - mkdir -p travis-overlay /etc/portage /var/cache/distfiles /var/db/repos/gentoo
-    - mv !(travis-overlay) travis-overlay/
-    - mv .git travis-overlay/
-    - wget "https://raw.githubusercontent.com/mrueg/repoman-travis/master/spinner.sh"
-    - wget -qO - "https://github.com/gentoo/portage/archive/portage-${PORTAGE_VER}.tar.gz" | tar xz
-    - wget -qO - "https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz" | tar xz -C /var/db/repos/gentoo --strip-components=1
-    - chmod a+rwx spinner.sh
-    - echo "portage:x:250:250:portage:/var/tmp/portage:/bin/false" >> /etc/passwd
-    - echo "portage::250:portage,travis" >> /etc/group
-    - wget "https://www.gentoo.org/dtd/metadata.dtd" -O /var/cache/distfiles/metadata.dtd
-    - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf /etc/portage/repos.conf
-    - ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0/musl /etc/portage/make.profile
-    - cd travis-overlay
-script:
-    - ./../spinner.sh "python ../portage-portage-${PORTAGE_VER}/repoman/bin/repoman full -i -d"


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2021-04-29 19:49 Dave Hughes
  0 siblings, 0 replies; 37+ messages in thread
From: Dave Hughes @ 2021-04-29 19:49 UTC (permalink / raw
  To: gentoo-commits

commit:     250706359a8234ccaa336469b625c6064be1f9b3
Author:     Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
AuthorDate: Thu Apr 29 19:48:52 2021 +0000
Commit:     Dave Hughes <davidhughes205 <AT> gmail <DOT> com>
CommitDate: Thu Apr 29 19:49:22 2021 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=25070635

README: fix status badges

Signed-off-by: Dave Hughes <davidhughes205 <AT> gmail.com>

 README.md | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 518d55a..1c67f0d 100644
--- a/README.md
+++ b/README.md
@@ -10,5 +10,8 @@ http://www.musl-libc.org/
 * Aric Belsito <lluixhi@gmail.com>
 * Felix Janda <felix.janda@posteo.de>
 
-## Repoman Status
-[![Repoman Status](https://travis-ci.org/gentoo/musl.png)](https://travis-ci.org/gentoo/musl)
+## pkgcheck status
+![pkgcheck](https://github.com/gentoo/musl/actions/workflows/main.yml/badge.svg)
+
+## RepoMan status
+![RepoMan](https://github.com/gentoo/musl/actions/workflows/repoman.yml/badge.svg)


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

* [gentoo-commits] proj/musl:master commit in: /
@ 2021-05-31  1:32 Georgy Yakovlev
  0 siblings, 0 replies; 37+ messages in thread
From: Georgy Yakovlev @ 2021-05-31  1:32 UTC (permalink / raw
  To: gentoo-commits

commit:     fb3e27daf1bbf3980c16a1ca5b59c5e731a762e8
Author:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
AuthorDate: Mon May 31 01:31:54 2021 +0000
Commit:     Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
CommitDate: Mon May 31 01:31:54 2021 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=fb3e27da

README.md: update, mention myself

Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>

 README.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/README.md b/README.md
index 1c67f0d..c95a89e 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,7 @@ http://www.musl-libc.org/
 * Jory A. Pratt <anarchy@gentoo.org>
 * Aric Belsito <lluixhi@gmail.com>
 * Felix Janda <felix.janda@posteo.de>
+* Georgy Yakovlev <gyakovlev@gentoo.org>
 
 ## pkgcheck status
 ![pkgcheck](https://github.com/gentoo/musl/actions/workflows/main.yml/badge.svg)


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

end of thread, other threads:[~2021-05-31  1:32 UTC | newest]

Thread overview: 37+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-29 19:49 [gentoo-commits] proj/musl:master commit in: / Dave Hughes
  -- strict thread matches above, loose matches on Subject: below --
2021-05-31  1:32 Georgy Yakovlev
2021-03-12 18:45 Sam James
2020-10-08  2:58 Georgy Yakovlev
2020-06-29  5:12 Georgy Yakovlev
2020-03-09 16:16 Anthony G. Basile
2019-08-28  3:11 Jory Pratt
2018-06-17 12:29 Anthony G. Basile
2018-06-17 11:46 Anthony G. Basile
2018-03-21  0:14 Anthony G. Basile
2018-03-17 23:43 Anthony G. Basile
2018-02-06  1:11 Aric Belsito
2018-02-06  1:11 Aric Belsito
2018-02-01  0:04 Aric Belsito
2018-01-29 19:12 Aric Belsito
2018-01-29 19:12 Aric Belsito
2018-01-25  1:34 Anthony G. Basile
2018-01-24 21:19 Aric Belsito
2018-01-03 18:43 Aric Belsito
2017-12-15  0:16 Aric Belsito
2017-11-02  1:42 Anthony G. Basile
2017-07-02 14:54 Anthony G. Basile
2017-06-06  1:22 Aric Belsito
2017-05-06 21:32 Aric Belsito
2017-05-06 21:30 Aric Belsito
2017-03-31 18:14 Aric Belsito
2017-01-03  3:44 Aric Belsito
2016-10-19  0:48 Aric Belsito
2016-10-01 19:09 Felix Janda
2016-10-01 14:41 Anthony G. Basile
2016-06-09  1:31 Anthony G. Basile
2016-05-29 17:49 Anthony G. Basile
2016-05-29  7:03 Anthony G. Basile
2016-05-29  2:12 Anthony G. Basile
2016-04-02 22:02 Anthony G. Basile
2016-02-28 19:17 Anthony G. Basile
2016-02-28 16:42 Anthony G. Basile

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox