[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/sdate/

2022-05-23 Thread Haelwenn Monnier
commit: 9070d23f2a68b615a79681e8bcd8785c7e5e5755
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon May 23 18:51:35 2022 +
Commit: Haelwenn Monnier  hacktivis  me>
CommitDate: Mon May 23 18:51:51 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9070d23f

sys-apps/sdate: Remove static lib and libtool *.la

Fixes: https://bugs.gentoo.org/840637
Fixes: https://bugs.gentoo.org/840634
Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 sys-apps/sdate/sdate-0.7.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/sys-apps/sdate/sdate-0.7.ebuild b/sys-apps/sdate/sdate-0.7.ebuild
index b862defc3..8810cbdb1 100644
--- a/sys-apps/sdate/sdate-0.7.ebuild
+++ b/sys-apps/sdate/sdate-0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,3 +17,9 @@ src_prepare() {
default
eautoreconf
 }
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+   find "${ED}" -name '*.a' -delete || die
+}



[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/sdate/

2021-12-31 Thread Haelwenn Monnier
commit: aeb8d0f977476ab237b21d0f29aa61c94a904d18
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Fri Dec 31 10:07:04 2021 +
Commit: Haelwenn Monnier  hacktivis  me>
CommitDate: Fri Dec 31 10:07:32 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aeb8d0f9

ys-apps/sdate: New Package

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 sys-apps/sdate/Manifest |  1 +
 sys-apps/sdate/metadata.xml |  8 
 sys-apps/sdate/sdate-0.7.ebuild | 19 +++
 3 files changed, 28 insertions(+)

diff --git a/sys-apps/sdate/Manifest b/sys-apps/sdate/Manifest
new file mode 100644
index 0..d7f707bc7
--- /dev/null
+++ b/sys-apps/sdate/Manifest
@@ -0,0 +1 @@
+DIST sdate-0.7.tar.gz 35077 BLAKE2B 
3239762c4a9ca54feb31d9d2e1a8656f79e6f87916a6887e2707f165fb275bc2fbfcf932c04949b6cb5634274ed88f09386d62845d7c4ec677a37a00bf5e7855
 SHA512 
909d152b465044d56c3e0254572a3160f2b15b12cd9ad1000384592e1c2a1d4c54af284c7cf229af335984643564c28637f78ab0c305ec31bd6a4b8ba4b7a1d9

diff --git a/sys-apps/sdate/metadata.xml b/sys-apps/sdate/metadata.xml
new file mode 100644
index 0..c698af234
--- /dev/null
+++ b/sys-apps/sdate/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   cont...@hacktivis.me
+   Haelwenn (lanodan) Monnier
+   
+

diff --git a/sys-apps/sdate/sdate-0.7.ebuild b/sys-apps/sdate/sdate-0.7.ebuild
new file mode 100644
index 0..b862defc3
--- /dev/null
+++ b/sys-apps/sdate/sdate-0.7.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Wrapper program to output dates like the Eternal September 1993"
+HOMEPAGE="https://www.df7cb.de/projects/sdate/;
+SRC_URI="https://github.com/df7cb/sdate/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+src_prepare() {
+   default
+   eautoreconf
+}