diff options
| author | Liguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net> | 2020-08-31 12:13:03 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [feature/flatten] <gitlab@liguros.net> | 2020-08-31 12:13:03 +0000 |
| commit | 46e1b5112669d7462e42977e29af434198984ae0 (patch) | |
| tree | 4553c9da457bd6fe7bc0b526610d0e19755c6ab2 /net-news | |
| parent | 336ae0d5c6165e079ab6ac476dce1a8f54899ee0 (diff) | |
| download | baldeagleos-repo-46e1b5112669d7462e42977e29af434198984ae0.tar.gz baldeagleos-repo-46e1b5112669d7462e42977e29af434198984ae0.tar.xz baldeagleos-repo-46e1b5112669d7462e42977e29af434198984ae0.zip | |
Updating liguros repo
Diffstat (limited to 'net-news')
| -rw-r--r-- | net-news/rsstail/Manifest | 2 | ||||
| -rw-r--r-- | net-news/rsstail/rsstail-1.8.ebuild | 8 | ||||
| -rw-r--r-- | net-news/rsstail/rsstail-2.1.ebuild | 31 | ||||
| -rw-r--r-- | net-news/rsstail/rsstail-2.1_p20200310.ebuild | 39 |
4 files changed, 76 insertions, 4 deletions
diff --git a/net-news/rsstail/Manifest b/net-news/rsstail/Manifest index 37ad4718db65..4d930c0e5898 100644 --- a/net-news/rsstail/Manifest +++ b/net-news/rsstail/Manifest @@ -1 +1,3 @@ DIST rsstail-1.8.tgz 5085 BLAKE2B 0d149db2bbdfc55664c79c007cef24b2964533b9867fe42a5448d9d2cf8de0871348da70f1e5c16be76c8dc98fff0338764e36aee7ddcf8ac99c1afd5e032bb7 SHA512 9a603b384f866fec55ea57572f15aadc467133e12509ec36fe034e1bce89fd1ff3d4982a34d44621413d374ebb17f30e7192c4f1e463f0b05ee2d9537f2a8dbc +DIST rsstail-2.1.tgz 5940 BLAKE2B 3d047aba02bbc09a52ce5ce911b029e42d245cd283dd7460ac8f77b62c0e79633a41cd71cd7c57cfafb2bccdf0c19509e02c2c68ab5a116f4c4e1a426bcd5be9 SHA512 61eec722e4c519b5ccebae93849f3f88810a1ff2e70dc311ad55fd15b7751d3d4dedf65e1c0ff875bee58df998f48aba7337a20bcebd2121dcead4ab1ac7ff1f +DIST rsstail-2.1_p20200310.tar.gz 12977 BLAKE2B e127f1fa864e6ce8cf796dde13025c92d5e1c681d89e878bcbfa60a2473c1a04173edbc385ff39d3d61f3e744ba25859a9dd05fab33c28e188c8a1fe56e1cf21 SHA512 6dbdf9d07a851d34518b452418e14bab6aefd7f0e7f6cc00007db11812782cceee0ec3e66236270fecab2e5042ab9c9c63b3b99c6ada5cc2b18b50c04737aab6 diff --git a/net-news/rsstail/rsstail-1.8.ebuild b/net-news/rsstail/rsstail-1.8.ebuild index 1cac0440f8f4..3ba960056d34 100644 --- a/net-news/rsstail/rsstail-1.8.ebuild +++ b/net-news/rsstail/rsstail-1.8.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 inherit toolchain-funcs @@ -12,8 +12,8 @@ SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="" +BDEPEND="virtual/pkgconfig" DEPEND=">=net-libs/libmrss-0.17.1" RDEPEND="${DEPEND}" @@ -21,7 +21,7 @@ src_compile() { emake \ CC="$(tc-getCC)" \ CFLAGS="${CFLAGS} -DVERSION=\\\"\$(VERSION)\\\"" \ - LDFLAGS="${LDFLAGS} -lmrss" + LDFLAGS="${LDFLAGS} $(pkg-config --libs mrss)" } src_install() { diff --git a/net-news/rsstail/rsstail-2.1.ebuild b/net-news/rsstail/rsstail-2.1.ebuild new file mode 100644 index 000000000000..fe959e297c49 --- /dev/null +++ b/net-news/rsstail/rsstail-2.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="A tail-like RSS-reader" +HOMEPAGE="https://www.vanheusden.com/rsstail/ https://github.com/flok99/rsstail" +SRC_URI="http://www.vanheusden.com/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="virtual/pkgconfig" +DEPEND=">=net-libs/libmrss-0.17.1" +RDEPEND="${DEPEND}" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -DVERSION=\\\"\$(VERSION)\\\"" \ + LDFLAGS="${LDFLAGS} $(pkg-config --libs mrss)" +} + +src_install() { + dobin rsstail + doman rsstail.1 + dodoc README.md +} diff --git a/net-news/rsstail/rsstail-2.1_p20200310.ebuild b/net-news/rsstail/rsstail-2.1_p20200310.ebuild new file mode 100644 index 000000000000..b2912cc3a06a --- /dev/null +++ b/net-news/rsstail/rsstail-2.1_p20200310.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +COMMIT="0b23b367c98de8882b58a451742a3f2e385c4ba0" +DESCRIPTION="A tail-like RSS-reader" +HOMEPAGE="https://www.vanheusden.com/rsstail/ https://github.com/flok99/rsstail" +SRC_URI="https://github.com/flok99/rsstail/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND="virtual/pkgconfig" +DEPEND=">=net-libs/libmrss-0.17.1" +RDEPEND="${DEPEND}" + +src_compile() { + emake \ + CC="$(tc-getCC)" \ + CFLAGS="${CFLAGS} -DVERSION=\\\"\$(VERSION)\\\"" \ + LDFLAGS="${LDFLAGS} $(pkg-config --libs mrss)" +} + +src_test() { + # Skip as it's just cppcheck. + # We don't run lints for ebuilds. + :; +} + +src_install() { + dobin rsstail + doman rsstail.1 + dodoc README.md +} |
