Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F107017
0001-Initial-commit-of-moreutils.patch
bigjazzsound (Craig James Fielder)
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Authored By
bigjazzsound
Jul 16 2017, 9:09 AM
2017-07-16 09:09:11 (UTC+0)
Size
5 KB
Referenced Files
None
Subscribers
None
0001-Initial-commit-of-moreutils.patch
View Options
From 63cbb85328f266567c3cb67570398ff8f58aa842 Mon Sep 17 00:00:00 2001
From: bigjazzsound <craigjamesfielder@gmail.com>
Date: Sun, 16 Jul 2017 03:45:46 -0400
Subject: [PATCH 1/1] Initial commit of moreutils
---
Makefile | 1 +
abi_used_libs | 1 +
files/Makefile.patch | 19 +++++++++++++++++++
files/Makefile.patch~ | 19 +++++++++++++++++++
package.yml | 19 +++++++++++++++++++
pspec_x86_64.xml | 35 +++++++++++++++++++++++++++++++++++
6 files changed, 94 insertions(+)
create mode 100644 Makefile
create mode 100644 abi_used_libs
create mode 100644 files/Makefile.patch
create mode 100644 files/Makefile.patch~
create mode 100644 package.yml
create mode 100644 pspec_x86_64.xml
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0a42375
--- /dev/null
+++ b/Makefile
@@ -0,0 +1 @@
+include ../Makefile.common
diff --git a/abi_used_libs b/abi_used_libs
new file mode 100644
index 0000000..631aa1d
--- /dev/null
+++ b/abi_used_libs
@@ -0,0 +1 @@
+libc.so.6
diff --git a/files/Makefile.patch b/files/Makefile.patch
new file mode 100644
index 0000000..09f00e8
--- /dev/null
+++ b/files/Makefile.patch
@@ -0,0 +1,19 @@
+--- Makefile 2017-07-11 01:50:12.399126295 -0400
++++ Makefile.new 2017-07-11 03:21:27.055481447 -0400
+@@ -1,6 +1,6 @@
+ BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel errno
+ PERLSCRIPTS=vidir vipe ts combine zrun chronic
+-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1 errno.1
++MANS=sponge.1 vidir.1 vipe.1 isutf8.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1 errno.1
+ CFLAGS?=-O2 -g -Wall
+ INSTALL_BIN?=install -s
+ PREFIX?=/usr
+@@ -8,7 +8,7 @@
+ ifneq (,$(findstring CYGWIN,$(shell uname)))
+ DOCBOOKXSL?=/usr/share/sgml/docbook/xsl-stylesheets
+ else
+- DOCBOOKXSL?=/usr/share/xml/docbook/stylesheet/docbook-xsl
++ DOCBOOKXSL?=/usr/share/xml/docbook/xsl-stylesheets-1.77.1
+ endif
+
+ DOCBOOK2XMAN=xsltproc --param man.authors.section.enabled 0 $(DOCBOOKXSL)/manpages/docbook.xsl
diff --git a/files/Makefile.patch~ b/files/Makefile.patch~
new file mode 100644
index 0000000..a384de5
--- /dev/null
+++ b/files/Makefile.patch~
@@ -0,0 +1,19 @@
+--- Makefile 2017-07-11 01:50:12.399126295 -0400
++++ Makefile.new 2017-07-11 03:21:27.055481447 -0400
+@@ -1,6 +1,6 @@
+ BINS=isutf8 ifdata ifne pee sponge mispipe lckdo parallel errno
+ PERLSCRIPTS=vidir vipe ts combine zrun chronic
+-MANS=sponge.1 vidir.1 vipe.1 isutf8.1 ts.1 combine.1 ifdata.1 ifne.1 pee.1 zrun.1 chronic.1 mispipe.1 lckdo.1 parallel.1 errno.1
++MANS=sponge.mu.1 vidir.mu.1 vipe.mu.1 isutf8.mu.1 ts.mu.1 combine.mu.1 ifdata.mu.1 ifne.mu.1 pee.mu.1 zrun.mu.1 chronic.mu.1 mispipe.mu.1 lckdo.mu.1 parallel.mu.1 errno.mu.1
+ CFLAGS?=-O2 -g -Wall
+ INSTALL_BIN?=install -s
+ PREFIX?=/usr
+@@ -8,7 +8,7 @@
+ ifneq (,$(findstring CYGWIN,$(shell uname)))
+ DOCBOOKXSL?=/usr/share/sgml/docbook/xsl-stylesheets
+ else
+- DOCBOOKXSL?=/usr/share/xml/docbook/stylesheet/docbook-xsl
++ DOCBOOKXSL?=/usr/share/xml/docbook/xsl-stylesheets-1.77.1
+ endif
+
+ DOCBOOK2XMAN=xsltproc --param man.authors.section.enabled 0 $(DOCBOOKXSL)/manpages/docbook.xsl
diff --git a/package.yml b/package.yml
new file mode 100644
index 0000000..e4e9473
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,19 @@
+name : moreutils
+version : 0.61
+release : 1
+source :
+ - http://http.debian.net/debian/pool/main/m/moreutils/moreutils_0.60.orig.tar.xz : e42d18bacbd2d003779a55fb3542befa5d1d217ee37c1874e8c497581ebc17c5
+license : GPL-2.0
+component : system.utils
+summary : additional Unix utilities
+description: |
+ This is a growing collection of the Unix tools that nobody thought to write long ago, when Unix was young.
+builddeps :
+ - docbook-xml
+setup : |
+ # patch to change docbook directory and remove conflicting man page
+ %patch < $pkgfiles/Makefile.patch
+build : |
+ %make
+install : |
+ %make_install
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
index 0000000..10c2b46
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,35 @@
+<PISI>
+ <Source>
+ <Name>moreutils</Name>
+ <Packager>
+ <Name>Craig James Fielder</Name>
+ <Email>craigjamesfielder@gmail.com</Email>
+ </Packager>
+ <License>GPL-2.0</License>
+ <PartOf>system.utils</PartOf>
+ <Summary xml:lang="en">additional Unix utilities</Summary>
+ <Description xml:lang="en">This is a growing collection of the Unix tools that nobody thought to write long ago, when Unix was young.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>moreutils</Name>
+ <Summary xml:lang="en">additional Unix utilities</Summary>
+ <Description xml:lang="en">This is a growing collection of the Unix tools that nobody thought to write long ago, when Unix was young.
+</Description>
+ <PartOf>system.utils</PartOf>
+ <Files>
+ <Path fileType="executable">/usr/bin</Path>
+ <Path fileType="man">/usr/share/man</Path>
+ </Files>
+ </Package>
+ <History>
+ <Update release="1">
+ <Date>2017-07-16</Date>
+ <Version>0.61</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Craig James Fielder</Name>
+ <Email>craigjamesfielder@gmail.com</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file
--
2.13.2
File Metadata
Details
Attached
Mime Type
text/x-diff
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
81352
Default Alt Text
0001-Initial-commit-of-moreutils.patch (5 KB)
Attached To
Mode
T4085: moreutils
Attached
Detach File
Event Timeline
Log In to Comment